Fixes #182 - removing space after closing brace.
authorJakub Pawlowicz <contact@jakubpawlowicz.com>
Sun, 4 Jan 2015 20:12:05 +0000 (20:12 +0000)
committerJakub Pawlowicz <contact@jakubpawlowicz.com>
Sun, 4 Jan 2015 20:20:47 +0000 (20:20 +0000)
* It's not only for transform functions but any function.
* On by default, off in IE<9 compatibility mode.
* Can be managed using `+-properties.spaceAfterClosingBrace` compatibility option.

23 files changed:
History.md
README.md
lib/clean.js
lib/properties/token.js
lib/selectors/optimizers/clean-up.js
lib/selectors/optimizers/simple.js
lib/selectors/tokenizer.js
lib/text/urls-processor.js
lib/utils/compatibility.js
test/binary-test.js
test/fixtures/big-min.css
test/fixtures/charset-mixed-with-fonts-min.css
test/fixtures/font-awesome-min.css
test/fixtures/issue-117-snippet-min.css
test/fixtures/issue-232-min.css
test/fixtures/issue-304-2-min.css
test/fixtures/issue-304-min.css
test/fixtures/issue-312-min.css
test/integration-test.js
test/selectors/optimizer-test.js
test/selectors/optimizers/simple-test.js
test/text/urls-processor-test.js
test/utils/compatibility-test.js

index 6e4c5b2..c8a8462 100644 (file)
@@ -2,6 +2,7 @@
 ==================
 
 * Adds 0deg to 0 minification where possible.
+* Fixed issue [#182](https://github.com/GoalSmashers/clean-css/issues/182) - removing space after closing brace.
 
 [3.0.2 / 2015-01-04](https://github.com/jakubpawlowicz/clean-css/compare/v3.0.1...v3.0.2)
 ==================
index db087a7..caec4e7 100644 (file)
--- a/README.md
+++ b/README.md
@@ -251,6 +251,7 @@ with the following options available:
 * `'[+-]properties.ieSuffixHack'` - turn on / off IE suffix hack removal
 * `'[+-]properties.backgroundSizeMerging'` - turn on / off background-size merging into shorthand
 * `'[+-]properties.merging'` - turn on / off property merging based on understandability
+* `'[+-]properties.spaceAfterClosingBrace'` - turn on / off removing space after closing brace - `url() no-repeat` into `url()no-repeat`
 * `'[+-]selectors.ie7Hack'` - turn on / off IE7 selector hack removal (`*+html...`)
 * `'[+-]units.rem'` - turn on / off treating `rem` as a proper unit
 
index 116ad8d..751c8bd 100644 (file)
@@ -138,7 +138,7 @@ function minify(context, data) {
   var commentsProcessor = new CommentsProcessor(context, options.keepSpecialComments, options.keepBreaks, options.sourceMap);
   var expressionsProcessor = new ExpressionsProcessor(options.sourceMap);
   var freeTextProcessor = new FreeTextProcessor(options.sourceMap);
-  var urlsProcessor = new UrlsProcessor(context, options.sourceMap);
+  var urlsProcessor = new UrlsProcessor(context, options.sourceMap, !options.compatibility.properties.spaceAfterClosingBrace);
 
   var urlRebase = new UrlRebase(context);
   var selectorsOptimizer = new SelectorsOptimizer(options, context);
index 19fb877..c5f8ad1 100644 (file)
@@ -132,6 +132,10 @@ module.exports = (function() {
         var property = t.prop === '' && t.value.indexOf('__ESCAPED_') === 0 ?
           t.value :
           t.prop + ':' + t.value + (t.isImportant ? important : '');
+
+        // FIXME: to be fixed with #429
+        property = property.replace(/\) /g, ')');
+
         tokenized.push({ value: property, metadata: t.metadata || {} });
         list.push(property);
       }
index 3d0ac9d..943e405 100644 (file)
@@ -48,7 +48,7 @@ var CleanUp = {
     return block
       .replace(/\s+/g, ' ')
       .replace(/(,|:|\() /g, '$1')
-      .replace(/ \)/g, ')');
+      .replace(/ ?\) ?/g, ')');
   },
 
   atRule: function (block) {
index 676f39a..1190723 100644 (file)
@@ -5,6 +5,8 @@ var RGB = require('../../colors/rgb');
 var HSL = require('../../colors/hsl');
 var HexNameShortener = require('../../colors/hex-name-shortener');
 
+var processable = require('../../properties/processable');
+
 var DEFAULT_ROUNDING_PRECISION = 2;
 var CHARSET_TOKEN = '@charset';
 var CHARSET_REGEXP = new RegExp('^' + CHARSET_TOKEN, 'i');
@@ -163,6 +165,13 @@ function colorMininifier(property, value, compatibility) {
   return HexNameShortener.shorten(value);
 }
 
+function spaceMinifier(property, value) {
+  if (property == 'filter' || processable.implementedFor.test(property))
+    return value;
+
+  return value.replace(/\) /g, ')');
+}
+
 function reduce(body, options) {
   var reduced = [];
   var properties = [];
@@ -204,6 +213,9 @@ function reduce(body, options) {
     value = multipleZerosMinifier(property, value);
     value = colorMininifier(property, value, options.compatibility);
 
+    if (!options.compatibility.properties.spaceAfterClosingBrace)
+      value = spaceMinifier(property, value);
+
     newProperty = property + ':' + value + (important ? '!important' : '');
     reduced.push({ value: newProperty, metadata: token.metadata });
     properties.push(newProperty);
index fc4463a..9839a5c 100644 (file)
@@ -11,7 +11,9 @@ function Tokenizer(minifyContext, addMetadata, addSourceMap) {
 }
 
 Tokenizer.prototype.toTokens = function (data) {
-  data = data.replace(/\r\n/g, '\n');
+  data = data
+    .replace(/\r\n/g, '\n')
+    .replace(/\)([^\s\{_;,])/g, this.addSourceMap ? ') __ESCAPED_COMMENT_CLEAN_CSS(0,-1)__$1' : ') $1');
 
   var chunker = new Chunker(data, '}', 128);
   if (chunker.isEmpty())
index e1ab00d..4f23243 100644 (file)
@@ -4,10 +4,11 @@ var URL_PREFIX = 'url(';
 var URL_SUFFIX = ')';
 var lineBreak = require('os').EOL;
 
-function UrlsProcessor(context, saveWaypoints) {
+function UrlsProcessor(context, saveWaypoints, removeTrailingSpace) {
   this.urls = new EscapeStore('URL');
   this.context = context;
   this.saveWaypoints = saveWaypoints;
+  this.removeTrailingSpace = removeTrailingSpace;
 }
 
 // Strip urls by replacing them by a special
@@ -99,7 +100,7 @@ UrlsProcessor.prototype.restore = function (data) {
     var url = normalize(this.urls.restore(nextMatch.match));
     tempData.push(url);
 
-    cursor = nextMatch.end;
+    cursor = nextMatch.end + (this.removeTrailingSpace && data[nextMatch.end] == ' ' ? 1 : 0);
   }
 
   return tempData.length > 0 ?
index eaad4fa..23684e5 100644 (file)
@@ -9,7 +9,8 @@ var DEFAULTS = {
       backgroundSizeMerging: false, // background-size to shorthand
       iePrefixHack: false, // underscore / asterisk prefix hacks on IE
       ieSuffixHack: false, // \9 suffix hacks on IE
-      merging: true // merging properties into one
+      merging: true, // merging properties into one
+      spaceAfterClosingBrace: false // 'url() no-repeat' to 'url()no-repeat'
     },
     selectors: {
       ie7Hack: false, // *+html hack
@@ -27,7 +28,8 @@ var DEFAULTS = {
       backgroundSizeMerging: false,
       iePrefixHack: true,
       ieSuffixHack: true,
-      merging: false
+      merging: false,
+      spaceAfterClosingBrace: true
     },
     selectors: {
       ie7Hack: false,
@@ -45,7 +47,8 @@ var DEFAULTS = {
       backgroundSizeMerging: false,
       iePrefixHack: true,
       ieSuffixHack: true,
-      merging: false
+      merging: false,
+      spaceAfterClosingBrace: true
     },
     selectors: {
       ie7Hack: true,
index b4f5f4e..42aa75f 100644 (file)
@@ -174,18 +174,18 @@ exports.commandsSuite = vows.describe('binary commands').addBatch({
   'relative image paths': {
     'no root & output': binaryContext('./test/fixtures/partials-relative/base.css', {
       'should leave paths': function(error, stdout) {
-        assert.equal(stdout, 'a{background:url(../partials/extra/down.gif) no-repeat}');
+        assert.equal(stdout, 'a{background:url(../partials/extra/down.gif)no-repeat}');
       }
     }),
     'root but no output': binaryContext('-r ./test ./test/fixtures/partials-relative/base.css', {
       'should rewrite path relative to ./test': function(error, stdout) {
-        assert.equal(stdout, 'a{background:url(/fixtures/partials/extra/down.gif) no-repeat}');
+        assert.equal(stdout, 'a{background:url(/fixtures/partials/extra/down.gif)no-repeat}');
       }
     }),
     'no root but output': binaryContext('-o ./base1-min.css ./test/fixtures/partials-relative/base.css', {
       'should rewrite path relative to current path': function() {
         var minimized = readFile('./base1-min.css');
-        assert.equal(minimized, 'a{background:url(test/fixtures/partials/extra/down.gif) no-repeat}');
+        assert.equal(minimized, 'a{background:url(test/fixtures/partials/extra/down.gif)no-repeat}');
       },
       teardown: function() {
         deleteFile('./base1-min.css');
@@ -194,7 +194,7 @@ exports.commandsSuite = vows.describe('binary commands').addBatch({
     'root and output': binaryContext('-r ./test/fixtures -o ./base2-min.css ./test/fixtures/partials-relative/base.css', {
       'should rewrite path relative to ./test/fixtures/': function() {
         var minimized = readFile('./base2-min.css');
-        assert.equal(minimized, 'a{background:url(/partials/extra/down.gif) no-repeat}');
+        assert.equal(minimized, 'a{background:url(/partials/extra/down.gif)no-repeat}');
       },
       teardown: function() {
         deleteFile('./base2-min.css');
index 3c8afbc..d301a64 100644 (file)
@@ -40,8 +40,8 @@ input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-sea
 button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}
 textarea{overflow:auto;vertical-align:top}
 table{border-spacing:0}
-@font-face{font-family:TheSerifOffice;src:url(/medias/web/font/svg/TheSerifOffice-OT7_West.svgz#TheSerifOffice)format('svg');src:url(/medias/web/font/eot/TheSerifOffice-TT7_.eot);src:url(/medias/web/font/eot/TheSerifOffice-TT7_.eot?#iefix) format('embedded-opentype'),url(/medias/web/font/woff/TheSerifOffice-TT7_.woff) format('woff');font-weight:400;font-style:normal}
-@font-face{font-family:FetteEngschrift;src:url(/medias/web/font/eot/fetteengschrift.eot);src:url(/medias/web/font/eot/fetteengschrift.eot?#iefix) format('embedded-opentype'),url(/medias/web/font/woff/fetteengschrift.woff) format('woff');font-weight:400;font-style:normal}
+@font-face{font-family:TheSerifOffice;src:url(/medias/web/font/svg/TheSerifOffice-OT7_West.svgz#TheSerifOffice)format('svg');src:url(/medias/web/font/eot/TheSerifOffice-TT7_.eot);src:url(/medias/web/font/eot/TheSerifOffice-TT7_.eot?#iefix)format('embedded-opentype'),url(/medias/web/font/woff/TheSerifOffice-TT7_.woff)format('woff');font-weight:400;font-style:normal}
+@font-face{font-family:FetteEngschrift;src:url(/medias/web/font/eot/fetteengschrift.eot);src:url(/medias/web/font/eot/fetteengschrift.eot?#iefix)format('embedded-opentype'),url(/medias/web/font/woff/fetteengschrift.woff)format('woff');font-weight:400;font-style:normal}
 .global .bloc_bandeau .bandeau,.global .bloc_droit .bandeau{font-family:FetteEngschrift,'Arial Narrow',sans-serif}
 .tt40{display:block;font-size:4rem;line-height:105%;font-family:TheSerifOffice,georgia,serif;font-weight:400;margin:0 0 .5rem}
 .ie .tt40{font-size:40px;margin:0 0 .5px}
@@ -272,12 +272,12 @@ button::-moz-focus-inner,input[type=submit]::-moz-focus-inner{padding:0;border:0
 .titre_bt_fleche{display:inline-block;overflow:hidden;background:#f5f8f9}
 .titre_bt_fleche:hover{background:#e9edf0}
 .titre_bt_fleche .bt{position:relative;display:block;float:right;width:42px;border-left:1px solid #e4e6e9;background-color:#e9edf0;min-height:64px}
-.titre_bt_fleche .fleche{position:absolute;right:13px;top:33%;background:url(/medias/web/img/sprites/icos_petites.png) -1px -108px no-repeat;width:13px;height:22px}
+.titre_bt_fleche .fleche{position:absolute;right:13px;top:33%;background:url(/medias/web/img/sprites/icos_petites.png)-1px -108px no-repeat;width:13px;height:22px}
 .titre_bt_fleche:hover .fleche{background-position:-15px -108px}
 .titre_bt_fleche .titre,.titre_bt_fleche img{float:left}
 .titre_bt_fleche img{margin:0}
 .titre_bt_fleche .titre{padding:6px 0 8px;width:50%;font-weight:700;margin-left:9px}
-.fb20x20,.google20x20,.mobile20x20,.rss20x20,.tw20x20{background:url(/medias/web/img/sprites/pictos20x20.png) no-repeat;display:inline-block;text-indent:-9999px;height:20px;width:20px;vertical-align:middle;margin-left:4px}
+.fb20x20,.google20x20,.mobile20x20,.rss20x20,.tw20x20{background:url(/medias/web/img/sprites/pictos20x20.png)no-repeat;display:inline-block;text-indent:-9999px;height:20px;width:20px;vertical-align:middle;margin-left:4px}
 .fb20x20{background-position:0 -40px}
 .fb20x20:hover{background-position:0 -60px}
 .tw20x20{background-position:0 -80px}
@@ -289,9 +289,9 @@ button::-moz-focus-inner,input[type=submit]::-moz-focus-inner{padding:0;border:0
 .rss20x20{background-position:0 -200px}
 .rss20x20:hover{background-position:0 -220px}
 .nl{color:#747b83;font-weight:700}
-.nl span{display:inline-block;width:20px;height:20px;margin:0 0 0 5px;line-height:20px;background:url(/medias/web/img/sprites/pictos20x20.png) no-repeat}
+.nl span{display:inline-block;width:20px;height:20px;margin:0 0 0 5px;line-height:20px;background:url(/medias/web/img/sprites/pictos20x20.png)no-repeat}
 .nl:hover span{background-position:right -20px}
-.bt_fermer,.bt_ouvrir,.bt_ouvrir:hover,.croix_blanche,.croix_grise,.fb13x13,.fb13x13_blanc,.fb13x13_gris,.google13x13,.google13x13_blanc,.ico_annee_en_france,.lien_externe span,.linkedin13x13,.linkedin13x13_blanc,.nb_commentaires .pic,.nb_reactions .pic,.nl_blanc,.tw13x13,.tw13x13_blanc,.tw13x13_gris,.tw_bird{background:url(/medias/web/img/sprites/icos_petites.png) no-repeat;display:inline-block;text-indent:-9999px;height:13px;width:13px;cursor:pointer}
+.bt_fermer,.bt_ouvrir,.bt_ouvrir:hover,.croix_blanche,.croix_grise,.fb13x13,.fb13x13_blanc,.fb13x13_gris,.google13x13,.google13x13_blanc,.ico_annee_en_france,.lien_externe span,.linkedin13x13,.linkedin13x13_blanc,.nb_commentaires .pic,.nb_reactions .pic,.nl_blanc,.tw13x13,.tw13x13_blanc,.tw13x13_gris,.tw_bird{background:url(/medias/web/img/sprites/icos_petites.png)no-repeat;display:inline-block;text-indent:-9999px;height:13px;width:13px;cursor:pointer}
 .tw_bird{cursor:default}
 .fb13x13,.fb13x13_blanc,.fb13x13_gris,.google13x13,.google13x13_blanc,.linkedin13x13,.linkedin13x13_blanc,.tw13x13,.tw13x13_blanc,.tw13x13_gris{margin:0 2px;vertical-align:middle}
 .fb13x13,.fb13x13_gris{background-position:0 -38px}
@@ -320,7 +320,7 @@ button::-moz-focus-inner,input[type=submit]::-moz-focus-inner{padding:0;border:0
 .az:hover .bt_ouvrir,.bt_ouvrir:hover,.conteneur_alterne_bt:hover .bt_ouvrir{background-position:-17px -158px}
 .bt_fermer{background-position:-17px -143px}
 .az:hover .bt_fermer,.bt_fermer:hover,.conteneur_alterne_bt:hover .bt_fermer{background-position:-34px -143px}
-.picto_lien{display:inline-block;width:12px;height:13px;margin:0 5px 0 0;background:url(/medias/web/img/sprites/icos_petites.png) 0 -142px no-repeat;vertical-align:middle}
+.picto_lien{display:inline-block;width:12px;height:13px;margin:0 5px 0 0;background:url(/medias/web/img/sprites/icos_petites.png)0 -142px no-repeat;vertical-align:middle}
 .croix_blanche{background-position:0 -191px;width:10px;height:10px;vertical-align:baseline}
 .croix_grise{width:10px;height:10px;margin-bottom:-.1rem;background-position:-11px -191px;cursor:pointer}
 .ico_annee_en_france{margin:0 7px 0 0;width:16px;height:17px;background-position:0 -173px}
@@ -331,8 +331,8 @@ button::-moz-focus-inner,input[type=submit]::-moz-focus-inner{padding:0;border:0
 .filet_plus{border-top:1px solid #e9edf0;font-size:16px;line-height:1px;margin:20px 0;font-weight:700;text-align:center}
 .filet_plus .bg_plus{background:#b9c0c5;padding:0 5px}
 .filet_plus .plus{color:#fff}
-.pic_debrief_abo{display:inline-block;margin:0 8px 0 0;vertical-align:text-bottom;width:24px;height:24px;background:url(/medias/web/img/sprites/pictos_abos.png) 0 -24px no-repeat}
-.pic_commentes_abo{display:inline-block;margin:0 8px 0 0;vertical-align:text-bottom;height:23px;width:32px;background:url(/medias/web/img/sprites/pictos_abos.png) no-repeat}
+.pic_debrief_abo{display:inline-block;margin:0 8px 0 0;vertical-align:text-bottom;width:24px;height:24px;background:url(/medias/web/img/sprites/pictos_abos.png)0 -24px no-repeat}
+.pic_commentes_abo{display:inline-block;margin:0 8px 0 0;vertical-align:text-bottom;height:23px;width:32px;background:url(/medias/web/img/sprites/pictos_abos.png)no-repeat}
 .liste_bordure li{padding:8px 16px 6px;border-bottom:1px solid #eef1f5}
 .liste_chevron{display:block;padding:0 0 0 10px;position:relative}
 .chevron{display:inline-block}
@@ -371,7 +371,7 @@ article .liste_carre_999{margin-top:5px}
 .titre_une{margin:0 0 10px}
 .titre_une figcaption{margin:5px 0 0}
 .titres_abonnes{overflow:hidden;background:#f8f9fb;border-bottom:6px solid #e9edf0}
-.entete_exclu_abonnes,.titres_abonnes .entete{display:block;height:19px;background:url(/medias/web/img/elements_lm/ea_contenu_exclusif.png) 8px 4px no-repeat #ffd500;font-size:13px;text-indent:-9999px}
+.entete_exclu_abonnes,.titres_abonnes .entete{display:block;height:19px;background:url(/medias/web/img/elements_lm/ea_contenu_exclusif.png)8px 4px no-repeat #ffd500;font-size:13px;text-indent:-9999px}
 .titres_abonnes .ligne1,.titres_abonnes .ligne2{padding:15px 0 10px;overflow:hidden}
 .titres_abonnes .ligne2{border-top:1px solid #d5d9de}
 .titres_abonnes .conteneur_bt{clear:both;padding:15px 0;text-align:center}
@@ -405,7 +405,7 @@ article .liste_carre_999{margin-top:5px}
 .col_droite .supplement_partenaire .contenu .annonce,.global .supplement_partenaire .contenu .annonce{float:left;margin-left:10px;width:209px}
 .col_droite .supplement_partenaire .annonce .accroche,.global .supplement_partenaire{display:block;margin-bottom:5px;font-weight:700}
 .global .bloc_bandeau .bandeau,.global .bloc_droit .bandeau{padding:0 16px;margin:0;font-size:17px;line-height:26px;color:#fff;text-transform:uppercase}
-.global .bloc_droit .titre{display:block;background:url(/medias/web/img/textes/blog_expert.png) no-repeat;text-indent:-99999px}
+.global .bloc_droit .titre{display:block;background:url(/medias/web/img/textes/blog_expert.png)no-repeat;text-indent:-99999px}
 .global .bloc_droit .contenu_droit{padding:18px 14px 10px;overflow:hidden}
 .global .bloc_droit .entree,.global .bloc_droit .entree.auto{height:46px;padding:7px 14px 10px;overflow:hidden;border-top:1px solid #e9edf0}
 .global .bloc_droit .entree.auto,.global .bloc_droit .entree.presidentielle{height:auto;font-weight:700}
@@ -425,7 +425,7 @@ article .liste_carre_999{margin-top:5px}
 .global.videos .grid_6{padding-bottom:16px}
 .global.videos .grid_6>a{display:block}
 .global.revue_web{padding:0;font-weight:700}
-.global.revue_web .entete{display:block;height:80px;background:url(/medias/web/img/habillage/bandeau_revue_web.png) no-repeat}
+.global.revue_web .entete{display:block;height:80px;background:url(/medias/web/img/habillage/bandeau_revue_web.png)no-repeat}
 .global.revue_web .entete a{display:inline-block;width:335px;height:80px;text-indent:-9999px}
 .global.revue_web .entete a:first-child{width:664px}
 .global.revue_web .big_brother{display:table-cell;float:left;width:664px;padding-bottom:10px}
@@ -450,7 +450,7 @@ article .liste_carre_999{margin-top:5px}
 .global.audience .container>div:first-child{margin-left:0}
 #carousel_footer_serviciel img:hover,.global.audience .container img:hover{opacity:.7;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=70)"}
 .global.supp_partenaires .entete_deroule{padding:6px 16px;margin-bottom:0;text-align:left;font-weight:700;font-size:16px;font-family:arial,sans serif}
-.global.supp_partenaires .entete_deroule .logo{float:right;padding-left:40px;background:url(/medias/web/img/textes/marqueur_pub_gris43x5.png) 0 12px no-repeat}
+.global.supp_partenaires .entete_deroule .logo{float:right;padding-left:40px;background:url(/medias/web/img/textes/marqueur_pub_gris43x5.png)0 12px no-repeat}
 .global.supp_partenaires .position_pub div{float:left;width:301px;padding:16px 12px 16px 16px;line-height:140%}
 .global.supp_partenaires .position_pub div~div{width:285px}
 .global.supp_partenaires .position_pub div~div~div{width:330px}
@@ -505,7 +505,7 @@ input[type=checkbox],input[type=radio]{vertical-align:bottom;margin-bottom:.2rem
 .saisie_erreur input{color:#000;text-shadow:0 0 0 transparent}
 .champs_erreur{border:1px solid #d50303}
 .confirmation{position:relative;padding:10px;background:#dff0d8;color:#468847}
-.confirmation .fermer{position:absolute;right:10px;top:10px;width:10px;height:10px;background:url(/medias/web/img/sprites/icos_petites.png) -22px -191px no-repeat;text-indent:-9999px;cursor:pointer}
+.confirmation .fermer{position:absolute;right:10px;top:10px;width:10px;height:10px;background:url(/medias/web/img/sprites/icos_petites.png)-22px -191px no-repeat;text-indent:-9999px;cursor:pointer}
 .bandeau_info_importante{padding:10px;background:#fff1ae;color:#c09853}
 .bandeau_important{padding:6px 16px;background:#d50303;color:#fff;font-weight:700}
 input[disabled=disabled]{background:#eef1f5}
@@ -545,13 +545,13 @@ img[height="97"]+.ico29x29{bottom:6%;left:3.5%}
 .ico_video_mini{width:13px;height:13px;margin:1px 5px 0 0;background-position:-143px -128px;vertical-align:text-bottom}
 .ico_live_mini{width:13px;height:13px;margin:1px 5px 0 0;background-position:-143px -192px;vertical-align:text-bottom}
 .voir_plus.hovered{background:#f1f5f8;cursor:pointer}
-.deplier{display:block;visibility:hidden;height:16px;margin:10px 0 0;text-indent:-9999px;background:url(/medias/web/img/pictos/chevrons_double_haut_bas.png) 50% 3px no-repeat #e4e6e9;border-top:1px solid #a2a9ae}
+.deplier{display:block;visibility:hidden;height:16px;margin:10px 0 0;text-indent:-9999px;background:url(/medias/web/img/pictos/chevrons_double_haut_bas.png)50% 3px no-repeat #e4e6e9;border-top:1px solid #a2a9ae}
 .deplier.visible{visibility:visible}
 .deplier.ouvert{background-position:50% -13px}
 .deplier:hover{cursor:pointer}
 .edito_ensemble_liste p{min-height:45px}
 .edito_ensemble_lien{cursor:pointer}
-.edito_ensemble_lien .double_chevron{display:inline-block;width:9px;height:9px;margin-left:10px;background:url(/medias/web/img/pictos/chevrons_double_haut_bas.png) no-repeat}
+.edito_ensemble_lien .double_chevron{display:inline-block;width:9px;height:9px;margin-left:10px;background:url(/medias/web/img/pictos/chevrons_double_haut_bas.png)no-repeat}
 .edito_ensemble_lien.resize_mini .double_chevron{transform:rotate(0);-ms-transform:rotate(0);-moz-transform:rotate(0);-webkit-transform:rotate(0);-o-transform:rotate(0);-webkit-transition-property:transform;-webkit-transition-duration:.5s;-webkit-transition-timing-function:ease-in;-moz-transition-property:transform;-moz-transition-duration:.5s;-moz-transition-timing-function:ease-in;transition-property:transform;transition-duration:.5s;transition-timing-function:ease-in}
 .edito_ensemble_lien.resize_maxi .double_chevron{transform:rotate(180deg);-ms-transform:rotate(180deg);-moz-transform:rotate(180deg);-webkit-transform:rotate(180deg);-o-transform:rotate(180deg);-webkit-transition-property:transform;-webkit-transition-duration:.5s;-webkit-transition-timing-function:ease-in;-moz-transition-property:transform;-moz-transition-duration:.5s;-moz-transition-timing-function:ease-in;transition-property:transform;transition-duration:.5s;transition-timing-function:ease-in}
 .conteneur_onglets{height:35px;border:solid #d2d6db;border-width:0 0 1px}
@@ -567,7 +567,7 @@ img[height="97"]+.ico29x29{bottom:6%;left:3.5%}
 .abonne_cartouche44x12{display:inline-block;width:44px;height:12px;margin:0 0 0 5px;background:url(/medias/web/img/elements_lm/abonne_cartouche44x12.png);text-indent:-9999px;font-size:13px;vertical-align:middle}
 .ea109x13{display:inline-block;width:109px;height:13px;background:url(/medias/web/img/elements_lm/edition_abonnes109x13.png);text-indent:-9999px;font-size:13px;vertical-align:baseline}
 .logo_lm95x16,.logo_lm_abo95x16{display:inline-block;width:95px;height:16px;background:url(/medias/web/img/elements_lm/logo_lm95x16.png);text-indent:-9999px;font-size:13px;vertical-align:baseline}
-.logo_lm95x16{background:url(/medias/web/img/elements_lm/logo_lm95x16.png) 0 -16px}
+.logo_lm95x16{background:url(/medias/web/img/elements_lm/logo_lm95x16.png)0 -16px}
 .ea_article{position:absolute;left:-18px;top:3px;display:inline-block;width:55px;height:59px;text-indent:-9999px;background:url(/medias/web/img/elements_lm/marqueur_ea_article.png)}
 .huffington148x10{display:inline-block;width:148px;height:10px;text-indent:-9999px;background:url(/medias/web/img/groupe/logo_huffington149x10.png)}
 .telerama47x18{display:inline-block;width:47px;height:18px;text-indent:-9999px;background:url(/medias/web/img/groupe/logo_teleramafr47x18.png)}
@@ -581,10 +581,10 @@ img[height="97"]+.ico29x29{bottom:6%;left:3.5%}
 #en_ce_moment a,#en_ce_moment li:first-child span{display:inline-block;height:23px;padding:10px 8px 0;color:#d2d6db;font-size:1.3rem;line-height:100%;font-weight:700}
 .ie #en_ce_moment a{font-size:13px}
 #en_ce_moment a:hover{color:#CB2626}
-#en_ce_moment li:first-child{background:url(/medias/web/img/sprites/sous_nav.png) right -70px no-repeat;padding:0 13px 0 5px}
+#en_ce_moment li:first-child{background:url(/medias/web/img/sprites/sous_nav.png)right -70px no-repeat;padding:0 13px 0 5px}
 #en_ce_moment li:first-child span{height:22px;padding:11px 8px 0;text-transform:uppercase;color:#fff;font-size:1.2rem}
 .carousel_petit .navigation{margin:10px 0;line-height:10px;text-align:center}
-.carousel_petit .precedent,.carousel_petit .repere,.carousel_petit .suivant{display:inline-block;vertical-align:middle;background:url(/medias/web/img/sprites/carousel_petit.png) no-repeat;text-indent:-9999px}
+.carousel_petit .precedent,.carousel_petit .repere,.carousel_petit .suivant{display:inline-block;vertical-align:middle;background:url(/medias/web/img/sprites/carousel_petit.png)no-repeat;text-indent:-9999px}
 .carousel_petit .precedent,.carousel_petit .suivant{width:8px;height:11px}
 .carousel_petit .suivant{background-position:-10px 0}
 .carousel_petit .repere{background-position:0 -24px;width:9px;height:8px;margin:0 3px}
@@ -617,7 +617,7 @@ img[height="97"]+.ico29x29{bottom:6%;left:3.5%}
 .pagination .plus ul li{border-left:1px solid #a2a9ae}
 .pagination .plus ul li:first-child{border-radius:4px 0 0 4px}
 .pagination .plus ul li:hover{background:#5d666d}
-.pagination .plus .pointeur{display:block;height:12px;background:url(/medias/web/img/pictos/pagination_fle.png) 554px 0 no-repeat}
+.pagination .plus .pointeur{display:block;height:12px;background:url(/medias/web/img/pictos/pagination_fle.png)554px 0 no-repeat}
 .pagination_large .plus .pointeur{background-position:884px 0}
 .pagination .plus:hover div{display:block}
 .pagination .plus ul .page{border:solid #b9c0c5;border-width:0 1px 0 0;text-align:center;line-height:26px;font-size:12px;color:#fff}
@@ -656,7 +656,7 @@ img[height="97"]+.ico29x29{bottom:6%;left:3.5%}
 #footer_services .liste_tv .logo+p{width:230px;display:inline-block;line-height:14px;font-weight:700}
 #footer_services .liste_tv .logo+p span{font-size:10px}
 #footer_services .liste_tv .logo+p b{display:block;font-size:11px}
-#footer_services .liste_tv .logo,#footer_services .liste_tv .note{display:inline-block;margin:0 5px 0 0;width:47px;height:27px;background:url(/medias/web/img/sprites/tv.png) no-repeat;text-indent:-9999px;vertical-align:baseline}
+#footer_services .liste_tv .logo,#footer_services .liste_tv .note{display:inline-block;margin:0 5px 0 0;width:47px;height:27px;background:url(/medias/web/img/sprites/tv.png)no-repeat;text-indent:-9999px;vertical-align:baseline}
 #footer_services .liste_tv .note{float:left;margin-top:2px}
 #footer_services .liste_tv .logo_france_2{background-position:0 -28px}
 #footer_services .liste_tv .logo_france_3{background-position:0 -56px}
@@ -683,12 +683,12 @@ img[height="97"]+.ico29x29{bottom:6%;left:3.5%}
 .ie #footer{font-size:11px}
 #footer .obf:hover,#footer a:hover{text-decoration:underline}
 #footer .footer_gratuit{overflow:hidden}
-#footer .abonnement{float:left;width:673px;height:155px;background:url(/medias/web/img/elements_lm/footer_supports.jpg) right bottom no-repeat}
-#footer .zone_abo{display:block;float:left;width:673px;height:155px;background:url(/medias/web/img/elements_lm/footer_supports_haut.png) 385px top no-repeat}
+#footer .abonnement{float:left;width:673px;height:155px;background:url(/medias/web/img/elements_lm/footer_supports.jpg)right bottom no-repeat}
+#footer .zone_abo{display:block;float:left;width:673px;height:155px;background:url(/medias/web/img/elements_lm/footer_supports_haut.png)385px top no-repeat}
 #footer .zone_abo:hover{text-decoration:none}
-#footer .abonnement .contenu{margin:35px 0 0;padding:30px 346px 0 13px;background:url(/medias/web/img/elements_lm/le_monde_abonements_227x22.png) 13px top no-repeat;color:#16212c;line-height:120%}
+#footer .abonnement .contenu{margin:35px 0 0;padding:30px 346px 0 13px;background:url(/medias/web/img/elements_lm/le_monde_abonements_227x22.png)13px top no-repeat;color:#16212c;line-height:120%}
 #footer .abonnement .bt{padding:5px 0 0 13px}
-#footer .deja_abonne{float:left;width:183px;height:110px;padding:10px 125px 10px 16px;margin:25px 0 0;background:url(/medias/web/img/elements_lm/footer_deja_abo.jpg) right top no-repeat #fafbfc}
+#footer .deja_abonne{float:left;width:183px;height:110px;padding:10px 125px 10px 16px;margin:25px 0 0;background:url(/medias/web/img/elements_lm/footer_deja_abo.jpg)right top no-repeat #fafbfc}
 #footer .deja_abonne .accroche{display:block;font-weight:700;font-size:17px;padding:0 0 8px}
 #footer .deja_abonne .obf,#footer .deja_abonne .trigger_boite_login{display:block;padding:0 0 0 10px;position:relative}
 #footer .deja_abonne .obf:before,#footer .deja_abonne .trigger_boite_login:before{color:#5d666d;content:'\203A';display:block;float:left;font-size:1.2rem;left:0;position:absolute;width:10px}
@@ -708,7 +708,7 @@ img[height="97"]+.ico29x29{bottom:6%;left:3.5%}
 #footer .copy a{color:#464f57}
 #footer .description{color:#a2a9ae;padding:3px 13px;line-height:120%}
 #header_facebook,#header_google,#header_twitter{position:relative}
-.conteneur_popinbox{position:absolute;z-index:10;top:20px;left:-145px;padding:11px 0 0;-webkit-box-shadow:-1px 4px 3px -2px rgba(0,11,21,.5);-moz-box-shadow:-1px 4px 3px -2px rgba(0,11,21,.5);box-shadow:-1px 4px 3px -2px rgba(0,11,21,.5);background:url(/medias/web/img/habillage/lightbox_sociaux_coche.png) center top no-repeat;display:none}
+.conteneur_popinbox{position:absolute;z-index:10;top:20px;left:-145px;padding:11px 0 0;-webkit-box-shadow:-1px 4px 3px -2px rgba(0,11,21,.5);-moz-box-shadow:-1px 4px 3px -2px rgba(0,11,21,.5);box-shadow:-1px 4px 3px -2px rgba(0,11,21,.5);background:url(/medias/web/img/habillage/lightbox_sociaux_coche.png)center top no-repeat;display:none}
 .popinbox{padding:10px;background:#fff;overflow:visible}
 .sociaux .popinbox{width:292px;text-indent:0}
 #header_facebook_contenu{position:relative;height:258px}
@@ -720,7 +720,7 @@ img[height="97"]+.ico29x29{bottom:6%;left:3.5%}
 .position_pub.x01{height:0;z-index:2147483647}
 .position_pub.top1{width:1000px;margin-left:auto;margin-right:auto;text-align:center;min-height:90px}
 .app_abonnes .position_pub.top1{min-height:0}
-.col_droite .position_pub.filled{margin-bottom:25px;padding:7px 7px 13px;background:url(/medias/web/img/textes/marqueur_pub_col_droite.png) bottom right no-repeat #e9edf0}
+.col_droite .position_pub.filled{margin-bottom:25px;padding:7px 7px 13px;background:url(/medias/web/img/textes/marqueur_pub_col_droite.png)bottom right no-repeat #e9edf0}
 .col_droite .position_pub.filled.noborder{background:0 0;padding:0}
 .conteneur_ligatus{margin:25px 0}
 .conteneur_ligatus *{vertical-align:bottom}
@@ -787,7 +787,7 @@ img[height="97"]+.ico29x29{bottom:6%;left:3.5%}
 #header_utilisateur .recherche p{width:195px;margin:0;padding:2px 5px;background-color:#f8f9fb;border:1px solid #d2d6db;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;overflow:hidden}
 #header_utilisateur .recherche input[type=search]{border:none;background:0 0;width:165px;float:left;-webkit-box-sizing:border-box}
 #header_utilisateur .recherche input[type=search]:focus{outline:0}
-#header_utilisateur .loupe{width:15px;height:15px;margin:0 0 0 5px;border:none;background:url(/medias/web/img/sprites/icos_petites.png) -17px -173px no-repeat;text-indent:-9999px;font-size:0;color:#f8f9fb;float:right}
+#header_utilisateur .loupe{width:15px;height:15px;margin:0 0 0 5px;border:none;background:url(/medias/web/img/sprites/icos_petites.png)-17px -173px no-repeat;text-indent:-9999px;font-size:0;color:#f8f9fb;float:right}
 #header_utilisateur .sociaux{float:left;margin:7px 20px 0;color:#747b83;font-weight:700;font-size:12px}
 #header_utilisateur .sociaux a,#header_utilisateur .sociaux span{vertical-align:middle;margin-right:7px}
 .sociaux .obf,.sociaux .obf span,.sociaux .obf strong,.sociaux .obf:focus span,.sociaux .obf:focus strong,.sociaux .obf:hover span,.sociaux .obf:hover strong{color:#000;text-decoration:none}
@@ -818,7 +818,7 @@ img[height="97"]+.ico29x29{bottom:6%;left:3.5%}
 #header .acces_compte .avatar{width:28px;border-right:1px solid #d2d6db}
 #header .acces_compte .avatar img{display:block;margin:4px auto 0;vertical-align:middle}
 #header .acces_compte .nom{padding:0 16px;border-right:1px solid #d2d6db;border-left:1px solid #fff}
-#header .acces_compte .fle{width:28px;background:url(/medias/web/img/pictos/fle_bas_noir7x4.png) 50% 50% no-repeat}
+#header .acces_compte .fle{width:28px;background:url(/medias/web/img/pictos/fle_bas_noir7x4.png)50% 50% no-repeat}
 #header .acces_compte ul{position:absolute;right:0;top:29px;width:98%;background:#fff;list-style-type:none;text-align:left;display:none;border:1px solid #d2d6db;border-radius:0 0 3px 3px}
 #header .acces_compte:hover ul{display:block}
 #header .acces_compte li{padding:8px;border-bottom:1px solid #eef1f5}
@@ -830,7 +830,7 @@ img[height="97"]+.ico29x29{bottom:6%;left:3.5%}
 .lightbox_ext,.loginbox{overflow:hidden;background:#f5f8f9}
 .lightbox_ext h2,.loginbox h2{padding:7px 16px 5px;background:#16212c;border-top:3px solid #747b83;color:#fff}
 .lightbox_ext .fermer,.loginbox .fermer{float:right;font-size:11px;line-height:18px;color:#747b83;cursor:pointer}
-.lightbox_ext .fermer span,.loginbox .fermer span{display:inline-block;width:10px;height:10px;margin:0 0 0 3px;background:url(/medias/web/img/sprites/icos_petites.png) -11px -191px no-repeat}
+.lightbox_ext .fermer span,.loginbox .fermer span{display:inline-block;width:10px;height:10px;margin:0 0 0 3px;background:url(/medias/web/img/sprites/icos_petites.png)-11px -191px no-repeat}
 .lightbox_ext .fermer:hover,.loginbox .ferme:hover{color:#fff;text-decoration:none}
 .lightbox_ext .fermer:hover span,.loginbox .fermer:hover span{background-position:0 -191px}
 .loginbox .message{padding:10px;background:#eef1f5}
@@ -847,14 +847,14 @@ label i{font-style:normal;display:none}
 .loginbox #login_error_email{background:#f2dede;border:1px solid #c00;color:#c00;text-align:center}
 .loginbox .signup{float:left;width:180px;height:230px;padding:10px 40px 10px 15px;border-right:1px solid #fff;border-left:1px solid #e4e6e9;font-size:14px;line-height:140%}
 .loginbox .accroche{display:block;margin:20px 0 15px;color:#464f57}
-.loginbox .abonne_journal{position:relative;float:left;width:185px;height:235px;padding:10px 55px 10px 16px;font-size:14px;line-height:140%;background:url(/medias/web/img/elements_lm/login_box_journal.jpg) right 130px no-repeat;border-left:1px solid #e4e6e9}
+.loginbox .abonne_journal{position:relative;float:left;width:185px;height:235px;padding:10px 55px 10px 16px;font-size:14px;line-height:140%;background:url(/medias/web/img/elements_lm/login_box_journal.jpg)right 130px no-repeat;border-left:1px solid #e4e6e9}
 .loginbox .abonne_journal .btn,.loginbox .login_form .btn_abo{position:absolute;bottom:15px;left:16px}
 .loginbox .rmdp .btn{position:static;margin:15px 0}
 .loginbox #password_recover_box_email{width:300px}
 .rmdp{padding:0 15px}
 #barre_titre{background:#fff;text-align:center;padding:10px 0}
 #barre_titre .conteneur_haut{overflow:hidden}
-#barre_titre #logo{display:block;width:240px;height:42px;margin:16px auto 5px;background:url(/medias/web/img/elements_lm/logo_lm240x42.png) no-repeat;font-size:46px;text-indent:-9999px}
+#barre_titre #logo{display:block;width:240px;height:42px;margin:16px auto 5px;background:url(/medias/web/img/elements_lm/logo_lm240x42.png)no-repeat;font-size:46px;text-indent:-9999px}
 #barre_titre #logo.abonnes{background-position:0 -42px}
 #nav_principale,#nav_principale .conteneur_haut{background:#f8fafb}
 #nav_principale{border-top:2px solid #d2d6db}
@@ -864,9 +864,9 @@ label i{font-style:normal;display:none}
 .ombrelle.partenariats .tt_rubrique_ombrelle,.ombrelle.partenariats .tt_rubrique_ombrelle a{padding:0 4px 0 0;background-image:none;font-family:FetteEngschrift;text-transform:uppercase;font-size:55px;line-height:55px}
 .ombrelle.export_interne .tt_rubrique_ombrelle a,.ombrelle.partenariats .tt_rubrique_ombrelle a{color:#2e3942}
 .ombrelle.partenariats span{display:inline-block;padding:0 8px 0 0}
-.ombrelle .tt_rubrique_ombrelle,.ombrelle.style .tt_rubrique_ombrelle{display:inline-block;padding:0 0 0 67px;margin:25px 0 0;background:url(/medias/web/img/elements_lm/m54x44.png) 0 20% no-repeat;font-family:TheSerifOffice,georgia,serif;font-size:55px;line-height:55px;color:#2E3942;font-weight:400;letter-spacing:-.01em}
+.ombrelle .tt_rubrique_ombrelle,.ombrelle.style .tt_rubrique_ombrelle{display:inline-block;padding:0 0 0 67px;margin:25px 0 0;background:url(/medias/web/img/elements_lm/m54x44.png)0 20% no-repeat;font-family:TheSerifOffice,georgia,serif;font-size:55px;line-height:55px;color:#2E3942;font-weight:400;letter-spacing:-.01em}
 .ombrelle .tt_rubrique_ombrelle .obf,.ombrelle .tt_rubrique_ombrelle .obf:hover,.ombrelle .tt_rubrique_ombrelle a,.ombrelle .tt_rubrique_ombrelle h2 a:hover{color:#2E3942;text-decoration:none}
-.ombrelle.style .tt_rubrique_ombrelle{background:url(/medias/web/img/elements_lm/m59x44.png) 0 20% no-repeat}
+.ombrelle.style .tt_rubrique_ombrelle{background:url(/medias/web/img/elements_lm/m59x44.png)0 20% no-repeat}
 .ombrelle .tt_rubrique_ombrelle.max24,.ombrelle .tt_rubrique_ombrelle.max32,.ombrelle .tt_rubrique_ombrelle.max38{background-position:0 0;font-size:43px;line-height:57px}
 .ombrelle .tt_rubrique_ombrelle.max32,.ombrelle .tt_rubrique_ombrelle.max38{font-size:36px;line-height:61px}
 .ombrelle .tt_rubrique_ombrelle.max38{font-size:32px}
@@ -892,13 +892,13 @@ label i{font-style:normal;display:none}
 #nav .accueil{border-top-color:#a2a9ae}
 #nav .accueil:hover{border-top-color:#16212c;background:#2e3942}
 #nav .accueil a,#nav .accueil span{width:12px;height:23px;padding:9px 10px 0 9px}
-#nav .accueil .maison{display:inline-block;width:11px;height:10px;vertical-align:text-top;background:url(/medias/web/img/sprites/icos_petites.png) -29px -108px no-repeat;text-indent:-9999px}
+#nav .accueil .maison{display:inline-block;width:11px;height:10px;vertical-align:text-top;background:url(/medias/web/img/sprites/icos_petites.png)-29px -108px no-repeat;text-indent:-9999px}
 #nav .accueil:hover .maison{background-position:-29px -120px}
 #ariane_az{width:1000px;margin:0 auto}
 #ariane_az .obf,#ariane_az a{padding:0 9px;color:#000;white-space:nowrap}
 #ariane_az .suite_entrees{background:#f8f9fb;position:absolute;left:-9999px}
 #ariane_az .suite_entrees p{border-bottom:1px solid #eef1f5;line-height:33px;font-size:12px;font-weight:700}
-#nav_ariane{height:35px;overflow:hidden;background:url(/medias/web/img/sprites/sous_nav.png) left -630px}
+#nav_ariane{height:35px;overflow:hidden;background:url(/medias/web/img/sprites/sous_nav.png)left -630px}
 #nav_ariane ul{float:left;width:950px;overflow:hidden}
 #nav_ariane li{display:block;float:left}
 #nav_ariane a,#nav_ariane h1 span.obf{display:inline-block;height:23px;padding:12px 8px 0;font-size:1.2rem;line-height:100%;font-weight:700;white-space:nowrap}
@@ -977,7 +977,7 @@ label i{font-style:normal;display:none}
 .liste_reactions .reaction .btn{visibility:hidden;margin:5px 0 0}
 .liste_reactions .reaction:hover .btn{visibility:visible}
 .infobulle{position:relative}
-.liste_reactions .bulle{position:absolute;top:60%;left:-93%;z-index:10;width:170px;padding:11px 0 0;background:url(/medias/web/img/habillage/lightbox_sociaux_coche.png) center top no-repeat;display:none}
+.liste_reactions .bulle{position:absolute;top:60%;left:-93%;z-index:10;width:170px;padding:11px 0 0;background:url(/medias/web/img/habillage/lightbox_sociaux_coche.png)center top no-repeat;display:none}
 .infobulle:hover .bulle{display:inline-block}
 .liste_reactions .bulle span{display:block;-webkit-box-shadow:0 3px 2px 1px rgba(0,11,21,.2);-moz-box-shadow:0 3px 2px 1px rgba(0,11,21,.2);box-shadow:0 3px 2px 1px rgba(0,11,21,.2);border-radius:4px;padding:10px;background:#fff}
 .liste_reactions .references{font-weight:700}
@@ -989,7 +989,7 @@ label i{font-style:normal;display:none}
 .reaction_identifier .deja_abo .erreur{display:none;padding:7px 28px 7px 15px}
 .reaction_identifier .form{padding:10px 10px 10px 14px}
 .reaction_identifier .form p{clear:both}
-.conteneur_barre_outils .non_abo.classer,.reaction_identifier .non_abo{position:relative;float:left;width:233px;height:230px;padding:10px 10px 10px 14px;background:url(/medias/web/img/textes/daccord_pas_daccord.png) 16px 40px no-repeat;border-right:1px solid #fff}
+.conteneur_barre_outils .non_abo.classer,.reaction_identifier .non_abo{position:relative;float:left;width:233px;height:230px;padding:10px 10px 10px 14px;background:url(/medias/web/img/textes/daccord_pas_daccord.png)16px 40px no-repeat;border-right:1px solid #fff}
 .reaction_identifier .texte{margin:80px 0 15px}
 .reaction_identifier .mini-login{position:relative;float:right;width:275px;margin:0;padding:10px 0;height:230px;border-left:1px solid #e4e6e9}
 .reaction_identifier .mini-login .deja_abo{padding:0 10px 10px 14px}
@@ -1036,13 +1036,13 @@ label i{font-style:normal;display:none}
 .barre_outils .outil{float:left;padding:2px 6px 0;height:25px;color:#747B83}
 .barre_outils .partage{float:right;height:26px;margin:0;padding-left:10px;border-left:1px solid #eef1f5;color:#747b83}
 .barre_outils .partage+span{height:26px;vertical-align:middle}
-.barre_outils .reagir span{width:12px;height:11px;background:url(/medias/web/img/sprites/icos_petites.png) no-repeat;vertical-align:middle}
-.barre_outils .classer span{width:11px;height:11px;background:url(/medias/web/img/sprites/icos_petites.png) 0 -12px no-repeat;vertical-align:baseline}
+.barre_outils .reagir span{width:12px;height:11px;background:url(/medias/web/img/sprites/icos_petites.png)no-repeat;vertical-align:middle}
+.barre_outils .classer span{width:11px;height:11px;background:url(/medias/web/img/sprites/icos_petites.png)0 -12px no-repeat;vertical-align:baseline}
 .barre_outils .classer.actif span{background-position:-13px -12px}
-.barre_outils .imprimer span{width:12px;height:12px;background:url(/medias/web/img/sprites/icos_petites.png) 0 -25px no-repeat;vertical-align:baseline}
-.barre_outils .envoyer span{width:12px;height:10px;background:url(/medias/web/img/sprites/icos_petites.png) -13px -25px no-repeat;vertical-align:baseline}
+.barre_outils .imprimer span{width:12px;height:12px;background:url(/medias/web/img/sprites/icos_petites.png)0 -25px no-repeat;vertical-align:baseline}
+.barre_outils .envoyer span{width:12px;height:10px;background:url(/medias/web/img/sprites/icos_petites.png)-13px -25px no-repeat;vertical-align:baseline}
 .conteneur_barre_outils .reaction_identifier{margin:0 0 20px;border-bottom:3px solid #e9ecf0;border-top:none}
-.conteneur_barre_outils .non_abo.classer{background:url(/medias/web/img/textes/pas_le_temps_lire.png) 16px 40px no-repeat}
+.conteneur_barre_outils .non_abo.classer{background:url(/medias/web/img/textes/pas_le_temps_lire.png)16px 40px no-repeat}
 .conteneur_barre_outils p{margin:0}
 .article .fb-like{height:25px;overflow:hidden;opacity:0}
 .bloc_part .saisie{background-color:#f8f9fb;border:1px solid #b9c0c5;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;padding:2px 3px}
@@ -1102,7 +1102,7 @@ label i{font-style:normal;display:none}
 .services .bloc_part.gymglish .contenu.mot_mois .btn_fonce{bottom:16px;left:15px}
 .bloc_part.gymglish .contenu.mot_mois{bottom:42px;left:15px;height:143px}
 .bloc_part.gymglish .contenu.mot_mois .img{width:110px;float:right;margin:4px 0}
-.bloc_part.empruntis .contenu{padding:0 15px;background:url(/medias/web/img/partenaires/empruntis/stylo.jpg) no-repeat}
+.bloc_part.empruntis .contenu{padding:0 15px;background:url(/medias/web/img/partenaires/empruntis/stylo.jpg)no-repeat}
 .bloc_part.empruntis .contenu .texte{box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;width:190px;color:#16212c}
 .bloc_part.empruntis .contenu .texte strong{display:block;color:#16212c}
 .bloc_part.empruntis .contenu .texte .lien_chevron{display:block;font-weight:700;color:#16212c}
@@ -1173,7 +1173,7 @@ label i{font-style:normal;display:none}
 .col_droite .bloc_element .ligne_titre{display:block;overflow:hidden;position:relative;border-top:3px solid #16212c;border-bottom:1px solid #eef1f5;border-left:1px solid #eef1f5;background:#e9ecf0}
 .col_droite .bloc_element .titre{float:left;width:238px;padding:8px 16px 6px;border-right:1px solid #fff;background:#fafbfc}
 .col_droite .bloc_element .element:hover .titre{background:#e9ecf0}
-.col_droite .bloc_element .fleche{display:block;float:right;border-left:1px solid #e4e6e9;position:absolute;right:13px;top:33%;background:url(/medias/web/img/sprites/icos_petites.png) -1px -108px no-repeat;width:13px;height:22px}
+.col_droite .bloc_element .fleche{display:block;float:right;border-left:1px solid #e4e6e9;position:absolute;right:13px;top:33%;background:url(/medias/web/img/sprites/icos_petites.png)-1px -108px no-repeat;width:13px;height:22px}
 .col_droite .bloc_element .element:hover .fleche{background-position:-15px -108px}
 .contenu_bloc_droit{padding:7px 16px 10px;overflow:hidden}
 .contenu_bloc_droit .liste_chevron li{padding:8px 0 6px}
@@ -1192,10 +1192,10 @@ label i{font-style:normal;display:none}
 .col_droite .plus_partages .texte{float:left;width:190px;padding:0 10px 0 8px}
 .col_droite .sociaux .pictos{overflow:hidden;margin:10px 15px}
 .col_droite .sociaux .pictos span.text{float:left;width:130px;padding:0 15px 0 0;color:#464f57;line-height:120%}
-.col_droite .recherche_resultat_pres.bloc_base{background:url(/medias/web/img/evenementiel/presidentielle_2012/bg_recherche_elections_col_droite.png) center 0 no-repeat #0b0423;color:#fff}
+.col_droite .recherche_resultat_pres.bloc_base{background:url(/medias/web/img/evenementiel/presidentielle_2012/bg_recherche_elections_col_droite.png)center 0 no-repeat #0b0423;color:#fff}
 .col_droite .boite_recherche{background:0 0;padding:8px 16px 10px}
 .col_droite .recherche_resultat_pres.bloc_base .entete{border-top:0!important;border-bottom:0!important;padding-top:16px}
-.col_droite .recherche_resultat_pres .entete span{display:inline-block;height:30px;background:url(/medias/web/img/textes/elections/bulle_2012_39x27_bg_fonce.png) no-repeat;padding-left:50px}
+.col_droite .recherche_resultat_pres .entete span{display:inline-block;height:30px;background:url(/medias/web/img/textes/elections/bulle_2012_39x27_bg_fonce.png)no-repeat;padding-left:50px}
 .col_droite .recherche_resultat_pres .moteur_commune{width:274px}
 .col_droite .boite_recherche p{margin:8px 0;clear:both}
 .col_droite .boite_recherche .saisie{width:239px;float:right}
@@ -1226,17 +1226,17 @@ label i{font-style:normal;display:none}
 .bloc_je .annonce{display:block;padding:8px 9px;background:#2e3942;color:#fff}
 .bloc_je .annonce .intro{display:block;text-transform:uppercase;font-weight:700}
 .bloc_je .previsu .bt_blanc_gris_32{margin:20px 0 0}
-.bloc_je .tt_dossier_meilleur_monde{background:url(/medias/www/img/tit/tt_dossiers_meilleur_monde.png) left center no-repeat;display:block;width:250px;margin:0 9px;font-size:13px;color:#222;text-indent:-9999px}
+.bloc_je .tt_dossier_meilleur_monde{background:url(/medias/www/img/tit/tt_dossiers_meilleur_monde.png)left center no-repeat;display:block;width:250px;margin:0 9px;font-size:13px;color:#222;text-indent:-9999px}
 .bloc_je .centrer{color:#747b83}
 .bloc_couvs{position:relative;margin:10px auto 3px}
 .bloc_couvs a{cursor:pointer;display:block;width:208px;left:35px;height:145px;overflow:hidden;border:1px solid #e7e7e7;box-shadow:0 0 3px #e7e7e7;position:absolute}
 .bloc_couvs.bloc_1_couv{height:145px}
 .bloc_couvs .couv_petite{width:146px;height:74px}
-.bloc_couvs b{top:146px;display:block;width:280px;height:44px;background:url(/medias/www/img/plus_une_lemonde.png) left center no-repeat;position:relative}
+.bloc_couvs b{top:146px;display:block;width:280px;height:44px;background:url(/medias/www/img/plus_une_lemonde.png)left center no-repeat;position:relative}
 .bloc_couvs.bloc_2_couv{width:247px;height:185px}
 .bloc_couvs.bloc_2_couv a{left:0}
 .bloc_couvs.bloc_2_couv .couv_petite{left:auto;top:auto;right:0;bottom:0}
-.bloc_couvs.bloc_2_couv b{right:153px;top:153px;width:15px;height:15px;background:url(/medias/www/img/plus_une_lemonde.png) right center no-repeat;position:absolute}
+.bloc_couvs.bloc_2_couv b{right:153px;top:153px;width:15px;height:15px;background:url(/medias/www/img/plus_une_lemonde.png)right center no-repeat;position:absolute}
 .bloc_couvs.bloc_3_couv{width:280px;height:278px}
 .bloc_couvs.bloc_3_couv .couv_petite{width:125px;height:86px;right:auto;top:auto;left:0;bottom:0}
 .bloc_couvs.bloc_3_couv .couv_petite.petite_1{left:auto;right:0}
@@ -1266,8 +1266,8 @@ label i{font-style:normal;display:none}
 .conteneur_lives .live.petit .bandeau:hover{background-color:#fe2f2f;background-position:0 -25px;-webkit-transition:background-position .06s linear;-moz-transition:background-position .06s linear;-ms-transition:background-position .06s linear;-o-transition:background-position .06s linear;transition:background-position .06s linear;cursor:pointer}
 .conteneur_lives .live .bandeau .titre{float:left;padding:0 7px;width:220px;font-family:arial,sans-serif;font-size:13px;font-weight:700}
 .conteneur_lives .lives .chrome .titre{float:left;width:230px;height:25px;overflow:hidden;color:#fff;text-align:left;font-weight:700;font-family:arial,sans-serif;font-size:13px;line-height:25px}
-.conteneur_lives .lives .chrome .titre .tt_live{display:inline-block;width:20px;height:10px;margin:0 5px 0 16px;text-indent:-9999px;background:url(/medias/web/img/sprites/icos_live.png) -162px 0}
-.conteneur_lives .lives .chrome{background:url(/medias/web/img/textes/tt_live_bas.png) no-repeat #d50303;height:25px;line-height:23px;padding:0 5px 0 40px;display:none;width:283px;cursor:pointer}
+.conteneur_lives .lives .chrome .titre .tt_live{display:inline-block;width:20px;height:10px;margin:0 5px 0 16px;text-indent:-9999px;background:url(/medias/web/img/sprites/icos_live.png)-162px 0}
+.conteneur_lives .lives .chrome{background:url(/medias/web/img/textes/tt_live_bas.png)no-repeat #d50303;height:25px;line-height:23px;padding:0 5px 0 40px;display:none;width:283px;cursor:pointer}
 .conteneur_lives .lives.grand .chrome{background-color:#000b15}
 .conteneur_lives.popuped .lives .chrome{cursor:default}
 .conteneur_lives .live .bandeau .voir,.conteneur_lives .lives .chrome a{display:inline-block;text-decoration:none;float:right;margin:4px 0 0 5px;height:15px;width:14px}
@@ -1339,7 +1339,7 @@ label i{font-style:normal;display:none}
 #nav .international:hover{background:#0386c3;border-top-color:#026b9C}
 #nav .international:hover a{border-color:#0386c3}
 #nav.international,#nav.international li{border-top:3px solid #0386c3}
-#nav_ariane.international .ariane{background:url(/medias/web/img/sprites/sous_nav.png) right 0 no-repeat}
+#nav_ariane.international .ariane{background:url(/medias/web/img/sprites/sous_nav.png)right 0 no-repeat}
 #nav_ariane.international .ariane>a{color:#68b6db}
 .international #ariane_az .obf:hover,.international #ariane_az a:hover,.international .couleur_rubrique,.international .jour_parution,.international .tt_rubrique,.ombrelle.international .tt_rubrique_ombrelle,.ombrelle.international h2 .obf,.ombrelle.international h2 .obf:hover{color:#0386c3}
 .global.politique{border-top:3px solid #1f0d67}
@@ -1349,7 +1349,7 @@ label i{font-style:normal;display:none}
 #nav.accueil .politique{border-top-color:#1f0d67}
 #nav .politique:hover a{border-color:#1f0d67}
 #nav.politique,#nav.politique li{border-top:3px solid #1f0d67}
-#nav_ariane.politique .ariane{background:url(/medias/web/img/sprites/sous_nav.png) right -35px no-repeat}
+#nav_ariane.politique .ariane{background:url(/medias/web/img/sprites/sous_nav.png)right -35px no-repeat}
 #nav_ariane.politique .ariane>a{color:#796ea4}
 .ombrelle.politique .tt_rubrique_ombrelle,.ombrelle.politique h2 .obf,.ombrelle.politique h2 .obf:hover,.politique #ariane_az .obf:hover,.politique #ariane_az a:hover,.politique .couleur_rubrique,.politique .tt_rubrique{color:#1f0d67}
 .global.societe{border-top:3px solid #d50303}
@@ -1358,7 +1358,7 @@ label i{font-style:normal;display:none}
 #nav .societe:hover{background:#d50303;border-top-color:#AA0202}
 #nav .societe:hover a,#nav.accueil .societe{border-color:#d50303}
 #nav.societe,#nav.societe li{border-top:3px solid #d50303}
-#nav_ariane.societe .ariane{background:url(/medias/web/img/sprites/sous_nav.png) right -70px no-repeat}
+#nav_ariane.societe .ariane{background:url(/medias/web/img/sprites/sous_nav.png)right -70px no-repeat}
 #nav_ariane.societe .ariane>a{color:#fe9b9b}
 .ombrelle.societe .tt_rubrique_ombrelle,.ombrelle.societe h2 .obf,.ombrelle.societe h2 .obf:hover,.societe #ariane_az .obf:hover,.societe #ariane_az a:hover,.societe .couleur_rubrique,.societe .jour_parution,.societe .tt_rubrique{color:#d50303}
 .global.economie{border-top:3px solid #fe2f2f}
@@ -1367,7 +1367,7 @@ label i{font-style:normal;display:none}
 #nav .economie:hover{background:#fe2f2f;border-top-color:#CB2626}
 #nav .economie:hover a,#nav.accueil .economie{border-color:#fe2f2f}
 #nav.economie,#nav.economie li{border-top:3px solid #fe2f2f}
-#nav_ariane.economie .ariane{background:url(/medias/web/img/sprites/sous_nav.png) right -105px no-repeat}
+#nav_ariane.economie .ariane{background:url(/medias/web/img/sprites/sous_nav.png)right -105px no-repeat}
 #nav_ariane.economie .ariane>a{color:#ffacac}
 #nav_ariane.economie .ariane .obf:hover,#nav_ariane.economie .ariane a:hover{color:#fff}
 .economie #ariane_az .obf:hover,.economie #ariane_az a:hover,.economie .couleur_rubrique,.economie .jour_parution,.economie .tt_rubrique,.ombrelle.economie .tt_rubrique_ombrelle,.ombrelle.economie h2 .obf,.ombrelle.economie h2 .obf:hover{color:#fe2f2f}
@@ -1378,7 +1378,7 @@ label i{font-style:normal;display:none}
 #nav.culture,#nav.culture li{border-top:3px solid #C20447}
 #nav .culture:hover a{border-color:#f20559}
 #nav.accueil .culture{border-top-color:#f20559}
-#nav_ariane.culture .ariane{background:url(/medias/web/img/sprites/sous_nav.png) right -140px no-repeat}
+#nav_ariane.culture .ariane{background:url(/medias/web/img/sprites/sous_nav.png)right -140px no-repeat}
 #nav_ariane.culture .ariane>a{color:#fa9bbd}
 .culture #ariane_az .obf:hover,.culture #ariane_az a:hover,.culture .couleur_rubrique,.culture .jour_parution,.culture .tt_rubrique,.ombrelle.culture .tt_rubrique_ombrelle,.ombrelle.culture h2 .obf,.ombrelle.culture h2 .obf:hover{color:#f20559}
 .global.debats{border-top:3px solid #2e3942}
@@ -1387,7 +1387,7 @@ label i{font-style:normal;display:none}
 #nav .debats:hover{background:#2e3942;border-top-color:#16212C}
 #nav,#nav li{border-top:3px solid #2e3942}
 #nav li:hover a{border-color:#2e3942}
-#nav_ariane .ariane{background:url(/medias/web/img/sprites/sous_nav.png) right -175px no-repeat}
+#nav_ariane .ariane{background:url(/medias/web/img/sprites/sous_nav.png)right -175px no-repeat}
 #ariane_az .obf:hover,#ariane_az a:hover,.couleur_rubrique,.jour_parution,.ombrelle .tt_rubrique_ombrelle,.ombrelle h2 .obf,.ombrelle h2 .obf:hover,.tt_rubrique{color:#2e3942}
 .global.education{border-top:3px solid #ff6e17}
 .global.education .entete_deroule{color:#ff6e17}
@@ -1395,7 +1395,7 @@ label i{font-style:normal;display:none}
 #nav .education:hover{background:#ff6e17;border-top-color:#16212C}
 #nav.education,#nav.education li{border-top:3px solid #ff6e17}
 #nav .education:hover a,#nav.accueil .education{border-color:#ff6e17}
-#nav_ariane.education .ariane{background:url(/medias/web/img/sprites/sous_nav.png) right -490px no-repeat}
+#nav_ariane.education .ariane{background:url(/medias/web/img/sprites/sous_nav.png)right -490px no-repeat}
 #nav_ariane.education .ariane>a{color:#f79b6e}
 .education #ariane_az .obf:hover,.education #ariane_az a:hover,.education .couleur_rubrique,.education .jour_parution,.education .tt_rubrique,.ombrelle.education .tt_rubrique_ombrelle,.ombrelle.education h2 .obf,.ombrelle.education h2 .obf:hover{color:#ff6e17}
 .education .col_droite .bloc_base .entete.theme{background:#ff6e17;color:#fff;border-top:none}
@@ -1407,7 +1407,7 @@ label i{font-style:normal;display:none}
 #nav .planete:hover{background:#30932e;border-top-color:#16212C}
 #nav.planete,#nav.planete li{border-top:3px solid #30932e}
 #nav .planete:hover a,#nav.accueil .planete{border-color:#30932e}
-#nav_ariane.planete .ariane{background:url(/medias/web/img/sprites/sous_nav.png) right -420px no-repeat}
+#nav_ariane.planete .ariane{background:url(/medias/web/img/sprites/sous_nav.png)right -420px no-repeat}
 #nav_ariane.planete .ariane>a{color:#a3c383}
 .ombrelle.planete .tt_rubrique_ombrelle,.ombrelle.planete h2 .obf,.ombrelle.planete h2 .obf:hover,.planete #ariane_az .obf:hover,.planete #ariane_az a:hover,.planete .couleur_rubrique,.planete .jour_parution,.planete .tt_rubrique{color:#30932e}
 .global.sante{border-top:3px solid #189494}
@@ -1416,7 +1416,7 @@ label i{font-style:normal;display:none}
 #nav .sante:hover{background:#189494;border-top-color:#16212C}
 #nav.sante,#nav.sante li{border-top:3px solid #189494}
 #nav .sante:hover a,#nav.accueil .sante{border-color:#189494}
-#nav_ariane.sante .ariane{background:url(/medias/web/img/sprites/sous_nav.png) right -455px no-repeat}
+#nav_ariane.sante .ariane{background:url(/medias/web/img/sprites/sous_nav.png)right -455px no-repeat}
 #nav_ariane.sante .ariane>a{color:#83bbc3}
 .ombrelle.sante .tt_rubrique_ombrelle,.ombrelle.sante h2 .obf,.ombrelle.sante h2 .obf:hover,.sante #ariane_az .obf:hover,.sante #ariane_az a:hover,.sante .couleur_rubrique,.sante .jour_parution,.sante .tt_rubrique{color:#189494}
 .global.sport{border-top:3px solid #6faa12}
@@ -1426,7 +1426,7 @@ label i{font-style:normal;display:none}
 #nav .sport:hover{background:#6faa12;border-top-color:#59880E}
 #nav .sport:hover a{border-color:#6faa12}
 #nav.sport,#nav.sport li,body.sport nav#nav,body.sport nav#nav li{border-top:3px solid #6faa12}
-#nav_ariane.sport .ariane{background:url(/medias/web/img/sprites/sous_nav.png) right -210px no-repeat}
+#nav_ariane.sport .ariane{background:url(/medias/web/img/sprites/sous_nav.png)right -210px no-repeat}
 #nav_ariane.sport .ariane>a{color:#b1e264}
 .ombrelle.sport .tt_rubrique_ombrelle,.ombrelle.sport h2 .obf,.ombrelle.sport h2 .obf:hover,.sport #ariane_az .obf:hover,.sport #ariane_az a:hover,.sport .couleur_rubrique,.sport .jour_parution,.sport .tt_rubrique{color:#6faa12}
 .global.sciences{border-top:3px solid #0cb4ae}
@@ -1436,7 +1436,7 @@ label i{font-style:normal;display:none}
 #nav .sciences:hover{background:#0cb4ae;border-top-color:#0A908B}
 #nav .sciences:hover a{border-color:#0cb4ae}
 #nav.sciences,#nav.sciences li{border-top:3px solid #0cb4ae}
-#nav_ariane.sciences .ariane{background:url(/medias/web/img/sprites/sous_nav.png) right -245px no-repeat}
+#nav_ariane.sciences .ariane{background:url(/medias/web/img/sprites/sous_nav.png)right -245px no-repeat}
 #nav_ariane.sciences .ariane>a{color:#9ee1df}
 .ombrelle.sciences .tt_rubrique_ombrelle,.ombrelle.sciences h2 .obf,.ombrelle.sciences h2 .obf:hover,.sciences #ariane_az .obf:hover,.sciences #ariane_az a:hover,.sciences .jour_parution,.sciences .tt_rubrique,.sicences .couleur_rubrique{color:#0cb4ae}
 .global.techno{border-top:3px solid #006169}
@@ -1446,7 +1446,7 @@ label i{font-style:normal;display:none}
 #nav .techno:hover{background:#006169;border-top-color:#004E54}
 #nav .techno:hover a{border-color:#006169}
 #nav.techno,#nav.techno li{border-top:3px solid #006169}
-#nav_ariane.techno .ariane{background:url(/medias/web/img/sprites/sous_nav.png) right -280px no-repeat}
+#nav_ariane.techno .ariane{background:url(/medias/web/img/sprites/sous_nav.png)right -280px no-repeat}
 #nav_ariane.techno .ariane>a{color:#89c1c6}
 .ombrelle.techno .tt_rubrique_ombrelle,.ombrelle.techno h2 .obf,.ombrelle.techno h2 .obf:hover,.techno #ariane_az .obf:hover,.techno #ariane_az a:hover,.techno .couleur_rubrique,.techno .jour_parution,.techno .tt_rubrique{color:#006169}
 .global.style{border-top:3px solid #020818}
@@ -1456,7 +1456,7 @@ label i{font-style:normal;display:none}
 #nav .style:hover{background:#020818;border-top-color:#050F31}
 #nav .style:hover a{border-color:#020818}
 #nav.style,#nav.style li{border-top:3px solid #020818}
-#nav_ariane.style .ariane{background:url(/medias/web/img/sprites/sous_nav.png) right -315px no-repeat}
+#nav_ariane.style .ariane{background:url(/medias/web/img/sprites/sous_nav.png)right -315px no-repeat}
 #nav_ariane.style .ariane>a{color:#6a718b}
 .ombrelle.style .tt_rubrique_ombrelle,.ombrelle.style h2 .obf,.ombrelle.style h2 .obf:hover,.style .couleur_rubrique,.style .jour_parution,.style .tt_rubrique{color:#020818}
 .style #ariane_az .obf:hover,.style #ariane_az a:hover{color:#3a4971}
@@ -1467,7 +1467,7 @@ label i{font-style:normal;display:none}
 #nav .vous:hover{background:#820250;border-top-color:#680240}
 #nav .vous:hover a{border-color:#820250}
 #nav.vous,#nav.vous li{border-top:3px solid #820250}
-#nav_ariane.vous .ariane{background:url(/medias/web/img/sprites/sous_nav.png) right -350px no-repeat}
+#nav_ariane.vous .ariane{background:url(/medias/web/img/sprites/sous_nav.png)right -350px no-repeat}
 #nav_ariane.vous .ariane>a{color:#fa9bbd}
 .ombrelle.vous .tt_rubrique_ombrelle,.ombrelle.vous h2 .obf,.ombrelle.vous h2 .obf:hover,.vous #ariane_az .obf:hover,.vous #ariane_az a:hover,.vous .couleur_rubrique,.vous .jour_parution,.vous .tt_rubrique{color:#820250}
 .bg_abo{background:#ffd500}
@@ -1479,31 +1479,31 @@ label i{font-style:normal;display:none}
 #nav .abonnes:hover a{border-color:#ffd500}
 #nav.abonnes,#nav.abonnes li{border-top:3px solid #ffd500}
 #nav .abonnes{float:none;overflow:hidden}
-#nav_ariane.abonnes .ariane{background:url(/medias/web/img/sprites/sous_nav.png) right -525px no-repeat}
+#nav_ariane.abonnes .ariane{background:url(/medias/web/img/sprites/sous_nav.png)right -525px no-repeat}
 #nav_ariane.abonnes .ariane>a{color:#ca0}
 .ombrelle.vous .tt_rubrique_ombrelle,.ombrelle.vous h2 .obf,.ombrelle.vous h2 .obf:hover,.vous #ariane_az .obf:hover,.vous #ariane_az a:hover,.vous .jour_parution,.vous .tt_rubrique{color:#820250}
 .abonnes #ariane_az .obf:hover,.abonnes #ariane_az a:hover,.abonnes .couleur_rubrique,.abonnes .jour_parution,.abonnes .tt_rubrique,.ombrelle.abonnes .tt_rubrique_ombrelle,.ombrelle.abonnes h2 .obf,.ombrelle.abonnes h2 .obf:hover{color:#ffd500}
 #ariane_az .ariane .obf:hover,#ariane_az .ariane a:hover,#nav_ariane .ariane.actif a,#nav_ariane .ariane.actif span{color:#fff}
 .global.presidentielle{border-top:0}
-.global.presidentielle .entete_deroule,.global.presidentielle .entete_deroule:hover{background:url(/medias/web/img/textes/elections/bandeau_deroule_presidentielles2012.png) no-repeat;text-indent:-9999px}
+.global.presidentielle .entete_deroule,.global.presidentielle .entete_deroule:hover{background:url(/medias/web/img/textes/elections/bandeau_deroule_presidentielles2012.png)no-repeat;text-indent:-9999px}
 .global.presidentielle .entete_deroule:hover{background-position:0 -33px}
 .titre_bulle_2012{color:#d50303}
 .bulle_2012_39x27{display:inline-block;width:39px;height:27px;background:url(/medias/web/img/textes/elections/bulle_2012_39x27.png)}
 .bulle_2012_73x51{display:inline-block;width:73px;height:51px;margin-left:4px;text-indent:-9999px;vertical-align:bottom;background:url(/medias/web/img/textes/elections/bulle_2012_73x51.png)}
-.deroule_fleuve .logo_annee_france{height:76px;padding:10px 0 0 115px;background:url(/medias/web/img/habillage/logo_annee_france.png) left top no-repeat}
-.deroule_fleuve .carte_annee_france{padding-right:204px;height:226px;margin-bottom:15px;background:url(/medias/web/img/habillage/carte_annee_france.jpg) right top no-repeat}
+.deroule_fleuve .logo_annee_france{height:76px;padding:10px 0 0 115px;background:url(/medias/web/img/habillage/logo_annee_france.png)left top no-repeat}
+.deroule_fleuve .carte_annee_france{padding-right:204px;height:226px;margin-bottom:15px;background:url(/medias/web/img/habillage/carte_annee_france.jpg)right top no-repeat}
 .deroule_fleuve .carte_annee_france a{display:block;font-size:11px;font-weight:700;line-height:.96rem;margin-bottom:1.7rem;margin-left:4px}
 .col_droite .alerte_election{display:block;width:312px;height:48px;background:url(/medias/web/img/textes/elections/tetiere-bloc-formulaire-alerte.png);text-indent:-9999px}
 .col_droite .erreur{display:block;width:292px}
 #alerte_election_coldroite .conteneur_autocompletion,.col_droite .inscription_alerte_election .saisie{width:272px}
 #alerte_election_coldroite .contenu_bloc_droit{overflow:visible}
-.boite_recherche{background:url(/medias/web/img/evenementiel/presidentielle_2012/bg_recherche_elections.png) center 0 no-repeat #f8f9fb;overflow:visible;padding:16px 16px 10px;color:#fff}
+.boite_recherche{background:url(/medias/web/img/evenementiel/presidentielle_2012/bg_recherche_elections.png)center 0 no-repeat #f8f9fb;overflow:visible;padding:16px 16px 10px;color:#fff}
 .boite_recherche .bord_double_gris_blanc{margin:0 4px;display:inline-block;line-height:20px;font-weight:700}
 .bord_top3_politique .boite_recherche input:first-child{width:265px}
 .boite_recherche .bord_double_gris_blanc span{padding:0 3px}
 .bord_top3_politique select{width:175px}
 .boite_recherche .conteneur_autocompletion .ui-state-hover{font-weight:700}
-.boite_recherche .txt15_120{background:url(/medias/web/img/textes/elections/bulle_2012_39x27_bg_fonce.png) no-repeat;padding-left:50px;height:30px;line-height:26px}
+.boite_recherche .txt15_120{background:url(/medias/web/img/textes/elections/bulle_2012_39x27_bg_fonce.png)no-repeat;padding-left:50px;height:30px;line-height:26px}
 .boite_recherche strong{display:inline-block}
 .boite_inline .boite_recherche>p,.une_edito .boite_recherche>p{display:inline}
 .une_edito .grid_12 .boite_recherche>p{display:block;margin:5px 0 0}
@@ -1595,7 +1595,7 @@ img.spacer{width:1px;height:1px}
 #header-liberation .header-base .sites-info-search .info span{display:block;color:grey;font-size:11.2px;font-family:Arial,Verdana,sans-serif;padding-top:9px}
 #header-liberation .header-base .sites-info-search .search{display:block;width:278px;height:22px;border:1px solid grey}
 #header-liberation .header-base .sites-info-search .search input[type=text]{border:0;color:grey;height:22px;width:220px;padding:0 5px}
-#header-liberation .header-base .sites-info-search .search input[type=submit]{background:url(http://s0.libe.com/libe/img/common/_sprites_header/header.png?df8de01457fa) 0 -32px no-repeat;display:block;float:right;width:29px;height:22px;border:0}
+#header-liberation .header-base .sites-info-search .search input[type=submit]{background:url(http://s0.libe.com/libe/img/common/_sprites_header/header.png?df8de01457fa)0 -32px no-repeat;display:block;float:right;width:29px;height:22px;border:0}
 #header-liberation .header-base .links h2{font-weight:400;text-transform:uppercase;font-size:11px;height:16px}
 #header-liberation .header-base .links ul li{font-family:Arial,Verdana,sans-serif;font-size:11.5px}
 #header-liberation .header-base .links ul li a{color:grey}
@@ -1714,12 +1714,12 @@ body.iframe{padding-top:0}
 .site-liberation #header-liberation h1,.site-liberation #header-liberation h2{font-family:Verdana,Arial,Helvetica,sans-serif}
 .site-liberation .hot-topics{display:block;clear:both;margin:14px 10px 0;padding:14px 0;font-size:11px}
 .site-liberation .hot-topics h1{border-right:1px dotted;float:left;margin:0 0 0 21px;padding:0 21px 0 0;text-transform:uppercase;font-size:20px}
-.site-liberation .hot-topics h5{float:left;margin:0 0 0 21px;padding:5px 21px 5px 0;background:url(http://s0.libe.com/libe/img/common/bg-puce-losange.png?099dfb8021ab) center right no-repeat;text-transform:uppercase;font-size:12px}
+.site-liberation .hot-topics h5{float:left;margin:0 0 0 21px;padding:5px 21px 5px 0;background:url(http://s0.libe.com/libe/img/common/bg-puce-losange.png?099dfb8021ab)center right no-repeat;text-transform:uppercase;font-size:12px}
 .site-liberation .hot-topics ul{float:left;margin:-1px 0 0 7px}
 .site-liberation .hot-topics li{display:block;float:left;padding:3px 7px 5px;margin:3px 10px 3px 0}
 #header-liberation .header-base{border-top:1px solid #e0e0e0}
 #header-liberation .header-base .digitalpaper,#header-liberation .header-base .home,#header-liberation .header-base .links,#header-liberation .header-base .sites-info-search{height:120px}
-#header-liberation .header-base .home .logo{background:url(http://s0.libe.com/libe/img/common/logo-liberation-150.png?f613aa3caae2) no-repeat;width:150px;height:55px;margin-top:33px}
+#header-liberation .header-base .home .logo{background:url(http://s0.libe.com/libe/img/common/logo-liberation-150.png?f613aa3caae2)no-repeat;width:150px;height:55px;margin-top:33px}
 #header-liberation .header-base .links{display:block;width:280px;height:110px;padding-top:10px}
 #header-liberation .header-base .links .lnk1,#header-liberation .header-base .links .lnk2{float:left}
 #header-liberation .header-base .links .lnk1{position:relative;width:123px}
@@ -1916,8 +1916,8 @@ body.auth-unlogged #core-liberation .form-monlibe-unlogged form{opacity:.3;-ms-f
 .col-part .block .follow-libe .fb p,.col-part .block .follow-libe .nv-rss p,.col-part .block .follow-libe .twitter p{font-size:10px}
 .col-part .block .follow-libe .twitter p{padding:0 5px 0 10px}
 .col-part .block .follow-libe .nv-rss a.nv,.col-part .block .follow-libe .nv-rss a.rss{display:inline-block;height:18px;padding:2px 0 0 23px}
-.col-part .block .follow-libe .nv-rss a.rss{background:url(http://s0.libe.com/libe/img/common/ico-rss.jpg?e5d7b4c9c034) 0 1px no-repeat}
-.col-part .block .follow-libe .nv-rss a.nv{background:url(http://s0.libe.com/libe/img/common/ico-netvibes.jpg?f74e57884286) 0 1px no-repeat;padding-right:3px}
+.col-part .block .follow-libe .nv-rss a.rss{background:url(http://s0.libe.com/libe/img/common/ico-rss.jpg?e5d7b4c9c034)0 1px no-repeat}
+.col-part .block .follow-libe .nv-rss a.nv{background:url(http://s0.libe.com/libe/img/common/ico-netvibes.jpg?f74e57884286)0 1px no-repeat;padding-right:3px}
 .col-part .block .follow-libe img.clear{display:block;margin-top:5px}
 .col-part .block .follow-libe img.visual{margin-top:7px}
 .block-basic-rounded{margin-bottom:20px}
@@ -1977,7 +1977,7 @@ body.auth-unlogged #core-liberation .form-monlibe-unlogged form{opacity:.3;-ms-f
 #core-liberation .block-comments .comment_level_0>.comment_outer,#core-liberation .flat-comments .comment>.comment_outer{margin-left:-1px;border:1px solid;border-top:none}
 #core-liberation .block-comments .block-content .detail_comment{border-top:1px solid;margin-top:-1px}
 #core-liberation .block-comments .block-content .detail_comment>.comment_outer{margin-left:-1px;border:1px solid;border-top:none}
-#core-liberation .block-comments .block-content .comment_selected>.comment_outer .icon{position:absolute;right:0;top:0;display:block;width:28px;height:25px;background:url(http://s0.libe.com/libe/img/common/_sprites_icons/icons.png?9914d0d70a49) -59px -36px no-repeat}
+#core-liberation .block-comments .block-content .comment_selected>.comment_outer .icon{position:absolute;right:0;top:0;display:block;width:28px;height:25px;background:url(http://s0.libe.com/libe/img/common/_sprites_icons/icons.png?9914d0d70a49)-59px -36px no-repeat}
 #core-liberation .block-comments .block-content .comment_selected>.comment_outer .meta .details,#core-liberation .block-comments .block-content .comment_selected>.comment_outer .meta .note,#core-liberation .block-comments .block-content .comment_selected>.comment_outer .meta .who{padding-right:35px}
 #core-liberation .block-comments .block-content .comment_draft>.comment_outer{background-image:url(http://s0.libe.com/libe/img/common/bg-comment-draft.png?4158f727c626)}
 #core-liberation .block-comments .block-content .comment_collapsed>.comment_content>*,#core-liberation .block-comments .block-content .comment_collapsed>.visual{display:none}
@@ -1997,10 +1997,10 @@ body.auth-unlogged #core-liberation .form-monlibe-unlogged form{opacity:.3;-ms-f
 #core-liberation .block-comments .block-content .comment_reply_links .comment_flag:hover{text-decoration:none}
 #core-liberation .block-comments .block-content .comment_reply_links .comment_reply{display:none;float:right;padding:5px 10px 7px;border-radius:5px;-moz-border-radius:5px;-webkit-border-radius:5px}
 #core-liberation .block-comments .block-content .comment_reply_links .comment_reply:hover{text-decoration:none}
-#core-liberation .block-comments .block-content .comment_libe>.comment_outer .meta .icon{position:absolute;right:0;top:0;display:block;width:36px;height:13px;background:url(http://s0.libe.com/libe/img/common/_sprites_icons/icons.png?9914d0d70a49) 0 -84px no-repeat}
+#core-liberation .block-comments .block-content .comment_libe>.comment_outer .meta .icon{position:absolute;right:0;top:0;display:block;width:36px;height:13px;background:url(http://s0.libe.com/libe/img/common/_sprites_icons/icons.png?9914d0d70a49)0 -84px no-repeat}
 #core-liberation .block-comments .block-content .comment_libe>.comment_outer .meta .details,#core-liberation .block-comments .block-content .comment_libe>.comment_outer .meta .note,#core-liberation .block-comments .block-content .comment_libe>.comment_outer .meta .who{padding-right:41px}
 #core-liberation .block-comments .block-content .is_removed>.comment_outer{padding:3px 8px 5px}
-#core-liberation .block-comments .block-content .is_removed>.comment_outer .icon{float:left;display:block;width:12px;height:11px;margin:3px 8px 0 0;background:url(http://s0.libe.com/libe/img/common/_sprites_icons/icons.png?9914d0d70a49) no-repeat}
+#core-liberation .block-comments .block-content .is_removed>.comment_outer .icon{float:left;display:block;width:12px;height:11px;margin:3px 8px 0 0;background:url(http://s0.libe.com/libe/img/common/_sprites_icons/icons.png?9914d0d70a49)no-repeat}
 #core-liberation .block-comments .comment_replies{padding:10px;display:none;border-bottom:1px solid}
 #core-liberation .block-comments .comment_cutoff,#core-liberation .block-usercomments .comment_replies{display:block}
 #core-liberation .block-usercomments .noreplies{display:none}
@@ -2023,17 +2023,17 @@ a.god:hover{background:#3c3c3c;color:#fff;text-decoration:none}
 #bar-liberation .other .god a{padding:5px;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}
 #bar-liberation .other .god a:hover{background-color:#ff0;color:#000}
 #bar-liberation .god .godenabled a{background:#3c3c3c;color:#fff}
-#bar-liberation .god a.godenter{background:url(http://s0.libe.com/libe/img/common/icon_godenter.png?9ffa63824b5c) center center no-repeat #fff}
-#bar-liberation .god a.godquit{background:url(http://s0.libe.com/libe/img/common/icon_godquit.png?a59104f30cfb) center center no-repeat #000}
-#bar-liberation .god a.godquit:hover{background:url(http://s0.libe.com/libe/img/common/icon_godenter.png?9ffa63824b5c) center center no-repeat #ff0}
-#bar-liberation .god a.jumptoadmin{background:url(http://s0.libe.com/back/img/icon_home.png?c1de55b52ccc) center center no-repeat #fff}
-#bar-liberation .god a.jumptoedit{background:url(http://s0.libe.com/back/img/icon_changelink.png?4a31d309d5db) center center no-repeat #fff}
+#bar-liberation .god a.godenter{background:url(http://s0.libe.com/libe/img/common/icon_godenter.png?9ffa63824b5c)center center no-repeat #fff}
+#bar-liberation .god a.godquit{background:url(http://s0.libe.com/libe/img/common/icon_godquit.png?a59104f30cfb)center center no-repeat #000}
+#bar-liberation .god a.godquit:hover{background:url(http://s0.libe.com/libe/img/common/icon_godenter.png?9ffa63824b5c)center center no-repeat #ff0}
+#bar-liberation .god a.jumptoadmin{background:url(http://s0.libe.com/back/img/icon_home.png?c1de55b52ccc)center center no-repeat #fff}
+#bar-liberation .god a.jumptoedit{background:url(http://s0.libe.com/back/img/icon_changelink.png?4a31d309d5db)center center no-repeat #fff}
 #mainContent .god{font-size:10px;padding:6px;border-radius:2px;-moz-border-radius:4px;-webkit-border-radius:4px}
 #core-liberation .block-partnership .block-content img.visual{display:block;float:left;width:140px;margin-top:4px;margin-bottom:10px}
 #core-liberation .block-partnership .block-content h4{font-family:Verdana,sans-serif;font-size:12px;font-weight:700;margin:0 0 11px 150px}
 #core-liberation .block-partnership .block-content p{margin:0 0 10px 154px}
 #core-liberation .block-partnership .block-content ul{clear:both;margin:10px 0 0}
-#core-liberation .block-partnership .block-content a.arrow,#core-liberation .block-partnership .block-content ul li a{background:url(http://s0.libe.com/libe/img/common/ico-lnk-arrow-red.gif?feba6ff926a7) 0 4px no-repeat;padding-left:15px}
+#core-liberation .block-partnership .block-content a.arrow,#core-liberation .block-partnership .block-content ul li a{background:url(http://s0.libe.com/libe/img/common/ico-lnk-arrow-red.gif?feba6ff926a7)0 4px no-repeat;padding-left:15px}
 #core-liberation .block-pager-labo{padding:14px}
 #core-liberation .block-pager-labo .block-content,#core-liberation .block-pager-labo .block-top{margin-bottom:14px}
 #core-liberation .block-pager-labo .list li{margin-bottom:0}
@@ -2048,7 +2048,7 @@ a.god:hover{background:#3c3c3c;color:#fff;text-decoration:none}
 #core-liberation .w29unit .block-pager-labo .list img.visual{width:252px;height:142px}
 #core-liberation .col .block-pager-labo .list li.new-line,#core-liberation .col .block-pager-labo .list li:first-child{margin-left:0}
 #core-liberation .block-podcast .block-content p.note{font-size:10px}
-#core-liberation .block-podcast .block-content p.logo-pc{background:url(http://s0.libe.com/libe/img/common/bg-podcast.png?bc9501afa40e) left center no-repeat;padding:0 0 0 85px}
+#core-liberation .block-podcast .block-content p.logo-pc{background:url(http://s0.libe.com/libe/img/common/bg-podcast.png?bc9501afa40e)left center no-repeat;padding:0 0 0 85px}
 #core-liberation .block-podcast .block-content p{margin-bottom:10px}
 #core-liberation .block-podcast .block-content .lnk-podcast p{font-size:12px;margin-bottom:5px;text-align:right;text-decoration:underline;font-weight:700}
 #core-liberation .block-podcast .block-content .lnk-podcast ul{display:block;height:20px}
@@ -2092,7 +2092,7 @@ a.god:hover{background:#3c3c3c;color:#fff;text-decoration:none}
 #core-liberation .block-np .from ul li.r{width:133px;float:right;text-align:left}
 #core-liberation .block-np .from ul li img.visual{display:block;height:148px;border:1px solid}
 .w11unit .block-np .from .btn-read-digitalpaper a,.w11unit .block-np .from .btn-read-digitalpaper span{display:table-cell;vertical-align:middle;width:214px;height:32px}
-.col-contextual .block-subscribe-newsletter .visual{display:block;float:left;margin:3px 14px 14px 0;background:url(http://s0.libe.com/libe/img/common/_sprites_icons/icons.png?9914d0d70a49) -144px -36px no-repeat;width:56px;height:37px}
+.col-contextual .block-subscribe-newsletter .visual{display:block;float:left;margin:3px 14px 14px 0;background:url(http://s0.libe.com/libe/img/common/_sprites_icons/icons.png?9914d0d70a49)-144px -36px no-repeat;width:56px;height:37px}
 .col-contextual .block-subscribe-newsletter p{margin:0 0 14px 74px}
 .col-contextual .block-subscribe-newsletter p strong{display:inline-block;margin-bottom:7px}
 .col-contextual .block-subscribe-newsletter input[type=submit]{float:right}
@@ -2101,7 +2101,7 @@ a.god:hover{background:#3c3c3c;color:#fff;text-decoration:none}
 #core-liberation .col-contextual .block-promo .block-content h4{font-family:Verdana,sans-serif;font-size:12px;font-weight:700;margin:0 0 11px 154px}
 #core-liberation .col-contextual .block-promo .block-content p{margin:0 0 10px 154px}
 #core-liberation .col-contextual .block-promo .block-content ul{clear:both;margin:10px 0 0}
-#core-liberation .col-contextual .block-promo .block-content a.arrow,#core-liberation .col-contextual .block-promo .block-content ul li a{background:url(http://s0.libe.com/libe/img/common/ico-lnk-arrow-red.gif?feba6ff926a7) 0 4px no-repeat;padding-left:15px}
+#core-liberation .col-contextual .block-promo .block-content a.arrow,#core-liberation .col-contextual .block-promo .block-content ul li a{background:url(http://s0.libe.com/libe/img/common/ico-lnk-arrow-red.gif?feba6ff926a7)0 4px no-repeat;padding-left:15px}
 #core-liberation .block-all-forums .headrest{margin:0 0 7px;border-bottom:1px solid}
 #core-liberation .block-all-forums .headrest h5{border-bottom:0;text-transform:none;padding:0 0 7px}
 #core-liberation .block-all-forums .headrest .community-bubble{float:left;margin:4px 10px 0 0}
@@ -2133,7 +2133,7 @@ a.god:hover{background:#3c3c3c;color:#fff;text-decoration:none}
 #core-liberation .block-all-blogs .block-content .list li{clear:none}
 #core-liberation .block-all-blogs .block-content .list li.new-line{clear:both}
 #core-liberation .block-all-blogs .block-content .list .blog h5 .icon{display:none}
-#core-liberation .block-all-blogs .block-content .list .blog-libe h5 .icon{display:block;position:absolute;background:url(http://s0.libe.com/libe/img/common/_sprites_icons/icons.png?9914d0d70a49) -38px -84px no-repeat;width:20px;height:7px;margin-top:4px;top:7px;right:7px}
+#core-liberation .block-all-blogs .block-content .list .blog-libe h5 .icon{display:block;position:absolute;background:url(http://s0.libe.com/libe/img/common/_sprites_icons/icons.png?9914d0d70a49)-38px -84px no-repeat;width:20px;height:7px;margin-top:4px;top:7px;right:7px}
 #core-liberation .block-all-blogs .block-content .list .blog-libe{padding-top:3px}
 #core-liberation .block-all-blogs .block-content .list .blog-libe h5{position:relative;display:block;padding:7px 40px 7px 7px}
 #core-liberation .block-all-blogs .block-content .list .blog-libe img.visual{margin-top:0}
@@ -2204,7 +2204,7 @@ a.god:hover{background:#3c3c3c;color:#fff;text-decoration:none}
 #core-liberation .headrest h5{border-bottom:1px solid;text-transform:uppercase;padding:7px 0}
 #core-liberation .headrest h4{margin-bottom:7px;font-weight:700}
 #core-liberation .headrest .links-inline{padding-left:30px;font-size:10px;font-weight:400;text-transform:none}
-#core-liberation .headrest .folder{background:url(http://s0.libe.com/libe/img/common/bg-headrest-triangle.png?589ad9ce9011) right center no-repeat}
+#core-liberation .headrest .folder{background:url(http://s0.libe.com/libe/img/common/bg-headrest-triangle.png?589ad9ce9011)right center no-repeat}
 #core-liberation .headrest .folder img.visual{display:block;float:left;margin-right:14px}
 #core-liberation .headrest .folder h5{border-bottom:none;padding:5px 5px 7px}
 #core-liberation .headrest .folder h2{margin-left:14px;padding-top:3px;font-weight:400}
@@ -2263,7 +2263,7 @@ form .btn-monlibe input[type=reset]{opacity:.9}
 form .btn-rounded-degraded input[type=button],form .btn-rounded-degraded input[type=submit]{border-radius:5px;-moz-border-radius:5px;-webkit-border-radius:5px;border:0;padding:0 10px 6px;height:35px;cursor:pointer;cursor:hand;font-size:13px;font-family:Verdana,sans-serif;font-weight:700}
 form .btn-rounded-degraded input[type=button]:focus,form .btn-rounded-degraded input[type=button]:hover,form .btn-rounded-degraded input[type=submit]:focus,form .btn-rounded-degraded input[type=submit]:hover{text-decoration:none}
 .btn-read-digitalpaper{display:block;border:1px solid;border-radius:3px;-moz-border-radius:3px;-webkit-border-radius:3px;padding:5px 7px 7px}
-.btn-read-digitalpaper a,.btn-read-digitalpaper span{display:block;min-height:32px;background:url(http://s0.libe.com/libe/img/common/reader_picto.png?8fdcc4850538) right top no-repeat;padding-right:50px;font-size:12px}
+.btn-read-digitalpaper a,.btn-read-digitalpaper span{display:block;min-height:32px;background:url(http://s0.libe.com/libe/img/common/reader_picto.png?8fdcc4850538)right top no-repeat;padding-right:50px;font-size:12px}
 #core-liberation .pagination{float:none;margin-bottom:14px;margin-top:21px;border-top:1px dotted;border-bottom:1px dotted;padding-top:3px;text-align:center}
 #core-liberation .pagination .first{float:left;background-image:url(http://s0.libe.com/libe/img/common/bg-search-pagination-first.png?71b3279ad5d6);background-repeat:no-repeat;background-position:0 5px;margin-left:10px;padding-left:20px}
 #core-liberation .pagination .prev{float:left;background-image:url(http://s0.libe.com/libe/img/common/bg-search-pagination-prev.png?0ae4b5772718);background-repeat:no-repeat;background-position:0 6px;margin-left:10px;padding-left:15px}
@@ -2329,9 +2329,9 @@ body.init-bar-is-closed #bar-liberation{height:15px}
 #bar-liberation .content .activities-stream,#bar-liberation .content .close,#bar-liberation .content .login,#bar-liberation .content .mail-box,#bar-liberation .content .open,#bar-liberation .content .other,#bar-liberation .content .personal-options{display:none;border-left:1px solid;border-right:1px solid;border-bottom:1px solid;position:absolute;top:0;height:40px}
 #bar-liberation .content .activities-stream .list .more{display:none}
 #bar-liberation .content .activities-stream .list .text,#bar-liberation .content .activities-stream .list p{display:inline}
-#bar-liberation .content a.displayer .arrow{background:url(http://s0.libe.com/libe/img/common/_sprites_header/triangle_ferme.png?1ecaa0c231c9) no-repeat;display:block;position:absolute;right:10px;top:16px;width:10px;height:10px}
-#bar-liberation .content a.displayer:hover .arrow{background:url(http://s0.libe.com/libe/img/common/_sprites_header/triangle_ferme_grey.png?a9a52344ba82) no-repeat}
-#bar-liberation .content a.displayer .arrow-displayed,#bar-liberation .content a.displayer:hover .arrow-displayed{background:url(http://s0.libe.com/libe/img/common/_sprites_header/triangle_ouvert.png?c782eb482038) 1px 1px no-repeat}
+#bar-liberation .content a.displayer .arrow{background:url(http://s0.libe.com/libe/img/common/_sprites_header/triangle_ferme.png?1ecaa0c231c9)no-repeat;display:block;position:absolute;right:10px;top:16px;width:10px;height:10px}
+#bar-liberation .content a.displayer:hover .arrow{background:url(http://s0.libe.com/libe/img/common/_sprites_header/triangle_ferme_grey.png?a9a52344ba82)no-repeat}
+#bar-liberation .content a.displayer .arrow-displayed,#bar-liberation .content a.displayer:hover .arrow-displayed{background:url(http://s0.libe.com/libe/img/common/_sprites_header/triangle_ouvert.png?c782eb482038)1px 1px no-repeat}
 #bar-liberation .content ul.list li{margin:0 10px;min-height:32px;padding:6px 0 2px;border-bottom:1px solid;line-height:16px}
 #bar-liberation .content ul.list li a,#bar-liberation .content ul.list li a:hover,#core-liberation .block-activities .block-content ul li a,#core-liberation .block-activities .block-content ul li a:hover{text-decoration:underline}
 #bar-liberation .content ul.list li:last-of-type{border-bottom:none}
@@ -2340,7 +2340,7 @@ body.init-bar-is-closed #bar-liberation{height:15px}
 #bar-liberation .content .close a{display:block;text-align:center;padding-top:12px;height:28px}
 #bar-liberation .content .open{display:none;height:15px;left:0;z-index:10010;border:none}
 #bar-liberation .content .open a{display:block;height:100%;padding-left:40px;font-size:10px}
-#bar-liberation .content .open a .arrow{position:absolute;display:block;width:28px;height:100%;left:0;top:0;border-left:1px solid;border-right:1px solid;background:url(http://s0.libe.com/libe/img/common/_sprites_header/triangle_ouvert.png?c782eb482038) center center no-repeat}
+#bar-liberation .content .open a .arrow{position:absolute;display:block;width:28px;height:100%;left:0;top:0;border-left:1px solid;border-right:1px solid;background:url(http://s0.libe.com/libe/img/common/_sprites_header/triangle_ouvert.png?c782eb482038)center center no-repeat}
 #bar-liberation .content .login{left:29px;width:1037px;z-index:10020}
 #bar-liberation .content .login h3{font-family:Verdana,sans-serif;font-weight:400;font-size:12px;padding:12px 10px 0}
 #bar-liberation .content .login a.subscribe{position:absolute;display:block;top:10px;right:230px;padding:3px 10px;border-radius:5px;-moz-border-radius:5px;-webkit-border-radius:5px}
@@ -2386,7 +2386,7 @@ body.init-bar-is-closed #bar-liberation{height:15px}
 #page-404 .text{padding-top:5px}
 #page-404 form{display:block;margin:21px 0 0 140px;width:298px;height:22px;border:1px solid}
 #page-404 form input[type=text]{border:0;height:22px;width:250px;padding:0 5px}
-#page-404 form input[type=submit]{background:url(http://s0.libe.com/libe/img/common/_sprites_header/header.png?df8de01457fa) 0 -32px no-repeat;display:block;float:right;width:29px;height:22px;border:0}
+#page-404 form input[type=submit]{background:url(http://s0.libe.com/libe/img/common/_sprites_header/header.png?df8de01457fa)0 -32px no-repeat;display:block;float:right;width:29px;height:22px;border:0}
 #page-mailfriend{font-family:Verdana,sans-serif;font-size:11px}
 #page-mailfriend .content{width:280px;padding:10px;margin:auto}
 #page-mailfriend .content h2{margin-bottom:10px}
@@ -2399,7 +2399,7 @@ body.init-bar-is-closed #bar-liberation{height:15px}
 #page-paywall .content{position:relative;padding:20px 0}
 #page-paywall .content a{text-decoration:none}
 #page-paywall .content a.close{display:block;float:right}
-#page-paywall .content a.close span{background:url(http://s0.libe.com/libe/img/common/_sprites_icons/icons.png?9914d0d70a49) -20px -98px no-repeat;display:block;margin:auto;width:15px;height:15px}
+#page-paywall .content a.close span{background:url(http://s0.libe.com/libe/img/common/_sprites_icons/icons.png?9914d0d70a49)-20px -98px no-repeat;display:block;margin:auto;width:15px;height:15px}
 #page-paywall .content a.close strong{text-transform:uppercase;font-size:8px}
 #page-paywall .content .video{margin-bottom:20px;width:437px}
 #page-paywall .content .video h5{margin-bottom:15px;padding:3px 0 5px;border-top:1px dotted;border-bottom:1px dotted;float:right;font-family:Georgia,"Times New Roman",Times,serif;font-size:16px;font-style:italic;font-weight:400}
@@ -2459,12 +2459,12 @@ body.access-ess #page-paywall .content .arguments .arg{float:none;margin:auto}
 .site-liberation .text-item p.essential a:hover{color:#E20000}
 .site-liberation .text-item p.others{margin:21px 0;border:1px dotted #b3b3b3;border-left:0;border-right:0;padding:7px 0 9px}
 .site-liberation .text-item p.others span{text-transform:uppercase;padding-right:7px}
-.site-liberation .slug{background:url(http://s0.libe.com/libe/img/common/bg-puce-losange.png?099dfb8021ab) right center no-repeat;padding-right:18px;margin-right:3px;text-transform:uppercase;font-size:10px}
+.site-liberation .slug{background:url(http://s0.libe.com/libe/img/common/bg-puce-losange.png?099dfb8021ab)right center no-repeat;padding-right:18px;margin-right:3px;text-transform:uppercase;font-size:10px}
 .site-liberation .author{font-size:10px}
 .site-liberation .author strong{text-transform:uppercase}
 .site-liberation a,.site-liberation a p{text-decoration:none;outline:0}
 .site-liberation a:hover,.site-liberation a:hover h2,.site-liberation a:hover h3,.site-liberation a:hover h4,.site-liberation a:hover h5,.site-liberation a:hover h6,.site-liberation a:hover p{text-decoration:underline}
-.site-liberation .lnk-comments{background:url(http://s0.libe.com/libe/img/common/ico-lnk-comment.png?48525c2557e6) left 2px no-repeat;padding-left:20px;font-size:10px;line-height:15px}
+.site-liberation .lnk-comments{background:url(http://s0.libe.com/libe/img/common/ico-lnk-comment.png?48525c2557e6)left 2px no-repeat;padding-left:20px;font-size:10px;line-height:15px}
 .site-liberation .block-call-items .block-top{margin-bottom:10px}
 .site-liberation .block-call-items .block-top h5{padding:3px 10px;background-color:#e20000;color:#fff}
 .site-liberation .col-contextual .block-call-items .block-top h5{background:0 0;padding:0}
@@ -2473,8 +2473,8 @@ body.access-ess #page-paywall .content .arguments .arg{float:none;margin:auto}
 .site-liberation .block-call-items .mini-tpl:last-of-type{border-bottom:0;margin-bottom:0:}
 .site-liberation .block-call-items .mini-tpl .right{float:right}
 .site-liberation .block-call-items .mini-tpl .lnk-libeplus,.site-liberation .block-call-items .mini-tpl .lnk-libeplus-big{background:0 0;padding:0}
-.site-liberation .block-call-items .mini-tpl h2.lnk-libeplus:after,.site-liberation .block-call-items .mini-tpl h3.lnk-libeplus:after{content:'';display:inline-block;width:56px;height:14px;margin-left:10px;background:url(http://s0.libe.com/libe/img/common/ico-lnk-libeplus-big2.png?d4d49ea9ef21) no-repeat}
-.site-liberation .block-call-items .mini-tpl .list-linked-items a.lnk-libeplus:after,.site-liberation .block-call-items .mini-tpl h5.lnk-libeplus:after{content:'';display:inline-block;width:56px;height:10px;margin-left:5px;background:url(http://s0.libe.com/libe/img/common/ico-lnk-libeplus2.png?39fe048f4782) no-repeat}
+.site-liberation .block-call-items .mini-tpl h2.lnk-libeplus:after,.site-liberation .block-call-items .mini-tpl h3.lnk-libeplus:after{content:'';display:inline-block;width:56px;height:14px;margin-left:10px;background:url(http://s0.libe.com/libe/img/common/ico-lnk-libeplus-big2.png?d4d49ea9ef21)no-repeat}
+.site-liberation .block-call-items .mini-tpl .list-linked-items a.lnk-libeplus:after,.site-liberation .block-call-items .mini-tpl h5.lnk-libeplus:after{content:'';display:inline-block;width:56px;height:10px;margin-left:5px;background:url(http://s0.libe.com/libe/img/common/ico-lnk-libeplus2.png?39fe048f4782)no-repeat}
 * html .site-liberation .block-call-items .mini-tpl h2.lnk-libeplus,* html .site-liberation .block-call-items .mini-tpl h3.lnk-libeplus{background-image:url(http://s0.libe.com/libe/img/common/ico-lnk-libeplus-big2.png?d4d49ea9ef21);background-repeat:no-repeat;background-position:right 4px;padding-right:60px}
 * html .site-liberation .block-call-items .mini-tpl .list-linked-items a.lnk-libeplus,* html .site-liberation .block-call-items .mini-tpl h5.lnk-libeplus{background-image:url(http://s0.libe.com/libe/img/common/ico-lnk-libeplus2.png?39fe048f4782);background-repeat:no-repeat;background-position:right 4px;padding-right:60px}
 .site-liberation .block-call-items .mini-tpl h1,.site-liberation .block-call-items .mini-tpl h2{margin-bottom:14px}
@@ -2495,14 +2495,14 @@ body.access-ess #page-paywall .content .arguments .arg{float:none;margin:auto}
 .site-liberation .block-call-items .mini-tpl .subtitle .slug{font-weight:700}
 .site-liberation .block-call-items .mini-tpl .author{display:block;margin-bottom:5px;padding-top:1px}
 .site-liberation .block-call-items .list-linked-items span{text-transform:uppercase;font-size:11px;padding-right:7px}
-.site-liberation .block-call-items .mini-tpl .label{background:url(http://s0.libe.com/libe/img/common/bg-separateur.gif?e78a16835c55) right center no-repeat;border:2px solid;min-height:45px}
+.site-liberation .block-call-items .mini-tpl .label{background:url(http://s0.libe.com/libe/img/common/bg-separateur.gif?e78a16835c55)right center no-repeat;border:2px solid;min-height:45px}
 .site-liberation .block-call-items .mini-tpl .label h3{font-size:21px;font-weight:400;margin-bottom:0;margin-top:8px;margin-left:10px}
 .site-liberation .block-call-items .mini-tpl .label .visual{width:45px;margin:0 10px 0 0}
 .site-liberation .block-call-items .mini-tpl .whosaid{position:relative;margin-bottom:7px;padding:14px}
 .site-liberation .block-call-items .mini-tpl .whosaid h5 .theme{font-size:14px}
 .site-liberation .block-call-items .mini-tpl .whosaid h5 a.theme:hover{text-decoration:underline}
 .site-liberation .block-call-items .mini-tpl .whosaid h3{font-size:26px;font-weight:400;margin-bottom:28px}
-.site-liberation .block-call-items .mini-tpl .whosaid a.zap{display:block;position:absolute;width:78px;height:21px;background:url(http://s0.libe.com/libe/img/common/btn_shaker.gif?6340e450364b) no-repeat;bottom:14px;right:14px}
+.site-liberation .block-call-items .mini-tpl .whosaid a.zap{display:block;position:absolute;width:78px;height:21px;background:url(http://s0.libe.com/libe/img/common/btn_shaker.gif?6340e450364b)no-repeat;bottom:14px;right:14px}
 .site-liberation .block-call-items .mini-tpl .whosaid .answer{margin-top:10px}
 .site-liberation .block-call-items .mini-tpl .whosaid .answer h4{margin-bottom:10px}
 .site-liberation .block-call-items .mini-tpl .whosaid .answer a{float:right;font-size:14px}
@@ -2554,7 +2554,7 @@ body.access-ess #page-paywall .content .arguments .arg{float:none;margin:auto}
 .site-liberation .block-call-items .tpl-labo-spotlight:first-of-type{padding-top:8px}
 .site-liberation .block-call-items .tpl-labo-spotlight .subscribe{margin-bottom:5px}
 .site-liberation .block-call-items .tpl-labo-spotlight .subscribe .toggle{font-size:10px;float:right;margin-right:10px}
-.site-liberation .block-call-items .tpl-labo-spotlight .subscribe p.toggle a{background:url(http://s0.libe.com/libe/img/common/pi_arrow-down.gif?83c2b5fdcd15) 0 5px no-repeat;padding-left:15px}
+.site-liberation .block-call-items .tpl-labo-spotlight .subscribe p.toggle a{background:url(http://s0.libe.com/libe/img/common/pi_arrow-down.gif?83c2b5fdcd15)0 5px no-repeat;padding-left:15px}
 .site-liberation .block-call-items .tpl-labo-spotlight .subscribe .sb-podcasts{font-size:10px;float:right;clear:both;display:none}
 .site-liberation .block-call-items .tpl-labo-podcast{border-left:6px solid #b30804;margin-bottom:0;padding:8px 0 7px 10px}
 .site-liberation .block-call-items .tpl-labo-podcast:first-of-type{padding-top:0}
@@ -2601,7 +2601,7 @@ body.access-ess #page-paywall .content .arguments .arg{float:none;margin:auto}
 .site-liberation .block-call-items .tpl-visual-square-left-arround .visual{display:block;float:left;margin:3px 10px 0 0;width:84px;height:84px}
 .site-liberation .block-call-items .tpl-visual-square-left-arround h5{margin-bottom:0}
 .site-liberation .block-call-items .tpl-visual-square-left-arround p.subtitle{font-size:11px}
-body.barry-white{background:url(http://s0.libe.com/libe/img/common/bg-body-fff.gif?62ad83bcadf5) center 0 repeat-y #f8f8f8}
+body.barry-white{background:url(http://s0.libe.com/libe/img/common/bg-body-fff.gif?62ad83bcadf5)center 0 repeat-y #f8f8f8}
 body.slideshow{background-color:#333}
 body.iframe{background-color:#fff}
 body.slideshow .ad-top .megaban{background:#333}
@@ -2684,9 +2684,9 @@ body.slideshow .ad-top .megaban{background:#333}
 #header-liberation .header-base .nav .cat-monlibe .nav2 .on,#header-liberation .header-base .nav .cat-monlibe .nav2 a:hover{color:#fe9900}
 #header-liberation .header-base .nav .cat-zoneabo .nav2 .on,#header-liberation .header-base .nav .cat-zoneabo .nav2 a:hover{color:#a00}
 #header-liberation .header-base .nav .cat-food .nav2 .on,#header-liberation .header-base .nav .cat-food .nav2 a:hover{color:#000}
-#header-liberation .header-simple .header{background:url(http://s0.libe.com/libe/img/common/bg-e20000.png?020f61e6035c) 0 39px repeat-x}
+#header-liberation .header-simple .header{background:url(http://s0.libe.com/libe/img/common/bg-e20000.png?020f61e6035c)0 39px repeat-x}
 #header-liberation .header-simple .back,#header-liberation .header-simple .logo{background-color:#fff}
-#header-liberation .header-simple .back a{color:#858585;background:url(http://s0.libe.com/libe/img/common/ico-lnk-arrow-back-grey.png?c8d5a4458a2c) 0 16px no-repeat}
+#header-liberation .header-simple .back a{color:#858585;background:url(http://s0.libe.com/libe/img/common/ico-lnk-arrow-back-grey.png?c8d5a4458a2c)0 16px no-repeat}
 #header-liberation .header-annex h1{border-bottom-color:#e20000}
 #header-liberation .header-annex h1 a{color:#000}
 #footer-liberation .abo,#footer-liberation a{color:#818181}
@@ -2894,7 +2894,7 @@ body.slideshow .ad-top .megaban{background:#333}
 .site-liberation .toolbox li.spacer span{background-color:#d7d7d7}
 .site-liberation .toolbox .comment,.site-liberation .toolbox .facebook,.site-liberation .toolbox .twitter,.site-liberation .toolbox .txt-min,.site-liberation .toolbox .txt-plus,.site-liberation .toolbox .txt-reset{color:#818181}
 .site-liberation .toolbox .comment:hover,.site-liberation .toolbox .txt-min:hover,.site-liberation .toolbox .txt-plus:hover,.site-liberation .toolbox .txt-reset:hover{color:#000}
-.site-liberation .toolbox li a span{background:url(http://s0.libe.com/libe/img/common/_sprites_icons/icons.png?9914d0d70a49) no-repeat}
+.site-liberation .toolbox li a span{background:url(http://s0.libe.com/libe/img/common/_sprites_icons/icons.png?9914d0d70a49)no-repeat}
 .site-liberation .toolbox li a.print span{background-position:-76px -118px}
 .site-liberation .toolbox li a.print:hover span{background-position:-94px -118px}
 .site-liberation .toolbox li a.favorite span{background-position:-22px -120px}
@@ -2903,8 +2903,8 @@ body.slideshow .ad-top .megaban{background:#333}
 .site-liberation .toolbox li a.comment:hover span{background-position:-205px -84px}
 .site-liberation .toolbox li a.mail span{background-position:-89px 0}
 .site-liberation .toolbox li a.mail:hover span{background-position:-89px -16px}
-.site-liberation .toolbox li a.facebook span{background:url(http://s0.libe.com/libe/img/common/_sprites_icons/icons_share.png?edeb5617b880) -74px 0 no-repeat}
-.site-liberation .toolbox li a.twitter span{background:url(http://s0.libe.com/libe/img/common/_sprites_icons/icons_share.png?edeb5617b880) -74px -14px no-repeat}
+.site-liberation .toolbox li a.facebook span{background:url(http://s0.libe.com/libe/img/common/_sprites_icons/icons_share.png?edeb5617b880)-74px 0 no-repeat}
+.site-liberation .toolbox li a.twitter span{background:url(http://s0.libe.com/libe/img/common/_sprites_icons/icons_share.png?edeb5617b880)-74px -14px no-repeat}
 .site-liberation .toolbox li a.facebook,.site-liberation .toolbox li a.twitter{background-color:#f7f7f7;border-color:#d7d7d7}
 .site-liberation .toolbox li a.facebook:hover,.site-liberation .toolbox li a.twitter:hover{background-color:#818181;color:#F7F7F7}
 .site-liberation .toolbox li.abo-1-euro,.site-liberation .toolbox li.btn-comment{background:#f8f8f8}
@@ -2976,4 +2976,4 @@ html.js body.dummy div#mainContent div#core-liberation div.col9 div.block div.bl
 html.js body.dummy div#mainContent div#core-liberation div.col9 div.block div.block-content div.favorites-frontpages div.col-left div.cartridge{width:388px}
 html.js body.dummy div#mainContent div#core-liberation div.col9 div.block div.block-content div.favorites-folders div.block-call-items div.block-content div.mini-tpl div.cartridge{margin-left:0;width:129px}
 html.js body.dummy div#mainContent div#core-liberation div.col7 div.block-call-items div.block-content div.mini-tpl div.folder-on-demand div.object-content{margin-right:0;min-height:0;border-bottom:0}
-html.js body.dummy div#mainContent div#core-liberation div.col7 div.block-call-items div.block-content div.mini-tpl div.folder-on-demand{border-bottom:1px solid #E7E7E7}
+html.js body.dummy div#mainContent div#core-liberation div.col7 div.block-call-items div.block-content div.mini-tpl div.folder-on-demand{border-bottom:1px solid #E7E7E7}
\ No newline at end of file
index c410169..1377fb2 100644 (file)
@@ -1,3 +1,3 @@
 @charset "UTF-8";
-@font-face{font-family:ProximaNova-Regular;src:url(/assets/thirdParty/css/1415F2_1.eot);src:url(/assets/thirdParty/css/1415F2_1IE.eot) format('embedded-opentype'),url(/assets/thirdParty/css/1415F2_1.woff) format('woff'),url(/assets/thirdParty/css/1415F2_1.ttf) format('truetype'),url(/assets/thirdParty/css/1415F2_1.svg) format('svg')}
-blockquote small:before{content:'\2014 \00A0'}
+@font-face{font-family:ProximaNova-Regular;src:url(/assets/thirdParty/css/1415F2_1.eot);src:url(/assets/thirdParty/css/1415F2_1IE.eot)format('embedded-opentype'),url(/assets/thirdParty/css/1415F2_1.woff)format('woff'),url(/assets/thirdParty/css/1415F2_1.ttf)format('truetype'),url(/assets/thirdParty/css/1415F2_1.svg)format('svg')}
+blockquote small:before{content:'\2014 \00A0'}
\ No newline at end of file
index 3666ecc..26ec9c3 100644 (file)
@@ -20,7 +20,7 @@
  *  Twitter: http://twitter.com/fortaweso_me
  *  Work: Lead Product Designer @ http://kyruus.com
  */
-@font-face{font-family:FontAwesome;src:url(../font/fontawesome-webfont.eot?v=3.0.1);src:url(../font/fontawesome-webfont.eot?#iefix&v=3.0.1) format('embedded-opentype'),url(../font/fontawesome-webfont.woff?v=3.0.1) format('woff'),url(../font/fontawesome-webfont.ttf?v=3.0.1) format('truetype');font-weight:400;font-style:normal}
+@font-face{font-family:FontAwesome;src:url(../font/fontawesome-webfont.eot?v=3.0.1);src:url(../font/fontawesome-webfont.eot?#iefix&v=3.0.1)format('embedded-opentype'),url(../font/fontawesome-webfont.woff?v=3.0.1)format('woff'),url(../font/fontawesome-webfont.ttf?v=3.0.1)format('truetype');font-weight:400;font-style:normal}
 [class*=" icon-"],[class^=icon-]{font-family:FontAwesome;font-weight:400;font-style:normal;text-decoration:inherit;-webkit-font-smoothing:antialiased;display:inline;width:auto;height:auto;line-height:normal;vertical-align:baseline;background-image:none;background-position:0 0;background-repeat:repeat;margin-top:0}
 .dropdown-menu>.active>a>[class*=" icon-"],.dropdown-menu>.active>a>[class^=icon-],.dropdown-menu>li>a:hover>[class*=" icon-"],.dropdown-menu>li>a:hover>[class^=icon-],.dropdown-submenu:hover>a>[class*=" icon-"],.dropdown-submenu:hover>a>[class^=icon-],.icon-white,.nav-list>.active>a>[class*=" icon-"],.nav-list>.active>a>[class^=icon-],.nav-pills>.active>a>[class*=" icon-"],.nav-pills>.active>a>[class^=icon-],.navbar-inverse .nav>.active>a>[class*=" icon-"],.navbar-inverse .nav>.active>a>[class^=icon-]{background-image:none}
 [class*=" icon-"]:before,[class^=icon-]:before{text-decoration:inherit;display:inline-block;speak:none}
@@ -316,4 +316,4 @@ ul.icons li [class*=" icon-"],ul.icons li [class^=icon-]{width:.75em}
 .icon-reply:before{content:"\f112"}
 .icon-github-alt:before{content:"\f113"}
 .icon-folder-close-alt:before{content:"\f114"}
-.icon-folder-open-alt:before{content:"\f115"}
+.icon-folder-open-alt:before{content:"\f115"}
\ No newline at end of file
index 66c0678..bb80449 100644 (file)
@@ -1,3 +1,3 @@
 @media only print{a,a:visited{text-decoration:underline}
-a[href]:after{content:" (" attr(href) ")"}
-abbr[title]:after{content:" (" attr(title) ")"}}
+a[href]:after{content:" (" attr(href)")"}
+abbr[title]:after{content:" (" attr(title)")"}}
\ No newline at end of file
index da28adf..8e2c501 100644 (file)
@@ -1,2 +1,2 @@
 .bar{padding:0}
-.bug-selector,.bug-selector1{background:url(images/b-toolbar.gif) #000;background:linear-gradient(#5e6081,#353340)}
\ No newline at end of file
+.bug-selector,.bug-selector1{background:url(images/b-toolbar.gif)#000;background:linear-gradient(#5e6081,#353340)}
\ No newline at end of file
index 919eb5b..e7974d8 100644 (file)
@@ -1,2 +1,2 @@
-.one{background:url(one.png) right 10px top 10px no-repeat,linear-gradient(0deg,#efefef 0,#fff 100%)}
-.two{background:url(two.png) right 9px top 15px/9px 7px no-repeat,linear-gradient(-179deg,#FFF 0,#F9F9F9 100%)}
+.one{background:url(one.png)right 10px top 10px no-repeat,linear-gradient(0deg,#efefef 0,#fff 100%)}
+.two{background:url(two.png)right 9px top 15px/9px 7px no-repeat,linear-gradient(-179deg,#FFF 0,#F9F9F9 100%)}
\ No newline at end of file
index 4f8eeca..f3fd7fc 100644 (file)
@@ -1 +1 @@
-.test{background:url(top.png) left 0 top -12px no-repeat,url(bottom.png) left 0 bottom -12px no-repeat,url(middle.png) left 0 top 0 no-repeat}
\ No newline at end of file
+.test{background:url(top.png)left 0 top -12px no-repeat,url(bottom.png)left 0 bottom -12px no-repeat,url(middle.png)left 0 top 0 no-repeat}
\ No newline at end of file
index 84699e1..6bc9383 100644 (file)
@@ -1 +1 @@
-.envelope{background:url(one.png) top center repeat-x,url(one.png) bottom center repeat-x,url(two.png) 110% 10px no-repeat #eee;background-size:35px 4px,35px 4px,101px 61px}
\ No newline at end of file
+.envelope{background:url(one.png)top center repeat-x,url(one.png)bottom center repeat-x,url(two.png)110% 10px no-repeat #eee;background-size:35px 4px,35px 4px,101px 61px}
\ No newline at end of file
index 3892ddc..568385f 100644 (file)
@@ -149,7 +149,7 @@ vows.describe('integration tests').addBatch({
     ],
     'line breaks in media queries': [
       '@media\nonly screen and (max-width: 1319px) and (min--moz-device-pixel-ratio: 1.5),\nonly screen and (max-width: 1319px) and (-moz-min-device-pixel-ratio: 1.5)\n{ a { color:#000 } }',
-      '@media only screen and (max-width:1319px) and (min--moz-device-pixel-ratio:1.5),only screen and (max-width:1319px) and (-moz-min-device-pixel-ratio:1.5){a{color:#000}}'
+      '@media only screen and (max-width:1319px)and (min--moz-device-pixel-ratio:1.5),only screen and (max-width:1319px)and (-moz-min-device-pixel-ratio:1.5){a{color:#000}}'
     ],
     'in content preceded by #content': '#content{display:block}#foo{content:"\0BB  "}',
     'in content preceded by .content': '.content{display:block}#foo{content:"\0BB  "}',
@@ -161,12 +161,23 @@ vows.describe('integration tests').addBatch({
       'a{text-shadow:rgb(255,0,1) 1px 1px}',
       'a{text-shadow:#ff0001 1px 1px}'
     ],
-    'after rgba': 'a{text-shadow:rgba(255,0,0,1) 0 1px}',
+    'after rgba': [
+      'a{text-shadow:rgba(255,0,0,1) 0 1px}',
+      'a{text-shadow:rgba(255,0,0,1)0 1px}'
+    ],
     'after hsl': [
       'a{text-shadow:hsl(240,100%,40%) -1px 1px}',
       'a{text-shadow:#00c -1px 1px}'
     ],
-    'after hsla': 'a{text-shadow:hsla(240,100%,40%,.5) -1px 1px}'
+    'after hsla': 'a{text-shadow:hsla(240,100%,40%,.5)-1px 1px}',
+    'inside background': [
+      'a{background:calc(100% - 2px) 10px no-repeat}',
+      'a{background:calc(100% - 2px)10px no-repeat}'
+    ],
+    'inside margin': [
+      'a{margin:calc(100% - 2px) calc(100% - 5px)}',
+      'a{margin:calc(100% - 2px)calc(100% - 5px)}'
+    ]
   }),
   'line breaks': cssContext({
     'line breaks #1': [
@@ -925,7 +936,7 @@ vows.describe('integration tests').addBatch({
     'not add a space before url\'s hash': "a{background:url(/fonts/d90b3358-e1e2-4abb-ba96-356983a54c22.svg#d90b3358-e1e2-4abb-ba96-356983a54c22)}",
     'keep urls from being stripped down #1': 'a{background:url(/image-1.0.png)}',
     'keep urls from being stripped down #2': "a{background:url(/image-white.png)}",
-    'keep urls from being stripped down #3': "a{background:url(/libraries/jquery-ui-1.10.1.custom/images/ui-bg_highlight-soft_100_eeeeee_1x100.png) 50% top #eee}",
+    'keep urls from being stripped down #3': 'a{background:url(/libraries/jquery-ui-1.10.1.custom/images/ui-bg_highlight-soft_100_eeeeee_1x100.png)50% top #eee}',
     'keep special markers in comments (so order is important)': '/*! __ESCAPED_URL_CLEAN_CSS0__ */a{display:block}',
     'strip new line in urls': [
       'a{background:url(/very/long/\
@@ -938,19 +949,25 @@ path")}',
       'a{background:url(/very/long/path)}'
     ]
   }),
+  'urls whitespace in compatibility mode': cssContext({
+    'keeps spaces as they are': '*{background:url(test.png) no-repeat}'
+  }, { compatibility: 'ie8' }),
   'urls rewriting - no root or target': cssContext({
-    'no @import': 'a{background:url(test/fixtures/partials/extra/down.gif) no-repeat}',
+    'no @import': [
+      'a{background:url(test/fixtures/partials/extra/down.gif) no-repeat}',
+      'a{background:url(test/fixtures/partials/extra/down.gif)no-repeat}'
+    ],
     'relative @import': [
       '@import url(test/fixtures/partials-relative/base.css);',
-      'a{background:url(test/fixtures/partials/extra/down.gif) no-repeat}'
+      'a{background:url(test/fixtures/partials/extra/down.gif)no-repeat}'
     ],
     'relative @import twice': [
       '@import url(test/fixtures/partials-relative/extra/included.css);',
-      'a{background:url(test/fixtures/partials/extra/down.gif) no-repeat}'
+      'a{background:url(test/fixtures/partials/extra/down.gif)no-repeat}'
     ],
     'absolute @import': [
       '@import url(/test/fixtures/partials-relative/base.css);',
-      'a{background:url(test/fixtures/partials/extra/down.gif) no-repeat}'
+      'a{background:url(test/fixtures/partials/extra/down.gif)no-repeat}'
     ],
     'document-local reference': [
       'svg{marker-end:url(#arrow)}', 'svg{marker-end:url(#arrow)}'
@@ -959,15 +976,15 @@ path")}',
   'urls rewriting - root but no target': cssContext({
     'no @import': [
       'a{background:url(../partials/extra/down.gif) no-repeat}',
-      'a{background:url(/test/fixtures/partials/extra/down.gif) no-repeat}'
+      'a{background:url(/test/fixtures/partials/extra/down.gif)no-repeat}'
     ],
     'relative @import': [
       '@import url(base.css);',
-      'a{background:url(/test/fixtures/partials/extra/down.gif) no-repeat}'
+      'a{background:url(/test/fixtures/partials/extra/down.gif)no-repeat}'
     ],
     'absolute @import': [
       '@import url(/test/fixtures/partials-relative/base.css);',
-      'a{background:url(/test/fixtures/partials/extra/down.gif) no-repeat}'
+      'a{background:url(/test/fixtures/partials/extra/down.gif)no-repeat}'
     ],
     'document-local reference': [
       'svg{marker-end:url(#arrow)}', 'svg{marker-end:url(#arrow)}'
@@ -979,15 +996,15 @@ path")}',
   'urls rewriting - no root but target': cssContext({
     'no @import': [
       'a{background:url(../partials/extra/down.gif) no-repeat}',
-      'a{background:url(test/fixtures/partials/extra/down.gif) no-repeat}'
+      'a{background:url(test/fixtures/partials/extra/down.gif)no-repeat}'
     ],
     'relative @import': [
       '@import url(base.css);',
-      'a{background:url(test/fixtures/partials/extra/down.gif) no-repeat}'
+      'a{background:url(test/fixtures/partials/extra/down.gif)no-repeat}'
     ],
     'absolute @import': [
       '@import url(/test/fixtures/partials-relative/base.css);',
-      'a{background:url(test/fixtures/partials/extra/down.gif) no-repeat}'
+      'a{background:url(test/fixtures/partials/extra/down.gif)no-repeat}'
     ],
     'document-local reference': [
       'svg{marker-end:url(#arrow)}', 'svg{marker-end:url(#arrow)}'
@@ -999,15 +1016,15 @@ path")}',
   'urls rewriting - no root but target as a directory': cssContext({
     'no @import': [
       'a{background:url(../partials/extra/down.gif) no-repeat}',
-      'a{background:url(test/fixtures/partials/extra/down.gif) no-repeat}'
+      'a{background:url(test/fixtures/partials/extra/down.gif)no-repeat}'
     ],
     'relative @import': [
       '@import url(base.css);',
-      'a{background:url(test/fixtures/partials/extra/down.gif) no-repeat}'
+      'a{background:url(test/fixtures/partials/extra/down.gif)no-repeat}'
     ],
     'absolute @import': [
       '@import url(/test/fixtures/partials-relative/base.css);',
-      'a{background:url(test/fixtures/partials/extra/down.gif) no-repeat}'
+      'a{background:url(test/fixtures/partials/extra/down.gif)no-repeat}'
     ],
     'document-local reference': [
       'svg{marker-end:url(#arrow)}', 'svg{marker-end:url(#arrow)}'
@@ -1019,15 +1036,15 @@ path")}',
   'urls rewriting - root and target': cssContext({
     'no @import': [
       'a{background:url(../partials/extra/down.gif) no-repeat}',
-      'a{background:url(/test/fixtures/partials/extra/down.gif) no-repeat}'
+      'a{background:url(/test/fixtures/partials/extra/down.gif)no-repeat}'
     ],
     'relative @import': [
       '@import url(base.css);',
-      'a{background:url(/test/fixtures/partials/extra/down.gif) no-repeat}'
+      'a{background:url(/test/fixtures/partials/extra/down.gif)no-repeat}'
     ],
     'absolute @import': [
       '@import url(/test/fixtures/partials-relative/base.css);',
-      'a{background:url(/test/fixtures/partials/extra/down.gif) no-repeat}'
+      'a{background:url(/test/fixtures/partials/extra/down.gif)no-repeat}'
     ],
     'document-local reference': [
       'svg{marker-end:url(#arrow)}', 'svg{marker-end:url(#arrow)}'
@@ -1040,7 +1057,7 @@ path")}',
   'urls rewriting - rebase off': cssContext({
     'keeps urls the same': [
       '@import url(base.css);',
-      'a{background:url(../partials/extra/down.gif) no-repeat}'
+      'a{background:url(../partials/extra/down.gif)no-repeat}'
     ],
   }, {
     target: path.join(process.cwd(), 'test.css'),
@@ -1048,7 +1065,7 @@ path")}',
     rebase: false
   }),
   'fonts': cssContext({
-    'keep format quotation': "@font-face{font-family:PublicVintage;src:url(/PublicVintage.otf) format('opentype')}",
+    'keep format quotation': "@font-face{font-family:PublicVintage;src:url(/PublicVintage.otf)format('opentype')}",
     'remove font family quotation': [
       "a{font-family:\"Helvetica\",'Arial'}",
       "a{font-family:Helvetica,Arial}"
@@ -1867,7 +1884,7 @@ title']{display:block}",
     ],
     'should merge background with background-image': [
       'a{background:0;background-image:url(hello_world)}',
-      'a{background:url(hello_world) 0}'
+      'a{background:url(hello_world)0}'
     ],
     'should NOT merge background with inherited background-image': [
       'a{background:0;background-image:inherit}',
@@ -1921,15 +1938,15 @@ title']{display:block}",
   'shorthand properties': cssContext({
     'shorthand background #1' : [
       'div{background-color:#111;background-image:url(aaa);background-repeat:repeat;background-position:0 0;background-attachment:scroll;background-size:auto}',
-      'div{background:url(aaa) #111}'
+      'div{background:url(aaa)#111}'
     ],
     'shorthand background #2' : [
       'div{background-color:#111;background-image:url(aaa);background-repeat:no-repeat;background-position:0 0;background-attachment:scroll;background-size:auto}',
-      'div{background:url(aaa) no-repeat #111}'
+      'div{background:url(aaa)no-repeat #111}'
     ],
     'shorthand important background' : [
       'div{background-color:#111!important;background-image:url(aaa)!important;background-repeat:repeat!important;background-position:0 0!important;background-attachment:scroll!important;background-size:auto!important}',
-      'div{background:url(aaa) #111!important}'
+      'div{background:url(aaa)#111!important}'
     ],
     'shorthand border-width': [
       '.t{border-top-width:7px;border-bottom-width:7px;border-left-width:4px;border-right-width:4px}',
@@ -1964,7 +1981,7 @@ title']{display:block}",
     ],
     'linear-gradient should NOT clear out background with color only, even if it has a color' : [
       'div{background:#fff;background:linear-gradient(whatever) #222}',
-      'div{background:#fff;background:linear-gradient(whatever) #222}'
+      'div{background:#fff;background:linear-gradient(whatever)#222}'
     ],
     'a background-image with just a linear-gradient should not be compacted to a shorthand' : [
       'div{background-color:#111;background-image:linear-gradient(aaa);background-repeat:no-repeat;background-position:0 0;background-attachment:scroll}',
@@ -1972,7 +1989,7 @@ title']{display:block}",
     ],
     'a background-image with a none and a linear-gradient should result in two shorthands' : [
       'div{background-color:#111;background-image:none;background-image:linear-gradient(aaa);background-repeat:repeat;background-position:0 0;background-attachment:scroll;background-size:auto}',
-      'div{background:#111;background:linear-gradient(aaa) #111}'
+      'div{background:#111;background:linear-gradient(aaa)#111}'
     ]
   }),
   'cares about understandability of border components': cssContext({
@@ -2017,7 +2034,7 @@ title']{display:block}",
   'shorthand granular properties when other granular properties are already covered by the shorthand': cssContext({
     'should consider the already existing margin to shorthand margin-top and margin-bottom': [
       'p{margin:5px;margin-top:foo(1);margin-left:foo(2)}',
-      'p{margin:5px;margin:foo(1) 5px 5px foo(2)}'
+      'p{margin:5px;margin:foo(1)5px 5px foo(2)}'
     ],
     'should merge margin-top and margin-left with shorthand if their understandability is the same': [
       'p{margin:5px;margin-top:1px;margin-left:2px}',
@@ -2055,7 +2072,7 @@ title']{display:block}",
     ],
     'should take into account important background-color and shorthand others into background': [
       'p{background-color:#9fce00!important;background-image:url(hello);background-attachment:scroll;background-position:1px 2px;background-repeat:repeat-y;background-size:auto}',
-      'p{background-color:#9fce00!important;background:url(hello) 1px 2px repeat-y}'
+      'p{background-color:#9fce00!important;background:url(hello)1px 2px repeat-y}'
     ],
     'should take into account important outline-color and default value of outline-width': [
       'p{outline:inset medium;outline-color:#9fce00!important;outline-style:inset!important}',
@@ -2063,7 +2080,7 @@ title']{display:block}",
     ],
     'should take into account important background-position remove its irrelevant counterpart': [
       'p{background:#9fce00 url(hello) 4px 5px;background-position:5px 3px!important}',
-      'p{background:url(hello) #9fce00;background-position:5px 3px!important}'
+      'p{background:url(hello)#9fce00;background-position:5px 3px!important}'
     ],
     'should take into account important background-position and assign the shortest possible value for its irrelevant counterpart': [
       'p{background:transparent;background-position:5px 3px!important}',
@@ -2191,15 +2208,15 @@ title']{display:block}",
     '@counter-style': '@counter-style triangle{system:cyclic;symbols:‣;suffix:" "}'
   }),
   'background size': cssContext({
-    'with background-position': 'a{background:url(top.jpg) 50% 0/auto 25% no-repeat}',
+    'with background-position': 'a{background:url(top.jpg)50% 0/auto 25% no-repeat}',
     'with background-position and spaces': [
       'a{background:url(top.jpg) 50% 0 / auto 25% no-repeat}',
-      'a{background:url(top.jpg) 50% 0/auto 25% no-repeat}'
+      'a{background:url(top.jpg)50% 0/auto 25% no-repeat}'
     ],
-    'with background-position shorthands': 'a{background:url(top.jpg) 50px/25% no-repeat}',
+    'with background-position shorthands': 'a{background:url(top.jpg)50px/25% no-repeat}',
     'with background-position shorthands and spaces': [
       'a{background:url(top.jpg) 0 / cover no-repeat}',
-      'a{background:url(top.jpg) 0/cover no-repeat}'
+      'a{background:url(top.jpg)0/cover no-repeat}'
     ],
     'with background-size property': [
       'a{background:none;background-image:url(1.png);background-size:28px 28px}',
@@ -2209,13 +2226,13 @@ title']{display:block}",
   'background position': cssContext({
     'calc as a value': [
       '*{background:white calc(100% - 10px) center no-repeat;background-image:url(test.png)}',
-      '*{background:url(test.png) calc(100% - 10px) center no-repeat #fff}'
+      '*{background:url(test.png)calc(100% - 10px)center no-repeat #fff}'
     ]
   }),
   'background size with +properties.backgroundSizeMerging': cssContext({
     'with background-size property': [
       'a{background:none;background-image:url(1.png);background-size:28px 28px}',
-      'a{background:url(1.png) 0 0/28px 28px}'
+      'a{background:url(1.png)0 0/28px 28px}'
     ]
   }, { compatibility: '+properties.backgroundSizeMerging' }),
   'multiple backgrounds': cssContext({
@@ -2242,11 +2259,11 @@ title']{display:block}",
     'border radius H+V': 'a{border-radius:50%/100%}',
     'lost background position': [
       '.one{background:50% no-repeat}.one{background-image:url(/img.png)}',
-      '.one{background:url(/img.png) 50% no-repeat}'
+      '.one{background:url(/img.png)50% no-repeat}'
     ],
     'merging color with backgrounds': [
       'p{background:red;background-image:url(1.png),url(2.png)}',
-      'p{background:url(1.png),url(2.png) red}'
+      'p{background:url(1.png),url(2.png)red}'
     ],
     'unknown @ rule': '@unknown "test";h1{color:red}',
     'property without a value': [
@@ -2259,7 +2276,10 @@ title']{display:block}",
     ]
   }),
   'advanced in ie8 mode': cssContext({
-    'plain component to complex shorthand': 'a{background:linear-gradient(to bottom,#000,#fff 4em) #000;background-color:#fff}',
+    'plain component to complex shorthand': [
+      'a{background:linear-gradient(to bottom,#000,#fff 4em) #000;background-color:#fff}',
+      'a{background:linear-gradient(to bottom,#000,#fff 4em)#000;background-color:#fff}'
+    ],
     'plain component to shorthand': [
       'a{background:url(bg.png) #000;background-color:#fff}',
       'a{background:url(bg.png) #fff}'
@@ -2271,6 +2291,6 @@ title']{display:block}",
   }),
   'variables': cssContext({
     'stripping': 'a{--border:#000}.one{border:1px solid var(--border)}',
-    'all values': 'a{--width:1px;--style:solid;--color:#000}.one{border:var(--width) var(--style) var(--color)}'
+    'all values': 'a{--width:1px;--style:solid;--color:#000}.one{border:var(--width)var(--style)var(--color)}'
   })
 }).export(module);
index e68fb8c..e4185d9 100644 (file)
@@ -213,7 +213,7 @@ vows.describe(SelectorsOptimizer)
     optimizerContext('@font-face', {
       'rebuilding': [
         '@font-face{font-family:PublicVintage;src:url(/PublicVintage.otf) format(\'opentype\')}',
-        '@font-face{font-family:PublicVintage;src:url(/PublicVintage.otf) format(\'opentype\')}'
+        '@font-face{font-family:PublicVintage;src:url(/PublicVintage.otf)format(\'opentype\')}'
       ]
     })
   )
index e9b59f8..f10a5e8 100644 (file)
@@ -467,4 +467,20 @@ vows.describe(SimpleOptimizer)
       ]
     })
   )
+  .addBatch(
+    propertyContext('whitespace', {
+      'stripped spaces': [
+        'div{text-shadow:rgba(255,1,1,.5) 1px}',
+        ['text-shadow:rgba(255,1,1,.5)1px']
+      ]
+    })
+  )
+  .addBatch(
+    propertyContext('whitespace in compatibility mode', {
+      'stripped spaces': [
+        'div{text-shadow:rgba(255,1,1,.5) 1px}',
+        ['text-shadow:rgba(255,1,1,.5) 1px']
+      ]
+    }, { compatibility: 'ie8' })
+  )
   .export(module);
index f2a75aa..c512a59 100644 (file)
@@ -4,19 +4,19 @@ var UrlsProcessor = require('../../lib/text/urls-processor');
 
 var lineBreak = require('os').EOL;
 
-function processorContext(name, context, saveWaypoints) {
+function processorContext(name, context, saveWaypoints, removeTrailingSpace) {
   var vowContext = {};
 
   function escaped (expected) {
     return function (source) {
-      var escaped = new UrlsProcessor(null, saveWaypoints).escape(source);
+      var escaped = new UrlsProcessor(null, saveWaypoints, removeTrailingSpace).escape(source);
       assert.equal(escaped, expected);
     };
   }
 
   function restored (expected) {
     return function (source) {
-      var processor = new UrlsProcessor(null, saveWaypoints);
+      var processor = new UrlsProcessor(null, saveWaypoints, removeTrailingSpace);
       var restored = processor.restore(processor.escape(source));
       assert.equal(restored, expected);
     };
@@ -117,4 +117,18 @@ vows.describe(UrlsProcessor)
       ]
     }, true)
   )
+  .addBatch(
+    processorContext('trailing space', {
+      'removed': [
+        'div{background:url(some/file.png) repeat}',
+        'div{background:__ESCAPED_URL_CLEAN_CSS0(0,18)__ repeat}',
+        'div{background:url(some/file.png)repeat}'
+      ],
+      'no space': [
+        'div{background:url(some/file.png)}',
+        'div{background:__ESCAPED_URL_CLEAN_CSS0(0,18)__}',
+        'div{background:url(some/file.png)}'
+      ]
+    }, true, true)
+  )
   .export(module);
index 48cd5cc..95b3fbb 100644 (file)
@@ -12,6 +12,7 @@ vows.describe(Compatibility)
         assert.isFalse(options.selectors.ie7Hack);
         assert.isFalse(options.properties.backgroundSizeMerging);
         assert.isTrue(options.properties.merging);
+        assert.isFalse(options.properties.spaceAfterClosingBrace);
         assert.isTrue(options.units.rem);
         assert.isTrue(options.colors.opacity);
         assert.deepEqual(options.selectors.special, /(\-moz\-|\-ms\-|\-o\-|\-webkit\-|:dir\([a-z-]*\)|:first(?![a-z-])|:fullscreen|:left|:read-only|:read-write|:right)/);
@@ -31,6 +32,7 @@ vows.describe(Compatibility)
         assert.isFalse(options.selectors.ie7Hack);
         assert.isFalse(options.properties.backgroundSizeMerging);
         assert.isTrue(options.properties.merging);
+        assert.isFalse(options.properties.spaceAfterClosingBrace);
         assert.isFalse(options.units.rem);
         assert.isTrue(options.colors.opacity);
         assert.deepEqual(options.selectors.special, /(\-moz\-|\-ms\-|\-o\-|\-webkit\-|:dir\([a-z-]*\)|:first(?![a-z-])|:fullscreen|:left|:read-only|:read-write|:right)/);
@@ -46,6 +48,7 @@ vows.describe(Compatibility)
         assert.isFalse(options.selectors.ie7Hack);
         assert.isFalse(options.properties.backgroundSizeMerging);
         assert.isFalse(options.properties.merging);
+        assert.isTrue(options.properties.spaceAfterClosingBrace);
         assert.isFalse(options.units.rem);
         assert.isFalse(options.colors.opacity);
         assert.deepEqual(options.selectors.special, /(\-moz\-|\-ms\-|\-o\-|\-webkit\-|:root|:nth|:first\-of|:last|:only|:empty|:target|:checked|::selection|:enabled|:disabled|:not)/);
@@ -59,6 +62,7 @@ vows.describe(Compatibility)
         assert.isTrue(options.selectors.ie7Hack);
         assert.isFalse(options.properties.backgroundSizeMerging);
         assert.isFalse(options.properties.merging);
+        assert.isTrue(options.properties.spaceAfterClosingBrace);
         assert.isFalse(options.units.rem);
         assert.isFalse(options.colors.opacity);
         assert.deepEqual(options.selectors.special, /(\-moz\-|\-ms\-|\-o\-|\-webkit\-|:focus|:before|:after|:root|:nth|:first\-of|:last|:only|:empty|:target|:checked|::selection|:enabled|:disabled|:not)/);
@@ -80,6 +84,7 @@ vows.describe(Compatibility)
         assert.isFalse(options.selectors.ie7Hack);
         assert.isFalse(options.properties.backgroundSizeMerging);
         assert.isFalse(options.properties.merging);
+        assert.isTrue(options.properties.spaceAfterClosingBrace);
         assert.isFalse(options.units.rem);
         assert.isTrue(options.colors.opacity);
         assert.deepEqual(options.selectors.special, /(\-moz\-|\-ms\-|\-o\-|\-webkit\-|:root|:nth|:first\-of|:last|:only|:empty|:target|:checked|::selection|:enabled|:disabled|:not)/);
@@ -93,6 +98,7 @@ vows.describe(Compatibility)
         assert.isFalse(options.selectors.ie7Hack);
         assert.isFalse(options.properties.backgroundSizeMerging);
         assert.isTrue(options.properties.merging);
+        assert.isFalse(options.properties.spaceAfterClosingBrace);
         assert.isTrue(options.units.rem);
         assert.isTrue(options.colors.opacity);
         assert.deepEqual(options.selectors.special, /(\-moz\-|\-ms\-|\-o\-|\-webkit\-|:dir\([a-z-]*\)|:first(?![a-z-])|:fullscreen|:left|:read-only|:read-write|:right)/);
@@ -106,6 +112,7 @@ vows.describe(Compatibility)
         assert.isFalse(options.selectors.ie7Hack);
         assert.isFalse(options.properties.backgroundSizeMerging);
         assert.isTrue(options.properties.merging);
+        assert.isFalse(options.properties.spaceAfterClosingBrace);
         assert.isFalse(options.units.rem);
         assert.isTrue(options.colors.opacity);
         assert.deepEqual(options.selectors.special, /(\-moz\-|\-ms\-|\-o\-|\-webkit\-|:dir\([a-z-]*\)|:first(?![a-z-])|:fullscreen|:left|:read-only|:read-write|:right)/);