diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2020-06-11 20:42:43 +0200 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2020-06-11 20:42:43 +0200 |
| commit | 392a65a4f3a1422c0164d69cb2bb4d1123c1bbeb (patch) | |
| tree | 98e4d7ca7bd6b9047cc2b896b22100684d281b0a | |
initial repo. basic data models. pull in e-flux css
41 files changed, 7381 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e2282ba --- /dev/null +++ b/.gitignore @@ -0,0 +1,11 @@ +# Ignore top level and nested deps +/node_modules/ +/app/node_modules/**/node_modules/ +.bin/ +*.swp +.DS_Store +.env +.tmp +npm-debug.log +site/public/decks/ + @@ -0,0 +1,139 @@ +{ + "episodes": [ + { + "id": "a-report-on-migrating-souls-in-museums-and-moving-pictures", + "title": "A Report on Migrating Souls in Museums and Moving Pictures", + "curator": "Anselm Franke", + "author": "Name Surname", + "artists": "Name Surname\r\nName Surname\r\nName Surname\r\nName Surname\r\nName Surname\r\n", + "sponsors": "This\r\nThis\r\nThis", + "publicationDate": "Mon 00-00, 2020", + "accessible": true, + "__index": 0, + "dateCreated": "Thu, 11 Jun 2020 17:30:25 GMT" + }, + { + "id": "animation-the-mummy-complex-the-museum", + "title": "Animation & the Mummy Complex: The Museum", + "curator": "", + "author": "", + "artists": "", + "sponsors": "", + "publicationDate": "", + "accessible": false, + "__index": 1, + "dateCreated": "Thu, 11 Jun 2020 17:30:41 GMT" + }, + { + "id": "the-extirpation-of-animism", + "title": "The Extirpation of Animism", + "curator": "", + "author": "", + "artists": "", + "sponsors": "", + "publicationDate": "", + "accessible": false, + "__index": 2, + "dateCreated": "Thu, 11 Jun 2020 17:30:50 GMT" + }, + { + "id": "media-history-animation-s-continuous-displacement", + "title": "Media History & Animation's Continuous Displacement", + "curator": "", + "author": "", + "artists": "", + "sponsors": "", + "publicationDate": "", + "accessible": false, + "__index": 3, + "dateCreated": "Thu, 11 Jun 2020 17:31:04 GMT" + }, + { + "id": "soul-design-or-liminal-cosmologies", + "title": "Soul Design or Liminal Cosmologies", + "curator": "", + "author": "", + "artists": "", + "sponsors": "", + "publicationDate": "", + "accessible": false, + "__index": 4, + "dateCreated": "Thu, 11 Jun 2020 17:31:12 GMT" + }, + { + "id": "animal-mythic-and-other", + "title": "Animal, Mythic and Other", + "curator": "", + "author": "", + "artists": "", + "sponsors": "", + "publicationDate": "", + "accessible": false, + "__index": 5, + "dateCreated": "Thu, 11 Jun 2020 17:31:21 GMT" + } + ], + "sections": [ + { + "id": "reification-and-luminescence", + "title": "Reification and Luminescence", + "image": { + "uri": "", + "caption": "", + "width": "", + "height": "" + }, + "__index": 0, + "dateCreated": "Thu, 11 Jun 2020 17:32:08 GMT" + }, + { + "id": "recto-verso-stage-prison", + "title": "Recto/Verso: Stage/Prison", + "image": { + "uri": "", + "caption": "", + "width": "", + "height": "" + }, + "__index": 1, + "dateCreated": "Thu, 11 Jun 2020 17:32:14 GMT" + }, + { + "id": "the-hallucinating-factory", + "title": "The Hallucinating Factory", + "image": { + "uri": "", + "caption": "", + "width": "", + "height": "" + }, + "__index": 2, + "dateCreated": "Thu, 11 Jun 2020 17:32:39 GMT" + }, + { + "id": "a-song-of-electricity", + "title": "A Song of Electricity", + "image": { + "uri": "", + "caption": "", + "width": "", + "height": "" + }, + "__index": 3, + "dateCreated": "Thu, 11 Jun 2020 17:32:45 GMT" + }, + { + "id": "paralysis-not-animation", + "title": "Paralysis, not Animation", + "image": { + "uri": "", + "caption": "", + "width": "", + "height": "" + }, + "__index": 4, + "dateCreated": "Thu, 11 Jun 2020 17:32:52 GMT" + } + ], + "works": [] +}
\ No newline at end of file diff --git a/index.js b/index.js new file mode 100644 index 0000000..6d15c6e --- /dev/null +++ b/index.js @@ -0,0 +1,77 @@ +var okcms = require('okcms') + +var port = process.env.PORT || 1337 + +var app = okcms.createApp({ + + meta: { + project: 'Animism' + }, + + debug: false, + + schemas: { + episodes: { + id: {type: 'string', hidden: true}, + title: {type: 'string'}, + curator: {type: 'text'}, + author: {type: 'text'}, + artists: {type: 'text'}, + sponsors: {type: 'text'}, + publicationDate: {type: 'string'}, + accessible: {type: 'flag'}, + }, + sections: { + id: {type: 'string', hidden: true}, + title: {type: 'string'}, + image: {type: 'image'}, + }, + works: { + id: {type: 'string', hidden: true}, + section: {type: 'string'}, + tag: {type: 'string'}, + author: {type: 'string'}, + title: {type: 'string'}, + year: {type: 'string'}, + type: {type: 'string'}, + typeMeta: {type: 'string'}, + image: {type: 'image'}, + }, + // archive: { + // id: {type: 'string', hidden: true}, + // title: {type: 'string'}, + // images: {type: 'triple-captioned-image-list'}, + // }, + // store: { + // id: {type: 'string', hidden: true}, + // title: {type: 'string'}, + // collection: {type: 'string'}, + // ClosedStoreImages: {type: 'captioned-image-list'}, + // }, + }, + + resources: [ + { type: 'episodes' }, + { type: 'sections' }, + { type: 'works' }, + ], + + views: { + '/': {}, + }, + + services: { + s3: { + key: process.env.S3_KEY, + secret: process.env.S3_SECRET, + bucket: process.env.S3_BUCKET, + dirname: process.env.S3_DIRNAME, + maxbytes: 1024*1024*2, + }, + } +}) +app.listen(port) +module.exports = app + +console.log('Server listening at port ' + port + '...'); + diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 0000000..1fe2c81 --- /dev/null +++ b/package-lock.json @@ -0,0 +1,919 @@ +{ + "name": "stone-island-cms", + "version": "1.0.0", + "lockfileVersion": 1, + "requires": true, + "dependencies": { + "accepts": { + "version": "1.3.7", + "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.7.tgz", + "integrity": "sha512-Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA==", + "requires": { + "mime-types": "~2.1.24", + "negotiator": "0.6.2" + } + }, + "ajv": { + "version": "6.12.2", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.2.tgz", + "integrity": "sha512-k+V+hzjm5q/Mr8ef/1Y9goCmlsK4I6Sm74teeyGvFk1XrOsbsKLjEdrvny42CZ+a8sXbk8KWpY/bDwS+FLL2UQ==", + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + } + }, + "apn": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/apn/-/apn-2.2.0.tgz", + "integrity": "sha512-YIypYzPVJA9wzNBLKZ/mq2l1IZX/2FadPvwmSv4ZeR0VH7xdNITQ6Pucgh0Uw6ZZKC+XwheaJ57DFZAhJ0FvPg==", + "requires": { + "debug": "^3.1.0", + "http2": "https://github.com/node-apn/node-http2/archive/apn-2.1.4.tar.gz", + "jsonwebtoken": "^8.1.0", + "node-forge": "^0.7.1", + "verror": "^1.10.0" + } + }, + "array-flatten": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", + "integrity": "sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=" + }, + "asn1": { + "version": "0.2.4", + "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.4.tgz", + "integrity": "sha512-jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg==", + "requires": { + "safer-buffer": "~2.1.0" + } + }, + "assert-plus": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", + "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=" + }, + "asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=" + }, + "aws-sign2": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz", + "integrity": "sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg=" + }, + "aws4": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.10.0.tgz", + "integrity": "sha512-3YDiu347mtVtjpyV3u5kVqQLP242c06zwDOgpeRnybmXlYYsLbtTrUBUm8i8srONt+FWobl5aibnU1030PeeuA==" + }, + "bcrypt-pbkdf": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz", + "integrity": "sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4=", + "requires": { + "tweetnacl": "^0.14.3" + } + }, + "body-parser": { + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.19.0.tgz", + "integrity": "sha512-dhEPs72UPbDnAQJ9ZKMNTP6ptJaionhP5cBb541nXPlW60Jepo9RV/a4fX4XWW9CuFNK22krhrj1+rgzifNCsw==", + "requires": { + "bytes": "3.1.0", + "content-type": "~1.0.4", + "debug": "2.6.9", + "depd": "~1.1.2", + "http-errors": "1.7.2", + "iconv-lite": "0.4.24", + "on-finished": "~2.3.0", + "qs": "6.7.0", + "raw-body": "2.4.0", + "type-is": "~1.6.17" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + } + } + }, + "buffer-equal-constant-time": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/buffer-equal-constant-time/-/buffer-equal-constant-time-1.0.1.tgz", + "integrity": "sha1-+OcRMvf/5uAaXJaXpMbz5I1cyBk=" + }, + "bytes": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.0.tgz", + "integrity": "sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg==" + }, + "caseless": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", + "integrity": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=" + }, + "combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "requires": { + "delayed-stream": "~1.0.0" + } + }, + "content-disposition": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.3.tgz", + "integrity": "sha512-ExO0774ikEObIAEV9kDo50o+79VCUdEB6n6lzKgGwupcVeRlhrj3qGAfwq8G6uBJjkqLrhT0qEYFcWng8z1z0g==", + "requires": { + "safe-buffer": "5.1.2" + }, + "dependencies": { + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" + } + } + }, + "content-type": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz", + "integrity": "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==" + }, + "cookie": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.4.0.tgz", + "integrity": "sha512-+Hp8fLp57wnUSt0tY0tHEXh4voZRDnoIrZPqlo3DPiI4y9lwg/jqx+1Om94/W6ZaPDOUbnjOt/99w66zk+l1Xg==" + }, + "cookie-signature": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", + "integrity": "sha1-4wOogrNCzD7oylE6eZmXNNqzriw=" + }, + "core-util-is": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", + "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=" + }, + "dashdash": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", + "integrity": "sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=", + "requires": { + "assert-plus": "^1.0.0" + } + }, + "debug": { + "version": "3.2.6", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.6.tgz", + "integrity": "sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ==", + "requires": { + "ms": "^2.1.1" + } + }, + "delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=" + }, + "depd": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", + "integrity": "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=" + }, + "destroy": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz", + "integrity": "sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=" + }, + "dotenv": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-1.2.0.tgz", + "integrity": "sha1-fNc+FuB/BXyAchR6W8OoZ38KtcY=" + }, + "ecc-jsbn": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz", + "integrity": "sha1-OoOpBOVDUyh4dMVkt1SThoSamMk=", + "requires": { + "jsbn": "~0.1.0", + "safer-buffer": "^2.1.0" + } + }, + "ecdsa-sig-formatter": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/ecdsa-sig-formatter/-/ecdsa-sig-formatter-1.0.11.tgz", + "integrity": "sha512-nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ==", + "requires": { + "safe-buffer": "^5.0.1" + } + }, + "ee-first": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", + "integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=" + }, + "encodeurl": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", + "integrity": "sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=" + }, + "escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", + "integrity": "sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=" + }, + "etag": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", + "integrity": "sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=" + }, + "express": { + "version": "4.17.1", + "resolved": "https://registry.npmjs.org/express/-/express-4.17.1.tgz", + "integrity": "sha512-mHJ9O79RqluphRrcw2X/GTh3k9tVv8YcoyY4Kkh4WDMUYKRZUq0h1o0w2rrrxBqM7VoeUVqgb27xlEMXTnYt4g==", + "requires": { + "accepts": "~1.3.7", + "array-flatten": "1.1.1", + "body-parser": "1.19.0", + "content-disposition": "0.5.3", + "content-type": "~1.0.4", + "cookie": "0.4.0", + "cookie-signature": "1.0.6", + "debug": "2.6.9", + "depd": "~1.1.2", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "finalhandler": "~1.1.2", + "fresh": "0.5.2", + "merge-descriptors": "1.0.1", + "methods": "~1.1.2", + "on-finished": "~2.3.0", + "parseurl": "~1.3.3", + "path-to-regexp": "0.1.7", + "proxy-addr": "~2.0.5", + "qs": "6.7.0", + "range-parser": "~1.2.1", + "safe-buffer": "5.1.2", + "send": "0.17.1", + "serve-static": "1.14.1", + "setprototypeof": "1.1.1", + "statuses": "~1.5.0", + "type-is": "~1.6.18", + "utils-merge": "1.0.1", + "vary": "~1.1.2" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + }, + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" + } + } + }, + "extend": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", + "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==" + }, + "extsprintf": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.4.0.tgz", + "integrity": "sha1-4mifjzVvrWLMplo6kcXfX5VRaS8=" + }, + "fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" + }, + "fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" + }, + "finalhandler": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.2.tgz", + "integrity": "sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==", + "requires": { + "debug": "2.6.9", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "on-finished": "~2.3.0", + "parseurl": "~1.3.3", + "statuses": "~1.5.0", + "unpipe": "~1.0.0" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + } + } + }, + "forever-agent": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", + "integrity": "sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=" + }, + "form-data": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz", + "integrity": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==", + "requires": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.6", + "mime-types": "^2.1.12" + } + }, + "forwarded": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.1.2.tgz", + "integrity": "sha1-mMI9qxF1ZXuMBXPozszZGw/xjIQ=" + }, + "fresh": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", + "integrity": "sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=" + }, + "get-routes": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/get-routes/-/get-routes-2.0.0.tgz", + "integrity": "sha512-HNwdLfMzKpJwmEWMt7lljEGeQoIp7X4O7k1sUaqyL/oRvVq7qq1L57dkO/4cO1MHRGObjzO+FUyElZNgqrzMwQ==", + "requires": { + "lodash": "4.17.15" + } + }, + "getpass": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", + "integrity": "sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=", + "requires": { + "assert-plus": "^1.0.0" + } + }, + "har-schema": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz", + "integrity": "sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI=" + }, + "har-validator": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.3.tgz", + "integrity": "sha512-sNvOCzEQNr/qrvJgc3UG/kD4QtlHycrzwS+6mfTrrSq97BvaYcPZZI1ZSqGSPR73Cxn4LKTD4PttRwfU7jWq5g==", + "requires": { + "ajv": "^6.5.5", + "har-schema": "^2.0.0" + } + }, + "http-errors": { + "version": "1.7.2", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.7.2.tgz", + "integrity": "sha512-uUQBt3H/cSIVfch6i1EuPNy/YsRSOUBXTVfZ+yR7Zjez3qjBz6i9+i4zjNaoqcoFVI4lQJ5plg63TvGfRSDCRg==", + "requires": { + "depd": "~1.1.2", + "inherits": "2.0.3", + "setprototypeof": "1.1.1", + "statuses": ">= 1.5.0 < 2", + "toidentifier": "1.0.0" + } + }, + "http-signature": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz", + "integrity": "sha1-muzZJRFHcvPZW2WmCruPfBj7rOE=", + "requires": { + "assert-plus": "^1.0.0", + "jsprim": "^1.2.2", + "sshpk": "^1.7.0" + } + }, + "http2": { + "version": "https://github.com/node-apn/node-http2/archive/apn-2.1.4.tar.gz", + "integrity": "sha512-ad4u4I88X9AcUgxCRW3RLnbh7xHWQ1f5HbrXa7gEy2x4Xgq+rq+auGx5I+nUDE2YYuqteGIlbxrwQXkIaYTfnQ==" + }, + "iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "requires": { + "safer-buffer": ">= 2.1.2 < 3" + } + }, + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" + }, + "ipaddr.js": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", + "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==" + }, + "is-typedarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", + "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=" + }, + "isstream": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", + "integrity": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=" + }, + "jsbn": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", + "integrity": "sha1-peZUwuWi3rXyAdls77yoDA7y9RM=" + }, + "json-schema": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz", + "integrity": "sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM=" + }, + "json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" + }, + "json-stringify-safe": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", + "integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=" + }, + "jsonwebtoken": { + "version": "8.5.1", + "resolved": "https://registry.npmjs.org/jsonwebtoken/-/jsonwebtoken-8.5.1.tgz", + "integrity": "sha512-XjwVfRS6jTMsqYs0EsuJ4LGxXV14zQybNd4L2r0UvbVnSF9Af8x7p5MzbJ90Ioz/9TI41/hTCvznF/loiSzn8w==", + "requires": { + "jws": "^3.2.2", + "lodash.includes": "^4.3.0", + "lodash.isboolean": "^3.0.3", + "lodash.isinteger": "^4.0.4", + "lodash.isnumber": "^3.0.3", + "lodash.isplainobject": "^4.0.6", + "lodash.isstring": "^4.0.1", + "lodash.once": "^4.0.0", + "ms": "^2.1.1", + "semver": "^5.6.0" + } + }, + "jsprim": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz", + "integrity": "sha1-MT5mvB5cwG5Di8G3SZwuXFastqI=", + "requires": { + "assert-plus": "1.0.0", + "extsprintf": "1.3.0", + "json-schema": "0.2.3", + "verror": "1.10.0" + }, + "dependencies": { + "extsprintf": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", + "integrity": "sha1-lpGEQOMEGnpBT4xS48V06zw+HgU=" + } + } + }, + "jwa": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/jwa/-/jwa-1.4.1.tgz", + "integrity": "sha512-qiLX/xhEEFKUAJ6FiBMbes3w9ATzyk5W7Hvzpa/SLYdxNtng+gcurvrI7TbACjIXlsJyr05/S1oUhZrc63evQA==", + "requires": { + "buffer-equal-constant-time": "1.0.1", + "ecdsa-sig-formatter": "1.0.11", + "safe-buffer": "^5.0.1" + } + }, + "jws": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/jws/-/jws-3.2.2.tgz", + "integrity": "sha512-YHlZCB6lMTllWDtSPHz/ZXTsi8S00usEV6v1tjq8tOUZzw7DpSDWVXjXDre6ed1w/pd495ODpHZYSdkRTsa0HA==", + "requires": { + "jwa": "^1.4.1", + "safe-buffer": "^5.0.1" + } + }, + "lodash": { + "version": "4.17.15", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.15.tgz", + "integrity": "sha512-8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A==" + }, + "lodash.includes": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/lodash.includes/-/lodash.includes-4.3.0.tgz", + "integrity": "sha1-YLuYqHy5I8aMoeUTJUgzFISfVT8=" + }, + "lodash.isboolean": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/lodash.isboolean/-/lodash.isboolean-3.0.3.tgz", + "integrity": "sha1-bC4XHbKiV82WgC/UOwGyDV9YcPY=" + }, + "lodash.isinteger": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/lodash.isinteger/-/lodash.isinteger-4.0.4.tgz", + "integrity": "sha1-YZwK89A/iwTDH1iChAt3sRzWg0M=" + }, + "lodash.isnumber": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/lodash.isnumber/-/lodash.isnumber-3.0.3.tgz", + "integrity": "sha1-POdoEMWSjQM1IwGsKHMX8RwLH/w=" + }, + "lodash.isplainobject": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz", + "integrity": "sha1-fFJqUtibRcRcxpC4gWO+BJf1UMs=" + }, + "lodash.isstring": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/lodash.isstring/-/lodash.isstring-4.0.1.tgz", + "integrity": "sha1-1SfftUVuynzJu5XV2ur4i6VKVFE=" + }, + "lodash.once": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/lodash.once/-/lodash.once-4.1.1.tgz", + "integrity": "sha1-DdOXEhPHxW34gJd9UEyI+0cal6w=" + }, + "media-typer": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", + "integrity": "sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=" + }, + "merge-descriptors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", + "integrity": "sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E=" + }, + "methods": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", + "integrity": "sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4=" + }, + "mime": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==" + }, + "mime-db": { + "version": "1.44.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.44.0.tgz", + "integrity": "sha512-/NOTfLrsPBVeH7YtFPgsVWveuL+4SjjYxaQ1xtM1KMFj7HdxlBlxeyNLzhyJVx7r4rZGJAZ/6lkKCitSc/Nmpg==" + }, + "mime-types": { + "version": "2.1.27", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.27.tgz", + "integrity": "sha512-JIhqnCasI9yD+SsmkquHBxTSEuZdQX5BuQnS2Vc7puQQQ+8yiP5AY5uWhpdv4YL4VM5c6iliiYWPgJ/nJQLp7w==", + "requires": { + "mime-db": "1.44.0" + } + }, + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + }, + "negotiator": { + "version": "0.6.2", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.2.tgz", + "integrity": "sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw==" + }, + "node-forge": { + "version": "0.7.6", + "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-0.7.6.tgz", + "integrity": "sha512-sol30LUpz1jQFBjOKwbjxijiE3b6pjd74YwfD0fJOKPjF+fONKb2Yg8rYgS6+bK6VDl+/wfr4IYpC7jDzLUIfw==" + }, + "oauth-sign": { + "version": "0.9.0", + "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz", + "integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==" + }, + "object-assign": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-2.1.1.tgz", + "integrity": "sha1-Q8NuXVaf+OSBbE76i+AtJpZ8GKo=" + }, + "okcms": { + "version": "git+ssh://git@ghghgh.us/~/okcms.git#5847d4f21f87064d547f3e870bcac04b5b7b2127", + "from": "git+ssh://git@ghghgh.us/~/okcms.git#v0.2.5", + "requires": { + "dotenv": "^1.1.0", + "express": "^4.14.0", + "object-assign": "^4.1.0", + "q": "^1.4.1", + "request": "^2.74.0" + }, + "dependencies": { + "object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=" + } + } + }, + "on-finished": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz", + "integrity": "sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=", + "requires": { + "ee-first": "1.1.1" + } + }, + "parseurl": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", + "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==" + }, + "path-to-regexp": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", + "integrity": "sha1-32BBeABfUi8V60SQ5yR6G/qmf4w=" + }, + "performance-now": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", + "integrity": "sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=" + }, + "proxy-addr": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.6.tgz", + "integrity": "sha512-dh/frvCBVmSsDYzw6n926jv974gddhkFPfiN8hPOi30Wax25QZyZEGveluCgliBnqmuM+UJmBErbAUFIoDbjOw==", + "requires": { + "forwarded": "~0.1.2", + "ipaddr.js": "1.9.1" + } + }, + "psl": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/psl/-/psl-1.8.0.tgz", + "integrity": "sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ==" + }, + "punycode": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", + "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==" + }, + "q": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/q/-/q-1.5.1.tgz", + "integrity": "sha1-fjL3W0E4EpHQRhHxvxQQmsAGUdc=" + }, + "qs": { + "version": "6.7.0", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.7.0.tgz", + "integrity": "sha512-VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ==" + }, + "range-parser": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", + "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==" + }, + "raw-body": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.4.0.tgz", + "integrity": "sha512-4Oz8DUIwdvoa5qMJelxipzi/iJIi40O5cGV1wNYp5hvZP8ZN0T+jiNkL0QepXs+EsQ9XJ8ipEDoiH70ySUJP3Q==", + "requires": { + "bytes": "3.1.0", + "http-errors": "1.7.2", + "iconv-lite": "0.4.24", + "unpipe": "1.0.0" + } + }, + "request": { + "version": "2.88.2", + "resolved": "https://registry.npmjs.org/request/-/request-2.88.2.tgz", + "integrity": "sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==", + "requires": { + "aws-sign2": "~0.7.0", + "aws4": "^1.8.0", + "caseless": "~0.12.0", + "combined-stream": "~1.0.6", + "extend": "~3.0.2", + "forever-agent": "~0.6.1", + "form-data": "~2.3.2", + "har-validator": "~5.1.3", + "http-signature": "~1.2.0", + "is-typedarray": "~1.0.0", + "isstream": "~0.1.2", + "json-stringify-safe": "~5.0.1", + "mime-types": "~2.1.19", + "oauth-sign": "~0.9.0", + "performance-now": "^2.1.0", + "qs": "~6.5.2", + "safe-buffer": "^5.1.2", + "tough-cookie": "~2.5.0", + "tunnel-agent": "^0.6.0", + "uuid": "^3.3.2" + }, + "dependencies": { + "qs": { + "version": "6.5.2", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.2.tgz", + "integrity": "sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA==" + } + } + }, + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==" + }, + "safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" + }, + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" + }, + "send": { + "version": "0.17.1", + "resolved": "https://registry.npmjs.org/send/-/send-0.17.1.tgz", + "integrity": "sha512-BsVKsiGcQMFwT8UxypobUKyv7irCNRHk1T0G680vk88yf6LBByGcZJOTJCrTP2xVN6yI+XjPJcNuE3V4fT9sAg==", + "requires": { + "debug": "2.6.9", + "depd": "~1.1.2", + "destroy": "~1.0.4", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "fresh": "0.5.2", + "http-errors": "~1.7.2", + "mime": "1.6.0", + "ms": "2.1.1", + "on-finished": "~2.3.0", + "range-parser": "~1.2.1", + "statuses": "~1.5.0" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "requires": { + "ms": "2.0.0" + }, + "dependencies": { + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + } + } + }, + "ms": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz", + "integrity": "sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==" + } + } + }, + "serve-static": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.14.1.tgz", + "integrity": "sha512-JMrvUwE54emCYWlTI+hGrGv5I8dEwmco/00EvkzIIsR7MqrHonbD9pO2MOfFnpFntl7ecpZs+3mW+XbQZu9QCg==", + "requires": { + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "parseurl": "~1.3.3", + "send": "0.17.1" + } + }, + "setprototypeof": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.1.tgz", + "integrity": "sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw==" + }, + "sshpk": { + "version": "1.16.1", + "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.16.1.tgz", + "integrity": "sha512-HXXqVUq7+pcKeLqqZj6mHFUMvXtOJt1uoUx09pFW6011inTMxqI8BA8PM95myrIyyKwdnzjdFjLiE6KBPVtJIg==", + "requires": { + "asn1": "~0.2.3", + "assert-plus": "^1.0.0", + "bcrypt-pbkdf": "^1.0.0", + "dashdash": "^1.12.0", + "ecc-jsbn": "~0.1.1", + "getpass": "^0.1.1", + "jsbn": "~0.1.0", + "safer-buffer": "^2.0.2", + "tweetnacl": "~0.14.0" + } + }, + "statuses": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", + "integrity": "sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=" + }, + "toidentifier": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.0.tgz", + "integrity": "sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw==" + }, + "tough-cookie": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz", + "integrity": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==", + "requires": { + "psl": "^1.1.28", + "punycode": "^2.1.1" + } + }, + "tunnel-agent": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", + "integrity": "sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=", + "requires": { + "safe-buffer": "^5.0.1" + } + }, + "tweetnacl": { + "version": "0.14.5", + "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", + "integrity": "sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q=" + }, + "type-is": { + "version": "1.6.18", + "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", + "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", + "requires": { + "media-typer": "0.3.0", + "mime-types": "~2.1.24" + } + }, + "unpipe": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", + "integrity": "sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=" + }, + "uri-js": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.2.2.tgz", + "integrity": "sha512-KY9Frmirql91X2Qgjry0Wd4Y+YTdrdZheS8TFwvkbLWf/G5KNJDCh6pKL5OZctEW4+0Baa5idK2ZQuELRwPznQ==", + "requires": { + "punycode": "^2.1.0" + } + }, + "utils-merge": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", + "integrity": "sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=" + }, + "uuid": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", + "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==" + }, + "vary": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", + "integrity": "sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=" + }, + "verror": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz", + "integrity": "sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=", + "requires": { + "assert-plus": "^1.0.0", + "core-util-is": "1.0.2", + "extsprintf": "^1.2.0" + } + } + } +} diff --git a/package.json b/package.json new file mode 100644 index 0000000..7e2e9b4 --- /dev/null +++ b/package.json @@ -0,0 +1,14 @@ +{ + "name": "animism-cms", + "version": "1.0.0", + "description": "Animism CMS", + "main": "index.js", + "author": "Jules Laplace", + "license": "LNT", + }, + "dependencies": { + "get-routes": "^2.0.0", + "object-assign": "^2.0.0", + "okcms": "git+ssh://git@ghghgh.us/~/okcms.git#v0.2.5" + } +} diff --git a/public/db.json b/public/db.json new file mode 100644 index 0000000..9d882db --- /dev/null +++ b/public/db.json @@ -0,0 +1,5888 @@ +{ + "story": [ + { + "id": "philosophy", + "title": "Philosophy", + "image": { + "uri": "http://cdn3.yoox.biz/stoneisland/wp-content/uploads/2013/11/philosophy1.jpg", + "caption": "The philosophy of Stone Island. Image of glass lab flasks containing pigments used for dyeing garments.", + "width": "", + "height": "" + }, + "body": "A culture of research, experimentation, function and use are the matrixes that have always defined Stone Island: the sportswear brand established in 1982, designed to become a symbol of extreme research on fibers and textiles, applied to an innovative design. Season after season, it is through the study of form and the “manipulation” of the matter that Stone Island has found its own language with the aim of establishing new boundaries in the world of garment making. \r\n\r\nThe study of uniforms and of work wear, its evolution according to new requirements of use, has become Stone Island’s observation post for defining a project in which the clothing item’s function is never just aesthetic.\r\n\r\nAn ongoing investigation, thorough and without frontiers, on the processing and ennobling of fibers and textiles, leading to discover materials and production techniques never used before in the clothing industry.\r\n\r\nJackets constructed in nylon monofilament, deriving from the water filtering technology. Highly reflective or thermo-sensitive fabrics, changing color with the variation of temperature. Featherweight polyester cloth vacuum- coated with a 100% stainless steel film used in aviation technology to protect the on-board computers. Non-woven materials, Kevlar® and polyester felt, rhomboidal nets in polyester used in the construction industry and coated in polyurethane. These are some examples of materials conceived by Stone Island philosophy.\r\n\r\nStone Island’s strength is also based on the unique ability to intervene on the finished item, through the continuous tests on dyeing and treatments carried out in the Sportswear Company’s laboratory of color. A department able to combine advanced technology, experience and human capacity and that has developed more than 60,000 different recipes of dyes throughout the years.\r\n\r\nAll the accumulated knowledge and experience, an inalienable heritage, on which great part of Stone Island’s know-how is based, is kept in the historical archive that collects the trial tests, and the recipes for textile dyeing and handling that have been developed by all those people who have worked on this project with passion.", + "__index": 0, + "dateCreated": "Thu, 05 Nov 2015 00:24:44 GMT" + }, + { + "id": "history", + "title": "History", + "image": { + "uri": "https://ltho.s3.amazonaws.com/ce68408c-34b3-40ca-8ddf-c10cd1412c5f.jpg", + "caption": "Image of the Stone Island exhibition with an artistic installation of mannequins in different jackets.", + "width": "", + "height": "" + }, + "body": "Stone Island, the Italian brand that reinvented the concept of casual wear, was founded in 1982 out of the passion and brilliant research into textile finishing performed by its creator and art director, intellectual from Bologna, Massimo Osti. It was Osti, in the mid-Seventies, who researched thousands of uniforms and pieces of work clothing and catalogued their functional characteristics. In Ravarino, in the province of Modena, he created a company whose hub was a full-scale center of research into materials and treatments became a sophisticated laboratory for garment and experimental dyeing.\r\n\r\nThe story of Stone Island began, almost by chance, with research into a special material, a thick truck tarpaulin, the outstanding feature of which was that it had been resin-treated in red on one side and blue on the other. The first prototype was too stiff, so it was washed for a long period in water with pumice stones to break down the structure of the material. The result was surprising, a worn-look garment with great appeal. It was therefore decided to create seven jackets in that unique fabric called Tela Stella, and to give this product a name. The strong identity of the project called for an important name, which was identified by analyzing the most commonly occurring words in Joseph Conrad’s novels: the words Stone and Island were chosen.\r\n\r\nStone Island has a marine feel, conjuring up old oilskins corroded by the sea and a military feel, which is drawn from the fund of research completed until that time. The name also evokes a love of the sea and that first treatment selected to “process” the garments. The badge, the detachable fabric label that has distinguished Stone Island garments since the first season, showed a Compass Rose, displayed like a military badge.\r\n\r\nThe reaction is immediate. Stone Island became a success phenomenon, with no set plan or marketing research behind it: a uniquely Italian mix of creativity, intuition and entrepreneurial spirit. A star was born.", + "__index": 1, + "dateCreated": "Thu, 05 Nov 2015 00:27:25 GMT" + }, + { + "id": "carlo-rivetti", + "title": "Carlo Rivetti", + "image": { + "uri": "https://ltho.s3.amazonaws.com/2fe16d85-e85f-4f12-ae55-72622c8efafd.jpg", + "caption": "Black and white head shot of Carlo Rivetti, CEO of Stone Island.", + "width": "", + "height": "" + }, + "body": "My family has deep roots within the clothing industry. In the 19th century, Giuseppe Rivetti – son of Giovanni Battista, Italy’s first carding machine operator, inherited his father’s passion and in order to fund his own wool factory he secretly sold cows from the family farms to buy looms. By 1872 he had his own wool factory: “Giuseppe Rivetti e Figli”, which later merged with the Turin based GFT group (Gruppo Finanziario Tessile). There, my uncle Pinot had the unique idea of rubberizing wool fabrics to increase their performance.
This fondness for research also drove my father, Silvio. In the immediate post-war period, he set off for the United States where he found the Palm Beach Incorporated company, who produced something that didn’t yet exist in Europe: clothing constructed on theoretical measurements; what we now know as sizes.
My father was stunned, working for six months as a laborer, before returning and convincing his brothers to give up their shares in the wool factories in order to buy out GFT. \r\n\r\nIn the early 1950’s GFT measured more than 25,000 Italians, which allowed them to effectively dress the whole nation for the first time with non-tailored garments. \r\n\r\nThe 1973 oil crisis brought severe yet swift recession, and something had to be done to recover sales. My cousin, Marco Rivetti, noticed a French couturier working in a women’s outerwear firm we’d acquired one year earlier. He would design and fit the garments, write orders in Paris and then use our company to manufacture them. He was Emanuel Ungaro. This led us to realize that in order to re-launch the sector we needed to add a fundamental ingredient to the clothing industry: fashion.
As a result, GFT became a licensee of the rising stars of Italian fashion, including Giorgio Armani and Valentino. The rise of Italian-made Prêt à Porter was due to the ability to combine entrepreneurial ability with creativity.\r\n\r\nI joined GFT in 1975. Towards the end of that decade, I had the idea to start a new area within the group; to generate something more timeless: sportswear. In the early 1980’s, I discovered C.P. Company, a firm known for being innovative and cutting edge in this field. The company was owned by Trabaldo Togna and Massimo Osti, a graphic artist by profession and the firm’s designer and art director. We bought first 50% in 1983 and later on the entire company.
That was the beginning of my journey. In 1993 I left GFT and, together with my sister Cristina, acquired 100% of the firm which is known today as Sportswear Company.
\r\n\r\nIt was in 1983 that I got to know Massimo Osti, who had brought Stone Island into existence almost by chance, a year earlier. A special fabric named ‘Tela Stella’ had arrived in the company: a cloth that had a different color on each side, used to make truck tarpaulins. The effect was very interesting but had little to do with the existing C.P. Company line. Osti decided to do something special with that fabric and created a collection of just seven jackets. The collection strongly referenced military style with the now iconic badge inspired by military insignia. The compass symbolized love for the sea and an aim for constant research.\r\n\r\nMassimo was at least ten years ahead of others in his field. He saw himself as a producer rather than a fashion designer.
His achievement establishing Stone Island was not only appealing and saleable, but also true to his core belief in informal wear. His ideas were drawn from military and work wear, accompanying them with endless textile research.\r\n\r\nIn the mid-nineties, Massimo our paths eventually came apart, and I found myself with the difficult task of finding someone to design Stone Island.
In 1994 as I wandered through a Munich trade fair I came across the work of designer Paul Harvey, an English designer who lived in Sant’Arcangelo di Romagna, Italy. I was struck by a strange feeling of familiarity and cried out: “so here’s the Stone of the 21st Century!”. From 1996, with Paul, we embarked on the second era of our brand.\r\n\r\nPaul designed 24 collections, each consistent in the evolution and research that has always set Stone Island apart.
He is another extraordinary character. After graduating Central Saint Martins, he decided fashion was not his career path and worked as a truck driver! Only after marrying a fantastic Italian lady and moving to Italy did he start designing clothes.
His approach to design has functionality in its blood, which allowed him to interpret Stone Island perfectly. He led the brand masterfully into the new century. \r\n\r\nAfter 12 marvelous years, Paul needed to leave the fashion world to “do something for the Planet”. With such a noble ambition, I could only accept and support his decision.
In that moment, facing another crucial decision, I came to the conclusion the era of “one man at the helm” was over.
Times had changed. It was necessary to be multicultural in order to be truly contemporary.
I built a design team. I felt that in this era it is this possible to face all aspects of a world only with several minds and several visions: and this has been Stone Island from 2008 to today.
\r\n\r\nI feel like the coach. I choose which men to send onto the pitch, depending upon who we have to play: We need to be more sensitive, faster, and ready to grasp the signs of strength and weakness.
As a result, we need multi-cultural people that travel the world and observe it from different viewpoints: people of different ages and from different cultures.\r\n\r\nThis, in short, is my story. I like to think there’s a common thread that binds us all. A desire for continual experimentation and research, not without a touch of healthy insanity: that special something that makes our Stone Island much more than a just a clothing brand.\r\n\r\n<i>Carlo Rivetti,\r\nPresident and Creative Director, Stone Island</i>", + "__index": 2, + "dateCreated": "Thu, 05 Nov 2015 00:27:38 GMT" + } + ], + "archive": [ + { + "id": "-010-015", + "title": "'010'015", + "images": [ + { + "uri": "https://ltho.s3.amazonaws.com/2bafd7a2-fbbb-4904-8e64-ff394888fd24.png", + "label": "LIQUID REFLECTIVE", + "code": "5315 42944", + "caption": "Fabric that is highly reflective owing to its coating made up\r\nof thousands of glass microspheres. Each finished garment\r\nis hand sprayed individually and individually baked dry.\r\nThe varying intensity of the reflective element and varying\r\nintensity of color, the dribbling and speckled effect, are\r\nowing to the high level of craftsmanship involved in the\r\nprocess, making each garment unique and unrepeatable.\r\nLining in quilted microfiber with polyester padding.\r\nStone Island badge with white embroidery, reserved for\r\ngarments that are made using advanced research into\r\nfabrics or processes." + }, + { + "uri": "https://ltho.s3.amazonaws.com/a0714935-2800-425f-9b34-63fdc4a7fc78.png", + "label": "30/30 JACKET", + "code": "5715 4TTY2", + "caption": "The 30/30 jacket is a cross section of the state of the art of Stone Island. A testament to three decades of exploration and development, it has been designed to embody the spirit of Stone Island’s endless creativity. Linked by the signature looped rigging system, both the jacket shell and jacket liner are reversible. These can be worn, either together or alone, in a total of 10 different ways. The transformative\r\nproperties of the fabrics mean that these 10 ways can each be worn in 3 different modes: Ice, Reflective,\r\nand Normal; resulting in a total of 30 different jacket states.\r\nThis piece features is our 30th anniversary special edition badge.\r\nJACKET /SHELL _ RASO GOMMATO PRISMATIC COVER.\r\nSatin weave cotton of military origin bonded on the inside to a a shiny transparent fine-grained polyurethane film reflecting the light, magnifying the color effects and bestowing the surface with a three-dimensional and ‘liquid’ appearance.\r\nJACKET/ LINER_ THERMO REFLECTIVE / ENGINEERED WOOL\r\nThis material merges two of Stone Island’s most avant-garde research paths. It explores the interaction between light refraction and thermosensitivity technologies. The resins used to coat the nylon substrate host both the glass microspheres allowing fabric refraction and the micro-encapsulated pigments modifying the passage of light and thus enabling color changes in relation to temperature. The final effect is an organic and dynamic interaction of light and color. On the reverse side, an engineered wool face made with a double knit machine." + }, + { + "uri": "https://ltho.s3.amazonaws.com/d51dce63-d467-45ea-88a6-5b077ffe3c3c.png", + "label": "REFLECTIVE KNIT WITH WINDSTOPPER® 3L", + "code": "5715 587Y5", + "caption": "To celebrate the thirtieth anniversary of Stone Island, a yarn has been engineered that represents the\r\nheight of our tireless research. The President’S Knit 5715 has been created in Reflective yarn, made\r\nup of micro plates coated with glass microspheres trapped inside a polyester mesh. The structure of\r\nthe jumper has been made double, reflective on the outside and wool on the inside. The outer face\r\nhas then been printed in a darker shade using heat and pressure sublimation printing to amalgamate\r\nthe fibers, obtain an even surface and reduce the strong reflective appearance.\r\nThe detachable padded and quilted lining has been created in a polyester jersey laminated with a\r\nWindstopper® membrane, which provides an unbeatable balance between protection and comfort.\r\nThis piece features is our 30th anniversary special edition badge." + }, + { + "uri": "https://ltho.s3.amazonaws.com/5883b275-a2eb-4a34-890f-69b30250a62b.png", + "label": "RASO HAND PAINTED TORTOISE SHELL", + "code": "6115 70565", + "caption": "Trench coat in a satin-weave cotton fabric of military origin. The garment has been dyed and then faded in selected areas with a corrosive paste. The bleached parts have then been hand-painted with a tortoiseshell-inspired motif also appearing on the Stone Island badge on the left sleeve. This extraordinary manual process makes each piece unique and unrepeatable. Detachable hood in garment-dyed padded iridescent nylon. Detachable lining in GARMENT-DYED DOWN_26 GR X SQM_N, an ultra-light nylon weighing only 26 grams per square meter, filled with the finest down specially treated to bear the stress of the garment dyeing procedure. Garment-dyed with special dye recipes. It is secured to the outer garment by the iconic Stone Island fastening system." + }, + { + "uri": "https://ltho.s3.amazonaws.com/a25cc013-5c2c-4221-974a-987b8fd00ab4.png", + "label": "HAND PAINTED SHEEPSKIN", + "code": "6115 00379", + "caption": "Sheepskin parka. The finished piece has been hand-sprayed on the outer face with a resin based product and then hand waxed to achieve a softer feel. Hood edged by fur trim. " + }, + { + "uri": "https://ltho.s3.amazonaws.com/fa5ed231-8b04-4ecc-b126-7a5543d5614a.png", + "label": "ICE JACKET THERMO-SENSITIVE FABRIC", + "code": "6115 43098", + "caption": "Hooded jacket in thermo sensitive fabric. A water- and wind-resistant polyurethane film is embedded with micro-encapsulated pigments. The molecules of these pigments modify the path of light and change color according to the temperature. The garment is then padded with the finest down.Two chest patch pockets, with snap-flap fastening and second pocket with vertical zip fastening. Adjustable elastic at cuffs. Cotton terry lined hood. Hidden zip and button fastening." + }, + { + "uri": "https://ltho.s3.amazonaws.com/bfd9defc-a1ef-4322-9e53-9505ec606ed9.png", + "label": "RASO GOMMATO REVERSE COLOR PROCESS", + "code": "6215 42338", + "caption": "Jacket in Raso Gommato -rubberized satin- a mil. spec. cotton satin bonded with a polyurethane cover making the fabric wind and water resistant. In this version, the transparent cover is bonded to a previously piece dyed and printed the cotton satin. The finished garment undergoes an exclusive procedure named Reverse Color Process, a fading technique followed by an overdyeing process on the finished garment, owing to the piece unparalleled shaded print effects, resist print areas and residual color deposits, unique to each single item." + }, + { + "uri": "https://ltho.s3.amazonaws.com/390b68f3-7f9a-41af-a09c-bd15ac7008a3.png", + "label": "POLYPROPYLENE TELA", + "code": "6315 40534", + "caption": "Down filled parka in polypropylene tela treated with an anti-drop agent. Polypropylene, a material with antibacterial properties, is the lightest man-made fibre. Even very bulky garments astonish for their specific lightness. The paste colored yarn is texturized to obtain a cotton looking opaque aspect. " + }, + { + "uri": "https://ltho.s3.amazonaws.com/cc9f8c72-bbac-4d34-9762-4eae85374abf.png", + "label": "HIDDEN REFLECTIVE", + "code": "6315 G0598", + "caption": "Vest in a reflective, water and wind resistant polyester fabric owing its features to a coating made of thousands of glass microspheres. An opaque black plating totally covers the refraction of the material which is unveiled when photographed in flash mode. The reflective features will be revealed through usage, with diverse effects and intensities from piece to piece, depending on its wearer usage. Stone Island logo on the back obtained through laser printing. Filled with the finest down. Sheepskin over collar. " + }, + { + "uri": "https://ltho.s3.amazonaws.com/512029b0-f4a3-469a-9d7d-1cd7fc15c1c8.png", + "label": "POLY COVER COMPOSITE + POLY FUR SILVER DETACHABLE LINING", + "code": "6315 491Y1", + "caption": "Hooded jacket in Poly Cover Composite, a matte, colorless and opaque two-component water and wind resistant film. The garment dyeing technique colors the film without affecting its transparency. Completely heat sealed seams.\r\nDetachable hooded lining in Poly Fur, a synthetic fur with external silver colored coating. Snap fastening on nylon tape." + } + ], + "__index": "4", + "dateCreated": "Thu, 05 Nov 2015 01:48:39 GMT" + }, + { + "id": "-000-009", + "title": "'000'009", + "images": [ + { + "uri": "https://ltho.s3.amazonaws.com/725e1b3f-58ee-49f6-8413-0a7e3dc9890f.png", + "label": "KEVLAR®", + "code": "3315 4031", + "caption": "Kevlar® felt. Five times more robust than steel given the same weight, Kevlar® is lightweight and\r\nhighly insulating. It is resistant to even extreme changes in temperature and to both fresh and salt\r\nwater. Owing to its qualities, it is used in the aerospace field, in competitive sailing and for Formula\r\n1 racing. With its soft yellow color, dyeing this material is usually impossible, but with Stone Island\r\ngarment dyeing expertise, laminating the hydro-cohered Kevlar® fibers to an invisible nylon mesh and\r\na polyurethane coating on the outer side and a simple polyurethane coating on the inside this has been\r\nmade possible.\r\nDetachable lining in triple woven fabric, two nylon honeycomb patterns have been machine raised\r\nwith a further nylon yarn. The detachable lining is attached to the outer garment using a system of ties,\r\nadapted from those used in the sailing world. Stone Island badge with white embroidery, reserved for\r\ngarments that are made using advanced research into fabrics or processes." + }, + { + "uri": "https://ltho.s3.amazonaws.com/c1c9db4f-5aa9-4698-9fe3-04a58a631653.png", + "label": "MONOFILAMENT-S", + "code": "3715 4316", + "caption": "Nylon twill monofilament mesh. On the inside, a cotton muslin\r\nlayer is laminated on the outer face with a black breathable\r\nand water resistant membrane, with the application of\r\nwhite polyester taped seams. The monofilament mesh has\r\na protecting function for the inner membrane. From the\r\naesthetic point of view, its transparency is designed to reveal\r\nthe internal construction of the garment. The piece is lined in\r\na brushed cotton fabric quilted with polyester padding. The\r\nfinished garment is over-dyed with a double cotton and nylon\r\nrecipe." + }, + { + "uri": "https://ltho.s3.amazonaws.com/4f1783c2-1ff7-4054-9d18-faebbd617305.png", + "label": "LIGHT", + "code": "3715 4Q30", + "caption": "Stone Island anticipated the use of light in clothing. Also for safety purposes in cases of\r\ndiminished visibility. The beginning of the Nineties, saw the introduction of the Reflective\r\nJacket - the first reflective garment ever - and in ‘002, to mark its twentieth anniversary,\r\nthe use of light went from being passive to active and self-generated with the use of optical\r\nfibres.\r\nThe fabric’s cotton warp is woven with polyester yarns as well as with optical fibre\r\nfilaments forming a band of light along the front fastening and around the edge of the hood.\r\nThe light is switched on using a small battery hidden inside the garment.\r\nHooded detachable lining in microfiber quilted to a polyester padding, attached to the\r\nouter garment using a system of ties, adapted from those used in the sailing world." + }, + { + "uri": "https://ltho.s3.amazonaws.com/c62f3de3-a639-4818-988c-3aba9db057e5.png", + "label": "COMPACT", + "code": "3915 4N40", + "caption": "Compact treated linen felt. The Compact process is the transfer to finished garments of a textile process that is usually used to cleanse the natural fibers of their impurities. The garments are boiled at 130°C under pressure, with special additives. In the finished garments the material shrinks approximately 50%, the material becomes extraordinarily compact, the hand of the fabrics becomes dryer and naturally elastic. The fabrics take on an uneven, hand crafted appearance, as if they had been woven on antique looms. The fabric volume reduction involved with the Compact treatment creates very important pattern making complexities. The garment can be fitted to the body with a strings and loops system on the sides, front and hood. This system is inspired by anti-G suits of military aviators. Garment dyed; Compact pieces are very receptive to the garment dyeing recipes, the colors result far more intense than those of untreated garments.\r\nDetachable lining in peached microfiber, quilted with polyester padding. The detachable lining is attached to the outer garment using a system of ties, adapted from those used in the sailing world." + }, + { + "uri": "https://ltho.s3.amazonaws.com/ba287902-7b92-4128-867f-69d6b1e40cc0.png", + "label": "OPAQUE NYLON TELA", + "code": "4315 4C24 30GR", + "caption": "Japanese featherweight nylon canvas, weighing just 30 grams per square\r\nmeter. The Stone Island badge is ultra light, in embroidered nylon mesh in\r\norder to avoid weighing down the sleeve. The garment is padded with the\r\nfinest down. The lightweight construction of the down bags and the direct\r\ninjection of feathers heightens the lightness of the garments." + }, + { + "uri": "https://ltho.s3.amazonaws.com/320c3a59-c8ae-4dec-b863-15b15ccc368a.png", + "label": "OPAQUE NYLON CANVAS", + "code": "4515 4H24", + "caption": "Japanese featherweight nylon canvas, weighing just 37 grams\r\nper square meter. The Stone Island badge is ultra light, in\r\nembroidered nylon mesh in order to avoid weighing down the\r\nsleeve. The garment is padded with direct injection finest down.\r\nApart from highlighting the lightness of the fabric, the black\r\nedging under the fabric underscores the removal of the feather\r\nbags to increase the lightness of the garment. The yoke on the\r\nchest is disguised by the horizontal quilting motive. Inside the\r\nhood of the garment, an extra fabric hood with external coating\r\nand PVC print may be laced up by loops." + }, + { + "uri": "https://ltho.s3.amazonaws.com/35f9ec2a-fc52-42e5-b015-899e40ae9e89.png", + "label": "DAVID-TC SUBLIMATION PRINT", + "code": "4615 4C44", + "caption": "Reversible garment. Star-shaped cross-section polyester / polyamide\r\nJapanese microfiber. During garment dyeing under pressure at 130°C,\r\nthe heat transforms the structure and hand of the material radically.\r\nBeyond the depth of color and despite maintaining an industrial\r\nappearance, the David-TC garments take on an appearance and\r\nhand that grant a unique tactile experience, similar to both chamois\r\nleather and non-woven coagulated fabric. One of the two faces has\r\nbeen over printed on the finished garment with a dark color, using\r\na hot sublimation / pressure printing technique that reveals the\r\nconstruction details of both sides of the garment." + }, + { + "uri": "https://ltho.s3.amazonaws.com/03785345-d63c-4c18-addf-fb7461949cec.png", + "label": "ANTIQUED REFLECTIVE", + "code": "4715 7423", + "caption": "Cotton Batavia with a coating made up of thousands of glass microspheres. Antiqued Reflective fabric\r\nhas a strong capacity to reflect even the weakest light sources and is enhanced by a color patina that is\r\nparticularly evident in the folds of the garment, granting to the piece a three-dimensional appearance.\r\nThe shape and details of the garment have been deliberately designed with a retro style in order to\r\ncreate a contrast with the modernity of the reflective face. The hood is lined in a khaki colored wool\r\nwith parallel stripes, reminiscent of military blankets.\r\nDetachable lining in microfiber quilted to a thin polyester padding. The lining is attached to the outer\r\ngarment using a system of ties, adapted from those used in the sailing world.\r\nStone Island badge with white embroidery, reserved for garments that are made using advanced\r\nresearch into fabrics or processes." + }, + { + "uri": "https://ltho.s3.amazonaws.com/b7b6db65-3688-4472-839d-38852b074790.png", + "label": "RASO GOMMATO - HAND PAINTED CAMOUFLAGE", + "code": "4915 4C43", + "caption": "Drawing inspiration from the actions of soldiers during the First World War, who\r\nused earth from the trenches to make their uniforms dirty, thus inventing the\r\nconcept of camouflage, the fabric base in black satin weave cotton of military\r\norigin bonded to a black polyurethane cover on the inner face, has been faded\r\nwith a corrosive paste and then hand painted on the finished garment to create\r\na camouflage effect. By means of this manual process, each garment is rendered\r\nunique and unrepeatable.\r\nThe detachable quilted nylon lining with polyester padding, with front edging\r\nand collar in felted wool, is attached to the outer garment using a system of ties,\r\nadapted from those used in the sailing world." + }, + { + "uri": "https://ltho.s3.amazonaws.com/9a25ed8c-2293-4d6e-b63a-c17580113d63.png", + "label": "WAXED ICE - THERMO SENSITIVE FABRIC", + "code": "5115 7498", + "caption": "Cotton moleskin with a resin treatment containing thermo sensitive\r\nquartz. The color of the garment ranges from bright yellow at\r\nroom temperature to a deeper and deeper shade of olive green as\r\nthe temperature drops. The garment is washed and then waxed.\r\nThe detachable black woolen lining with Stone Island logo in the\r\ncentre is attached to the outer garment using a system of ties,\r\nadapted from those used in the sailing world.\r\nStone Island badge with white embroidery, reserved for garments\r\nthat are made using advanced research into fabrics or processes." + } + ], + "__index": "3", + "dateCreated": "Thu, 05 Nov 2015 01:49:03 GMT" + }, + { + "id": "-990-999", + "title": "'990'999", + "images": [ + { + "uri": "https://ltho.s3.amazonaws.com/f58db57f-a469-4c7b-b248-6cab5a927c8a.png", + "label": "RASO GOMMATO COLORED COVER", + "code": "05 4001", + "caption": "Satin weave cotton of military origin bonded to a\r\nmustard yellow polyurethane cover on the outside\r\nand white on the hood. The inner fabric face takes its\r\ncoloring from garment dyeing. Double parallel row\r\nof snap fasteners mounted on small rubber disks\r\nallow the garment to be tightened or loosened to fit." + }, + { + "uri": "https://ltho.s3.amazonaws.com/56189889-630b-4293-95e9-2c747d1209fe.png", + "label": "ICE JACKET CAMOUFLAGE THERMO-SENSITIVE FABRIC", + "code": "05 4N06", + "caption": "Cotton poplin with a camouflage print in a thermo-sensitive\r\ncoating with liquid crystals that change color based on\r\nthe temperature. Over dyed on the finished garment. As the\r\ntemperature drops, the fabric print gradually disappears\r\nas it takes on the same shade as the solid color of the\r\ngarment dye." + }, + { + "uri": "https://ltho.s3.amazonaws.com/d46fc981-d51c-4001-a72a-7d5bc3bedc15.png", + "label": "RUBBERISED SATIN SILVER COVER", + "code": "35 4405", + "caption": "Satin weave cotton of military origin bonded to a silver\r\npolyurethane cover on the outside. Padded with goose down.\r\nDouble parallel row of snap fasteners mounted on small rubber\r\ndisks allow the garment to be tightened or loosened to fit.\r\nLining in colored peached polyester microfiber. Hood in the\r\nRaso Gommato Silver Cover garment dyed, with detachable wolf\r\nfur edging." + }, + { + "uri": "https://ltho.s3.amazonaws.com/65a6a008-a634-4155-8dba-0e2f22e1dc74.png", + "label": "REFLECTIVE JACKET", + "code": "1815 4N02", + "caption": "Owing to a coating made up of thousands of glass\r\nmicrospheres on a polyester base, the Reflective\r\nfabric has a strong capacity to reflect even the\r\nweakest light sources. It reflects and intensifies\r\nthe brightness of the color of the fabric itself,\r\nparticularly if placed in the dark. If it is photographed\r\nusing a flash, it detracts light from the other\r\ncomponents in the shot, which show up as black.\r\nPocket linings in cotton mesh." + }, + { + "uri": "https://ltho.s3.amazonaws.com/7011fe4a-22de-4bf0-bd4d-4440c49d8409.png", + "label": "WQR WATER RESISTANT QUILTING", + "code": "2515 6L51", + "caption": "Nylon jersey quilted with polyester padding,\r\nwith a special external coating used to close\r\nall the needle holes produced in the quilting\r\nprocess, rendering the garment totally\r\nwaterproof. The garment takes its final\r\ncoloring from garment dyeing." + }, + { + "uri": "https://ltho.s3.amazonaws.com/ca0447d1-3bd3-4702-a7d5-f1da98764ffb.png", + "label": "LINO GOMMATO REVERSE COLOR PROCESS", + "code": "2815 4P49", + "caption": "Black linen canvas bonded to a transparent polyurethane\r\ncover on the outside. By means of an exclusive process\r\ncarried out on the finished garment, the original color of\r\nthe fabric is corroded, with the exclusion of the Stone Island\r\nlettering, of the two parallel stripes and of the name of the\r\nprocess on the left sleeve. The collar, placket, pocket flaps,\r\ncuffs and bottom hem are less faded owing to the double\r\nlayer of fabric and the seams. Light garment over dye." + }, + { + "uri": "https://ltho.s3.amazonaws.com/23b746d9-311b-4f9f-b356-d1f49046bda9.png", + "label": "THE PRESIDENT’S KNIT", + "code": "2915 5784", + "caption": "The President’s Knit is the name of a knitted garment introduced in the autumn winter ‘998-’999\r\nseason and then retaken with different processes in the years that followed. It is an innovative knitted\r\ngarment that takes on the functions of a jacket owing to its detachable lining.\r\nThe first of these garments was created in a double face knit, nylon chenille on the outside, cotton on\r\nthe inside. Three black nylon parallel stripes on the cuff. Ends of the sleeves and bottom hem as well\r\nin black nylon. The garment takes its final coloring from garment dyeing.\r\nDetachable lightweight nylon fabric lining with water resistant polyurethane resin finish, quilted\r\nwith polyester padding. The detachable lining is attached to the outer garment using a system of ties,\r\nadapted from those used in the sailing world." + }, + { + "uri": "https://ltho.s3.amazonaws.com/ebaf6ae8-f465-4a8d-b6d0-ff45a93f0350.png", + "label": "LAMINATE - NOC 1", + "code": "3015 4C41", + "caption": "Two ultra light cotton gauzes laminated by means of a\r\nmatte colored resin. This slightly stretch fabric provides\r\ntechnical features owing to its light lamination. This fabric\r\nhas a natural appearance but high-tech performance and\r\nis waterproof, windproof and breathable. Fully thermotaped\r\nseams on the inside.\r\nInjection moulded PVC NOC 1 hood. The shape of the\r\nhood is taken by the shape of gas masks. A research by\r\nStone Island into the making of non-fabric components." + }, + { + "uri": "https://ltho.s3.amazonaws.com/a39caa9e-4dbe-4c31-8bda-41ebc2a508b4.png", + "label": "PURE METAL SHELL – BRONZE", + "code": "3115 4T43", + "caption": "100% bronze mesh applied to a black nylon jersey base. The polyurethane adhesive\r\nprovides a light protection for the mesh. A Teflon® treatment makes the garment water\r\nresistant. The metal mesh is a living material with the features of metallic materials when\r\nused untreated, and therefore they are subject to oxidation over time, losing its shine.\r\nThe worn look, creases and breaks that form on the surface are features that make each\r\ngarment different from the next.\r\nDetachable woolen lining with raw cut edging, attached to the outer garment using a\r\nsystem of ties adapted from those used in the sailing world.\r\nThe Autumn Winter ´999-´000 collection saw the introduction of the Stone Island badge\r\nwith white embroidery, dedicated to garments created using advanced research into\r\nfabrics or processes." + }, + { + "uri": "https://ltho.s3.amazonaws.com/f221b596-7cc0-493c-9cea-6755f64d1641.png", + "label": "PURE METAL SHELL - SILVER SPRAY", + "code": "3115 4U39", + "caption": "Ultra light polyester fabric with the application, through\r\na patented procedure, of a micro stainless steel film in a\r\nvacuum and sterile environment. This Japanese fabric,\r\nused in airplanes to shield the on-board computers from\r\nelectromagnetic radiation. Cotton canvas lining. The garment is\r\npadded with goose down.\r\nThe Autumn Winter ´999-´000 collection saw the introduction\r\nof the Stone Island badge with white embroidery for pieces\r\ninvolving advanced research." + } + ], + "__index": "2", + "dateCreated": "Thu, 05 Nov 2015 01:49:20 GMT" + }, + { + "id": "-982-989", + "title": "'982'989", + "__index": "1", + "dateCreated": "Wed, 02 Dec 2015 05:15:20 GMT", + "images": [ + { + "uri": "https://ltho.s3.amazonaws.com/e486c7c7-798e-4bf7-9e67-973f2cb02368.png", + "label": "TELA STELLA", + "code": "45 4NN", + "caption": "Stone Island was founded on this fabric. Tela Stella was born out of the study\r\nof the technical and functional characteristics of military truck tarpaulins. It\r\nis a cotton canvas impregnated on both sides with special pigmented resins\r\nin contrasting colors. The finished garment then undergoes an extended\r\nenzyme wash in order to give it a faded look and to break down the density of\r\nthe material. The result is a windproof garment that has an air of old oilskins\r\ncorroded by the sea, which, at the same time, has a marked military feel." + }, + { + "uri": "https://ltho.s3.amazonaws.com/757164f9-0699-482a-9187-e7d097f84319.png", + "label": "TELA STELA DUAL COATED", + "code": "65 404", + "caption": "Cotton canvas impregnated on both sides with special pigmented resins in contrasting colors.\r\nWhite outside, sand colored inside. Garment dyed midnight blue; a mélange effect is obtained with\r\ndifferent textured depths of color on the outside and inside of the garment. Appliqués in reflective\r\nfabric and stretch cotton tape on the pockets. Metal buckles on the bottom hem. Long cotton strap\r\nsewn under the collar label and attached to one of the buckles by means of a snap hook to allow the\r\ngarment to be worn over the shoulders." + }, + { + "uri": "https://ltho.s3.amazonaws.com/eb9cadb6-9712-41cf-9984-086518c7c391.png", + "label": "TELA STELLA DUAL COATED", + "code": "65 410", + "caption": "Cotton canvas impregnated on both sides with special pigmented resins in\r\ncontrasting colors. White outside, sand colored inside. Neither washed,\r\nnor garment dyed, it maintains the body and intensity of the coating.\r\nAppliqués in reflective fabric and stretch cotton tape. Adjustable straps at\r\nthe sides." + }, + { + "uri": "https://ltho.s3.amazonaws.com/8237f317-5272-4760-a6ab-b56c475b50d3.png", + "label": "JOCK-23", + "code": "75 436", + "caption": "Cotton canvas with thick matte PVC coating. Appliqués in the same fabric\r\nwith contrasting color coating. On the back, appliqué in mélange felted wool\r\npolyester on the collar. On the inside the neckline and shoulders are lined\r\nin cotton jersey. Rubber buttons created from a mould. Detachable lining in\r\ngarment dyed cotton fleece, attached with snap fasteners." + }, + { + "uri": "https://ltho.s3.amazonaws.com/c790cbf7-0a92-449e-8557-f6174946ab68.png", + "label": "JOCK-23", + "code": "75 460", + "caption": "Cotton canvas with thick matte PVC coating. Hood and buckled inserts at the cuff, with\r\ncontrasting color coating. Appliqué in latex right around the edge. Metal eyelets.\r\nRubber buttons created from a mould." + }, + { + "uri": "https://ltho.s3.amazonaws.com/1062f397-c1d7-4012-ae8d-9ddf13363743.png", + "label": "JOCK-23", + "code": "75 409", + "caption": "Cotton canvas with thick matte PVC coating. Inner flap in a contrasting\r\ncolor. Collar in felted wool polyester, lined with latex. Latex band at cuffs.\r\nRubber buttons created from a mould. Detachable lining in garment dyed\r\ncotton fleece, attached with snap fasteners." + }, + { + "uri": "https://ltho.s3.amazonaws.com/5f315b73-1572-460c-abfe-cda498886abe.png", + "label": "RASO GOMMATO BLACK COVER", + "code": "35 4NN", + "caption": "Satin weave cotton of military origin bonded to a black\r\npolyurethane cover on the inside. The garment takes its\r\nfinal coloring from garment dyeing. Detachable hood in Silk\r\nLight, an ultra light, slightly resin treated shiny trilobate nylon\r\nfabric, quilted with polyester padding.\r\nDetachable lining in Silk Light, quilted with polyester padding.\r\nThe detachable lining is attached to the outer garment using\r\na system of ties, adapted from those used in the sailing world.\r\nThe hood and detachable lining are also garment dyed." + }, + { + "uri": "https://ltho.s3.amazonaws.com/cd370f63-4fab-41e1-bbb6-d9e4955d068e.png", + "label": "GLAZED SILK LIGHT", + "code": "55 4910", + "caption": "Fine shiny trilobate nylon with thick, glazed effect\r\nPVC coating, creating a translucent, semi-transparent\r\nappearance. Hood part lined in a layer of PVC and with a\r\nstrip of honeycomb pattern non-woven fabric in microfibre.\r\nPVC windproof cuffs inside the sleeves. Lining made with\r\na layer of heat-sealed PVC, with interlining in polyester\r\nmesh quilted with polyester padding. The piece takes its\r\nfinal color from a double cotton and nylon garment dyeing\r\nrecipe, to obtain different shades on the finished garment." + }, + { + "uri": "https://ltho.s3.amazonaws.com/417e64df-f318-4500-977b-2eaed1668bc4.png", + "label": "RASO GOMMATO BLACK COVER", + "code": "65 4A10", + "caption": "Satin weave cotton of military origin bonded to a\r\nblack polyurethane cover on the inside. Removable\r\neye mask in the hood, which folds away in the\r\ncollar. The garment takes its final coloring from\r\ngarment dyeing." + }, + { + "uri": "https://ltho.s3.amazonaws.com/93d8d8fa-ad6e-4fe5-9182-c9e45c7e4ff5.png", + "label": "NYLON RIP-STOP COVER", + "code": "75 4503", + "caption": "Khaki iridescent nylon with rip-stop twill, laminated on the\r\noutside with a transparent amber polyurethane film. The\r\ndepth of color is obtained by adding together the color of\r\nthe textile base and that of the coating. Lined in iridescent\r\nnylon rip-stop quilted with polyester padding." + } + ] + } + ], + "hub": [ + { + "id": "ss_-016-over-shirt-in-nylon-metal", + "date": "Tue, 26 Jan 2016 12:00:00 GMT", + "title": "SS_’016 Over Shirt in Nylon Metal", + "subtitle": "Stone Island App Exclusive Colorway", + "body": "NYLON METAL: The trilobate structure of the nylon yarn, with its grey weft and white ready to dye warp colors, is the grounds of the distinctive metallic and tonic sheen of Nylon Metal, one of the most versatile fabrics born of Stone Island’s textile research. The finished piece undergoes an elaborate double dye procedure providing different tones, intensities and colors to the fibers and textile accessories of the garment. The addition of a special agent to the dye formula makes the piece anti-drop.", + "link": "", + "store": "true", + "image": [ + { + "uri": "https://ltho.s3.amazonaws.com/5f8ea79e-89b1-497a-a64d-ab1616a73d14.JPG", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/dcbdc373-b95c-4891-86ba-6dc39e13f49d.JPG", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/6828eb54-ebbf-412f-a246-5b208f8e6733.JPG", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/0ef84bf3-5b79-4e34-b115-9a31821cec24.JPG", + "caption": "" + } + ], + "__index": "1", + "dateCreated": "Tue, 26 Jan 2016 15:31:47 GMT" + }, + { + "id": "ss_-016-collection-preview", + "date": "Tue, 12 Jan 2016 12:00:00 GMT", + "title": "SS_'016 COLLECTION PREVIEW", + "subtitle": "Stone Island App exclusive 1/12-1/19", + "body": "The unrelenting research by Stone Island results in a collection full of textiles evolutions, finishing and dyeing, featuring pop colors and extraordinary visual effects.\r\n\r\n44447 NYLON METAL WATRO\r\nHooded blouson in Nylon Metal. Hood with half lining in cotton and half in nylon mesh. Slanting hand pockets with windproof entrance and zip fastening. Adjustable strap at cuffs. Drawstring in bottom hem. Zip fastening. \r\nNYLON METAL WATRO: The trilobate structure of the nylon yarn, with its grey weft and white ready to dye warp colors, is the grounds of the distinctive metallic and tonic sheen of Nylon Metal, one of the most versatile fabrics born of Stone Island’s textile research. The fabric is resin treated inside to achieve a mild wind and water resistance The finished piece undergoes an elaborate double dye procedure providing different tones, intensities and colors to the fibers and textile accessories of the garment. The addition of a special agent to the dye formula makes the piece anti-drop.\r\n\r\n10544 NYLON METAL \r\nOver shirt in Nylon Metal. Garment dyed. Hook fastening collar. On seam pocket along central placket, with snaps fastening. Snap-fastened cuffs. Hidden zip and snap fastening.\r\nNYLON METAL: The trilobate structure of the nylon yarn, with its grey weft and white ready to dye warp colors, is the grounds of the distinctive metallic and tonic sheen of Nylon Metal, one of the most versatile fabrics born of Stone Island’s textile research. The finished piece undergoes an elaborate double dye procedure providing different tones, intensities and colors to the fibers and textile accessories of the garment. The addition of a special agent to the dye formula makes the piece anti-drop.\r\n\r\n70532 POLYESTER SHANTUNG\r\nParka in an organic looking polyester. Hood with visor and chin strap adjustable with Velcro. Two bellows pockets on chest with flap closed by hidden snaps. Two welt pockets closed by a zip with a second snap opening that holds a cotton tape belt. Snap fasteners at cuffs. Zip and hidden button fastening.\r\nPOLYESTER SHANTUNG: organic looking polyester material with a shantung effect. The organic look is given by the highly technological spinning of the raw material and by its super tight weaving. The pieces are sewn and then garment dyed under pressure at 130°C with the addition of an anti-drop agent. The high pressure dye process compacts the material and induces the high absorption of the color recipe.\r\n\r\n41923 MEMBRANA 3L TC\r\nHooded jacket in a light 3 layers fabric. Garment dyed. Adjustable straps on hood with elasticated gathering on back. Patch pockets with zip fastening. Adjustable straps at cuffs. Elasticated adjustable drawstring on bottom edge. Zip fastening. \r\nMEMBRANA 3L TC: 3 layer light performance fabric made from an opaque nylon outer face laminated to a breathable, water resistant, windproof membrane, protected by an impalpable polyester base. Stone Island’s expertise in garment dyeing gives an outstanding color to the outer face while preserving the performance features of the inner membrane. The addition of a special agent to the dye formula makes the piece anti-drop.\r\n\r\n65260 T.CO+OLD\r\nHooded full zip sweatshirt in malfilé cotton, garment dyed to create the OLD effect, an exclusive dyeing treatment and subsequent fading on the finished garment to create a slightly worn and three-dimensional appearance. Hood drawstring in contrasting color. Pouch pockets. Ribbed side band, cuffs and bottom band. Zip fastening.\r\n\r\n530B0\r\nCardigan knit in plain stitching cotton nylon. Raised collar with concealed hood in Nylon Metal. Garment dyed. On seam pockets. Plain cuffs and bottom band with inner ribbing. Zip fastening.\r\nNYLON METAL: The trilobate structure of the nylon yarn, with its grey weft and white ready to dye warp colors, is the grounds of the distinctive metallic and tonic sheen of Nylon Metal, one of the most versatile fabrics born of Stone Island’s textile research. ", + "link": "", + "store": "true", + "image": [ + { + "uri": "https://ltho.s3.amazonaws.com/76ecda74-afef-406b-9b17-2d940700a1f6.png", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/f96e6884-f558-4da4-bce6-dc6fa4137442.png", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/b22d0c15-e948-4b74-b275-c25cfdd824ec.png", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/2d5d5ced-3383-4203-affc-3fd0aff991b3.png", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/5698df03-ab54-4f08-ac64-5bdde9e9ba05.png", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/36c356ef-ffbd-47b4-8103-3310fc46eb6e.png", + "caption": "" + } + ], + "__index": 2, + "dateCreated": "Wed, 27 Jan 2016 01:57:35 GMT" + }, + { + "id": "nikelab-x-stone-island-windrunner", + "date": "Wed, 09 Dec 2015 12:00:00 GMT", + "title": "NikeLab x Stone Island Windrunner", + "subtitle": "", + "body": "<b>NikeLab partners with Stone Island to deliver a unique interpretation of its foremost apparel icon, to celebrate the beginning of “The Year of Windrunner.</b>\r\n\r\n “An exciting co-lab. Stone Island loves challenges. We source our strength from challenges. It’s a great satisfaction to share our knowhow and expertise with Nike”.\r\n<i>Carlo Rivetti – Stone Island President and Creative Director</i>\r\n \r\nThe Nike Windrunner was born during a time of firsts. Created by Nike’s first apparel designer in 1978 and revolutionary for its raglan sleeves and 26-degree chevron yoke, the jacket became the first piece of Nike apparel worn by athletes at track and field trials before and after competition. Today, to commemorate this running icon, the Nike Windrunner experiences another first, the fabric innovation, the engineering and garment dyeing techniques of Stone Island.\r\n \r\nIn 2016 Nike is celebrating its foremost apparel icon: the Nike Windrunner Jacket. Designed in the late ‘70s, the silhouette has been a fixture on medal stands and city streets ever since. In the launch edition of this yearlong celebration Nike and Stone Island merge the distinctiveness of two brands to create a unique garment.\r\n \r\nThe chevron and hood of the NikeLab x Stone Island Windrunner are constructed with water and wind-resistant Mussola Gommata fabric, formed by bonding lightweight cotton muslin to an opaque polyurethane film. Nylon Metal, a proprietary Stone Island fabric with a metallic sheen, is featured on the body of the garment, which is lined with PrimaLoft®.\r\n \r\nWhile the exterior of the jacket is monochromatic, it mimics the traditional Nike Windrunner color blocking through Stone Island’s garment dyeing process. The result is a subtle distinction between the shades of the Mussola Gommata and Nylon Metal fabrics. The silver PrimaLoft® lining provides a stunning contrast to the monochromatic exterior, while the oversized trims contribute to a rugged look.\r\n \r\nThe NikeLab x Stone Island Windrunner will be available on December 17th at 10am PST from the Stone Island App and selected NikeLab retailers and on nike.com/nikelab.", + "link": "http://www.stoneisland.com/experience/us/nikelab-x-stone-island/", + "store": "true", + "image": [ + { + "uri": "https://ltho.s3.amazonaws.com/83cc1844-73f2-4b76-b968-4d8225d84c5b.jpg", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/ae57c043-dc9c-43fb-a64f-867cece10c77.png", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/ea1b402b-fc94-4363-aa97-88806b6aadd1.png", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/bdcfd9d4-ae84-45de-8d80-3c91c8f8ce81.png", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/1c194494-d6e6-45ed-8a00-d4c337c2a104.png", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/83832a1b-14e7-41d2-afc9-12956cae78c9.png", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/944abccb-b2d0-40ee-88eb-7ee027127878.png", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/35290536-15b7-43de-9bbe-e3ee199fe520.png", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/b3538dbb-b203-49d4-93b7-59826fcf6298.png", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/9e5f54c7-ae5d-432a-b45e-2cbc2c98970c.png", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/eb961f79-587a-4df6-bac3-7159b313a6c2.png", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/eada5a2f-0de2-4a40-9e7a-409e1de28b4e.png", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/b8264d5d-d0cf-4e84-a7d2-0e241f7337c2.png", + "caption": "" + } + ], + "__index": "3", + "dateCreated": "Wed, 27 Jan 2016 01:58:22 GMT" + }, + { + "id": "nikelab-x-stone-island-koth-ultra-mid-si", + "date": "Wed, 09 Dec 2015 12:00:00 GMT", + "title": "NikeLab x Stone Island Koth Ultra Mid SI", + "subtitle": "", + "body": "Inspired by the Nike Air Mowabb, the revolutionary 1991 sneaker-hiker hybrid, this all-weather Nike Koth Ultra Mid SI Shoe is made in Nike water resistant materials, real leather, and in Mussola Gommata, a fabric issued from the Stone Island research and treatment research, an exclusive panel dyed material made by bonding an extremely light cotton muslin to an opaque polyurethane film. The shoe features aggressive traction and flexible ankle support. Unitsole foam midsole for cushioning and durable support. Waffle rubber lugs for rugged traction and durability. Flex grooves allow for natural range of motion. Heel loop for easier on and off. Heel overlay for enhanced support. The shoe dust bag is made in 2 Stone Island fabrics, Nylon Metal, nylon canvas with a distinctive metallic and iridescent sheen, 50 Fili, a cotton/nylon canvas, both panel dyed.\r\n\r\nThe NikeLab x Stone Island Koth Ultra Mid SI will be available on December 17th at 10am PST from the Stone Island App and selected NikeLab retailers and on nike.com/nikelab.", + "link": "http://www.stoneisland.com/experience/us/nikelab-x-stone-island/", + "store": "true", + "image": [ + { + "uri": "https://ltho.s3.amazonaws.com/783b5830-6f63-41df-ad3e-22e8a6ecb640.png", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/332d5d23-1661-4444-b9d3-fcebda25e17d.png", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/66ad13cd-11cd-477d-af29-1bac747c7fc7.png", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/f11681bb-e698-4206-a147-4083ef881180.png", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/4ae2c8e5-a7b0-4787-a564-86efee2a75f8.png", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/f88aa2e4-0359-4114-855c-f742c3347217.png", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/3adb8ecb-e656-40fd-b1d3-26afd25c1443.png", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/e13421b7-ace5-4540-a051-a6aaba198092.png", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/4ff448bf-bd24-40a2-86ff-ead87e3abc95.png", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/0ed0705a-7804-4ecb-871e-fb7da49d17c3.png", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/db63550e-4026-4dac-ae8c-23ae0c4ddcbf.png", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/7cde7501-df12-4849-9dc6-24e09917da4f.png", + "caption": "" + } + ], + "__index": 4, + "dateCreated": "Wed, 27 Jan 2016 02:06:13 GMT" + }, + { + "id": "45546-garment-dyed-pixel-reflective-", + "date": "Thu, 11 Feb 2016 12:00:00 GMT", + "title": "45546 GARMENT DYED PIXEL REFLECTIVE ", + "subtitle": "APP EXCLUSIVE 2/11 - 2/15", + "body": "GARMENT DYED PIXEL REFLECTIVE: STONE ISLAND’s research introduces garment dyeing on reflective fabrics. The landmark iridescent Nylon Metal fabric is printed with a resin substance containing thousands of glass microspheres. The garment dyeing procedure lends extraordinary colors to the textile base while the Pixel Reflective printing provides it with a strong capacity to reflect even the weakest light sources. A special agent was added to the dyeing bath for an anti-drop effect.\r\n\r\nLong Bomber jacket in Pixel reflective fabric. Garment dyed. Ribbed neckline and cuffs. Flap pockets with button flap on front. Straight pocket on chest with nylon tape edge. Windproof pocket with Velcro fastening on arm. Zip fastening.", + "link": "", + "store": "true", + "image": [ + { + "uri": "https://ltho.s3.amazonaws.com/6184e4f6-a1f5-483a-8151-4f425ea49da3.jpg", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/e179b0eb-9476-41a5-9a83-ccc9ce824d78.jpg", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/e451542c-392f-4fcc-ad80-142ab3551f16.jpg", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/8c593568-64c8-4bd2-bcab-d90ed83438f8.jpg", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/adb18f34-2968-4981-a5d1-a81a09f7e9c3.jpg", + "caption": "" + } + ], + "__index": "5", + "dateCreated": "Thu, 11 Feb 2016 15:01:24 GMT" + }, + { + "id": "stone-island_los-angeles", + "date": "Tue, 23 Feb 2016 12:00:00 GMT", + "title": "STONE ISLAND_LOS ANGELES", + "subtitle": "", + "body": "Stone Island opens first US retail location at 145 S La Brea Ave, Los Angeles.\r\n\r\nThe destination offers Stone Island collections, alongside curated brand experiences and presentations.\r\n\r\nThe store’s inaugural exhibition features “Reflective Research ‘992 — ‘015” which will run through March 13th, 2016\r\n\r\nSTONE ISLAND_LOS ANGELES\r\n145 S La Brea Avenue, Los Angeles, CA 90036\r\n\r\nMonday - Saturday 11AM - 7PM\r\nSunday - 11AM - 6PM", + "link": "", + "store": "false", + "image": [ + { + "uri": "https://ltho.s3.amazonaws.com/9d82d33c-e9ea-47b4-8aeb-8e316843bca8.jpg", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/4029fc99-1fa6-41ce-b0b2-bf05657333d1.jpg", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/d40cf381-c20f-4577-8326-e2f31e10875a.jpg", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/0749fbcf-1bfc-41b2-8540-5c6d358eddd3.jpg", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/4c13a8cc-c47e-4837-95b5-70a69f111a21.jpg", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/90c03aa2-869b-48b5-87aa-da22bffac4a7.jpg", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/a0807612-4ee0-494e-9820-c0426b3ac166.jpg", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/44ab5342-68d2-410c-90e5-2130f2fdc80d.jpg", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/c4aa9eea-7446-4309-a885-cdd50078880e.jpg", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/44342be6-39ef-4612-b76f-aa1c0c1b9a9c.jpg", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/60ae0f89-3d2d-4f6e-885c-fd3f2797c8a0.jpg", + "caption": "" + } + ], + "__index": "6", + "dateCreated": "Tue, 23 Feb 2016 18:02:12 GMT" + }, + { + "id": "stone-island-ss_-016-icons", + "date": "Wed, 24 Feb 2016 12:00:00 GMT", + "title": "Stone Island SS_'016 Icons", + "subtitle": "", + "body": "", + "link": "", + "store": "false", + "image": [ + { + "uri": "https://ltho.s3.amazonaws.com/afb364d3-a8fc-40e1-a922-d93d57a10f07.png", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/ccbcec28-fe70-4f60-8806-2dcce06b3121.png", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/af25c582-bca2-4365-b8f8-a262eae0e1ac.png", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/408d6ecb-fa1f-4d65-9e29-3e94574ff26a.png", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/6df375f6-9261-46e2-994a-b48b4b2b33c4.png", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/f6eb87a7-ffbb-4a65-a3e4-299c8d22f0a9.png", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/4593fb77-3bc7-475a-ac56-a42f3a40d2ef.png", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/8d7f419b-5342-4ccc-beeb-8354cc5823a1.png", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/8169511b-c904-42cf-8f26-077df472d6a9.png", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/adf18770-73fb-4f4b-bf9a-20efd5f72a53.png", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/30c9f8f4-92cb-4f51-a050-0d54e73dc862.png", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/cf274bc6-2690-4625-9902-5417d257e7e5.png", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/3a16057d-b939-4d82-b9b5-5f3ba5019dd8.png", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/b9baed9e-f7b5-46d8-bedf-bdf479a73797.png", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/fc14ba8f-920a-490b-b881-2bfea3c225cc.png", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/cf6f23c9-f24a-4a5c-945c-4ceed52c655f.png", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/061184a8-adef-4630-8fa7-527ba6a83d93.png", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/24c11eff-4795-4782-b8f2-8f92edfb428e.png", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/a7bab9ac-e23e-4f65-96b8-1dbbcef0299f.png", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/b49d11ad-02f6-4f5a-ae7b-dbc0d5782141.png", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/ea63d777-09f9-4813-b348-aafef19f5137.png", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/08c31779-5223-479a-b242-dcb7c9185d71.png", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/79058530-adc3-4415-9a01-268731f8c439.png", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/b5c527a5-dd95-4bfd-91d3-ae269d9aa31e.png", + "caption": "" + } + ], + "__index": "7", + "dateCreated": "Wed, 24 Feb 2016 19:18:05 GMT" + }, + { + "id": "44537-water-repellent-wool-ghost-piece-", + "date": "Tue, 01 Mar 2016 12:00:00 GMT", + "title": "44537 WATER REPELLENT WOOL - GHOST PIECE ", + "subtitle": "APP EXCLUSIVE 3/1 - 3/7", + "body": "WATER REPELLENT WOOL: 100% naturally water repellent wool. The specific fiber processing allow increased yarn contractility and the ultra-tight compact density weaving with high temperature finishing make the fabric windproof, breathable and water repellent without the need of chemicals, coating or lamination techniques.\r\n\r\nHooded jacket in water repellent wool. Diagonal pockets with zip fastening. Two pockets with slanting flap closed by hidden snaps on chest. Heat sealed tapes on inner seams. Tyvek® half lining with nylon mesh, in the hood as well. Hidden zip and snap fastening. \r\n\r\nGhost pieces are based on the concept of camouflage and are entirely monochromatic. Even their STONE ISLAND badges have been created in special mono-color versions to blend with the garment.", + "link": "", + "store": "true", + "image": [ + { + "uri": "https://ltho.s3.amazonaws.com/f5ceb26d-9830-4103-a29a-974c352617bf.png", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/48728c3c-5ee9-4b4c-abf3-5577eddab822.png", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/13fad590-9dd7-4529-a7e0-2e2685351bc8.png", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/c4ac3668-67b4-4287-bf87-f12df58c96c4.png", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/e4dd378e-034d-49cf-a683-7d267cb8e7c7.png", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/264d3e31-cf18-4e88-866c-feff0fd5377e.png", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/69d6714a-5b78-46f0-917e-2765f7ece13f.png", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/0b278eda-2223-4d73-874b-c4b1f163d0c8.png", + "caption": "" + } + ], + "__index": "8", + "dateCreated": "Tue, 01 Mar 2016 15:00:17 GMT" + }, + { + "id": "stone-island-supreme-", + "date": "Mon, 14 Mar 2016 12:00:00 GMT", + "title": "Stone Island / Supreme ", + "subtitle": "Co-Lab SS '016_Preview", + "body": "Third collaboration with the cult US skate brand Supreme.\r\nOuterwear, lightweight garments and accessories represent the fusion between the fabric research of Stone Island and the iconic style of Supreme.\r\n\r\nIN THE US AND CANADA THE CO-LAB WILL BE AVAILABLE FROM MARCH 17TH ON THE FOLLOWING CHANNELS: \r\nSTONE ISLAND APP AND STONE ISLAND LOS ANGELES STORE. SUPREME NEW YORK AND LOS ANGELES STORES, SUPREME APP AND ONLINE STORE.\r\n\r\nSTONE ISLAND FOR SUPREME \r\n701S1 HEAT REACTIVE – THERMOSENSITIVE FABRIC\r\nTrench coat in Heat Reactive fabric, changing color depending on temperature. The molecules of the micro pigments encapsulated in the coating change the path of light, the garment gradually turns to a lighter color as the temperature rises and becomes darker again as it drops.\r\nDetachable hood. Hand pockets with hidden snap fastening. Strap at cuffs, adjustable through snaps. Central back slit with hidden snap fastening. Hidden buttons fastening.Stone Island badge with white embroidery, reserved for garments that are made using advanced research into fabrics or processes. \r\n\r\nSTONE ISLAND FOR SUPREME \r\n401S2 NYLON METAL\r\nTrack Jacket in NYLON METAL. One of the most versatile fabrics born of Stone Island textile research. The trilobate structure of the nylon yarn and the grey weft/white warp color weave are the grounds of its distinctive metallic and iridescent sheen, when garment dyed. The finished piece undergoes an elaborate double dye procedure providing different tones, intensities and colors to the fibers and textile accessories of the garment. The addition of a special agent to the dye formula makes the piece anti-drop.\r\nStand up collar. Tonal Supreme water based print on left sleeve. Welt pockets on front with double snap fastening. Elasticated cuffs and bottom band. Inner nylon mesh lining. Zip fastening.\r\n\r\nSTONE ISLAND FOR SUPREME \r\n401S3 NYLON METAL 4C PRINTED\r\nTrack Jacket in NYLON METAL 4C PRINTED. Nylon Metal is one of the most versatile fabrics born of Stone Island textile research. The trilobate structure of the nylon yarn and the grey weft/white warp color weave are the grounds of its distinctive metallic sheen. The fabric is printed with a 4 color pigment Supreme camouflage motif. The garment is washed at 40°C (104°F) with the addition of a special anti-drop agent.\r\nStand up collar. Supreme water based print on left sleeve. Welt pockets on front with double snap fastening. Elasticated cuffs and bottom band. Inner nylon mesh lining. Zip fastening.\r\n\r\nSTONE ISLAND FOR SUPREME \r\n301S2 NYLON METAL\r\nTrack Pants in NYLON METAL, one of the most versatile fabrics born of Stone Island textile research. The trilobate structure of the nylon yarn and the grey weft/white warp color weave are the grounds of its distinctive metallic and iridescent sheen, when garment dyed. The finished piece undergoes an elaborate double dye procedure providing different tones, intensities and colors to the fibers and textile accessories of the garment. \r\nTonal Supreme water based print on left leg. On seam hand pockets with snap fastening. One slit back pocket with hidden zip fastening. Elasticated waistband with inner drawstring. Elasticated leg bottom with side zip fastening. Inner nylon mesh lining.\r\n\r\nSTONE ISLAND FOR SUPREME \r\n301S3 NYLON METAL 4C PRINTED \r\nTrack Pants in NYLON METAL 4C PRINTED. Nylon Metal is one of the most versatile fabrics born of Stone Island textile research. The trilobate structure of the nylon yarn and the grey weft/white warp color weave are the grounds of its distinctive metallic sheen. The fabric is printed with a 4 color pigment Supreme camouflage motif. The garment is washed at 40°C (104°F). \r\nSupreme water based print on one leg. On seam hand pockets with snap fastening. One slit back pocket with hidden zip fastening. Elasticated waistband with inner drawstring. Elasticated leg bottom with side zip fastening. Inner nylon mesh lining.\r\n\r\nSTONE ISLAND FOR SUPREME \r\n501S7 COMPASS PIN SWEATER IN PIMA COTTON\r\nCrewneck sweater in 100% Pima Cotton. By using only selected long staples, Pima cotton has a superior soft hand and extra smooth feel.\r\nReflective tonal Stone Island/Supreme Compass Pin transfer print on chest. Ribbed cuffs and bottom band.\r\n\r\nSTONE ISLAND FOR SUPREME\r\n201S4 ALL OVER PLACED PRINT \r\nLong-sleeve T-Shirt in slightly raw cotton. The striped motif is pigment printed. The cutting of the piece respects the stripes placement with the Supreme print on back. Slight enzyme wash to loosen the hand of the print. \r\nStand up collar. Metal zip collar fastening. Topstitch seams on shoulders, with interior taping. Side splits on bottom sides. \r\n\r\nSTONE ISLAND FOR SUPREME \r\n901S5 COMPASS PIN DRYBAG® BY ORTLIEB\r\nDuffle bag in ultra-resistant waterproof PVC. The glossy and super resistant, heat sealed PVC Drybag® by Ortlieb carries the exclusive patented airtight waterproof zip for extreme protection. When air is captured inside the duffle bag it can act as a pillow.\r\nZip fastening. Big polyester strap handles. Supreme logo print on one side, Stone Island logo print on the other. Both ends are printed with the Stone Island/Supreme Compass Pin. Adjustable shoulder strap with padded piece carrying the Stone Island Compass logo. Pockets inside.\r\n\r\n903S6 STONE ISLAND HEAT REACTIVE\r\nTHERMOSENSITIVE FABRIC\r\nSupreme crusher in Stone Island Heat Reactive fabric, changing color depending on temperature. The molecules of the micro pigments encapsulated in the coating change the path of light, the garment gradually turns to a lighter color as the temperature rises and becomes darker again as it drops. \r\nStone Island patch logo on front. \r\n\r\n902S6 STONE ISLAND HEAT REACTIVE \r\nTHERMOSENSITIVE FABRIC\r\nSupreme six panels cap in Stone Island Heat Reactive fabric, changing color depending on temperature. The molecules of the micro pigments encapsulated in the coating change the path of light, the garment gradually turns to a lighter color as the temperature rises and becomes darker again as it drops.\r\nStone Island patch logo on front. Supreme embroidered logo on back. Adjustable closure.", + "link": "", + "store": "false", + "image": [ + { + "uri": "https://ltho.s3.amazonaws.com/69862dba-1df3-4f98-9dae-91783a4b2877.jpg", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/428df6c6-c60d-4f11-b00d-e90343118a13.jpg", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/b539aa07-328a-40b6-a993-daa2e05d8ff5.jpg", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/87f32651-1a69-4e6e-bb18-769bfc0fdbb1.jpg", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/dabb2e39-5700-4440-8c99-fbeaece6ec09.jpg", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/b445d653-4c81-48d5-98d3-3f4848d277d4.jpg", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/91326bed-8f98-4049-8883-bbda6226f95f.jpg", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/4d74363f-3362-4948-bac0-c6c8e4eb32e6.jpg", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/ddb040f9-a8b4-4f91-87a0-02fc53bfbe4f.jpg", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/358b2608-eef7-4580-b016-9cac172c1e55.jpg", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/51085eff-b0c7-4e09-af58-d68bec8b3d91.jpg", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/4907a7cd-0f1e-42ce-b7d0-9ad112ae478f.jpg", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/0b5f7a26-f879-4421-afe0-82996f6610f7.jpg", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/fc45fc87-a048-4fd3-8ff9-c58d5f5a7d15.jpg", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/7c6308b8-a99c-4b1b-8aad-c2d6dfc1a93f.jpg", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/681692a6-5b64-4f43-91ca-77ca7b45228e.jpg", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/5f5543bc-921a-4285-a4da-034910744976.jpg", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/097d40ba-f82c-4b0e-a614-de440e21345c.jpg", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/6787ab06-a7c5-4029-ac05-4e53d67a964b.jpg", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/378a4db2-e228-448d-83d6-e2735a89bdb9.jpg", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/61ec3ce3-b8bb-4544-b51f-779721bbb7b0.jpg", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/cd072dde-ec8e-4f23-b263-4fd83b04b9cf.jpg", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/a50b89e8-07e4-4da2-bf69-1b02f84feae7.jpg", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/04a57bfd-5e22-42df-a415-4dbec1d7c193.jpg", + "caption": "" + } + ], + "__index": "9", + "dateCreated": "Mon, 14 Mar 2016 13:57:55 GMT" + }, + { + "id": "70329-tank-shield-multi-layer-fusion-technology-", + "date": "Thu, 21 Apr 2016 12:00:00 GMT", + "title": "70329 TANK SHIELD - MULTI LAYER FUSION TECHNOLOGY ", + "subtitle": "", + "body": "Exclusive MULTI LAYER FUSION TECHNOLOGY. The garment, made in an opaque polyester tela, is preassembled and then entirely laminated with slightly overlapping panels producing a performing membrane to isolate hermetically the outer textile base and stitching. This technique guarantees improved waterproofness and breathability compared to common lamination techniques. \r\n\r\nCar coat using highly performing fabric and construction. Diagonal pockets with zip fastening. Adjustable straps at cuffs. Central vent on back. Zip and snap fastening.", + "link": "", + "store": "true", + "image": [ + { + "uri": "https://ltho.s3.amazonaws.com/77035181-a6e8-4817-a4f2-3dfee6afd509.png", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/f96d0cc2-a005-4c28-9dd4-467a204e6bc5.jpg", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/9b2305c6-20e6-4731-84e3-64fcf4d293ab.jpg", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/65ac1990-4390-4d84-bbbc-9afcdf61a1ad.png", + "caption": "" + } + ], + "__index": "10", + "dateCreated": "Thu, 21 Apr 2016 14:00:47 GMT" + }, + { + "id": "109ln-t-co-old", + "date": "Tue, 14 Jun 2016 12:00:00 GMT", + "title": "109LN T.CO+OLD", + "subtitle": "", + "body": "Hooded over shirt in stretch cotton broken twill. Garment dyed to create an OLD effect, an exclusive dyeing treatment and subsequent fading on the finished garment to create a slightly worn and three-dimensional appearance. Flat pockets at sides. Chest pockets with horizontal zip fastening. Ergonomic shaped sleeves. Hood edged with cotton tape. Zip fastening.", + "link": "", + "store": "true", + "image": [ + { + "uri": "https://ltho.s3.amazonaws.com/b4329a3b-0349-4473-af22-4b6f5151e337.png", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/7f762552-b961-4ab3-9ec3-97b5221bad3d.png", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/c003b009-79bc-491d-b3a7-3b79c8f4d0f0.png", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/fc12babb-8c79-423c-a1a5-68664e177952.png", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/5ba840fd-8159-496c-a1e4-772ce0c67510.png", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/73287608-5669-4404-8bf3-ddae63fd9131.png", + "caption": "" + } + ], + "__index": 10, + "dateCreated": "Tue, 14 Jun 2016 15:07:41 GMT" + }, + { + "id": "icon-imagery_fw-016-017", + "date": "Thu, 07 Jul 2016 12:00:00 GMT", + "title": "ICON IMAGERY_FW '016 '017", + "subtitle": "", + "body": "", + "link": "", + "store": "false", + "image": [ + { + "uri": "https://ltho.s3.amazonaws.com/4ad2bab9-2a63-4991-bf1e-2b1f616801fd.png", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/3c959c20-2534-477d-a77f-9eb59dfc5d93.png", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/e83dea7b-4672-4a02-bc85-def9929af6f0.png", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/0aa5e8d3-dc41-4c7f-a118-9007957674bb.png", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/681f033b-61aa-4ec0-8faf-2ac9e9874290.png", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/e68fdfa1-b543-42d1-84ca-db2f3b52d90d.png", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/4abf9ef6-38ea-46fa-a0bc-9911b18fa106.png", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/e904dc23-a492-42ab-be30-0f3df2b3c957.png", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/0fb47449-d80f-4478-85c9-25d53d269967.png", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/cf1205ae-63cd-4eab-86e4-b9008322a16b.png", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/9e601e11-75c8-49f9-bdfe-eda859a27282.png", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/4062566b-aaf5-48af-803e-0b9ad492cad4.png", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/6aaf42eb-68a8-4428-9bf5-2990adefa030.png", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/154300df-032b-4c1c-86c2-d63f48931415.png", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/1ed22a93-d2cd-43f8-a9c1-aafd376a4a16.png", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/06b2a209-14e9-422c-acf5-633992a4c9d4.png", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/98889f73-3320-4ee9-9ecd-30d36c6ad123.png", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/a2259e94-8c11-4afc-9b0f-0852b9fa5a7d.png", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/4eecf0ec-1bc0-4f54-a0c0-21466f272ca9.png", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/0d6b242b-b9aa-483f-b99a-d1bfbb03bacb.png", + "caption": "" + } + ], + "__index": "11", + "dateCreated": "Thu, 07 Jul 2016 18:14:16 GMT" + }, + { + "id": "457j4-stone-island-house-check-jacquard-on-nylon-metal-black-watro-", + "date": "Tue, 12 Jul 2016 12:00:00 GMT", + "title": "457J4 STONE ISLAND HOUSE CHECK JACQUARD ON NYLON METAL BLACK WATRO ", + "subtitle": "App exclusive 7/12 - 7/18", + "body": "STONE ISLAND HOUSE CHECK JACQUARD ON NYLON METAL BLACK WATRO: Long anorak in Nylon Metal Black Watro with jacquard motive. The trilobate structure of the nylon yarn, with its grey weft and white ready to dye warp colors, is the grounds of the distinctive metallic and iridescent sheen of Nylon Metal. Jacquard technique creates a rip-stop design on the surface that is derived from the Stone Island House Check and integrates the star in the vertical and horizontal checked pattern. The fabric has been resin treated inside to achieve a mild water resistance. Garment dyed through double color recipe with the addition of a special anti-drop agent.\r\n\r\nDrawstring around the raised collar. Two large pockets on the front with hidden snap fastening. The pockets are contoured by zip; the garment can be folded away and packed into the zipped front pockets. Elastic tape at cuffs. Drawstring bottom hem.", + "link": "", + "store": "true", + "image": [ + { + "uri": "https://ltho.s3.amazonaws.com/7e1ec747-7322-43d4-b9c6-aec9104bf351.png", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/8b75a21c-d372-4acd-99ca-9556c7c3088c.png", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/db0fc358-7447-4623-a0bb-3f6cee5ce8b7.png", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/ae096f9c-3699-4e7f-b6a0-36ccf93ca5f9.png", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/d4fa8667-27aa-4c60-a363-6493620be435.png", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/70fa7875-bd70-4572-9612-f7d039238126.png", + "caption": "" + } + ], + "__index": "12", + "dateCreated": "Tue, 12 Jul 2016 15:15:33 GMT" + }, + { + "id": "stone-island-opens-new-york-store", + "date": "Thu, 14 Jul 2016 12:00:00 GMT", + "title": "STONE ISLAND OPENS NEW YORK STORE", + "subtitle": "", + "body": "Stone Island opens New York store, located at 41 Greene St. New York, NY 10013.\r\n\r\nThe unique location — a classic SoHo building from 1910 that last autumn hosted the exhibition “Reflective Research ‘992 – ‘015”— measures 3,500 SF and has undergone significant architectural renovation to create an archetypal Stone Island environment. Presenting both Stone Island and Stone Island Shadow Project collections, the flagship store in New York will carry special and exclusive products and installations in its dedicated Hub presentation space.\r\n\r\nStone Island New York\r\n41 Greene St, New York, NY 10013\r\nHours: Monday—Saturday, 11am-7pm, and Sunday, 11am-6pm.", + "link": "", + "store": "false", + "image": [ + { + "uri": "https://ltho.s3.amazonaws.com/b627cfa1-0782-42c3-9487-a57428893fda.jpg", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/2ac003a6-f035-49cb-bc27-2da6a3ce4ffb.jpg", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/c636b626-4fdb-4ac6-818a-35c26b520e0e.jpg", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/55a429b6-2f47-4c79-86f6-05db5d7fa7eb.jpg", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/d4636f88-d11f-4fca-af70-df941378bca0.jpg", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/aaf8f0a5-a420-427b-af4b-bad00b5709fd.jpg", + "caption": "" + } + ], + "__index": "14", + "dateCreated": "Thu, 14 Jul 2016 17:16:01 GMT" + }, + { + "id": "10112-nylon-metal", + "date": "Tue, 23 Aug 2016 12:00:00 GMT", + "title": "10112 NYLON METAL", + "subtitle": "", + "body": "NYLON METAL: Over shirt in Nylon Metal doubled inside in jersey. The trilobate structure of the nylon yarn, with its gray weft and white ready to dye warp colors, is the grounds of the distinctive metallic and iridescent sheen of Nylon Metal. The finished piece undergoes an elaborate double dye process providing the fibers and textile accessories of the garment with different tones, intensities and shades.\r\n\r\nFront yoke with inseam pocket alongside the closure with hidden zips. Snaps at cuffs. Zip fastening.", + "link": "", + "store": "true", + "image": [ + { + "uri": "https://ltho.s3.amazonaws.com/b2b4036c-5b9f-4537-9b16-9b823835d1c1.png", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/11eb738b-98a4-4ba3-a39a-63e19915c584.png", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/9a6f91ee-6950-4efd-9f2e-a75d47100169.png", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/a8dfb935-a952-419e-ac89-932ec755d5ae.png", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/75214c5d-5840-485f-b836-6cd8e9cb9ed2.png", + "caption": "" + } + ], + "__index": "15", + "dateCreated": "Tue, 23 Aug 2016 14:03:29 GMT" + }, + { + "id": "stone-island-chinatown-invitational", + "date": "Tue, 30 Aug 2016 12:00:00 GMT", + "title": "Stone Island Chinatown Invitational", + "subtitle": "", + "body": "Earlier this summer the Chinatown Soccer Club (CSC) hosted the 2016 Chinatown Invitational in Lower Manhattan. This year’s tournament featured four teams from around the world: CSC (New York), Ringleaders FC (Montreal), Soho Warriors FC (London), and Stone Island FC (Milan). The participating teams comprised an eclectic group of creatives united by a shared love of soccer.\r\n\r\nWriter, director, and CSC member, Alexander Klein, documented the invitational, capturing the diversity and camaraderie of the tournament, stating \"The short film was inspired by the pitches of downtown New York. It’s soccer infused with the sights, sounds, and energy of New York City — creating a sporting flavor unlike anything else in the world.\" Earlier this year he shot the soccer-documentary WE ARE SAN MARINO, narrated by Alex Karpovsky, for BitTorrent Now. \r\n\r\nThe short film will be presented by Stone Island from 6-9 tonight at the Nanogallery (100 Forsyth Street) and be on show through September 11. Alongside the film will be an installation of imagery, shot before and during the tournament by CSC members and photographers, Pep Kim and Dominic Neitz.", + "link": "", + "store": "false", + "image": [ + { + "uri": "https://ltho.s3.amazonaws.com/907548da-f870-420a-aff3-d4fec07cfd55.jpg", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/197f894b-e7dd-43b8-a603-12bff46f3c2f.jpg", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/b89ea6bb-0128-4259-8bb6-28ca631dd61b.jpg", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/a1913c20-5c80-4303-bcdb-69dcdf261043.jpg", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/79dd20cd-08b8-490d-b678-f98210ba8692.jpg", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/df4affac-20c9-4186-9c28-1d6efcb6cd85.jpg", + "caption": "" + } + ], + "__index": "10", + "dateCreated": "Tue, 30 Aug 2016 16:02:48 GMT" + }, + { + "id": "polypropylene-denim", + "date": "Mon, 26 Sep 2016 12:00:00 GMT", + "title": "POLYPROPYLENE DENIM", + "subtitle": "APP EXCLUSIVE PREVIEW FROM 9/27 TO 10/3", + "body": "A new interpretation of a classic.\r\nPolypropylene, a material with antibacterial properties, is the lightest available fiber on earth.\r\nEven very bulky garments made in this material astonish for their specific lightness.\r\nThese denim cloth weaves a polypropylene yarn into an indigo dyed cotton warp. The result is an impeccable denim tela with a drastically reduced weight: it has the look of a 19 ounce material but weighs only 10.\r\nThe jumpsuit, the outerwear pieces, the trousers and backpack have undergone the DARK treatment, a manual sanding and light stonewash as well as an enzyme wash.\r\n \r\nPOLYPROPYLENE INDIGO KNIT is made by weaving yarns, an innovative technique from the knitwear industry. For this project a yarn was especially created from indigo dyed polypropylene and cotton yarn with chain construction.\r\n \r\nThe INDIGO FLEECE features WASH treatment.", + "link": "", + "store": "true", + "image": [ + { + "uri": "https://ltho.s3.amazonaws.com/ab51e2e6-19d6-4bfd-b8aa-7089bd49635b.jpg", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/091aa545-2605-4374-9437-e375d096d75c.jpg", + "caption": "" + } + ], + "__index": 10, + "dateCreated": "Tue, 27 Sep 2016 14:02:10 GMT" + }, + { + "id": "polypropylene-denim-video", + "date": "Tue, 27 Sep 2016 12:00:00 GMT", + "title": "POLYPROPYLENE DENIM VIDEO", + "subtitle": "APP EXCLUSIVE PREVIEW FROM 9/27 TO 10/3", + "body": "", + "link": "https://www.youtube.com/watch?v=twiCdserZ1M&feature=youtu.be", + "store": "true", + "__index": 11, + "dateCreated": "Tue, 27 Sep 2016 14:02:50 GMT", + "image": [ + { + "uri": "https://i.ytimg.com/vi/twiCdserZ1M/maxresdefault.jpg", + "width": "1920", + "height": "1080", + "caption": "" + } + ] + }, + { + "id": "garment-dyed-crinkle-reps-and-overalls-in-mussola-gommata", + "date": "Wed, 05 Oct 2016 12:00:00 GMT", + "title": "GARMENT DYED CRINKLE REPS AND OVERALLS IN MUSSOLA GOMMATA", + "subtitle": "APP EXCLUSIVE FROM 10/6 TO 10/12", + "body": "70223_Long down jacket in light nylon rep with an ultra-tight weaving construction. The resin coating of its inner face makes it wind resistant and mildly water resistant. \r\nThe dye bath gives the resin-treated fabric a slightly crinkled appearance on the surface.\r\n\r\nF0211_Overalls in Mussola Gommata, an exclusive fabric created by laminating an ultra light cotton muslin to an outer matte transparent polyurethane film. Rear and bottom front leg in Nylon Metal, with a metallic/iridescent appearance. The special double dye recipe provides the garment with unique shades. ", + "link": "", + "store": "false", + "image": [ + { + "uri": "https://ltho.s3.amazonaws.com/undefined/96660fe0-8b04-11e6-bd08-255bc61066e4.jpg", + "width": "827", + "height": "1240", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/undefined/96761570-8b04-11e6-bd08-255bc61066e4.jpg", + "width": "827", + "height": "1240", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/undefined/96800080-8b04-11e6-bd08-255bc61066e4.jpg", + "width": "827", + "height": "1240", + "caption": "" + } + ], + "__index": 12, + "dateCreated": "Wed, 05 Oct 2016 14:04:36 GMT" + }, + { + "id": "limited-edition-ice-jacket-resin-t-shell-down_fluo-pink-", + "date": "Tue, 11 Oct 2016 12:00:00 GMT", + "title": "LIMITED EDITION: ICE JACKET RESIN-T SHELL DOWN_FLUO PINK ", + "subtitle": "APP EXCLUSIVE FROM 10/13 TO 10/19", + "body": "70999_Parka/Down Jacket limited edition featuring a fluorescent pink internal down. \r\n\r\nThe jacket has a very light translucent nylon shell that changes color according to temperature variations thanks to a special thermo-chromatic resin coating.
\r\nInside the shell, a removable premium feather down jacket in fluorescent pink nylon creates further color play.
\r\n\r\nStone Island presents the new Ice Jacket, the evolution of the historical thermo-chromatic garment introduced in 1988.
\r\n\r\nThe Jacket will be on sale exclusively at Stone Island stores in New York and Los Angeles and on this App starting from 13 October.
", + "link": "", + "store": "false", + "image": [ + { + "uri": "https://ltho.s3.amazonaws.com/undefined/aab445e0-8fc1-11e6-bd08-255bc61066e4.jpg", + "width": "1334", + "height": "1000", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/undefined/a997d960-8fc1-11e6-bd08-255bc61066e4.jpg", + "width": "906", + "height": "1181", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/undefined/a97cfe60-8fc1-11e6-bd08-255bc61066e4.jpg", + "width": "906", + "height": "1181", + "caption": "" + } + ], + "__index": 17, + "dateCreated": "Tue, 11 Oct 2016 15:01:20 GMT" + }, + { + "id": "featherweight-leather-down", + "date": "Wed, 19 Oct 2016 12:00:00 GMT", + "title": "Featherweight Leather Down", + "subtitle": "APP EXCLUSIVE FROM 10/20 TO 10/26", + "body": "00196_Ultralight leather down jacket with inside insulation in nylon technical mesh filled with the finest down by direct injection. The insulation is heat sealed along the external leather seams with an artisan technique.
Completely heat sealed. ", + "link": "", + "store": "false", + "image": [ + { + "uri": "https://ltho.s3.amazonaws.com/undefined/f2c7b2d0-9607-11e6-bd08-255bc61066e4.jpg", + "width": "1000", + "height": "1335", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/undefined/f2730320-9607-11e6-bd08-255bc61066e4.jpg", + "width": "1000", + "height": "749", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/undefined/f2b5d880-9607-11e6-bd08-255bc61066e4.jpg", + "width": "1000", + "height": "749", + "caption": "" + } + ], + "__index": 18, + "dateCreated": "Wed, 19 Oct 2016 14:26:10 GMT" + }, + { + "id": "prototype-research-series_video", + "date": "Wed, 02 Nov 2016 12:00:00 GMT", + "title": "Prototype Research Series_Video", + "subtitle": "", + "body": "The STONE ISLAND _ Prototype Research Series are native limited editions. Numbered garments are made in fabrics and with treatments born from research and experimentation processes that have not yet been industrialized.\r\n\r\n
Series 01 presents LASERING ON LIQUID REFLECTIVE BASE, a piece made in a highly reflective fabric, entirely hand sprayed with a resin-based color.
A laser beam etches the surface, producing a graphic motif on the finished garment.
\r\n\r\nThe first drop of the project will be on sale exclusively on the Stone Island App starting Friday, 4 November.", + "link": "https://www.youtube.com/watch?v=PjhAdGglfa8", + "store": "false", + "__index": 19, + "dateCreated": "Wed, 02 Nov 2016 17:05:50 GMT", + "image": [] + }, + { + "id": "prototype-research_series-01-br-701r1_lasering-on-liquid-reflective-base", + "date": "Fri, 04 Nov 2016 12:00:00 GMT", + "title": "PROTOTYPE RESEARCH_SERIES 01 <br>701R1_LASERING ON LIQUID REFLECTIVE BASE", + "subtitle": "
LIMITED EDITION - NUMBERED 01 TO 100", + "body": "Anorak in an exclusive custom made highly reflective fabric, thanks to a resin coating embedding thousands of glass microspheres, individually hand sprayed with a resin-based color and then oven dried.
A numerical control laser beam etches the surface, producing a three dimensional tone-on-tone effect on the finished garment.\r\n\r\nThe backside features the lasered Stone Island logo.
The high level of artisanship involved in the process makes each garment unique and unrepeatable.
\r\n\r\nExclusively available on Stone Island App
", + "link": "", + "store": "true", + "image": [ + { + "uri": "https://ltho.s3.amazonaws.com/undefined/87b07d60-a29b-11e6-bd08-255bc61066e4.jpg", + "width": "1211", + "height": "1477", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/undefined/8832ccc0-a29b-11e6-bd08-255bc61066e4.jpg", + "width": "1211", + "height": "1477", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/undefined/88604560-a29b-11e6-bd08-255bc61066e4.jpg", + "width": "1211", + "height": "1477", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/undefined/88db8fe0-a29b-11e6-bd08-255bc61066e4.jpg", + "width": "1211", + "height": "1477", + "caption": "" + } + ], + "__index": 20, + "dateCreated": "Fri, 04 Nov 2016 15:27:17 GMT" + }, + { + "id": "nikelab-x-stone-island_preview", + "date": "Wed, 09 Nov 2016 12:00:00 GMT", + "title": "NIKELAB X STONE ISLAND_PREVIEW", + "subtitle": "", + "body": "The third collaboration between NikeLab and Stone Island, concluding the year of the Windrunner.\r\n\r\nThe Nike Windrunner, remastered with parka length, volumes and functions, is made in JACQUARD GRID ON WOOL FUR, exclusively engineered by Stone Island for this co-lab.\r\n\r\nThe garment is composed of an outer face in a jacquard engineered tonic nylon rip stop grid that is bonded to a water and wind resistant membrane and to an inner 100% wool fur on cotton layer.\r\nNike’s distinctive Windrunner chevron is made in nylon tape. Through a complex garment dyeing recipe, the jacquard grid and the inner woolen fur both capture high definition contrasts and subtle tonal shades, while respecting the performance features of the membrane.\r\n\r\nNikeLab x Stone Island will be on sale from Thursday, November 17 in Stone Island flagship stores, on the Stone Island app, in NikeLab stores and on nike.com/nikelab.", + "link": "", + "store": "false", + "image": [ + { + "uri": "https://ltho.s3.amazonaws.com/undefined/64ea2d80-a697-11e6-bd08-255bc61066e4.jpg", + "width": "776", + "height": "1012", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/undefined/64f2e010-a697-11e6-bd08-255bc61066e4.jpg", + "width": "776", + "height": "1012", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/undefined/64ed3ac0-a697-11e6-bd08-255bc61066e4.jpg", + "width": "776", + "height": "1012", + "caption": "" + } + ], + "__index": 21, + "dateCreated": "Wed, 09 Nov 2016 16:13:18 GMT" + }, + { + "id": "spring-summer_-017-lookbook", + "date": "Tue, 13 Dec 2016 12:00:00 GMT", + "title": "SPRING SUMMER_'017 LOOKBOOK", + "subtitle": "", + "body": "SS'017 Crinkle Reps Bomber special preview exclusive available from December 15th on the Stone Island App.", + "link": "", + "store": "false", + "__index": 22, + "dateCreated": "Tue, 13 Dec 2016 14:58:50 GMT", + "image": [ + { + "uri": "https://ltho.s3.amazonaws.com/undefined/21ba23d0-c145-11e6-bd08-255bc61066e4.jpg", + "width": "800", + "height": "1200", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/undefined/200ee4d0-c145-11e6-bd08-255bc61066e4.jpg", + "width": "800", + "height": "1200", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/undefined/1e2f2850-c145-11e6-bd08-255bc61066e4.jpg", + "width": "800", + "height": "1200", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/undefined/1c8066e0-c145-11e6-bd08-255bc61066e4.jpg", + "width": "800", + "height": "1200", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/undefined/197bb260-c145-11e6-bd08-255bc61066e4.jpg", + "width": "800", + "height": "1200", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/undefined/17803080-c145-11e6-bd08-255bc61066e4.jpg", + "width": "800", + "height": "1200", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/undefined/15b7f3a0-c145-11e6-bd08-255bc61066e4.jpg", + "width": "800", + "height": "1200", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/undefined/13b4f7b0-c145-11e6-bd08-255bc61066e4.jpg", + "width": "800", + "height": "1200", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/undefined/0579ee80-c145-11e6-bd08-255bc61066e4.jpg", + "width": "800", + "height": "1200", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/undefined/036dcad0-c145-11e6-bd08-255bc61066e4.jpg", + "width": "800", + "height": "1200", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/undefined/01a9aca0-c145-11e6-bd08-255bc61066e4.jpg", + "width": "800", + "height": "1200", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/undefined/ff9ec170-c144-11e6-bd08-255bc61066e4.jpg", + "width": "800", + "height": "1200", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/undefined/fda98120-c144-11e6-bd08-255bc61066e4.jpg", + "width": "800", + "height": "1200", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/undefined/fb383300-c144-11e6-bd08-255bc61066e4.jpg", + "width": "800", + "height": "1200", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/undefined/f918fc80-c144-11e6-bd08-255bc61066e4.jpg", + "width": "800", + "height": "1200", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/undefined/f73bb100-c144-11e6-bd08-255bc61066e4.jpg", + "width": "800", + "height": "1200", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/undefined/f4906720-c144-11e6-bd08-255bc61066e4.jpg", + "width": "800", + "height": "1200", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/undefined/f27a7f70-c144-11e6-bd08-255bc61066e4.jpg", + "width": "800", + "height": "1200", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/undefined/f0134370-c144-11e6-bd08-255bc61066e4.jpg", + "width": "800", + "height": "1200", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/undefined/e950eab0-c144-11e6-bd08-255bc61066e4.jpg", + "width": "800", + "height": "1200", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/undefined/e35404d0-c144-11e6-bd08-255bc61066e4.jpg", + "width": "800", + "height": "1200", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/undefined/debfd6b0-c144-11e6-bd08-255bc61066e4.jpg", + "width": "800", + "height": "1200", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/undefined/daa98b20-c144-11e6-bd08-255bc61066e4.jpg", + "width": "800", + "height": "1200", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/undefined/d7f95f40-c144-11e6-bd08-255bc61066e4.jpg", + "width": "800", + "height": "1200", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/undefined/d4cde8e0-c144-11e6-bd08-255bc61066e4.jpg", + "width": "800", + "height": "1200", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/undefined/d1b97cf0-c144-11e6-bd08-255bc61066e4.jpg", + "width": "800", + "height": "1200", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/undefined/ceb2cca0-c144-11e6-bd08-255bc61066e4.jpg", + "width": "800", + "height": "1200", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/undefined/c87b4ec0-c144-11e6-bd08-255bc61066e4.jpg", + "width": "800", + "height": "1200", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/undefined/c3b206e0-c144-11e6-bd08-255bc61066e4.jpg", + "width": "800", + "height": "1200", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/undefined/bf0101f0-c144-11e6-bd08-255bc61066e4.jpg", + "width": "800", + "height": "1200", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/undefined/bac04b00-c144-11e6-bd08-255bc61066e4.jpg", + "width": "800", + "height": "1200", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/undefined/b823a720-c144-11e6-bd08-255bc61066e4.jpg", + "width": "800", + "height": "1200", + "caption": "" + } + ] + }, + { + "id": "stone-island_spring-summer_-017_video-teaser", + "date": "Wed, 11 Jan 2017 12:00:00 GMT", + "title": "Stone Island_Spring Summer_'017_Video teaser", + "subtitle": "", + "body": "", + "link": "https://youtu.be/iia_oPZPY_Y", + "store": "false", + "image": [ + { + "uri": "https://ltho.s3.amazonaws.com/undefined/93699100-d8dd-11e6-abc7-59ceb822d9d2.jpg", + "width": "1920", + "height": "1080", + "caption": "" + } + ], + "__index": 23, + "dateCreated": "Thu, 12 Jan 2017 15:42:24 GMT" + }, + { + "id": "stone-island_spring-summer_-017_icon-imagery", + "date": "Thu, 12 Jan 2017 12:00:00 GMT", + "title": "Stone Island_Spring Summer_'017_Icon Imagery", + "subtitle": "", + "body": "", + "link": "", + "store": "false", + "image": [ + { + "uri": "https://ltho.s3.amazonaws.com/undefined/d5f07520-d8d8-11e6-abc7-59ceb822d9d2.jpg", + "width": "776", + "height": "1012", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/undefined/d4b13e60-d8d8-11e6-abc7-59ceb822d9d2.jpg", + "width": "776", + "height": "1012", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/undefined/d57c7da0-d8d8-11e6-abc7-59ceb822d9d2.jpg", + "width": "776", + "height": "1012", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/undefined/d6bb1820-d8d8-11e6-abc7-59ceb822d9d2.jpg", + "width": "776", + "height": "1012", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/undefined/d432bf90-d8d8-11e6-abc7-59ceb822d9d2.jpg", + "width": "776", + "height": "1012", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/undefined/d4f54c40-d8d8-11e6-abc7-59ceb822d9d2.jpg", + "width": "776", + "height": "1012", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/undefined/d33043b0-d8d8-11e6-abc7-59ceb822d9d2.jpg", + "width": "776", + "height": "1012", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/undefined/d58222f0-d8d8-11e6-abc7-59ceb822d9d2.jpg", + "width": "776", + "height": "1012", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/undefined/d28f21b0-d8d8-11e6-abc7-59ceb822d9d2.jpg", + "width": "776", + "height": "1012", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/undefined/d1f1a930-d8d8-11e6-abc7-59ceb822d9d2.jpg", + "width": "776", + "height": "1012", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/undefined/d3219db0-d8d8-11e6-abc7-59ceb822d9d2.jpg", + "width": "776", + "height": "1012", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/undefined/d32658a0-d8d8-11e6-abc7-59ceb822d9d2.jpg", + "width": "776", + "height": "1012", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/undefined/d0611e20-d8d8-11e6-abc7-59ceb822d9d2.jpg", + "width": "776", + "height": "1012", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/undefined/d131b490-d8d8-11e6-abc7-59ceb822d9d2.jpg", + "width": "776", + "height": "1012", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/undefined/d07bf920-d8d8-11e6-abc7-59ceb822d9d2.jpg", + "width": "776", + "height": "1012", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/undefined/d1d2fda0-d8d8-11e6-abc7-59ceb822d9d2.jpg", + "width": "776", + "height": "1012", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/undefined/d21006a0-d8d8-11e6-abc7-59ceb822d9d2.jpg", + "width": "776", + "height": "1012", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/undefined/d01d5e60-d8d8-11e6-abc7-59ceb822d9d2.jpg", + "width": "776", + "height": "1012", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/undefined/cec19ef0-d8d8-11e6-abc7-59ceb822d9d2.jpg", + "width": "776", + "height": "1012", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/undefined/cd455f30-d8d8-11e6-abc7-59ceb822d9d2.jpg", + "width": "776", + "height": "1012", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/undefined/ce493aa0-d8d8-11e6-abc7-59ceb822d9d2.jpg", + "width": "776", + "height": "1012", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/undefined/ce8224f0-d8d8-11e6-abc7-59ceb822d9d2.jpg", + "width": "776", + "height": "1012", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/undefined/ce774f80-d8d8-11e6-abc7-59ceb822d9d2.jpg", + "width": "776", + "height": "1012", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/undefined/cd49a4f0-d8d8-11e6-abc7-59ceb822d9d2.jpg", + "width": "776", + "height": "1012", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/undefined/cd0e49a0-d8d8-11e6-abc7-59ceb822d9d2.jpg", + "width": "776", + "height": "1012", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/undefined/cbc771c0-d8d8-11e6-abc7-59ceb822d9d2.jpg", + "width": "776", + "height": "1012", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/undefined/cac06200-d8d8-11e6-abc7-59ceb822d9d2.jpg", + "width": "776", + "height": "1012", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/undefined/c9ca6940-d8d8-11e6-abc7-59ceb822d9d2.jpg", + "width": "776", + "height": "1012", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/undefined/cbbe22f0-d8d8-11e6-abc7-59ceb822d9d2.jpg", + "width": "776", + "height": "1012", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/undefined/cbba5260-d8d8-11e6-abc7-59ceb822d9d2.jpg", + "width": "776", + "height": "1012", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/undefined/ca202a60-d8d8-11e6-abc7-59ceb822d9d2.jpg", + "width": "776", + "height": "1012", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/undefined/ca130b00-d8d8-11e6-abc7-59ceb822d9d2.jpg", + "width": "776", + "height": "1012", + "caption": "" + } + ], + "__index": 24, + "dateCreated": "Thu, 12 Jan 2017 15:46:04 GMT" + }, + { + "id": "nikelab-x-stone-island-sock-dart-mid_preview-stone-island-research-meets-nike-design", + "date": "Thu, 19 Jan 2017 12:00:00 GMT", + "title": "NIKELAB X STONE ISLAND SOCK DART MID_PREVIEW
STONE ISLAND RESEARCH MEETS NIKE DESIGN", + "subtitle": "", + "body": "With this collaboration Stone Island has been challenged to apply its research skills on Nike fabrics in an interpretation of the Nike Sock Dart Mid Slip On Shoe.
Applying the personal approach to investigation and the development of new technologies, Stone Island has tested several techniques in able to combine a graphic look and feel with functionality, in order to find the right meeting point between its know-how and Nike’s design.
The outcome is a glossy and elastic engineered zonal silicone print, adding structure and protection to the hyper-stretch breathable sandwich mesh used for the upper, still maintains the flexibility attributes that are signature to the Sock Dart.
The new mid-cut silhouette has an extended collar with a leather grain deboss pattern and poly spandex lining.
Glossy molded midfoot adjustable strap.
New Duralon foam outsole: the forefoot features a multidirectional sipe pattern for water dispersion and improved traction.
NikeLab x Stone Island Sock Dart Mid will be released in three colorways: black, obsidian bleu and - exclusively at flagship stores - in sequoia green.
It will be on sale from Thursday, January 26 in Stone Island flagship stores, on the Stone Island app, in NikeLab stores and on nike.com/nikelab.", + "link": "", + "store": "false", + "image": [ + { + "uri": "https://ltho.s3.amazonaws.com/undefined/a6e5c860-de47-11e6-abc7-59ceb822d9d2.jpg", + "width": "1000", + "height": "563", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/undefined/89838140-de47-11e6-abc7-59ceb822d9d2.jpg", + "width": "770", + "height": "488", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/undefined/89aa4320-de47-11e6-abc7-59ceb822d9d2.jpg", + "width": "770", + "height": "488", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/undefined/89a7ab10-de47-11e6-abc7-59ceb822d9d2.jpg", + "width": "770", + "height": "488", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/undefined/89378420-de47-11e6-abc7-59ceb822d9d2.jpg", + "width": "770", + "height": "488", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/undefined/89548200-de47-11e6-abc7-59ceb822d9d2.jpg", + "width": "770", + "height": "488", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/undefined/890c5570-de47-11e6-abc7-59ceb822d9d2.jpg", + "width": "770", + "height": "488", + "caption": "" + } + ], + "__index": 25, + "dateCreated": "Thu, 19 Jan 2017 13:44:32 GMT" + }, + { + "id": "hand-corrosion_stone-island-app-exclusive-colorways", + "date": "Sun, 22 Jan 2017 12:00:00 GMT", + "title": "Hand Corrosion_Stone Island App Exclusive Colorways", + "subtitle": "", + "body": "An artisan process with corrosive paste
that makes each garment unique and unrepeatable.
\r\n\r\nHAND CORROSION\r\nGarments are dyed with special recipes and then decolored by hand with a corrosive paste.
The Stone Island badge is attached to the pieces during the manual fading and features the same corrosion marks.
Residual dye highlights the architecture of the garments.
This artisan process makes each piece unique and unrepeatable.\r\n\r\nSTONE ISLAND APP EXCLUSIVE COLORWAYS \r\n\r\n45131_Yellow Field Jacket made in military-derived cotton satin, garment dyed with special corrodible colorants and then manually faded, steamed and intensely washed with the addition of an anti-drop agent.\r\n\r\n
541A1_Black cotton crew neck. Worked in brioche stitch knit. Garment dyed with special corrodible colorants and then faded by hand with a corrosive paste, steamed and intensely washed. ", + "link": "", + "store": "true", + "image": [ + { + "uri": "https://ltho.s3.amazonaws.com/undefined/020846f0-e17c-11e6-abc7-59ceb822d9d2.jpg", + "width": "580", + "height": "813", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/undefined/023d60b0-e17c-11e6-abc7-59ceb822d9d2.jpg", + "width": "580", + "height": "813", + "caption": "" + } + ], + "__index": 26, + "dateCreated": "Mon, 23 Jan 2017 14:57:23 GMT" + }, + { + "id": "hand-corrosion-video", + "date": "Mon, 23 Jan 2017 12:00:00 GMT", + "title": "Hand Corrosion Video", + "subtitle": "", + "body": "An artisan process with corrosive paste\r\nthat makes each garment unique and unrepeatable.", + "link": "https://youtu.be/1u6OovE0cY4", + "store": "true", + "__index": 27, + "dateCreated": "Mon, 23 Jan 2017 15:21:19 GMT", + "image": [] + }, + { + "id": "nylon-metal-color-weft_app-exclusive-colorway", + "date": "Tue, 14 Feb 2017 12:00:00 GMT", + "title": "Nylon Metal Color Weft_App Exclusive Colorway", + "subtitle": "", + "body": "The evolution of one of the most iconic Stone Island fabrics\r\nUnprecedented iridescent colors \r\n\r\nNYLON METAL COLOR WEFT\r\n\r\n10245_Over shirt in Nylon Metal with colored weaved yarns.
Two pockets with flap and button fastening on chest.
Hidden zip fastening.
\r\n\r\nThe metallic and iridescent aspect of Nylon Metal, one of the most versatile fabrics issued from the STONE ISLAND textile research, is enhanced with colored tones thanks to the tint of its weft yarns. Garments made in this fabric undergo an elaborate double recipe dye process enhancing its chromatic iridescences.
\r\n\r\nAPP EXCLUSIVE FROM 2/16 TO 2/20", + "link": "", + "store": "false", + "image": [ + { + "uri": "https://ltho.s3.amazonaws.com/undefined/579783e0-f2c7-11e6-abc7-59ceb822d9d2.jpg", + "width": "466", + "height": "692", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/undefined/57936530-f2c7-11e6-abc7-59ceb822d9d2.jpg", + "width": "466", + "height": "692", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/undefined/57861ec0-f2c7-11e6-abc7-59ceb822d9d2.jpg", + "width": "466", + "height": "692", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/undefined/57a16ef0-f2c7-11e6-abc7-59ceb822d9d2.jpg", + "width": "466", + "height": "692", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/undefined/57a2a770-f2c7-11e6-abc7-59ceb822d9d2.jpg", + "width": "466", + "height": "692", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/undefined/578e0e00-f2c7-11e6-abc7-59ceb822d9d2.jpg", + "width": "466", + "height": "692", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/undefined/57ef67e0-f2c7-11e6-abc7-59ceb822d9d2.jpg", + "width": "466", + "height": "692", + "caption": "" + }, + { + "uri": "https://ltho.s3.amazonaws.com/undefined/58036510-f2c7-11e6-abc7-59ceb822d9d2.jpg", + "width": "466", + "height": "692", + "caption": "" + } + ], + "__index": 28, + "dateCreated": "Tue, 14 Feb 2017 15:08:43 GMT" + }, + { + "id": "garment-dyed-plated-reflective", + "date": "Thu, 02 Mar 2017 12:00:00 GMT", + "title": "GARMENT DYED PLATED REFLECTIVE", + "subtitle": "", + "body": "The new Reflective Jacket is made with an innovative fabric engineered to be garment-dyed.\r\nIts nylon tela base is plated with a highly reflective resin coating, while the details in Mussola Gommata and fabric mixes highlight the garment-dye technique.\r\n\r\nSTONE ISLAND APP EXCLUSIVE COLORWAYS PINK QUARTZ AND AVIO BLUE\r\n\r\n453S6_Hooded jacket constructed with parts in Mussola Gommata. \r\nThe finished piece is garment dyed with specific double dye recipes lending color to the textile base while respecting the reflective surface.", + "link": "", + "store": "false", + "image": [ + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/b9fe8eb0-ff6b-11e6-8ca3-81835dc6c47b.jpg", + "width": "580", + "height": "813", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/ba1a7b20-ff6b-11e6-8ca3-81835dc6c47b.jpg", + "width": "580", + "height": "813", + "caption": "" + } + ], + "__index": 29, + "dateCreated": "Thu, 02 Mar 2017 17:17:11 GMT" + }, + { + "id": "stone-island-marina_tank-shield-featuring-multi-layer-fusion-technology-", + "date": "Thu, 09 Mar 2017 12:00:00 GMT", + "title": "STONE ISLAND MARINA_TANK SHIELD
FEATURING MULTI LAYER FUSION TECHNOLOGY ", + "subtitle": "", + "body": "703X1_Trench Coat characterized by highly performing
fabric and construction. Fold-away hood into stand up collar.
\r\n\r\nGarments pre-assembled and then laminated to membrane-bonded panels, hermetically sealing the external base fabric and all seams.\r\n
The exclusive Multi Layer Fusion Technology guarantees maximum waterproofness and breathability.
\r\nStripes on sleeves and logo on back are created with laser technology, revealing the inside membrane.\r\n\r\n
APP EXCLUSIVE FROM 3/10 TO 3/16", + "link": "", + "store": "false", + "image": [ + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/782e15f0-04d9-11e7-9f22-910070d5f727.jpg", + "width": "1304", + "height": "1229", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/781adc10-04d9-11e7-9f22-910070d5f727.jpg", + "width": "1571", + "height": "2000", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/779ea730-04d9-11e7-9f22-910070d5f727.jpg", + "width": "1571", + "height": "2000", + "caption": "" + } + ], + "__index": 30, + "dateCreated": "Thu, 09 Mar 2017 15:03:13 GMT" + }, + { + "id": "stone-island-marina_corrosion-print_app-exclusive-preview", + "date": "Thu, 23 Mar 2017 12:00:00 GMT", + "title": "Stone Island Marina_Corrosion Print_App Exclusive Preview", + "subtitle": "", + "body": "T-shirt and bermuda shorts made in black printed cotton with placed reserve Stone Island Marina motif.
A further striped motif is printed through the corrosion of the base fabric color.
\r\n\r\nBackpack in ultra-resistant waterproof PVC with waterproof zip fastening.
Thermal printed Stone Island Marina graphic and stripes.\r\n\r\n
APP EXCLUSIVE FROM 3/24 TO 3/29", + "link": "", + "store": "true", + "image": [ + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/974bb740-0fd2-11e7-85aa-87522fc1a5c5.jpg", + "width": "580", + "height": "813", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/969bef40-0fd2-11e7-85aa-87522fc1a5c5.jpg", + "width": "580", + "height": "813", + "caption": "" + } + ], + "__index": 31, + "dateCreated": "Thu, 23 Mar 2017 14:22:34 GMT" + }, + { + "id": "paper-poly-stone-island-house-check-grid", + "date": "Mon, 10 Apr 2017 12:00:00 GMT", + "title": "PAPER POLY STONE ISLAND HOUSE CHECK GRID", + "subtitle": "", + "body": "Paper Poly outerwear pieces are made in a very light resin-treated polyester rip-stop with a translucent look and a crispy paper-like feel, assembled and then garment dyed under pressure at 130°C.\r\nThe finished garments are printed with the SI House Check Grid motif using a sublimation transfer technique.\r\n\r\nAPP EXCLUSIVE FROM 4/11 TO 4/17", + "link": "", + "store": "false", + "image": [ + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/8a252560-1df6-11e7-81ec-6b34eac4a5ea.jpg", + "width": "519", + "height": "693", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/8a385f40-1df6-11e7-81ec-6b34eac4a5ea.jpg", + "width": "519", + "height": "693", + "caption": "" + } + ], + "__index": 32, + "dateCreated": "Mon, 10 Apr 2017 14:04:03 GMT" + }, + { + "id": "prototype-research_series-02-preview_video", + "date": "Fri, 21 Apr 2017 12:00:00 GMT", + "title": "PROTOTYPE RESEARCH_SERIES 02 PREVIEW_VIDEO", + "subtitle": "", + "body": "SERIES 02_GARMENT DYED DYNEEMA® is a reversible jacket made in the strongest and most durable lightweight fiber in the world. \r\nThe result is a super light yet extremely tough Dyneema® flexible composite fabric with increased tear, puncture and abrasion resistance. \r\nSTONE ISLAND has engineered a ready-to-dye version by bonding it to an exclusive performance membrane with an ultra-light nylon tela backing. \r\nThe garments are cut and sewn, and the seams are entirely sealed by hand with Dyneema® re-enforced tape. \r\n\r\nThe limited edition jackets - 2 series of 50 pieces - are then garment dyed with 50 color recipes in the STONE ISLAND Color Laboratory.\r\n\r\nExclusively available on Stone Island App starting from Wednesday, April 26 at 10am EST.", + "link": "https://www.youtube.com/watch?v=VZZiEbxP9Ok&t=35s", + "store": "false", + "image": [ + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/9fa70c30-269f-11e7-91ba-a7137d42e321.jpg", + "width": "900", + "height": "507", + "caption": "" + } + ], + "__index": 33, + "dateCreated": "Fri, 21 Apr 2017 14:41:09 GMT" + }, + { + "id": "prototype-research_series-02_-garment-dyed-dyneema-limited-edition", + "date": "Mon, 24 Apr 2017 12:00:00 GMT", + "title": "PROTOTYPE RESEARCH_SERIES 02_ GARMENT DYED DYNEEMA® LIMITED EDITION", + "subtitle": "", + "body": "Available in medium, large and extra-large, starting from Wednesday, 26th of April, from 10am EST on Stone Island App.", + "link": "", + "store": "false", + "image": [ + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/48b785b0-290d-11e7-91ba-a7137d42e321.jpg", + "width": "377", + "height": "480", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/43b29460-290d-11e7-91ba-a7137d42e321.jpg", + "width": "377", + "height": "480", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/400d0c00-290d-11e7-91ba-a7137d42e321.jpg", + "width": "377", + "height": "480", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/3c82acc0-290d-11e7-91ba-a7137d42e321.jpg", + "width": "377", + "height": "480", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/3757e3f0-290d-11e7-91ba-a7137d42e321.jpg", + "width": "377", + "height": "480", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/327a50c0-290d-11e7-91ba-a7137d42e321.jpg", + "width": "377", + "height": "480", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/2d6e3380-290d-11e7-91ba-a7137d42e321.jpg", + "width": "377", + "height": "480", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/26359950-290d-11e7-91ba-a7137d42e321.jpg", + "width": "377", + "height": "480", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/21702200-290d-11e7-91ba-a7137d42e321.jpg", + "width": "377", + "height": "480", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/1c69f830-290d-11e7-91ba-a7137d42e321.jpg", + "width": "377", + "height": "480", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/11383760-290d-11e7-91ba-a7137d42e321.jpg", + "width": "377", + "height": "480", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/0c408c80-290d-11e7-91ba-a7137d42e321.jpg", + "width": "377", + "height": "480", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/05ca30e0-290d-11e7-91ba-a7137d42e321.jpg", + "width": "377", + "height": "480", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/00f8f9c0-290d-11e7-91ba-a7137d42e321.jpg", + "width": "377", + "height": "480", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/fbe402e0-290c-11e7-91ba-a7137d42e321.jpg", + "width": "377", + "height": "480", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/f722f860-290c-11e7-91ba-a7137d42e321.jpg", + "width": "377", + "height": "480", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/f13024a0-290c-11e7-91ba-a7137d42e321.jpg", + "width": "377", + "height": "480", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/ec3fa5b0-290c-11e7-91ba-a7137d42e321.jpg", + "width": "377", + "height": "480", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/e6dd5220-290c-11e7-91ba-a7137d42e321.jpg", + "width": "377", + "height": "480", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/e02384e0-290c-11e7-91ba-a7137d42e321.jpg", + "width": "377", + "height": "480", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/d9fe2f70-290c-11e7-91ba-a7137d42e321.jpg", + "width": "377", + "height": "480", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/d41fce10-290c-11e7-91ba-a7137d42e321.jpg", + "width": "377", + "height": "480", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/cd9f6050-290c-11e7-91ba-a7137d42e321.jpg", + "width": "377", + "height": "480", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/c1c5edd0-290c-11e7-91ba-a7137d42e321.jpg", + "width": "377", + "height": "480", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/b9844810-290c-11e7-91ba-a7137d42e321.jpg", + "width": "377", + "height": "480", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/b0c5d130-290c-11e7-91ba-a7137d42e321.jpg", + "width": "377", + "height": "480", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/a9dcdda0-290c-11e7-91ba-a7137d42e321.jpg", + "width": "377", + "height": "480", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/a146fd60-290c-11e7-91ba-a7137d42e321.jpg", + "width": "377", + "height": "480", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/9b531830-290c-11e7-91ba-a7137d42e321.jpg", + "width": "377", + "height": "480", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/95c261a0-290c-11e7-91ba-a7137d42e321.jpg", + "width": "377", + "height": "480", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/8f8a95a0-290c-11e7-91ba-a7137d42e321.jpg", + "width": "377", + "height": "480", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/89a0e9a0-290c-11e7-91ba-a7137d42e321.jpg", + "width": "377", + "height": "480", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/811876e0-290c-11e7-91ba-a7137d42e321.jpg", + "width": "377", + "height": "480", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/7b7f82f0-290c-11e7-91ba-a7137d42e321.jpg", + "width": "377", + "height": "480", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/76b29190-290c-11e7-91ba-a7137d42e321.jpg", + "width": "377", + "height": "480", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/72bb18a0-290c-11e7-91ba-a7137d42e321.jpg", + "width": "377", + "height": "480", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/6d2cfa20-290c-11e7-91ba-a7137d42e321.jpg", + "width": "377", + "height": "480", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/622ca990-290c-11e7-91ba-a7137d42e321.jpg", + "width": "377", + "height": "480", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/5c674e70-290c-11e7-91ba-a7137d42e321.jpg", + "width": "377", + "height": "480", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/584f0710-290c-11e7-91ba-a7137d42e321.jpg", + "width": "377", + "height": "480", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/54135930-290c-11e7-91ba-a7137d42e321.jpg", + "width": "377", + "height": "480", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/4fea48f0-290c-11e7-91ba-a7137d42e321.jpg", + "width": "377", + "height": "480", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/4a6663a0-290c-11e7-91ba-a7137d42e321.jpg", + "width": "377", + "height": "480", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/45d39510-290c-11e7-91ba-a7137d42e321.jpg", + "width": "377", + "height": "480", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/40214cc0-290c-11e7-91ba-a7137d42e321.jpg", + "width": "377", + "height": "480", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/3b942380-290c-11e7-91ba-a7137d42e321.jpg", + "width": "377", + "height": "480", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/35ca5b90-290c-11e7-91ba-a7137d42e321.jpg", + "width": "377", + "height": "480", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/31d887f0-290c-11e7-91ba-a7137d42e321.jpg", + "width": "377", + "height": "480", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/2cb62390-290c-11e7-91ba-a7137d42e321.jpg", + "width": "377", + "height": "480", + "caption": "" + } + ], + "__index": 34, + "dateCreated": "Mon, 24 Apr 2017 16:44:34 GMT" + }, + { + "id": "stone-island-fw_-017-018-lookbook", + "date": "Thu, 08 Jun 2017 12:00:00 GMT", + "title": "Stone Island FW_'017 '018 Lookbook", + "subtitle": "", + "body": "Fall Winter _'017 '018\r\nLookbook\r\nStoneisland.com", + "link": "", + "store": "false", + "image": [ + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/ff898b60-4c23-11e7-9ac9-3bd4413ac605.jpg", + "width": "800", + "height": "1200", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/ff865710-4c23-11e7-9ac9-3bd4413ac605.jpg", + "width": "800", + "height": "1200", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/feadf870-4c23-11e7-9ac9-3bd4413ac605.jpg", + "width": "800", + "height": "1200", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/fdffde20-4c23-11e7-9ac9-3bd4413ac605.jpg", + "width": "800", + "height": "1200", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/fdf04dc0-4c23-11e7-9ac9-3bd4413ac605.jpg", + "width": "800", + "height": "1200", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/fcc00b20-4c23-11e7-9ac9-3bd4413ac605.jpg", + "width": "800", + "height": "1200", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/fe635ae0-4c23-11e7-9ac9-3bd4413ac605.jpg", + "width": "800", + "height": "1200", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/fddd13e0-4c23-11e7-9ac9-3bd4413ac605.jpg", + "width": "800", + "height": "1200", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/fe0f2060-4c23-11e7-9ac9-3bd4413ac605.jpg", + "width": "800", + "height": "1200", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/fc1dfec0-4c23-11e7-9ac9-3bd4413ac605.jpg", + "width": "800", + "height": "1200", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/fb8170a0-4c23-11e7-9ac9-3bd4413ac605.jpg", + "width": "800", + "height": "1200", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/fb1dccd0-4c23-11e7-9ac9-3bd4413ac605.jpg", + "width": "800", + "height": "1200", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/fec55100-4c23-11e7-9ac9-3bd4413ac605.jpg", + "width": "800", + "height": "1200", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/fb4a0cf0-4c23-11e7-9ac9-3bd4413ac605.jpg", + "width": "800", + "height": "1200", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/fb444090-4c23-11e7-9ac9-3bd4413ac605.jpg", + "width": "800", + "height": "1200", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/f920c450-4c23-11e7-9ac9-3bd4413ac605.jpg", + "width": "800", + "height": "1200", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/f9a3aff0-4c23-11e7-9ac9-3bd4413ac605.jpg", + "width": "800", + "height": "1200", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/f9475f20-4c23-11e7-9ac9-3bd4413ac605.jpg", + "width": "800", + "height": "1200", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/f7138f30-4c23-11e7-9ac9-3bd4413ac605.jpg", + "width": "800", + "height": "1200", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/fa02e6f0-4c23-11e7-9ac9-3bd4413ac605.jpg", + "width": "800", + "height": "1200", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/f8c29ec0-4c23-11e7-9ac9-3bd4413ac605.jpg", + "width": "800", + "height": "1200", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/f7af8110-4c23-11e7-9ac9-3bd4413ac605.jpg", + "width": "800", + "height": "1200", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/f771dbd0-4c23-11e7-9ac9-3bd4413ac605.jpg", + "width": "800", + "height": "1200", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/f61929a0-4c23-11e7-9ac9-3bd4413ac605.jpg", + "width": "800", + "height": "1200", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/f5f61140-4c23-11e7-9ac9-3bd4413ac605.jpg", + "width": "800", + "height": "1200", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/f57807a0-4c23-11e7-9ac9-3bd4413ac605.jpg", + "width": "800", + "height": "1200", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/f5d6f080-4c23-11e7-9ac9-3bd4413ac605.jpg", + "width": "800", + "height": "1200", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/f5994b40-4c23-11e7-9ac9-3bd4413ac605.jpg", + "width": "800", + "height": "1200", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/f3ce0120-4c23-11e7-9ac9-3bd4413ac605.jpg", + "width": "800", + "height": "1200", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/f3af0770-4c23-11e7-9ac9-3bd4413ac605.jpg", + "width": "800", + "height": "1200", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/f7abfea0-4c23-11e7-9ac9-3bd4413ac605.jpg", + "width": "800", + "height": "1200", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/f272b6e0-4c23-11e7-9ac9-3bd4413ac605.jpg", + "width": "800", + "height": "1200", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/f26856a0-4c23-11e7-9ac9-3bd4413ac605.jpg", + "width": "800", + "height": "1200", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/f2938550-4c23-11e7-9ac9-3bd4413ac605.jpg", + "width": "800", + "height": "1200", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/f2a6bf30-4c23-11e7-9ac9-3bd4413ac605.jpg", + "width": "800", + "height": "1200", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/f2a119e0-4c23-11e7-9ac9-3bd4413ac605.jpg", + "width": "800", + "height": "1200", + "caption": "" + } + ], + "__index": 35, + "dateCreated": "Thu, 08 Jun 2017 14:03:03 GMT" + }, + { + "id": "fw_-017-018-preview_-nylon-metal-flock-exclusively-on-the-stone-island-app", + "date": "Thu, 08 Jun 2017 12:00:00 GMT", + "title": "FW_'017 '018 Preview_ Nylon Metal Flock Exclusively on the Stone Island App", + "subtitle": "", + "body": "
The grey weft and white warp color is the grounds of the metallic and tonic sheen of Nylon Metal, one of the most versatile fabrics born of STONE ISLAND textile research.\r\n
Nylon Metal Flock is paired with an adhesive film and then flocked with micronized cotton.\r\n
The finished piece undergoes an elaborate double dye procedure providing different shades, intensity and colors to all the garment textile fibers.", + "link": "", + "store": "true", + "image": [ + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/5abe8b20-4c24-11e7-9ac9-3bd4413ac605.jpg", + "width": "750", + "height": "1000", + "caption": "" + } + ], + "__index": 36, + "dateCreated": "Thu, 08 Jun 2017 14:03:07 GMT" + }, + { + "id": "fall-winter_-017-018-icon-imagery", + "date": "Thu, 15 Jun 2017 12:00:00 GMT", + "title": "FALL WINTER_'017 '018 ICON IMAGERY", + "subtitle": "", + "body": "Fall Winter_'017 '018\r\nIcon Imagery\r\nStoneisland.com", + "link": "", + "store": "true", + "image": [ + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/9c02aaa0-51f4-11e7-9ac9-3bd4413ac605.jpg", + "width": "667", + "height": "1000", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/9b91c060-51f4-11e7-9ac9-3bd4413ac605.jpg", + "width": "667", + "height": "1000", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/99d9b020-51f4-11e7-9ac9-3bd4413ac605.jpg", + "width": "667", + "height": "1000", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/9a2c15e0-51f4-11e7-9ac9-3bd4413ac605.jpg", + "width": "667", + "height": "1000", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/9a183fc0-51f4-11e7-9ac9-3bd4413ac605.jpg", + "width": "667", + "height": "1000", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/9b491ea0-51f4-11e7-9ac9-3bd4413ac605.jpg", + "width": "667", + "height": "1000", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/9863b1f0-51f4-11e7-9ac9-3bd4413ac605.jpg", + "width": "667", + "height": "1000", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/980676c0-51f4-11e7-9ac9-3bd4413ac605.jpg", + "width": "667", + "height": "1000", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/9a40af50-51f4-11e7-9ac9-3bd4413ac605.jpg", + "width": "667", + "height": "1000", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/9bb749c0-51f4-11e7-9ac9-3bd4413ac605.jpg", + "width": "667", + "height": "1000", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/97a56b00-51f4-11e7-9ac9-3bd4413ac605.jpg", + "width": "667", + "height": "1000", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/96b0d1d0-51f4-11e7-9ac9-3bd4413ac605.jpg", + "width": "667", + "height": "1000", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/96632700-51f4-11e7-9ac9-3bd4413ac605.jpg", + "width": "667", + "height": "1000", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/96ac8c10-51f4-11e7-9ac9-3bd4413ac605.jpg", + "width": "667", + "height": "1000", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/9651e8f0-51f4-11e7-9ac9-3bd4413ac605.jpg", + "width": "667", + "height": "1000", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/955c3e50-51f4-11e7-9ac9-3bd4413ac605.jpg", + "width": "667", + "height": "1000", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/93f3ada0-51f4-11e7-9ac9-3bd4413ac605.jpg", + "width": "667", + "height": "1000", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/955d9de0-51f4-11e7-9ac9-3bd4413ac605.jpg", + "width": "667", + "height": "1000", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/943e2420-51f4-11e7-9ac9-3bd4413ac605.jpg", + "width": "667", + "height": "1000", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/938a3d70-51f4-11e7-9ac9-3bd4413ac605.jpg", + "width": "667", + "height": "1000", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/945a1090-51f4-11e7-9ac9-3bd4413ac605.jpg", + "width": "667", + "height": "1000", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/9252f5f0-51f4-11e7-9ac9-3bd4413ac605.jpg", + "width": "667", + "height": "1000", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/912d3aa0-51f4-11e7-9ac9-3bd4413ac605.jpg", + "width": "667", + "height": "1000", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/910407c0-51f4-11e7-9ac9-3bd4413ac605.jpg", + "width": "667", + "height": "1000", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/9183e620-51f4-11e7-9ac9-3bd4413ac605.jpg", + "width": "667", + "height": "1000", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/92791b90-51f4-11e7-9ac9-3bd4413ac605.jpg", + "width": "667", + "height": "1000", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/915d7260-51f4-11e7-9ac9-3bd4413ac605.jpg", + "width": "667", + "height": "1000", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/90563b90-51f4-11e7-9ac9-3bd4413ac605.jpg", + "width": "667", + "height": "1000", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/8e605f00-51f4-11e7-9ac9-3bd4413ac605.jpg", + "width": "667", + "height": "1000", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/8834ef10-51f4-11e7-9ac9-3bd4413ac605.jpg", + "width": "667", + "height": "1000", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/847994c0-51f4-11e7-9ac9-3bd4413ac605.jpg", + "width": "667", + "height": "1000", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/8195fcd0-51f4-11e7-9ac9-3bd4413ac605.jpg", + "width": "667", + "height": "1000", + "caption": "" + } + ], + "__index": 37, + "dateCreated": "Thu, 15 Jun 2017 18:03:05 GMT" + }, + { + "id": "fw-017-018-collection-video", + "date": "Thu, 06 Jul 2017 12:00:00 GMT", + "title": "FW '017 '018 COLLECTION VIDEO", + "subtitle": "", + "body": "", + "link": "https://www.youtube.com/watch?v=hw85wCaceMQ&feature=youtu.be", + "store": "false", + "__index": 38, + "dateCreated": "Thu, 06 Jul 2017 14:29:35 GMT", + "image": [] + }, + { + "id": "the-new-stone-island-los-angeles-flagship-store", + "date": "Thu, 03 Aug 2017 12:00:00 GMT", + "title": "THE NEW STONE ISLAND LOS ANGELES FLAGSHIP STORE", + "subtitle": "", + "body": "Stone Island changes location in Los Angeles and moves to 101 North La Brea Avenue.\r\n\r\nThe independent building, with large show windows facing the street features 500 square meters of floor area making it the largest single-brand store for the Stone Island. \r\nLocated at the intersection of N La Brea and 1st Street, the store has been designed to give ample space to the emotional area and the Stone Island and Stone Island Shadow Project collections.\r\n\r\nSTONE ISLAND LOS ANGELES\r\n101 N. La Brea Avenue, Los Angeles, CA 90036", + "link": "", + "store": "false", + "image": [ + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/ef7c14e0-7851-11e7-b3ab-097f24535e05.jpg", + "width": "1200", + "height": "640", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/f1a9ca50-7851-11e7-b3ab-097f24535e05.jpg", + "width": "1200", + "height": "640", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/f12c35e0-7851-11e7-b3ab-097f24535e05.jpg", + "width": "1200", + "height": "640", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/efc049d0-7851-11e7-b3ab-097f24535e05.jpg", + "width": "1200", + "height": "640", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/f1c19810-7851-11e7-b3ab-097f24535e05.jpg", + "width": "1200", + "height": "640", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/f082fd90-7851-11e7-b3ab-097f24535e05.jpg", + "width": "1200", + "height": "640", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/f232d070-7851-11e7-b3ab-097f24535e05.jpg", + "width": "1200", + "height": "640", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/f149d000-7851-11e7-b3ab-097f24535e05.jpg", + "width": "1200", + "height": "640", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/f1a47320-7851-11e7-b3ab-097f24535e05.jpg", + "width": "1200", + "height": "640", + "caption": "" + } + ], + "__index": 39, + "dateCreated": "Thu, 03 Aug 2017 14:00:25 GMT" + }, + { + "id": "featherweight-leather-with-primaloft-insulation-technology", + "date": "Thu, 31 Aug 2017 12:00:00 GMT", + "title": "FEATHERWEIGHT LEATHER
WITH PRIMALOFT® INSULATION TECHNOLOGY", + "subtitle": "", + "body": "Featherweight Leather Down garments are made in ultra-lightweight leather bonded to a very fine polyester organza and lined with a PrimaLoft® layer, an exclusive blend of fibers which provide outstanding insulation capacity, delivering the highest warmth-to-weight ratio of all synthetic insulation.\r\n\r\n
APP EXCLUSIVE FROM 8/31 TO 9/6", + "link": "", + "store": "true", + "image": [ + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/012e9090-8e56-11e7-b3ab-097f24535e05.jpg", + "width": "778", + "height": "1037", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/01337290-8e56-11e7-b3ab-097f24535e05.jpg", + "width": "778", + "height": "1037", + "caption": "" + } + ], + "__index": 40, + "dateCreated": "Thu, 31 Aug 2017 14:18:27 GMT" + }, + { + "id": "ice-knit_app-exclusive-preview", + "date": "Fri, 08 Sep 2017 12:00:00 GMT", + "title": "Ice Knit_App Exclusive Preview", + "subtitle": "", + "body": "Stone Island research experiments the thermo-sensitive sweater <u>for the first time
</u>\r\n\r\nGarments are created with a double knit construction: the outer face is made in an exclusive thermo-sensitive yarn that drastically changes color when exposed to cold, while the inner one is in pure wool.
From yellow to orange, from emerald to military green.
\r\n\r\nAPP EXCLUSIVE FROM 9/11 TO 9/13", + "link": "", + "store": "false", + "image": [ + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/bf5acb50-94a6-11e7-b3ab-097f24535e05.jpg", + "width": "698", + "height": "911", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/bfd3cbe0-94a6-11e7-b3ab-097f24535e05.jpg", + "width": "698", + "height": "911", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/c0cc0e90-94a6-11e7-b3ab-097f24535e05.jpg", + "width": "467", + "height": "622", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/bff22950-94a6-11e7-b3ab-097f24535e05.jpg", + "width": "698", + "height": "911", + "caption": "" + } + ], + "__index": 41, + "dateCreated": "Fri, 08 Sep 2017 15:05:02 GMT" + }, + { + "id": "frost-finish_stone-island-app-exclusive-style", + "date": "Wed, 20 Sep 2017 12:00:00 GMT", + "title": "Frost Finish_Stone Island App Exclusive Style", + "subtitle": "", + "body": " A treatment that lends an ultimate frozen look
that is unique and <u>exclusive</u> to each garment.\r\n\r\nNew treatment on the finished garment which creates a frosted look to outerwear, sweaters, sweatshirts and pants, that is unique and exclusive to each piece.
\r\nIn TELA NYLON DOWN WITH DUST COLOR FROST FINISH garments, made in a lightweight ultra-tight weave nylon tela and down filled, the addition of a special agent makes them anti-drop.\r\nOn fleecewear and knitwear pieces the WHITE FROST treatment deposits a white coating to give a frosted effect on the outer side, while sweaters realized with COLOR CORROSION TREATMENT undergo a corrosion process.
\r\n\r\nG0453_VEST IN TELA NYLON DOWN\r\n
STONE ISLAND APP EXCLUSIVE STYLE
\r\nAVAILABLE IN 2 COLORWAYS, BLACK AND PISTACHIO GREEN
\r\nFROM 9/20 TO 9/26", + "link": "", + "store": "true", + "image": [ + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/e425d0b0-9de3-11e7-b3ab-097f24535e05.jpg", + "width": "778", + "height": "1037", + "caption": "" + } + ], + "__index": 42, + "dateCreated": "Wed, 20 Sep 2017 13:57:48 GMT" + }, + { + "id": "6715-stone-island_frost-finish-watch-the-video", + "date": "Wed, 20 Sep 2017 12:00:00 GMT", + "title": "6715 STONE ISLAND_FROST FINISH WATCH THE VIDEO", + "subtitle": "", + "body": "", + "link": "https://youtu.be/xL8KZy7bpvs", + "store": "true", + "image": [ + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/8618cff0-9e1e-11e7-b3ab-097f24535e05.png", + "width": "600", + "height": "252", + "caption": "" + } + ], + "__index": 43, + "dateCreated": "Wed, 20 Sep 2017 16:11:49 GMT" + }, + { + "id": "stone-island-supreme-fw_-017-018-preview", + "date": "Mon, 02 Oct 2017 12:00:00 GMT", + "title": "Stone Island / Supreme FW_'017 '018 Preview", + "subtitle": "", + "body": "Anorak in Poly Cover Composite, a matte, colorless and opaque, water and wind resistant, polyurethane film. The garment dyeing technique colors the film without affecting its transparency.\r\n\r\n
Down jacket in Lamy Cover, a hyper light nylon tela, digitally printed with exclusive Supreme artwork and then laminated with an outer polyurethane film.
The piece is assembled and then directly injected with the finest feathers. The direct injection of feathers enhances the overall lightness of the garment.
Even the Supreme six panels cap is made in Stone Island Lamy Cover.
\r\n\r\nHooded sweatshirt in cotton fleece. Garment dyed. Snap closure pouch pocket on front. Reflective transfer print of the Stone Island/Supreme Compass at center front. Supreme Reflective transfer print on back. Reflective transfer print patches on hood and lower sleeves. Made exclusively for Supreme.\r\nSweat pants in cotton fleece with reflective transfer print of the Stone Island/Supreme Compass on left thigh.
\r\n\r\nShort sleeve T-shirt in cotton jersey with all over pigment print, placed Stone Island/Supreme Compass at center front and placed stripes on sleeves. Same fabric in collar. Twenty minute stonewashing. The white colorway has the Stone Island/Supreme Compass and stripes printed on cotton jersey. Made exclusively for Supreme.
\r\n\r\nAvailable starting October 5th in Europe and North America and from October 7th in the Far East - exclusively on the Stone Island App for US and Canada, at Stone Island flagship stores*, on stoneisland.com, and stoneisland.co.uk.
Available on supremenewyork.com and in Supreme** stores.
\r\n\r\n*Milan, Rome, Florence, Verona, Turin, Forte dei Marmi, Riccione, London, Paris, Cannes, Munich, Hamburg, Sylt, Amsterdam, Antwerp, Stockholm, New York, Los Angeles and Seoul.
\r\n\r\n
** New York, Los Angeles, London, Paris, Tokyo, Nagoya, Osaka and Fukuoka.", + "link": "", + "store": "false", + "image": [ + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/bf306b90-a760-11e7-adc3-e10033f4bfaa.jpg", + "width": "672", + "height": "1000", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/bb8c42c0-a760-11e7-adc3-e10033f4bfaa.jpg", + "width": "678", + "height": "1000", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/b8ded600-a760-11e7-adc3-e10033f4bfaa.jpg", + "width": "751", + "height": "1000", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/b6aa69d0-a760-11e7-adc3-e10033f4bfaa.jpg", + "width": "671", + "height": "1000", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/b42370d0-a760-11e7-adc3-e10033f4bfaa.jpg", + "width": "675", + "height": "1000", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/b0c4dc80-a760-11e7-adc3-e10033f4bfaa.jpg", + "width": "676", + "height": "1000", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/ada91d90-a760-11e7-adc3-e10033f4bfaa.jpg", + "width": "678", + "height": "1000", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/a22210d0-a760-11e7-adc3-e10033f4bfaa.jpg", + "width": "1200", + "height": "800", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/9f9ff9d0-a760-11e7-adc3-e10033f4bfaa.jpg", + "width": "1200", + "height": "800", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/839c3140-a760-11e7-adc3-e10033f4bfaa.jpg", + "width": "600", + "height": "401", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/80244890-a760-11e7-adc3-e10033f4bfaa.jpg", + "width": "600", + "height": "401", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/31d71e10-a760-11e7-adc3-e10033f4bfaa.jpg", + "width": "1200", + "height": "800", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/62a29290-a760-11e7-adc3-e10033f4bfaa.jpg", + "width": "1200", + "height": "800", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/6d68b5c0-a75f-11e7-adc3-e10033f4bfaa.jpg", + "width": "1000", + "height": "667", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/502da5b0-a75f-11e7-adc3-e10033f4bfaa.jpg", + "width": "1000", + "height": "667", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/4cdd9050-a75f-11e7-adc3-e10033f4bfaa.jpg", + "width": "1000", + "height": "667", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/49e3ff60-a75f-11e7-adc3-e10033f4bfaa.jpg", + "width": "1000", + "height": "667", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/47400880-a75f-11e7-adc3-e10033f4bfaa.jpg", + "width": "1000", + "height": "667", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/446215e0-a75f-11e7-adc3-e10033f4bfaa.jpg", + "width": "1000", + "height": "667", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/41e88a60-a75f-11e7-adc3-e10033f4bfaa.jpg", + "width": "1000", + "height": "667", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/3d918c50-a75f-11e7-adc3-e10033f4bfaa.jpg", + "width": "1000", + "height": "667", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/3aaa23d0-a75f-11e7-adc3-e10033f4bfaa.jpg", + "width": "1000", + "height": "667", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/35848b20-a75f-11e7-adc3-e10033f4bfaa.jpg", + "width": "1000", + "height": "667", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/32a0cc20-a75f-11e7-adc3-e10033f4bfaa.jpg", + "width": "1000", + "height": "667", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/2e4efe30-a75f-11e7-adc3-e10033f4bfaa.jpg", + "width": "1000", + "height": "667", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/2b75ed90-a75f-11e7-adc3-e10033f4bfaa.jpg", + "width": "1000", + "height": "667", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/2867c330-a75f-11e7-adc3-e10033f4bfaa.jpg", + "width": "1000", + "height": "667", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/24b876d0-a75f-11e7-adc3-e10033f4bfaa.jpg", + "width": "1000", + "height": "667", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/1cc56640-a75f-11e7-adc3-e10033f4bfaa.jpg", + "width": "1000", + "height": "667", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/149f37c0-a75f-11e7-adc3-e10033f4bfaa.jpg", + "width": "1000", + "height": "667", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/caee78c0-a75e-11e7-adc3-e10033f4bfaa.jpg", + "width": "1000", + "height": "667", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/c3319360-a75e-11e7-adc3-e10033f4bfaa.jpg", + "width": "1000", + "height": "667", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/b8d5c030-a75e-11e7-adc3-e10033f4bfaa.jpg", + "width": "1000", + "height": "667", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/b025ef50-a75e-11e7-adc3-e10033f4bfaa.jpg", + "width": "600", + "height": "400", + "caption": "" + } + ], + "__index": 44, + "dateCreated": "Mon, 02 Oct 2017 11:03:47 GMT" + }, + { + "id": "stone-island-porter-co-lab-br-si-house-check-jacquard-on-nylon-metal-black-watro", + "date": "Thu, 19 Oct 2017 12:00:00 GMT", + "title": "STONE ISLAND / PORTER® CO-LAB
<br>SI HOUSE CHECK JACQUARD ON NYLON METAL BLACK WATRO", + "subtitle": "", + "body": "Three models made by Porter®, the Japanese cult brand, are reinterpreted by Stone Island's research, textile experimentation and garment dyeing know how.\r\n\r\nBackpack, Duffle bag and Portfolio in Nylon Metal Black Watro with jacquard motive.
\r\nThe rip-stop design on the surface is derived from the Stone Island House Check and integrates the star in the vertical and horizontal checked pattern.\r\n\r\nThe fabric has been resin treated inside to achieve a mild water resistance.
The bag project has been studied and engineered to use the garment dye technique: garment dyed through double color recipe with the addition of a special anti-drop agent.", + "link": "", + "store": "true", + "image": [ + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/b609d1a0-b4d5-11e7-adc3-e10033f4bfaa.jpg", + "width": "720", + "height": "960", + "caption": "" + } + ], + "__index": 45, + "dateCreated": "Thu, 19 Oct 2017 14:00:15 GMT" + }, + { + "id": "stone-island-porter-co-lab-br-si-house-check-jacquard-on-nylon-metal-black-watro-video", + "date": "Thu, 19 Oct 2017 12:00:00 GMT", + "title": "STONE ISLAND / PORTER® CO-LAB
<br>SI HOUSE CHECK JACQUARD ON NYLON METAL BLACK WATRO VIDEO", + "subtitle": "", + "body": "", + "link": "https://www.youtube.com/watch?v=ARrlueBcWb0&feature=youtu.be", + "store": "true", + "__index": 46, + "dateCreated": "Thu, 19 Oct 2017 14:11:16 GMT", + "image": [] + }, + { + "id": "president-s-knit-david-tc_app-exclusive-preview", + "date": "Thu, 26 Oct 2017 12:00:00 GMT", + "title": "President's Knit & David-TC_App Exclusive Preview", + "subtitle": "", + "body": "546A2_PRESIDENT'S KNIT
Hooded cardigan in heavy lambswool. Hood in reversed sheepskin.
Inside the garment, removable bomber that can be worn alone, reversible, in resin-coated nylon with welt pockets on one side and fleece patch pockets on the other, padded with a lightweight layer of PrimaLoft®.\r\n\r\n42049_DAVID-TC
Hooded jacket in David-TC. Starting with an initial star-shaped Japanese polyester/polyamide substrate, garments in DAVID-TC are assembled and then simultaneously dyed and treated with an anti-drop agent. Neck and hood in reversed sheepskin. Detachable lining in ultra light nylon weighing only 26 grams per meter squared. Direct feather injection with premium fathers. \r\n\r\nAPP EXCLUSIVE FROM 10/26 TO 11/1", + "link": "", + "store": "true", + "image": [ + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/b38f1b20-ba5b-11e7-adc3-e10033f4bfaa.jpg", + "width": "776", + "height": "1012", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/b714e680-ba5b-11e7-adc3-e10033f4bfaa.jpg", + "width": "776", + "height": "1012", + "caption": "" + } + ], + "__index": 47, + "dateCreated": "Thu, 26 Oct 2017 14:44:43 GMT" + }, + { + "id": "garment-dyed-crinkle-reps-ny", + "date": "Thu, 02 Nov 2017 12:00:00 GMT", + "title": "GARMENT DYED CRINKLE REPS NY", + "subtitle": "", + "body": "Lightweight nylon rep with an ultra-tight weaving construction.\r\n
The resin coating of its inner face makes it wind resistant and mildly water resistant.\r\nThe uneven penetration of the dye bath in the resin-coated fabric gives the surface a blurred, marbled appearance. \r\nGarment Dyed Crinkle Reps NY Down pieces are then padded with the finest down.\r\n\r\nAPP EXCLUSIVE FROM 11/2 TO 11/8", + "link": "", + "store": "true", + "image": [ + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/d5f03c00-bfe0-11e7-adc3-e10033f4bfaa.jpg", + "width": "576", + "height": "768", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/d64c65c0-bfe0-11e7-adc3-e10033f4bfaa.jpg", + "width": "767", + "height": "1000", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/d6acae30-bfe0-11e7-adc3-e10033f4bfaa.jpg", + "width": "767", + "height": "1000", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/d7f756a0-bfe0-11e7-adc3-e10033f4bfaa.jpg", + "width": "767", + "height": "1000", + "caption": "" + } + ], + "__index": 48, + "dateCreated": "Thu, 02 Nov 2017 15:16:58 GMT" + }, + { + "id": "pertex-quantum-y", + "date": "Thu, 23 Nov 2017 12:00:00 GMT", + "title": "PERTEX QUANTUM Y", + "subtitle": "", + "body": " This next generation technological performance fabric pairs extreme lightness with high strength and durability.\r\nIn Pertex Quantum Y pieces, the unique Y-shaped structure of the yarns interlocks for a more stable construction of the material and an extremely fluid and smooth surface aspect.\r\n
DWR (Durable Water Repellence) technology gives the fabric greater water-repellent properties that last over time.\r\nThe garments are padded with the finest down or a lightweight substrate in PrimaLoft®.\r\n\r\n43421_APP EXCLUSIVE FROM 11/23 TO 11/29", + "link": "", + "store": "true", + "image": [ + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/3bf39860-d05f-11e7-b5b4-051373ff3553.jpg", + "width": "559", + "height": "729", + "caption": "" + } + ], + "__index": 49, + "dateCreated": "Thu, 23 Nov 2017 15:02:46 GMT" + }, + { + "id": "ss_-018-preview_exclusively-on-the-stone-island-app", + "date": "Tue, 12 Dec 2017 12:00:00 GMT", + "title": "SS_'018 Preview_Exclusively on the Stone Island App", + "subtitle": "", + "body": "Stone Island innovation in fabrics and treatments applied to garments designed with inspiration taken from sportswear and military uniforms.\r\nReworking concepts, techniques and aesthetics from the archive.\r\nThe seasonal color card includes dark sophisticated tones such as musk and pastel tones, for instance light green.\r\n\r\nSPRING SUMMER COLLECTION PREVIEW\r\nAPP EXCLUSIVE FROM 12/12 TO 12/18", + "link": "", + "store": "true", + "image": [ + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/fccc3780-df4c-11e7-ba17-01c29471a12d.jpg", + "width": "1014", + "height": "720", + "caption": "" + } + ], + "__index": 50, + "dateCreated": "Tue, 12 Dec 2017 15:06:54 GMT" + }, + { + "id": "stone-island-ss_-018-lookbook", + "date": "Tue, 12 Dec 2017 12:00:00 GMT", + "title": "Stone Island SS_'018 Lookbook", + "subtitle": "", + "body": "
View the SS_'018 Lookbook on stoneisland.com and on the Stone Island App.", + "link": "", + "store": "true", + "image": [ + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/5d196270-df4d-11e7-ba17-01c29471a12d.jpg", + "width": "652", + "height": "978", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/5d84f580-df4d-11e7-ba17-01c29471a12d.jpg", + "width": "652", + "height": "978", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/5d7a9540-df4d-11e7-ba17-01c29471a12d.jpg", + "width": "652", + "height": "978", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/5ca1c170-df4d-11e7-ba17-01c29471a12d.jpg", + "width": "652", + "height": "978", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/5cf49c60-df4d-11e7-ba17-01c29471a12d.jpg", + "width": "652", + "height": "978", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/5be5c470-df4d-11e7-ba17-01c29471a12d.jpg", + "width": "652", + "height": "978", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/5caa9b10-df4d-11e7-ba17-01c29471a12d.jpg", + "width": "652", + "height": "978", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/5ca32100-df4d-11e7-ba17-01c29471a12d.jpg", + "width": "652", + "height": "978", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/5b5e6c00-df4d-11e7-ba17-01c29471a12d.jpg", + "width": "652", + "height": "978", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/5bf13620-df4d-11e7-ba17-01c29471a12d.jpg", + "width": "652", + "height": "978", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/5ac3b2a0-df4d-11e7-ba17-01c29471a12d.jpg", + "width": "652", + "height": "978", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/5accb350-df4d-11e7-ba17-01c29471a12d.jpg", + "width": "652", + "height": "978", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/5bc19aa0-df4d-11e7-ba17-01c29471a12d.jpg", + "width": "652", + "height": "978", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/5a386290-df4d-11e7-ba17-01c29471a12d.jpg", + "width": "652", + "height": "978", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/59e64af0-df4d-11e7-ba17-01c29471a12d.jpg", + "width": "652", + "height": "978", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/58ef8ee0-df4d-11e7-ba17-01c29471a12d.jpg", + "width": "652", + "height": "978", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/58543940-df4d-11e7-ba17-01c29471a12d.jpg", + "width": "652", + "height": "978", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/582e3ab0-df4d-11e7-ba17-01c29471a12d.jpg", + "width": "652", + "height": "978", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/5953cef0-df4d-11e7-ba17-01c29471a12d.jpg", + "width": "652", + "height": "978", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/58c04180-df4d-11e7-ba17-01c29471a12d.jpg", + "width": "652", + "height": "978", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/5a74cf50-df4d-11e7-ba17-01c29471a12d.jpg", + "width": "652", + "height": "978", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/577041e0-df4d-11e7-ba17-01c29471a12d.jpg", + "width": "652", + "height": "978", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/573beb70-df4d-11e7-ba17-01c29471a12d.jpg", + "width": "652", + "height": "978", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/576f5780-df4d-11e7-ba17-01c29471a12d.jpg", + "width": "652", + "height": "978", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/56533920-df4d-11e7-ba17-01c29471a12d.jpg", + "width": "652", + "height": "978", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/576e9430-df4d-11e7-ba17-01c29471a12d.jpg", + "width": "652", + "height": "978", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/56422220-df4d-11e7-ba17-01c29471a12d.jpg", + "width": "652", + "height": "978", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/554d13c0-df4d-11e7-ba17-01c29471a12d.jpg", + "width": "652", + "height": "978", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/54f24990-df4d-11e7-ba17-01c29471a12d.jpg", + "width": "652", + "height": "978", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/554dfe20-df4d-11e7-ba17-01c29471a12d.jpg", + "width": "652", + "height": "978", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/57369440-df4d-11e7-ba17-01c29471a12d.jpg", + "width": "652", + "height": "978", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/551ed7d0-df4d-11e7-ba17-01c29471a12d.jpg", + "width": "652", + "height": "978", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/53b44b50-df4d-11e7-ba17-01c29471a12d.jpg", + "width": "652", + "height": "978", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/540eee70-df4d-11e7-ba17-01c29471a12d.jpg", + "width": "652", + "height": "978", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/5925ba10-df4d-11e7-ba17-01c29471a12d.jpg", + "width": "652", + "height": "978", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/539eee90-df4d-11e7-ba17-01c29471a12d.jpg", + "width": "652", + "height": "978", + "caption": "" + } + ], + "__index": 51, + "dateCreated": "Tue, 12 Dec 2017 15:06:58 GMT" + }, + { + "id": "spring-summer_-018-icon-imagery", + "date": "Tue, 09 Jan 2018 12:00:00 GMT", + "title": "SPRING SUMMER_'018 ICON IMAGERY", + "subtitle": "", + "body": "", + "link": "", + "store": "false", + "image": [ + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/b3c4de40-f54d-11e7-ba17-01c29471a12d.jpg", + "width": "667", + "height": "1000", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/b1745e90-f54d-11e7-ba17-01c29471a12d.jpg", + "width": "667", + "height": "1000", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/add39120-f54d-11e7-ba17-01c29471a12d.jpg", + "width": "667", + "height": "1000", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/a7b5b5c0-f54d-11e7-ba17-01c29471a12d.jpg", + "width": "667", + "height": "1000", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/a483fdd0-f54d-11e7-ba17-01c29471a12d.jpg", + "width": "667", + "height": "1000", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/9c490ed0-f54d-11e7-ba17-01c29471a12d.jpg", + "width": "667", + "height": "1000", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/92414f10-f54d-11e7-ba17-01c29471a12d.jpg", + "width": "667", + "height": "1000", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/8bdddf30-f54d-11e7-ba17-01c29471a12d.jpg", + "width": "667", + "height": "1000", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/7dfaba00-f54d-11e7-ba17-01c29471a12d.jpg", + "width": "667", + "height": "1000", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/8444fc90-f54d-11e7-ba17-01c29471a12d.jpg", + "width": "667", + "height": "1000", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/727dbf60-f54d-11e7-ba17-01c29471a12d.jpg", + "width": "667", + "height": "1000", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/699d4190-f54d-11e7-ba17-01c29471a12d.jpg", + "width": "667", + "height": "1000", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/59050e80-f54d-11e7-ba17-01c29471a12d.jpg", + "width": "667", + "height": "1000", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/4ff877a0-f54d-11e7-ba17-01c29471a12d.jpg", + "width": "667", + "height": "1000", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/4b2ac2f0-f54d-11e7-ba17-01c29471a12d.jpg", + "width": "667", + "height": "1000", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/3f61a420-f54d-11e7-ba17-01c29471a12d.jpg", + "width": "667", + "height": "1000", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/38b19ae0-f54d-11e7-ba17-01c29471a12d.jpg", + "width": "667", + "height": "1000", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/32b9be10-f54d-11e7-ba17-01c29471a12d.jpg", + "width": "667", + "height": "1000", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/2d680c50-f54d-11e7-ba17-01c29471a12d.jpg", + "width": "667", + "height": "1000", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/1bb2f790-f54d-11e7-ba17-01c29471a12d.jpg", + "width": "667", + "height": "1000", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/13d829f0-f54d-11e7-ba17-01c29471a12d.jpg", + "width": "667", + "height": "1000", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/0f4f9490-f54d-11e7-ba17-01c29471a12d.jpg", + "width": "667", + "height": "1000", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/07c1ae70-f54d-11e7-ba17-01c29471a12d.jpg", + "width": "667", + "height": "1000", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/027776c0-f54d-11e7-ba17-01c29471a12d.jpg", + "width": "667", + "height": "1000", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/fe297960-f54c-11e7-ba17-01c29471a12d.jpg", + "width": "667", + "height": "1000", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/faff89a0-f54c-11e7-ba17-01c29471a12d.jpg", + "width": "667", + "height": "1000", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/f761a260-f54c-11e7-ba17-01c29471a12d.jpg", + "width": "667", + "height": "1000", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/e96bdf90-f54c-11e7-ba17-01c29471a12d.jpg", + "width": "667", + "height": "1000", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/e101f150-f54c-11e7-ba17-01c29471a12d.jpg", + "width": "667", + "height": "1000", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/d705a340-f54c-11e7-ba17-01c29471a12d.jpg", + "width": "667", + "height": "1000", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/d4abd4c0-f54c-11e7-ba17-01c29471a12d.jpg", + "width": "667", + "height": "1000", + "caption": "" + } + ], + "__index": 52, + "dateCreated": "Tue, 09 Jan 2018 14:59:41 GMT" + }, + { + "id": "6815-stone-island-ss-018_collection-video", + "date": "Tue, 30 Jan 2018 12:00:00 GMT", + "title": "6815 Stone Island SS '018_Collection Video", + "subtitle": "", + "body": "", + "link": "https://youtu.be/lhEEW5fudQk", + "store": "false", + "__index": 53, + "dateCreated": "Tue, 30 Jan 2018 15:51:41 GMT", + "image": [ + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/991f2c10-05d5-11e8-ba17-01c29471a12d.jpg", + "width": "1920", + "height": "1080", + "caption": "" + } + ] + }, + { + "id": "foam-resin-treated-denim", + "date": "Thu, 15 Feb 2018 12:00:00 GMT", + "title": "FOAM RESIN TREATED DENIM", + "subtitle": "", + "body": "Blouson in 11¾ stretch washed denim with a 3/1 twill weave, made with a sulfur based cotton yarn dyeing process. After weaving, the fabric undergoes a special foam treatment leaving a light and impalpable pigmented resin base on the outer side. \r\nThe finished garment undergoes the traditional denim washes.\r\n\r\nAPP EXCLUSIVE FROM 2/15 TO 2/21", + "link": "", + "store": "true", + "__index": 54, + "dateCreated": "Thu, 15 Feb 2018 15:04:37 GMT", + "image": [ + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/8ec987e0-1261-11e8-94f4-9bec9d46ff0b.jpg", + "width": "600", + "height": "801", + "caption": "" + } + ] + }, + { + "id": "textured-nylon-sneaker-", + "date": "Thu, 22 Feb 2018 12:00:00 GMT", + "title": "TEXTURED NYLON SNEAKER ", + "subtitle": "", + "body": "Tennis-style sneaker in high-tenacity structured nylon. Stone Island Compass logo engraved on the leather tongue. Colored rubber sole.
\r\nMade in Italy by Diemme.
\r\n\r\nAPP EXCLUSIVE FROM 2/22 TO 2/28", + "link": "", + "store": "true", + "image": [ + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/e17a01b0-17e1-11e8-94f4-9bec9d46ff0b.jpg", + "width": "742", + "height": "1000", + "caption": "" + } + ], + "__index": 55, + "dateCreated": "Thu, 22 Feb 2018 15:05:58 GMT" + }, + { + "id": "ghost-piece", + "date": "Thu, 01 Mar 2018 12:00:00 GMT", + "title": "GHOST PIECE", + "subtitle": "", + "body": "WHITE GHOST
\r\nSTONE ISLAND APP EXCLUSIVE COLORWAY\r\n\r\nS
702F1_Tank Shield technical trench coat, made in an opaque polyester tela, preassembled and then entirely laminated with overlapping panels made by a performing membrane. Raised collar with fold-away hood.
\r\n\r\n559FA_Cotton crew neck, with cotton jersey insert on shoulders. Ribbed neckline, cuffs and bottom hem.
\r\n\r\nAVAILABLE FROM 03/01 TO 03/07", + "link": "", + "store": "true", + "image": [ + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/d522cf10-1d44-11e8-bdc7-dbb82265d0f0.jpg", + "width": "580", + "height": "813", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/d4a33ed0-1d44-11e8-bdc7-dbb82265d0f0.jpg", + "width": "580", + "height": "813", + "caption": "" + } + ], + "__index": 56, + "dateCreated": "Thu, 01 Mar 2018 14:58:46 GMT" + }, + { + "id": "garment-dyed-plated-reflective-with-ny-jersey-r", + "date": "Thu, 08 Mar 2018 12:00:00 GMT", + "title": "GARMENT DYED PLATED REFLECTIVE WITH NY JERSEY-R", + "subtitle": "", + "body": "Garments made in two exclusive Stone Island engineered fabrics. A nylon tela base, that can be garment dyed, plated with a highly reflective resin substance containing thousands of glass microspheres and a double layer of nylon jersey with an inner performance membrane.\r\nThe finished pieces are dyed with special recipes that color all the fabric parts while respecting the reflective surface.
\r\n\r\nSTONE ISLAND APP EXCLUSIVE COLORWAY
\r\n\r\n44999_Anorak with chimney collar. The upper part is made in NY Jersey-R, the lower one in Reflective fabric.\r\n\r\nAVAILABLE FROM 3/8 TO 3/14", + "link": "", + "store": "true", + "image": [ + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/d48df820-22e1-11e8-bdc7-dbb82265d0f0.jpg", + "width": "290", + "height": "407", + "caption": "" + } + ], + "__index": 57, + "dateCreated": "Thu, 08 Mar 2018 15:03:19 GMT" + }, + { + "id": "hexagon-br-pertex-quantum-y-and-garments-in-quilted-jersey", + "date": "Thu, 15 Mar 2018 12:00:00 GMT", + "title": "HEXAGON<br>PERTEX QUANTUM Y AND GARMENTS IN QUILTED JERSEY", + "subtitle": "", + "body": "The hexagonal motif is explored in fleecewear garments - made in jersey padded in wadding - and in outerwear pieces in Pertex Quantum Y, quilted with an inner layer of PrimaLoft®.\r\n\r\nThis next generation technological performance fabric pairs extreme lightness with high strength and durability. The unique Y-shaped structure of the yarns provides a more stable construction of the material and an extremely fluid and smooth surface aspect.\r\n\r\naspect.
DWR (Durable Water Repellence) technology gives the fabric greater water-repellent properties that last over time.\r\n\r\nAPP EXCLUSIVE FROM 3/15 TO 3/21", + "link": "", + "store": "true", + "image": [ + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/35d803f0-2864-11e8-bdc7-dbb82265d0f0.jpg", + "width": "519", + "height": "691", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/35d19b50-2864-11e8-bdc7-dbb82265d0f0.jpg", + "width": "519", + "height": "691", + "caption": "" + } + ], + "__index": 58, + "dateCreated": "Thu, 15 Mar 2018 15:10:12 GMT" + }, + { + "id": "alligator-camo-preview-video", + "date": "Mon, 19 Mar 2018 12:00:00 GMT", + "title": "ALLIGATOR CAMO PREVIEW VIDEO", + "subtitle": "", + "body": "", + "link": "https://youtu.be/oxkXZvcX6nY", + "store": "false", + "image": [ + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/13b753b0-2b80-11e8-bdc7-dbb82265d0f0.jpg", + "width": "1267", + "height": "714", + "caption": "" + } + ], + "__index": 60, + "dateCreated": "Mon, 19 Mar 2018 14:16:34 GMT" + }, + { + "id": "alligator-camo-preview", + "date": "Mon, 19 Mar 2018 12:00:00 GMT", + "title": "ALLIGATOR CAMO PREVIEW", + "subtitle": "", + "body": "The ‘’alligator’’ camouflage motif, inspired by the Polish military files, is developed in all product families, with mix fabric monocromatic details.\r\nThe pattern has been hand painted, then photographed and printed with a series of techniques and 6 colors printing process: 5 pigment colors and 1 colored polyurethane with raised rubberized aspect.\r\nOuterwear pieces and bermudas are made in LIGHT COTTON-NYLON REP and LIGHT COTTON-NYLON TELA.\r\nThe theme is also applied to sweatshirts and t-shirts.\r\n\r\nEXCLUSIVELY AVAILABLE ON THE STONE ISLAND APP
FROM 3/22 TO 4/4", + "link": "", + "store": "false", + "image": [ + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/6ffed4e0-2b80-11e8-bdc7-dbb82265d0f0.jpg", + "width": "779", + "height": "1037", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/701b84a0-2b80-11e8-bdc7-dbb82265d0f0.jpg", + "width": "1000", + "height": "709", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/6f17d040-2b80-11e8-bdc7-dbb82265d0f0.jpg", + "width": "519", + "height": "691", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/713a8930-2b80-11e8-bdc7-dbb82265d0f0.jpg", + "width": "1128", + "height": "800", + "caption": "" + } + ], + "__index": 61, + "dateCreated": "Mon, 19 Mar 2018 14:19:06 GMT" + }, + { + "id": "membrana-3l-tc_stone-island-app-preview", + "date": "Thu, 05 Apr 2018 12:00:00 GMT", + "title": "Membrana 3L TC_Stone Island App Preview", + "subtitle": "", + "body": "Parka with fold-away hood in 3 layer light performance fabric made from an opaque nylon outer face laminated to a breathable, water resistant membrane, protected by an imperceptible polyester base. Garment dyed.\r\nThe addition of a special agent to the dye formula makes the piece anti-drop.\r\n\r\nAVAILABLE ON THE STONE ISLAND APP
FROM 4/5 TO 4/11", + "link": "", + "store": "false", + "image": [ + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/38ac44c0-38da-11e8-bedb-55eaec759d1d.jpg", + "width": "613", + "height": "800", + "caption": "" + } + ], + "__index": 62, + "dateCreated": "Thu, 05 Apr 2018 14:04:20 GMT" + }, + { + "id": "light-soft-shell-si-check-grid", + "date": "Thu, 12 Apr 2018 12:00:00 GMT", + "title": "LIGHT SOFT SHELL SI CHECK GRID", + "subtitle": "", + "body": "Light bomber jacket in Light Soft Shell, a 2.5 layer performance fabric. The polyester jersey-look outer face is laminated to a breathable, water and wind proof inner membrane, customized with the STONE ISLAND Check Grid print. The construction of the outer fabric bestows the garment with excellent flexibility and comfort.\r\n\r\nAVAILABLE ON THE STONE ISLAND APP
FROM 4/12 TO 4/18", + "link": "", + "store": "true", + "image": [ + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/14a6bad0-3e5a-11e8-bedb-55eaec759d1d.jpg", + "width": "1334", + "height": "1000", + "caption": "" + } + ], + "__index": 63, + "dateCreated": "Thu, 12 Apr 2018 14:02:07 GMT" + }, + { + "id": "stone-island-prototype-research_series-03-extreme-compacting-process-on-nylon-base", + "date": "Wed, 18 Apr 2018 12:00:00 GMT", + "title": "STONE ISLAND PROTOTYPE RESEARCH_SERIES 03 EXTREME COMPACTING PROCESS ON NYLON BASE", + "subtitle": "", + "body": "Stone Island continues it’s limited edition project, to give light to research themes that due to their complexity in experimentation have still not yet been industrialized. This is how unique projects with a limited number of garments come to life, created by innovative technologies with fabric and treatments still unreleased.\r\n\r\nEXTREME COMPACTING PROCESS ON NYLON BASE is made of a mix of 4 polyamide based canvas fabrics, with different weights, composition and shrinkage. \r\nThe finished piece is then treated with a complex dyeing process that colors, shrinks and compacts the materials to reproportion the aesthetics thanks to Stone Island’s expertise in pattern making and to the know-how of its color laboratory.\r\n\r\nOn sale in May.", + "link": "", + "store": "false", + "image": [ + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/b5372f60-431f-11e8-bedb-55eaec759d1d.jpg", + "width": "533", + "height": "347", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/b54ade70-431f-11e8-bedb-55eaec759d1d.jpg", + "width": "533", + "height": "347", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/b54fe780-431f-11e8-bedb-55eaec759d1d.jpg", + "width": "533", + "height": "347", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/b55788a0-431f-11e8-bedb-55eaec759d1d.jpg", + "width": "533", + "height": "347", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/b586aef0-431f-11e8-bedb-55eaec759d1d.jpg", + "width": "533", + "height": "347", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/b584b320-431f-11e8-bedb-55eaec759d1d.jpg", + "width": "533", + "height": "347", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/b5c73a60-431f-11e8-bedb-55eaec759d1d.jpg", + "width": "533", + "height": "347", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/b63899d0-431f-11e8-bedb-55eaec759d1d.jpg", + "width": "533", + "height": "347", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/b5f8d1b0-431f-11e8-bedb-55eaec759d1d.jpg", + "width": "533", + "height": "347", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/b63c4350-431f-11e8-bedb-55eaec759d1d.jpg", + "width": "533", + "height": "347", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/b601d260-431f-11e8-bedb-55eaec759d1d.jpg", + "width": "533", + "height": "347", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/b60f3fe0-431f-11e8-bedb-55eaec759d1d.jpg", + "width": "533", + "height": "347", + "caption": "" + } + ], + "__index": 64, + "dateCreated": "Wed, 18 Apr 2018 15:49:03 GMT" + }, + { + "id": "ss_-018-collection-salmon", + "date": "Thu, 03 May 2018 12:00:00 GMT", + "title": "SS_ '018 COLLECTION: SALMON", + "subtitle": "", + "body": "The color card includes pastel tones like salmon, developed in different garments.\r\n\r\n
G0124_ Vest in an ultra-light nylon fabric and filled with the finest feathers, specifically treated to withstand the garment-dyeing process.
\r\n\r\n106WN_Long sleeve shirt in brushed cotton tela and garment dyed to create the OLD effect.
\r\n\r\n1023_Bomber jacket in 3 layer light performance fabric.
\r\n\r\nAVAILABLE ON THE STONE ISLAND APP
FROM 5/3 TO - 5/9", + "link": "", + "store": "true", + "image": [ + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/8440e550-4edb-11e8-8a6b-3521187b68ec.jpg", + "width": "750", + "height": "1000", + "caption": "" + } + ], + "__index": 65, + "dateCreated": "Thu, 03 May 2018 14:08:59 GMT" + }, + { + "id": "prototype-research_series-03-preview-br-limited-edition-numbered-01-to-100", + "date": "Tue, 08 May 2018 12:00:00 GMT", + "title": "PROTOTYPE RESEARCH_SERIES 03 PREVIEW <br>LIMITED EDITION - NUMBERED 01 TO 100", + "subtitle": "", + "body": "The Prototype Series are limited native editions created by Stone Island to give light to research that, given their complexity of experimentation, are not yet industrializable.\r\n Unique projects of a few numbered items made with innovative technologies, in new fabrics and treatments.\r\n\r\nSERIES 03_EXTREME COMPACTING PROCESS ON NYLON BASE is a jumpsuit made of a mix of 4 polyamide based canvas fabrics, with different weights, compositions and shrinkages. \r\nThe finished piece is then treated with a complex high temperature dyeing process that colors, shrinks and compacts the materials from 0 to over 25%, re-proportioning the aesthetics thanks to Stone Island’s expertise in pattern making and to the know-how of its color laboratory. \r\nThe different reactions to the treatment characterizes the hand and the appearance of all fabrics used for the garment.\r\nThe addition of a special agent to the dye formula makes the piece anti-drop.\r\n\r\nJumpsuit composed of a jacket and pants joined by a zip at waist - also wearable separately - loosely inspired by a Soviet pilot suit. On the front and on the back legs, large set up with two crossing drawstrings, to tighten the piece. Big embroidery of the Stone Island Compass logo on the back. Jacket with standing collar closed by asymmetrical zip. Pants with two patch pockets closed by hidden snaps.\r\n\r\nExclusively available online starting from Thursday, May 10 starting from 10am EST:\r\n\r\n- stoneisland.com\r\n- stoneisland.co.uk, for the United Kingdom\r\n- Stone Island App, for United States and Canada", + "link": "", + "store": "false", + "image": [ + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/265da8a0-52c4-11e8-8a6b-3521187b68ec.jpg", + "width": "770", + "height": "468", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/2650b050-52c4-11e8-8a6b-3521187b68ec.jpg", + "width": "770", + "height": "468", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/266c9cc0-52c4-11e8-8a6b-3521187b68ec.jpg", + "width": "770", + "height": "468", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/26bdca00-52c4-11e8-8a6b-3521187b68ec.jpg", + "width": "770", + "height": "468", + "caption": "" + } + ], + "__index": 67, + "dateCreated": "Tue, 08 May 2018 13:34:23 GMT" + }, + { + "id": "prototype-research_series-03_video", + "date": "Tue, 08 May 2018 12:00:00 GMT", + "title": "Prototype Research_Series 03_Video", + "subtitle": "", + "body": "WATCH THE VIDEO", + "link": "https://www.youtube.com/watch?v=nHPGM0gYVsM", + "store": "false", + "__index": 68, + "dateCreated": "Thu, 10 May 2018 16:58:47 GMT", + "image": [] + }, + { + "id": "fall-winter_-018-019-icon-imagery", + "date": "Thu, 07 Jun 2018 12:00:00 GMT", + "title": "FALL WINTER_'018 '019 ICON IMAGERY", + "subtitle": "", + "body": "", + "link": "", + "store": "false", + "image": [ + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/28b00250-6a58-11e8-8a6b-3521187b68ec.jpg", + "width": "800", + "height": "1200", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/266bdeb0-6a58-11e8-8a6b-3521187b68ec.jpg", + "width": "800", + "height": "1200", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/23ae9370-6a58-11e8-8a6b-3521187b68ec.jpg", + "width": "800", + "height": "1200", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/219c7c50-6a58-11e8-8a6b-3521187b68ec.jpg", + "width": "800", + "height": "1200", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/1e6ce740-6a58-11e8-8a6b-3521187b68ec.jpg", + "width": "800", + "height": "1200", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/1bb938f0-6a58-11e8-8a6b-3521187b68ec.jpg", + "width": "800", + "height": "1200", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/1942e1c0-6a58-11e8-8a6b-3521187b68ec.jpg", + "width": "800", + "height": "1200", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/16793a70-6a58-11e8-8a6b-3521187b68ec.jpg", + "width": "800", + "height": "1200", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/138aa600-6a58-11e8-8a6b-3521187b68ec.jpg", + "width": "800", + "height": "1200", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/10bae430-6a58-11e8-8a6b-3521187b68ec.jpg", + "width": "800", + "height": "1200", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/0dbf5770-6a58-11e8-8a6b-3521187b68ec.jpg", + "width": "800", + "height": "1200", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/094f0500-6a58-11e8-8a6b-3521187b68ec.jpg", + "width": "800", + "height": "1200", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/06670040-6a58-11e8-8a6b-3521187b68ec.jpg", + "width": "800", + "height": "1200", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/04363d90-6a58-11e8-8a6b-3521187b68ec.jpg", + "width": "800", + "height": "1200", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/00ca14b0-6a58-11e8-8a6b-3521187b68ec.jpg", + "width": "800", + "height": "1200", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/fe1f8e20-6a57-11e8-8a6b-3521187b68ec.jpg", + "width": "800", + "height": "1200", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/fb9f4be0-6a57-11e8-8a6b-3521187b68ec.jpg", + "width": "800", + "height": "1200", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/f93a80e0-6a57-11e8-8a6b-3521187b68ec.jpg", + "width": "800", + "height": "1200", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/f6e630a0-6a57-11e8-8a6b-3521187b68ec.jpg", + "width": "800", + "height": "1200", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/f3f663b0-6a57-11e8-8a6b-3521187b68ec.jpg", + "width": "800", + "height": "1200", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/f19409b0-6a57-11e8-8a6b-3521187b68ec.jpg", + "width": "800", + "height": "1200", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/edb19f60-6a57-11e8-8a6b-3521187b68ec.jpg", + "width": "800", + "height": "1200", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/ea2e1df0-6a57-11e8-8a6b-3521187b68ec.jpg", + "width": "800", + "height": "1200", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/e76cdb10-6a57-11e8-8a6b-3521187b68ec.jpg", + "width": "800", + "height": "1200", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/e4d6c6e0-6a57-11e8-8a6b-3521187b68ec.jpg", + "width": "800", + "height": "1200", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/e303dba0-6a57-11e8-8a6b-3521187b68ec.jpg", + "width": "800", + "height": "1200", + "caption": "" + } + ], + "__index": 69, + "dateCreated": "Thu, 07 Jun 2018 13:47:16 GMT" + }, + { + "id": "fall-winter_-018-019", + "date": "Thu, 07 Jun 2018 12:00:00 GMT", + "title": "FALL WINTER_'018 '019", + "subtitle": "", + "body": "For Fall Winter '018 '019 Stone Island investigates the concept of INDUSTRIAL STRENGTH, generating product types with different aesthetics but with the same design intent.\r\nEven the color chart reflects the industrial aspect with tonal interpretations that are full, dusty or metallic: magenta, olive green and mustard, black, grey and charcoal.\r\n\r\nFALL WINTER COLLECTION PREVIEW \r\nON STONE ISLAND APP\r\nFROM 6/7 TO 6/13", + "link": "", + "store": "false", + "image": [ + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/706ada30-6a57-11e8-8a6b-3521187b68ec.jpg", + "width": "1600", + "height": "850", + "caption": "" + } + ], + "__index": 70, + "dateCreated": "Thu, 07 Jun 2018 13:47:21 GMT" + }, + { + "id": "reflective-tape", + "date": "Mon, 18 Jun 2018 12:00:00 GMT", + "title": "REFLECTIVE TAPE", + "subtitle": "", + "body": "Grey reflective transfers and applications, inspired by the Stone Island archive, are developed in all product categories.
\r\n\r\nJackets and over shirts are made in Cotton Metal, a fabric that achieves a distinct iridescent color through garment dyeing. \r\n\r\nThe Reflective Tape concept is also explored in the sweatshirts in lightweight brushed cotton, t-shirts in jersey and jogging pants in lightweight brushed cotton fleece.\r\n\r\nAVAILABLE ON THE STONE ISLAND APP\r\n
FROM 6/18 TO 6/25", + "link": "", + "store": "false", + "image": [ + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/05938bb0-7300-11e8-8a6b-3521187b68ec.jpg", + "width": "519", + "height": "692", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/02e90520-7300-11e8-8a6b-3521187b68ec.jpg", + "width": "583", + "height": "827", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/ffc1d480-72ff-11e8-8a6b-3521187b68ec.jpg", + "width": "420", + "height": "595", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/f77e32f0-72ff-11e8-8a6b-3521187b68ec.jpg", + "width": "397", + "height": "595", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/f4b2b6e0-72ff-11e8-8a6b-3521187b68ec.jpg", + "width": "397", + "height": "595", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/f352ffd0-72ff-11e8-8a6b-3521187b68ec.jpg", + "width": "1000", + "height": "563", + "caption": "" + } + ], + "__index": 71, + "dateCreated": "Mon, 18 Jun 2018 14:17:05 GMT" + }, + { + "id": "6915-stone-island-fall-winter_-018-019-collection-video", + "date": "Tue, 26 Jun 2018 12:00:00 GMT", + "title": "6915 STONE ISLAND FALL WINTER_'018 '019 COLLECTION VIDEO", + "subtitle": "", + "body": "WATCH THE VIDEO", + "link": "https://www.youtube.com/watch?v=NuQqMLvbHRo&t=6s", + "store": "false", + "image": [ + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/bb7dc4d0-794b-11e8-8a6b-3521187b68ec.jpg", + "width": "1000", + "height": "563", + "caption": "" + } + ], + "__index": 72, + "dateCreated": "Tue, 26 Jun 2018 14:19:04 GMT" + }, + { + "id": "lookbook-fall-winter_-018-019", + "date": "Thu, 12 Jul 2018 12:00:00 GMT", + "title": "LOOKBOOK FALL WINTER_'018 '019", + "subtitle": "", + "body": "", + "link": "", + "store": "false", + "image": [ + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/aa55ae60-85ef-11e8-8a6b-3521187b68ec.jpg", + "width": "400", + "height": "600", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/a84ebad0-85ef-11e8-8a6b-3521187b68ec.jpg", + "width": "400", + "height": "600", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/a5e4bfb0-85ef-11e8-8a6b-3521187b68ec.jpg", + "width": "400", + "height": "600", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/a38b1840-85ef-11e8-8a6b-3521187b68ec.jpg", + "width": "400", + "height": "600", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/a1485430-85ef-11e8-8a6b-3521187b68ec.jpg", + "width": "400", + "height": "600", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/9f627d30-85ef-11e8-8a6b-3521187b68ec.jpg", + "width": "400", + "height": "600", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/9d3d2c30-85ef-11e8-8a6b-3521187b68ec.jpg", + "width": "400", + "height": "600", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/9b147fd0-85ef-11e8-8a6b-3521187b68ec.jpg", + "width": "400", + "height": "600", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/985ade10-85ef-11e8-8a6b-3521187b68ec.jpg", + "width": "400", + "height": "600", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/9435ec80-85ef-11e8-8a6b-3521187b68ec.jpg", + "width": "400", + "height": "600", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/9210c290-85ef-11e8-8a6b-3521187b68ec.jpg", + "width": "400", + "height": "600", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/8fd37cc0-85ef-11e8-8a6b-3521187b68ec.jpg", + "width": "400", + "height": "600", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/8d9ee980-85ef-11e8-8a6b-3521187b68ec.jpg", + "width": "400", + "height": "600", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/8b454210-85ef-11e8-8a6b-3521187b68ec.jpg", + "width": "400", + "height": "600", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/891a4bc0-85ef-11e8-8a6b-3521187b68ec.jpg", + "width": "400", + "height": "600", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/86bd48f0-85ef-11e8-8a6b-3521187b68ec.jpg", + "width": "400", + "height": "600", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/83986240-85ef-11e8-8a6b-3521187b68ec.jpg", + "width": "400", + "height": "600", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/81ba5370-85ef-11e8-8a6b-3521187b68ec.jpg", + "width": "400", + "height": "600", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/7e7a91c0-85ef-11e8-8a6b-3521187b68ec.jpg", + "width": "400", + "height": "600", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/7c86d810-85ef-11e8-8a6b-3521187b68ec.jpg", + "width": "400", + "height": "600", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/7acc7de0-85ef-11e8-8a6b-3521187b68ec.jpg", + "width": "400", + "height": "600", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/781f8650-85ef-11e8-8a6b-3521187b68ec.jpg", + "width": "400", + "height": "600", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/738ba650-85ef-11e8-8a6b-3521187b68ec.jpg", + "width": "400", + "height": "600", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/7137f250-85ef-11e8-8a6b-3521187b68ec.jpg", + "width": "400", + "height": "600", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/6f6e07c0-85ef-11e8-8a6b-3521187b68ec.jpg", + "width": "400", + "height": "600", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/6d9cf140-85ef-11e8-8a6b-3521187b68ec.jpg", + "width": "400", + "height": "600", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/6b2b2df0-85ef-11e8-8a6b-3521187b68ec.jpg", + "width": "400", + "height": "600", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/68fb55a0-85ef-11e8-8a6b-3521187b68ec.jpg", + "width": "400", + "height": "600", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/64d63d00-85ef-11e8-8a6b-3521187b68ec.jpg", + "width": "400", + "height": "600", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/5f69fe60-85ef-11e8-8a6b-3521187b68ec.jpg", + "width": "400", + "height": "600", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/5cc19ab0-85ef-11e8-8a6b-3521187b68ec.jpg", + "width": "400", + "height": "600", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/59850d50-85ef-11e8-8a6b-3521187b68ec.jpg", + "width": "400", + "height": "600", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/56bc5060-85ef-11e8-8a6b-3521187b68ec.jpg", + "width": "400", + "height": "600", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/54756da0-85ef-11e8-8a6b-3521187b68ec.jpg", + "width": "400", + "height": "600", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/51aa66c0-85ef-11e8-8a6b-3521187b68ec.jpg", + "width": "400", + "height": "600", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/4ea7d520-85ef-11e8-8a6b-3521187b68ec.jpg", + "width": "400", + "height": "600", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/488b8060-85ef-11e8-8a6b-3521187b68ec.jpg", + "width": "400", + "height": "600", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/45c55b80-85ef-11e8-8a6b-3521187b68ec.jpg", + "width": "400", + "height": "600", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/40892d90-85ef-11e8-8a6b-3521187b68ec.jpg", + "width": "400", + "height": "600", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/3e2d3c30-85ef-11e8-8a6b-3521187b68ec.jpg", + "width": "400", + "height": "600", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/3bcdef70-85ef-11e8-8a6b-3521187b68ec.jpg", + "width": "400", + "height": "600", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/396776c0-85ef-11e8-8a6b-3521187b68ec.jpg", + "width": "400", + "height": "600", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/369fa430-85ef-11e8-8a6b-3521187b68ec.jpg", + "width": "400", + "height": "600", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/33d894f0-85ef-11e8-8a6b-3521187b68ec.jpg", + "width": "400", + "height": "600", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/31e5c5a0-85ef-11e8-8a6b-3521187b68ec.jpg", + "width": "400", + "height": "600", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/2f280530-85ef-11e8-8a6b-3521187b68ec.jpg", + "width": "400", + "height": "600", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/2c363c70-85ef-11e8-8a6b-3521187b68ec.jpg", + "width": "400", + "height": "600", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/2a236200-85ef-11e8-8a6b-3521187b68ec.jpg", + "width": "400", + "height": "600", + "caption": "" + } + ], + "__index": 73, + "dateCreated": "Thu, 12 Jul 2018 16:22:14 GMT" + }, + { + "id": "man-made-suede_video", + "date": "Wed, 17 Oct 2018 12:00:00 GMT", + "title": "MAN MADE SUEDE_Video", + "subtitle": "", + "body": "WATCH THE VIDEO", + "link": "https://youtu.be/ZZRTWjo008Q", + "store": "true", + "image": [ + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/020cd180-d2dd-11e8-8a6b-3521187b68ec.jpg", + "width": "1000", + "height": "564", + "caption": "" + } + ], + "__index": 74, + "dateCreated": "Thu, 18 Oct 2018 13:59:48 GMT" + }, + { + "id": "man-made-suede", + "date": "Thu, 18 Oct 2018 12:00:00 GMT", + "title": "MAN MADE SUEDE", + "subtitle": "", + "body": "Stone Island succeeds, for the first time in history, in dignifying a coagulated material through garment dyeing.\r\nGarments are made through an elaborate industrial process applied to a non-woven, nylon microfiber and polyurethane resin and then coagulated.\r\nThe result is a substrate which is lightened, through washes, dissolving the polyethylene component. The material is then treated to achieve the final suede aspect.", + "link": "", + "store": "true", + "image": [ + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/368c4d50-d2dd-11e8-8a6b-3521187b68ec.jpg", + "width": "580", + "height": "813", + "caption": "" + } + ], + "__index": 75, + "dateCreated": "Thu, 18 Oct 2018 13:59:51 GMT" + }, + { + "id": "stone-island-harris-tweed-with-polymorphic-ice-limited-edition", + "date": "Mon, 22 Oct 2018 12:00:00 GMT", + "title": "STONE ISLAND / HARRIS TWEED WITH POLYMORPHIC ICE LIMITED EDITION", + "subtitle": "", + "body": "Jacket made of two special and iconic materials deriving from the color experimentation at the base of Harris Tweed and Stone Island's DNA.\r\n\r\nHarris Tweed is the most iconic of all tweeds. From the collaboration with Stone Island is born the development of an exclusive tweed which consists of dyeing 8 different colors of wool, spun together into a single yarn and then woven into a twill base.\r\n\r\nThe detachable hood and pockets are in Polymorphic Ice, a new heat-sensitive coating on a cotton base
developed by Stone Island especially for this project with the goal to replicate the hypothetical colors of specifically spun and woven tweed.\r\n\r\nThe garment is focused on the concept of interchangeability: the outer shell comes with a zipper system that allows the chest pockets placed on the detachable liner to be worn also on the tweed outer shell.", + "link": "", + "store": "false", + "image": [ + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/c4076780-d5fa-11e8-8a6b-3521187b68ec.jpg", + "width": "552", + "height": "720", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/c3e364c0-d5fa-11e8-8a6b-3521187b68ec.jpg", + "width": "552", + "height": "720", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/c3f51800-d5fa-11e8-8a6b-3521187b68ec.jpg", + "width": "552", + "height": "720", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/c4082ad0-d5fa-11e8-8a6b-3521187b68ec.jpg", + "width": "552", + "height": "720", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/c3af3560-d5fa-11e8-8a6b-3521187b68ec.jpg", + "width": "552", + "height": "720", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/c4d45470-d5fa-11e8-8a6b-3521187b68ec.jpg", + "width": "509", + "height": "720", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/c4ac3300-d5fa-11e8-8a6b-3521187b68ec.jpg", + "width": "509", + "height": "720", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/c4b69340-d5fa-11e8-8a6b-3521187b68ec.jpg", + "width": "509", + "height": "720", + "caption": "" + } + ], + "__index": 76, + "dateCreated": "Mon, 22 Oct 2018 13:05:50 GMT" + }, + { + "id": "lino-resinato-tc_-stone-island-app-preview", + "date": "Thu, 08 Nov 2018 12:00:00 GMT", + "title": "Lino Resinato-TC_ Stone Island App Preview", + "subtitle": "", + "body": "Garments made in Lino Resinato, a linen canvas soaked in a lightweight polyurethane resin, padded in down or quilted to an inner wadding substrate.\r\n\r\nGarment dyed with special dye recipes. The resin partially retains the color for a final chalky/pastel effect of the material.\r\n\r\nAVAILABLE ON STONE ISLAND APP FROM 11/8 TO 11/14 ", + "link": "", + "store": "false", + "image": [ + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/17113360-e367-11e8-8a6b-3521187b68ec.jpg", + "width": "767", + "height": "1000", + "caption": "" + } + ], + "__index": 78, + "dateCreated": "Thu, 08 Nov 2018 15:00:58 GMT" + }, + { + "id": "david-tc-br-with-primaloft-insulation-technology", + "date": "Thu, 15 Nov 2018 12:00:00 GMT", + "title": "DAVID-TC<br>WITH PRIMALOFT® INSULATION TECHNOLOGY", + "subtitle": "", + "body": "Hooded anorak and large pouch pocket padded with a PrimaLoft® layer, for an outstanding insulation capacity.\r\n\r\nBeginning with a star-shaped polyester / polyamide substrate, garments in David-TC are sewn and then simultaneously garment dyed and treated with an anti-drop agent. During the dye process, under pressure at 130°C, the fabric undergoes heat-induced compression achieving a truly unique tactile experience; both industrial and luxurious at once.\r\n\r\nAVAILABLE ON STONE ISLAND APP\r\nFROM 11/15 TO 11/21 ", + "link": "", + "store": "false", + "image": [ + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/5c72ffd0-e8e7-11e8-8a6b-3521187b68ec.jpg", + "width": "583", + "height": "827", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/5c553ea0-e8e7-11e8-8a6b-3521187b68ec.jpg", + "width": "519", + "height": "692", + "caption": "" + } + ], + "__index": 79, + "dateCreated": "Thu, 15 Nov 2018 15:01:44 GMT" + }, + { + "id": "spring-summer_-019-icon-imagery", + "date": "Tue, 11 Dec 2018 12:00:00 GMT", + "title": "SPRING SUMMER_'019 ICON IMAGERY", + "subtitle": "", + "body": "", + "link": "", + "store": "false", + "image": [ + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/21d13480-fe1f-11e8-8a6b-3521187b68ec.jpg", + "width": "400", + "height": "600", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/200dd9a0-fe1f-11e8-8a6b-3521187b68ec.jpg", + "width": "400", + "height": "600", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/1deca750-fe1f-11e8-8a6b-3521187b68ec.jpg", + "width": "400", + "height": "600", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/1be42d20-fe1f-11e8-8a6b-3521187b68ec.jpg", + "width": "400", + "height": "600", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/1a56fd70-fe1f-11e8-8a6b-3521187b68ec.jpg", + "width": "400", + "height": "600", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/188375f0-fe1f-11e8-8a6b-3521187b68ec.jpg", + "width": "400", + "height": "600", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/16cb8cc0-fe1f-11e8-8a6b-3521187b68ec.jpg", + "width": "400", + "height": "600", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/14d3b460-fe1f-11e8-8a6b-3521187b68ec.jpg", + "width": "400", + "height": "600", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/131cdca0-fe1f-11e8-8a6b-3521187b68ec.jpg", + "width": "400", + "height": "600", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/11759540-fe1f-11e8-8a6b-3521187b68ec.jpg", + "width": "400", + "height": "600", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/0fb324c0-fe1f-11e8-8a6b-3521187b68ec.jpg", + "width": "400", + "height": "600", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/0e1b46b0-fe1f-11e8-8a6b-3521187b68ec.jpg", + "width": "400", + "height": "600", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/0c99d6d0-fe1f-11e8-8a6b-3521187b68ec.jpg", + "width": "400", + "height": "600", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/0b1d21e0-fe1f-11e8-8a6b-3521187b68ec.jpg", + "width": "400", + "height": "600", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/08638020-fe1f-11e8-8a6b-3521187b68ec.jpg", + "width": "400", + "height": "600", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/0613c3c0-fe1f-11e8-8a6b-3521187b68ec.jpg", + "width": "400", + "height": "600", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/03121c80-fe1f-11e8-8a6b-3521187b68ec.jpg", + "width": "400", + "height": "600", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/00c08b60-fe1f-11e8-8a6b-3521187b68ec.jpg", + "width": "400", + "height": "600", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/fe254710-fe1e-11e8-8a6b-3521187b68ec.jpg", + "width": "400", + "height": "600", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/f9eec950-fe1e-11e8-8a6b-3521187b68ec.jpg", + "width": "400", + "height": "600", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/f6c61210-fe1e-11e8-8a6b-3521187b68ec.jpg", + "width": "400", + "height": "600", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/f4687300-fe1e-11e8-8a6b-3521187b68ec.jpg", + "width": "400", + "height": "600", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/f258a5d0-fe1e-11e8-8a6b-3521187b68ec.jpg", + "width": "400", + "height": "600", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/f028a670-fe1e-11e8-8a6b-3521187b68ec.jpg", + "width": "400", + "height": "600", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/edd71550-fe1e-11e8-8a6b-3521187b68ec.jpg", + "width": "400", + "height": "600", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/eb72e690-fe1e-11e8-8a6b-3521187b68ec.jpg", + "width": "400", + "height": "600", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/e527b9a0-fe1e-11e8-8a6b-3521187b68ec.jpg", + "width": "400", + "height": "600", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/dff96e60-fe1e-11e8-8a6b-3521187b68ec.jpg", + "width": "400", + "height": "600", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/ddefbbb0-fe1e-11e8-8a6b-3521187b68ec.jpg", + "width": "400", + "height": "600", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/daf73c30-fe1e-11e8-8a6b-3521187b68ec.jpg", + "width": "400", + "height": "600", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/d8ab0240-fe1e-11e8-8a6b-3521187b68ec.jpg", + "width": "400", + "height": "600", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/d684c6e0-fe1e-11e8-8a6b-3521187b68ec.jpg", + "width": "400", + "height": "600", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/d3793490-fe1e-11e8-8a6b-3521187b68ec.jpg", + "width": "400", + "height": "600", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/d044bd80-fe1e-11e8-8a6b-3521187b68ec.jpg", + "width": "400", + "height": "600", + "caption": "" + } + ], + "__index": 80, + "dateCreated": "Wed, 12 Dec 2018 15:04:37 GMT" + }, + { + "id": "spring-summer_-019", + "date": "Wed, 12 Dec 2018 12:00:00 GMT", + "title": "SPRING SUMMER_'019", + "subtitle": "", + "body": "The Stone Island Spring Summer '019 collection repeats and evolves the concept of INDUSTRIAL STRENGTH: mixed textures and fabrics as well as essential lines derived from workwear archetypes reflect the functionality of the garments. The color palette is a mix of sophisticated deep colors and bright accents with a touch of fluo orange: brick, lemon, stucco, sage green, lavender and periwinkle.\r\n\r\nSPRING SUMMER COLLECTION PREVIEW ON STONE ISLAND APP FROM 12/12 TO 12/18", + "link": "", + "store": "false", + "image": [ + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/4cd4b5d0-fe1f-11e8-8a6b-3521187b68ec.jpg", + "width": "613", + "height": "800", + "caption": "" + } + ], + "__index": 81, + "dateCreated": "Wed, 12 Dec 2018 15:05:06 GMT" + }, + { + "id": "7015-stone-island-spring-summer_-019-collection-video", + "date": "Thu, 10 Jan 2019 12:00:00 GMT", + "title": "7015 STONE ISLAND SPRING SUMMER_'019 COLLECTION VIDEO", + "subtitle": "", + "body": "WATCH THE VIDEO", + "link": "https://www.youtube.com/watch?v=YL3HoZxboHc&t=20s", + "store": "false", + "image": [ + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/ac299b00-14fd-11e9-8a6b-3521187b68ec.jpg", + "width": "1600", + "height": "900", + "caption": "" + } + ], + "__index": 82, + "dateCreated": "Thu, 10 Jan 2019 17:32:33 GMT" + }, + { + "id": "ss_-019-ribbed-b-color-knitwear_stone-island-app-preview", + "date": "Thu, 17 Jan 2019 12:00:00 GMT", + "title": "SS_'019 Ribbed b-color Knitwear_Stone Island App Preview", + "subtitle": "", + "body": "Ribbed knits in two-tone cotton and mixed stitches that create depth and mélange effects.\r\nSingle color insert on the arm, with Stone Island Compass logo embroidery.\r\n\r\nAVAILABLE ON THE STONE ISLAND APP
FROM 1/17 TO 1/23", + "link": "", + "store": "true", + "image": [ + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/17262e90-1a68-11e9-8a6b-3521187b68ec.jpg", + "width": "374", + "height": "528", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/1719f990-1a68-11e9-8a6b-3521187b68ec.jpg", + "width": "374", + "height": "528", + "caption": "" + } + ], + "__index": 83, + "dateCreated": "Thu, 17 Jan 2019 14:58:31 GMT" + }, + { + "id": "garment-dyed-quilted-micro-yarn_stone-island-app-preview", + "date": "Tue, 29 Jan 2019 12:00:00 GMT", + "title": "Garment Dyed Quilted Micro Yarn_Stone Island App Preview", + "subtitle": "", + "body": "Outerwear pieces, quilted to a wadding substrate, in a 10 deniers calendered fabric made by nylon microfilaments with a ripstop construction, treated with an invisible finishing. Garment dyed with special color recipes with the addition of an anti-drop finish.\r\n\r\nThe set is completed by a cape with a large Stone Island Compass embroidery on the back.\r\n\r\nAVAILABLE ON THE STONE ISLAND APP
FROM 1/29 TO 2/4", + "link": "", + "store": "false", + "image": [ + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/de2a04e0-23d6-11e9-8a6b-3521187b68ec.jpg", + "width": "559", + "height": "729", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/de5867e0-23d6-11e9-8a6b-3521187b68ec.jpg", + "width": "745", + "height": "994", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/de542220-23d6-11e9-8a6b-3521187b68ec.jpg", + "width": "745", + "height": "994", + "caption": "" + } + ], + "__index": 84, + "dateCreated": "Tue, 29 Jan 2019 15:03:15 GMT" + }, + { + "id": "stone-island-porter-co-lab_app-preview", + "date": "Thu, 14 Feb 2019 12:00:00 GMT", + "title": "Stone Island / Porter® co-lab_App Preview", + "subtitle": "", + "body": "Bumbag, backpack and duffle bag in Man Made Suede, a non-woven fabric, developed by Stone Island, made with nylon microfibers and polyurethane resins engineered through a complex industrial process, impregnated with resins and coagulated. The material is then treated to achieve the final suede aspect.\r\n\r\nThree models made in Japan by Porter®, dyed by Stone Island in Italy with the specific textile dyeing and ennobling technology recently engineered.\r\n\r\nLaser print of the Stone Island Compass logo, made on the finished product.\r\n\r\nAVAILABLE ON THE STONE ISLAND APP FROM\r\n02/14 TO 02/20", + "link": "", + "store": "true", + "image": [ + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/5ea132c0-306a-11e9-8a6b-3521187b68ec.jpg", + "width": "580", + "height": "813", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/5ea06f70-306a-11e9-8a6b-3521187b68ec.jpg", + "width": "580", + "height": "813", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/5e9db050-306a-11e9-8a6b-3521187b68ec.jpg", + "width": "580", + "height": "813", + "caption": "" + } + ], + "__index": 85, + "dateCreated": "Thu, 14 Feb 2019 15:08:32 GMT" + }, + { + "id": "shoulder-patch-fleece_stone-island-app-preview", + "date": "Thu, 21 Feb 2019 12:00:00 GMT", + "title": "Shoulder Patch Fleece_Stone Island App Preview", + "subtitle": "", + "body": "Cotton fleece with seasonal details. Over stitched fabric covered with patches applied on shoulders, elbows and above the wrists. Garment dyed.\r\n\r\nAVAILABLE ON STONE ISLAND APP
FROM 2/21 TO 2/27", + "link": "", + "store": "false", + "image": [ + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/0df2aa50-35e9-11e9-8a6b-3521187b68ec.jpg", + "width": "559", + "height": "729", + "caption": "" + } + ], + "__index": 86, + "dateCreated": "Thu, 21 Feb 2019 14:58:31 GMT" + }, + { + "id": "stone-island-ss_-019-david-fluo_app-preview", + "date": "Thu, 21 Mar 2019 12:00:00 GMT", + "title": "Stone Island SS_'019 David Fluo_App Preview", + "subtitle": "", + "body": "Fluo orange, among seasonal colors, gets different shades and intensity according to materials and treatments.\r\n\r\n44548_DAVID FLUO\r\n
AVAILABLE ON THE STONE ISLAND APP\r\nFROM 3/21 TO 3/27", + "link": "", + "store": "false", + "image": [ + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/7f12ea40-4be9-11e9-8a6b-3521187b68ec.jpg", + "width": "580", + "height": "813", + "caption": "" + } + ], + "__index": 87, + "dateCreated": "Thu, 21 Mar 2019 14:57:41 GMT" + }, + { + "id": "lino-resinato-tc_stone-island-app-preview", + "date": "Tue, 02 Apr 2019 12:00:00 GMT", + "title": "Lino Resinato-TC_Stone Island App Preview", + "subtitle": "", + "body": "Outerwear pieces in Lino Resinato, a linen canvas soaked in a lightweight polyurethane resin.\r\n\r\nGarment dyed with special dye recipes, with the addition of an anti-drop agent. The resin partially retains the color for a final chalky/pastel effect of the material.\r\n\r\nAVAILABLE ON THE STONE ISLAND APP UNTIL 4/8", + "link": "", + "store": "false", + "image": [ + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/42fddf10-551c-11e9-8a6b-3521187b68ec.jpg", + "width": "559", + "height": "729", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/43029a00-551c-11e9-8a6b-3521187b68ec.jpg", + "width": "559", + "height": "729", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/42f70140-551c-11e9-8a6b-3521187b68ec.jpg", + "width": "559", + "height": "729", + "caption": "" + } + ], + "__index": 88, + "dateCreated": "Tue, 02 Apr 2019 14:03:51 GMT" + }, + { + "id": "canvas-placcato_stone-island-app-preview", + "date": "Tue, 16 Apr 2019 12:00:00 GMT", + "title": "Canvas Placcato_Stone Island App Preview", + "subtitle": "", + "body": "Outerwear pieces, shirts, pants and accessories made in cotton canvas impregnated with special pigmented resins. Thanks to the finished garment over dye procedure the outer face takes on a chalky/mélange appearance, while the interior and textile parts are fully colored by the dye recipe.\r\nMalfilé cotton fleece wear feature Tela Placcata appliqués.\r\nThe concept is also developed with polos and T-shirts made in jersey cotton, Bermuda shorts in Nylon Metal, plated all over in two different color intensities with placed prints.\r\n\r\n24436_JERSEY PLACCATO\r\n63665_FELPA PLACCATA\r\n
AVAILABLE ON THE STONE ISLAND APP UNTIL 4/22", + "link": "", + "store": "false", + "image": [ + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/7e1b7690-6050-11e9-8a6b-3521187b68ec.jpg", + "width": "580", + "height": "813", + "caption": "" + } + ], + "__index": 89, + "dateCreated": "Tue, 16 Apr 2019 14:04:20 GMT" + }, + { + "id": "stone-island-marina_app-preview", + "date": "Tue, 23 Apr 2019 12:00:00 GMT", + "title": "Stone Island Marina_App Preview", + "subtitle": "", + "body": "For SS_'019 Stone Island presents garments with a mix of archive-inspired striped sections and full prints.\r\n\r\nT-shirts and fleeces with a vertical or horizontal striped print are characterized by a red Stone Island star embroidered on the chest.\r\n\r\nAn additional element is given by a print of the Stone Island Marina wording on the back.\r\n\r\n644X6_STONE ISLAND MARINA\r\n661X5_STONE ISLAND MARINA\r\n\r\nAVAILABLE ON THE STONE ISLAND APP UNTIL 4/29", + "link": "", + "store": "false", + "image": [ + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/fcfa5290-65cf-11e9-8a6b-3521187b68ec.jpg", + "width": "519", + "height": "692", + "caption": "" + } + ], + "__index": 90, + "dateCreated": "Tue, 23 Apr 2019 13:59:21 GMT" + }, + { + "id": "stone-island-marina_app-preview-video", + "date": "Tue, 23 Apr 2019 12:00:00 GMT", + "title": "Stone Island Marina_App Preview Video", + "subtitle": "", + "body": "", + "link": "https://www.youtube.com/watch?v=13y1dB1bnGY", + "store": "true", + "image": [ + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/b20c8a40-65d0-11e9-8a6b-3521187b68ec.png", + "width": "1280", + "height": "631", + "caption": "" + } + ], + "__index": 91, + "dateCreated": "Tue, 23 Apr 2019 14:04:34 GMT" + }, + { + "id": "reflective-sweatshirt_stone-island-app-preview", + "date": "Tue, 30 Apr 2019 12:00:00 GMT", + "title": "Reflective Sweatshirt_Stone Island App Preview", + "subtitle": "", + "body": "Sweatshirts in stretch nylon jersey with a highly reflective coating made with thousands of glass microspheres in a resin bath.\r\nThe finished garments are dyed with special recipes that color the fabric parts while respecting the reflective surface.\r\n\r\n61854_REFLECTIVE SWEATSHIRT\r\nAVAILABLE ON THE STONE ISLAND APP UNTIL 5/6", + "link": "", + "store": "false", + "image": [ + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/8cff0630-6b50-11e9-8a6b-3521187b68ec.jpg", + "width": "580", + "height": "813", + "caption": "" + } + ], + "__index": 92, + "dateCreated": "Tue, 30 Apr 2019 14:02:23 GMT" + }, + { + "id": "stone-island_placcato_video", + "date": "Thu, 16 May 2019 12:00:00 GMT", + "title": "STONE ISLAND_PLACCATO_VIDEO", + "subtitle": "", + "body": "", + "link": "https://www.youtube.com/watch?v=4Y0rBl1eF8I", + "store": "false", + "__index": 93, + "dateCreated": "Thu, 16 May 2019 14:40:03 GMT", + "image": [ + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/9a43bf80-77e8-11e9-b872-1770116f47a5.png", + "width": "1374", + "height": "722", + "caption": "" + } + ] + }, + { + "id": "prototype-research_series-04_video", + "date": "Mon, 20 May 2019 12:00:00 GMT", + "title": "Prototype Research_Series 04_Video", + "subtitle": "", + "body": "", + "link": "https://youtu.be/j1fRdoyRWlc", + "store": "false", + "image": [ + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/135ef470-7aff-11e9-975b-a5b6c8dd2ad8.jpg", + "width": "1267", + "height": "714", + "caption": "" + } + ], + "__index": 94, + "dateCreated": "Mon, 20 May 2019 13:00:32 GMT" + }, + { + "id": "prototype-research_series-04-manual-flocking-on-nylon-metal-grid-ovd-limited-edition-numbered-01-to-100", + "date": "Mon, 20 May 2019 12:00:00 GMT", + "title": "PROTOTYPE RESEARCH_SERIES 04 MANUAL FLOCKING ON NYLON METAL GRID-OVD LIMITED EDITION - NUMBERED 01 TO 100", + "subtitle": "", + "body": "The Prototype Research Series are native limited editions. They feature garments in fabrics and/or treatments born from research and experimentation processes that have not yet been industrialized.\r\n\r\nSERIES 04_MANUAL FLOCKING ON NYLON METAL GRID-OVD is a fishtail parka in Nylon Metal, the iconic iridescent STONE ISLAND fabric. The finished garment undergoes a cutting-edge artisanal flocking procedure, executed by highly specialized personnel: the garment is sprayed with a water-based adhesive and then exposed to the cotton flock. The creation of an electromagnetic field straightens the fibrils, which are attracted by the garment thanks to the uniqueness of this innovative technique. The flocked garment then undergoes an elaborate double dyeing procedure providing highly contrasting colors between the nylon and the cotton flock. The two processes create an unrepeatable effect, different and unique on each garment. The flock will wear off naturally with use, especially on rubbing spots. The addition of a special agent to the dyeing recipe makes the garment anti-drop.\r\n\r\nExclusively available online:\r\n\r\n- stoneisland.com\r\n- stoneisland.co.uk, for the United Kingdom\r\n- Stone Island App, for United States and Canada", + "link": "", + "store": "false", + "image": [ + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/9bbd3bb0-7aff-11e9-975b-a5b6c8dd2ad8.jpg", + "width": "580", + "height": "813", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/9b050f40-7aff-11e9-975b-a5b6c8dd2ad8.jpg", + "width": "580", + "height": "813", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/9b3b1360-7aff-11e9-975b-a5b6c8dd2ad8.jpg", + "width": "580", + "height": "813", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/9b30da30-7aff-11e9-975b-a5b6c8dd2ad8.jpg", + "width": "580", + "height": "813", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/9afad610-7aff-11e9-975b-a5b6c8dd2ad8.jpg", + "width": "580", + "height": "813", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/9b4302a0-7aff-11e9-975b-a5b6c8dd2ad8.jpg", + "width": "580", + "height": "813", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/9b998710-7aff-11e9-975b-a5b6c8dd2ad8.jpg", + "width": "580", + "height": "813", + "caption": "" + } + ], + "__index": 95, + "dateCreated": "Mon, 20 May 2019 13:03:35 GMT" + }, + { + "id": "fall-winter_-019-020-preview", + "date": "Thu, 06 Jun 2019 12:00:00 GMT", + "title": "FALL WINTER_'019 '020 PREVIEW", + "subtitle": "", + "body": "The Fall Winter '019 '020 Stone Island collection features new expressions of luxury, finding functional areas in common for protection and comfort requirements.\r\n\r\nA sporty and sophisticated aesthetic that adds outer layers to protect the fabric inside with enveloping, warm and comfortable materials.\r\n\r\nThe colors are luxurious and sophisticated: dark and deep tones blend with the light colors of the earth and lively pop touches.\r\n\r\n117WN_ON THE STONE ISLAND APP UNTIL 6/12", + "link": "", + "store": "false", + "image": [ + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/f36d9b50-8862-11e9-975b-a5b6c8dd2ad8.jpg", + "width": "519", + "height": "692", + "caption": "" + } + ], + "__index": 96, + "dateCreated": "Thu, 06 Jun 2019 14:00:14 GMT" + }, + { + "id": "stone-island-fw_-019-020_icon-imagery", + "date": "Tue, 11 Jun 2019 12:00:00 GMT", + "title": "Stone Island FW_'019 '020_Icon Imagery", + "subtitle": "", + "body": "", + "link": "", + "store": "false", + "image": [ + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/84ee0150-8c55-11e9-975b-a5b6c8dd2ad8.jpg", + "width": "559", + "height": "729", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/8504bda0-8c55-11e9-975b-a5b6c8dd2ad8.jpg", + "width": "776", + "height": "1012", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/85abac00-8c55-11e9-975b-a5b6c8dd2ad8.jpg", + "width": "776", + "height": "1012", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/8588e1c0-8c55-11e9-975b-a5b6c8dd2ad8.jpg", + "width": "776", + "height": "1012", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/855b1b00-8c55-11e9-975b-a5b6c8dd2ad8.jpg", + "width": "776", + "height": "1012", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/85301360-8c55-11e9-975b-a5b6c8dd2ad8.jpg", + "width": "776", + "height": "1012", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/86ac7a30-8c55-11e9-975b-a5b6c8dd2ad8.jpg", + "width": "776", + "height": "1012", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/85fbc7d0-8c55-11e9-975b-a5b6c8dd2ad8.jpg", + "width": "776", + "height": "1012", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/86114ba0-8c55-11e9-975b-a5b6c8dd2ad8.jpg", + "width": "776", + "height": "1012", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/49ee8cf0-8c55-11e9-975b-a5b6c8dd2ad8.jpg", + "width": "776", + "height": "1012", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/497d0670-8c55-11e9-975b-a5b6c8dd2ad8.jpg", + "width": "776", + "height": "1012", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/49a43d80-8c55-11e9-975b-a5b6c8dd2ad8.jpg", + "width": "776", + "height": "1012", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/4a6a4ca0-8c55-11e9-975b-a5b6c8dd2ad8.jpg", + "width": "776", + "height": "1012", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/4a8093c0-8c55-11e9-975b-a5b6c8dd2ad8.jpg", + "width": "776", + "height": "1012", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/4ac6c480-8c55-11e9-975b-a5b6c8dd2ad8.jpg", + "width": "776", + "height": "1012", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/4a38b550-8c55-11e9-975b-a5b6c8dd2ad8.jpg", + "width": "776", + "height": "1012", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/389aab00-8c55-11e9-975b-a5b6c8dd2ad8.jpg", + "width": "776", + "height": "1012", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/382776d0-8c55-11e9-975b-a5b6c8dd2ad8.jpg", + "width": "776", + "height": "1012", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/38ed10c0-8c55-11e9-975b-a5b6c8dd2ad8.jpg", + "width": "776", + "height": "1012", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/3883c7a0-8c55-11e9-975b-a5b6c8dd2ad8.jpg", + "width": "776", + "height": "1012", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/3866a2b0-8c55-11e9-975b-a5b6c8dd2ad8.jpg", + "width": "776", + "height": "1012", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/38d67b80-8c55-11e9-975b-a5b6c8dd2ad8.jpg", + "width": "776", + "height": "1012", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/29bcd220-8c55-11e9-975b-a5b6c8dd2ad8.jpg", + "width": "776", + "height": "1012", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/295a18b0-8c55-11e9-975b-a5b6c8dd2ad8.jpg", + "width": "776", + "height": "1012", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/29a72740-8c55-11e9-975b-a5b6c8dd2ad8.jpg", + "width": "776", + "height": "1012", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/297c6dc0-8c55-11e9-975b-a5b6c8dd2ad8.jpg", + "width": "519", + "height": "692", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/29409d40-8c55-11e9-975b-a5b6c8dd2ad8.jpg", + "width": "776", + "height": "1012", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/18d03d80-8c55-11e9-975b-a5b6c8dd2ad8.jpg", + "width": "776", + "height": "1012", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/19f81bb0-8c55-11e9-975b-a5b6c8dd2ad8.jpg", + "width": "776", + "height": "1012", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/19e2bef0-8c55-11e9-975b-a5b6c8dd2ad8.jpg", + "width": "776", + "height": "1012", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/1a0d0340-8c55-11e9-975b-a5b6c8dd2ad8.jpg", + "width": "776", + "height": "1012", + "caption": "" + }, + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/19cd6230-8c55-11e9-975b-a5b6c8dd2ad8.jpg", + "width": "776", + "height": "1012", + "caption": "" + } + ], + "__index": 97, + "dateCreated": "Tue, 11 Jun 2019 14:31:51 GMT" + }, + { + "id": "7115-stone-island-fall-winter_-019-020-collection-video", + "date": "Tue, 25 Jun 2019 12:00:00 GMT", + "title": "7115 STONE ISLAND FALL WINTER_'019 '020 COLLECTION VIDEO", + "subtitle": "", + "body": "", + "link": "https://youtu.be/Y-KEYz_CFjI", + "store": "false", + "image": [ + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/f80b66c0-9752-11e9-975b-a5b6c8dd2ad8.png", + "width": "1000", + "height": "563", + "caption": "" + } + ], + "__index": 98, + "dateCreated": "Tue, 25 Jun 2019 14:10:54 GMT" + }, + { + "id": "hand-sprayed-treatment", + "date": "Tue, 14 Jan 2020 12:00:00 GMT", + "title": "HAND-SPRAYED TREATMENT", + "subtitle": "", + "body": "Crewneck knits in thinly ribbed cotton nylon, hand-sprayed with a color solution on the outer side of the finished piece. Seamless construction, ribbed cuffs and bottom band.", + "link": "", + "store": "true", + "image": [ + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/c4364490-36db-11ea-b603-3b0ffcb8ea11.jpg", + "width": "640", + "height": "840", + "caption": "" + } + ], + "__index": 99, + "dateCreated": "Tue, 14 Jan 2020 15:01:51 GMT" + }, + { + "id": "cotton-cordura-", + "date": "Thu, 20 Feb 2020 12:00:00 GMT", + "title": "COTTON / CORDURA®", + "subtitle": "", + "body": "Outerwear pieces made of a resistant cotton reps blended with ultra-twisted Cordura® yarns, lending extra strength and tenacity to the fabric. Garment dyed.\r\n\r\nAVAILABLE ON THE STONE ISLAND APP
UNTIL 2/26", + "link": "", + "store": "true", + "image": [ + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/f1ec7480-5400-11ea-b603-3b0ffcb8ea11.jpg", + "width": "559", + "height": "729", + "caption": "" + } + ], + "__index": 100, + "dateCreated": "Thu, 20 Feb 2020 16:49:30 GMT" + }, + { + "id": "s-i-pa-pl-seersucker-tc-stone-island-app-preview", + "date": "Fri, 20 Mar 2020 12:00:00 GMT", + "title": "S.I. PA/PL SEERSUCKER-TC Stone Island App Preview", + "subtitle": "", + "body": "Pieces in PA/PL Seersucker-TC with nylon mesh lining: the seersucker weave of the nylon polyester fabric is obtained thanks to STONE ISLAND’s expertise in textile construction, aimed at emphasizing the final result of the garment dyeing processes.\r\nThe glossy nylon warp is woven with nylon yarns, as well glossy and black polyester yarns. During the garment dyeing phase, the different reactions of nylon and polyester create the distinctive wavy look of seersucker woven fabrics.\r\n\r\nS.I. PA/PL SEERSUCKER-TC
G0229_VEST\r\n32029_PANTS
DUST GREY COLORWAY AVAILABLE ON THE STONE ISLAND APP
UNTIL 3/23
", + "link": "", + "store": "true", + "image": [ + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/6f190240-6abb-11ea-b603-3b0ffcb8ea11.jpg", + "width": "642", + "height": "838", + "caption": "" + } + ], + "__index": 101, + "dateCreated": "Fri, 20 Mar 2020 15:02:37 GMT" + } + ], + "page": [ + { + "id": "terms-and-conditions", + "title": "Terms and Conditions", + "image": { + "uri": "", + "caption": "", + "width": "", + "height": "" + }, + "body": "<center><b>TERMS AND CONDITIONS OF USE</center></b>\r\nWelcome to www.stoneisland.com. These terms and conditions (the “General Terms and Conditions of Use”) govern your use of, access to, and purchase of products from the United States section of www.stoneisland.com (the \"US Site\"). By using the US Site, you agree to comply with and be bound by these General Terms and Conditions of Use. If you do not agree to these General Terms and Conditions of Use, please do not use the US Site.\r\n\r\n<b>1. GENERAL</b>\r\nwww.stoneisland.com is the property of SPORTSWEAR COMPANY, a company having an address at Galleria Cavour 4, 40124 Bologna, Italy (\"STONE ISLAND\") and is operated under license by YNAP Corporation, having an address at 100 Fifth Avenue – 12th floor, New York, NY 10011, United States of America (the \"Provider\").\r\n\r\n<b>2. OTHER SITE POLICIES</b>\r\nPlease review our <a href=“http://www.stoneisland.com/localize.asp?tskay=4036416C&page=legal/saleterms&”>General Terms and Conditions of Sale</a>, <a href=“http://www.stoneisland.com/localize.asp?tskay=4036416C&page=legal/returnpolicy& “>Return Policy</a> and <a href=“http://www.stoneisland.com/localize.asp?tskay=4036416C&page=legal/privacypolicy&”>Privacy Policy</a> (collectively, the “Site Policies\"). All Site Policies are incorporated in these General Terms and Conditions of Use by this reference and, therefore, apply to your access to, use of and purchase of products from the US Site. If you do not agree to our Site Policies, please do not use the US Site. We reserve the right to make changes to the US Site, the Site Policies, and these General Terms and Conditions of Use at any time. If any of these conditions shall be deemed invalid, void, or for any reason unenforceable, that condition shall be deemed severable and shall not affect the validity and enforceability of any remaining condition. \r\n\r\n<b>3. PURCHASE FOR PERSONAL USE ONLY</b>\r\nYou may purchase products on the US Site only for personal use and not for resale. By placing your order, you certify that you are purchasing products for personal use only and not for resale and you accept our <a href=“http://www.stoneisland.com/localize.asp?tskay=4036416C&page=legal/saleterms&”>General Terms and Conditions of Sale</a>. We reserve the right to refuse orders for any reason without explanation.\r\n\r\n<b>4. USER'S SUBMISSIONS</b>\r\nWe welcome your comments and feedback regarding the US Site, our products and our services. We do not, however, accept confidential or proprietary information. Accordingly, all comments, feedback, reviews, ideas, suggestions, materials, images, information and other submissions (collectively, the “Submissions”) disclosed, submitted or offered to the Provider via the US Site, or otherwise, are not confidential. You represent and warrant that any Submissions that you submit to the Provider are made in compliance with applicable laws, do not violate any right of any third party, including privacy and intellectual property rights. By disclosing, submitting or offering any Submissions to the Provider, you grant the Provider and STONE ISLAND a nonexclusive, royalty-free, perpetual, irrevocable, and fully sublicensable right to use, reproduce, modify, adapt, publish, translate, create derivative work from, distribute, display such Material throughout the world in any media. You are and shall remain solely responsible for any Submissions you disclose, submit or offer to the Provider or STONE ISLAND. \r\n\r\n<b>5. PRIVACY</b>\r\nWe recommend that you read our <a href=“http://www.stoneisland.com/localize.asp?tskay=4036416C&page=legal/privacypolicy&”>Privacy Policy</a>, which explains our online privacy practices. \r\n\r\n<b>6. COPYRIGHT</b>\r\nAll content included on www.stoneisland.com US Site, such as works, images, pictures, dialogues, music, sounds, videos, documents, drawings, figures, logos, menus, web pages, graphics, colors, schemes, tools, fonts, designs, diagrams, layouts, methods, processes, functions and software (collectively, the \"Content\"), is the property of STONE ISLAND or its content suppliers and is protected by national and international copyright and other intellectual property laws. You may not reproduce, publish, distribute, display, modify, create derivative work from, or exploit in any way, in whole or in part, the Content without the prior express written consent of STONE ISLAND, or its content suppliers, as the case may be. STONE ISLAND and its content suppliers shall have the exclusive right to authorize or prohibit in their sole discretion any reproduction, publication, distribution, display, modification, creation of derivative work from, or exploitation in any way of, in whole or in part, the Content. STONE ISLAND and its content suppliers shall have the right, at any time, to claim the authorship of any Content posted on the US Site and to object to any use, distortion or other modification of such Content. Any reproduction, publication, distribution, display, modification, creation of derivative work from, or exploitation in any way of, the Content expressly authorized in writing by STONE ISLAND or its content suppliers shall be carried out by you for lawful purposes only and in compliance with all applicable laws. \r\n\r\n<b>7. LICENSE AND SITE ACCESS</b>\r\nThe viewing, printing or downloading of any Content from the US Site grants you only a limited, nonexclusive and nontransferable license for use solely by you for your own personal use and not for republication, distribution, assignment, sublicense, sale, preparation of derivative works or other use. No part of any Content may be reproduced in any form or incorporated into any information system, electronic or mechanical, other than for your personal use (but not for resale or redistribution). Any unauthorized use of the US Site and the Content immediately terminates the license granted by the Provider. \r\nYou will be solely responsible for all damages and other harm resulting from your use of the US Site and the Content. STONE ISLAND and the Provider shall not be deemed liable for any use of the US Site and the Content made by you in violation of any applicable laws and regulations and these General Terms and Conditions of Use. \r\n\r\n<b>8. COPYRIGHT COMPLAINTS</b>\r\nWe respect the intellectual property of others. If you believe that your work has been copied in a way that constitutes copyright infringement, please contact a STONE ISLAND copyright representative for further information at <a href=“mailto:privacy@mail.stoneisland.com”>privacy@mail.stoneisland.com</a>. \r\n\r\n<b>9. LINKS TO OTHER WEB SITES</b>\r\nThe US Site may provide hyperlinks to third party websites (“Third Party Websites\"). The Provider and STONE ISLAND do not operate, control, endorse or guarantee any Third Party Websites. You agree that the Provider and STONE ISLAND are not responsible for any content, services and/or products provided by any Third Party Website, nor are the Provider and STONE ISLAND responsible for any practice followed by such Third Party Website with respect to the collection and processing of personal data of their users. When you access any Third Party Website through a hyperlink posted on the US Site, please carefully read the terms and conditions of use, privacy policy and other policies of such Third Party Website. Our policies do not apply to any Third Party Website. \r\nYou The Provider provides hyperlinks to Third Party Websites only for the convenience of its users. By providing hyperlinks to Third Party Websites, the Provider does not recommend that its users access such Third Party Websites. \r\n\r\nYOU AGREE THAT YOUR USE OF ANY THIRD PARTY WEBSITE IS AT YOUR SOLE RISK AND WITHOUT WARRANTIES OF ANY KIND BY THE PROVIDER, EXPRESSED, IMPLIED OR OTHERWISE, INCLUDING, BUT NOT LIMITED TO, WARRANTIES OF TITLE, FITNESS FOR A PARTICULAR PURPOSE, MERCHANTABILITY OR NONINFRINGEMENT. UNDER NO CIRCUMSTANCES ARE THE PROVIDER AND/OR STONE ISLAND LIABLE FOR DAMAGES ARISING FROM ANY TRANSACTION BETWEEN YOU AND ANY THIRD PARTY WEBSITE OR FOR ANY INFORMATION APPEARING ON THIRD PARTY WEBSITES. \r\n\r\n<b>10. GOVERNING LAW AND CHOICE OF FORUM</b>\r\nThe laws of the State of New York (without giving effect to its conflicts of law principles) govern all matters arising out of or relating to these General Terms and Conditions of Sale, including, without limitation, their validity, interpretation, construction, performance, and enforcement. All legal proceedings arising out of or in connection with these General Terms and Conditions of Sale shall be brought solely in the City of New York, State of New York. \r\n\r\n<b>11. DISCLAIMER OF WARRANTIES AND LIMITATION OF LIABILITY</b>\r\nTHE US SITE AND ALL INFORMATION, CONTENT, MATERIALS, PRODUCTS (INCLUDING SOFTWARE) AND SERVICES INCLUDED ON OR OTHERWISE MADE AVAILABLE TO YOU THROUGH THIS SITE ARE PROVIDED BY THE PROVIDER ON AN \"AS IS\" AND \"AS AVAILABLE\" BASIS, UNLESS OTHERWISE SPECIFIED IN WRITING. THE PROVIDER MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY KIND, EXPRESS OR IMPLIED, AS TO THE OPERATION OF THIS SITE OR THE INFORMATION, CONTENT, MATERIALS, PRODUCTS (INCLUDING SOFTWARE) OR SERVICES INCLUDED ON OR OTHERWISE MADE AVAILABLE TO YOU THROUGH THIS SITE, UNLESS OTHERWISE SPECIFIED IN WRITING. YOU EXPRESSLY AGREE THAT YOUR USE OF THIS SITE IS AT YOUR SOLE RISK. \r\n\r\nTO THE FULL EXTENT PERMISSIBLE BY APPLICABLE LAW, THE PROVIDER DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE PROVIDER DOES NOT WARRANT THAT THIS SITE; INFORMATION, CONTENT, MATERIALS, PRODUCTS (INCLUDING SOFTWARE) OR SERVICES INCLUDED ON OR OTHERWISE MADE AVAILABLE TO YOU THROUGH THIS SITE; THEIR SERVERS; OR E-MAIL SENT FROM THE PROVIDER ARE FREE OF VIRUSES OR OTHER HARMFUL COMPONENTS. THE PROVIDER WILL NOT BE LIABLE FOR ANY DAMAGES OF ANY KIND ARISING FROM THE USE OF THIS SITE OR FROM ANY INFORMATION, CONTENT, MATERIALS, PRODUCTS (INCLUDING SOFTWARE) OR SERVICES INCLUDED ON OR OTHERWISE MADE AVAILABLE TO YOU THROUGH THIS SITE, INCLUDING, BUT NOT LIMITED TO DIRECT, INDIRECT, INCIDENTAL, PUNITIVE, AND CONSEQUENTIAL DAMAGES, UNLESS OTHERWISE SPECIFIED IN WRITING. \r\n\r\nCERTAIN STATE LAWS DO NOT ALLOW LIMITATIONS ON IMPLIED WARRANTIES OR THE EXCLUSION OR LIMITATION OF CERTAIN DAMAGES. IF THESE LAWS APPLY TO YOU, SOME OR ALL OF THE ABOVE DISCLAIMERS, EXCLUSIONS, OR LIMITATIONS MAY NOT APPLY TO YOU, AND YOU MIGHT HAVE ADDITIONAL RIGHTS.\r\n\r\n<center><b>TERMS AND CONDITIONS OF SALE</center></b>\r\nThe following General Terms and Conditions of Sale govern the sale of merchandise by YOOX Corporation, an affiliate of YOOX NET-A-PORTER GROUP S.p.A. (the \"Provider\" or \"we\") to you through the US section of www.stoneisland.com (\"US Site\"). The US Site is available only for purchases made and delivered within the United States. Your use of the US Site to purchase merchandise indicates your agreement to follow and to be bound by these General Terms and Conditions of Sale.\r\n\r\n<b>1. ORDERS & PRODUCTS</b>\r\nAll orders are subject to e-mail confirmation by us. Please note that the products displayed on the US Site may be out-of-stock or discontinued, and availability is not guaranteed. Please note that while we have tried to accurately display the colors of products, the actual colors you see will depend on your monitor and may not be accurate. \r\n\r\n<b>2. PRICES</b>\r\nAll prices are in US Dollars. Prices may change without notice from time to time. The total amount due is inclusive of sales tax applied in accordance with applicable state and local regulations based on your shipping address. The applicable sales tax amount is indicated on the payment page of the cart.\r\n\r\nThe amount of sales tax charged on your order will depend upon various factors, including type of item purchased, sales price and destination of the shipment. Sales tax regulations may change between the time you place an order and the time of credit card charge authorization and this may affect the calculation of sales taxes. The amount appearing on your payment page of the cart may differ from the sales taxes ultimately charged as indicated in the invoice you will receive with the shipping confirmation e-mail.\r\n\r\nAll prices are inclusive of customs and import duties.\r\n\r\n<b>3. SHIPPING COSTS</b>\r\nYou are responsible for the shipping costs associated with the delivery of the products you purchase on the US Site as specified on your order confirmation. \r\n\r\n<b>4. SHIPMENTS AND DELIVERY</b>\r\nYou bear all risks of loss and damage to the products from the time the same have cleared our fulfillment house. Delivery is deemed complete and title to the products passes to you upon acceptance of shipment by a common carrier.\r\n\r\n<b>5. RETURNS AND REFUNDS</b>\r\nPlease refer to our <a href=“http://www.stoneisland.com/localize.asp?tskay=4036416C&page=legal/returnpolicy&“>Return and Refund Policy</a>, which forms an integral part of these General Terms and Conditions of Sale. \r\n\r\n<b>6. BINDING AGREEMENT</b>\r\nOur order confirmation, these General Terms and Conditions of Sale and our other Site Policies shall be deemed the final and integrated agreement between you and us on the matters contained in these General Terms and Conditions of Sale. \r\n\r\n<b>7. GOVERNING LAW AND CHOICE OF FORUM</b>\r\nThe laws of the State of New York (without giving effect to its conflicts of law principles) govern all matters arising out of or relating to these General Terms and Conditions of Sale, including, without limitation, their validity, interpretation, construction, performance, and enforcement. All legal proceedings arising out of or in connection with these General Terms and Conditions of Sale shall be brought solely in the City of New York, State of New York. \r\n\r\n<b>8. DISCLAIMERS AND LIMITATIONS OF LIABILITY</b>\r\nTHE PROVIDER MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY KIND, EXPRESS OR IMPLIED, AS TO THE PRODUCTS INCLUDED IN THE www.stoneisland.com US SITE NOR AS TO THE MERCHANDISE BEING SOLD TO YOU. TO THE FULLEST EXTENT PERMISSIBLE BY APPLICABLE LAW, THE PROVIDER DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT, AND THERE ARE NO WARRANTIES, EXPRESS OR IMPLIED, WHICH EXTEND BEYOND THE DESCRIPTION OF THE MERCHANDISE CONTAINED ON OUR ORDER CONFIRMATION. THE PROVIDER WILL NOT BE LIABLE FOR ANY DAMAGES OF ANY KIND ARISING FROM THE USE OF THE US SITE, INCLUDING BUT NOT LIMITED TO DIRECT, INDIRECT, INCIDENTAL, PUNITIVE AND CONSEQUENTIAL DAMAGES \r\nCERTAIN STATE LAWS DO NOT ALLOW LIMITATIONS ON IMPLIED WARRANTIES OR THE EXCLUSION OR LIMITATION OF CERTAIN DAMAGES. IF THESE LAWS APPLY TO YOU, SOME OR ALL OF THE ABOVE DISCLAIMERS, EXCLUSIONS, OR LIMITATIONS MAY NOT APPLY TO YOU, AND YOU MIGHT HAVE ADDITIONAL RIGHTS.\r\n\r\n<b>9. SEVERABILITY</b>\r\nIf any provision of these General Terms and Conditions of Sale is determined to be invalid, illegal or unenforceable, the remaining provisions of these General Terms and Conditions of Sale remain in full force to the extent permitted by law.\r\n\r\n<b>10. PRIVACY</b>\r\nThe terms and conditions of the our <a href=“http://www.stoneisland.com/localize.asp?tskay=4036416C&page=legal/privacypolicy&”>Privacy Policy</a> govern the processing of all personal data collected from you in connection with your purchase of products through the US Site.\r\n\r\n<b>11. FORCE MAJEURE</b>\r\nProvider shall not be liable for any delay or failure in performance caused by circumstances beyond its reasonable control.\r\n\r\n<b>12. ERRORS AND INACCURACIES</b>\r\nOur goal is to provide complete, accurate, and up-to-date information on our website. Unfortunately, it is not possible to ensure that any website is completely free of human or technological errors. This website may contain typographical mistakes, inaccuracies, or omissions, some of which may relate to pricing and availability, and product information. We reserve the right to correct any errors, inaccuracies or omissions, including after an order has been submitted, and to change or update information at any time without prior notice.\r\n", + "__index": 1, + "dateCreated": "Tue, 17 Nov 2015 20:31:52 GMT", + "tag": "terms" + }, + { + "id": "privacy-policy", + "title": "Privacy Policy", + "image": { + "uri": "", + "caption": "", + "width": "", + "height": "" + }, + "body": "Privacy Policy<br>\r\nWelcome to the App version of stoneisland.com (the App).<br>\r\nYour privacy and the security of your personal data are very important to us, which is why we collect and process your personal data with the utmost care and take appropriate steps to keep it safe.<br>\r\nBelow you will find the key information on the processing of your personal data in relation to your use of the App and the services offered. For detailed information on how we manage your personal data, please read our Privacy Policy.<br>\r\nPlease also read the stoneisland.com 'Cookie Policy', 'General Terms and Conditions of Use' and the 'Terms and Conditions of Registration of My Account', which contain detailed information about the terms and conditions of our services. Some services may be subject to specific legal requirements, in which case we will provide you with all the relevant information from time to time.<br>\r\n<b>Who is the Data Controller?</b><br>\r\n<b>The Data Controller</b><br>\r\nUpon consulting this App, and throughout the user's use of the services offered by the integrated Store, data related to identified or identifiable persons may be collected and processed. The data controllers are:<br>\r\n- SPORTSWEAR COMPANY S.p.A., with registered office at Bologna Galleria Cavour 4, 40124, and operational headquarters in Ravarino (MO), Via Confine n. 2161; <br>\r\nand<br>\r\n- YOOX NET-A-PORTER GROUP S.p.A., with registered office at via Morimondo, 17 – Milano 20143, Italy (\"YOOX NET-A-PORTER GROUP\")<br>\r\nin the persons of their pro tempore legal representatives.<br>\r\nIn particular, SPORTSWEAR COMPANY S.p.A. is the owner of stoneisland.com and of the 'Stone Island' trademark, and is the independent controller of the data processed for corporate purposes (i.e. for example but not limited to CRM, marketing activities, customer profiling, market analysis, management and strategic evaluations) that directly refers to the brand or to the company.<br>\r\nSPORTSWEAR COMPANY S.p.A. has appointed YOOX NET-A-PORTER GROUP S.p.A. as the Data Processor for the area of its responsibility and for the purposes related to the provision of the service on the App. YOOX NET-A-PORTER GROUP S.p.A. was appointed based on its experience, competence and trustworthiness, as well as the ability of YOOX NET-A-PORTER GROUP S.p.A. to guarantee the implementation of adequate technical and organizational measures to comply with the requirements of data protection regulations and to guarantee the protection of Data Subjects' rights.<br>\r\nSPORTSWEAR COMPANY S.p.A. will ensure that the Data Processor has carried out the tasks assigned to it and that it continues to provide adequate guarantees of full compliance with the provisions on the protection of personal data.<br>\r\nYOOX NET-A-PORTER GROUP manages stoneisland.com and is the independent controller of the processing connected to the e-commerce services offered through this App’s Store.<br>\r\nAny privacy issue related to processing by SPORTSWEAR COMPANY S.p.A. may be sent to the following e-mail address: spwprivacy@spwco.it or by fax to +39 059 810337. Requests which instead refer to processing connected to the Online Store must be sent to YOOX NET-A-PORTER GROUP by contacting Customer Care and selecting “Privacy” as the topic.<br>\r\n<b>What data do we process and why?</b>\r\nThe personal data that we process is the information you provide us with when you place an order and purchase goods, and the information we collect while you browse or use the services offered on stoneisland.com. We may therefore collect data relating to you such as personal details like your first and last name, shipping address and billing address, browsing information and your buying habits.<br>\r\nYour personal data is processed for the following purposes:<br>\r\n- enter into and fulfill a contract for the purchase of goods available on stoneisland.com;<br>\r\n- provide you with stoneisland.com services such as subscription to the newsletter;<br>\r\n- allow you to register on the App and use the services reserved for registered users;<br>\r\n- manage your requests to our Customer Care Department.<br>\r\nIn the cases referred to above, the processing of your personal data is legitimate to the extent necessary to fulfill a contract entered into with you or to provide you with the service you have specifically requested from us. We also perform statistical research and analysis using aggregate data to understand how users interact with and use the App, and to improve our product range and services.<br>\r\nOnly if you have given us your express consent will we process your personal data to:<br>\r\n- carry out marketing communications activities;<br>\r\n- personalize the App according to your interests.<br>\r\n<b>Who will process your data?</b><br>\r\nYour personal data will be processed by appropriately trained employees of stoneisland.com and of other companies in the Data Controllers Group and, for organizational and functional purposes related to the provision of services on stoneisland.com, by our suppliers. These suppliers have been assessed and chosen by the Controllers based on their proven trustworthiness and competence. Some of these parties may also be based in non-EU countries and, in these cases, the transfer of your personal data to these countries is carried out in compliance with the safeguards provided for in law.<br>\r\n<b>How long do we keep your data?</b><br>\r\nWe store your personal data for a limited period of time determined by the purpose for which it was collected, at the end of such period your personal data will be erased or otherwise made irreversibly anonymous. The storage period is different depending on the purpose of the processing: for example, data collected during the purchase of goods on stoneisland.com is processed until the completion of all administrative and accounting formalities, therefore it is stored in accordance with local tax laws (ten years), while the data used to send you our newsletters is stored until you ask us to stop sending them.<br>\r\nFor further information please see our Privacy Policy.<br>\r\n<b>What are your rights?<br></b>\r\nDepending on the type of processing, you may at any time: revoke your consent to the processing, be notified of what personal data we hold about you, its origin and how it is used, request that it be updated, corrected or supplemented and, in the cases provided for under current legislation, erase or restrict the processing of your personal data or object to its processing. If you wish, you can request to receive the personal data in the Controller's possession in a format readable by electronic devices and, where technically possible, we can transfer your data directly to a third party indicated by you.<br>\r\nIf you believe that your personal data has been processed unlawfully, you may file a complaint with one of the supervisory authorities responsible for ensuring compliance with data protection regulations. In Italy, complaints can be submitted to the Italian Data Protection Authority (http://www.garanteprivacy.it/).<br>\r\nThis statement may be subject to changes and additions over time, so please review its content periodically. Where possible, we will try to inform you in a timely manner of any amendments made.<br>\r\n<b>Privacy Policy<br>\r\n1. General information<br>\r\nWho is the Data Controller?</b><br>\r\nUpon consulting this App, and throughout the user's use of the services offered by the integrated Store, data related to identified or identifiable persons may be collected and processed. The data controllers are:<br>\r\n- SPORTSWEAR COMPANY S.p.A., with registered office at Bologna Galleria Cavour 4, 40124, and operational headquarters in Ravarino (MO), Via Confine n. 2161;<br>\r\nand\r\n- YOOX NET-A-PORTER GROUP S.p.A., with registered office at via Morimondo, 17 – Milano 20143, Italy (\"YOOX NET-A-PORTER GROUP”) <br>\r\nin the persons of their pro tempore legal representatives.<br>\r\nIn particular, SPORTSWEAR COMPANY S.p.A. is the owner of stoneisland.com and of the 'Stone Island' trademark, and is the independent controller of the data processed for corporate purposes (i.e. for example but not limited to CRM, marketing activities, customer profiling, market analysis, management and strategic evaluations) that directly refers to the brand or to the company.<br>\r\nSPORTSWEAR COMPANY S.p.A. has appointed YOOX NET-A-PORTER GROUP S.p.A. as the Data Processor for the area of its responsibility and for the purposes related to the provision of the service on stoneisland.com. YOOX NET-A-PORTER GROUP S.p.A. was appointed based on its experience, competence and trustworthiness, as well as the ability of YOOX NET-A-PORTER GROUP S.p.A. to guarantee the implementation of adequate technical and organizational measures to comply with the requirements of data protection regulations and to guarantee the protection of Data Subjects' rights.<br>\r\nSPORTSWEAR COMPANY S.p.A. will ensure that the Data Processor has carried out the tasks assigned to it and that it continues to provide adequate guarantees of full compliance with the provisions on the protection of personal data.<br>\r\nYOOX NET-A-PORTER GROUP manages stoneisland.com and is the independent controller of the processing connected to the e-commerce services offered through this App’s Store.<br>\r\nAny privacy issue related to processing by SPORTSWEAR COMPANY S.p.A. may be sent to the following e-mail address: spwprivacy@spwco.it or by fax to +39 059 810337. Requests which instead refer to processing connected to the Online Store must be sent to YOOX NET-A-PORTER GROUP by contacting Customer Care and selecting “Privacy” as the topic.<br>\r\n<b>Who is the Data Protection Officer?</b><br>\r\nYNAP has appointed a Data Protection Officer. Should you so wish, for any request regarding the protection of your personal data and the exercise of your rights, you may contact the YNAP Personal Data Protection Officer (DPO) at the address of the Data Controller indicated above or by writing to our Customer Care Department.<br>\r\n<b>2. What personal data do we collect?</b><br>\r\nThe categories of personal data that the Data Controllers collect and process when you browse or shop on stoneisland.com are:<br>\r\na. we collect the personal information necessary to complete and fulfill your purchase on stoneisland.com such as your first and last name, email address, shipping address, billing address, telephone number and payment information;<br>\r\nb. we collect your email address when you subscribe to our newsletter service;<br>\r\nc. we process the personal data you provide us with when you contact our Customer Care department in order to provide you with the assistance you require;<br>\r\nd. subject to your consent, we collect and use your personal data for marketing communications;<br>\r\ne. to register your My Account, we collect your first and last name, your email address, your password and your date of birth. If you are a registered user, we collect information about your access to the restricted area of the App. Subject to your express consent, by analyzing your personal data, we may draw up information regarding your interests and preferences with respect to our products and services, in order to provide you with suggestions and offers in line with your tastes.<br>\r\nf. we collect information about your browsing of stoneisland.com, such as the pages you visit and how you interact with the individual page and we store this information on our servers.<br>\r\nWe want to assure you that the Data Controller does not process any personal data relating to minors. If you access stoneisland.com and use the services offered by the Controllers you agree that you are over the age of majority.<br>\r\n<b>3. How do we use the personal data we collect?</b><br>\r\nTo the extent of their respective responsibilities, the Data Controllers collect and process your personal data for the following purposes:<br>\r\na. entering into and fulfillment of the contract for the purchase of the products available on stoneisland.com. When you make your purchase we ask you for the personal data necessary to fulfill the contract, such as payment, anti-fraud checks if you choose to pay by credit or debit card, billing, shipping of the product and any return management.<br>\r\nb. registration on the App and use of the services offered to registered users. Registration on the App is only possible by entering certain personal information, which is necessary to carry out the services offered to registered users.<br>\r\nc. provision of the services offered on stoneisland.com. For such purposes and in relation to each service and its characteristics, the Data Controllers need to collect the personal data necessary to carry out the specific service requested by you.<br>\r\nd. management of requests to our Customer Care department, which uses the personal data you provide to deal with your requests for information and assistance.<br>\r\ne. statistical analysis and research. We use some information about your use of the App, how you browse the App and how you use its services, to carry out statistical analysis and research in order to improve our range of products and services.<br>\r\nf. sending marketing correspondence following the purchase of one of our products, so-called soft spam. Following the purchase of one of our products on the App, we will send you communications containing our marketing offers for similar products and services to the e-mail address you provided when you placed your order.
subject to your express consent, we may use the contact details you have provided to us for marketing communications relating to our products and services, in order to keep you updated on news, new arrivals, exclusive products, offers and promotions. In addition to this, we may with your consent use your contact information for market research purposes and customer satisfaction surveys to improve our services and our relationship with our customers.<br>\r\ng. only with your consent, SPORTSWEAR COMPANY S.p.A. will be able to personalize your experience as a registered user on stoneisland.com, offering you previews and offers in line with your tastes and sending you personalized marketing communications tailored to your interests. This personalization will be achieved by analyzing your previous purchases and the other information described in the previous section 'What personal data do we collect?’. For further information on this data and the activity that allows it to be processed, please consult the \"My Account\" section.<br>\r\nIf you wish to authorize the activities referred to in points h) and i) and subsequently do not wish to receive further communications from SPORTSWEAR COMPANY S.p.A. or wish to limit the ways in which you can be contacted, you may at any time discontinue these communications simply by clicking on the 'unsubscribe' link at the bottom of each communication, or by accessing your My Account, alternatively you can always contact SPORTSWEAR COMPANY S.p.A. through our Customer Care Department or by writing to the address above. Please note that you may receive further communications from us even after you have submitted your unsubscribe request, as some mailings may already have been planned, and our systems may take some time to process your request.<br>\r\nIn relation to all the above activities, we will mainly process your personal data through IT and electronic means; the tools we use ensure high standards of security, in full compliance with current regulations on the issue.<br>\r\n<b>4. My Account</b><br>\r\nWhen you create your My Account, we offer you access to the following services:<br>\r\n- My profile: manage your personal data and your consent<br>\r\n- My orders: track your shipping and check your order history<br>\r\n- My cards: save your credit card details for faster checkout<br>\r\n- Address Book: save all your addresses for faster checkout<br>\r\nSubject to your express consent, SPORTSWEAR COMPANY S.p.A. may use your contact details for marketing communications on products and services, in order to keep you updated on news, new arrivals, exclusive products, and for conducting opinion polls and market research, in order to assess your level of satisfaction and improve the services offered.<br>\r\nOnly with your prior consent, SPORTSWEAR COMPANY S.p.A. will be able to personalize your experience and the content of marketing communications and offers you will see when you browse stoneisland.com as a registered user to suit your interests. This activity makes it easier for you to find products and services that you prefer and that are in line with your interests, while at the same time improving our service to you. This personalization is made possible by analyzing the personal data we hold about you, which is described in the previous section 'What personal data do we collect?’. In particular, information about your past purchases and the sections of the App you visit most often or the services you use most frequently helps us to understand which products and services are most relevant to you.<br>\r\nTo ensure that the information we hold is correct and allows us to properly perform the activity described above, we encourage you to access the 'My Profile' section of your My Account and, update it as necessary.<br>\r\n<b>5. Legal basis for processing</b><br>\r\nWe will only process your personal data if one of the legal requirements provided for by current legislation is met, and specifically:<br>\r\na. for the conclusion and performance of a contract to which you are party.<br>
When we process your data for the conclusion of the purchase contract to which you are a party we ensure that we use only the minimum information necessary for the completion of the same. This basis legitimizes the processing of personal data in the course of the following activities:<br>\r\n- stipulation and fulfillment of a contract for the purchase of products offered on stoneisland.com,<br>\r\n- registration on the App and use of services reserved for registered users;<br>\r\n- provision of the services offered on stoneisland.com,<br>\r\n- management of your requests to our Customer Care department.<br>\r\nThe provision of your personal data for these activities is a contractual obligation. You are free to disclose your data to us or not, but in the absence of the requested data, we will not be able to conclude or execute the agreement and your requests. This means that you will not be able to purchase products from or use the services of the App and that YOOX NET-A-PORTER GROUP S.p.A. will not be able to handle your requests.<br>\r\nb. to comply with a legal obligation.<br>In the event of the stipulation of a contract for the purchase of goods on stoneisland.com, the user's data will be processed in order to fulfill the legal obligations to which YOOX NET-A-PORTER GROUP S.p.A. is subject. You are free to decide whether or not to enter into a contract and whether or not to disclose your data to us, but if you do, your data will be necessary and will be processed to comply with the aforementioned legal obligations YOOX NET-A-PORTER GROUP S.p.A. is required to fulfill.<br>\r\nc. in our legitimate interest.<br>
When purchasing products on stoneisland.com by credit or debit card, some of your personal data may be used for anti-fraud purposes: we have a legitimate interest in performing this activity in order to prevent and prosecute any fraudulent activities. For internal administrative purposes, the data may be processed by companies belonging to the business group to which YOOX NET-A-PORTER GROUP S.p.A. belongs.<br>\r\nd. with your consent.<br>
We will only carry out the following processing if you have given us your express consent:<br>\r\n- carrying out marketing activities, opinion polls and market research;<br>\r\n- analyzing your browsing and shopping habits when using your My Account profile, in order to personalize your experience on our App.<br>\r\nProviding your consent for such activities is optional. You are free to consent or not to consent, but in the absence of consent it will not be possible for SPORTSWEAR COMPANY S.p.A. to carry out marketing activities, opinion polls and market research, and to analyze your habits.<br>\r\n<b>6. Who will process your data?</b><br>\r\nYour personal data will be processed by the Data Controller's in-house staff who have been specially trained and authorized to process the same. When processing the data, it may also be transferred to companies belonging to the corporate group to which the Data Controller belongs.<br>\r\nYour personal data will also be transferred to third parties that we use to provide our services on stoneisland.com; these parties have been carefully selected and offer an adequate guarantee of compliance with the regulations regarding personal data processing. These parties have been designated as data processors and carry out their activities according to the instructions given by the Data Controllers and under their supervision.<br>\r\nThe third parties in question belong to the following categories: site manager, banks, internet providers, companies specializing in computer and telecommunications services, couriers, marketing agencies, companies specializing in market research and data processing.<br>\r\nYour data may be disclosed to the police and to the judicial and administrative authorities, in accordance with the law, for the detection and prosecution of crimes, the prevention and protection from threats to public security, to enable the Controllers to ascertain, exercise or defend a right in court, as well as for other reasons related to the protection of the rights and freedoms of others.<br>\r\n<b>7. APP version of the Website</b><br>\r\nIn addition to the information referred to in the 'What personal data do we collect?, when you use the App version of our stoneisland.com Website, the Controllers may, with your express consent:<br>\r\na. collect personal data as part of marketing activities in order to send push notifications to your device. You can disable push notifications at any time by changing your selection in your mobile device settings.<br>\r\nb. collect personal data about your location to locate the store closest to you, in order to improve your shopping experience;<br>\r\nc. access the camera on your device to make it easier for you to enter your card details to complete the purchase;<br>\r\nd. automatically collect information, such as your data about your traffic and your visit to stoneisland.com or your IP address, in order to improve our range of products and services.<br>\r\n<b>8. Web push notification</b><br>\r\nDepending on which device you use, you may receive, upon giving your consent, push notifications regarding our offers, new items, your wish list and your cart.<br>\r\nTo deactivate notifications, depending on the platform and/or browser used, follow the steps listed below:<br>\r\n- Desktop: Right-click on notification > disable notifications from stoneisland.com<br>\r\n- Mobile: Access the notification center > Site parameters > Notifications > Block notifications from stoneisland.com<br>\r\n- Common browsers:<br>\r\n- Chrome: Settings > Show Advanced Settings > Privacy – Content Settings > Notifications - Manage exceptions > Enter stoneisland.com and select “Block”<br>\r\n- Firefox: Options > Content > Notifications – Select > stoneisland.com – “Block”<br>\r\n- Safari: Preferences > Notifications > From here select \"Deny\"<br>\r\n<b>9. Data transfer outside of the EU</b><br>\r\nSome of the third parties listed in the previous section no. 6 'Who will process your data? could be based in countries outside the European Union which, however, offer an adequate level of data protection, as set out in specific decisions of the European Commission (http://www.garanteprivacy.it/home/provvedimenti-normativa/normativa/normativa community-and-intentional/transfer-of-data-to-third-countries#1).<br>\r\nThe transfer of your personal data to countries that are not members of the European Union and that do not ensure adequate levels of protection will only be carried out after specific agreements have been entered into between the Data Controllers and said parties, containing safeguarding clauses and appropriate guarantees for the protection of your personal data, known as the 'standard contractual clauses', also approved by the European Commission, or if the transfer is necessary for the stipulation and fulfillment of a contract between you and the Data Controllers (for the purchase of goods offered on our App, for registration on the App or for the use of services on the App) or for the management of your requests.<br>\r\n<b>10. How long do we keep your data?</b>\r\nWe store your personal data for a limited period of time, which varies depending on the type of activity requiring the processing of your personal data. After this period, your data will be permanently deleted or irreversibly anonymized.<br>\r\nYour personal data is stored in compliance with the following terms and criteria:<br>\r\na. data collected to conclude and execute agreements for the purchase of goods on stoneisland.com: until the administrative and accounting formalities have been completed. Billing information will be retained for ten years from the invoice date;<br>\r\nb. registered user data: this data will be stored until you request the deletion of your My Account;<br>\r\nc. payment data: until authentication of payment and completion of the relevant administrative and accounting formalities following expiry of the right of withdrawal and the time limits applicable for contesting payment;<br>\r\nd. data collected in the context of the use of services offered on stoneisland.com: this data is stored until the termination of the service or the user's request to unsubscribe from the service;<br>\r\ne. data related to user requests to our Customer Care: data needed to assist you will be kept until your request is fully resolved;<br>\r\nf. data used for marketing communications to users who purchase products on stoneisland.com (soft spam): this data is stored until the termination of the service or until the user unsubscribes from the service;<br>\r\ng. data provided for marketing communications, opinion polls and market research activities: until the user unsubscribes from the service or upon request by the user to discontinue the activity and in any event within two years of the user's last interaction of any kind with SPORTSWEAR COMPANY S.p.A.;<br>\r\nh. data used to personalize the App and to display personalized marketing offers: until the user revokes the consent given for such activity or requests its discontinuation, and in any event within two years of the user's last interaction of any kind with SPORTSWEAR COMPANY S.p.A.;<br>\r\nIn all cases, termination of processing and subsequent permanent erasure or irreversible anonymization of personal data will be final within thirty days of the deadlines indicated above for technical reasons.<br>\r\n<b>11. Your rights</b><br>\r\nYou may exercise your rights at any time with regard to the specific processing of your personal data by the Data Controllers. Below you will find a general description of them and how to exercise them.<br>\r\na. Accessing and modifying your data: you have the right to access your personal data and to request that it be corrected, modified or supplemented with other information. If you wish, we will provide you with a copy of the data we hold about you.<br>\r\nb. Withdraw your consent: you may at any time withdraw your consent to the processing of your personal data in connection with any marketing activity. To this end, please note that marketing activities include sending marketing communications, conducting opinion polls and market research, in order to assess your level of satisfaction and improve the services offered. On receipt of your request we will ensure that the processing of your personal data based on such consent is promptly discontinued, while other processing or processing based on other grounds will continue to be carried out in full compliance with the applicable provisions.<br>\r\nc. Objecting to the processing of your data: you have the right to object at any time to the processing of your personal data carried out on the basis of our legitimate interest, explaining the reasons that justify your request; before accepting your request, the Data Controllers must assess the reasons for your request.<br>\r\nd. Erasure of your data: in the circumstance provided for by current legislation you may request the erasure of your personal data. Once your request has been received and assessed, if it is justified we will immediately discontinue the processing and erase your personal data.<br>\r\ne. Requesting that the processing of your personal data be temporarily restricted: in this case the Data Controllers will continue to store your personal data but will not process it, unless otherwise requested by you and subject to the exceptions provided for by law. You can obtain restriction of the processing when you are contesting the accuracy of your personal data, when the processing is unlawful but you oppose the erasure of your data, when your data is no longer needed but you need it to exercise your rights in court and when you object to the processing, during the period in which we are assessing the reasons for your request.<br>\r\nf. Requesting your data or transferring them to a party other than the Data Controllers (right to data portability). You can ask to be provided with your data that we process based on your consent or pursuant to a contract with you, in a standard format. If you wish, where technically possible, we may on your request transfer your data directly to a third party specified by you.<br>\r\nYou can access your My Account in order to exercise some of your rights outlined above or, alternatively, you can contact us by writing to our Customer Care Department or to the address of the Data Controller stated above.<br>\r\nTo ensure that our users' data is not compromised or misused by third parties, we may ask you to provide certain information to verify your identity before we respond to a request from you to exercise any of these rights.<br>\r\n<b>12. Children’s rights</b><br>\r\nWe do not sell products or services for purchase by children, but by adults. If you are under 18, you may use the Site only with the involvement of a parent or guardian. In accordance with the Federal Children's Online Privacy Protection Act of 1998 (COPPA), stoneisland.com/us does not knowingly collect, solicit or use personal data of children under the age of 13 provided without parental consent, and will delete any such data should we become aware that a user under the age of 13 has registered without verifiable parental con-sent. Therefore, if you are not 18 years or older, you are not authorized to use our US Site.<br>\r\n<b>13. Rights of California residents</b><br>\r\nPursuant to California Civil Code Sec. 1789.3, California resident users are entitled to know that they may file grievances and complaints with the California Department of Consumer Affairs, 400 R Street, STE 1080, Sacramento, CA 95814. For more information about protecting your privacy, you may wish to visit: www.ftc.gov. If you are a resident of California, you may request that we not share your information with certain affiliates or third parties providers for marketing purposes, and/or you may inquire as to how we have shared your information with third parties providers for marketing purposes. In connection with such request, we will identify the types of information shared and provide you with the names and addresses of the third parties with whom the information was shared. Please contact our Customer care through the appropriate form selecting “Privacy” as the topic on our contact form.<br>\r\n<b>13. Security measures</b>\r\nWe protect your personal data with specific technical and organizational security measures, aimed at preventing your personal data from being used in an illegitimate or fraudulent manner. In particular, we use security measures that ensure: the pseudonymization or encryption of your data; the confidentiality, integrity and availability of your data as well as the strength of the systems and services that process it; the ability to restore data in the event of a data breach. In addition, YOOX NET-A-PORTER GROUP S.p.A. undertakes to regularly test, check and assess the adequacy of its technical and organizational measures in order to ensure continued improvement in processing security.<br>\r\n<b>14. Complaints</b><br>\r\nIf you believe that your personal data has been processed unlawfully, you may file a complaint with one of the supervisory authorities responsible for ensuring compliance with data protection regulations.<br>\r\nIn Italy, complaints can be submitted to the Italian Data Protection Authority.<br>\r\nFurther information on submission procedures is available on the authority’s website http://www.garanteprivacy.it/.<br>\r\n<b>15. Amendments to this statement</b><br>\r\nThe continual development of our services may lead to modifications to the nature of the processing of your personal data as described above. As a result, this privacy statement may be subject to amendments and additions over time, which may also be necessary with regard to new regulations on the protection of personal data.<br>\r\nWe therefore ask you to periodically review its content: where possible, we will try to inform you in a timely manner of any amendments made and their consequences.<br>\r\nThe updated version of the privacy statement will in any event be published on this page, indicating the date it was last updated.<br>\r\n<b>16. Legal references and useful links</b><br>\r\nThe processing of your personal data is carried out by the Data Controllers in full compliance with the relevant provisions of EU Regulation 2016/679 General Data Protection Regulation, the Italian regulations governing the processing of personal data and the provisions of the Italian supervisory authority (http://www.garanteprivacy.it/) and, where applicable, the relevant foreign supervisory authorities.<br>\r\nLast update: 25/05/2018<br>", + "__index": 2, + "dateCreated": "Tue, 17 Nov 2015 20:32:07 GMT", + "tag": "privacy" + }, + { + "id": "returns-policy", + "title": "Returns Policy", + "image": { + "uri": "", + "caption": "" + }, + "body": "We want to make sure that you are completely satisfied with your purchases on this Site. If, for any reason, you are not satisfied with your order, you may return any UNUSED products within twenty (20) days from the date of delivery. Before sending any products back to us, please make sure that all of the following conditions have been correctly satisfied. \r\nThe product you wish to return:\r\n<li>can be sent back to us only after you have completed and submitted the online <a href=“http://www.stoneisland.com/localize.asp?tskay=4036416C&page=help/return&”>Return Form</a> available on the www.stoneisland.com US Site within twenty (20) days of delivery; by completing and submitting our online return form you will receive your Return Number, which you must include on your return shipping label;</li>\r\n<li>must be unused, unworn, unwashed and in the same condition in which it was received by you;</li>\r\n<li>must have all disposable seals still attached with the disposable seal that must still be intact;</li>\r\n<li>must be returned complete with all of its parts and accessories;</li>\r\n<li>must be sent in its original packaging;</li>\r\n<li>must be shipped back to our fulfillment house within twenty (20) days of the date of delivery;</li>\r\n<li>must be sent in one single shipment; products that belong to the same order must be returned to us at the same time; and</li>\r\n<li>must be shipped from the United States.</li>\r\nIf all of these conditions are satisfied, we will refund the value of the returned product(s), Sales Tax included, less any original shipping costs. If you send the package with UPS, return shipping costs charged to the customer will correspond to $6.00. If you prefer you can send the return at your expense, with a courier of your choice. We will not issue any refunds for returns that do not satisfy all of the conditions indicated above; provided, however, that you will have the option to request within thirty (30) days of being notified that you are not entitled to a refund that your merchandise be shipped back to you, at your own cost, in the condition in which it was received by Provider’s fulfillment house.\r\nIf you do not request the return of your merchandise within said thirty-day period, you authorize Provider, and any of its affiliates or agents, to dispose of such merchandise as it sees fit. \r\n\r\nSALES OF BEACHWEAR AND UNDERWEAR ARE FINAL. WE RESERVE THE RIGHT TO DESIGNATE ON THE SITE OTHER NON-RETURNABLE MERCHANDISE. ANY SUCH DESIGNATION WILL BE NOTED ON THE DETAIL PAGE OF THE MERCHANDISE WHICH IS NON-RETURNABLE. \r\n\r\n<b>REFUND POLICY</b>\r\nRefunds are processed within approximately three (3) business days of our receipt of your merchandise. Your refund will be credited back to the same payment method used to make the original purchase on the US Site. If you paid by credit card, refund times will depend on the credit or debit card company’s policies. Be aware that the refund date for the credit will coincide with the date of the original payment, therefore you will not be charged any interest fees. If you paid by PayPal (where available), refunds will be credited to your PayPal account and will be visible immediately. The date of reimbursement to the credit card associated with your PayPal account depends on the company that issued the card. WE OFFER NO REFUNDS ON ANY PRODUCTS DESIGNATED ON THIS SITE AS NON-RETURNABLE. \r\n\r\n<b>IDENTIFICATION TAG</b>\r\nAll of our products come with an identification tag with a disposable seal. Please try your item on before removing the tag and seal, since we do not accept returns once the disposable seal has been removed, broken or damaged in any way. Shoes come with a sticker under the sole; if you remove or alter this sticker, you may no longer return your purchase. \r\n\r\n<b>UPS</b>\r\nYour return can be sent to us by UPS, using the pre-printed label which you can find within the original shipment. If you send the package with UPS, return shipping costs charged to the customer will correspond to $6.00. Please visit <a href=“https://www.ups.com/dropoff?loc=en_US “>http://www.ups.com/dropoff?loc=en_US</a> to find the UPS drop-off location nearest to you. If you prefer you can send the return at your expense, with a courier of your choice. We are not responsible for any loss or damage to products if you ship your return without using UPS. \r\n\r\nWE OFFER NO EXCHANGES ON MERCHANDISE PURCHASED ON THE www.stoneisland.com US SITE\r\n\r\nDISCLAIMER OF WARRANTIES AND LIMITATION OF LIABILITY\r\n\r\nPROVIDER MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY KIND, EXPRESS OR IMPLIED, AS TO THE PRODUCTS INCLUDED ON THE SITE NOR AS TO THE MERCHANDISE BEING SOLD TO YOU. TO THE FULLEST EXTENT PERMISSIBLE BY APPLICABLE LAW, PROVIDER DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT, AND THERE ARE NO WARRANTIES, EXPRESS OR IMPLIED, WHICH EXTEND BEYOND THE DESCRIPTION OF THE MERCHANDISE CONTAINED ON OUR ORDER CONFIRMATION. PROVIDER WILL NOT BE LIABLE FOR ANY DAMAGES OF ANY KIND ARISING FROM THE USE OF THE SITE, INCLUDING BUT NOT LIMITED TO DIRECT, INDIRECT, INCIDENTAL, PUNITIVE AND CONSEQUENTIAL DAMAGES. \r\n\r\nCERTAIN STATE LAWS DO NOT ALLOW LIMITATIONS ON IMPLIED WARRANTIES OR THE EXCLUSION OR LIMITATION OF CERTAIN DAMAGES. IF THESE LAWS APPLY TO YOU, SOME OR ALL OF THE ABOVE DISCLAIMERS, EXCLUSIONS, OR LIMITATIONS MAY NOT APPLY TO YOU, AND YOU MIGHT HAVE ADDITIONAL RIGHTS.\r\n\r\n<b>Force Majeure</b>\r\nProvider shall not be liable for any delay or failure in performance caused by circumstances beyond its reasonable control.", + "__index": "3", + "dateCreated": "Tue, 17 Nov 2015 21:03:44 GMT", + "tag": "returns" + }, + { + "id": "customer-care", + "title": "Customer Care", + "image": { + "uri": "", + "caption": "" + }, + "body": "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam blandit in risus sit amet maximus. Phasellus ullamcorper auctor fermentum. Aenean diam libero, rhoncus vel efficitur sed, dictum vel neque. Aliquam mollis leo vitae est vehicula, non pulvinar elit congue. Phasellus sit amet mauris neque. Integer volutpat nisl est, vel finibus purus lacinia vehicula. Proin dapibus velit quis sapien ultricies accumsan. Sed accumsan dui id porta efficitur.\r\n\r\nCurabitur pretium ut libero a varius. Morbi in lacinia felis. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Nullam dolor justo, consequat eu lectus at, interdum sollicitudin arcu. Nunc accumsan velit volutpat, venenatis leo eu, rhoncus nibh. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Phasellus semper consequat ipsum, sed fringilla ligula tincidunt at.\r\n\r\nMauris vehicula, purus ut iaculis facilisis, mi leo dignissim libero, at lobortis lectus odio consequat urna. Etiam accumsan volutpat nibh, eget ultricies mi feugiat eu. Duis id aliquam enim. Pellentesque quis enim eu dolor bibendum interdum. Cras ultrices erat velit, eu volutpat erat consequat non. Nam ut nibh facilisis, egestas sapien vitae, scelerisque sapien. Nullam tortor ex, convallis vel nisi vitae, efficitur dapibus nunc. In hac habitasse platea dictumst. Nam posuere ligula lorem, sit amet ultricies odio tristique in. Etiam gravida tincidunt mollis. Duis quis nulla ligula. Etiam ut vehicula tellus. Sed ipsum lacus, tincidunt sit amet velit et, aliquet hendrerit erat. Nam sed velit dapibus, congue odio non, ultrices ligula. Suspendisse at quam eu lorem finibus ultricies id tempus lorem. Nulla vel quam luctus, viverra nulla cursus, faucibus tellus.\r\n\r\nPraesent magna ex, posuere at hendrerit varius, auctor a nisl. Nullam sodales erat ut nisl vestibulum luctus. Donec id sagittis orci. Cras imperdiet, erat non dictum feugiat, elit turpis viverra neque, interdum cursus mi turpis vitae dolor. Suspendisse potenti. Aenean et auctor diam, vel eleifend eros. Praesent viverra felis at enim elementum fermentum. Etiam convallis, elit porta molestie condimentum, arcu ligula vestibulum nisi, et aliquet massa tellus quis eros. Aliquam a dignissim tellus, non ullamcorper purus. Phasellus in risus mattis dui vehicula cursus in at urna.\r\n\r\nCurabitur laoreet lorem eu euismod volutpat. Suspendisse vulputate aliquet tempor. Pellentesque purus augue, eleifend a maximus eu, commodo nec felis. Mauris mattis turpis nec volutpat tincidunt. Mauris imperdiet ante at orci mollis sagittis. Etiam lacus risus, consectetur ut dui non, pulvinar pulvinar libero. Aliquam ut rhoncus justo, quis sollicitudin nisi. Proin et iaculis sem. Pellentesque id tempor elit, et tincidunt nunc. Quisque laoreet et massa quis imperdiet. Morbi dapibus, felis sed auctor porttitor, massa nunc sollicitudin urna, non congue odio enim eget nisi. Suspendisse semper vehicula nisl vitae vehicula. Maecenas sed justo quis nisi auctor ultrices. Nam vel dolor fringilla, accumsan nulla eu, rutrum ex. Donec ante quam, molestie vel ex eget, dictum luctus nunc. Phasellus tincidunt libero non quam finibus, at convallis sem laoreet.\r\n\r\nDonec consequat, leo tincidunt elementum consectetur, nisl augue sollicitudin dolor, vel fringilla dui lorem non enim. Morbi id arcu felis. Integer malesuada ex enim, sed consectetur massa condimentum id. In mollis libero eu neque sollicitudin, sit amet interdum orci bibendum. Curabitur tincidunt purus vel vestibulum placerat. Aliquam erat volutpat. Praesent ac eros diam. Mauris ultrices euismod sodales. Vestibulum dui leo, auctor sit amet finibus eu, suscipit eu diam. Cras ac rhoncus turpis, at sagittis mi. Praesent urna metus, euismod vitae nunc eget, suscipit auctor lectus. Pellentesque maximus arcu justo. Duis mi arcu, rutrum et vulputate nec, mattis sit amet risus. Donec posuere velit sed enim accumsan, eu lobortis nulla sagittis.\r\n\r\nDonec viverra consectetur turpis sit amet malesuada. Sed sit amet urna luctus, sodales est porta, aliquam mi. Curabitur et ullamcorper odio, dapibus facilisis nisl. Fusce tortor leo, mattis sit amet massa ut, ultrices aliquam massa. Pellentesque consectetur metus in molestie egestas. Quisque vehicula at mauris ut eleifend. Duis eu ipsum quis ipsum bibendum luctus.\r\n\r\nSed sed viverra diam. Quisque lacinia nisl orci. Fusce vulputate dui ut nunc vulputate feugiat. Praesent felis quam, semper nec dapibus eget, venenatis vitae leo. Maecenas rutrum egestas dapibus. Vestibulum sodales molestie varius. Ut ac laoreet est, nec posuere ipsum. Cras ac eros sapien. Quisque eu dui lorem. Donec congue varius tortor ac ullamcorper. Curabitur vulputate faucibus finibus. Donec tellus neque, euismod ac aliquet at, vehicula in mauris. Vivamus justo nulla, maximus sit amet quam ac, vulputate dapibus purus. Mauris ante urna, posuere varius vehicula sed, fringilla sed quam. In eget ex tincidunt, ultrices elit id, congue quam. Suspendisse congue tristique dolor, rhoncus venenatis purus tempor at.\r\n\r\nVivamus efficitur, odio in tempor rutrum, quam nunc congue orci, non posuere lorem lacus et arcu. Aenean sit amet diam quis dui dapibus semper ac vitae est. Aenean ornare arcu justo, id sodales odio maximus interdum. Curabitur sit amet augue pretium metus bibendum imperdiet vitae vitae nunc. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Nunc euismod ante eu justo mollis dignissim. Maecenas et velit eu lorem laoreet ornare. Sed accumsan est nec rutrum dignissim.\r\n\r\nIn bibendum mattis ligula. Pellentesque gravida felis sed congue viverra. Nam volutpat quam at velit sodales, nec egestas dolor consectetur. Etiam id tortor tincidunt, sollicitudin risus ut, lacinia diam. Morbi consequat euismod justo vitae sagittis. Pellentesque interdum orci ligula, tincidunt maximus nulla sollicitudin sed. Duis finibus odio eros, eget consequat ante tristique ac. Suspendisse at interdum leo. Nunc sagittis ante ac felis iaculis fermentum. Sed elementum dictum dictum. Aliquam eget metus molestie, varius mi ac, auctor quam.", + "__index": "4", + "dateCreated": "Tue, 17 Nov 2015 21:03:57 GMT", + "tag": "care" + } + ], + "store": [ + { + "id": "stone-island", + "title": "STONE ISLAND", + "StoreIsOpen": "false", + "ClosedStoreImages": [ + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/c4473110-6abb-11ea-b603-3b0ffcb8ea11.jpg", + "width": "642", + "height": "838", + "caption": "" + } + ], + "__index": 0, + "dateCreated": "Fri, 20 Nov 2015 00:45:03 GMT", + "collection": "", + "FitsLarge": "false", + "BackgroundIsGray": "false", + "CollectionId": "", + "StoreStatus": "closed", + "OpensOn": "", + "DepartmentId": "", + "StoreClosedMessageOne": "", + "StoreClosedMessageTwo": "", + "FittingCodes": "", + "DepartmentStoreStatus": "closed", + "Departments": [ + { + "text": "S.I. PA/PL SEERSUCKER-TC", + "uri": "PPPNMSC" + } + ], + "GroupBy": "none", + "FilterBy": "none", + "ShowProductNameOnCollectionPage": false, + "NotAvailableInCanada": false, + "FitsLargeText": "", + "SizingFooter": "use_alt_text", + "SizingFooterText": "" + }, + { + "id": "test-environment", + "title": "TEST ENVIRONMENT", + "collection": "", + "CollectionId": "", + "DepartmentId": "", + "Departments": [ + { + "text": "Test Environment", + "uri": "PPSRSCKRSC" + } + ], + "StoreStatus": "closed", + "DepartmentStoreStatus": "closed", + "GroupBy": "none", + "FilterBy": "none", + "ShowProductNameOnCollectionPage": false, + "OpensOn": "", + "StoreClosedMessageOne": "", + "StoreClosedMessageTwo": "", + "FitsLarge": "false", + "FittingCodes": "54160889KL", + "BackgroundIsGray": "false", + "ClosedStoreImages": [ + { + "uri": "https://marsupial.s3.amazonaws.com/stoneisland/cfffd4b0-14b7-11e7-b4a1-69af24d3ff84.jpg", + "width": "580", + "height": "813", + "caption": "" + } + ], + "__index": 1, + "dateCreated": "Sat, 15 Apr 2017 00:26:23 GMT", + "NotAvailableInCanada": false, + "FitsLargeText": "M (size on the label) → fits M/L\r\nL (size on the label) → fits L/XL\r\nXL (size on the label) → fits XL/XXL", + "SizingFooter": "use_alt_text", + "SizingFooterText": "" + } + ] +}
\ No newline at end of file diff --git a/public/elements/close.svg b/public/elements/close.svg new file mode 100644 index 0000000..a6141d9 --- /dev/null +++ b/public/elements/close.svg @@ -0,0 +1,15 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> +<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" + viewBox="0 0 22.3 22.3" enable-background="new 0 0 22.3 22.3" xml:space="preserve"> +<g> + <defs> + <rect id="SVGID_1_" width="22.3" height="22.3"/> + </defs> + <clipPath id="SVGID_2_"> + <use xlink:href="#SVGID_1_" overflow="visible"/> + </clipPath> + <line clip-path="url(#SVGID_2_)" fill="none" stroke="#010101" stroke-width="2" x1="0.7" y1="21.6" x2="21.6" y2="0.7"/> + <line clip-path="url(#SVGID_2_)" fill="none" stroke="#010101" stroke-width="2" x1="0.7" y1="0.7" x2="21.6" y2="21.6"/> +</g> +</svg> diff --git a/public/elements/e-flux-logo.svg b/public/elements/e-flux-logo.svg new file mode 100644 index 0000000..aa0809f --- /dev/null +++ b/public/elements/e-flux-logo.svg @@ -0,0 +1,42 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> +<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" + viewBox="0 0 218.3 65" style="enable-background:new 0 0 218.3 65;" xml:space="preserve"> +<style type="text/css"> + .st0{display:none;} + .st1{display:inline;fill:none;stroke:#000000;} +</style> +<g id="Layer_2" class="st0"> + <circle class="st1" cx="-450.5" cy="-145" r="306"/> + <circle class="st1" cx="81.5" cy="226.3" r="91.8"/> + <circle class="st1" cx="-198.4" cy="357.6" r="91.8"/> + <circle class="st1" cx="273.2" cy="190.3" r="91.8"/> + <circle class="st1" cx="440.5" cy="288.4" r="91.8"/> + <circle class="st1" cx="-129.4" cy="591.6" r="91.8"/> + <circle class="st1" cx="226.7" cy="371" r="91.8"/> + <circle class="st1" cx="368.8" cy="517" r="91.8"/> + <line class="st1" x1="483.5" y1="29" x2="489.5" y2="29"/> + <line class="st1" x1="-63.8" y1="79" x2="511.5" y2="662"/> + <line class="st1" x1="512.5" y1="373" x2="225.5" y2="663"/> + <line class="st1" x1="225.5" y1="85.7" x2="-64.5" y2="371"/> + <line class="st1" x1="225.5" y1="371" x2="226.7" y2="371"/> + <line class="st1" x1="225.5" y1="371" x2="514.8" y2="87"/> +</g> +<g id="Layer_4"> + <g> + <path d="M16.7,51.2c1.7,1.7,4.3,2.5,7.5,2.5c2.4,0,4.4-0.6,6.1-1.8c1.7-1.2,2.7-2.4,3.1-3.8h10.3c-1.6,5.1-4.2,8.8-7.5,10.9 + c-3.4,2.2-7.5,3.3-12.3,3.3c-3.3,0-6.3-0.5-9-1.6s-5-2.6-6.8-4.5c-1.9-2-3.3-4.3-4.3-7s-1.5-5.7-1.5-9c0-3.2,0.5-6.1,1.6-8.8 + c1-2.7,2.5-5.1,4.4-7.1s4.2-3.6,6.9-4.7c2.7-1.1,5.6-1.7,8.8-1.7c3.6,0,6.8,0.7,9.4,2.1c2.7,1.4,4.9,3.3,6.6,5.6 + c1.7,2.4,3,5,3.7,8c0.8,3,1,6.2,0.8,9.4H13.9C14,46.8,15,49.5,16.7,51.2z M29.9,29c-1.4-1.5-3.5-2.3-6.4-2.3 + c-1.9,0-3.4,0.3-4.6,0.9s-2.2,1.4-3,2.3c-0.7,0.9-1.3,1.9-1.6,2.9c-0.3,1-0.5,2-0.5,2.8h18.9C32.3,32.7,31.3,30.5,29.9,29z"/> + <path d="M51.8,36.5h20.5v4.7H51.8V36.5z"/> + <path d="M77.2,26.8V19h7v-3.3c0-3.8,1.2-6.8,3.5-9.2c2.4-2.4,5.9-3.6,10.7-3.6c1,0,2.1,0,3.1,0.1s2.1,0.1,3,0.2V12 + c-1.4-0.2-2.8-0.3-4.3-0.3c-1.6,0-2.7,0.4-3.4,1.1c-0.7,0.7-1,1.9-1,3.7V19h8v7.8h-8v34.6H84.2V26.8H77.2z"/> + <path d="M120.9,2.9v58.5h-11.7V2.9H120.9z"/> + <path d="M158.8,61.5v-5.9h-0.2c-1.5,2.5-3.4,4.2-5.8,5.3c-2.4,1.1-4.8,1.6-7.2,1.6c-3.1,0-5.7-0.4-7.7-1.2s-3.6-2-4.7-3.5 + c-1.1-1.5-2-3.3-2.4-5.5c-0.5-2.2-0.7-4.6-0.7-7.2V19h11.7v24c0,3.5,0.5,6.1,1.6,7.9c1.1,1.7,3,2.6,5.8,2.6c3.2,0,5.5-0.9,6.9-2.8 + c1.4-1.9,2.1-5,2.1-9.3V19h11.7v42.5H158.8z"/> + <path d="M175.6,19h13.3l7.5,11.1l7.4-11.1h12.9l-13.9,19.9l15.7,22.6H205l-8.9-13.4l-8.9,13.4h-13l15.3-22.3L175.6,19z"/> + </g> +</g> +</svg> diff --git a/public/elements/icons_arrow-down.svg b/public/elements/icons_arrow-down.svg new file mode 100755 index 0000000..b800b63 --- /dev/null +++ b/public/elements/icons_arrow-down.svg @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Generator: Adobe Illustrator 24.1.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> +<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" + viewBox="0 0 40 40" style="enable-background:new 0 0 40 40;" xml:space="preserve"> +<polygon points="10.06,16.14 9.51,16.98 20,23.86 30.49,16.98 29.94,16.14 20,22.66 "/> +</svg> diff --git a/public/elements/icons_arrow-left.svg b/public/elements/icons_arrow-left.svg new file mode 100755 index 0000000..ffc7dd0 --- /dev/null +++ b/public/elements/icons_arrow-left.svg @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Generator: Adobe Illustrator 24.1.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> +<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" + viewBox="0 0 40 40" style="enable-background:new 0 0 40 40;" xml:space="preserve"> +<polygon points="23.02,30.49 16.14,20 23.02,9.51 23.86,10.06 17.34,20 23.86,29.94 "/> +</svg> diff --git a/public/elements/icons_arrow-right.svg b/public/elements/icons_arrow-right.svg new file mode 100755 index 0000000..b0807cb --- /dev/null +++ b/public/elements/icons_arrow-right.svg @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Generator: Adobe Illustrator 24.1.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> +<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" + viewBox="0 0 40 40" style="enable-background:new 0 0 40 40;" xml:space="preserve"> +<polygon points="16.98,30.49 16.14,29.94 22.66,20 16.14,10.06 16.98,9.51 23.86,20 "/> +</svg> diff --git a/public/elements/icons_arrow-up.svg b/public/elements/icons_arrow-up.svg new file mode 100755 index 0000000..1a6c776 --- /dev/null +++ b/public/elements/icons_arrow-up.svg @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Generator: Adobe Illustrator 24.1.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> +<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" + viewBox="0 0 40 40" style="enable-background:new 0 0 40 40;" xml:space="preserve"> +<polygon points="10.06,23.86 9.51,23.02 20,16.14 30.49,23.02 29.94,23.86 20,17.34 "/> +</svg> diff --git a/public/elements/icons_audio.svg b/public/elements/icons_audio.svg new file mode 100755 index 0000000..e9e4bd4 --- /dev/null +++ b/public/elements/icons_audio.svg @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Generator: Adobe Illustrator 24.1.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> +<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" + viewBox="0 0 40 40" style="enable-background:new 0 0 40 40;" xml:space="preserve"> +<path d="M29.11,20.37c0,2.48-1.21,4.74-3.23,6.04l-0.57-0.89c1.71-1.1,2.74-3.03,2.74-5.15c0-2.11-1.06-4.09-2.77-5.18l0.57-0.9 + C27.89,15.59,29.11,17.86,29.11,20.37z M10.89,15.5v9h5.02l5.4,4.38V11.12l-5.4,4.38H10.89z"/> +</svg> diff --git a/public/elements/icons_pause.svg b/public/elements/icons_pause.svg new file mode 100755 index 0000000..c281fd1 --- /dev/null +++ b/public/elements/icons_pause.svg @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Generator: Adobe Illustrator 24.1.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> +<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" + viewBox="0 0 40 40" style="enable-background:new 0 0 40 40;" xml:space="preserve"> +<path d="M14.34,12.5h4.16v15h-4.16V12.5z M21.5,27.5h4.17v-15H21.5V27.5z"/> +</svg> diff --git a/public/elements/icons_play.svg b/public/elements/icons_play.svg new file mode 100755 index 0000000..4435cb6 --- /dev/null +++ b/public/elements/icons_play.svg @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Generator: Adobe Illustrator 24.1.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> +<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" + viewBox="0 0 40 40" style="enable-background:new 0 0 40 40;" xml:space="preserve"> +<polygon points="12.5,11 12.5,29 27.5,20 "/> +</svg> diff --git a/public/elements/icons_volume.svg b/public/elements/icons_volume.svg new file mode 100755 index 0000000..b614500 --- /dev/null +++ b/public/elements/icons_volume.svg @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Generator: Adobe Illustrator 24.1.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> +<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" + viewBox="0 0 40 40" style="enable-background:new 0 0 40 40;" xml:space="preserve"> +<path d="M5,25h4.17l0,2.5H5V25z M15.33,27.5h4.17V20h-4.17V27.5z M20.5,27.5h4.17v-10H20.5V27.5z M25.67,27.5h4.17V15h-4.17V27.5z + M30.83,27.5H35v-15h-4.17V27.5z M10.17,27.5h4.17v-5h-4.17V27.5z"/> +</svg> diff --git a/public/elements/icons_zoom-plus.svg b/public/elements/icons_zoom-plus.svg new file mode 100755 index 0000000..22357ef --- /dev/null +++ b/public/elements/icons_zoom-plus.svg @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Generator: Adobe Illustrator 24.1.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> +<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" + viewBox="0 0 40 40" style="enable-background:new 0 0 40 40;" xml:space="preserve"> +<path d="M20,35.5c-8.55,0-15.5-6.95-15.5-15.5c0-8.55,6.95-15.5,15.5-15.5S35.5,11.45,35.5,20C35.5,28.55,28.55,35.5,20,35.5z + M20,5.5C12,5.5,5.5,12,5.5,20c0,8,6.5,14.5,14.5,14.5S34.5,28,34.5,20C34.5,12,28,5.5,20,5.5z M27.5,19.5h-7v-7h-1v7h-7v1h7v7h1v-7 + h7V19.5z"/> +</svg> diff --git a/public/elements/icons_zoom-x.svg b/public/elements/icons_zoom-x.svg new file mode 100755 index 0000000..126a582 --- /dev/null +++ b/public/elements/icons_zoom-x.svg @@ -0,0 +1,10 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Generator: Adobe Illustrator 24.1.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> +<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" + viewBox="0 0 40 40" style="enable-background:new 0 0 40 40;" xml:space="preserve"> +<path d="M30.96,9.04c-6.05-6.05-15.88-6.04-21.93,0c-6.04,6.04-6.04,15.88,0,21.93c3.02,3.02,6.99,4.53,10.96,4.53 + s7.94-1.51,10.96-4.53C37.01,24.92,37.01,15.08,30.96,9.04z M30.26,30.26C27.52,32.99,23.87,34.5,20,34.5s-7.52-1.51-10.26-4.25 + c-5.66-5.66-5.66-14.86,0-20.51C12.57,6.92,16.29,5.5,20,5.5s7.43,1.41,10.26,4.24C33,12.48,34.5,16.13,34.5,20 + S33,27.52,30.26,30.26z M25.66,15.05L20.71,20l4.94,4.94l-0.71,0.71L20,20.71l-4.94,4.94l-0.71-0.71L19.29,20l-4.95-4.95l0.71-0.71 + L20,19.29l4.95-4.95L25.66,15.05z"/> +</svg> diff --git a/public/elements/menu.svg b/public/elements/menu.svg new file mode 100644 index 0000000..98493da --- /dev/null +++ b/public/elements/menu.svg @@ -0,0 +1,19 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> +<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" + viewBox="0 0 30 21" style="enable-background:new 0 0 30 21;" xml:space="preserve"> +<style type="text/css"> + .st0{clip-path:url(#SVGID_2_);fill:none;stroke:#010101;stroke-width:2;} +</style> +<g> + <defs> + <rect id="SVGID_1_" width="30" height="21"/> + </defs> + <clipPath id="SVGID_2_"> + <use xlink:href="#SVGID_1_" style="overflow:visible;"/> + </clipPath> + <line class="st0" x1="0" y1="1" x2="30" y2="1"/> + <line class="st0" x1="0" y1="10.5" x2="30" y2="10.5"/> + <line class="st0" x1="0" y1="20" x2="30" y2="20"/> +</g> +</svg> diff --git a/public/elements/search.svg b/public/elements/search.svg new file mode 100644 index 0000000..8920f82 --- /dev/null +++ b/public/elements/search.svg @@ -0,0 +1,17 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> +<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" + viewBox="0 0 32.4 32.8" enable-background="new 0 0 32.4 32.8" xml:space="preserve"> +<g> + <defs> + <rect id="SVGID_1_" x="1.9" y="2.4" width="29.5" height="29.4"/> + </defs> + <clipPath id="SVGID_2_"> + <use xlink:href="#SVGID_1_" overflow="visible"/> + </clipPath> + <path clip-path="url(#SVGID_2_)" fill="#FFFFFF" d="M13.1,23.7c5.6,0,10.1-4.5,10.1-10.1c0-5.6-4.5-10.1-10.1-10.1S2.9,8,2.9,13.6 + C2.9,19.2,7.5,23.7,13.1,23.7"/> + <circle clip-path="url(#SVGID_2_)" fill="none" stroke="#000000" stroke-width="2" cx="13.1" cy="13.6" r="10.1"/> + <line clip-path="url(#SVGID_2_)" fill="none" stroke="#010101" stroke-width="2" x1="20.3" y1="20.6" x2="30.7" y2="31.1"/> +</g> +</svg> diff --git a/public/favicon.ico b/public/favicon.ico Binary files differnew file mode 100644 index 0000000..6e8e099 --- /dev/null +++ b/public/favicon.ico diff --git a/public/index.html b/public/index.html new file mode 100644 index 0000000..0d215b3 --- /dev/null +++ b/public/index.html @@ -0,0 +1,54 @@ +<!DOCTYPE html> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" class="disable-tweet-animation page-with-columns grayscale-active no-touch is-desktop overlay-content-loaded sidebar-active scroll-down"> +<head> + <meta http-equiv="Content-Type" content="text/html;charset=utf-8" /> + <meta http-equiv="X-UA-Compatible" content="IE=edge" /> + <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1" /> + <title>e-flux: Animism</title> + <meta property="og:title" content="e-flux" /> + <meta property="og:image" content="https://www.e-flux.com/elements/e-flux-logo-fb.png?2" /> + <meta property="og:image:width" content="2000" /> + <meta property="og:image:height" content="2000" /> + <meta property="og:description" content="e-flux is a publishing platform and archive, artist project, curatorial platform, and enterprise which was founded in 1998." /> + <meta name="Description" content="e-flux is a publishing platform and archive, artist project, curatorial platform, and enterprise which was founded in 1998." /> + <link rel="stylesheet" href="/styles/e-flux-fonts.css" /> + <link rel="stylesheet" href="/styles/e-flux.css" /> + <link rel="shortcut icon" href="/favicon.ico" type="image/x-icon"/> +</head> +<body> + +<div class="block-overlay content-ready header-lock"> + + <div class="header header-article"> + <div class="header-article-topline"> + <div class="logo"> + <a href="/"> + <img src="/elements/e-flux-logo.svg" alt="" /> + </a> + </div> + </div> + + <div class="article-topline"> + </div> + + <nav class="menu"> + <ul class="menu-items menu-items-fixed"> + <li class="menu-item menu-item-button button-search show-only-on-mobile js-header-tools" data-headertool="search"> + <img src="/elements/search.svg" alt="" /> + </li> + <li class="menu-item header-article-close-button"> + <a href="/announcements/" class="article-close-link"> + <img src='/elements/close.svg' alt=''> + </a> + </li> + <li class="menu-item menu-item-button button-menu"> + <img src="/elements/menu.svg" alt="" /> + </li> + </ul> + </nav> + </div> + + +</div> +</body> +</html> diff --git a/public/styles/e-flux-fonts.css b/public/styles/e-flux-fonts.css new file mode 100644 index 0000000..5edf0a8 --- /dev/null +++ b/public/styles/e-flux-fonts.css @@ -0,0 +1,63 @@ +@font-face{ + font-family: "Freight Text W01"; + src: url("../webfonts/freigtexprobook-webfont.woff2") format("woff2"), + url("../webfonts/freigtexprobook-webfont.woff") format("woff"); + font-weight: 400; + font-style: normal; +} + +@font-face{ + font-family: "Freight Text W01"; + src: url("../webfonts/freigtexprobookit-webfont.woff2") format("woff2"), + url("../webfonts/freigtexprobookit-webfont.woff") format("woff"); + font-weight: 400; + font-style: italic; +} + +@font-face{ + font-family: "Freight Text W01"; + src: url("../webfonts/freigtexprobold-webfont.woff2") format("woff2"), + url("../webfonts/freigtexprobold-webfont.woff") format("woff"); + font-weight: 700; + font-style: normal; +} + +@font-face{ + font-family: "Freight Text W01"; + src: url("../webfonts/freigtexproboldit-webfont.woff2") format("woff2"), + url("../webfonts/freigtexproboldit-webfont.woff") format("woff"); + font-weight: 700; + font-style: italic; +} + +@font-face{ + font-family: "Neue Haas Unica W01"; + src: url("../webfonts/e0d80810-f7e3-4fea-8c57-ef8116f0465d.woff2") format("woff2"), + url("../webfonts/27645c8a-608b-4abf-a2f1-c4407b576723.woff") format("woff"); + font-weight: 400; + font-style: normal; +} + +@font-face{ + font-family: "Neue Haas Unica W01"; + src: url("../webfonts/cc589c6c-1ce4-4279-8684-c378497d1c68.woff2") format("woff2"), + url("../webfonts/8546c78d-5a38-4c7b-9371-5a70d803922a.woff") format("woff"); + font-weight: 400; + font-style: italic; +} + +@font-face{ + font-family: "Neue Haas Unica W01"; + src: url("../webfonts/39bb8fb3-84a4-4ab8-ae45-db1834f5d807.woff2") format("woff2"), + url("../webfonts/96fd4fb4-75db-412f-986d-d65380ee0ccf.woff") format("woff"); + font-weight: 700; + font-style: normal; +} + +@font-face{ + font-family: "Neue Haas Unica W01"; + src: url("../webfonts/dfa9d078-533c-44d9-9dd9-deaafbff5a96.woff2") format("woff2"), + url("../webfonts/4142b00a-232a-49e8-803c-541f8b932fa1.woff") format("woff"); + font-weight: 700; + font-style: italic; +} diff --git a/public/styles/e-flux.css b/public/styles/e-flux.css new file mode 100644 index 0000000..1a61f3f --- /dev/null +++ b/public/styles/e-flux.css @@ -0,0 +1 @@ +html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:'';content:none}table{border-collapse:collapse;border-spacing:0}#breakpoint-indicator{display:none}@media (min-width: 1024px){#breakpoint-indicator{width:3px}}@media (max-width: 1023px){#breakpoint-indicator{width:1px}}html,body,input{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:18px;line-height:1.1;color:#232323}img{display:block}a{text-decoration:none;color:inherit}b,strong{font-weight:bold}i,em{font-style:italic}html{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;word-wrap:break-word;box-sizing:border-box;overflow-y:scroll;overflow-x:hidden;width:100%}html.page-with-columns{height:100%}html.no-scroll-y{overflow-y:scroll}html.no-scroll-y body{overflow-y:hidden;height:100vh}*,*:before,*:after{box-sizing:inherit}body{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:18px;line-height:1.1;position:relative;-webkit-font-smoothing:antialiased}html.page-with-columns body{height:100%}.clickable-block,.js-link{cursor:pointer;-moz-user-select:-moz-none;-ms-user-select:none;-webkit-user-select:none;user-select:none}.header{position:fixed;top:0;width:100%;z-index:300}.header-columns{background-image:url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIvPjxzdG9wIG9mZnNldD0iNTAlIiBzdG9wLWNvbG9yPSIjZmZmZmZmIi8+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjZmZmZmZmIiBzdG9wLW9wYWNpdHk9IjAuMCIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');background-size:100%;background-image:-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff),color-stop(50%, #ffffff),color-stop(100%, rgba(255,255,255,0)));background-image:-moz-linear-gradient(top, #ffffff 0%,#ffffff 50%,rgba(255,255,255,0) 100%);background-image:-webkit-linear-gradient(top, #ffffff 0%,#ffffff 50%,rgba(255,255,255,0) 100%);background-image:linear-gradient(to bottom, #ffffff 0%,#ffffff 50%,rgba(255,255,255,0) 100%);height:180px;padding:0 32px}.header-top-bar{zoom:1;font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:14px;line-height:1.1;margin-top:23px}.header-top-bar:before,.header-top-bar:after{content:"";display:table}.header-top-bar:after{clear:both}@media (max-width: 1023px){.header-top-bar{font-size:12px}}.header-top__navi{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:18px;font-weight:normal;line-height:1.2;display:flex;float:left;width:calc(100% - 90px)}.header-top__navi-item{position:relative}.no-touch .header-top__navi-item a:hover{text-decoration:underline}.header-top__navi-item+.header-top__navi-item{margin-left:24px}.menu{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:18px;line-height:1.1;float:right;position:relative;z-index:10}.menu-main .menu{margin-top:19px}.menu-items{zoom:1}.menu-items:before,.menu-items:after{content:"";display:table}.menu-items:after{clear:both}.menu-items-fixed{position:fixed;top:23px;right:32px}.header-tools-active .menu-items-fixed{top:71px}.menu-item{cursor:pointer;-moz-user-select:-moz-none;-ms-user-select:none;-webkit-user-select:none;user-select:none;-moz-transition:text-decoration 100ms ease-in-out;-o-transition:text-decoration 100ms ease-in-out;-webkit-transition:text-decoration 100ms ease-in-out;transition:text-decoration 100ms ease-in-out;float:left}.menu-item+.menu-item{margin-left:28px}.header-article .menu-item+.menu-item{margin-left:34px}.menu-item+.menu-item.button-menu-close{margin-left:33px}.menu-item.menu-item-active,.no-touch .menu-item:hover{text-decoration:underline}.menu-item-button{cursor:pointer}.button-search img{height:28px;margin-top:-3px;width:auto}.menu-main .button-search{display:none}.button-search.menu-item-active{opacity:0.4}.button-search-white{display:none !important}.menu-main .button-search-white{display:block !important}.button-menu img{height:20px;margin-top:1px;width:auto}.menu-main-overlay.show .button-menu{display:none}.button-menu-close{display:none;margin-right:2px}.button-menu-close img{height:22px;width:auto}.menu-main-overlay.show .button-menu-close{display:block}.logo{display:inline-block;margin-top:26px}.logo img{height:68px;opacity:.88;width:auto}.logo-architecture{display:none;height:26px;position:absolute;left:125px;top:21px}.logo-architecture img{height:100%;width:auto}.show-architecture .logo-architecture{display:block}.header-columns .logo-architecture{left:280px;top:78px;height:61px}.menu-main-overlay{-moz-transition:opacity 250ms ease-in-out;-o-transition:opacity 250ms ease-in-out;-webkit-transition:opacity 250ms ease-in-out;transition:opacity 250ms ease-in-out;bottom:0;display:none;left:0;top:0;right:0;opacity:0;position:absolute;z-index:600}.menu-main-overlay.show{display:block}.menu-main-overlay.showing{opacity:1}.header-tools-active .menu-main-overlay{margin-top:48px}.menu-main{background-color:#232323;bottom:0;color:#fff;padding-left:32px;padding-right:32px;padding-top:4px;position:fixed;right:0;top:0;width:510px;z-index:600}.menu-main-items-container{zoom:1;clear:right;overflow:hidden;max-height:calc(100% - 130px);position:absolute;top:0;bottom:0;left:0;right:0;padding-left:30px}.menu-main-items-container:before,.menu-main-items-container:after{content:"";display:table}.menu-main-items-container:after{clear:both}.wrap-menu-main-items{overflow-y:auto;padding-top:24px;width:calc(100% + 17px);padding-right:49px;height:100%}.menu-main-items+.menu-main-items{clear:right;margin-top:41px}.menu__item,.menu-main-item{-moz-transition:text-decoration 100ms ease-in-out;-o-transition:text-decoration 100ms ease-in-out;-webkit-transition:text-decoration 100ms ease-in-out;transition:text-decoration 100ms ease-in-out}.menu__item+.menu__item,.menu-main-item+.menu__item,.menu__item+.menu-main-item,.menu-main-item+.menu-main-item{margin-top:11px}.menu__item+.menu-main-item--app,.menu-main-item+.menu-main-item--app{margin-top:41px}.no-touch .menu-main-item a:hover .menu-main-item-extern{opacity:1}.menu-main-item-extern{display:inline-block;background-image:url("../elements/icon_extern.svg");background-position:center;background-repeat:no-repeat;background-size:contain;opacity:0;width:13px;height:15px;margin-left:7px}.no-touch .menu-main-item:hover{text-decoration:underline}.menu-main__bottom{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:14px;line-height:1.2;bottom:0;margin-bottom:21px;position:absolute;right:30px;left:30px;display:flex}.menu-main__bottom-column{width:100%}.menu-main__bottom-column+.menu-main__bottom-column{margin-left:30px}.menu-main__bottom-links+.menu-main__bottom-links{margin-top:17px}.menu-main__bottom-link+.menu-main__bottom-link{margin-top:1px}.menu-main__bottom-address{margin-top:17px}.menu__item-accordion-title{cursor:pointer;-moz-user-select:-moz-none;-ms-user-select:none;-webkit-user-select:none;user-select:none}.no-touch .menu__item-accordion-title:hover{text-decoration:underline}.menu__item-accordion-title:after{-moz-transition:-moz-transform 275ms ease-in-out;-o-transition:-o-transform 275ms ease-in-out;-webkit-transition:-webkit-transform 275ms ease-in-out;transition:transform 275ms ease-in-out;-moz-transform:scale(1);-ms-transform:scale(1);-webkit-transform:scale(1);transform:scale(1);content:"";width:20px;height:8px;background-image:url("../elements/arrow_down_white.svg");background-position:center;background-size:contain;background-repeat:no-repeat;display:inline-block;margin-left:4px;position:relative;top:-1px}.menu__item-accordion--active .menu__item-accordion-title:after{-moz-transform:scale(-1);-ms-transform:scale(-1);-webkit-transform:scale(-1);transform:scale(-1)}.menu__item-accordion-items{display:none;margin-top:11px;color:#929292}.content{zoom:1;padding-left:32px;padding-right:32px;position:relative;z-index:11}.content:before,.content:after{content:"";display:table}.content:after{clear:both}.header-article+.content{padding-top:153px}.header-article+.content.content-video{padding-top:0;margin-top:70px}.contentonly .content-article{margin-top:26px}.content-home,.content-columns{height:100%}.content-columns{overflow-x:scroll;overflow-y:hidden;position:absolute;width:100%;-webkit-overflow-scrolling:touch;z-index:1}.content-columns::-webkit-scrollbar{cursor:pointer;-moz-user-select:-moz-none;-ms-user-select:none;-webkit-user-select:none;user-select:none;height:8px}.content-columns::-webkit-scrollbar-button{display:block;width:0;height:0}.content-columns::-webkit-scrollbar-track-piece{background:rgba(211,211,211,0.8)}.content-columns::-webkit-scrollbar-thumb{display:block;background:#000}@media (min-height: 1024px){.content-columns::-webkit-scrollbar{height:16px}}.content-columns.hover::-webkit-scrollbar{height:24px}@media (min-height: 1024px){.content-columns.hover::-webkit-scrollbar{height:48px}}@media (max-width: 1024px){.is-mobile .content-columns{overflow-x:hidden}}.panels-gradient{background-image:url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIwLjAiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmZmZmZmYiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyYWQpIiAvPjwvc3ZnPiA=');background-size:100%;background-image:-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, rgba(255,255,255,0)),color-stop(100%, #ffffff));background-image:-moz-linear-gradient(top, rgba(255,255,255,0) 0%,#ffffff 100%);background-image:-webkit-linear-gradient(top, rgba(255,255,255,0) 0%,#ffffff 100%);background-image:linear-gradient(to bottom, rgba(255,255,255,0) 0%,#ffffff 100%);bottom:0;display:none;height:30vh;left:0;opacity:.7;position:absolute;width:100%}.show-panels-gradient .panels-gradient{display:block}.panels{zoom:1;height:100%;width:10000px}.panels:before,.panels:after{content:"";display:table}.panels:after{clear:both}.panel-container{zoom:1;float:left;height:100%}.panel-container:before,.panel-container:after{content:"";display:table}.panel-container:after{clear:both}.panel-container+.panel-container{margin-left:64px}.panel-container-last{margin-right:6em}.panel-label{float:left;height:200px;margin-top:180px;position:relative;width:32px}.no-touch .panel-container.hover .panel-label{font-weight:600}.panel-label-text{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:18px;line-height:1.1;letter-spacing:0.03em;-moz-transform:rotate(-90deg) translateX(-100%);-ms-transform:rotate(-90deg) translateX(-100%);-webkit-transform:rotate(-90deg) translateX(-100%);transform:rotate(-90deg) translateX(-100%);-webkit-transform-origin:top left;-ms-transform-origin:top left;transform-origin:top left;border-right:8px solid #232323;height:32px;left:0;padding:6px 17px;position:absolute;top:0;white-space:nowrap}.panel-label-text span{cursor:default}.panel-scrolling-container{float:left;height:100%;overflow:hidden;width:100%;position:relative}.panel-label+.panel-scrolling-container{padding-left:32px}.panel-scrolling-area{height:100%;overflow-y:auto;overflow-x:hidden;width:calc(100% + 60px);-webkit-overflow-scrolling:touch;position:relative}.panel-items{float:left;margin-top:180px;width:calc(100% - 60px)}.panel-scrolling-container:not(.panel-height-full) .panel-items{margin-bottom:100px}.ad-panel.panel-width-small .panel-items{border:4px solid #2a2a2a;height:calc(100vh - 180px - 30px);padding:19px 16px}.panel-width-ratio .panel-items{height:calc(100vh - 180px - 30px)}.js-qtip-content{display:none}.qtip{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:14px;line-height:1.25;max-width:370px}.qtip-content{padding:9px 12px 10px}.qtip-content p+p,.qtip-content h1+p,.qtip-content p+h1{margin-top:1em}.qtip-content a{font-weight:bold}.qtip-default{background-color:#fff;border:1px solid #232323;color:#232323}.tooltip-active{overflow-y:hidden}.panel-width-xxlarge{width:1148px}.panel-width-xlarge{width:700px}.panel-width-large{width:536px}.panel-width-medium{width:400px}.panel-width-medium-event{width:450px}.panel-width-small{width:304px}.panel-width-xsmall{width:272px}.panel-width-auto{width:auto}.panel-items .preview-item{width:100%}.panel-items .preview-item-announcement+.preview-item-announcement,.panel-items .preview-item-agenda+.preview-item-agenda,.panel-items .preview-item-education+.preview-item-education,.panel-items .preview-item-announcement+.preview-item-editorial,.panel-items .preview-item-editorial+.preview-item-announcement,.panel-items .preview-item-editorial+.preview-item-editorial,.panel-items .preview-item-artagendareview+.preview-item-artagendareview,.panel-items .preview-item-arteducationitem+.preview-item-arteducationitem,.panel-items .preview-item-feature+.preview-item-feature,.panel-items .preview-item-tv+.preview-item-tv{margin-top:4em}.panel-items .preview-item-event+.preview-item-event{margin-top:46px}.panel-items .preview-item-project+.preview-item-project{margin-top:50px}.panel-items .preview-item-journal+.preview-item-journal{margin-top:117px}.panel-items .preview-item-conversation+.preview-item-conversation{margin-top:48px}.grayscale-active .panel-items .preview-item-image img,.grayscale-active .panel-items .preview-item-iframe-video iframe{-webkit-filter:grayscale(100%);filter:grayscale(100%);-moz-transition:opacity 100ms ease-in-out,filter 100ms ease-in-out,-webkit-filter 100ms ease-in-out;-o-transition:opacity 100ms ease-in-out,filter 100ms ease-in-out,-webkit-filter 100ms ease-in-out;-webkit-transition:opacity 100ms ease-in-out,filter 100ms ease-in-out,-webkit-filter 100ms ease-in-out;transition:opacity 100ms ease-in-out,filter 100ms ease-in-out,-webkit-filter 100ms ease-in-out;opacity:.8}.no-touch.grayscale-active .panel-items:hover .preview-item-image img,.no-touch.grayscale-active .panel-items:hover .preview-item-iframe-video iframe,.is-touch.grayscale-active .panel-items .preview-item-image img,.is-touch.grayscale-active .panel-items .preview-item-iframe-video iframe{-webkit-filter:grayscale(0);filter:grayscale(0);opacity:1}.ad-panel .panel-items{margin-bottom:0px !important;max-height:900px}.preview-item-client{-moz-transition:text-decoration 100ms ease-in-out;-o-transition:text-decoration 100ms ease-in-out;-webkit-transition:text-decoration 100ms ease-in-out;transition:text-decoration 100ms ease-in-out;display:block}.no-touch .preview-item-client a:hover{text-decoration:underline}.wrap-preview-item-image{-moz-transition:opacity 250ms ease-in-out;-o-transition:opacity 250ms ease-in-out;-webkit-transition:opacity 250ms ease-in-out;transition:opacity 250ms ease-in-out;opacity:0;position:relative;margin-left:auto;margin-right:auto}.related-item .wrap-preview-item-image,.panel-item-journalarticle .wrap-preview-item-image,.preview-item--left-aligned .wrap-preview-item-image{margin-left:0}.wrap-preview-item-image .lazy{position:absolute !important;top:0;left:0}.preview-collection .wrap-preview-item-image,.preview-collection-item .wrap-preview-item-image{margin-left:0;margin-right:auto}.preview-item-image.lazy-loaded .wrap-preview-item-image{opacity:1}.preview-item-image.js-ratio-width{display:block}.preview-item-image img{margin:0 auto}.related-item .preview-item-image img,.panel-item-journalarticle .preview-item-image img{margin-left:0}.preview-item-book .preview-item-image img,.content:not(.content-home) .preview-item-project .preview-item-image img{float:left;height:100%;width:auto}.preview-item-book .preview-item-image img+img,.content:not(.content-home) .preview-item-project .preview-item-image img+img{margin-left:10px}.preview-item-book .preview-item-image{float:left}.panel-height-full .preview-item-image{height:calc(100vh - 180px - 30px)}.header-tools-active .panel-height-full .preview-item-image{height:calc(100vh - 180px - 48px - 30px)}.preview-item-book .preview-item-image+.preview-item-image{margin-left:16px}.preview-item-image .lazy{position:relative;left:0;z-index:1}.preview-item-image--comingsoon:after{display:block;content:'Coming soon';border:1px solid;position:absolute;left:50%;top:50%;transform:translate(-50%, -50%);font-size:16px;line-height:1;z-index:1;text-transform:uppercase;padding:1em 1.5em}.preview-item-image--comingsoon img{filter:grayscale(1);opacity:0.05}.preview-item{position:relative}.preview-item.hidden-placeholder .lazy-placeholder{opacity:0}.preview-item .lazy-placeholder{-moz-transform:translateX(-50%);-ms-transform:translateX(-50%);-webkit-transform:translateX(-50%);transform:translateX(-50%);-moz-transition:opacity 250ms ease-in-out;-o-transition:opacity 250ms ease-in-out;-webkit-transition:opacity 250ms ease-in-out;transition:opacity 250ms ease-in-out;position:absolute;height:100%;top:0;left:50%;right:0;bottom:0;opacity:1}.js-open-journal{cursor:pointer;-moz-user-select:-moz-none;-ms-user-select:none;-webkit-user-select:none;user-select:none}.preview-item-iframe-video{width:100%;position:relative}.preview-item-iframe-video iframe{width:100%}.preview-item-iframe-video:before{content:"";position:absolute;top:0;left:0;width:100%;height:100%;z-index:10}.preview-item-subtitle{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:14px;line-height:1.1;text-align:center}@media (max-width: 1023px){.preview-item-subtitle{font-size:12px}}.preview-item-image+.preview-item-subtitle,.preview-item-iframe-video+.preview-item-subtitle{margin-top:22px}.preview-item-agenda .preview-item-subtitle{text-transform:uppercase}.preview-item-editorial .preview-item-subtitle{zoom:1;text-align:left}.preview-item-editorial .preview-item-subtitle:before,.preview-item-editorial .preview-item-subtitle:after{content:"";display:table}.preview-item-editorial .preview-item-subtitle:after{clear:both}.preview-item-editorial .preview-item-subtitle .subtitle-left{float:left;width:60%}.preview-item-editorial .preview-item-subtitle .subtitle-right{float:right;text-align:right;width:40%}.preview-item-title+.preview-item-subtitle{margin-top:18px}.preview-item-title{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:21px;font-weight:normal;line-height:1.1;text-align:center}@media (max-width: 1023px){.preview-item-title{font-size:18px;line-height:1.2}}.preview-item-journal .preview-item-title{text-decoration:underline}.preview-item-subtitle+.preview-item-title{margin-top:4px}.preview-item-editorial .preview-item-subtitle+.preview-item-title{margin-top:54px}.preview-item-image+.preview-item-title,.preview-item-iframe-video+.preview-item-title{margin-top:30px}.preview-item-arteducationitem .preview-item-image+.preview-item-title,.preview-item-arteducationitem .preview-item-iframe-video+.preview-item-title{margin-top:18px}.preview-item-announcement .preview-item-title,.preview-item-agenda .preview-item-title,.preview-item-education .preview-item-title{margin-left:auto;margin-right:auto;max-width:80%}.preview-item-book .preview-item-title{text-align:left}.preview-item-book-author+.preview-item-title{margin-top:4px}.preview-item-editorial .preview-item-title{font-family:"Freight Text W01",Georgia,serif;font-size:44px;line-height:1.1;max-width:75%;text-align:left}.preview-item-headline+.preview-item-title{margin-top:20px}.preview-item-project .preview-item-title{width:100%}.ad-sidebar .preview-item-title{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:18px;font-weight:bold;line-height:1.1}.ad-sidebar .preview-item-headline+.preview-item-title{margin-top:31px}.preview-item-headline{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:14px;line-height:1.1;text-align:center;text-decoration:underline}@media (max-width: 1023px){.preview-item-headline{font-size:12px}}.preview-item-image+.preview-item-headline{margin-top:22px}.preview-item-details{text-align:center}.preview-item--left-aligned .preview-item-details{text-align:left}.preview-item-title+.preview-item-details{margin-top:25px}.preview-item-image+.preview-item-details{margin-top:30px}.preview-item-details+.preview-item-details{margin-top:25px}.preview-item-details--first{padding-top:25px;clear:both}.preview-item-details--comingsoon{opacity:0.2}.preview-item-details__comingsoon{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:14px;line-height:1.1;display:block;text-transform:uppercase;margin-bottom:0.5em}@media (max-width: 1023px){.preview-item-details__comingsoon{font-size:12px}}.preview-item-details-authors{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:14px;line-height:1.1;display:block}@media (max-width: 1023px){.preview-item-details-authors{font-size:12px}}.preview-item-details-title{font-family:"Freight Text W01",Georgia,serif;font-size:21px;line-height:1.1;display:block}@media (max-width: 1023px){.preview-item-details-title{font-size:18px;line-height:1.2}}.preview-item-details-section+.preview-item-details-title{margin-top:4px}.preview-item-details-section{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:14px;line-height:1.1;display:block}@media (max-width: 1023px){.preview-item-details-section{font-size:12px}}.preview-item-image+.preview-item-post{margin-top:30px}.preview-item-post-title{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:21px;font-weight:normal;line-height:1.1}@media (max-width: 1023px){.preview-item-post-title{font-size:18px;line-height:1.2}}.preview-item-post-title span{font-family:"Freight Text W01",Georgia,serif;font-weight:400}.preview-item-post-source{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:14px;line-height:1.1;color:#6b6b6b}@media (max-width: 1023px){.preview-item-post-source{font-size:12px}}.preview-item-post-title+.preview-item-post-source{margin-top:13px}.preview-item-text{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:18px;font-weight:normal;line-height:1.2;clear:left}.preview-item-text p+p,.preview-item-text p+h2,.preview-item-text p+h3{margin-top:1.2em}.preview-item-text a{text-decoration:underline}.preview-item-text h2,.preview-item-text h3{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:18px;font-weight:bold;line-height:1.2}.preview-item-textcolumn .preview-item-text h2,.preview-item-textcolumn .preview-item-text h3{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:21px;font-weight:normal;line-height:1.1;text-decoration:underline}@media (max-width: 1023px){.preview-item-textcolumn .preview-item-text h2,.preview-item-textcolumn .preview-item-text h3{font-size:18px;line-height:1.2}}.preview-item-text ul+h3{margin-top:1.2em}.preview-item-book .preview-item-text,.preview-item-editorial .preview-item-text{font-family:"Freight Text W01",Georgia,serif;font-size:15px;line-height:1.5}.preview-item-book .preview-item-text p+p,.preview-item-editorial .preview-item-text p+p{margin-top:1.5em}.preview-item-editorial .preview-item-title+.preview-item-text{margin-top:50px}.preview-item-book-buttons+.preview-item-text{margin-top:10px}.preview-item-info-title+.preview-item-text,.preview-item-info-url+.preview-item-text{margin-top:1em}.preview-item-title+.preview-item-text{margin-top:22px}.ad-sidebar .preview-item-title+.preview-item-text{margin-top:10px}.preview-item-text.preview-item-text-announcements{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:18px;line-height:1.2}.preview-item-info-title{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:21px;font-weight:normal;line-height:1.1}@media (max-width: 1023px){.preview-item-info-title{font-size:18px;line-height:1.2}}.preview-item-info-title.client-name{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:21px;font-weight:bold;line-height:1.1}.preview-item-book{zoom:1}.preview-item-book:before,.preview-item-book:after{content:"";display:table}.preview-item-book:after{clear:both}.preview-item-book+.preview-item-book{margin-top:82px}.preview-item-book:last-child{margin-bottom:30px}.preview-item-book-infos{float:left;padding-right:32px;width:304px}.preview-item-book-author{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:14px;line-height:1.1}@media (max-width: 1023px){.preview-item-book-author{font-size:12px}}.preview-item-book-buttons{zoom:1}.preview-item-book-buttons:before,.preview-item-book-buttons:after{content:"";display:table}.preview-item-book-buttons:after{clear:both}.preview-item-title+.preview-item-book-buttons{margin-top:12px}.preview-item-book-button{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:14px;line-height:1.1;border:1px solid #2a2a2a;padding:9px 10px;float:left;margin-right:12px;margin-top:12px}@media (max-width: 1023px){.preview-item-book-button{font-size:12px}}.preview-item-book-readmore{font-family:"Freight Text W01",Georgia,serif;font-size:15px;line-height:1.5;margin-top:21px;display:inline-block;text-decoration:underline}.preview-item-project{zoom:1}.preview-item-project:before,.preview-item-project:after{content:"";display:table}.preview-item-project:after{clear:both}.preview-item-project:last-child{margin-bottom:30px}.preview-item-project.preview-item-project-homepage .preview-item-image+.preview-item-project-infos{margin-left:0 !important;margin-top:22px !important}.content:not(.content-home) .preview-item-project-infos{float:left;width:304px}.content:not(.content-home) .preview-item-image+.preview-item-project-infos{margin-left:32px;margin-top:0}.content:not(.content-home) .panel-height-full .preview-item-project-infos{height:calc(100vh - 150px);overflow:hidden}.preview-item-image+.preview-item-project-infos{margin-top:17px}.content.content-columns .panel-width-large .preview-item-project-infos{width:100%}.preview-item-project-infos-scrolling-area{-webkit-overflow-scrolling:touch;height:100%;overflow-y:auto;overflow-x:hidden;width:calc(100% + 60px)}.preview-item-project-infos-scrolling-content{margin-bottom:64px;width:calc(100% - 60px)}.preview-item-project-button{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:16px;line-height:1.1;background-color:#232323;color:#fff;display:inline-block;padding:12px 16px 13px;text-transform:capitalize}.preview-item-text+.preview-item-project-button{margin-top:20px}.preview-item-video .preview-item-image{position:relative;overflow:hidden;width:100%}.preview-item-video .preview-item-image video{position:absolute;top:0;left:0;width:100%;height:100%}.preview-item-iframe{height:100%}.preview-item-iframe-tagline{padding:1.6em 0.6em;position:absolute;z-index:1;bottom:0;width:100%;text-align:center;font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:16px;line-height:1.1}.preview-item-iframe-iframe{width:100%;height:100%}.preview-item-editorial{border:1px solid #2a2a2a;padding:32px}.panel-items-divider{border-top:1px dashed #232323;text-align:center}.preview-item-announcement+.panel-items-divider{margin-top:43px;padding-top:47px}.preview-item-journal+.panel-items-divider{margin-top:90px;padding-top:51px}.inline-newsletter+.panel-items-divider{padding-top:47px}.panel-items-divider+.preview-item{margin-top:43px}.panel-items-headline{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:14px;line-height:1.1}@media (max-width: 1023px){.panel-items-headline{font-size:12px}}.panel-items-title{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:21px;font-weight:normal;line-height:1.1;text-decoration:underline}@media (max-width: 1023px){.panel-items-title{font-size:18px;line-height:1.2}}.panel-items-headline+.panel-items-title{margin-top:4px}.preview-item-info-url{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:14px;line-height:1.1}@media (max-width: 1023px){.preview-item-info-url{font-size:12px}}.header-article-close-button{float:left}.header-article-close-button img{height:23px;width:auto}.header-article{-moz-transition:top 250ms ease-in-out;-o-transition:top 250ms ease-in-out;-webkit-transition:top 250ms ease-in-out;transition:top 250ms ease-in-out;height:70px;border-bottom:1px dashed #232323;border-left:8px solid #2a2a2a;background-color:rgba(255,255,255,0.9);padding-right:32px}.header-article .logo{margin-top:0;float:left;position:fixed;top:20px;left:28px;background-color:transparent}.header-tools-active .header-article .logo{top:68px}.header-article .logo img{height:28px}.header-article .menu{margin-top:25px}.header-article-topline{height:100%;position:absolute}.article-topline{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:14px;line-height:1.1;-moz-transform:translate(-50%, -50%);-ms-transform:translate(-50%, -50%);-webkit-transform:translate(-50%, -50%);transform:translate(-50%, -50%);left:50%;position:absolute;text-align:center;top:50%;width:calc(100vw - 530px)}.show-architecture .article-topline{width:calc(100vw - 660px)}.header__subscribe{cursor:pointer;-moz-user-select:-moz-none;-ms-user-select:none;-webkit-user-select:none;user-select:none;-moz-transform:translateY(-50%);-ms-transform:translateY(-50%);-webkit-transform:translateY(-50%);transform:translateY(-50%);font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:18px;line-height:1.1;position:absolute;right:152px;top:50%}.header__subscribe--hidden{opacity:0}.block-title{margin-left:160px;margin-right:58px;position:relative}.block-title em,.block-title i{font-style:italic}.article-headline{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:14px;line-height:1.1}@media (max-width: 1023px){.article-headline{font-size:12px}}.article-section{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:36px;line-height:normal;font-weight:normal;margin-top:1em}@media (max-width: 1023px){.article-section{font-size:18px;line-height:1.2}}.article-authors{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:36px;line-height:normal;font-weight:normal;margin-top:1em;margin-bottom:0.15em}@media (max-width: 1023px){.article-authors{font-size:18px;line-height:1.2}}.article-section+.article-authors{margin-top:0}.article-title{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:62px;line-height:1.1;font-weight:bold;width:76%}@media (max-width: 1023px){.article-title{font-size:23px;line-height:1.2}}.article-headline+.article-title{margin-top:69px}.article-title.announcement-article-title{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:34px;line-height:1.1;font-weight:bold}@media (max-width: 1023px){.article-title.announcement-article-title{font-size:23px}}.article-headline+.article-title.announcement-article-title{margin-top:22px}.article-subtitle{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:18px;font-weight:bold;line-height:1.1}.article-title+.article-subtitle{margin-top:14px}.block-article-media{margin-left:-32px;margin-right:-32px;overflow:hidden;margin-bottom:77px;z-index:1}.block-title+.block-article-media{margin-top:65px}.block-title-announcement+.block-article-media{margin-top:49px}.block-article-media.block-article-video{position:relative;height:auto}.block-article-media.block-article-video:after{content:"";padding-bottom:56.25%;display:block}.block-article-media.block-article-video iframe{position:absolute;top:0;left:0;width:100%;height:100%}.block-article-media.block-article-book{height:100vh;width:calc(100% + 64px);overflow-x:scroll}.block-article-slideshow .article-slide-image{position:relative}.block-article-slideshow .article-slide-image img{width:100%;height:auto;position:absolute;top:0;left:0}.article-slide{position:absolute;top:0;left:0;right:0;bottom:0}.article-slide:first-child{position:relative}.article-book-slider{zoom:1;padding-top:104px;width:9999px}.article-book-slider:before,.article-book-slider:after{content:"";display:table}.article-book-slider:after{clear:both}.article-book-image{margin-left:32px;height:calc(100vh - 213px);float:left}.article-book-image img{height:100%;width:auto}.footnote-reference{cursor:pointer;-moz-user-select:-moz-none;-ms-user-select:none;-webkit-user-select:none;user-select:none;position:relative;top:-0.4em;font-size:0.778em;vertical-align:baseline}.slideshow-navigation-arrow{cursor:pointer;-moz-user-select:-moz-none;-ms-user-select:none;-webkit-user-select:none;user-select:none;position:absolute;top:0;bottom:0;width:400px;z-index:100}.slideshow-navigation-arrow:after{content:"";display:block;background-repeat:no-repeat;background-size:contain;width:20px;height:50px;position:absolute;top:50%;-moz-transform:translateY(-50%);-ms-transform:translateY(-50%);-webkit-transform:translateY(-50%);transform:translateY(-50%)}.slideshow-navigation-arrow-prev{left:0}.slideshow-navigation-arrow-prev:after{content:"";left:20px;background-image:url("../elements/arrow_prev_white.svg")}.slideshow-navigation-arrow-next{right:0}.slideshow-navigation-arrow-next:after{content:"";right:20px;background-image:url("../elements/arrow_next_white.svg")}.article-content{zoom:1;position:relative}.article-content:before,.article-content:after{content:"";display:table}.article-content:after{clear:both}.block-title+.article-content{margin-top:63px}.with-map .block-text{margin-bottom:65px}.block-text{font-family:"Freight Text W01",Georgia,serif;font-size:18px;line-height:1.5;float:left;margin-bottom:220px;margin-left:160px;max-width:900px;width:calc(100% - 592px)}.block-text p+p,.block-text p+blockquote,.block-text blockquote+p,.block-text h2+p,.block-text p+h2,.block-text blockquote+h2,.block-text h2+blockquote,.block-text h3+p,.block-text .inline-image+h2{margin-top:27px}.block-text p+h3{margin-top:50px}.block-text p+.article-x{margin-top:31px}.block-text strong,.block-text b{font-weight:bold}.block-text em,.block-text i{font-style:italic}.block-text a{text-decoration:underline}.block-text blockquote{font-family:"Freight Text W01",Georgia,serif;font-size:16px;line-height:1.65;color:#6b6b6b;padding-left:64px}.block-text h2{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:42px;line-height:1.1;font-weight:bold;clear:left}@media (max-width: 1023px){.block-text h2{font-size:23px;line-height:1.2}}.block-text h3{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:26px;line-height:1.1;font-weight:bold}.block__chat{width:100%;margin-top:50px;filter:invert(1) grayscale(1)}.article-x{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:18px;line-height:1.1}.block-text-copy{font-family:"Freight Text W01",Georgia,serif;font-size:14px;line-height:1.25;margin-top:29px}.text-copyright{font-family:"Freight Text W01",Georgia,serif;font-size:13px;line-height:1.35;margin-top:29px}.text-copyright p+p{margin-top:17px}.sidebar{float:right;width:304px;position:absolute;right:96px;top:0;height:100%}.sidebar.with-sidebar-ad{padding-bottom:504px}.sidebar.with-sidebar-bookdetails.with-sidebar-tags .sidebar-item-details,.sidebar.with-sidebar-bookdetails.with-sidebar-ad .sidebar-item-details,.sidebar.with-sidebar-bookdetails.with-sidebar-event .sidebar-item-details{margin-bottom:61px}.sidebar-item+.sidebar-item{margin-top:65px}.sidebar-item-details{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:14px;line-height:1.3;color:#6b6b6b;margin-bottom:18px;position:relative;z-index:1}.sidebar-item-details p+p{margin-top:18px}.sidebar-item-details.sidebar-tv{color:#232323;border:1px solid #232323;padding:24px 20px 20px 20px}*+.sidebar-tv-published,*+.sidebar-tv-credits,*+.sidebar-tv-appears{margin-top:22px}.sidebar-tv-appears-list li{white-space:nowrap;width:100%;overflow:hidden;text-overflow:ellipsis}.inline-carousel{margin-bottom:27px;margin-left:-160px;position:relative;z-index:1}p+.inline-carousel,h2+.inline-carousel{margin-top:27px}.inline-carousel+p,.inline-carousel+h2{margin-top:51px}.inline-carousel.inline-comic .js-inline-carousel{background-color:#3D3D3D}.inline-carousel.inline-comic .carousel-cell-caption{color:#929292}.inline-carousel.inline-comic .carousel-expand{height:calc(90vh - 120px)}.inline-fullscreen-button{-moz-transition:opacity 100ms ease-in-out;-o-transition:opacity 100ms ease-in-out;-webkit-transition:opacity 100ms ease-in-out;transition:opacity 100ms ease-in-out;cursor:pointer;-moz-user-select:-moz-none;-ms-user-select:none;-webkit-user-select:none;user-select:none;background-image:url("../elements/arrow_fullscreen_open.svg");background-repeat:no-repeat;background-size:contain;width:43px;height:43px;display:block;margin-left:15px;opacity:0.3}.no-touch .inline-fullscreen-button:hover{opacity:1}.carousel-expand{height:calc(60vh - 120px);width:100%}.js-inline-carousel{background-color:#ededed;left:0;padding-bottom:32px;padding-top:32px;position:absolute;right:0;top:1px;width:100vw}.carousel-cell-image{height:100%}.carousel-cell-image img{height:auto;width:100%}.carousel-cell-video{position:relative;height:100%;padding-bottom:56.25%}.carousel-cell-video iframe{position:absolute;top:0;left:0;width:100%;height:100%}.carousel-cell-caption{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:13px;line-height:1.1;color:#6b6b6b;margin-top:15px;width:100%}@media (max-width: 1023px){.carousel-cell-caption{font-size:11px}}.carousel-cell{margin-right:50px}.flickity-slider{left:192px !important}.inline-carousel-bottom{-webkit-justify-content:flex-end;justify-content:flex-end;background-color:#fff;position:absolute;bottom:-89px;padding-top:23px;padding-bottom:23px;right:32px;width:350px;display:flex}.inline-carousel-buttons{display:flex}.inline-carousel-button{-moz-transition:opacity 100ms ease-in-out;-o-transition:opacity 100ms ease-in-out;-webkit-transition:opacity 100ms ease-in-out;transition:opacity 100ms ease-in-out;cursor:pointer;-moz-user-select:-moz-none;-ms-user-select:none;-webkit-user-select:none;user-select:none;background:white;background-repeat:no-repeat;background-position:center;display:block;border:1px solid #232323;height:43px;width:43px;opacity:0.3}.no-touch .inline-carousel-button:hover{opacity:1}.inline-carousel-button-next{background-image:url(../elements/arrow_next.svg)}.inline-carousel-button-prev{background-image:url(../elements/arrow_prev.svg);margin-right:-1px}.inline-carousel-label{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:14px;line-height:1.3;background-color:white;color:#6b6b6b;right:118px;padding:12px 20px 11px}.inline-image{margin-bottom:27px;margin-top:27px;position:relative}.inline-image img{-moz-transition:bottom 250ms ease-in-out,opacity 250ms ease-in-out;-o-transition:bottom 250ms ease-in-out,opacity 250ms ease-in-out;-webkit-transition:bottom 250ms ease-in-out,opacity 250ms ease-in-out;transition:bottom 250ms ease-in-out,opacity 250ms ease-in-out;opacity:0;height:auto;width:100%}.inline-image.lazy-loaded img{opacity:1}.inline-image.inline-image-size-full{margin-left:-192px;width:calc(100vw) !important;z-index:1}.inline-image.inline-image-size-full img{width:100vw;height:auto}.inline-image.inline-image-size-small{float:left;margin-right:48px}.inline-image.inline-image-size-full .inline-caption,.inline-video .inline-caption{margin-left:192px;max-width:calc(100% - 656px)}.inline-video{position:relative;margin-left:-192px;width:calc(100vw);margin-bottom:27px;margin-top:27px;z-index:1}.inline-video-wrapper{padding-bottom:56.25vw;overflow:hidden;position:relative}.inline-video-wrapper iframe{position:absolute;top:0;left:0;height:100%;width:100%}.inline-audio{margin-top:27px;margin-bottom:27px}.inline-audio .cb-player{height:auto}.inline-audio--extern{margin-top:0;margin-bottom:0}.inline-caption{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:13px;line-height:1.1;color:#6b6b6b;margin-top:26px}@media (max-width: 1023px){.inline-caption{font-size:11px}}.article-tool-buttons{-moz-transition:bottom 250ms ease-in-out;-o-transition:bottom 250ms ease-in-out;-webkit-transition:bottom 250ms ease-in-out;transition:bottom 250ms ease-in-out;font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:16px;line-height:1.1;background-color:rgba(255,255,255,0.9);position:fixed;bottom:0;left:0;right:0;height:48px;z-index:500}.article-tool-button{position:relative;float:left;height:100%;border-top:1px solid #2a2a2a}.article-tool-button:not(.tool-button-download){padding-left:40px;padding-right:39px}.article-tool-button:not(.tool-button-placeholder){cursor:pointer;-moz-user-select:-moz-none;-ms-user-select:none;-webkit-user-select:none;user-select:none}.article-tool-button.tool-button-active{border-top:1px solid transparent}.article-tool-button:before{content:"";display:block;height:10px;width:31px;background-repeat:no-repeat;background-size:contain;position:absolute;left:22px;top:50%;-moz-transform:translateY(-29%);-ms-transform:translateY(-29%);-webkit-transform:translateY(-29%);transform:translateY(-29%)}.article-tool-button+.article-tool-button{border-left:1px solid #2a2a2a}.article-tool-button.tool-button-arrow{padding-left:74px}.article-tool-button.tool-button-arrow:before{content:"";background-image:url("../elements/arrow_up.svg")}.article-tool-button.tool-button-arrow.tool-button-active:before{content:"";background-image:url("../elements/arrow_down.svg")}.article-tool-button.tool-button-arrow.tool-button-arrow-white:before{content:"";background-image:url("../elements/arrow_up_white.svg")}.article-tool-button.tool-button-arrow.tool-button-arrow-white.tool-button-active:before{content:"";background-image:url("../elements/arrow_down_white.svg")}.article-tool-button.tool-button-booklinks{background-color:#2a2a2a;color:#fff}.tool-button-disabled{cursor:default !important}.tool-button-disabled:before,.tool-button-disabled .center-tools{opacity:0.5}.center-tools{-moz-transform:translateY(-50%);-ms-transform:translateY(-50%);-webkit-transform:translateY(-50%);transform:translateY(-50%);display:inline-block;position:relative;top:50%}.article-tool-button-link{display:block;height:100%;padding-left:40px;padding-right:39px;padding-top:15px}.conversation-counter{margin-left:24px}.wrap-article-tool-module{-moz-transition:opacity 275ms ease-in-out;-o-transition:opacity 275ms ease-in-out;-webkit-transition:opacity 275ms ease-in-out;transition:opacity 275ms ease-in-out;opacity:0}.tool-module-open .wrap-article-tool-module{opacity:1}.article-tool-module{-moz-transition:bottom 275ms ease-in-out,margin-bottom 250ms ease-in-out;-o-transition:bottom 275ms ease-in-out,margin-bottom 250ms ease-in-out;-webkit-transition:bottom 275ms ease-in-out,margin-bottom 250ms ease-in-out;transition:bottom 275ms ease-in-out,margin-bottom 250ms ease-in-out;background-color:rgba(255,255,255,0.96);z-index:200}.transitions-disable .article-tool-module{-moz-transition:none;-o-transition:none;-webkit-transition:none;transition:none}.article-tool-module:not(.tool-module-notes){max-height:calc(100vh - 117px);overflow-y:auto}.article-tool-module.tool-module-open{border-top:1px solid #2a2a2a;bottom:48px !important}.article-tool-module.tool-module-open:not(.tool-module-related){border-left:1px solid #2a2a2a}.article-tool-module.tool-module-close{border-top:1px solid #2a2a2a;border-left:1px solid #2a2a2a}.tool-module-share,.tool-module-booklinks{position:fixed;bottom:-400px;right:0;padding:37px 36px 33px;min-width:320px}.booklinks-item+.booklinks-item{margin-top:17px}.share-options+.share-options{margin-top:52px}.share-option+.share-option{margin-top:17px}#js-clipboard{cursor:pointer;-moz-user-select:-moz-none;-ms-user-select:none;-webkit-user-select:none;user-select:none}.clipboard-response{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:11px;line-height:1.1;visibility:hidden;opacity:0;margin-left:10px}.clipboard-response.clipboard-response-show{visibility:visible;opacity:1}.clipboard-response.clipboard-response-show.clipboard-response-fadeout{-moz-transition:visibility 2s linear,opacity 2s linear;-o-transition:visibility 2s linear,opacity 2s linear;-webkit-transition:visibility 2s linear,opacity 2s linear;transition:visibility 2s linear,opacity 2s linear;visibility:hidden;opacity:0}.sidebar-item-tags{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:14px;line-height:1.1;position:relative;right:-32px;text-align:right;float:right}@media (max-width: 1023px){.sidebar-item-tags{font-size:12px}}.sidebar-active .sidebar-item-tags{position:absolute}.sidebar-item-tags.tags-slidein .sidebar-item-tag{-moz-transform:translateX(-90px);-ms-transform:translateX(-90px);-webkit-transform:translateX(-90px);transform:translateX(-90px);opacity:1}.sidebar-item-tags.fixed-duration-end{position:absolute}.sidebar-trigger{width:1px;visibility:hidden;position:absolute}.sidebar-trigger.sidebar-trigger-tags-end{bottom:0;height:1px}.sidebar-item-tags-subtitle{text-decoration:underline;margin-right:90px}.sidebar-item-tags-items{zoom:1;width:350px;overflow:hidden}.sidebar-item-tags-items:before,.sidebar-item-tags-items:after{content:"";display:table}.sidebar-item-tags-items:after{clear:both}.sidebar-item-tags-subtitle+.sidebar-item-tags-items{margin-top:20px}.sidebar-item-tag{-moz-transition:-moz-transform 1000ms ease,opacity 1000ms ease;-o-transition:-o-transform 1000ms ease,opacity 1000ms ease;-webkit-transition:-webkit-transform 1000ms ease,opacity 1000ms ease;transition:transform 1000ms ease,opacity 1000ms ease;-moz-transform:translateX(100px);-ms-transform:translateX(100px);-webkit-transform:translateX(100px);transform:translateX(100px);font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:14px;line-height:1.1;border:1px solid #2a2a2a;padding:9px 10px;opacity:0;clear:both;float:right}@media (max-width: 1023px){.sidebar-item-tag{font-size:12px}}.sidebar-item-tag+.sidebar-item-tag{margin-top:10px}.tags-slidein .sidebar-item-tag:nth-child(1){-moz-transition-delay:250ms;-o-transition-delay:250ms;-webkit-transition-delay:250ms;transition-delay:250ms}.tags-slidein .sidebar-item-tag:nth-child(2){-moz-transition-delay:500ms;-o-transition-delay:500ms;-webkit-transition-delay:500ms;transition-delay:500ms}.tags-slidein .sidebar-item-tag:nth-child(3){-moz-transition-delay:750ms;-o-transition-delay:750ms;-webkit-transition-delay:750ms;transition-delay:750ms}.tags-slidein .sidebar-item-tag:nth-child(4){-moz-transition-delay:1000ms;-o-transition-delay:1000ms;-webkit-transition-delay:1000ms;transition-delay:1000ms}.tags-slidein .sidebar-item-tag:nth-child(5){-moz-transition-delay:1250ms;-o-transition-delay:1250ms;-webkit-transition-delay:1250ms;transition-delay:1250ms}.tags-slidein .sidebar-item-tag:nth-child(6){-moz-transition-delay:1500ms;-o-transition-delay:1500ms;-webkit-transition-delay:1500ms;transition-delay:1500ms}.tags-slidein .sidebar-item-tag:nth-child(7){-moz-transition-delay:1750ms;-o-transition-delay:1750ms;-webkit-transition-delay:1750ms;transition-delay:1750ms}.tags-slidein .sidebar-item-tag:nth-child(8){-moz-transition-delay:2000ms;-o-transition-delay:2000ms;-webkit-transition-delay:2000ms;transition-delay:2000ms}.tags-slidein .sidebar-item-tag:nth-child(9){-moz-transition-delay:2250ms;-o-transition-delay:2250ms;-webkit-transition-delay:2250ms;transition-delay:2250ms}.tags-slidein .sidebar-item-tag:nth-child(10){-moz-transition-delay:2500ms;-o-transition-delay:2500ms;-webkit-transition-delay:2500ms;transition-delay:2500ms}.tagsize-1.tags-slideout .sidebar-item-tag:nth-child(1){-moz-transition-delay:250ms;-o-transition-delay:250ms;-webkit-transition-delay:250ms;transition-delay:250ms}.tagsize-2.tags-slideout .sidebar-item-tag:nth-child(1){-moz-transition-delay:500ms;-o-transition-delay:500ms;-webkit-transition-delay:500ms;transition-delay:500ms}.tagsize-2.tags-slideout .sidebar-item-tag:nth-child(2){-moz-transition-delay:250ms;-o-transition-delay:250ms;-webkit-transition-delay:250ms;transition-delay:250ms}.tagsize-3.tags-slideout .sidebar-item-tag:nth-child(1){-moz-transition-delay:750ms;-o-transition-delay:750ms;-webkit-transition-delay:750ms;transition-delay:750ms}.tagsize-3.tags-slideout .sidebar-item-tag:nth-child(2){-moz-transition-delay:500ms;-o-transition-delay:500ms;-webkit-transition-delay:500ms;transition-delay:500ms}.tagsize-3.tags-slideout .sidebar-item-tag:nth-child(3){-moz-transition-delay:250ms;-o-transition-delay:250ms;-webkit-transition-delay:250ms;transition-delay:250ms}.tagsize-4.tags-slideout .sidebar-item-tag:nth-child(1){-moz-transition-delay:1000ms;-o-transition-delay:1000ms;-webkit-transition-delay:1000ms;transition-delay:1000ms}.tagsize-4.tags-slideout .sidebar-item-tag:nth-child(2){-moz-transition-delay:750ms;-o-transition-delay:750ms;-webkit-transition-delay:750ms;transition-delay:750ms}.tagsize-4.tags-slideout .sidebar-item-tag:nth-child(3){-moz-transition-delay:500ms;-o-transition-delay:500ms;-webkit-transition-delay:500ms;transition-delay:500ms}.tagsize-4.tags-slideout .sidebar-item-tag:nth-child(4){-moz-transition-delay:250ms;-o-transition-delay:250ms;-webkit-transition-delay:250ms;transition-delay:250ms}.tagsize-5.tags-slideout .sidebar-item-tag:nth-child(1){-moz-transition-delay:1250ms;-o-transition-delay:1250ms;-webkit-transition-delay:1250ms;transition-delay:1250ms}.tagsize-5.tags-slideout .sidebar-item-tag:nth-child(2){-moz-transition-delay:1000ms;-o-transition-delay:1000ms;-webkit-transition-delay:1000ms;transition-delay:1000ms}.tagsize-5.tags-slideout .sidebar-item-tag:nth-child(3){-moz-transition-delay:750ms;-o-transition-delay:750ms;-webkit-transition-delay:750ms;transition-delay:750ms}.tagsize-5.tags-slideout .sidebar-item-tag:nth-child(4){-moz-transition-delay:500ms;-o-transition-delay:500ms;-webkit-transition-delay:500ms;transition-delay:500ms}.tagsize-5.tags-slideout .sidebar-item-tag:nth-child(5){-moz-transition-delay:250ms;-o-transition-delay:250ms;-webkit-transition-delay:250ms;transition-delay:250ms}.tagsize-6.tags-slideout .sidebar-item-tag:nth-child(1){-moz-transition-delay:1500ms;-o-transition-delay:1500ms;-webkit-transition-delay:1500ms;transition-delay:1500ms}.tagsize-6.tags-slideout .sidebar-item-tag:nth-child(2){-moz-transition-delay:1250ms;-o-transition-delay:1250ms;-webkit-transition-delay:1250ms;transition-delay:1250ms}.tagsize-6.tags-slideout .sidebar-item-tag:nth-child(3){-moz-transition-delay:1000ms;-o-transition-delay:1000ms;-webkit-transition-delay:1000ms;transition-delay:1000ms}.tagsize-6.tags-slideout .sidebar-item-tag:nth-child(4){-moz-transition-delay:750ms;-o-transition-delay:750ms;-webkit-transition-delay:750ms;transition-delay:750ms}.tagsize-6.tags-slideout .sidebar-item-tag:nth-child(5){-moz-transition-delay:500ms;-o-transition-delay:500ms;-webkit-transition-delay:500ms;transition-delay:500ms}.tagsize-6.tags-slideout .sidebar-item-tag:nth-child(6){-moz-transition-delay:250ms;-o-transition-delay:250ms;-webkit-transition-delay:250ms;transition-delay:250ms}.tagsize-7.tags-slideout .sidebar-item-tag:nth-child(1){-moz-transition-delay:1750ms;-o-transition-delay:1750ms;-webkit-transition-delay:1750ms;transition-delay:1750ms}.tagsize-7.tags-slideout .sidebar-item-tag:nth-child(2){-moz-transition-delay:1500ms;-o-transition-delay:1500ms;-webkit-transition-delay:1500ms;transition-delay:1500ms}.tagsize-7.tags-slideout .sidebar-item-tag:nth-child(3){-moz-transition-delay:1250ms;-o-transition-delay:1250ms;-webkit-transition-delay:1250ms;transition-delay:1250ms}.tagsize-7.tags-slideout .sidebar-item-tag:nth-child(4){-moz-transition-delay:1000ms;-o-transition-delay:1000ms;-webkit-transition-delay:1000ms;transition-delay:1000ms}.tagsize-7.tags-slideout .sidebar-item-tag:nth-child(5){-moz-transition-delay:750ms;-o-transition-delay:750ms;-webkit-transition-delay:750ms;transition-delay:750ms}.tagsize-7.tags-slideout .sidebar-item-tag:nth-child(6){-moz-transition-delay:500ms;-o-transition-delay:500ms;-webkit-transition-delay:500ms;transition-delay:500ms}.tagsize-7.tags-slideout .sidebar-item-tag:nth-child(7){-moz-transition-delay:250ms;-o-transition-delay:250ms;-webkit-transition-delay:250ms;transition-delay:250ms}.tagsize-8.tags-slideout .sidebar-item-tag:nth-child(1){-moz-transition-delay:2000ms;-o-transition-delay:2000ms;-webkit-transition-delay:2000ms;transition-delay:2000ms}.tagsize-8.tags-slideout .sidebar-item-tag:nth-child(2){-moz-transition-delay:1750ms;-o-transition-delay:1750ms;-webkit-transition-delay:1750ms;transition-delay:1750ms}.tagsize-8.tags-slideout .sidebar-item-tag:nth-child(3){-moz-transition-delay:1500ms;-o-transition-delay:1500ms;-webkit-transition-delay:1500ms;transition-delay:1500ms}.tagsize-8.tags-slideout .sidebar-item-tag:nth-child(4){-moz-transition-delay:1250ms;-o-transition-delay:1250ms;-webkit-transition-delay:1250ms;transition-delay:1250ms}.tagsize-8.tags-slideout .sidebar-item-tag:nth-child(5){-moz-transition-delay:1000ms;-o-transition-delay:1000ms;-webkit-transition-delay:1000ms;transition-delay:1000ms}.tagsize-8.tags-slideout .sidebar-item-tag:nth-child(6){-moz-transition-delay:750ms;-o-transition-delay:750ms;-webkit-transition-delay:750ms;transition-delay:750ms}.tagsize-8.tags-slideout .sidebar-item-tag:nth-child(7){-moz-transition-delay:500ms;-o-transition-delay:500ms;-webkit-transition-delay:500ms;transition-delay:500ms}.tagsize-8.tags-slideout .sidebar-item-tag:nth-child(8){-moz-transition-delay:250ms;-o-transition-delay:250ms;-webkit-transition-delay:250ms;transition-delay:250ms}.tagsize-9.tags-slideout .sidebar-item-tag:nth-child(1){-moz-transition-delay:2250ms;-o-transition-delay:2250ms;-webkit-transition-delay:2250ms;transition-delay:2250ms}.tagsize-9.tags-slideout .sidebar-item-tag:nth-child(2){-moz-transition-delay:2000ms;-o-transition-delay:2000ms;-webkit-transition-delay:2000ms;transition-delay:2000ms}.tagsize-9.tags-slideout .sidebar-item-tag:nth-child(3){-moz-transition-delay:1750ms;-o-transition-delay:1750ms;-webkit-transition-delay:1750ms;transition-delay:1750ms}.tagsize-9.tags-slideout .sidebar-item-tag:nth-child(4){-moz-transition-delay:1500ms;-o-transition-delay:1500ms;-webkit-transition-delay:1500ms;transition-delay:1500ms}.tagsize-9.tags-slideout .sidebar-item-tag:nth-child(5){-moz-transition-delay:1250ms;-o-transition-delay:1250ms;-webkit-transition-delay:1250ms;transition-delay:1250ms}.tagsize-9.tags-slideout .sidebar-item-tag:nth-child(6){-moz-transition-delay:1000ms;-o-transition-delay:1000ms;-webkit-transition-delay:1000ms;transition-delay:1000ms}.tagsize-9.tags-slideout .sidebar-item-tag:nth-child(7){-moz-transition-delay:750ms;-o-transition-delay:750ms;-webkit-transition-delay:750ms;transition-delay:750ms}.tagsize-9.tags-slideout .sidebar-item-tag:nth-child(8){-moz-transition-delay:500ms;-o-transition-delay:500ms;-webkit-transition-delay:500ms;transition-delay:500ms}.tagsize-9.tags-slideout .sidebar-item-tag:nth-child(9){-moz-transition-delay:250ms;-o-transition-delay:250ms;-webkit-transition-delay:250ms;transition-delay:250ms}.tagsize-10.tags-slideout .sidebar-item-tag:nth-child(1){-moz-transition-delay:2500ms;-o-transition-delay:2500ms;-webkit-transition-delay:2500ms;transition-delay:2500ms}.tagsize-10.tags-slideout .sidebar-item-tag:nth-child(2){-moz-transition-delay:2250ms;-o-transition-delay:2250ms;-webkit-transition-delay:2250ms;transition-delay:2250ms}.tagsize-10.tags-slideout .sidebar-item-tag:nth-child(3){-moz-transition-delay:2000ms;-o-transition-delay:2000ms;-webkit-transition-delay:2000ms;transition-delay:2000ms}.tagsize-10.tags-slideout .sidebar-item-tag:nth-child(4){-moz-transition-delay:1750ms;-o-transition-delay:1750ms;-webkit-transition-delay:1750ms;transition-delay:1750ms}.tagsize-10.tags-slideout .sidebar-item-tag:nth-child(5){-moz-transition-delay:1500ms;-o-transition-delay:1500ms;-webkit-transition-delay:1500ms;transition-delay:1500ms}.tagsize-10.tags-slideout .sidebar-item-tag:nth-child(6){-moz-transition-delay:1250ms;-o-transition-delay:1250ms;-webkit-transition-delay:1250ms;transition-delay:1250ms}.tagsize-10.tags-slideout .sidebar-item-tag:nth-child(7){-moz-transition-delay:1000ms;-o-transition-delay:1000ms;-webkit-transition-delay:1000ms;transition-delay:1000ms}.tagsize-10.tags-slideout .sidebar-item-tag:nth-child(8){-moz-transition-delay:750ms;-o-transition-delay:750ms;-webkit-transition-delay:750ms;transition-delay:750ms}.tagsize-10.tags-slideout .sidebar-item-tag:nth-child(9){-moz-transition-delay:500ms;-o-transition-delay:500ms;-webkit-transition-delay:500ms;transition-delay:500ms}.tagsize-10.tags-slideout .sidebar-item-tag:nth-child(10){-moz-transition-delay:250ms;-o-transition-delay:250ms;-webkit-transition-delay:250ms;transition-delay:250ms}.tool-module-related{position:fixed;left:0;right:0;height:525px;overflow-y:hidden !important}.tool-module-related.tool-module-relateditems{bottom:-100vh}.tool-module-related.tool-module-relatedarticles{bottom:-100vh}.tool-module-related.tool-module-relatedarticles{height:720px}.tool-module-related .wrap-article-tool-module{height:100%;overflow:hidden}.wrap-related-items{margin-top:30px;overflow-x:auto;overflow-y:hidden;width:100%;height:calc(100% - 78px);-webkit-overflow-scrolling:touch}@media (min-width: 1024px){.wrap-related-items::-webkit-scrollbar{cursor:pointer;-moz-user-select:-moz-none;-ms-user-select:none;-webkit-user-select:none;user-select:none;height:8px}.wrap-related-items::-webkit-scrollbar-button{display:block;width:0;height:0}.wrap-related-items::-webkit-scrollbar-track-piece{background:rgba(211,211,211,0.8)}.wrap-related-items::-webkit-scrollbar-thumb{display:block;background:#000}}@media (min-width: 1024px) and (min-height: 1024px){.wrap-related-items::-webkit-scrollbar{height:16px}}.related-items{zoom:1;margin-left:48px;margin-right:48px;max-height:calc(100vh - 48px - 70px - 48px - 30px);overflow:hidden}.related-items:before,.related-items:after{content:"";display:table}.related-items:after{clear:both}.related-items.related-articles{height:641px}.related-item-scrolling-container{height:100%;overflow-y:auto;width:calc(100% + 60px)}.related-item-scrolling-area{width:calc(100% - 60px);padding-bottom:50px}.tool-module-title{margin-left:48px;padding-top:29px;font-weight:bold}.tool-module-close-button{cursor:pointer;-moz-user-select:-moz-none;-ms-user-select:none;-webkit-user-select:none;user-select:none;height:22px;width:22px;position:absolute;right:24px;top:13px;padding:10px;box-sizing:content-box}.tool-module-close-button:after{content:"";background-image:url("../elements/close.svg");background-repeat:no-repeat;background-size:cover;display:block;height:22px;width:22px}.related-item{float:left;height:100%;overflow:hidden;width:400px}.related-item+.related-item{margin-left:32px}.related-item-image{height:272px}.related-item-image img{height:100%;width:auto}.related-item-category{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:14px;line-height:1.1;max-width:400px;text-transform:uppercase;height:15px}@media (max-width: 1023px){.related-item-category{font-size:12px}}.preview-item-image+.related-item-category{margin-top:18px}.related-item-journalarticle .preview-item-image+.related-item-category{margin-top:23px}.related-item-text-box+.related-item-category{margin-top:17px}.related-item-journalarticle .related-item-category{text-transform:none}.related-item-title{display:inline-block;max-width:400px;height:81px;font-weight:600;font-size:22px}.related-item-category+.related-item-title{margin-top:3px}.related-item-journalarticle .related-item-category+.related-item-title{margin-top:9px}.related-item-journalarticle{min-width:400px}.related-item-journalarticle .related-item-text{max-width:400px}.related-item-journalarticle .related-item-title{max-width:500px}.related-item-authors{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:16px;line-height:1.1;margin-bottom:0.5em}.related-item-text-box{font-family:"Freight Text W01",Georgia,serif;font-size:21px;line-height:1.1;border:3px solid #2a2a2a;height:272px;padding:20px 64px 20px 20px;width:346px}@media (max-width: 1023px){.related-item-text-box{font-size:18px;line-height:1.2}}.related-item-text{font-family:"Freight Text W01",Georgia,serif;font-size:15px;line-height:1.5;margin-bottom:22px}.related-item-title+.related-item-text{margin-top:38px}.preview-item-image+.related-item-text{margin-top:40px}.wrap-related-items .mCSB_horizontal.mCSB_inside>.mCSB_container{margin-bottom:0}.wrap-related-items #mCSB_1_container{padding-left:0;padding-right:0}.wrap-related-items .mCSB_scrollTools.mCSB_scrollTools_horizontal{height:0}.wrap-related-items .mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_draggerContainer{height:8px}.related-items-announcement.related-item{width:auto}.related-items-announcement .wrap-preview-item-image{height:310px}.related-items-announcement .wrap-preview-item-image img{height:100%;width:auto}.tool-module-notes{font-family:"Freight Text W01",Georgia,serif;font-size:13px;line-height:1.35;position:fixed;right:0;width:585px;bottom:-100vh;padding:37px 0 33px 38px}.module-notes-goto{cursor:pointer;-moz-user-select:-moz-none;-ms-user-select:none;-webkit-user-select:none;user-select:none;margin-top:17px;font-style:italic;text-decoration:underline}.module-notes-bottom{zoom:1;margin-top:32px}.module-notes-bottom:before,.module-notes-bottom:after{content:"";display:table}.module-notes-bottom:after{clear:both}.module-notes-numbers{zoom:1;float:left}.module-notes-numbers:before,.module-notes-numbers:after{content:"";display:table}.module-notes-numbers:after{clear:both}.notes-number{cursor:pointer;-moz-user-select:-moz-none;-ms-user-select:none;-webkit-user-select:none;user-select:none;-moz-transition:color 100ms ease-in-out;-o-transition:color 100ms ease-in-out;-webkit-transition:color 100ms ease-in-out;transition:color 100ms ease-in-out;float:left;color:#b8b8b8;margin-right:6px}.no-touch .notes-number:hover,.notes-number.notes-number-active{color:#2a2a2a}.module-notes-all{cursor:pointer;-moz-user-select:-moz-none;-ms-user-select:none;-webkit-user-select:none;user-select:none;float:right}.module-notes-all{text-decoration:underline}.wrap-module-notes-text{position:relative}.module-notes-text{display:none}.module-notes-text.module-notes-text-active{display:block}.module-notes-text strong,.module-notes-text b{font-weight:bold}.module-notes-text em,.module-notes-text i{font-style:italic}.module-notes-text a{text-decoration:underline}.wrap-all-tool-notes{display:none;overflow:hidden}.all-tool-notes,.tool-module-notes .wrap-article-tool-module{max-height:calc(100vh - 221px);overflow-y:scroll;padding-right:80px;box-sizing:initial}.item-tool-note{zoom:1;position:relative;margin-bottom:32px}.item-tool-note:before,.item-tool-note:after{content:"";display:table}.item-tool-note:after{clear:both}.item-tool-note:first-child{margin-top:20px}.item-tool-note-number{float:left;width:20px}.item-tool-note-text{float:left;width:calc(100% - 20px)}.item-tool-note-text strong,.item-tool-note-text b{font-weight:bold}.item-tool-note-text em,.item-tool-note-text i{font-style:italic}.item-tool-note-text a{text-decoration:underline}.show-all-notes:before{content:"";background:-webkit-linear-gradient(#fff 0%, rgba(255,255,255,0) 100%);background:linear-gradient(to bottom, #ffffff 0%,rgba(255,255,255,0) 100%);position:absolute;width:100%;height:33px;top:27px;z-index:1}.show-all-notes:after{content:"";background:-webkit-linear-gradient(rgba(255,255,255,0) 0%, #fff 100%);background:linear-gradient(to bottom, rgba(255,255,255,0) 0%,#ffffff 100%);position:absolute;width:100%;height:33px;bottom:33px;z-index:1}.show-all-notes .wrap-article-tool-module{display:none}.show-all-notes .wrap-all-tool-notes{display:block}.tool-module-conversations{font-family:"Freight Text W01",Georgia,serif;font-size:14px;line-height:1.5;position:fixed;right:0;width:883px;bottom:calc(-50vh + 18px)}.tool-module-conversations.tool-module-conversations-start{bottom:-281px}.tool-module-conversations.tool-module-open{bottom:48px !important}.module-conversation-head{zoom:1;font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:18px;line-height:1.1;padding:26px 26px 0 26px}.module-conversation-head:before,.module-conversation-head:after{content:"";display:table}.module-conversation-head:after{clear:both}.module-conversation-head-title{float:left}.module-conversation-head-join{cursor:pointer;-moz-user-select:-moz-none;-ms-user-select:none;-webkit-user-select:none;user-select:none;float:right}.conversation-start-button{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:16px;line-height:1.1;background-color:#232323;color:#fff;display:inline-block;padding:12px 16px 13px;margin-top:26px}.wrap-conversation-start{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:16px;line-height:1.1;clear:left;padding:26px}.wrap-conversation-items{position:relative}.wrap-conversation-items:before{content:"";background-image:url("../elements/header-bg.png");background-repeat:repeat-x;background-size:contain;display:block;width:100%;height:30px;position:absolute;top:0px}.wrap-conversation-items:after{content:"";background-image:url("../elements/bottom-bg.png");background-repeat:repeat-x;background-size:contain;display:block;width:100%;height:50px;position:absolute;bottom:-20px}.conversation-items{padding-top:29px;margin-bottom:20px;height:50vh;overflow:scroll}.conversation-item{padding-left:26px;padding-right:26px;padding-bottom:24px}.conversation-item+.conversation-item{border-top:1px dashed #2a2a2a;padding-top:24px}.item-conversation-user{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:18px;line-height:1.1}.item-conversation-date{color:#6b6b6b}.item-conversation-text{margin-top:14px}.item-conversation-text p+p{margin-top:8px}.tool-module-conversations-start .wrap-conversation-start{display:block}.tool-module-conversations-start .module-conversation-head-join,.tool-module-conversations-start .wrap-conversation-items{display:none}.header-tools-active .header,.header-tools-active .menu-main{top:48px}.header-tools-active .header-tools{display:block}.header-tools-active body{height:calc(100% - 48px) !important;margin-top:48px}.header-tools-active .content-home{margin-top:48px}.header-tool,.search-form-container{height:100%}.search-form-container{position:relative}.search-form-container:after{content:"";position:absolute;bottom:-10px;right:95px;width:0;height:0;border-left:10px solid transparent;border-right:10px solid transparent;border-top:10px solid #232323}.header-tool-login .header-input{border-right:1px solid #6b6b6b;width:232px}.header-tool-login .header-label{color:#fff}.header-tools{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:14px;line-height:1.1;position:fixed;top:0;left:0;width:100vw;background-color:#232323;color:#fff;height:48px;z-index:700;display:none}@media (max-width: 1023px){.header-tools{font-size:12px}}.header-button{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:14px;line-height:1.1;cursor:pointer;-moz-user-select:-moz-none;-ms-user-select:none;-webkit-user-select:none;user-select:none;float:right;background-color:transparent;border:0;padding:0 32px 0 32px;margin:0;right:0;color:#fff;float:right;height:100%}@media (max-width: 1023px){.header-button{font-size:12px}}.header-button:focus{outline:none}.header-input{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:14px;line-height:1.1;float:left;color:#fff;height:100%;background-color:transparent;border:0;padding:0 0 0 32px;margin:0;border-radius:0}@media (max-width: 1023px){.header-input{font-size:12px}}.header-input:focus{outline:none}#search-form-input{width:300px;padding-left:5px}.header-label{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:14px;line-height:1.1;padding:0 0 0 32px;float:left;display:inline-block;position:relative;margin-top:17px}@media (max-width: 1023px){.header-label{font-size:12px}}.header-label a{text-decoration:underline}.vertical-center{-moz-transform:translateY(-50%);-ms-transform:translateY(-50%);-webkit-transform:translateY(-50%);transform:translateY(-50%);position:relative;top:50%}.header-tool-login-success{margin-left:32px}.hidden{display:none !important}.header-tools ::-webkit-input-placeholder{color:#6b6b6b !important}.header-tools :-moz-placeholder{color:#6b6b6b !important}.header-tools ::-moz-placeholder{color:#6b6b6b !important}.header-tools :-ms-input-placeholder{color:#6b6b6b !important}.js-selectBox{display:none}.selectboxit-arrow-container{display:none !important}.js-selectBox+.selectboxit-container{height:100%;border-right:1px solid #6b6b6b;float:left}.selectboxit-container .selectboxit{border-radius:0}.selectboxit-btn{background-color:transparent;background-image:none;border:0;height:100% !important}.selectboxit-option-icon-container,.selectboxit-text{position:relative;-moz-transform:translateY(-50%);-ms-transform:translateY(-50%);-webkit-transform:translateY(-50%);transform:translateY(-50%);top:50%}.selectboxit-container .selectboxit-options{border-radius:0;padding-left:32px;background-color:#232323;width:364px;padding-bottom:23px;padding-top:9px}.selectboxit-list .selectboxit-option-anchor{color:#6b6b6b}.selectboxit{width:210px !important}.selectboxit .selectboxit-option-icon-container{width:30px;margin-left:25px}.selectboxit .selectboxit-option-icon-container:after{content:"";display:block;height:10px;width:26px;background-repeat:no-repeat;background-size:contain;background-image:url("../elements/arrow_down_white.svg");position:absolute;left:0;top:50%}.selectboxit.selectboxit-open .selectboxit-option-icon-container:after{content:"";background-image:url("../elements/arrow_up_white.svg")}.selectboxit-text{padding-left:16px;padding-right:16px}.selectboxit-focus .selectboxit-option-anchor{color:#fff}.selectboxit-option+.selectboxit-option{margin-top:14px}.search-for-label{cursor:pointer;-moz-user-select:-moz-none;-ms-user-select:none;-webkit-user-select:none;user-select:none;color:#6b6b6b;float:left;line-height:3.6;padding-left:32px;height:100%}.twitter-typeahead{height:100%}.tt-menu{padding-left:32px;padding-right:32px;background-color:#232323;max-height:300px;min-width:350px;padding-top:15px;padding-bottom:15px;overflow-y:auto}.tt-suggestion{cursor:pointer;-moz-user-select:-moz-none;-ms-user-select:none;-webkit-user-select:none;user-select:none;color:#6b6b6b}.tt-suggestion+.tt-suggestion{margin-top:30px}.tt-highlight{color:#fff}.no-highlight .tt-highlight{color:#6b6b6b;font-weight:normal}.button-search-close{cursor:pointer;float:right;height:100%;margin-right:37px;margin-top:13px}.button-search-close img{height:20px;margin-top:1px;width:auto}#wrapper{display:none;margin-top:300px;width:200px;height:200px;overflow:hidden;position:relative}.scrolling-container{position:relative;height:400px;margin-top:300px;overflow-x:auto;overflow-y:hidden;width:800px}.scrolling-columns{zoom:1;height:400px;width:1580px}.scrolling-columns:before,.scrolling-columns:after{content:"";display:table}.scrolling-columns:after{clear:both}.scrolling-column{float:left;height:100%;width:380px}.scrolling-column+.scrolling-column{margin-left:20px}.scrolling-column-container{overflow:hidden;height:100%;width:100%}.scrolling-area{height:100%;overflow-x:hidden;overflow-y:auto;width:calc(100% + 60px)}.column-items{zoom:1;width:calc(100% - 60px)}.column-items:before,.column-items:after{content:"";display:table}.column-items:after{clear:both}.column-item{float:left}.column-item img{height:auto;width:100%}.column-item+.column-item{margin-top:20px}.message-title{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:21px;font-weight:normal;line-height:1.1;max-width:900px;margin-left:160px;float:left}@media (max-width: 1023px){.message-title{font-size:18px;line-height:1.2}}.message-text{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:14px;line-height:1.1;clear:both;float:left;margin-left:160px;margin-top:32px}@media (max-width: 1023px){.message-text{font-size:12px}}.message-text a{text-decoration:underline}.search-result-item{zoom:1;width:100%}.search-result-item:before,.search-result-item:after{content:"";display:table}.search-result-item:after{clear:both}.search-result-item-announcement+.search-result-item-announcement,.search-result-item-editorial+.search-result-item-announcement,.search-result-item-announcement+.search-result-item-editorial{margin-top:44px}.search-result-item-image{float:left;width:97px;height:97px;margin-right:32px}.search-result-item-image img{float:right}.search-result-item-info{float:left;width:calc(100% - 129px)}.search-result-item-subtitle{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:14px;line-height:1.1}@media (max-width: 1023px){.search-result-item-subtitle{font-size:12px}}.search-result-item-subtitle span{margin-left:10px;color:#b8b8b8}.search-result-item-title{margin-top:3px}.search-result-item-text{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:14px;line-height:1.1;margin-top:10px}@media (max-width: 1023px){.search-result-item-text{font-size:12px}}.panel-width-announcement{width:785px}.search-result-item-journal+.search-result-item-journal{margin-top:29px}.search-result-item-journal .search-result-item-title{font-family:"Freight Text W01",Georgia,serif;font-size:21px;line-height:1.1}@media (max-width: 1023px){.search-result-item-journal .search-result-item-title{font-size:18px;line-height:1.2}}.search-result-item-journal .search-result-item-subtitle{margin-top:6px}.search-result-item-journal .search-result-item-title{margin-top:5px}.search-result-item-headline{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:14px;line-height:1.1;text-decoration:underline}@media (max-width: 1023px){.search-result-item-headline{font-size:12px}}.ical-button{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:16px;line-height:1.1;background-color:#232323;color:#fff;display:inline-block;padding:12px 16px 13px;display:inline-block;text-decoration:none !important}.article-sub-navigation{position:absolute;right:0;text-align:right;top:-3px}.article-sub-navigation a,.article-sub-navigation .js-map-button{text-decoration:underline}.article-sub-navigation li+li{margin-top:3px}.js-map-button{cursor:pointer;-moz-user-select:-moz-none;-ms-user-select:none;-webkit-user-select:none;user-select:none}.ical-link{text-decoration:underline}.ical-link-past{cursor:default;opacity:0.1}.block-map{float:left;margin-left:-32px;width:100vw}#anchor_map{background-color:#b8b8b8;height:calc(100vh - 48px - 70px);margin-bottom:48px}.leaderboard{border:3px solid #2a2a2a;float:right;height:76px;margin-top:23px;width:675px}.leaderboard img{height:auto;width:100%}.ad-sidebar{width:304px;margin-top:50vh}.with-sidebar-ad-right .ad-sidebar{left:96px}.ad-sidebar.ad-image{height:0;position:relative;-moz-transition:opacity 100ms ease-in-out,filter 100ms ease-in-out,-webkit-filter 100ms ease-in-out;-o-transition:opacity 100ms ease-in-out,filter 100ms ease-in-out,-webkit-filter 100ms ease-in-out;-webkit-transition:opacity 100ms ease-in-out,filter 100ms ease-in-out,-webkit-filter 100ms ease-in-out;transition:opacity 100ms ease-in-out,filter 100ms ease-in-out,-webkit-filter 100ms ease-in-out;-webkit-filter:grayscale(100%);filter:grayscale(100%);opacity:.8}.no-touch .ad-sidebar.ad-image:hover{-webkit-filter:grayscale(0);filter:grayscale(0);opacity:1}.ad-sidebar.ad-text{border:4px solid #2a2a2a;padding:26px 16px}.ad-sidebar img{opacity:0;-moz-transition:opacity 250ms ease-in-out;-o-transition:opacity 250ms ease-in-out;-webkit-transition:opacity 250ms ease-in-out;transition:opacity 250ms ease-in-out}.ad-sidebar .lazy-loaded img{opacity:1}.wrap-block-text{zoom:1}.wrap-block-text:before,.wrap-block-text:after{content:"";display:table}.wrap-block-text:after{clear:both}.preview-item-image{position:relative}.lazy{top:0;left:50%}.lazy+.lazy-placeholder{margin-left:0 !important}p+.announcement-logo{margin-top:27px}.block-article-media-announcement{zoom:1;position:relative}.block-article-media-announcement:before,.block-article-media-announcement:after{content:"";display:table}.block-article-media-announcement:after{clear:both}.announcement-hero-image-container{zoom:1;position:relative;overflow:hidden}.announcement-hero-image-container:before,.announcement-hero-image-container:after{content:"";display:table}.announcement-hero-image-container:after{clear:both}.announcement-hero-image:not(.variable-width-image-size-full){max-width:calc(100% - 282px)}.announcement-hero-image img{-moz-transition:opacity 250ms ease-in-out;-o-transition:opacity 250ms ease-in-out;-webkit-transition:opacity 250ms ease-in-out;transition:opacity 250ms ease-in-out;opacity:0;height:auto;width:100%}.announcement-hero-image.lazy-loaded img{opacity:1}.announcement-hero-image.portrait{float:left;max-width:calc(50% - 58px)}.announcement-hero-image.variable-width-image-size-full{width:100% !important}.announcement-hero-image.variable-width-image-size-full img{width:100%;height:auto}.item-image-wrapper{background-repeat:repeat;background-size:85px}.lazy-loaded .item-image-wrapper{background:#fff !important}.item-image-wrapper-bg1{background-image:url("../elements/bg-1.gif?2");background-size:85px}.item-image-wrapper-bg2{background-image:url("../elements/bg-2.gif?2");background-size:85px}.item-image-wrapper-bg3{background-image:url("../elements/bg-3.gif?2");background-size:85px}.item-image-wrapper-bg4{background-image:url("../elements/bg-4.gif?2");background-size:85px}.item-image-wrapper-bg5{background-image:url("../elements/bg-5.gif?2");background-size:85px}.item-image-wrapper-bg6{background-image:url("../elements/bg-6.gif?2");background-size:85px}.dark-background .item-image-wrapper-bg1{background-image:url("../elements/bg-dark-1.gif?2")}.dark-background .item-image-wrapper-bg2{background-image:url("../elements/bg-dark-2.gif?2")}.dark-background .item-image-wrapper-bg3{background-image:url("../elements/bg-dark-3.gif?2")}.dark-background .item-image-wrapper-bg4{background-image:url("../elements/bg-dark-4.gif?2")}.dark-background .item-image-wrapper-bg5{background-image:url("../elements/bg-dark-5.gif?2")}.dark-background .item-image-wrapper-bg6{background-image:url("../elements/bg-dark-6.gif?2")}.item-image-wrapper{position:relative}.item-image-wrapper img{position:absolute;top:0;left:0}.item-image-wrapper iframe{position:absolute;top:0;left:0;width:100%;height:100%}.announcement-hero-image-caption{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:13px;line-height:1.1;color:#6b6b6b;margin-top:26px;padding-bottom:1px}@media (max-width: 1023px){.announcement-hero-image-caption{font-size:11px}}.announcement-header-info{font-family:"Freight Text W01",Georgia,serif;font-size:16px;line-height:1.5;left:0;margin-right:90px;float:left;top:0}.announcement-hero-image+.announcement-header-info{margin-left:32px}.variable-width-image-size-full{width:100% !important}.variable-width-image-size-full .announcement-hero-image-caption{margin-left:192px;max-width:calc(100% - 656px)}.variable-width-image-size-full.portrait .announcement-hero-image-caption{margin-left:0;max-width:none}.variable-width-image-size-non-full,.variable-width-image-size-full.portrait{margin-left:192px}.no-design-content{margin-top:180px}.announcement-year-buttons{margin-top:17px;width:calc(100% + 10px)}.announcement-year-button{-moz-transition:color 100ms ease-in-out,background-color 100ms ease-in-out;-o-transition:color 100ms ease-in-out,background-color 100ms ease-in-out;-webkit-transition:color 100ms ease-in-out,background-color 100ms ease-in-out;transition:color 100ms ease-in-out,background-color 100ms ease-in-out;border:1px solid #232323;border-radius:5px;display:inline-block;margin-bottom:13px;margin-right:6px;padding:4px 8px 5px;text-decoration:none !important}.announcement-year-button.selected,.no-touch .announcement-year-button:hover{background-color:#232323;color:#fff}.spinner{border-top:5px solid #000;border-right:5px solid transparent;border-bottom:5px solid transparent;border-left:5px solid #000;border-radius:1000px;height:40px;left:50%;position:absolute;top:50%;width:40px;z-index:1;-moz-transform:translate(-50%, -50%);-ms-transform:translate(-50%, -50%);-webkit-transform:translate(-50%, -50%);transform:translate(-50%, -50%);-moz-animation:spin 0.6s infinite linear;-webkit-animation:spin 0.6s infinite linear;animation:spin 0.6s infinite linear;opacity:0;-moz-transition:opacity 250ms ease-in-out;-o-transition:opacity 250ms ease-in-out;-webkit-transition:opacity 250ms ease-in-out;transition:opacity 250ms ease-in-out}.is-loading .spinner{opacity:1}.panel-items .spinner{position:static;margin-left:50%;margin-top:30px}@keyframes spin{from{-webkit-transform:rotate(0deg);-moz-transform:rotate(0deg);-o-transform:rotate(0deg);-ms-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(359deg);-moz-transform:rotate(359deg);-o-transform:rotate(359deg);-ms-transform:rotate(359deg);transform:rotate(359deg)}}@-moz-keyframes spin{from{-moz-transform:rotate(0deg);transform:rotate(0deg)}to{-moz-transform:rotate(359deg);transform:rotate(359deg)}}@-webkit-keyframes spin{from{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@-ms-keyframes spin{from{-ms-transform:rotate(0deg);transform:rotate(0deg)}to{-ms-transform:rotate(359deg);transform:rotate(359deg)}}@-o-keyframes spin{from{-o-transform:rotate(0deg);transform:rotate(0deg)}to{-o-transform:rotate(359deg);transform:rotate(359deg)}}.overlay-item{-moz-transform:translate(-50%, -50%);-ms-transform:translate(-50%, -50%);-webkit-transform:translate(-50%, -50%);transform:translate(-50%, -50%);position:absolute;top:50%;left:50%;width:718px;max-width:90%}.overlay__inner-top{color:#232323;text-align:center}.overlay__inner-top--architecture,.overlay__inner-top--program,.ckeckbox-eflux{display:none}.overlay-subscribe--e-flux .ckeckbox-architecture{border-top:2px solid !important}.overlay-subscribe--architecture .overlay__inner-top--eflux,.overlay-subscribe--architecture .overlay__inner-top--program,.overlay-subscribe--architecture .ckeckbox-architecture{display:none}.overlay-subscribe--architecture .overlay__inner-top--architecture,.overlay-subscribe--architecture .ckeckbox-eflux{display:block}.overlay-subscribe--program .overlay__inner-top--eflux,.overlay-subscribe--program .overlay__inner-top--architecture,.overlay-subscribe--program .ckeckbox-program{display:none}.overlay-subscribe--program .overlay__inner-top--program,.overlay-subscribe--program .ckeckbox-eflux{display:block}.overlay__inner-title{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:40px;line-height:1.2;font-weight:bold}@media (max-width: 767px){.overlay__inner-title{font-size:22px}}.overlay__inner-text{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:20px;line-height:1.35;margin-top:27px}.overlay-header-menu{display:none;position:fixed;left:0;top:0;right:0;bottom:0;background-color:rgba(255,255,255,0.9);z-index:1000}.overlay-subscribe-header{zoom:1;font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:21px;line-height:1.2}.overlay-subscribe-header:before,.overlay-subscribe-header:after{content:"";display:table}.overlay-subscribe-header:after{clear:both}@media (max-width: 1023px){.overlay-subscribe-header{font-size:16px}}.overlay-subscribe-header-close,.overlay-subscribe-header-unsubscribe,.overlay-subscribe-header-subscribe{cursor:pointer;-moz-user-select:-moz-none;-ms-user-select:none;-webkit-user-select:none;user-select:none}.overlay-subscribe-header-close{background-image:url("../elements/close.svg");background-repeat:no-repeat;background-position:center;background-size:contain;position:absolute;top:42px;left:35px;width:36px;height:36px}.overlay-subscribe-header-unsubscribe,.overlay-subscribe-header-subscribe{float:right}.overlay-subscribe-form,.overlay-contact-form{margin-top:14px}.overlay__inner-top+.overlay-subscribe-form,.overlay__inner-top+.overlay-subscribe-form-second{margin-top:51px}.overlay-subscribe-input{border:2px solid #232323;position:relative}.overlay-subscribe-input input,.overlay-subscribe-input textarea{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:21px;line-height:1.2;display:block;margin:0;padding:19px 25px 22px;border:0;width:100%;height:66px}@media (max-width: 1023px){.overlay-subscribe-input input,.overlay-subscribe-input textarea{font-size:16px}}.overlay-subscribe-input input:focus,.overlay-subscribe-input textarea:focus{outline:none}.overlay-subscribe-input.textarea textarea{resize:none;height:182px}.overlay-subscribe-input+.overlay-subscribe-input{border-left:0}.overlay-subscribe-input.error input,.overlay-subscribe-input.error textarea{outline:2px solid red;position:relative;z-index:1}.wrap-overlay-subscribe-input .overlay-subscribe-input{width:100%}.wrap-overlay-subscribe-input.subscribe-size-2{display:flex}.wrap-overlay-subscribe-input.subscribe-size-2 .overlay-subscribe-input{width:50%;border-top:0;border-bottom:0;outline-offset:0}.wrap-overlay-subscribe-input.subscribe-size-3{display:flex}.wrap-overlay-subscribe-input.wrap-twitter-typeahead{height:68px}.wrap-overlay-subscribe-input.wrap-twitter-typeahead .overlay-subscribe-input{border-top:0}.wrap-overlay-subscribe-input.wrap-twitter-typeahead .empty-message{color:#fff}.wrap-overlay-subscribe-input .twitter-typeahead{width:100%}.overlay-subscribe-button{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:20px;line-height:1.1;cursor:pointer;-moz-user-select:-moz-none;-ms-user-select:none;-webkit-user-select:none;user-select:none;width:100%;color:#fff;background-color:#232323;text-align:center;padding-top:22px;padding-bottom:24px;margin-top:-1px;border:none}@media (max-width: 1023px){.overlay-subscribe-button{font-size:16px}}.overlay-subscribe-button:focus{outline:none}.overlay-subscribe-button[disabled]{background-color:#ccc}.overlay-subscribe-button.overlay-subscribe-button--thanks{background-color:#232323}.wrap-overlay-subscribe-ckeckbox{zoom:1;border-top:2px solid #232323;border-left:2px solid #232323;border-right:2px solid #232323;border-bottom:2px solid #232323;position:relative}.wrap-overlay-subscribe-ckeckbox:before,.wrap-overlay-subscribe-ckeckbox:after{content:"";display:table}.wrap-overlay-subscribe-ckeckbox:after{clear:both}.wrap-overlay-subscribe-ckeckbox+.wrap-overlay-subscribe-ckeckbox,.wrap-overlay-subscribe-ckeckbox.no-top-border{border-top:0}.wrap-overlay-subscribe-ckeckbox.error .wrap-subscribe-checkbox-input,.wrap-overlay-subscribe-ckeckbox.error .wrap-subscribe-checkbox-text{outline:2px solid red}.wrap-subscribe-checkbox-input{background-color:#fff;float:left;width:70px;border-right:2px solid #232323}.subscribe-checkbox-input{display:none}.subscribe-checkbox-input:checked+.subscribe-checkbox-icon:after{content:"";opacity:1}.subscribe-checkbox-icon{cursor:pointer;-moz-user-select:-moz-none;-ms-user-select:none;-webkit-user-select:none;user-select:none;width:70px;height:67px;display:block;position:relative}.subscribe-checkbox-icon:after{content:"";-moz-transform:translate(-50%, -50%);-ms-transform:translate(-50%, -50%);-webkit-transform:translate(-50%, -50%);transform:translate(-50%, -50%);width:34px;height:30px;background-image:url("../elements/symbol-check.svg");background-size:contain;background-repeat:no-repeat;display:inline-block;position:absolute;top:50%;left:50%;opacity:0.3}.wrap-subscribe-checkbox-text{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:21px;line-height:1.2;background-color:#fff;float:left;width:calc(100% - 70px);height:67px;position:relative;padding-left:26px}@media (max-width: 1023px){.wrap-subscribe-checkbox-text{font-size:16px}}.wrap-subscribe-checkbox-text.subscribe-checkbox-text-small{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:13px;line-height:1.0769;padding-left:16px}@media (max-width: 767px){.wrap-subscribe-checkbox-text.subscribe-checkbox-text-small{font-size:11px}}.subscribe-vertial-center{-moz-transform:translateY(-50%);-ms-transform:translateY(-50%);-webkit-transform:translateY(-50%);transform:translateY(-50%);position:absolute;top:50%}.subscribe-checkbox-text-small{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:15px;line-height:1.1;color:#b3b3b3}.subscribe-checkbox-infotext{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:15px;line-height:1.1;color:#4d4d4d}.overlay-contact-form-successful .overlay-subscribe-button{margin-top:15px}.subscribe-successful-text{border:4px solid lime;background-color:#fff;text-align:center;padding:67px 87px 83px;margin-top:11px}.subscribe-successful-text p{margin-top:25px;color:#6b6b6b;font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:13px;line-height:1.0769}@media (max-width: 767px){.subscribe-successful-text p{font-size:11px}}.subscribe-successful-text-title{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:21px;line-height:1.2}@media (max-width: 1023px){.subscribe-successful-text-title{font-size:16px}}.overlay-contact .subscribe-size-2{border-top:2px solid #232323}.overlay-subscribe-input ::-webkit-input-placeholder{color:#b3b3b3;opacity:1;line-height:normal !important}.overlay-subscribe-input :-moz-placeholder{color:#b3b3b3;opacity:1;line-height:normal !important}.overlay-subscribe-input ::-moz-placeholder{color:#b3b3b3;opacity:1;line-height:normal !important}.overlay-subscribe-input :-ms-input-placeholder{color:#b3b3b3;opacity:1;line-height:normal !important}.overlay-subscribe-hidden{display:none}.related-items-message{margin-top:50px;width:300px}.show-only-on-mobile{display:none}.block-overlay{-moz-transition:opacity 275ms ease-in-out,visibility 275ms ease-in-out,margin-top 275ms ease-in-out;-o-transition:opacity 275ms ease-in-out,visibility 275ms ease-in-out,margin-top 275ms ease-in-out;-webkit-transition:opacity 275ms ease-in-out,visibility 275ms ease-in-out,margin-top 275ms ease-in-out;transition:opacity 275ms ease-in-out,visibility 275ms ease-in-out,margin-top 275ms ease-in-out;position:relative;top:0;left:0;right:0;bottom:0;background-color:#fff;opacity:0;visibility:hidden;margin-top:0;min-height:100vh;z-index:400}.block-overlay.push-down{margin-top:100vh}.block-overlay .content{-moz-transition:opacity 275ms ease-in-out,visibility 275ms ease-in-out;-o-transition:opacity 275ms ease-in-out,visibility 275ms ease-in-out;-webkit-transition:opacity 275ms ease-in-out,visibility 275ms ease-in-out;transition:opacity 275ms ease-in-out,visibility 275ms ease-in-out;visibility:hidden;opacity:0}.block-overlay.content-ready .content{visibility:visible;opacity:1}.transitions-disable .block-overlay{-moz-transition:none;-o-transition:none;-webkit-transition:none;transition:none}.block-overlay:not(.header-lock) .header-article{position:absolute}.block-overlay:not(.header-lock) .header-article .logo{position:relative}.block-overlay:not(.header-lock) .menu-items-fixed{position:absolute}.overlay-content-loaded .block-overlay{opacity:1;visibility:visible}.overlay-content-loaded .content-home{position:fixed;top:0}.overlay-content-loaded.overlay-content-fadeout .block-overlay{opacity:0;visibility:hidden}.clickable{cursor:pointer;-moz-user-select:-moz-none;-ms-user-select:none;-webkit-user-select:none;user-select:none}.mobile-panel-labels{display:none}#spinner_overlay{-moz-transition:opacity 250ms ease,visibility 250ms ease;-o-transition:opacity 250ms ease,visibility 250ms ease;-webkit-transition:opacity 250ms ease,visibility 250ms ease;transition:opacity 250ms ease,visibility 250ms ease;position:fixed;top:70px;left:0;right:0;height:calc(100vh - 70px);visibility:hidden;opacity:0;z-index:9999}#spinner_overlay.visible{visibility:visible;opacity:1}#spinner{border-top:5px solid #000;border-right:5px solid transparent;border-bottom:5px solid transparent;border-left:5px solid #000;border-radius:1000px;height:40px;left:50%;margin-left:-20px;margin-top:-20px;position:absolute;top:50%;width:40px;z-index:1;-moz-animation:spin 0.6s infinite linear;-webkit-animation:spin 0.6s infinite linear;animation:spin 0.6s infinite linear}@keyframes spin{from{-webkit-transform:rotate(0deg);-moz-transform:rotate(0deg);-o-transform:rotate(0deg);-ms-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(359deg);-moz-transform:rotate(359deg);-o-transform:rotate(359deg);-ms-transform:rotate(359deg);transform:rotate(359deg)}}@-moz-keyframes spin{from{-moz-transform:rotate(0deg);transform:rotate(0deg)}to{-moz-transform:rotate(359deg);transform:rotate(359deg)}}@-webkit-keyframes spin{from{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@-ms-keyframes spin{from{-ms-transform:rotate(0deg);transform:rotate(0deg)}to{-ms-transform:rotate(359deg);transform:rotate(359deg)}}@-o-keyframes spin{from{-o-transform:rotate(0deg);transform:rotate(0deg)}to{-o-transform:rotate(359deg);transform:rotate(359deg)}}.scroll-down:not(.scroll-down-disable) .header-article{top:-70px}.scroll-down:not(.scroll-down-disable) .article-tool-buttons{bottom:-48px}.scroll-down:not(.scroll-down-disable) .article-tool-module{margin-bottom:-48px}.block-reviews{margin-top:90px}.block-reviews-headline{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:34px;line-height:1.1;font-weight:bold}@media (max-width: 1023px){.block-reviews-headline{font-size:23px}}.review-items{margin-top:71px}.review-item{position:relative}.review-item+.review-item{margin-top:44px}.review-item-title{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:28px;line-height:1.36;font-weight:bold}.review-item-author{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:28px;line-height:1.36;margin-top:2px}.review-item-texts{margin-top:27px}.review-item-marker{position:absolute;bottom:-32px;left:-192px;width:32px;height:1px;background-color:#232323}.review-item-more{cursor:pointer;-moz-user-select:-moz-none;-ms-user-select:none;-webkit-user-select:none;user-select:none;position:relative}.review-item-more:after{content:"";position:absolute;bottom:3px;left:0;right:0;border-bottom:1px solid}.sidebar-reviews{border:4px solid #2a2a2a;float:left;padding:26px 16px;margin-bottom:61px}.sidebar-review-items{margin-top:20px}.sidebar-review-item+.sidebar-review-item{margin-top:17px}.sidebar-review-item a{position:relative}.sidebar-review-item a:after{content:"";position:absolute;bottom:3px;left:0;right:0;border-bottom:1px solid}.block-material{background-color:#232323;clear:both;color:#fff;float:left;width:100vw;height:65vh;min-height:520px;position:relative;margin-left:-32px;overflow-x:scroll;margin-bottom:48px}.block-material::-webkit-scrollbar{cursor:pointer;-moz-user-select:-moz-none;-ms-user-select:none;-webkit-user-select:none;user-select:none;height:8px}.block-material::-webkit-scrollbar-button{display:block;width:0;height:0}.block-material::-webkit-scrollbar-track-piece{background:rgba(211,211,211,0.8)}.block-material::-webkit-scrollbar-thumb{display:block;background:#000}@media (min-height: 1024px){.block-material::-webkit-scrollbar{height:16px}}.block-material-slider{zoom:1;padding-left:32px;padding-right:32px}.block-material-slider:before,.block-material-slider:after{content:"";display:table}.block-material-slider:after{clear:both}.block-material-group{float:left}.block-material-group+.block-material-group{margin-left:100px}.block-material-group-title{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:28px;line-height:1.36;font-weight:bold;margin-top:37px}.block-material-items{zoom:1;margin-top:41px}.block-material-items:before,.block-material-items:after{content:"";display:table}.block-material-items:after{clear:both}.block-material-item{float:left;position:relative;overflow:hidden}.block-material-item figcaption{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:13px;line-height:1.1;position:absolute;top:calc(100% + 22px);left:0;right:0}@media (max-width: 1023px){.block-material-item figcaption{font-size:11px}}.block-material-item+.block-material-item{margin-left:32px}.block-material-item-video{position:relative;width:calc(40vh * 1.77);height:40vh}.block-material-item-video figure{padding-bottom:56.25%}.block-material-item-video iframe{position:absolute;top:0;left:0;width:100%;height:100%}.block-material-item-image{height:40vh;width:auto}.badge-wrapper{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:14px;line-height:1.1;position:absolute;top:-16px;right:0;width:208px;z-index:10}@media (max-width: 1023px){.badge-wrapper{font-size:12px}}.content-article .badge-wrapper{top:95px;right:21px;position:fixed}.header-tools-active .content-article .badge-wrapper{top:143px}.no-touch .badge-wrapper.with-hover:hover .badge-type{left:-11px;top:-11px}.no-touch .badge-wrapper.with-hover:hover .badge-date{left:18px;top:18px}.badge-wrapper--collection{position:relative;height:47px;top:100%;left:0;right:0;margin:0 auto;margin-top:12px}.badge{-moz-transition:all .1s ease-out;-o-transition:all .1s ease-out;-webkit-transition:all .1s ease-out;transition:all .1s ease-out;width:190px;text-align:center;border:2px solid #232323;display:inline-block;padding:0.75em;letter-spacing:0.1em;background:white;position:absolute;cursor:pointer}.badge-type{left:0;top:0;z-index:50}.no-touch .preview-item-feature:hover .badge-type,.no-touch .clickable-block:hover .badge-type{left:-11px;top:-11px}.no-touch .preview-item-feature:hover .badge-wrapper-superhumanity .badge-type,.no-touch .clickable-block:hover .badge-wrapper-superhumanity .badge-type{background:yellow}.badge-date{z-index:0;left:7px;top:7px}.no-touch .preview-item-feature:hover .badge-date,.no-touch .clickable-block:hover .badge-date{left:18px;top:18px}.preview-item-feature .preview-item-image{margin:0 auto}.preview-item-index:not(.preview-item-index-tags)+.preview-item-index{margin-top:37px}.preview-item-index+.preview-item-index-tags{margin-top:2px}.preview-item-group+.preview-item-index{margin-top:28px}.preview-item-index+.preview-item-group{margin-top:28px}.preview-item-index-name,.preview-item-index-tag,.preview-item-group{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:21px;font-weight:normal;line-height:1.1}@media (max-width: 1023px){.preview-item-index-name,.preview-item-index-tag,.preview-item-group{font-size:18px;line-height:1.2}}.preview-item-index-text{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:14px;line-height:1.1}@media (max-width: 1023px){.preview-item-index-text{font-size:12px}}.preview-item-index-link{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:14px;line-height:1.1}@media (max-width: 1023px){.preview-item-index-link{font-size:12px}}.preview-item-index-link a{text-decoration:underline}.preview-item-index-text+.preview-item-index-link{margin-top:19px}.panel-scrolling-container.panel-scrolling-index{height:calc(100vh - 180px);margin-top:180px}.panel-scrolling-container.panel-scrolling-index .panel-items{margin-top:69px}.panel-index-chars{zoom:1;font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:14px;line-height:1.1;background-image:url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIzNSUiIHN0b3AtY29sb3I9IiNmZmZmZmYiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmZmZmZmYiIHN0b3Atb3BhY2l0eT0iMC4wIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNncmFkKSIgLz48L3N2Zz4g');background-size:100%;background-image:-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(35%, #ffffff),color-stop(100%, rgba(255,255,255,0)));background-image:-moz-linear-gradient(top, #ffffff 35%,rgba(255,255,255,0) 100%);background-image:-webkit-linear-gradient(top, #ffffff 35%,rgba(255,255,255,0) 100%);background-image:linear-gradient(to bottom, #ffffff 35%,rgba(255,255,255,0) 100%);padding-bottom:54px;position:absolute;top:0;width:100%;z-index:100}.panel-index-chars:before,.panel-index-chars:after{content:"";display:table}.panel-index-chars:after{clear:both}@media (max-width: 1023px){.panel-index-chars{font-size:12px}}.panel-index-char{cursor:pointer;-moz-user-select:-moz-none;-ms-user-select:none;-webkit-user-select:none;user-select:none;float:left}.panel-index-char+.panel-index-char{margin-left:6px}.js-open-jornal{cursor:pointer;-moz-user-select:-moz-none;-ms-user-select:none;-webkit-user-select:none;user-select:none}#splash{-moz-transition:opacity 1000ms ease-in-out;-o-transition:opacity 1000ms ease-in-out;-webkit-transition:opacity 1000ms ease-in-out;transition:opacity 1000ms ease-in-out;position:fixed;top:0;left:0;bottom:0;right:0;opacity:1;z-index:9999;background-size:cover;background-position:center;background-repeat:no-repeat;background-color:#fff}#splash.splash-hidden{opacity:0}#splash-badge{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:14px;line-height:1.1;position:absolute;right:36px;top:36px;padding:13px 37px;border:2px solid #000}.overlay-journal-image{-moz-transform:translate(-50%, -50%);-ms-transform:translate(-50%, -50%);-webkit-transform:translate(-50%, -50%);transform:translate(-50%, -50%);position:absolute;left:50%;top:50%}.mobile-tool-module-menu-button,.mobile-tool-button-more,.tool-module-mobilemore,.mobile-tool-module-title{display:none}.tool-module-notes .mobile-tool-module-close-button{cursor:pointer;-moz-user-select:-moz-none;-ms-user-select:none;-webkit-user-select:none;user-select:none;box-sizing:content-box;right:initial;top:0;right:0;height:18px;width:18px;padding:15px 15px;position:absolute;z-index:1}.tool-module-notes .mobile-tool-module-close-button:after{content:"";background-image:url("../elements/close.svg");background-repeat:no-repeat;background-size:contain;height:18px;width:18px;display:block}.dropdown{position:relative}.dropdown.dropdown-open .dropdown-list{display:block}p+.dropdown,.dropdown+p,.dropdown+h2,.dropdown+.dropdown{margin-top:1.2em}.dropdown-title{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:16px;line-height:1.3;cursor:pointer;-moz-user-select:-moz-none;-ms-user-select:none;-webkit-user-select:none;user-select:none;position:relative;border:1px solid;padding:5px 15px 8px 12px}.dropdown-title-arrow{position:absolute;right:0;top:0;border-left:1px solid;width:58px;height:33px}.dropdown-title-arrow:after{content:"";background-image:url("../elements/arrow_down.svg");background-repeat:no-repeat;background-size:30px 8px;background-position:center;width:58px;height:33px;display:block}.dark-background .dropdown-title-arrow:after{background-image:url("../elements/arrow_down_lightgray.svg")}.dropdown-list{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:16px;line-height:1.3;display:none;position:absolute;top:34px;left:0;width:100%;background:#fff;border:1px solid;padding:8px 15px 8px 12px;max-height:330px;overflow-y:scroll;-webkit-overflow-scrolling:touch;z-index:10}.dark-background .dropdown-list{background:#232323}.dropdown-list::-webkit-scrollbar{cursor:pointer;-moz-user-select:-moz-none;-ms-user-select:none;-webkit-user-select:none;user-select:none;width:10px}.dropdown-list::-webkit-scrollbar-button{display:block;width:0;height:0}.dropdown-list::-webkit-scrollbar-track-piece{background:rgba(211,211,211,0.8)}.dropdown-list::-webkit-scrollbar-thumb{display:block;background:#000}.dropdown-list-item a{text-decoration:none}.dropdown-list-item+.dropdown-list-item{margin-top:4px}.dropdown-searchable{position:relative}p+.dropdown-searchable,.dropdown-searchable+p,.dropdown-searchable+h2,.dropdown+.dropdown-searchable{margin-top:1.2em}.dropdown-searchable .dropdown-title-arrow{height:35px}.dropdown-searchable+.dropdown-searchable{margin-top:30px}.dropdown-searchable__title{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:18px;line-height:1.1;cursor:pointer;-moz-user-select:-moz-none;-ms-user-select:none;-webkit-user-select:none;user-select:none;position:relative;border:1px solid #000;padding:6px 15px 10px 12px}.dropdown-searchable__subtitle{color:#929292}.dropdown-searchable__arrow{position:absolute;right:0;top:0;border-left:1px solid #000;width:58px;height:33px}.dropdown-searchable__arrow:after{content:"";background-image:url("../elements/arrow_down.svg");background-repeat:no-repeat;background-size:30px 8px;background-position:center;width:58px;height:33px;display:block}.wrap-dropdown-searchable{display:none;background:#fff;position:absolute;left:0;top:36px;width:100%;z-index:10}.dropdown-searchable__list{border:1px solid #000;max-height:330px;overflow-y:scroll;-webkit-overflow-scrolling:touch;position:relative;z-index:10}.dropdown-searchable__list::-webkit-scrollbar{cursor:pointer;-moz-user-select:-moz-none;-ms-user-select:none;-webkit-user-select:none;user-select:none;width:10px}.dropdown-searchable__list::-webkit-scrollbar-button{display:block;width:0;height:0}.dropdown-searchable__list::-webkit-scrollbar-track-piece{background:rgba(211,211,211,0.8)}.dropdown-searchable__list::-webkit-scrollbar-thumb{display:block;background:#000}.dropdown-searchable__item{padding:6px 15px 6px 12px}.dropdown-searchable__item:first-child{padding-top:8px}.dropdown-searchable__item:last-child{padding-bottom:8px}.no-touch .dropdown-searchable__item:hover{background-color:#dbdbdb}.dropdown-searchable__item-clickable{cursor:pointer;-moz-user-select:-moz-none;-ms-user-select:none;-webkit-user-select:none;user-select:none;display:block}.dropdown__title{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:18px;line-height:1.1;display:block}.dropdown__subline{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:14px;line-height:1.1;display:block;color:#929292;margin-top:6px}@media (max-width: 1023px){.dropdown__subline{font-size:12px}}.dropdown__articles{margin-right:12px}.dropdown-searchable__input{background:#232323;border:0;margin:0;padding:6px 15px 10px 12px;color:#919292;width:100%}.dropdown-searchable__input:focus{outline:none}.dropdown-searchable__no-results{display:none;background:#fff;border:1px solid #000;padding:6px 15px 10px 12px;position:absolute;width:100%;top:36px}.dropdown-searchable__no-results--show{display:block}.dropdown-searchable--open .wrap-dropdown-searchable{display:block}.dropdown-searchable--open .dropdown-title-arrow:after{-moz-transform:scale(-1);-ms-transform:scale(-1);-webkit-transform:scale(-1);transform:scale(-1)}.dropdown-searchable__filter-items{-webkit-flex-wrap:wrap;flex-wrap:wrap;display:none;margin-top:13px}.dropdown-searchable--has-values .dropdown-searchable__filter-items{display:flex;display:-webkit-flex}.dropdown-searchable__filter-item{cursor:pointer;-moz-user-select:-moz-none;-ms-user-select:none;-webkit-user-select:none;user-select:none;border-radius:4px;display:inline-block;background:#232323;color:#fff;padding:4px 8px 5px;margin-right:5px;margin-bottom:5px}.dropdown-searchable__filter-item:after{content:'';display:inline-block;box-sizing:content-box;background-image:url("../elements/close_white.svg");background-size:contain;background-repeat:no-repeat;background-position:right;width:12px;height:12px;padding-left:9px;position:relative;top:-1px}.preview-collection__title{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:34px;line-height:1.1;font-weight:bold;display:block}@media (max-width: 1023px){.preview-collection__title{font-size:23px}}.preview-item-image+.preview-collection__title{margin-top:20px}.preview-collection__subtitle{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:14px;line-height:1.1;line-height:1.2;color:#929292;margin-top:8px}@media (max-width: 1023px){.preview-collection__subtitle{font-size:12px}}.collection-item{margin-top:42px}.collection-item+.collection-item{margin-top:23px}.collection-item--disable{opacity:.5}.collection-item__authors{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:14px;line-height:1.1}@media (max-width: 1023px){.collection-item__authors{font-size:12px}}.collection-item__title{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:18px;font-weight:normal;line-height:1.2}.collection-item__authors+.collection-item__title{margin-top:2px}.collection-item__type{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:14px;font-weight:bold;line-height:1.2;margin-top:5px}.panel-container--hide{display:none}.preview-item--collection .preview-item-info-title{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:34px;line-height:1.1;font-weight:bold}@media (max-width: 1023px){.preview-item--collection .preview-item-info-title{font-size:23px}}.preview-item--collection .preview-item-text{margin-top:22px}.preview-item--collection .event-button{margin-top:22px}.preview-info-collection__size{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:14px;line-height:1.1;line-height:1.2;margin-top:7px}@media (max-width: 1023px){.preview-info-collection__size{font-size:12px}}.preview-info-collection__subtitle{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:14px;line-height:1.1;line-height:1.2;color:#929292;margin-top:8px}@media (max-width: 1023px){.preview-info-collection__subtitle{font-size:12px}}.preview-collection-item{padding-right:32px}.preview-collection-item .preview-item-image{margin-bottom:20px}.preview-collection-item .badge-wrapper{position:relative;height:50px;top:0;margin-top:10px}.preview-collection-item__artists{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:14px;line-height:1.1}@media (max-width: 1023px){.preview-collection-item__artists{font-size:12px}}.preview-collection-item__title{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:21px;font-weight:bold;line-height:1.1;display:inline-block}.preview-collection-item__artists+.preview-collection-item__title{margin-top:12px}.preview-collection-item__journal{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:14px;font-weight:bold;line-height:1.2;margin-top:5px}.preview-collection-item__text{font-family:"Freight Text W01",Georgia,serif;font-size:18px;line-height:1.2;margin-top:20px}.fancybox-default-skin-open{box-shadow:none}.fancybox-default-overlay{background-color:#232323}a.fancybox-close{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:16px;line-height:1.1;position:fixed;right:0;top:0;width:auto;height:auto;padding-top:27px;padding-right:36px;background-image:none !important}a.fancybox-close:after{content:"Close";color:#fff}.fancybox-wrap{-moz-transform:none;-ms-transform:none;-webkit-transform:none;transform:none}.fancybox-wrap .fancybox-close{display:none !important}.fancybox-title{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:13px;line-height:1.1;text-align:center;margin-top:15px}@media (max-width: 1023px){.fancybox-title{font-size:11px}}.fancybox-title.portrait{margin-left:-25%;width:150%}.fancybox-caption-text+.fancybox-counter{margin-top:45px}.lightbox-item{display:block}.lightbox-item-video{position:relative}.lightbox-item-video:before{content:"";position:relative;padding-bottom:56.25%;top:0;z-index:100;display:block;width:100%}.fancybox-title-clone{display:none}.fancybox-headline{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:16px;line-height:1.1;text-align:center;position:fixed;left:0;right:0;top:0;color:#fff;width:calc(100vw - 350px);margin-top:27px;margin-left:auto !important;margin-right:auto !important}.fancybox-logo{position:fixed;top:20px;left:28px;height:28px;width:94px;background-image:url("../elements/e-flux-logo-white.svg");background-repeat:no-repeat;background-size:cover}html.page-with-columns.fancybox-lock body{height:auto}#fancybox-loading{border-top:5px solid #fff;border-right:5px solid transparent;border-bottom:5px solid transparent;border-left:5px solid #fff;border-radius:1000px;height:40px;left:50%;position:fixed;top:50%;width:40px;z-index:99999;-moz-transform:translate(-50%, -50%);-ms-transform:translate(-50%, -50%);-webkit-transform:translate(-50%, -50%);transform:translate(-50%, -50%);-moz-animation:spin 0.6s infinite linear;-webkit-animation:spin 0.6s infinite linear;animation:spin 0.6s infinite linear;background:none;margin-left:0;margin-top:0}a.fancybox-nav{bottom:28px;border:1px solid white;height:43px;position:fixed;top:auto;width:43px}a.fancybox-nav span{background-repeat:no-repeat;background-position:center;height:100%;margin-top:0;top:auto;width:100%}a.fancybox-next{right:36px}a.fancybox-next span{background-image:url(../elements/arrow_next_white.svg) !important;background-size:6px !important}a.fancybox-prev{left:auto;right:78px}a.fancybox-prev span{background-image:url(../elements/arrow_prev_white.svg) !important;background-size:6px !important}#fancybox-lock.fancybox-comic{-moz-transform:none;-ms-transform:none;-webkit-transform:none;transform:none;-webkit-overflow-scrolling:touch}#fancybox-lock.fancybox-comic .fancybox-title.portrait{width:100%;margin-left:0 !important}#fancybox-lock.fancybox-comic .fancybox-wrap{padding-bottom:94px;width:calc(100% - 384px) !important;height:inherit !important;top:0 !important}#fancybox-lock.fancybox-comic .fancybox-image{max-width:none !important;max-height:none !important}#fancybox-lock.fancybox-comic .fancybox-headline{background-color:rgba(35,35,35,0.98);padding-bottom:26px;padding-top:23px;margin-top:0;z-index:9000}#fancybox-lock.fancybox-comic .fancybox-title{position:fixed;left:0;bottom:0;background:rgba(35,35,35,0.98);padding-top:40px;padding-bottom:40px;min-height:94px}#fancybox-lock.fancybox-comic .fancybox-caption-text{text-align:left;margin-left:32px;width:calc(100% - 400px)}#fancybox-lock.fancybox-comic .fancybox-counter{position:fixed;bottom:42px;right:158px}@media (max-width: 1023px){#fancybox-lock.fancybox-comic .fancybox-wrap{width:calc(100% - 1px) !important;left:0 !important;margin-left:0 !important;margin-right:0 !important;padding-bottom:0;margin-bottom:0 !important}#fancybox-lock.fancybox-comic .fancybox-caption-text{margin-left:0;width:calc(100% - 70px)}#fancybox-lock.fancybox-comic .fancybox-counter{right:19px;bottom:fixed;bottom:initial;top:-25px}#fancybox-lock.fancybox-comic .fancybox-title{background-color:transparent;opacity:1 !important;visibility:visible !important}#fancybox-lock.fancybox-comic a.fancybox-nav{display:inline-block;bottom:19px}#fancybox-lock.fancybox-comic a.fancybox-next{right:19px}#fancybox-lock.fancybox-comic a.fancybox-prev{right:61px}#fancybox-lock.fancybox-comic .fancybox-spacer{height:82px !important}}.sidebar-banner-ad{-moz-transition:opacity 125ms ease-in-out,filter 125ms ease-in-out,-webkit-filter 125ms ease-in-out,visibility 125ms ease-in-out;-o-transition:opacity 125ms ease-in-out,filter 125ms ease-in-out,-webkit-filter 125ms ease-in-out,visibility 125ms ease-in-out;-webkit-transition:opacity 125ms ease-in-out,filter 125ms ease-in-out,-webkit-filter 125ms ease-in-out,visibility 125ms ease-in-out;transition:opacity 125ms ease-in-out,filter 125ms ease-in-out,-webkit-filter 125ms ease-in-out,visibility 125ms ease-in-out;-webkit-filter:grayscale(100%);filter:grayscale(100%);position:absolute;right:-92px;bottom:86px;width:279px;height:496px;opacity:0;visibility:hidden;-webkit-backface-visibility:hidden;backface-visibility:hidden}.sidebar-banner-ad img{float:right;width:auto;height:100%}.sidebar-banner-ad.ad-active{opacity:0.8;visibility:visible}.sidebar-banner-ad.ad-active:hover{-webkit-filter:grayscale(0);filter:grayscale(0);opacity:1}.sidebar-banner-ad.ad-active:hover .sidebar-banner-ad-expander{width:279px;height:496px}.sidebar-banner-ad.ad-active.ad-hidden{opacity:0;visibility:hidden}.sidebar-banner-ad.ad-pin{position:fixed;right:36px;bottom:134px !important}.scroll-down:not(.scroll-down-disable) .sidebar-banner-ad.ad-pin{bottom:86px !important}.sidebar-banner-ad.ad-animated{-moz-transition:bottom 250ms ease-in-out;-o-transition:bottom 250ms ease-in-out;-webkit-transition:bottom 250ms ease-in-out;transition:bottom 250ms ease-in-out}.sidebar-banner-ad.ad-pin-bottom{position:absolute;right:-92px;bottom:0 !important}.sidebar-banner-ad-expander{-moz-transition:width 125ms ease-in-out,height 125ms ease-in-out;-o-transition:width 125ms ease-in-out,height 125ms ease-in-out;-webkit-transition:width 125ms ease-in-out,height 125ms ease-in-out;transition:width 125ms ease-in-out,height 125ms ease-in-out;position:absolute;width:178px;height:315px;max-height:calc(100vh - 302px);right:0;bottom:0}.js-banner-ad-trigger{width:1px;height:496px;clear:both;float:left}.gw-infowindow>div:nth-child(1){margin-top:-3px;border-right:22px solid transparent !important;border-left:22px solid transparent !important;border-top:22px solid #000 !important;margin-left:-13px}.gw-infowindow>div:nth-child(3){margin-top:-2px;z-index:1}.gw-infowindow>div:nth-child(3)>div{width:19px !important;height:24px !important}.gw-infowindow>div:nth-child(3)>div:nth-child(1){left:-10px !important}.gw-infowindow>div:nth-child(3)>div:nth-child(1) div{box-shadow:none !important;transform:skewX(45deg) !important;height:26px !important;width:22px !important;left:-3px !important}.gw-infowindow>div:nth-child(3)>div:nth-child(2){left:9px !important}.gw-infowindow>div:nth-child(3)>div:nth-child(2) div{box-shadow:none !important;transform:skewX(-45deg) !important;height:26px !important;width:22px !important}.gw-infowindow>div:nth-child(4){border:2px solid #000}.gm-style-iw{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:14px;line-height:1.3;padding:10px;box-sizing:content-box}.gm-style-iw a{text-decoration:underline}.gm-style-iw div div{overflow:hidden !important}.panel-show-more{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:18px;font-weight:normal;line-height:1.2;margin-top:72px;text-align:center}.panel-show-more a{text-decoration:underline}.wrap-artdomain-input+.wrap-artdomain-input{margin-top:24px}.wrap-artdomain-input.input-error .artdomain-input,.wrap-artdomain-input.input-error .artdomain-textarea{border-color:red}.artdomain-input,.artdomain-textarea{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:18px;font-weight:normal;line-height:1.2;border:1px solid #232323;padding:7px 10px 9px 10px;margin:0;background-color:#fff;width:100%}.artdomain-input:focus,.artdomain-textarea:focus{outline:none}.artdomain-label{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:14px;line-height:1.1}.artdomain-button{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:18px;font-weight:normal;line-height:1.2;cursor:pointer;-moz-user-select:-moz-none;-ms-user-select:none;-webkit-user-select:none;user-select:none;border:0;background-color:#232323;padding:7px 10px 9px 10px;margin:0;width:100%;color:#fff;margin-top:48px}.artdomain-button:focus{outline:none}.artdomain-form-error+.artdomain-button{margin-top:10px}.artdomain-form-error{margin-top:48px;color:red}.calendar-date{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:21px;font-weight:normal;line-height:1.1;border-top:1px solid #2a2a2a;border-right:1px solid #2a2a2a;border-left:1px solid #2a2a2a;position:relative}@media (max-width: 1023px){.calendar-date{font-size:18px;line-height:1.2}}.calendar-date-display{text-align:center;padding:13px 16px 14px 16px}.calendar-date-prev,.calendar-date-next{cursor:pointer;-moz-user-select:-moz-none;-ms-user-select:none;-webkit-user-select:none;user-select:none;box-sizing:content-box;background-repeat:no-repeat;background-size:6px;position:absolute;top:0;height:100%;width:20px}.calendar-date-prev{background-image:url("../elements/arrow_prev.svg");background-position:right center;padding-left:15px}.calendar-date-next{background-image:url("../elements/arrow_next.svg");background-position:left center;right:0;padding-right:15px}.zabuto_calendar{border:1px solid #2a2a2a;font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:14px;line-height:1.1}@media (max-width: 1023px){.zabuto_calendar{font-size:12px}}.calendar-month-header{display:none}.js-calendar{min-height:200px}.legend{display:none}div.zabuto_calendar .table tr.calendar-month-header th,div.zabuto_calendar .table tr.calendar-dow-header th{background-color:#fff}div.zabuto_calendar .badge-today,div.zabuto_calendar div.legend span.badge-today,div.zabuto_calendar .badge-event{-moz-transition:none;-o-transition:none;-webkit-transition:none;transition:none;width:auto;background-color:transparent;border:0;padding:inherit;letter-spacing:inherit;position:relative;display:inline;color:inherit;position:relative}div.zabuto_calendar .badge-today:after,div.zabuto_calendar div.legend span.badge-today:after{content:"";-moz-transform:translateX(-50%);-ms-transform:translateX(-50%);-webkit-transform:translateX(-50%);transform:translateX(-50%);position:absolute;width:29px;height:26px;border:1px solid #b8b8b8;top:1px;left:50%}div.zabuto_calendar .table tr td.event div.day,div.zabuto_calendar ul.legend li.event{background-color:transparent}.badge-event{position:relative;color:#232323 !important}.badge-event:after{content:"";position:absolute;background-color:red;width:5px;height:5px;display:block;border-radius:50%;right:-7px;top:4px}div.zabuto_calendar .table .calendar-dow-header th{padding-top:17px;padding-bottom:7px}div.zabuto_calendar .table tr td div.day{padding-top:3px;padding-bottom:3px}div.zabuto_calendar tr.calendar-dow-header th,div.zabuto_calendar tr.calendar-dow td{color:#b8b8b8}div.zabuto_calendar .table tr:last-child{border-bottom:0}div.zabuto_calendar .table tr:last-child td{padding-bottom:18px}.modal{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:14px;line-height:1.3;display:none;position:absolute;border:1px solid #2a2a2a;min-width:310px;background-color:#fff;max-width:300px;z-index:1000}.modal.visibile{display:block}.modal .close{display:none}.modal:focus{outline:none}.modal-content{padding:23px 20px 25px 20px}.modal-header{text-align:center;font-weight:bold}.modal-body{text-align:center;margin-top:10px}.panel-items{position:relative}.calendar-event-teaser{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:14px;line-height:1.3;text-align:left;border:1px solid #2a2a2a;padding:23px 20px 25px 20px;margin-bottom:20px}div+.calendar-event-teaser{margin-top:22px}.calendar-event-teaser p+p{margin-top:14px}.js-column-fixed{position:fixed;box-shadow:0 0 20px 40px #fff;background-color:#fff;margin-left:0 !important;top:0;left:32px;z-index:3}.js-column-placeholder{opacity:0}.badge-single{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:14px;line-height:1.1;background-color:#fff;border:2px solid #232323;display:inline-block;padding:0.75em;top:-10px;left:-10px;letter-spacing:0.1em;background:white;position:absolute;cursor:pointer;z-index:2}@media (max-width: 1023px){.badge-single{font-size:12px}}.event-button{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:14px;line-height:1.1;text-transform:uppercase;display:block;text-align:center;border:1px solid #2a2a2a;margin-top:13px;padding:18px 16px 17px 16px;text-decoration:none !important}@media (max-width: 1023px){.event-button{font-size:12px}}.event-button--spaced{margin-bottom:1.54286em;margin-top:1.54286em}.event-join{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:14px;line-height:1.1;cursor:pointer;-moz-user-select:-moz-none;-ms-user-select:none;-webkit-user-select:none;user-select:none;margin-top:13px;position:relative}@media (max-width: 1023px){.event-join{font-size:12px}}.event-join-button{border:1px solid #2a2a2a;padding:18px 16px 17px 16px;text-align:center}.event-join-list{display:none;background-color:#fff;border:1px solid #2a2a2a;position:absolute;top:51px;width:100%;padding-top:21px;padding-bottom:23px}.event-join-button-active+.event-join-list{display:block}.event-join-list-item{display:block;text-align:center;z-index:1}.event-join-list-item+.event-join-list-item{margin-top:17px}.event-years{margin-top:30px;margin-bottom:10px}.cb-player{position:absolute;left:0;top:0;width:100%;height:100%;background-size:cover;background-position:center}.cb-player-controls{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:18px;font-weight:normal;line-height:1.2;color:#232323;background-color:rgba(255,255,255,0.9);padding:21px 20px 14px 20px;height:auto;border-radius:5px;bottom:40px;max-width:930px;margin:0 auto;display:block;opacity:1;visibility:visible}.player-control-top{width:100%;display:flex}.player-control-bottom{zoom:1;width:100%;margin-top:30px}.player-control-bottom:before,.player-control-bottom:after{content:"";display:table}.player-control-bottom:after{clear:both}.cb-player-progress{height:12px;background-color:#6b6b6b;margin-top:6px}.cb-player-time{width:auto;margin-left:24px}.cb-player-progress-load{background-color:#5d5b5b}.cb-player-progress-play{background-color:#232323}.cb-player-play{width:23px;height:28px}.cb-player-button-play{width:22px;height:27px;border-width:14px 0 14px 23px;border-color:transparent transparent transparent #232323}.cb-player-button-pause{box-sizing:content-box;border-left:8px solid #000;border-right:8px solid #000;height:27px;width:6px}.cb-player-volume-wrap{zoom:1;width:120px;margin-left:23px;height:28px}.cb-player-volume-wrap:before,.cb-player-volume-wrap:after{content:"";display:table}.cb-player-volume-wrap:after{clear:both}.cb-player-toggle-mute{-moz-transform:none;-ms-transform:none;-webkit-transform:none;transform:none;float:left;position:relative;left:0;top:0}.cb-player-button-sound{background-image:url("../elements/video_button_sound.svg");background-size:cover;width:28px;height:27px}.cb-player-button-mute{background-image:url("../elements/video_button_muted.svg");background-size:cover;width:28px;height:27px}.cb-player-volume-horizontal{-moz-transform:none;-ms-transform:none;-webkit-transform:none;transform:none;background-color:transparent;width:calc(100% - 51px);margin-left:0;left:0;margin-left:23px;height:28px;float:left;position:relative}.cb-player-volume{background-color:#6b6b6b;height:12px}.cb-player-volume-bar{background-color:#232323}.player-title{width:calc(100% - 350px);white-space:nowrap;overflow:hidden;text-overflow:ellipsis;float:left;margin-left:20px}.player-control-bottom-right{zoom:1;float:right}.player-control-bottom-right:before,.player-control-bottom-right:after{content:"";display:table}.player-control-bottom-right:after{clear:both}.cb-player-fullscreen{float:left;height:36px;margin-right:0}.cb-player-button-fullscreen-on{border:0;background-image:url("../elements/video_fullscreen_enter.svg");background-size:contain;background-repeat:no-repeat;width:33px;height:27px}.cb-player-button-fullscreen-off{border:0;background-image:url("../elements/video_fullscreen_exit.svg");background-size:contain;background-repeat:no-repeat;width:33px;height:27px}.player-popup{float:left;background-image:url("../elements/video_popout.svg");background-size:contain;background-repeat:no-repeat;width:33px;height:27px;margin-left:21px}.cb-player-spinner{border-width:10px;border-top-color:#232323}.video-livestream{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:30px;line-height:1.36;color:#fff;position:absolute;right:32px;top:27px;z-index:2}@media (max-width: 1023px){.video-livestream{font-size:14px}}.video-livestream:after{content:"";background-color:red;border-radius:50%;display:inline-block;width:30px;height:30px;margin-left:7px;position:relative;top:4px}.video-livestream.video-livestream-waiting:after{background-color:#f8e71c}.video-livestream.video-livestream-inactive:after{background-color:#b8b8b8}.video-livestream.video-livestream-active{text-transform:uppercase}.cb-player-overlayer-button{display:none}.dark-background{background-color:#232323}.dark-background,.dark-background body{color:#b4b4b4}.dark-background .header-columns{background-image:url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzIzMjMyMyIvPjxzdG9wIG9mZnNldD0iNTAlIiBzdG9wLWNvbG9yPSIjMjMyMzIzIi8+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjMjMyMzIzIiBzdG9wLW9wYWNpdHk9IjAuMCIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');background-size:100%;background-image:-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #232323),color-stop(50%, #232323),color-stop(100%, rgba(35,35,35,0)));background-image:-moz-linear-gradient(top, #232323 0%,#232323 50%,rgba(35,35,35,0) 100%);background-image:-webkit-linear-gradient(top, #232323 0%,#232323 50%,rgba(35,35,35,0) 100%);background-image:linear-gradient(to bottom, #232323 0%,#232323 50%,rgba(35,35,35,0) 100%)}.dark-background .announcement-year-button,.dark-background .panel-label-text{border-color:#b4b4b4}.dark-background .announcement-year-button.selected,.dark-background.no-touch .announcement-year-button:hover{color:#232323;background-color:#b4b4b4}.dark-background .header-article{background-color:#232323;border-color:#b4b4b4}.content-video{background-color:#232323;color:#b4b4b4}.content-video .article-tool-button{border-color:#b4b4b4;background-color:#232323}.content-video .article-tool-module{background-color:#232323}.content-video .article-tool-module.tool-module-open{border-color:#b4b4b4}.content-video .tool-module-close-button:after{background-image:url("../elements/close_white.svg")}.content-video .article-tool-button.tool-button-arrow:before{background-image:url("../elements/arrow_up_white.svg")}.content-video .article-tool-button.tool-button-arrow.tool-button-active:before{background-image:url("../elements/arrow_down_white.svg")}.content-video-live{overflow:hidden;width:100vw;height:100vh}.sidebar-item-details.sidebar-tv{color:#b4b4b4;border-color:#b4b4b4}.video-livestream-overlayer{background-color:rgba(35,35,35,0.8);position:absolute;top:0;left:0;width:100%;height:100%;z-index:1}.video-livestream-overlayer-text{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:43px;line-height:1.36;-moz-transform:translateY(-50%);-ms-transform:translateY(-50%);-webkit-transform:translateY(-50%);transform:translateY(-50%);color:#fff;text-align:center;position:absolute;top:50%;width:100%}@media (max-width: 1023px){.video-livestream-overlayer-text{font-size:14px}}.video-livestream-overlayer-text p+p{margin-top:0.605em}.video-livestream-overlayer-text a{position:relative}.video-livestream-overlayer-text a:after{content:"";display:block;position:absolute;bottom:11px;left:0;width:100%;height:2px;background-color:#fff}.overlayer-player{-moz-transition:all 500ms ease;-o-transition:all 500ms ease;-webkit-transition:all 500ms ease;transition:all 500ms ease;font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:16px;line-height:1.1;background-color:#000;color:#fff;position:fixed;width:264px;bottom:42px;right:40px;z-index:99999}.overlayer-player:after{content:"";display:block;padding-bottom:56.25%}.overlayer-player .cb-player-overlayer-button{opacity:1;border:0;display:initial}.overlayer-player .cb-player-is-playing .cb-player-overlayer-button:after{box-sizing:content-box;width:10px !important;height:43px;border-style:initial;border-width:initial;border-color:initial;border-left:11px solid #fff;border-right:11px solid #fff;width:5px}.overlayer-player:hover{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:24px;line-height:1.2;width:516px}.overlayer-player:hover .cb-player.cb-player-is-playing .cb-player-overlayer-button{opacity:1 !important}.overlayer-player:hover .overlayer-player-livestream{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:30px;line-height:1.36;right:32px;top:23px}@media (max-width: 1023px){.overlayer-player:hover .overlayer-player-livestream{font-size:14px}}.overlayer-player:hover .overlayer-player-livestream:after{width:30px;height:30px;margin-left:6px;top:4px}.overlayer-player:hover .overlayer-player-controls,.overlayer-player:hover .overlayer-player-close{opacity:1}.overlayer-player .cb-player-toggle-mute{cursor:pointer;-moz-user-select:-moz-none;-ms-user-select:none;-webkit-user-select:none;user-select:none}.overlayer-player .cb-player-button-sound{background-image:url("../elements/video_button_sound_white.svg")}.overlayer-player .cb-player-button-mute{background-image:url("../elements/video_button_muted_white.svg")}.overlayer-player-player{width:100%;height:100%}.overlayer-player-livestream{-moz-transition:all 500ms ease;-o-transition:all 500ms ease;-webkit-transition:all 500ms ease;transition:all 500ms ease;font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:16px;line-height:1.1;text-transform:uppercase;position:absolute;right:16px;top:14px;z-index:1}.overlayer-player-livestream:after{-moz-transition:all 500ms ease;-o-transition:all 500ms ease;-webkit-transition:all 500ms ease;transition:all 500ms ease;content:"";display:inline-block;width:15px;height:15px;border-radius:50%;margin-left:4px;position:relative;top:2px;top:4px;background-color:red}.overlayer-player-close{-moz-transition:opacity 500ms ease;-o-transition:opacity 500ms ease;-webkit-transition:opacity 500ms ease;transition:opacity 500ms ease;cursor:pointer;-moz-user-select:-moz-none;-ms-user-select:none;-webkit-user-select:none;user-select:none;position:absolute;left:35px;bottom:28px;opacity:0;z-index:1}.overlayer-player-controls{-moz-transition:opacity 500ms ease;-o-transition:opacity 500ms ease;-webkit-transition:opacity 500ms ease;transition:opacity 500ms ease;position:absolute;right:32px;top:100px;opacity:0;z-index:1}.overlayer-player-controls li+li{margin-top:42px}.overlayer-player-controls-info{cursor:pointer;-moz-user-select:-moz-none;-ms-user-select:none;-webkit-user-select:none;user-select:none;text-align:center;font-size:17px;font-weight:bold;position:relative;display:block}.overlayer-player-controls-info:after{content:"";-moz-transform:translate(-50%, -50%);-ms-transform:translate(-50%, -50%);-webkit-transform:translate(-50%, -50%);transform:translate(-50%, -50%);position:absolute;top:50%;left:50%;width:26px;height:26px;border-radius:50%;border:3px solid #fff}.overlayer-player-info{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:21px;font-weight:normal;line-height:1.1;display:none;line-height:1.2;position:absolute;background-color:rgba(35,35,35,0.95);top:0;left:0;width:100%;height:100%;padding:32px 34px 30px 34px;z-index:1}@media (max-width: 1023px){.overlayer-player-info{font-size:18px;line-height:1.2}}.overlayer-player-info-active .overlayer-player-info{display:block}.overlayer-player-info-title{font-weight:bold;text-transform:uppercase}.overlayer-player-info-text{margin-top:29px}.cb-player-spinner{border-top-color:#fff}.overlayer-player-info-close{cursor:pointer;-moz-user-select:-moz-none;-ms-user-select:none;-webkit-user-select:none;user-select:none;width:26px;height:26px;position:absolute;top:32px;right:34px}.overlayer-player-controls-popup{cursor:pointer;-moz-user-select:-moz-none;-ms-user-select:none;-webkit-user-select:none;user-select:none;background-image:url(../elements/video_popout_white.svg);background-size:contain;background-repeat:no-repeat;width:33px;height:27px}.preview-item-podcast+.preview-item-podcast{margin-top:36px}.podcast{zoom:1;-moz-transition:border 100ms ease-in-out;-o-transition:border 100ms ease-in-out;-webkit-transition:border 100ms ease-in-out;transition:border 100ms ease-in-out;border:1px solid #b4b4b4;position:relative}.podcast:before,.podcast:after{content:"";display:table}.podcast:after{clear:both}.no-touch .podcast:hover,.podcast.podcast-is-open,.podcast.podcast-expand,.podcast.podcast-extern{border-color:#232323}.no-touch .podcast:hover .podcast-image,.podcast.podcast-is-playing .podcast-image,.podcast.podcast-extern .podcast-image{-webkit-filter:grayscale(0);filter:grayscale(0);opacity:1}.no-touch .podcast:hover .podcast-play-pause-button,.podcast.podcast-is-playing .podcast-play-pause-button,.podcast.podcast-extern .podcast-play-pause-button{background-color:#232323}.podcast.podcast-is-playing .cb-player-button-play{display:none}.podcast.podcast-is-playing .cb-player-button-pause{display:block}.podcast.podcast-is-open .podcast-player{display:block}.podcast.podcast-expand .podcast-main{background-color:#fff;position:absolute;right:0;box-shadow:-1px 0 #232323,0 1px #232323,1px 0 #232323;z-index:100}.podcast.podcast-expand .podcast-text{height:auto !important;overflow:visible}.podcast.podcast-expand .podcast-read-more{display:none}.podcast.podcast-expand .podcast-read-less{display:block}.podcast.podcast-extern .podcast-player{display:block}.podcast.podcast-extern .podcast-player .cb-player-volume-wrap{width:15px}.podcast-image{-webkit-filter:grayscale(100%);filter:grayscale(100%);-moz-transition:opacity 100ms ease-in-out,filter 100ms ease-in-out,-webkit-filter 100ms ease-in-out;-o-transition:opacity 100ms ease-in-out,filter 100ms ease-in-out,-webkit-filter 100ms ease-in-out;-webkit-transition:opacity 100ms ease-in-out,filter 100ms ease-in-out,-webkit-filter 100ms ease-in-out;transition:opacity 100ms ease-in-out,filter 100ms ease-in-out,-webkit-filter 100ms ease-in-out;opacity:.8;height:160px;width:160px;float:left;position:relative}.podcast-image img{width:100%}.podcast-play-pause-button{-moz-transform:translate(-50%, -50%);-ms-transform:translate(-50%, -50%);-webkit-transform:translate(-50%, -50%);transform:translate(-50%, -50%);-moz-transition:background-color 100ms ease-in-out;-o-transition:background-color 100ms ease-in-out;-webkit-transition:background-color 100ms ease-in-out;transition:background-color 100ms ease-in-out;cursor:pointer;-moz-user-select:-moz-none;-ms-user-select:none;-webkit-user-select:none;user-select:none;background-color:rgba(35,35,35,0.4);position:absolute;border-radius:50%;top:50%;left:50%;width:70px;height:70px;z-index:10}.podcast-play-pause-button .cb-player-button-play{border-color:transparent transparent transparent #fff;margin-left:3px}.podcast-play-pause-button .cb-player-button-pause{border-left-color:#fff;border-right-color:#fff}.podcast-main{float:left;width:calc(100% - 160px);padding-top:13px;padding-left:20px;padding-right:20px;padding-bottom:17px}.podcast-main-meta{zoom:1;font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:13px;line-height:1.0769;color:#b4b4b4;padding-bottom:15px}.podcast-main-meta:before,.podcast-main-meta:after{content:"";display:table}.podcast-main-meta:after{clear:both}@media (max-width: 767px){.podcast-main-meta{font-size:11px}}.podcast-priordate{float:left}.podcast-duration{float:right}.podcast-title{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:18px;font-weight:bold;line-height:1.2}.podcast-text{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:13px;line-height:1.0769;line-height:1.4;margin-top:10px;overflow:hidden}@media (max-width: 767px){.podcast-text{font-size:11px}}.podcast-text a{text-decoration:underline}.podcast-main-share{zoom:1;font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:13px;line-height:1.0769;margin-top:19px}.podcast-main-share:before,.podcast-main-share:after{content:"";display:table}.podcast-main-share:after{clear:both}@media (max-width: 767px){.podcast-main-share{font-size:11px}}.podcast-read-more,.podcast-read-less{cursor:pointer;-moz-user-select:-moz-none;-ms-user-select:none;-webkit-user-select:none;user-select:none;float:left}.podcast-read-more.hide-readmore{display:none}.podcast-read-less{display:none}.podcast-share{display:flex;float:right}.podcast-share li+li{margin-left:18px}.podcast-player{display:none;float:left;width:100%;border-top:1px solid #232323}.podcast-player .cb-player{position:initial}.podcast-player .cb-player-controls{max-width:unset;position:initial;display:flex;background-color:transparent;padding:21px 19px 20px 19px}.podcast-player .cb-player-play{position:absolute;display:none}.podcast-player .cb-player-time{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:13px;line-height:1.0769;margin-left:0;margin-right:0}@media (max-width: 767px){.podcast-player .cb-player-time{font-size:11px}}.podcast-player .cb-player-progress{height:2px;margin-top:2px;margin-left:19px;margin-right:26px}.podcast-player .cb-player-progress-play{background-color:transparent}.podcast-player .cb-player-progress-play:after{content:"";background-color:#232323;border-radius:50%;width:16px;height:16px;display:block;position:absolute;top:-8px;right:-8px}.podcast-player .cb-player-progress-hide{left:-8px;top:-8px;height:calc(100% + 16px);width:calc(100% + 16px)}.podcast-player .cb-player-progress-load{visibility:hidden}.podcast-player .cb-player-progress-tooltip{background-color:#232323;color:#fff}.podcast-player .cb-player-progress-tooltip:after{border-color:#232323 transparent transparent transparent}.podcast-player .cb-player-volume-wrap{height:14px;width:47px;margin-left:18px}.podcast-player .cb-player-toggle-mute{width:14px;height:14px}.podcast-player .cb-player-button-sound,.podcast-player .cb-player-button-mute{width:100%;height:100%}.podcast-player .player-popup{width:16px;height:13px;margin-left:17px}.announcement-hero__video{position:absolute;height:100%;width:100%}.landing-subscribe{display:none;background-color:#fff;position:fixed;bottom:46px;left:53px;z-index:410;box-shadow:-4px 5px 5px rgba(0,0,0,0.1)}.content-article .landing-subscribe{bottom:94px}.landing-subscribe__inner{color:#232323;border:2px solid #232323;display:flex;padding:0.25em}@media (max-width: 860px){.landing-subscribe{display:none !important}}.landing-subscribe__close{cursor:pointer;-moz-user-select:-moz-none;-ms-user-select:none;-webkit-user-select:none;user-select:none;background-position:center;background-image:url("../elements/close.svg");background-repeat:no-repeat;background-size:20px;width:71px;height:71px}.landing-subscribe__text{cursor:pointer;-moz-user-select:-moz-none;-ms-user-select:none;-webkit-user-select:none;user-select:none;width:560px;padding-top:16px}.landing-subscribe-animation-text{opacity:0;position:absolute;top:16px;left:71px;pointer-events:none}.landing-subscribe--animated .landing-subscribe-animation-text{opacity:1}.block__map{position:relative;height:100vh;width:100%;padding-top:70px}.block__map #anchor_map{height:calc(100vh - 70px);margin-bottom:0}.popup{-moz-transform:translateY(100%);-ms-transform:translateY(100%);-webkit-transform:translateY(100%);transform:translateY(100%);-moz-transition:-moz-transform 275ms ease-in-out;-o-transition:-o-transform 275ms ease-in-out;-webkit-transition:-webkit-transform 275ms ease-in-out;transition:transform 275ms ease-in-out;position:fixed;bottom:0;left:0;border-top:1px solid #232323;border-right:1px solid #232323;background-color:#fff;width:613px;height:272px;z-index:10}.popup--active{-moz-transform:translateY(0);-ms-transform:translateY(0);-webkit-transform:translateY(0);transform:translateY(0)}.popup__top{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:18px;line-height:1.1;display:flex;height:63px;padding-left:81px;border-bottom:1px solid #232323}.popup__close{cursor:pointer;-moz-user-select:-moz-none;-ms-user-select:none;-webkit-user-select:none;user-select:none;position:absolute;left:0;height:64px;width:73px}.popup__client{width:calc(100% - 170px);margin-top:21px;padding-left:10px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.popup__clientlink{width:120px;text-align:center;margin-left:25px;margin-right:25px;margin-top:21px}.popup__close:before{content:"";background-image:url(../elements/close.svg);display:block;height:24px;width:24px;background-repeat:no-repeat;background-size:contain;position:absolute;left:27px;top:50%;margin-top:-12px}.popup__body{zoom:1;padding-top:35px;position:relative}.popup__body:before,.popup__body:after{content:"";display:table}.popup__body:after{clear:both}.popup__image{background-repeat:no-repeat;background-size:cover;background-position:center;margin-left:28px;margin-right:28px;width:126px;height:126px;border-radius:15px;overflow:hidden;float:left}.popup__text{float:right;width:calc(100% - 182px);margin-top:3px;padding-right:30px}.popup__text-location{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:13px;line-height:1.1;color:#b4b4b4}@media (max-width: 1023px){.popup__text-location{font-size:11px}}.popup__text-title{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:18px;font-weight:bold;line-height:1.1;line-height:1.3;margin-top:7px}.popup__text-date{margin-top:7px}.popup__text-url{margin-top:8px}.popup__text-url a{text-decoration:underline}.popup--grouped{-moz-transform:translateY(0);-ms-transform:translateY(0);-webkit-transform:translateY(0);transform:translateY(0);display:none}.popup--grouped.popup--active{display:block}.popup--grouped.popup--active .popup__navigation{display:flex}.popup--grouped.popup--active .popup__counter{display:block}.popup--active-grouped-close{-moz-transform:translateY(100%);-ms-transform:translateY(100%);-webkit-transform:translateY(100%);transform:translateY(100%);display:block}.popup__counter{border-right:1px solid #232323;padding-top:21px;padding-left:20px;padding-right:20px}.popup__navigation{display:none;background-color:#fff;position:absolute;top:-64px;height:63px;right:-1px;border-left:1px solid #232323;border-top:1px solid #232323;border-right:1px solid #232323}.popup__navigation-prev,.popup__navigation-next{cursor:pointer;-moz-user-select:-moz-none;-ms-user-select:none;-webkit-user-select:none;user-select:none;width:68px;height:63px;position:relative}.popup__navigation-prev:before,.popup__navigation-next:before{content:"";-moz-transform:translate(-50%, -50%);-ms-transform:translate(-50%, -50%);-webkit-transform:translate(-50%, -50%);transform:translate(-50%, -50%);display:block;width:14px;height:24px;background-repeat:no-repeat;background-size:contain;left:50%;top:50%;position:absolute}.popup__navigation-prev:before{background-image:url("../elements/map-arrow-prev.svg")}.popup__navigation-next{border-left:1px solid #232323}.popup__navigation-next:before{background-image:url("../elements/map-arrow-next.svg")}.page-app__inner{margin-top:177px}.page-app__intro{text-align:center}.page-app__title{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:70px;line-height:1.2;font-weight:bold}@media (max-width: 1023px){.page-app__title{font-size:46px}}.page-app__buttons{-webkit-justify-content:center;justify-content:center;display:flex;margin-top:63px}.page-app__button-wrap+.page-app__button-wrap{margin-left:21px}.page-app__button{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:16px;line-height:1.1;display:block;border:1px solid;padding:6px 25px 9px}.page-app__text{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:18px;font-weight:normal;line-height:1.2;margin-top:53px;max-width:630px;display:inline-block}.page-app__sections{position:relative;padding-top:82px}.page-app__section{position:relative;min-height:100vh}.page-app__section+.page-app__section{border-top:2px solid #232323}.page-app__section-column{position:absolute;height:100%}.page-app__section-text{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:35px;line-height:1.13;font-weight:bold;-moz-transform:translateX(-50%);-ms-transform:translateX(-50%);-webkit-transform:translateX(-50%);transform:translateX(-50%);position:absolute;left:50%;top:19%;width:65%}@media (max-width: 1023px){.page-app__section-text{font-size:26px}}.page-app__section--right .page-app__section-column{right:0}.page-app__phone{-moz-transform:translateX(-50%);-ms-transform:translateX(-50%);-webkit-transform:translateX(-50%);transform:translateX(-50%);background-image:url("../elements/phone-frame.png");background-repeat:no-repeat;background-position:center;background-size:contain;position:absolute;left:50%;top:104px;width:100%}.page-app__phone:after{content:"";padding-bottom:178.2345%;display:block}.page-app__sections--pin-phone .page-app__phone{position:fixed;top:104px}.page-app__sections--pin-phone .page-app__layer{position:fixed;top:calc(104px + 8%)}.page-app__sections--uppin-phone .page-app__phone{position:absolute;bottom:46px;top:inherit}.page-app__sections--uppin-phone .page-app__layer{position:absolute;bottom:calc(46px + 9.4vh);top:inherit}.page-app__layer{-moz-transform:translateX(-50%);-ms-transform:translateX(-50%);-webkit-transform:translateX(-50%);transform:translateX(-50%);position:absolute;top:calc(104px + 8vh);left:50%;margin-left:-1px}.page-app__layer:after{content:"";padding-bottom:178.1136%;display:block}.page-app__layer-item{position:absolute;top:0;height:auto;width:100%;overflow:hidden}.page-app__layer-item video{width:100%;height:auto}.header-app__buttons{display:flex;position:absolute;right:152px;top:17px}.header-app__button{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:16px;line-height:1.1;display:block;border:1px solid;padding:6px 15px 9px}.header-app__button+.header-app__button{margin-left:21px}.page-app__layer-item--hidden{height:0 !important}.page-app__layer-item-1{z-index:19}.page-app__layer-item-2{z-index:18}.page-app__layer-item-3{z-index:17}.page-app__layer-item-4{z-index:16}.page-app__layer-item-5{z-index:15}.page-app__layer-item-6{z-index:14}.page-app__layer-item-7{z-index:13}.page-app__layer-item-8{z-index:12}.page-app__layer-item-9{z-index:11}.page-app__layer-item-10{z-index:10}.page-app__layer-item-11{z-index:9}.page-app__layer-item-12{z-index:8}.page-app__layer-item-13{z-index:7}.page-app__layer-item-14{z-index:6}.page-app__layer-item-15{z-index:5}.page-app__layer-item-16{z-index:4}.page-app__layer-item-17{z-index:3}.page-app__layer-item-18{z-index:2}.page-app__layer-item-19{z-index:1}.page-app__layer-item-20{z-index:0}.page__app-bottom{height:100vh;margin-top:84px}.page-app__buttons--bottom{margin-top:0;width:100%}.page-app__buttons--pin{-moz-transform:translateX(-50%);-ms-transform:translateX(-50%);-webkit-transform:translateX(-50%);transform:translateX(-50%);position:fixed;top:50%;left:50%;margin-top:0}.page-app__layer-item--mobile{display:none}.article-carousel{opacity:0;position:relative;padding-bottom:49px}.article-carousel.flickity-enabled{opacity:1}.carousel__dots{-webkit-justify-content:center;justify-content:center;position:absolute;display:flex;width:100%;bottom:-25px;padding:0;margin:0;list-style:none;text-align:center;line-height:1}.carousel__dot{cursor:pointer;-moz-user-select:-moz-none;-ms-user-select:none;-webkit-user-select:none;user-select:none;background-color:#dbdbdb;border-radius:50%;width:15px;height:15px;opacity:1;margin:0 7px}.carousel__dot.carousel__dot--selected{background-color:#232323}.block-article-media--carousel{overflow:visible;margin-bottom:75px}.article-carousel__cell{cursor:pointer;-moz-user-select:-moz-none;-ms-user-select:none;-webkit-user-select:none;user-select:none;margin-right:30px;opacity:0.5}.article-carousel__cell.is-selected{opacity:1}.article-carousel__cell-image img{height:100%;width:auto}.article-carousel__cell-caption{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:13px;line-height:1.1;-moz-transition:opacity 250ms ease-in-out;-o-transition:opacity 250ms ease-in-out;-webkit-transition:opacity 250ms ease-in-out;transition:opacity 250ms ease-in-out;opacity:0;color:#6b6b6b;margin-top:26px;padding-bottom:1px}@media (max-width: 1023px){.article-carousel__cell-caption{font-size:11px}}.is-selected .article-carousel__cell-caption{opacity:1}.flickity-lazyload{-moz-transition:opacity 250ms ease-in-out;-o-transition:opacity 250ms ease-in-out;-webkit-transition:opacity 250ms ease-in-out;transition:opacity 250ms ease-in-out;opacity:0}.flickity-lazyload.flickity-lazyloaded{opacity:1}#bp{width:2px}.is-desktop .header-article-clone{display:none}.module-banner-ad{display:none}.on-mobile{display:none}.chat-popout-link{border:1px solid;padding:8px 20px 10px;display:inline-block;margin-bottom:20px;transition:background 250ms, color 250ms}.no-touch .chat-popout-link:hover{background:#b4b4b4;color:#232323}@media (max-width: 1023px){#bp{width:1px}.on-desktop{display:none !important}.on-mobile{display:block}html.is-touch .block-overlay{height:100%;overflow-y:auto;-webkit-overflow-scrolling:touch}body{-webkit-text-size-adjust:none}.show-only-on-mobile{display:block}.menu{position:initial}.block-overlay:not(.header-lock) .menu{width:100%}.block-overlay:not(.header-lock) .menu-items-fixed{width:100% !important;postion:absolute;top:0;right:0}.block-overlay:not(.header-lock) .button-menu{float:right}.header-article{background-image:url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIvPjxzdG9wIG9mZnNldD0iNTAlIiBzdG9wLWNvbG9yPSIjZmZmZmZmIi8+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjZmZmZmZmIiBzdG9wLW9wYWNpdHk9IjAuMCIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');background-size:100%;background-image:-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff),color-stop(50%, #ffffff),color-stop(100%, rgba(255,255,255,0)));background-image:-moz-linear-gradient(top, #ffffff 0%,#ffffff 50%,rgba(255,255,255,0) 100%);background-image:-webkit-linear-gradient(top, #ffffff 0%,#ffffff 50%,rgba(255,255,255,0) 100%);background-image:linear-gradient(to bottom, #ffffff 0%,#ffffff 50%,rgba(255,255,255,0) 100%);background-color:transparent;border-bottom:none;border-left:none;height:66px;padding-left:0;padding-right:0}.dark-background .header-article{background-image:url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzIzMjMyMyIvPjxzdG9wIG9mZnNldD0iNTAlIiBzdG9wLWNvbG9yPSIjMjMyMzIzIi8+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjMjMyMzIzIiBzdG9wLW9wYWNpdHk9IjAuMCIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');background-size:100%;background-image:-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #232323),color-stop(50%, #232323),color-stop(100%, rgba(35,35,35,0)));background-image:-moz-linear-gradient(top, #232323 0%,#232323 50%,rgba(35,35,35,0) 100%);background-image:-webkit-linear-gradient(top, #232323 0%,#232323 50%,rgba(35,35,35,0) 100%);background-image:linear-gradient(to bottom, #232323 0%,#232323 50%,rgba(35,35,35,0) 100%)}.header-article+.content,.header-article+.content.content-video{padding-top:66px}.header-article .menu{margin-top:0}.header-columns{padding-left:16px;padding-right:16px;height:66px}.header-columns .logo{-moz-transform:translate(-50%, 0);-ms-transform:translate(-50%, 0);-webkit-transform:translate(-50%, 0);transform:translate(-50%, 0);left:50%;margin-top:0;position:absolute;top:12px;height:17px;width:62px}.header-columns .logo img{height:auto;width:100%}.header-article .logo{height:17px;width:62px;position:relative;left:0;top:12px}.header-article .logo img{height:auto;width:100%}.logo-architecture{float:left;height:16px;position:relative;margin-left:6px;top:13px;left:0}.header-article-topline{left:57px;width:calc(100% - 114px);display:-webkit-flex;display:flex;-webkit-align-items:flex-start;align-items:flex-start;-webkit-justify-content:center;justify-content:center}.header-top-bar{height:100%;margin-left:-16px;margin-top:0;width:100vw}.menu-item{display:none}.menu-main-overlay .menu-item,.menu-item.header-article-close-button{display:block}.button-menu{display:block;height:66px;width:66px;margin-left:0 !important}.button-menu img{float:right;height:18px;margin-right:16px;margin-top:13px;width:23px}.article-topline,.sidebar-reviews,.header-topcontent{display:none}.menu-items-fixed{position:inherit}.menu-items-fixed .button-search{display:none}.header-article-close-button{position:absolute;margin-left:0 !important;left:0;top:0}.header-article-close-button .article-close-link{display:block;padding:15px 13px}.header-article-close-button img{height:18px}.content{padding-left:16px;padding-right:16px}.block-title{margin-left:0;margin-right:0;margin-top:30px}.article-headline+.article-title{margin-top:27px}.article-headline+.article-title.announcement-article-title{margin-top:29px}.article-authors{margin-top:1.5em;margin-bottom:0.35em}.article-section{margin-top:1.5em}.block-article-media{background-color:transparent !important;margin-bottom:35px;margin-left:-16px;margin-right:-16px}.block-title+.block-article-media{margin-top:27px}.block-article-media.block-article-book{width:calc(100% + 32px);overflow-x:visible;height:auto}.article-book-slider{padding-top:0;width:100% !important}.article-book-image{width:100% !important;height:auto;margin-left:0}.article-book-image img{width:100%;height:auto}.article-book-image+.article-book-image{margin-top:10px}.article-slide-caption{margin-left:16px;margin-top:9px;width:calc(100% - 2 * 16px)}.block-text{height:auto !important;margin-bottom:50px;margin-left:0;width:100%}.block-text blockquote{padding-left:16px}.block-text>div img{width:100%;height:auto}.inline-image{margin-left:-16px;width:100vw !important}.inline-image.inline-image-size-full{margin-left:-16px}.inline-image.inline-image-size-full .inline-caption,.inline-video .inline-caption{max-width:100%}.inline-caption{margin-top:10px;margin-left:16px !important;margin-right:16px}.inline-video{margin-left:-16px}.sidebar{float:left;height:auto !important;margin-bottom:64px;position:relative;width:100%;right:0;max-width:304px;padding-bottom:0 !important}.sidebar-trigger{display:none}.sidebar-item{clear:left;float:left}.ad-sidebar{margin-right:0;margin-top:5em !important;max-width:304px;width:100%;top:0 !important;left:0 !important}.sidebar-item-tags{float:left;right:auto;text-align:left}.sidebar-active .sidebar-item-tags{position:relative;top:auto !important}.sidebar-item-tags-subtitle{margin-right:0}.sidebar-item-tags-items{width:100%}.sidebar-item-tag{-moz-transform:translateX(0);-ms-transform:translateX(0);-webkit-transform:translateX(0);transform:translateX(0);float:left;opacity:1}.announcement-hero-image{max-width:100% !important;width:100% !important}.announcement-hero-image.portrait{max-width:100%;margin-left:0}.variable-width-image-size-non-full{margin-left:0}.announcement-hero-image-caption{margin-left:16px !important;max-width:calc(100% - 2 * 16px) !important}.announcement-header-info{display:none}.article-sub-navigation{margin-top:20px;position:relative;text-align:left}.header-top__navi{display:none}.menu-main{padding-left:16px;padding-right:16px;width:100%;display:flex;flex-direction:column;overflow-y:auto;overflow-x:hidden;-webkit-overflow-scrolling:touch}.menu-main .menu-item{clear:right;float:right}.menu-main .menu-item+.menu-item{margin-top:11px}.is-touch .menu-item:active,.is-touch .menu-main-item:active{color:#6b6b6b}.menu-item+.menu-main-item--app,.menu-main-item+.menu-main-item--app{margin-top:45px;margin-left:-11px}.menu-main-item-extern{opacity:1}.menu-main-item--app a{display:inline-block;padding:8px 10px 10px;border:1px solid #fff}.is-touch .button-menu:active,.is-touch .button-search:active,.is-touch .button-menu-close:active{opacity:0.4}.button-menu-close{height:66px;margin-right:0;margin-top:0 !important;position:absolute;right:0;top:0;width:66px}.button-menu-close img{float:right;height:18px;margin-top:13px;margin-right:16px;width:18px}.button-search{display:block;height:66px;left:0;margin-left:0 !important;margin-top:0 !important;position:absolute;top:0;width:66px}.button-search img{height:20px;margin-left:15px;margin-top:13px;width:20px}.menu-main-items-container{height:100%;max-height:initial;position:static;order:1;overflow:visible;padding-left:0}.menu+.menu-main-items-container{margin-top:0}.wrap-menu-main-items{display:flex;padding-right:15px;overflow:visible}.menu-main-items{width:100%}.menu-main-items+.menu-main-items{margin-left:15px;margin-top:0}.menu-main__bottom-column+.menu-main__bottom-column{margin-left:15px}.menu-main__bottom{right:16px;position:static;order:3;margin-top:41px}.panel-container+.panel-container{margin-left:32px}.panel-container-last{margin-right:0}.panel-height-full{width:calc(100vw - 2 * 16px)}.panel-label{display:none}.panel-items-title{text-decoration:none}.panel-items-divider+.preview-item{margin-top:39px}.panel-items{margin-top:66px}.header-tools-active .panel-items{margin-top:66px}.panel-items .preview-item-announcement+.preview-item-announcement{margin-top:1.8em}.contentonly .panel-items{margin-top:16px}.panel-scrolling-container{max-width:calc(100vw - 2 * 16px)}.panel-label+.panel-scrolling-container{padding-left:0}.panel-width-xsmall,.panel-width-small{width:400px}.preview-item-image.landscape .wrap-preview-item-image{width:100% !important}.preview-item-image.landscape img{width:100%;height:auto}.preview-item-image.portrait .wrap-preview-item-image,.preview-item-image.portrait .lazy-placeholder{width:70% !important;margin-left:auto;margin-right:auto}.preview-item-image.portrait img{height:auto;width:100%}.panel-height-full .preview-item-image{height:auto;width:100%}.preview-item-image+.preview-item-subtitle{margin-top:13px}.preview-item-subtitle+.preview-item-title{margin-top:2px}.preview-item-editorial{padding-left:16px;padding-right:16px}.preview-item-book-infos{order:2;margin-top:1.3em;padding-right:0;width:100%}.preview-item-book-infos+.preview-item-image{margin-top:20px}.preview-item-book{display:flex;flex-direction:column}.preview-item-book .preview-item-image{order:1;width:100% !important}.preview-item-book .preview-item-image img{height:auto;width:100% !important}.preview-item-book .preview-item-image+.preview-item-image{margin-left:0;margin-top:20px}.preview-item-project .preview-item-image img{height:auto;width:100% !important}.preview-item-feature .preview-item-image{width:100% !important}.content:not(.content-home) .preview-item-image+.preview-item-project-infos{margin-left:0;margin-top:20px;width:100% !important}.preview-item-iframe:after{content:"";position:absolute;left:0;top:0;right:0;bottom:0;background-color:transparent}.preview-item-iframe-iframe{height:calc(100% - 66px)}.block-map{margin-left:-16px}#anchor_map{height:calc(100vh - 44px - 66px);margin-bottom:44px}.preview-item-ad.ad-sidebar .preview-item-image img{width:100%;max-width:304px}.content-home .preview-item-ad:not(.ad-text){max-height:calc(100vh - 66px - 20px)}.content-home .preview-item-ad:not(.ad-text) .preview-item-image{height:calc(100vh - 66px - 20px);width:auto}.content-home .preview-item-ad:not(.ad-text) .preview-item-image img{height:100%;width:auto !important}.ad-panel.panel-width-small .panel-items{height:calc(100vh - 66px - 20px)}.tool-module-related{max-height:inherit}.tool-module-related.tool-module-open{border-top:0}.tool-module-related .related-items{margin-left:16px;margin-right:16px;margin-bottom:44px;max-height:initial;overflow:visible;width:auto !important}.tool-module-related .related-items.related-articles{height:auto !important}.tool-module-related .wrap-related-items{height:inherit}.tool-module-related .wrap-related-items .wrap-preview-item-image{width:100% !important;height:auto}.tool-module-related .wrap-related-items .related-item{width:100% !important}.tool-module-related .wrap-related-items .related-item img{width:100%;height:auto}.related-item-journalarticle{min-width:inherit}.related-item-journalarticle .wrap-preview-item-image img{width:100%;height:aiuto}.tool-module-close-button,.mobile-tool-module-close-button,.tool-module-notes .mobile-tool-module-close-button{box-sizing:content-box;right:initial;left:0;top:0;height:18px;width:18px;padding:13px 15px;position:absolute}.tool-module-close-button:after,.mobile-tool-module-close-button:after,.tool-module-notes .mobile-tool-module-close-button:after{content:"";background-image:url("../elements/mobile_back.png");background-repeat:no-repeat;background-size:contain;height:18px;width:10px;display:block}.tool-module-title,.mobile-tool-module-title{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:14px;line-height:1.1;font-weight:bold;display:block;text-align:center;width:100vw;margin-right:64px;margin-left:64px;padding-top:14px;width:calc(100% - 128px);white-space:nowrap;overflow:hidden;position:relative;text-overflow:ellipsis;z-index:100}.tool-module-notes .tool-module-title,.tool-module-notes .mobile-tool-module-title{padding-top:0;margin-top:-2px}.tool-module-share{padding:0 !important}.mobile-tool-module-menu-button{display:block;position:absolute;right:0;top:0}.mobile-tool-module-menu-button:after{content:"";background-image:url("../elements/menu.svg");background-size:cover;width:23px;height:18px;margin-top:13px;margin-right:16px;display:block}.related-item{width:calc(100vw - 32px);height:auto;overflow:visible;clear:left}.related-item+.related-item{margin-left:0}.article-tool-button.tool-button-arrow{padding-left:71px}.article-tool-button:before{content:"";left:21px}.mobile-tool-button-more{display:block;float:left;width:120px}.mobile-tool-button-more.tool-button-active{border-top:1px solid #232323}.article-tool-button:not(:first-child):not(:last-child){display:none}.tool-button-related{width:calc(100vw - 120px) !important}.mobile-trigger-tools{cursor:pointer;-moz-user-select:-moz-none;-ms-user-select:none;-webkit-user-select:none;user-select:none;padding:15px 0 15px 0}.mobile-trigger-tools:nth-child(2n){float:right}.mobile-trigger-tools:nth-child(2n+1){float:left;clear:both}.article-tool-buttons{background-color:#fff}.article-tool-buttons{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:14px;line-height:1.3;height:44px}.article-tool-button{padding-right:16px !important}.article-tool-module{border-top:0 !important;background-color:#fff;width:100%;z-index:400}.article-tool-module.tool-module-open{bottom:44px !important}.article-tool-module.tool-module-open:not(.tool-module-related){border-left:none}.article-tool-module.tool-module-mobilemore{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:14px;line-height:1.1;display:block;width:100% !important;position:fixed;bottom:-400px;padding-top:9px;padding-bottom:9px;left:0;background-color:#232323;color:#fff;padding-left:16px;padding-right:16px}.article-tool-module:not(.tool-module-mobilemore){max-height:inherit !important;height:calc(100% - 44px) !important}.tool-module-share .wrap-article-tool-module{height:100%}.share-options{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:14px;line-height:1.1;-moz-transform:translate(-50%, -50%);-ms-transform:translate(-50%, -50%);-webkit-transform:translate(-50%, -50%);transform:translate(-50%, -50%);top:50%;left:50%;width:100%;text-align:center;position:absolute}.share-options a{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:14px;line-height:1.1}.share-option+.share-option{margin-top:37px}.share-option .clipboard-response{display:block}.tool-module-notes{padding:0}.item-tool-note:first-child{margin-top:0}.module-conversation-head{padding-left:16px;padding-right:16px;padding-top:16px}.module-conversation-head-join{clear:left;float:left;margin-top:18px}.conversation-item{padding-left:16px;padding-right:16px}.wrap-conversation-start{padding:16px}.conversation-start-button{margin-top:16px}.wrap-all-tool-notes{padding-left:16px;padding-right:16px;margin-top:20px;overflow:scroll;height:100%;margin-bottom:50px;-webkit-overflow-scrolling:touch}.tool-module-notes .wrap-article-tool-module{margin-top:20px;padding-left:16px;padding-right:16px}.all-tool-notes{max-height:initial;padding-right:0;overflow-y:initial}.show-all-notes{padding-bottom:16px;padding-top:16px}.show-all-notes:before,.show-all-notes:after{content:none}.article-tool-button-link{padding:0}.tool-module-booklinks{padding:0}.booklinks-items{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:14px;line-height:1.1;-moz-transform:translate(-50%, -50%);-ms-transform:translate(-50%, -50%);-webkit-transform:translate(-50%, -50%);transform:translate(-50%, -50%);position:absolute;top:50%;left:50%;text-align:center}.booklinks-item+.booklinks-item{margin-top:37px}.overlay-subscribe-header-close{top:15px;left:15px;width:18px;height:18px}.overlay-subscribe-input input{padding:13px 15px 15px}.wrap-overlay-subscribe-input.wrap-twitter-typeahead .overlay-subscribe-input{height:49px}.overlay-subscribe-input.overlay-subscribe-input--half{width:50%;border-top:0}.overlay__inner-text{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:18px;font-weight:normal;line-height:1.2}.wrap-overlay-subscribe-input.subscribe-size-3{-webkit-flex-wrap:wrap;flex-wrap:wrap}.wrap-overlay-subscribe-input.subscribe-size-3 .overlay-subscribe-input:nth-child(2){border-left:2px solid}.wrap-overlay-subscribe-input.wrap-twitter-typeahead{height:auto}.overlay-subscribe-button{padding-top:13px;padding-bottom:18px}.overlay-subscribe-input .tt-menu{padding-left:15px;padding-right:15px;padding-top:13px;min-width:auto;width:100%}.subscribe-checkbox-icon{height:80px;width:50px}.subscribe-checkbox-icon:after{height:30px;width:32px}.wrap-subscribe-checkbox-input{border-right-width:2px;width:54px}.wrap-overlay-subscribe-ckeckbox{border-left-width:2px;border-right-width:2px}.wrap-subscribe-checkbox-text{height:80px;padding-left:15px;width:calc(100% - 54px)}.subscribe-successful-text{padding:15px}.mobile-panel-labels{background-image:url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjEuMCIgeDI9IjAuNSIgeTI9IjAuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIvPjxzdG9wIG9mZnNldD0iNTAlIiBzdG9wLWNvbG9yPSIjZmZmZmZmIi8+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjZmZmZmZmIiBzdG9wLW9wYWNpdHk9IjAuMCIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');background-size:100%;background-image:-webkit-gradient(linear, 50% 100%, 50% 0%, color-stop(0%, #ffffff),color-stop(50%, #ffffff),color-stop(100%, rgba(255,255,255,0)));background-image:-moz-linear-gradient(bottom, #ffffff 0%,#ffffff 50%,rgba(255,255,255,0) 100%);background-image:-webkit-linear-gradient(bottom, #ffffff 0%,#ffffff 50%,rgba(255,255,255,0) 100%);background-image:linear-gradient(to top, #ffffff 0%,#ffffff 50%,rgba(255,255,255,0) 100%);bottom:0;height:66px;left:0;display:block;padding-top:29px;position:fixed;width:100vw;z-index:1}.dark-background .mobile-panel-labels{background-image:url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjEuMCIgeDI9IjAuNSIgeTI9IjAuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzIzMjMyMyIvPjxzdG9wIG9mZnNldD0iNTAlIiBzdG9wLWNvbG9yPSIjMjMyMzIzIi8+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjMjMyMzIzIiBzdG9wLW9wYWNpdHk9IjAuMCIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');background-size:100%;background-image:-webkit-gradient(linear, 50% 100%, 50% 0%, color-stop(0%, #232323),color-stop(50%, #232323),color-stop(100%, rgba(35,35,35,0)));background-image:-moz-linear-gradient(bottom, #232323 0%,#232323 50%,rgba(35,35,35,0) 100%);background-image:-webkit-linear-gradient(bottom, #232323 0%,#232323 50%,rgba(35,35,35,0) 100%);background-image:linear-gradient(to top, #232323 0%,#232323 50%,rgba(35,35,35,0) 100%)}.contentonly .mobile-panel-labels{display:none}.mobile-panel-labels{overflow:hidden}.mobile-panel-label{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:13px;line-height:1.1;display:inline-block;min-height:1px;text-align:center;width:50vw}.mobile-panel-label:first-child{margin-left:25vw}.mobile-panel-label.selected span{border-bottom:5px solid #232323;min-width:1em;padding-bottom:2px;display:inline-block}.dark-background .mobile-panel-label.selected span{border-bottom-color:#fff;color:#fff}.js-selectBox{display:none !important}.search-for-label{line-height:48px}#search-form-input{width:100px}.header-button{padding-left:3px;padding-right:16px}.button-search-close{margin-right:16px}.badge-wrapper{right:2px}.badge{width:150px}.block-material-slider{width:100vw !important;padding-left:16px;padding-right:16px;padding-bottom:32px}.block-material{overflow:visible;margin-left:-16px;height:auto;margin-bottom:44px}.block-material-group-title{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:18px;font-weight:bold;font-weight:bold}.block-material-group{width:100%}.block-material-group+.block-material-group{margin-left:0;margin-top:50px}.block-material-item{width:100% !important}.block-material-item-video{height:auto}.block-material-item-image{width:100%;height:auto}.block-material-item figcaption{position:relative;margin-top:10px}.block-material-item+.block-material-item{margin-left:0;margin-top:32px}.overlay-subscribe-input,.overlay-contact .subscribe-size-2{border-width:2px}.wrap-related-items{overflow-x:hidden;overflow-y:auto}.message-title,.message-text{margin-left:0}.badge-wrapper.with-hover{display:none}.search-form-container:after{content:"";right:initial;left:13px}a.fancybox-close{position:fixed;right:inherit;left:0;padding-right:0;padding-left:19px;padding-top:18px}.fancybox-title{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:14px;line-height:1.1;opacity:0 !important;visibility:hidden !important}.fancybox-title-clone{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:14px;line-height:1.1;position:fixed;bottom:22px;left:20px !important;right:20px !important;color:#fff;text-align:center;display:block;opacity:1 !important;visibility:visible !important}.fancybox-headline,.fancybox-logo{display:none !important}.fancybox-counter+.fancybox-caption-text{margin-top:1px}.sidebar-banner-ad,.js-banner-ad-trigger{display:none}.module-banner-ad{display:block}.banner-ad-mobile{position:relative;margin-left:-16px;margin-right:-16px}.banner-ad-mobile:after{content:"";padding-bottom:10%;display:block}.banner-ad-mobile img{width:100%;height:auto}.banner-ad-mobile+.block-title{margin-top:70px}.banner-ad-mobile.banner-ad-mobile-bottom{margin-bottom:44px}.banner-ad-title{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:13px;line-height:1.1;color:#6b6b6b;text-align:center;margin-bottom:6px}}@media (max-width: 1023px) and (max-width: 1023px){.banner-ad-title{font-size:11px}}@media (max-width: 1023px){.wrap-banner-ad-image{position:absolute;left:0;top:0;width:100%}.banner-ad-mobile-image{display:none}.flickity-slider{left:0 !important}.carousel-expand{height:auto}.carousel-expand:after{content:"";display:block;padding-bottom:62%}.carousel-cell{height:100%;margin-right:10px}.inline-carousel{margin-left:0}.inline-carousel+p,.inline-carousel+h2{margin-top:84px}a.fancybox-nav{display:none}.js-inline-carousel{padding-bottom:24px;padding-top:24px}.preview-item-a3image .preview-item-image img{width:100%;height:auto}.panel-height-full>.panel-items{width:100%}.wrap-logos{-moz-transform:translateX(-50%);-ms-transform:translateX(-50%);-webkit-transform:translateX(-50%);transform:translateX(-50%);zoom:1;display:-webkit-flex;display:flex;-webkit-justify-content:center;justify-content:center;position:absolute;left:50%;top:12px;width:calc(100% - 100px)}.wrap-logos:before,.wrap-logos:after{content:"";display:table}.wrap-logos:after{clear:both}.wrap-logos .logo{-moz-transform:none;-ms-transform:none;-webkit-transform:none;transform:none;position:relative;top:0;left:0;float:left}.wrap-logos .logo-architecture{height:16px;left:0;top:0}.js-column-placeholder{display:none}.js-column-fixed{position:relative;box-shadow:none !important;left:0}.badge-single{left:10px}.cb-player-controls{display:none}.cb-player-overlayer-button{display:block;opacity:1;border:0;background-color:#fff;opacity:.8;width:55px;height:55px}.cb-player-overlayer-button:after{content:"";border-color:transparent transparent transparent #232323;border-width:10px 0 10px 18px;margin-left:2px}.video-livestream{right:16px;top:10px}.video-livestream:after{content:"";width:14px;height:14px;margin-left:5px;top:2px}.overlayer-player{display:none}.video-livestream-overlayer-text a:after{bottom:3px;height:1px}.sidebar-tv{width:100%}.contentonly .content-article{margin-top:0}.block__map{padding-top:0;height:100vh}.block__map #anchor_map{height:100%}.popup{width:100%;border-right:0;height:auto;padding-bottom:34px}.popup__top{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:16px;line-height:1.1;height:54px;padding-left:53px}.popup__close{height:53px;width:53px}.popup__close:before{left:13px;margin-top:-12px}.popup__client{margin-top:18px;padding-left:20px;width:calc(100% - 75px)}.popup__clientlink{margin-top:18px;width:auto;text-align:right;margin-right:20px;margin-top:12px}.popup__clientlink a{color:transparent;overflow:hidden;display:block;width:30px;height:30px}.popup__clientlink a:before{content:"";display:block;width:30px;height:30px;background-image:url("../elements/icon_direction.svg");background-position:center;background-repeat:no-repeat;background-size:contain}.popup--grouped.popup--active .popup__navigation{display:none}.popup__body{padding-top:19px}.popup__image{width:80px;height:80px;margin-left:19px;margin-right:19px}.popup__text{width:calc(100% - 120px)}.popup__text-location{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:13px;line-height:1.1}.popup__navigation-prev,.popup__navigation-next{height:53px;width:54px}.popup__navigation{height:54px}.popups--is-grouped .popup__navigation--mobile{display:flex}.popup__navigation--mobile{display:none;position:fixed;top:65px;right:21px;border-bottom:1px solid #232323}.popup__text-title{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:16px;line-height:1.1;line-height:1.2;font-weight:bold}.popup__counter{padding-top:15px}.popup__text-info,.popup__text-date,.popup__text-url{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:16px;line-height:1.1}.page-app__inner{margin-top:86px;padding-left:15px;padding-right:15px}.header-app__buttons{display:none}.page-app__buttons{-webkit-flex-direction:column;flex-direction:column;-webkit-align-items:center;align-items:center;margin-top:40px}.page-app__button-wrap{float:left}.page-app__button-wrap+.page-app__button-wrap{margin-left:0;margin-top:30px}.page-app__button{width:210px;text-align:center}.page-app__text{margin-top:45px;line-height:1.45}.page-app__sections{padding-top:69px}.page-app__layer,.page-app__phone{display:none}.page-app__section{border-top:2px solid #232323;margin-left:-15px;width:calc(100% + 30px);padding-top:31px}.page-app__section+.page-app__section{border-top:0;margin-top:57px}.page-app__section-column{width:100% !important;height:auto;position:relative;padding-left:15px;padding-right:15px}.page-app__section-text{-moz-transform:none;-ms-transform:none;-webkit-transform:none;transform:none;position:relative;left:0;top:0;width:100%}.page-app__layer-item{background-color:#f3f3f3;margin-top:41px;position:relative;width:100% !important;padding:20px 15px 43px 15px}.page__app-bottom{position:relative}.page-app__buttons--bottom{-moz-transform:translate(-50%, -50%);-ms-transform:translate(-50%, -50%);-webkit-transform:translate(-50%, -50%);transform:translate(-50%, -50%);position:absolute;top:50%;left:50%}.page-app__layer-item--mobile{display:block}.article-carousel{padding-bottom:19px}.block-article-media--carousel{margin-bottom:45px}.article-carousel__cell-image{height:auto}.article-carousel__cell-image-wrap{-webkit-justify-content:center;justify-content:center;display:flex}.article-carousel__cell-caption{padding-left:16px;padding-right:16px}.article-carousel__cell-image{position:relative}.header__subscribe{display:none}}@media (max-width: 767px){.banner-ad-tablet-image{display:none}.banner-ad-mobile-image{display:block}.banner-ad-mobile:after{content:"";padding-bottom:20%;display:block}.overlay-subscribe-header{position:relative;z-index:10}.overlay-item--first,.overlay-item--second{position:relative;top:0;transform:none;left:0;width:100%;max-width:inherit}.overlay__inner-top{padding-top:10px}.overlay__inner-title{padding-left:45px;padding-right:45px}.overlay__inner-text{margin-top:30px}.overlay__inner-top+.overlay-subscribe-form,.overlay__inner-top+.overlay-subscribe-form-second{margin-top:30px}.subscribe-size-3 .overlay-subscribe-input:nth-child(1){border-right:0;border-left:0}.subscribe-size-3 .overlay-subscribe-input:nth-child(2){border-left:0 !important}.subscribe-size-3 .overlay-subscribe-input:nth-child(3){border-left:2px slid;border-right:0}.wrap-twitter-typeahead .overlay-subscribe-input{border-right:0;border-left:0}.wrap-overlay-subscribe-ckeckbox{border-left:0;border-right:0}.wrap-subscribe-checkbox-text{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:20px;line-height:1.35;height:70px;padding-left:5px;padding-right:10px}.subscribe-checkbox-infotext{font-family:"Neue Haas Unica W01",Helvetica,sans-serif;font-size:13px;line-height:1.0769;margin-top:4px;margin-bottom:5px}}@media (max-width: 767px) and (max-width: 767px){.subscribe-checkbox-infotext{font-size:11px}}@media (max-width: 767px){.wrap-subscribe-checkbox-input{border-right:0}.subscribe-checkbox-icon{height:70px}.subscribe-vertial-center{margin-top:-2px}}@media (min-width: 1150px) and (max-width: 1250px){.header-top__navi{font-size:16px}}@media (min-width: 1050px) and (max-width: 1149px){.header-top__navi{font-size:14px}}@media (min-width: 1024px) and (max-width: 1049px){.header-top__navi{font-size:13px}}.text-centered{text-align:center}.text-superior{font-size:70%;vertical-align:super}.text-through{text-decoration:line-through}.font-dove{font-family:"DovesType"}.font-gillsans{font-family:"GillSansW04"}.font-helvetica{font-family:"Helvetica LT W01"}.text-inline-space{display:inline-block;width:2.5em}.announcement-header-info-inline__add-to-calendar{position:relative;display:inline-block;width:17px;height:14px}.announcement-header-info-inline__add-to-calendar:before{content:"";display:block;width:100%;height:100%;position:absolute;border:1px solid;border-radius:5px;top:1px;left:0}.announcement-header-info-inline__add-to-calendar:after{content:"+";position:absolute;top:-8px;left:4.5px}.portrait+.announcement-header-info .announcement-header-info-inline__add-to-calendar:after{top:-5px}.article-player{margin-left:160px;max-width:900px;width:calc(100% - 592px);height:43px;margin-bottom:33px;border:1px solid;position:relative}@media (max-width: 1023px){.article-player{width:100%;margin-left:0}}.article-player--initializing{opacity:0.5}.article-player__cover{text-align:center;cursor:pointer;padding-top:8px;padding-bottom:12px}.article-player__cover:after{content:'';background:url("../elements/speaker.svg");width:19px;height:19px;display:inline-block;transform:translateY(4px);margin-left:8px}.article-player__controls{display:none;position:absolute;left:0;width:100%;top:0;height:100%;background:#232323;color:#fff}.article-player--initializing .article-player__controls,.article-player--initialized .article-player__controls{display:block}.article-player__times{color:#fff;width:110px;position:absolute;right:10px;top:10px;text-align:center}input[type='range']::-webkit-slider-thumb{-webkit-appearance:none !important;background:#fff;height:12px;width:12px;border-radius:100%;cursor:pointer;position:relative;z-index:99}.article-player__playpause{border:none;background:transparent;position:absolute;top:9px;left:9px;width:20px;height:23px;padding:0;outline:none;cursor:pointer}.article-player--is-playing .article-player__playpause:before,.article-player--is-playing .article-player__playpause:after{content:'';background:#fff;position:absolute;top:3px;height:calc(100% - 6px);width:5px}.article-player--is-playing .article-player__playpause:before{left:3px}.article-player--is-playing .article-player__playpause:after{right:3px}.article-player:not(.article-player--is-playing) .article-player__playpause{color:#fff;font-size:25px;transform:translateY(-3px);text-align:center;display:block}.article-player:not(.article-player--is-playing) .article-player__playpause:before{content:'▶'}.article-player__seekslider{position:absolute;left:47px;top:50%;height:2px;transform:translateY(-50%);width:calc(100% - 185px);margin:0;border:none;-webkit-appearance:none;appearance:none;outline:none}.article-player__seekslider::-webkit-slider-thumb{background-color:#232323}
\ No newline at end of file diff --git a/public/webfonts/27645c8a-608b-4abf-a2f1-c4407b576723.woff b/public/webfonts/27645c8a-608b-4abf-a2f1-c4407b576723.woff Binary files differnew file mode 100755 index 0000000..319fe92 --- /dev/null +++ b/public/webfonts/27645c8a-608b-4abf-a2f1-c4407b576723.woff diff --git a/public/webfonts/39bb8fb3-84a4-4ab8-ae45-db1834f5d807.woff2 b/public/webfonts/39bb8fb3-84a4-4ab8-ae45-db1834f5d807.woff2 Binary files differnew file mode 100755 index 0000000..3dae639 --- /dev/null +++ b/public/webfonts/39bb8fb3-84a4-4ab8-ae45-db1834f5d807.woff2 diff --git a/public/webfonts/4142b00a-232a-49e8-803c-541f8b932fa1.woff b/public/webfonts/4142b00a-232a-49e8-803c-541f8b932fa1.woff Binary files differnew file mode 100755 index 0000000..3f9d5f5 --- /dev/null +++ b/public/webfonts/4142b00a-232a-49e8-803c-541f8b932fa1.woff diff --git a/public/webfonts/8546c78d-5a38-4c7b-9371-5a70d803922a.woff b/public/webfonts/8546c78d-5a38-4c7b-9371-5a70d803922a.woff Binary files differnew file mode 100755 index 0000000..ec4a9cf --- /dev/null +++ b/public/webfonts/8546c78d-5a38-4c7b-9371-5a70d803922a.woff diff --git a/public/webfonts/96fd4fb4-75db-412f-986d-d65380ee0ccf.woff b/public/webfonts/96fd4fb4-75db-412f-986d-d65380ee0ccf.woff Binary files differnew file mode 100755 index 0000000..7182ccd --- /dev/null +++ b/public/webfonts/96fd4fb4-75db-412f-986d-d65380ee0ccf.woff diff --git a/public/webfonts/cc589c6c-1ce4-4279-8684-c378497d1c68.woff2 b/public/webfonts/cc589c6c-1ce4-4279-8684-c378497d1c68.woff2 Binary files differnew file mode 100755 index 0000000..79582b5 --- /dev/null +++ b/public/webfonts/cc589c6c-1ce4-4279-8684-c378497d1c68.woff2 diff --git a/public/webfonts/dfa9d078-533c-44d9-9dd9-deaafbff5a96.woff2 b/public/webfonts/dfa9d078-533c-44d9-9dd9-deaafbff5a96.woff2 Binary files differnew file mode 100755 index 0000000..506efb4 --- /dev/null +++ b/public/webfonts/dfa9d078-533c-44d9-9dd9-deaafbff5a96.woff2 diff --git a/public/webfonts/e0d80810-f7e3-4fea-8c57-ef8116f0465d.woff2 b/public/webfonts/e0d80810-f7e3-4fea-8c57-ef8116f0465d.woff2 Binary files differnew file mode 100755 index 0000000..4de6166 --- /dev/null +++ b/public/webfonts/e0d80810-f7e3-4fea-8c57-ef8116f0465d.woff2 diff --git a/public/webfonts/freigtexprobold-webfont.woff b/public/webfonts/freigtexprobold-webfont.woff Binary files differnew file mode 100755 index 0000000..7e62850 --- /dev/null +++ b/public/webfonts/freigtexprobold-webfont.woff diff --git a/public/webfonts/freigtexprobold-webfont.woff2 b/public/webfonts/freigtexprobold-webfont.woff2 Binary files differnew file mode 100755 index 0000000..8430916 --- /dev/null +++ b/public/webfonts/freigtexprobold-webfont.woff2 diff --git a/public/webfonts/freigtexproboldit-webfont.woff b/public/webfonts/freigtexproboldit-webfont.woff Binary files differnew file mode 100755 index 0000000..4dbb1ef --- /dev/null +++ b/public/webfonts/freigtexproboldit-webfont.woff diff --git a/public/webfonts/freigtexproboldit-webfont.woff2 b/public/webfonts/freigtexproboldit-webfont.woff2 Binary files differnew file mode 100755 index 0000000..c344fb1 --- /dev/null +++ b/public/webfonts/freigtexproboldit-webfont.woff2 diff --git a/public/webfonts/freigtexprobook-webfont.woff b/public/webfonts/freigtexprobook-webfont.woff Binary files differnew file mode 100755 index 0000000..cc821e8 --- /dev/null +++ b/public/webfonts/freigtexprobook-webfont.woff diff --git a/public/webfonts/freigtexprobook-webfont.woff2 b/public/webfonts/freigtexprobook-webfont.woff2 Binary files differnew file mode 100755 index 0000000..69a1837 --- /dev/null +++ b/public/webfonts/freigtexprobook-webfont.woff2 diff --git a/public/webfonts/freigtexprobookit-webfont.woff b/public/webfonts/freigtexprobookit-webfont.woff Binary files differnew file mode 100755 index 0000000..d77ac2d --- /dev/null +++ b/public/webfonts/freigtexprobookit-webfont.woff diff --git a/public/webfonts/freigtexprobookit-webfont.woff2 b/public/webfonts/freigtexprobookit-webfont.woff2 Binary files differnew file mode 100755 index 0000000..fd40892 --- /dev/null +++ b/public/webfonts/freigtexprobookit-webfont.woff2 diff --git a/templates/index.liquid b/templates/index.liquid new file mode 100644 index 0000000..3580beb --- /dev/null +++ b/templates/index.liquid @@ -0,0 +1,54 @@ +<!DOCTYPE html> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" class="disable-tweet-animation page-with-columns grayscale-active"> +<head> + <meta http-equiv="Content-Type" content="text/html;charset=utf-8" /> + <meta http-equiv="X-UA-Compatible" content="IE=edge" /> + <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1" /> + <title>e-flux: Animism</title> + <meta property="og:title" content="e-flux" /> + <meta property="og:image" content="https://www.e-flux.com/elements/e-flux-logo-fb.png?2" /> + <meta property="og:image:width" content="2000" /> + <meta property="og:image:height" content="2000" /> + <meta property="og:description" content="e-flux is a publishing platform and archive, artist project, curatorial platform, and enterprise which was founded in 1998." /> + <meta name="Description" content="e-flux is a publishing platform and archive, artist project, curatorial platform, and enterprise which was founded in 1998." /> + <link rel="stylesheet" href="/styles/e-flux-fonts.css" /> + <link rel="stylesheet" href="/styles/e-flux.css" /> + <link rel="shortcut icon" href="/favicon.ico" type="image/x-icon"/> +</head> +<body> + +<div class="block-overlay content-ready header-lock"> + + <div class="header header-article"> + <div class="header-article-topline"> + <div class="logo"> + <a href="/"> + <img src="/elements/e-flux-logo.svg" alt="" /> + </a> + </div> + </div> + + <div class="article-topline"> + </div> + + <nav class="menu"> + <ul class="menu-items menu-items-fixed"> + <li class="menu-item menu-item-button button-search show-only-on-mobile js-header-tools" data-headertool="search"> + <img src="/elements/search.svg" alt="" /> + </li> + <li class="menu-item header-article-close-button"> + <a href="/announcements/" class="article-close-link"> + <img src='/elements/close.svg' alt=''> + </a> + </li> + <li class="menu-item menu-item-button button-menu"> + <img src="/elements/menu.svg" alt="" /> + </li> + </ul> + </nav> + </div> + + +</div> +</body> +</html> |
