Skip to main content

In The Public Interest : Open Textbooks and the Tech-Friendly Generation














BREAKING NEWS


































In The Public Interest : Open Textbooks and the Tech-Friendly Generation






09/30/2010 02:59 pm ET

Updated
May 25, 2011













This September I entered my first year at the University of Montana, Missoula. Along with all the typical freshman year excitement of orientation and making new friends, I planned my schedule for the semester and went to buy my first college textbooks. I spent a whopping $650 on textbooks for just this semester--not unheard of for a science major. I thought I might have been an extreme case, so I was shocked to learn that in 2003-4 the average college student spent $900 on textbooks .


It was then that I decided to take on the Student PIRGs' textbooks campaign because I felt that if there was a possibility that I could make a difference for students here in Missoula, I should try.


Textbooks are expensive, especially considering the amount of debt most students rack up by the time they graduate. I've already started looking into taking out student loans in order to pay for the rest of my college career, and I know I'm not the only one. Having worked with MontPIRG this summer, I was excited to become the campaign coordinator working to make textbooks more affordable at my university.


It's a great time to be working on Textbooks. Recently, we've seen progress in textbook affordability, and on July 1st, when regulations passed in Congress in 2008 kicked-in requiring publishers to disclose pricing information to professors and offer all textbooks unbundled. However, in our high-tech society, there is much more to do in the realm of textbook affordability to ensure that high textbook prices are not the tipping point between affording a degree and dropping out.


Just today, the StudentPIRGs released a report called A Cover to Cover Solution: How Open Textbooks are the Path to Textbook Affordability which shows a much more affordable way for students to use textbooks and buy other optional add-ons that have revolutionized the industry. The report shows that by using open textbooks, the average student could save 80% in textbook costs. One pioneer in the industry is Flat World Knowledge, a small company that has developed a sustainable model for free online open textbooks, which have triggered positive student responses and address a variety of student preferences.


You might think that some students might not be interested in open textbooks because it can be hard staring at a computer screen for hours at a time in order to finish an assignment. But here is the beauty of open textbooks: students can use them differently according to personal preferences. Open textbooks offer inexpensive black and white print editions for those students who love to highlight and mark-up their readings, to interactive CDs and workbooks for those who like to practice their newly learned skills, and of course the digital versions for the high-tech or cash-strapped folks who don't mind being glued to their computer screens.


By reinventing the textbooks economy online, prices will only get lower as companies compete to satisfy students. More and more options are becoming available, from extra packages and color-printing to professors having the ability to customize the materials their students download. As open textbooks become more popular, their subject range, variety, and quantity of authors will increase tenfold.


No one wants to spend hundreds of dollars on textbooks when we're already worried about paying for everything else college-related. Making textbooks more affordable is doable and necessary, and I'm coordinating this campaign at my university because we can make it happen. Faculty across the U.S. should consider open textbooks in order to help save their students from breaking the bank, and government programs should prioritize open textbooks to keep students from graduating beneath a suffocating pile of debt.























































window.HP.modules.smarten.selector('.js-entry');







































window.HP.modules.smarten.selector('.js-nav-sticky');










(function(){
/*
* Konami-JS ~
* :: Now with support for touch events and multiple instances for
* :: those situations that call for multiple easter eggs!
* Code: https://github.com/snaptortoise/konami-js
* Copyright (c) 2009 George Mandis (georgemandis.com, snaptortoise.com)
* Version: 1.6.2 (7/17/2018)
* Licensed under the MIT License (http://opensource.org/licenses/MIT)
* Tested in: Safari 4+, Google Chrome 4+, Firefox 3+, IE7+, Mobile Safari 2.2.1+ and Android
*/

var Konami = function (callback) {
var konami = {
addEvent: function (obj, type, fn, ref_obj) {
if (obj.addEventListener)
obj.addEventListener(type, fn, false);
else if (obj.attachEvent) {
// IE
obj["e" + type + fn] = fn;
obj[type + fn] = function () {
obj["e" + type + fn](window.event, ref_obj);
}
obj.attachEvent("on" + type, obj[type + fn]);
}
},
removeEvent: function (obj, eventName, eventCallback) {
if (obj.removeEventListener) {
obj.removeEventListener(eventName, eventCallback);
} else if (obj.attachEvent) {
obj.detachEvent(eventName);
}
},
input: "",
pattern: "38384040373937396665",
keydownHandler: function (e, ref_obj) {
if (ref_obj) {
konami = ref_obj;
} // IE
konami.input += e ? e.keyCode : event.keyCode;
if (konami.input.length > konami.pattern.length) {
konami.input = konami.input.substr((konami.input.length - konami.pattern.length));
}
if (konami.input === konami.pattern) {
konami.code(konami._currentLink);
konami.input = '';
e.preventDefault();
return false;
}
},
load: function (link) {
this._currentLink = link;
this.addEvent(document, "keydown", this.keydownHandler, this);
this.iphone.load(link);
},
unload: function () {
this.removeEvent(document, 'keydown', this.keydownHandler);
this.iphone.unload();
},
code: function (link) {
window.location = link
},
iphone: {
start_x: 0,
start_y: 0,
stop_x: 0,
stop_y: 0,
tap: false,
capture: false,
orig_keys: "",
keys: ["UP", "UP", "DOWN", "DOWN", "LEFT", "RIGHT", "LEFT", "RIGHT", "TAP", "TAP"],
input: ,
code: function (link) {
konami.code(link);
},
touchmoveHandler: function (e) {
if (e.touches.length === 1 && konami.iphone.capture === true) {
var touch = e.touches[0];
konami.iphone.stop_x = touch.pageX;
konami.iphone.stop_y = touch.pageY;
konami.iphone.tap = false;
konami.iphone.capture = false;
konami.iphone.check_direction();
}
},
touchendHandler: function () {
konami.iphone.input.push(konami.iphone.check_direction());

if (konami.iphone.input.length > konami.iphone.keys.length) konami.iphone.input.shift();

if (konami.iphone.input.length === konami.iphone.keys.length) {
var match = true;
for (var i = 0; i < konami.iphone.keys.length; i++) {
if (konami.iphone.input[i] !== konami.iphone.keys[i]) {
match = false;
}
}
if (match) {
konami.iphone.code(konami._currentLink);
}
}
},
touchstartHandler: function (e) {
konami.iphone.start_x = e.changedTouches[0].pageX;
konami.iphone.start_y = e.changedTouches[0].pageY;
konami.iphone.tap = true;
konami.iphone.capture = true;
},
load: function (link) {
this.orig_keys = this.keys;
konami.addEvent(document, "touchmove", this.touchmoveHandler);
konami.addEvent(document, "touchend", this.touchendHandler, false);
konami.addEvent(document, "touchstart", this.touchstartHandler);
},
unload: function () {
konami.removeEvent(document, 'touchmove', this.touchmoveHandler);
konami.removeEvent(document, 'touchend', this.touchendHandler);
konami.removeEvent(document, 'touchstart', this.touchstartHandler);
},
check_direction: function () {
x_magnitude = Math.abs(this.start_x - this.stop_x);
y_magnitude = Math.abs(this.start_y - this.stop_y);
x = ((this.start_x - this.stop_x) < 0) ? "RIGHT" : "LEFT";
y = ((this.start_y - this.stop_y) y_magnitude) ? x : y;
result = (this.tap === true) ? "TAP" : result;
return result;
}
}
}

typeof callback === "string" && konami.load(callback);
if (typeof callback === "function") {
konami.code = callback;
konami.load();
}

return konami;
};


if (typeof module !== 'undefined' && typeof module.exports !== 'undefined') {
module.exports = Konami;
} else {
if (typeof define === 'function' && define.amd) {
define(, function() {
return Konami;
});
} else {
window.Konami = Konami;
}
}
var shuffle = function (array) {

var currentIndex = array.length;
var temporaryValue, randomIndex;

// While there remain elements to shuffle...
while (0 !== currentIndex) {
// Pick a remaining element...
randomIndex = Math.floor(Math.random() * currentIndex);
currentIndex -= 1;

// And swap it with the current element.
temporaryValue = array[currentIndex];
array[currentIndex] = array[randomIndex];
array[randomIndex] = temporaryValue;
}

return array;

};
var images = [
"5c1d1d2c240000d60658b2e3",
"5c1d1d5124000001018c891f",
"5c1d1d9f2200002a08debaff",
"5c1d1db5240000f1059a3696",
"5c1d1dda210000e109caa693",
"5c1d1dfa2200000307debb00",
"5c1d1e1f1d00002c0231b1ef",
"5c1d1e413c00007d050f368d",
"5c1d1e8d240000dd0558b2e6",
"5c1d1f5f240000f1059a3697",
"5c1d1f83240000ed059a3698",
"5c1d1fd02600004f0584f85d",
"5c1d20003c0000b1050f368f",
"5c1d202d240000ff008c8920",
"5c1d204c3c0000b1050f3690",
"5c1d209c260000490584f85e",
"5c1d2fe31d00002c0231b1fa",
"5c1d43ce210000d409caa6a4",
"5c1d440d2600004f0584f86f",
"5c1d46ac2200000307debb0f",
"5c1d5d72240000dd0558b2fa",
"5c1d5dc51f0000cc0826b5d7",
"5c1d5df3240000f1059a36b9",
"5c1d5e471f00001b0826b5d8",
"5c1d5f9a24000031008c8931",
"5c1d5fd4260000530584f877",
"5c1d60162200002a08debb18",
"5c1d605e2200002a08debb19",
"5c1d60f71f00001b0826b5d9",
"5c1d614f2400006b049a36ba",
"5c1d61ea240000090758b2fc",
"5c1d6241210000dd09caa6a9",
"5c1d62851d0000250231b20a",
"5c1d62b1240000d60658b2fd",
"5c1d63711f0000cb0826b5da",
"5c1d63ad240000ed059a36bb",
"5c1d627124000001018c8934",
"5c2cddbd240000ff008c8c48",
"5c2cde2b1f00002f0926b8a8",
"5c2cde8f2200003309debddf",
"5c2cdeed210000e109caa965",
"5c2cdfa53c00006c060f396d",
"5c2cdfe72200003209debde1"
];

var easter_egg = new Konami(function() {
var fluffpost_images = shuffle(images).concat(shuffle(images));
document.querySelectorAll('div.card__image__src, .card__author-headshot__src').forEach(function(div){
if(fluffpost_images.length > 0) {
var old_image = div.style.backgroundImage;
div.style.backgroundImage = old_image.replace(/(url("https://img.huffingtonpost.com/asset/)[dw]+(..*"))/, "$1"+fluffpost_images.shift()+"$2");
}
})
document.querySelectorAll('img.card__image__src').forEach(function(img){
if(fluffpost_images.length > 0) {
if(!!img.src.match(/^data:/)) {
img.src = 'https://img.huffingtonpost.com/asset/'+fluffpost_images.shift()+'.jpeg?ops='+img.width+'_'+img.height+',quality_75'
} else {
img.src = img.src.replace(/(https://img.huffingtonpost.com/asset/)[dw]+(..*)/, "$1"+fluffpost_images.shift()+"$2");
}
}
});
document.querySelectorAll('.plr-card__image__wrapper').forEach(function(div){
if(fluffpost_images.length > 0) {
div.style.backgroundImage = 'url(https://img.huffingtonpost.com/asset/'+fluffpost_images.shift()+'.jpeg?ops='+div.offsetWidth+'_'+div.offsetHeight+',quality_75)'
}
});
document.querySelector('.logo__img').src = "https://big.assets.huffingtonpost.com/athena/files/2019/01/02/5c2ce17fe4b05c88b704e9b3.svg";
});
}());

window.mediaconductor = window.mediaconductor || function(){(mediaconductor.q=mediaconductor.q||).push(arguments);};
mediaconductor("init", "d05ce97492f5478d864f1b629b02a278");
mediaconductor("exec");

//console.log("registering 50b9b9b4-1f4f-4c41-94e8-dc7e6dd30814 on target .js-bottom-most-shared .card.recirc__item:eq(1)");
window.__yahooFlurry.register("50b9b9b4-1f4f-4c41-94e8-dc7e6dd30814");
waitForGlobal(function() {
return window.jQuery && window.jQuery(".js-bottom-most-shared .card.recirc__item:eq(1)").length > 0;
}, function() {
var w_yahoo = (top == self) ? window : window.top, d_yahoo = w_yahoo.document;
w_yahoo.adUnitCode = w_yahoo.adUnitCode || ;
w_yahoo.adUnitCode.push("50b9b9b4-1f4f-4c41-94e8-dc7e6dd30814");
var $yahooDiv = $("
");
if ( "replace" === "insertBefore" || "replace" === "replace" ) {
$yahooDiv.insertBefore(".js-bottom-most-shared .card.recirc__item:eq(1)");
if ( "replace" === "replace" ) {
window.__yahooFlurry.addToCleanup("50b9b9b4-1f4f-4c41-94e8-dc7e6dd30814", "polar-gemini-most-shared", $(".js-bottom-most-shared .card.recirc__item:eq(1)")[0].outerHTML);
$(".js-bottom-most-shared .card.recirc__item:eq(1)").remove();
}
} else {
$yahooDiv.insertAfter(".js-bottom-most-shared .card.recirc__item:eq(1)");
}
window.__yahooFlurry.ready("50b9b9b4-1f4f-4c41-94e8-dc7e6dd30814");
});

//console.log("registering 2e63d6ca-115c-4d45-8b46-bdb10c4f0a97 on target .js-bottom-trending .card.recirc__item:eq(1)");
window.__yahooFlurry.register("2e63d6ca-115c-4d45-8b46-bdb10c4f0a97");
waitForGlobal(function() {
return window.jQuery && window.jQuery(".js-bottom-trending .card.recirc__item:eq(1)").length > 0;
}, function() {
var w_yahoo = (top == self) ? window : window.top, d_yahoo = w_yahoo.document;
w_yahoo.adUnitCode = w_yahoo.adUnitCode || ;
w_yahoo.adUnitCode.push("2e63d6ca-115c-4d45-8b46-bdb10c4f0a97");
var $yahooDiv = $("
");
if ( "replace" === "insertBefore" || "replace" === "replace" ) {
$yahooDiv.insertBefore(".js-bottom-trending .card.recirc__item:eq(1)");
if ( "replace" === "replace" ) {
window.__yahooFlurry.addToCleanup("2e63d6ca-115c-4d45-8b46-bdb10c4f0a97", "polar-gemini-whats-hot-2", $(".js-bottom-trending .card.recirc__item:eq(1)")[0].outerHTML);
$(".js-bottom-trending .card.recirc__item:eq(1)").remove();
}
} else {
$yahooDiv.insertAfter(".js-bottom-trending .card.recirc__item:eq(1)");
}
window.__yahooFlurry.ready("2e63d6ca-115c-4d45-8b46-bdb10c4f0a97");
});

//console.log("registering 8d56971c-e73b-4a08-8f94-26ce0a000e70 on target .js-bottom-trending .card.recirc__item:eq(5)");
window.__yahooFlurry.register("8d56971c-e73b-4a08-8f94-26ce0a000e70");
waitForGlobal(function() {
return window.jQuery && window.jQuery(".js-bottom-trending .card.recirc__item:eq(5)").length > 0;
}, function() {
var w_yahoo = (top == self) ? window : window.top, d_yahoo = w_yahoo.document;
w_yahoo.adUnitCode = w_yahoo.adUnitCode || ;
w_yahoo.adUnitCode.push("8d56971c-e73b-4a08-8f94-26ce0a000e70");
var $yahooDiv = $("
");
if ( "replace" === "insertBefore" || "replace" === "replace" ) {
$yahooDiv.insertBefore(".js-bottom-trending .card.recirc__item:eq(5)");
if ( "replace" === "replace" ) {
window.__yahooFlurry.addToCleanup("8d56971c-e73b-4a08-8f94-26ce0a000e70", "polar-gemini-whats-hot-7", $(".js-bottom-trending .card.recirc__item:eq(5)")[0].outerHTML);
$(".js-bottom-trending .card.recirc__item:eq(5)").remove();
}
} else {
$yahooDiv.insertAfter(".js-bottom-trending .card.recirc__item:eq(5)");
}
window.__yahooFlurry.ready("8d56971c-e73b-4a08-8f94-26ce0a000e70");
});

window.addEventListener('load', function() {
var ref = document.getElementsByTagName("script")[0];
var script = document.createElement("script");
script.src = 'https://s.skimresources.com/js/38395X1559799.skimlinks.js';
script.async = true;
ref.parentNode.insertBefore(script, ref);
}, false);

waitForGlobal(function(){
return window.__yahooFlurry.isReady();
}, function() {
//console.log("loading flurry yap.js");
var w_yahoo = (top == self) ? window : window.top, d_yahoo = w_yahoo.document;
w_yahoo.apiKey = "NZQB268N5MHYSQTVQ8D2";
(function(){
var script = d_yahoo.createElement("script");
// script.async = true;
if ( "" ) {
script.src = "";
} else {
script.src = "https://s.yimg.com/av/yap/ga/yap.js";
}
script.onload = function() {
//console.log('yap.js loaded');
//console.log('adUnitCode', w_yahoo.adUnitCode);
};
d_yahoo.body.appendChild(script);
// window.console.log(w_yahoo.adUnitCode);
window.__yahooFlurry.cleanup();
})();
});

window._taboola = window._taboola || ;
_taboola.push({flush:true});










HP.functions.loadCSS('https://s.m.huffpost.com/assets/desktop-594cae8ee68332a89870016460c0e5eb99fc46a0b029596332e74c5976cec5b0.css');


window.comscore_data = {"c1":2,"c2":6723616,"c3":"","c4":"/us/entry/745672","c5":"politics","c6":"","c15":"","options":{"url_append":"comscorekw=politics"}};
window.comscore_data.c4 = location.protocol+"//"+location.host+window.comscore_data.c4;

window.yahooDotConfig = {"projectId":"10000","properties":{"pixelId":"428726","qstrings":{"site":"HuffPost","ec":"politics-news","el":"politics","ev":"college-students|student-debt|education-policy|politics|publishing-industry|student-loans|professors|higher-education|textbooks|college","pt":"content","pct":"story"}}};




waitForGlobal(function() {
return window.PARSELY && window.PARSELY.beacon;
}, function() {
PARSELY.beacon.trackPageView({
url: window.location.href,
urlref: HP.params.original_url,
js: 1
});
});

waitForGlobal(function() {
return !!window.HP.modules.Tracky;
}, function() {
window.HP.modules.Tracky.comscore(window.comscore_data);
})

waitForGlobal(function() {
return !!window.HP.modules.Tracky;
}, function() {
window.HP.modules.Tracky.yahooDot('page_view');
});



HP.modules.ads.slideshowLeft = "";
HP.modules.ads.slideshowEndCard = "nn";
HP.modules.ads.rightRailRecircCards = ;
HP.modules.ads.rightRailVideoCards = ;
HP.modules.ads.slideshowTop = "";
HP.modules.ads.categoriesBottom = "";
HP.modules.ads.rightRailSwap = "nn";

(function(){
window.HP || (window.HP = {});
window.HP.params || (window.HP.params = {});
Object.assign(window.HP.params, {"device":"desktop","is_front":null,"apage_layout":null,"page_type":"b-page","disableStickyNav":false,"entryId":"us_745672","noRecirc":null,"recircTag":null,"topic":"college-students","notificationImage":"https://s.m.huffpost.com/assets/abstract-H-d3a337014e8391626019a53ea77785ac75bba39561d5b0d0283e5a8d8e530bac.png","social":{"excludeInlineNewsletter":false,"newsletters":{"track-hate":{"square":{"placement":"square","id":"be024c4b452c69e094843fdbb4563b0c","slug":"track-hate","name":"Subscribe to HuffPost Fringe","description":"White supremacy won't fall with just a few statues.","provider":"cm","image":"https://img.huffingtonpost.com/asset/598f3ad4140000401aed0615.jpeg?cache=btmr0oj7jp&ops=resize_450_450","caption":"CHARLOTTESVILLE, USA - AUGUST 11: Neo Nazis, Alt-Right, and White Supremacists encircle and chant at counter protestors at the base of a statue of Thomas Jefferson after marching through the University of Virginia campus with torches in Charlottesville, Va., USA on August 11, 2017. (Photo by Samuel Corum/Anadolu Agency/Getty Images)","credit":"Anadolu Agency via Getty Images","hide_logo":false,"one_line":false,"separate_image":false},"inlineWideBackgroundImage":{"placement":"inlineWideBackgroundImage","id":"be024c4b452c69e094843fdbb4563b0c","slug":"track-hate","name":"HuffPost Fringe","description":"White supremacy won't fall with just a few statues. Get our latest coverage of race and hate.","provider":"cm","image":"https://img.huffingtonpost.com/asset/598f3ad4140000401aed0615.jpeg?cache=btmr0oj7jp&ops=resize_1080_375","caption":"CHARLOTTESVILLE, USA - AUGUST 11: Neo Nazis, Alt-Right, and White Supremacists encircle and chant at counter protestors at the base of a statue of Thomas Jefferson after marching through the University of Virginia campus with torches in Charlottesville, Va., USA on August 11, 2017. (Photo by Samuel Corum/Anadolu Agency/Getty Images)","credit":"Anadolu Agency via Getty Images","hide_logo":false,"one_line":true,"separate_image":false},"wideWithBackgroundImageCheckbox":{"placement":"wideWithBackgroundImageCheckbox","id":"be024c4b452c69e094843fdbb4563b0c","slug":"track-hate","name":"HuffPost Fringe","description":"White supremacy won't fall with just a few statues. Get our latest coverage of race and hate.","provider":"cm","image":"https://img.huffingtonpost.com/asset/598f3ad4140000401aed0615.jpeg?cache=btmr0oj7jp&ops=resize_480_127","caption":"CHARLOTTESVILLE, USA - AUGUST 11: Neo Nazis, Alt-Right, and White Supremacists encircle and chant at counter protestors at the base of a statue of Thomas Jefferson after marching through the University of Virginia campus with torches in Charlottesville, Va., USA on August 11, 2017. (Photo by Samuel Corum/Anadolu Agency/Getty Images)","credit":"Anadolu Agency via Getty Images","hide_logo":false,"one_line":false,"separate_image":false},"toasterExtraWide":{"placement":"toasterExtraWide","id":"be024c4b452c69e094843fdbb4563b0c","slug":"track-hate","name":"HuffPost Fringe","description":"White supremacy won't fall with just a few statues. Get our latest coverage of race and hate.","provider":"cm","image":"https://img.huffingtonpost.com/asset/598f3ad4140000401aed0615.jpeg?cache=btmr0oj7jp&ops=resize_2100_300","caption":"CHARLOTTESVILLE, USA - AUGUST 11: Neo Nazis, Alt-Right, and White Supremacists encircle and chant at counter protestors at the base of a statue of Thomas Jefferson after marching through the University of Virginia campus with torches in Charlottesville, Va., USA on August 11, 2017. (Photo by Samuel Corum/Anadolu Agency/Getty Images)","credit":"Anadolu Agency via Getty Images","hide_logo":false,"one_line":true,"separate_image":false},"inlineVerticalSeparateImage":{"placement":"inlineVerticalSeparateImage","id":"be024c4b452c69e094843fdbb4563b0c","slug":"track-hate","name":"Subscribe to HuffPost Fringe","description":"White supremacy won't fall with just a few statues.","provider":"cm","image":"https://img.huffingtonpost.com/asset/5996ec742700003100d4fa6c.jpeg?cache=d1rmsavqb8&ops=resize_750_421","caption":"USA Washington DC August 28 1963 The March on Washington","credit":"Leonard Freed/Magnum","hide_logo":true,"one_line":false,"separate_image":true},"inlineWideSeparateImage":{"placement":"inlineWideSeparateImage","id":"be024c4b452c69e094843fdbb4563b0c","slug":"track-hate","name":"Subscribe to HuffPost Fringe","description":"White supremacy won't fall with just a few statues.","provider":"cm","image":"https://img.huffingtonpost.com/asset/5996ec742700003100d4fa6c.jpeg?cache=d1rmsavqb8&ops=resize_937_525","caption":"USA Washington DC August 28 1963 The March on Washington","credit":"Leonard Freed/Magnum","hide_logo":true,"one_line":false,"separate_image":true},"modalVertical":{"placement":"modalVertical","id":"be024c4b452c69e094843fdbb4563b0c","slug":"track-hate","name":"Subscribe to HuffPost Fringe","description":"White supremacy won't fall with just a few statues.","provider":"cm","image":"https://img.huffingtonpost.com/asset/5996ec742700003100d4fa6c.jpeg?cache=d1rmsavqb8&ops=resize_750_421","caption":"USA Washington DC August 28 1963 The March on Washington","credit":"Leonard Freed/Magnum","hide_logo":true,"one_line":false,"separate_image":true},"modalHorizontal":{"placement":"modalHorizontal","id":"be024c4b452c69e094843fdbb4563b0c","slug":"track-hate","name":"Subscribe to HuffPost Fringe","description":"White supremacy won't fall with just a few statues.","provider":"cm","image":"https://img.huffingtonpost.com/asset/5996ec742700003100d4fa6c.jpeg?cache=d1rmsavqb8&ops=resize_637_637","caption":"USA Washington DC August 28 1963 The March on Washington","credit":"Leonard Freed/Magnum","hide_logo":true,"one_line":false,"separate_image":true},"hub":{"placement":"hub","id":"be024c4b452c69e094843fdbb4563b0c","slug":"track-hate","name":"HuffPost Fringe","description":"White supremacy won't fall with just a few statues. Get our latest coverage of race and hate.","provider":"cm","image":"https://img.huffingtonpost.com/asset/598f3ad4140000401aed0615.jpeg?cache=btmr0oj7jp&ops=resize_450_450","caption":"CHARLOTTESVILLE, USA - AUGUST 11: Neo Nazis, Alt-Right, and White Supremacists encircle and chant at counter protestors at the base of a statue of Thomas Jefferson after marching through the University of Virginia campus with torches in Charlottesville, Va., USA on August 11, 2017. (Photo by Samuel Corum/Anadolu Agency/Getty Images)","credit":"Anadolu Agency via Getty Images","hide_logo":false,"one_line":false,"separate_image":false},"subscribePageExtraWide":{"placement":"subscribePageExtraWide","id":"be024c4b452c69e094843fdbb4563b0c","slug":"track-hate","name":"Subscribe to HuffPost Fringe","description":"White supremacy won't fall with just a few statues.","provider":"cm","image":"https://img.huffingtonpost.com/asset/598f3ad4140000401aed0615.jpeg?cache=btmr0oj7jp&ops=resize_2100_300","caption":"CHARLOTTESVILLE, USA - AUGUST 11: Neo Nazis, Alt-Right, and White Supremacists encircle and chant at counter protestors at the base of a statue of Thomas Jefferson after marching through the University of Virginia campus with torches in Charlottesville, Va., USA on August 11, 2017. (Photo by Samuel Corum/Anadolu Agency/Getty Images)","credit":"Anadolu Agency via Getty Images","hide_logo":true,"one_line":false,"separate_image":false}},"the-morning-email":{"square":{"placement":"square","id":"c1fb2d6bc59dbabb03c6369b73d9ece3","slug":"the-morning-email","name":"Subscribe to The Morning Email.","description":"Wake up to the day's most important news.","provider":"cm","image":"https://img.huffingtonpost.com/asset/59e0fa012d0000971730a32b.jpeg?ops=resize_450_450","caption":null,"credit":"HuffPost","hide_logo":false,"one_line":false,"separate_image":false},"inlineWideBackgroundImage":{"placement":"inlineWideBackgroundImage","id":"c1fb2d6bc59dbabb03c6369b73d9ece3","slug":"the-morning-email","name":"Subscribe to The Morning Email.","description":"Wake up to the day's most important news.","provider":"cm","image":"https://img.huffingtonpost.com/asset/59e0f9e81500004800da1588.jpeg?ops=resize_1080_375","caption":null,"credit":"HuffPost","hide_logo":false,"one_line":true,"separate_image":false},"wideWithBackgroundImageCheckbox":{"placement":"wideWithBackgroundImageCheckbox","id":"c1fb2d6bc59dbabb03c6369b73d9ece3","slug":"the-morning-email","name":"The Morning Email","description":"Wake up to the day's most important news.","provider":"cm","image":"https://img.huffingtonpost.com/asset/59e112062000000934086b50.png?ops=resize_480_127","caption":null,"credit":"HuffPost","hide_logo":false,"one_line":false,"separate_image":false},"toasterExtraWide":{"placement":"toasterExtraWide","id":"c1fb2d6bc59dbabb03c6369b73d9ece3","slug":"the-morning-email","name":"The Morning Email","description":"Wake up to the day's most important news.","provider":"cm","image":"https://img.huffingtonpost.com/asset/default-newsletter.jpg?ops=resize_2100_300","caption":null,"credit":null,"hide_logo":false,"one_line":true,"separate_image":false},"inlineVerticalSeparateImage":{"placement":"inlineVerticalSeparateImage","id":"c1fb2d6bc59dbabb03c6369b73d9ece3","slug":"the-morning-email","name":"The Morning Email","description":"Wake up to the day's most important news.","provider":"cm","image":"https://img.huffingtonpost.com/asset/default-newsletter.jpg?ops=resize_750_421","caption":null,"credit":null,"hide_logo":true,"one_line":false,"separate_image":true},"inlineWideSeparateImage":{"placement":"inlineWideSeparateImage","id":"c1fb2d6bc59dbabb03c6369b73d9ece3","slug":"the-morning-email","name":"The Morning Email","description":"Wake up to the day's most important news.","provider":"cm","image":"https://img.huffingtonpost.com/asset/default-newsletter.jpg?ops=resize_937_525","caption":null,"credit":null,"hide_logo":true,"one_line":false,"separate_image":true},"modalVertical":{"placement":"modalVertical","id":"c1fb2d6bc59dbabb03c6369b73d9ece3","slug":"the-morning-email","name":"The Morning Email","description":"Wake up to the day's most important news.","provider":"cm","image":"https://img.huffingtonpost.com/asset/default-newsletter.jpg?ops=resize_750_421","caption":null,"credit":null,"hide_logo":true,"one_line":false,"separate_image":true},"modalHorizontal":{"placement":"modalHorizontal","id":"c1fb2d6bc59dbabb03c6369b73d9ece3","slug":"the-morning-email","name":"The Morning Email","description":"Wake up to the day's most important news.","provider":"cm","image":"https://img.huffingtonpost.com/asset/default-newsletter.jpg?ops=resize_637_637","caption":null,"credit":null,"hide_logo":true,"one_line":false,"separate_image":true},"hub":{"placement":"hub","id":"c1fb2d6bc59dbabb03c6369b73d9ece3","slug":"the-morning-email","name":"The Morning Email","description":"Wake up to the day's most important news.","provider":"cm","image":"https://img.huffingtonpost.com/asset/default-newsletter.jpg?ops=resize_450_450","caption":null,"credit":null,"hide_logo":false,"one_line":false,"separate_image":false},"subscribePageExtraWide":{"placement":"subscribePageExtraWide","id":"c1fb2d6bc59dbabb03c6369b73d9ece3","slug":"the-morning-email","name":"Subscribe to The Morning Email.","description":"Wake up to the day's most important news.","provider":"cm","image":"https://img.huffingtonpost.com/asset/59e0fa262d0000265e30a32c.jpeg?ops=resize_2100_300","caption":null,"credit":"HuffPost","hide_logo":true,"one_line":false,"separate_image":false}},"must-reads":{"square":{"placement":"square","id":"b5bbbc5491b72ecacda44108284be2a2","slug":"must-reads","name":"Subscribe to Must Reads","description":"The internet's best stories, and interviews with their authors.","provider":"cm","image":"https://img.huffingtonpost.com/asset/59e11ac82d0000265e30a3e4.png?ops=resize_450_450","caption":null,"credit":"HuffPost","hide_logo":false,"one_line":false,"separate_image":false},"inlineWideBackgroundImage":{"placement":"inlineWideBackgroundImage","id":"b5bbbc5491b72ecacda44108284be2a2","slug":"must-reads","name":"Subscribe to Must Reads","description":"The internet's best stories, and interviews with their authors.","provider":"cm","image":"https://img.huffingtonpost.com/asset/59e11ab21500002000da164f.jpeg?ops=resize_1080_375","caption":null,"credit":"HuffPost","hide_logo":false,"one_line":true,"separate_image":false},"wideWithBackgroundImageCheckbox":{"placement":"wideWithBackgroundImageCheckbox","id":"b5bbbc5491b72ecacda44108284be2a2","slug":"must-reads","name":"Must Reads","description":"The internet's best stories, and interviews with their authors.","provider":"cm","image":"https://img.huffingtonpost.com/asset/59e11afe2d0000971730a3e5.png?ops=resize_480_127","caption":null,"credit":"HuffPost","hide_logo":false,"one_line":false,"separate_image":false},"toasterExtraWide":{"placement":"toasterExtraWide","id":"b5bbbc5491b72ecacda44108284be2a2","slug":"must-reads","name":"Must Reads","description":"The internet's best stories, and interviews with their authors.","provider":"cm","image":"https://img.huffingtonpost.com/asset/default-newsletter.jpg?ops=resize_2100_300","caption":null,"credit":null,"hide_logo":false,"one_line":true,"separate_image":false},"inlineVerticalSeparateImage":{"placement":"inlineVerticalSeparateImage","id":"b5bbbc5491b72ecacda44108284be2a2","slug":"must-reads","name":"Must Reads","description":"The internet's best stories, and interviews with their authors.","provider":"cm","image":"https://img.huffingtonpost.com/asset/default-newsletter.jpg?ops=resize_750_421","caption":null,"credit":null,"hide_logo":true,"one_line":false,"separate_image":true},"inlineWideSeparateImage":{"placement":"inlineWideSeparateImage","id":"b5bbbc5491b72ecacda44108284be2a2","slug":"must-reads","name":"Must Reads","description":"The internet's best stories, and interviews with their authors.","provider":"cm","image":"https://img.huffingtonpost.com/asset/default-newsletter.jpg?ops=resize_937_525","caption":null,"credit":null,"hide_logo":true,"one_line":false,"separate_image":true},"modalVertical":{"placement":"modalVertical","id":"b5bbbc5491b72ecacda44108284be2a2","slug":"must-reads","name":"Must Reads","description":"The internet's best stories, and interviews with their authors.","provider":"cm","image":"https://img.huffingtonpost.com/asset/default-newsletter.jpg?ops=resize_750_421","caption":null,"credit":null,"hide_logo":true,"one_line":false,"separate_image":true},"modalHorizontal":{"placement":"modalHorizontal","id":"b5bbbc5491b72ecacda44108284be2a2","slug":"must-reads","name":"Must Reads","description":"The internet's best stories, and interviews with their authors.","provider":"cm","image":"https://img.huffingtonpost.com/asset/default-newsletter.jpg?ops=resize_637_637","caption":null,"credit":null,"hide_logo":true,"one_line":false,"separate_image":true},"hub":{"placement":"hub","id":"b5bbbc5491b72ecacda44108284be2a2","slug":"must-reads","name":"Must Reads","description":"The internet's best stories, and interviews with their authors.","provider":"cm","image":"https://img.huffingtonpost.com/asset/default-newsletter.jpg?ops=resize_450_450","caption":null,"credit":null,"hide_logo":false,"one_line":false,"separate_image":false},"subscribePageExtraWide":{"placement":"subscribePageExtraWide","id":"b5bbbc5491b72ecacda44108284be2a2","slug":"must-reads","name":"Subscribe to Must Reads","description":"The internet's best stories, and interviews with their authors.","provider":"cm","image":"https://img.huffingtonpost.com/asset/59e11ae0200000d554086b77.jpeg?ops=resize_2100_300","caption":null,"credit":"H","hide_logo":true,"one_line":false,"separate_image":false}},"black-voices":{"square":{"placement":"square","id":"25a599623bed8a9312726e88afbc6297","slug":"black-voices","name":"Subscribe to the Black Voices email.","description":"Amplifying black voices through news that matters.","provider":"cm","image":"https://img.huffingtonpost.com/asset/59e4fe1626000033009cd765.png?ops=resize_450_450","caption":null,"credit":"HuffPost","hide_logo":false,"one_line":false,"separate_image":false},"inlineWideBackgroundImage":{"placement":"inlineWideBackgroundImage","id":"25a599623bed8a9312726e88afbc6297","slug":"black-voices","name":"Subscribe to the Black Voices email.","description":"Amplifying black voices through news that matters.","provider":"cm","image":"https://img.huffingtonpost.com/asset/59e4fe0526000031009cd762.jpeg?ops=resize_1080_375","caption":null,"credit":"HuffPost","hide_logo":false,"one_line":true,"separate_image":false},"wideWithBackgroundImageCheckbox":{"placement":"wideWithBackgroundImageCheckbox","id":"25a599623bed8a9312726e88afbc6297","slug":"black-voices","name":"Black Voices","description":"Amplifying black voices through breaking, social justice and celeb news.","provider":"cm","image":"https://img.huffingtonpost.com/asset/default-newsletter.jpg?ops=resize_480_127","caption":null,"credit":null,"hide_logo":false,"one_line":false,"separate_image":false},"toasterExtraWide":{"placement":"toasterExtraWide","id":"25a599623bed8a9312726e88afbc6297","slug":"black-voices","name":"Black Voices","description":"Amplifying black voices through breaking, social justice and celeb news.","provider":"cm","image":"https://img.huffingtonpost.com/asset/default-newsletter.jpg?ops=resize_2100_300","caption":null,"credit":null,"hide_logo":false,"one_line":true,"separate_image":false},"inlineVerticalSeparateImage":{"placement":"inlineVerticalSeparateImage","id":"25a599623bed8a9312726e88afbc6297","slug":"black-voices","name":"Black Voices","description":"Amplifying black voices through breaking, social justice and celeb news.","provider":"cm","image":"https://img.huffingtonpost.com/asset/default-newsletter.jpg?ops=resize_750_421","caption":null,"credit":null,"hide_logo":true,"one_line":false,"separate_image":true},"inlineWideSeparateImage":{"placement":"inlineWideSeparateImage","id":"25a599623bed8a9312726e88afbc6297","slug":"black-voices","name":"Black Voices","description":"Amplifying black voices through breaking, social justice and celeb news.","provider":"cm","image":"https://img.huffingtonpost.com/asset/default-newsletter.jpg?ops=resize_937_525","caption":null,"credit":null,"hide_logo":true,"one_line":false,"separate_image":true},"modalVertical":{"placement":"modalVertical","id":"25a599623bed8a9312726e88afbc6297","slug":"black-voices","name":"Black Voices","description":"Amplifying black voices through breaking, social justice and celeb news.","provider":"cm","image":"https://img.huffingtonpost.com/asset/default-newsletter.jpg?ops=resize_750_421","caption":null,"credit":null,"hide_logo":true,"one_line":false,"separate_image":true},"modalHorizontal":{"placement":"modalHorizontal","id":"25a599623bed8a9312726e88afbc6297","slug":"black-voices","name":"Black Voices","description":"Amplifying black voices through breaking, social justice and celeb news.","provider":"cm","image":"https://img.huffingtonpost.com/asset/default-newsletter.jpg?ops=resize_637_637","caption":null,"credit":null,"hide_logo":true,"one_line":false,"separate_image":true},"hub":{"placement":"hub","id":"25a599623bed8a9312726e88afbc6297","slug":"black-voices","name":"Black Voices","description":"Amplifying black voices through breaking, social justice and celeb news.","provider":"cm","image":"https://img.huffingtonpost.com/asset/default-newsletter.jpg?ops=resize_450_450","caption":null,"credit":null,"hide_logo":false,"one_line":false,"separate_image":false},"subscribePageExtraWide":{"placement":"subscribePageExtraWide","id":"25a599623bed8a9312726e88afbc6297","slug":"black-voices","name":"Subscribe to the Black Voices email.","description":"Amplifying black voices through news that matters.","provider":"cm","image":"https://img.huffingtonpost.com/asset/59e4fe452d0000971730a83b.jpeg?ops=resize_2100_300","caption":null,"credit":"HuffPost","hide_logo":true,"one_line":false,"separate_image":false}},"parents":{"square":{"placement":"square","id":"9f2a80a270eb60bd59054485981d348f","slug":"parents","name":"How Not To Raise A Jerk","description":"A guide to helping you raise the kind of person you'd like to know.","provider":"cm","image":"https://img.huffingtonpost.com/asset/59e500141500004800da1af0.png?ops=resize_450_450","caption":null,"credit":"HuffPost","hide_logo":false,"one_line":false,"separate_image":false},"inlineWideBackgroundImage":{"placement":"inlineWideBackgroundImage","id":"9f2a80a270eb60bd59054485981d348f","slug":"parents","name":"How Not To Raise A Jerk","description":"A guide to helping you raise the kind of person you'd like to know.","provider":"cm","image":"https://img.huffingtonpost.com/asset/59e4fff82d0000971730a84a.png?ops=resize_1080_375","caption":null,"credit":"HuffPost","hide_logo":false,"one_line":true,"separate_image":false},"wideWithBackgroundImageCheckbox":{"placement":"wideWithBackgroundImageCheckbox","id":"9f2a80a270eb60bd59054485981d348f","slug":"parents","name":"How Not To Raise A Jerk","description":"A guide to helping you raise the kind of person you'd like to know.","provider":"cm","image":"https://img.huffingtonpost.com/asset/default-newsletter.jpg?ops=resize_480_127","caption":null,"credit":null,"hide_logo":false,"one_line":false,"separate_image":false},"toasterExtraWide":{"placement":"toasterExtraWide","id":"9f2a80a270eb60bd59054485981d348f","slug":"parents","name":"How Not To Raise A Jerk","description":"A guide to helping you raise the kind of person you'd like to know.","provider":"cm","image":"https://img.huffingtonpost.com/asset/default-newsletter.jpg?ops=resize_2100_300","caption":null,"credit":null,"hide_logo":false,"one_line":true,"separate_image":false},"inlineVerticalSeparateImage":{"placement":"inlineVerticalSeparateImage","id":"9f2a80a270eb60bd59054485981d348f","slug":"parents","name":"How Not To Raise A Jerk","description":"A guide to helping you raise the kind of person you'd like to know.","provider":"cm","image":"https://img.huffingtonpost.com/asset/default-newsletter.jpg?ops=resize_750_421","caption":null,"credit":null,"hide_logo":true,"one_line":false,"separate_image":true},"inlineWideSeparateImage":{"placement":"inlineWideSeparateImage","id":"9f2a80a270eb60bd59054485981d348f","slug":"parents","name":"How Not To Raise A Jerk","description":"A guide to helping you raise the kind of person you'd like to know.","provider":"cm","image":"https://img.huffingtonpost.com/asset/default-newsletter.jpg?ops=resize_937_525","caption":null,"credit":null,"hide_logo":true,"one_line":false,"separate_image":true},"modalVertical":{"placement":"modalVertical","id":"9f2a80a270eb60bd59054485981d348f","slug":"parents","name":"How Not To Raise A Jerk","description":"A guide to helping you raise the kind of person you'd like to know.","provider":"cm","image":"https://img.huffingtonpost.com/asset/default-newsletter.jpg?ops=resize_750_421","caption":null,"credit":null,"hide_logo":true,"one_line":false,"separate_image":true},"modalHorizontal":{"placement":"modalHorizontal","id":"9f2a80a270eb60bd59054485981d348f","slug":"parents","name":"How Not To Raise A Jerk","description":"A guide to helping you raise the kind of person you'd like to know.","provider":"cm","image":"https://img.huffingtonpost.com/asset/default-newsletter.jpg?ops=resize_637_637","caption":null,"credit":null,"hide_logo":true,"one_line":false,"separate_image":true},"hub":{"placement":"hub","id":"9f2a80a270eb60bd59054485981d348f","slug":"parents","name":"How Not To Raise A Jerk","description":"A guide to helping you raise the kind of person you'd like to know.","provider":"cm","image":"https://img.huffingtonpost.com/asset/default-newsletter.jpg?ops=resize_450_450","caption":null,"credit":null,"hide_logo":false,"one_line":false,"separate_image":false},"subscribePageExtraWide":{"placement":"subscribePageExtraWide","id":"9f2a80a270eb60bd59054485981d348f","slug":"parents","name":"How Not To Raise A Jerk","description":"A guide to helping you raise the kind of person you'd like to know.","provider":"cm","image":"https://img.huffingtonpost.com/asset/59e5003226000031009cd772.jpeg?ops=resize_2100_300","caption":null,"credit":"HuffPost","hide_logo":true,"one_line":false,"separate_image":false}},"lifestyle":{"square":{"placement":"square","id":"dffc711f1fa9aa5634ec28316edf3a44","slug":"lifestyle","name":"Subscribe to The Good Life email.","description":"A completely essential daily guide to achieving the good life.","provider":"cm","image":"https://img.huffingtonpost.com/asset/59e504971500002000da1b10.png?ops=resize_450_450","caption":null,"credit":"HuffPost","hide_logo":false,"one_line":false,"separate_image":false},"inlineWideBackgroundImage":{"placement":"inlineWideBackgroundImage","id":"dffc711f1fa9aa5634ec28316edf3a44","slug":"lifestyle","name":"Subscribe to The Good Life email.","description":"A completely essential daily guide to achieving the good life.","provider":"cm","image":"https://img.huffingtonpost.com/asset/59e5041626000031009cd788.jpeg?ops=resize_1080_375","caption":null,"credit":"HuffPost","hide_logo":false,"one_line":true,"separate_image":false},"wideWithBackgroundImageCheckbox":{"placement":"wideWithBackgroundImageCheckbox","id":"dffc711f1fa9aa5634ec28316edf3a44","slug":"lifestyle","name":"The Good Life","description":"No moon dust. No B.S. Just a completely essential daily guide to achieving the good life.","provider":"cm","image":"https://img.huffingtonpost.com/asset/default-newsletter.jpg?ops=resize_480_127","caption":null,"credit":null,"hide_logo":false,"one_line":false,"separate_image":false},"toasterExtraWide":{"placement":"toasterExtraWide","id":"dffc711f1fa9aa5634ec28316edf3a44","slug":"lifestyle","name":"The Good Life","description":"No moon dust. No B.S. Just a completely essential daily guide to achieving the good life.","provider":"cm","image":"https://img.huffingtonpost.com/asset/default-newsletter.jpg?ops=resize_2100_300","caption":null,"credit":null,"hide_logo":false,"one_line":true,"separate_image":false},"inlineVerticalSeparateImage":{"placement":"inlineVerticalSeparateImage","id":"dffc711f1fa9aa5634ec28316edf3a44","slug":"lifestyle","name":"The Good Life","description":"No moon dust. No B.S. Just a completely essential daily guide to achieving the good life.","provider":"cm","image":"https://img.huffingtonpost.com/asset/default-newsletter.jpg?ops=resize_750_421","caption":null,"credit":null,"hide_logo":true,"one_line":false,"separate_image":true},"inlineWideSeparateImage":{"placement":"inlineWideSeparateImage","id":"dffc711f1fa9aa5634ec28316edf3a44","slug":"lifestyle","name":"The Good Life","description":"No moon dust. No B.S. Just a completely essential daily guide to achieving the good life.","provider":"cm","image":"https://img.huffingtonpost.com/asset/default-newsletter.jpg?ops=resize_937_525","caption":null,"credit":null,"hide_logo":true,"one_line":false,"separate_image":true},"modalVertical":{"placement":"modalVertical","id":"dffc711f1fa9aa5634ec28316edf3a44","slug":"lifestyle","name":"The Good Life","description":"No moon dust. No B.S. Just a completely essential daily guide to achieving the good life.","provider":"cm","image":"https://img.huffingtonpost.com/asset/default-newsletter.jpg?ops=resize_750_421","caption":null,"credit":null,"hide_logo":true,"one_line":false,"separate_image":true},"modalHorizontal":{"placement":"modalHorizontal","id":"dffc711f1fa9aa5634ec28316edf3a44","slug":"lifestyle","name":"The Good Life","description":"No moon dust. No B.S. Just a completely essential daily guide to achieving the good life.","provider":"cm","image":"https://img.huffingtonpost.com/asset/default-newsletter.jpg?ops=resize_637_637","caption":null,"credit":null,"hide_logo":true,"one_line":false,"separate_image":true},"hub":{"placement":"hub","id":"dffc711f1fa9aa5634ec28316edf3a44","slug":"lifestyle","name":"The Good Life","description":"No moon dust. No B.S. Just a completely essential daily guide to achieving the good life.","provider":"cm","image":"https://img.huffingtonpost.com/asset/default-newsletter.jpg?ops=resize_450_450","caption":null,"credit":null,"hide_logo":false,"one_line":false,"separate_image":false},"subscribePageExtraWide":{"placement":"subscribePageExtraWide","id":"dffc711f1fa9aa5634ec28316edf3a44","slug":"lifestyle","name":"Subscribe to The Good Life email.","description":"A completely essential daily guide to achieving the good life.","provider":"cm","image":"https://img.huffingtonpost.com/asset/59e5040226000031009cd787.jpeg?ops=resize_2100_300","caption":null,"credit":"HuffPost","hide_logo":true,"one_line":false,"separate_image":false}},"entertainment":{"square":{"placement":"square","id":"9aa81fd6beaf5655b6969727d3f63bf5","slug":"entertainment","name":"Subscribe to the Entertainment email.","description":"Don't miss a beat. Your culture and entertainment cheat-sheet.","provider":"cm","image":"https://img.huffingtonpost.com/asset/59e506352d0000971730a86a.png?ops=resize_450_450","caption":null,"credit":"HuffPost","hide_logo":false,"one_line":false,"separate_image":false},"inlineWideBackgroundImage":{"placement":"inlineWideBackgroundImage","id":"9aa81fd6beaf5655b6969727d3f63bf5","slug":"entertainment","name":"Subscribe to the Entertainment email.","description":"Don't miss a beat. Your culture and entertainment cheat-sheet.","provider":"cm","image":"https://img.huffingtonpost.com/asset/59e5062526000033009cd792.jpeg?ops=resize_1080_375","caption":null,"credit":"HuffPost","hide_logo":false,"one_line":true,"separate_image":false},"wideWithBackgroundImageCheckbox":{"placement":"wideWithBackgroundImageCheckbox","id":"9aa81fd6beaf5655b6969727d3f63bf5","slug":"entertainment","name":"Entertainment","description":"Get exclusives, scoops and hot takes on the news all your friends are talking about.","provider":"cm","image":"https://img.huffingtonpost.com/asset/default-newsletter.jpg?ops=resize_480_127","caption":null,"credit":null,"hide_logo":false,"one_line":false,"separate_image":false},"toasterExtraWide":{"placement":"toasterExtraWide","id":"9aa81fd6beaf5655b6969727d3f63bf5","slug":"entertainment","name":"Entertainment","description":"Get exclusives, scoops and hot takes on the news all your friends are talking about.","provider":"cm","image":"https://img.huffingtonpost.com/asset/default-newsletter.jpg?ops=resize_2100_300","caption":null,"credit":null,"hide_logo":false,"one_line":true,"separate_image":false},"inlineVerticalSeparateImage":{"placement":"inlineVerticalSeparateImage","id":"9aa81fd6beaf5655b6969727d3f63bf5","slug":"entertainment","name":"Entertainment","description":"Get exclusives, scoops and hot takes on the news all your friends are talking about.","provider":"cm","image":"https://img.huffingtonpost.com/asset/default-newsletter.jpg?ops=resize_750_421","caption":null,"credit":null,"hide_logo":true,"one_line":false,"separate_image":true},"inlineWideSeparateImage":{"placement":"inlineWideSeparateImage","id":"9aa81fd6beaf5655b6969727d3f63bf5","slug":"entertainment","name":"Entertainment","description":"Get exclusives, scoops and hot takes on the news all your friends are talking about.","provider":"cm","image":"https://img.huffingtonpost.com/asset/default-newsletter.jpg?ops=resize_937_525","caption":null,"credit":null,"hide_logo":true,"one_line":false,"separate_image":true},"modalVertical":{"placement":"modalVertical","id":"9aa81fd6beaf5655b6969727d3f63bf5","slug":"entertainment","name":"Entertainment","description":"Get exclusives, scoops and hot takes on the news all your friends are talking about.","provider":"cm","image":"https://img.huffingtonpost.com/asset/default-newsletter.jpg?ops=resize_750_421","caption":null,"credit":null,"hide_logo":true,"one_line":false,"separate_image":true},"modalHorizontal":{"placement":"modalHorizontal","id":"9aa81fd6beaf5655b6969727d3f63bf5","slug":"entertainment","name":"Entertainment","description":"Get exclusives, scoops and hot takes on the news all your friends are talking about.","provider":"cm","image":"https://img.huffingtonpost.com/asset/default-newsletter.jpg?ops=resize_637_637","caption":null,"credit":null,"hide_logo":true,"one_line":false,"separate_image":true},"hub":{"placement":"hub","id":"9aa81fd6beaf5655b6969727d3f63bf5","slug":"entertainment","name":"Entertainment","description":"Get exclusives, scoops and hot takes on the news all your friends are talking about.","provider":"cm","image":"https://img.huffingtonpost.com/asset/default-newsletter.jpg?ops=resize_450_450","caption":null,"credit":null,"hide_logo":false,"one_line":false,"separate_image":false},"subscribePageExtraWide":{"placement":"subscribePageExtraWide","id":"9aa81fd6beaf5655b6969727d3f63bf5","slug":"entertainment","name":"Subscribe to the Entertainment email.","description":"Don't miss a beat. Your culture and entertainment cheat-sheet.","provider":"cm","image":"https://img.huffingtonpost.com/asset/59e505fe26000033009cd78f.jpeg?ops=resize_2100_300","caption":null,"credit":"HuffPost","hide_logo":true,"one_line":false,"separate_image":false}},"politics":{"square":{"placement":"square","id":"b299dff62e6c288ff8fef9346384b6f6","slug":"politics","name":"Subscribe to the Politics email.","description":"How will Trump's administration impact you?","provider":"cm","image":"https://img.huffingtonpost.com/asset/59e5079a26000033009cd797.png?ops=resize_450_450","caption":null,"credit":"HuffPost","hide_logo":false,"one_line":false,"separate_image":false},"inlineWideBackgroundImage":{"placement":"inlineWideBackgroundImage","id":"b299dff62e6c288ff8fef9346384b6f6","slug":"politics","name":"Subscribe to the Politics email.","description":"How will Trump's administration impact you?","provider":"cm","image":"https://img.huffingtonpost.com/asset/59e7be4914000025068c889e.jpeg?ops=resize_1080_375","caption":null,"credit":"Getty","hide_logo":false,"one_line":true,"separate_image":false},"wideWithBackgroundImageCheckbox":{"placement":"wideWithBackgroundImageCheckbox","id":"b299dff62e6c288ff8fef9346384b6f6","slug":"politics","name":"Subscribe to the Politics email.","description":"How will Trump's administration impact you?","provider":"cm","image":"https://img.huffingtonpost.com/asset/59e5077b2d0000971730a873.jpeg?ops=resize_480_127","caption":null,"credit":"HuffPost!","hide_logo":false,"one_line":false,"separate_image":false},"toasterExtraWide":{"placement":"toasterExtraWide","id":"b299dff62e6c288ff8fef9346384b6f6","slug":"politics","name":"Politics","description":"How will Trump’s administration impact you?","provider":"cm","image":"https://img.huffingtonpost.com/asset/default-newsletter.jpg?ops=resize_2100_300","caption":null,"credit":null,"hide_logo":false,"one_line":true,"separate_image":false},"inlineVerticalSeparateImage":{"placement":"inlineVerticalSeparateImage","id":"b299dff62e6c288ff8fef9346384b6f6","slug":"politics","name":"Politics","description":"How will Trump’s administration impact you?","provider":"cm","image":"https://img.huffingtonpost.com/asset/default-newsletter.jpg?ops=resize_750_421","caption":null,"credit":null,"hide_logo":true,"one_line":false,"separate_image":true},"inlineWideSeparateImage":{"placement":"inlineWideSeparateImage","id":"b299dff62e6c288ff8fef9346384b6f6","slug":"politics","name":"Politics","description":"How will Trump’s administration impact you?","provider":"cm","image":"https://img.huffingtonpost.com/asset/default-newsletter.jpg?ops=resize_937_525","caption":null,"credit":null,"hide_logo":true,"one_line":false,"separate_image":true},"modalVertical":{"placement":"modalVertical","id":"b299dff62e6c288ff8fef9346384b6f6","slug":"politics","name":"Politics","description":"How will Trump’s administration impact you?","provider":"cm","image":"https://img.huffingtonpost.com/asset/default-newsletter.jpg?ops=resize_750_421","caption":null,"credit":null,"hide_logo":true,"one_line":false,"separate_image":true},"modalHorizontal":{"placement":"modalHorizontal","id":"b299dff62e6c288ff8fef9346384b6f6","slug":"politics","name":"Politics","description":"How will Trump’s administration impact you?","provider":"cm","image":"https://img.huffingtonpost.com/asset/default-newsletter.jpg?ops=resize_637_637","caption":null,"credit":null,"hide_logo":true,"one_line":false,"separate_image":true},"hub":{"placement":"hub","id":"b299dff62e6c288ff8fef9346384b6f6","slug":"politics","name":"Politics","description":"How will Trump’s administration impact you?","provider":"cm","image":"https://img.huffingtonpost.com/asset/default-newsletter.jpg?ops=resize_450_450","caption":null,"credit":null,"hide_logo":false,"one_line":false,"separate_image":false},"subscribePageExtraWide":{"placement":"subscribePageExtraWide","id":"b299dff62e6c288ff8fef9346384b6f6","slug":"politics","name":"Subscribe to the Politics email.","description":"How will Trump's administration impact you?","provider":"cm","image":"https://img.huffingtonpost.com/asset/59e507af2d0000265e30a876.jpeg?ops=resize_2100_300","caption":null,"credit":"HuffPost","hide_logo":true,"one_line":false,"separate_image":false}},"women":{"square":{"placement":"square","id":"4b1e39cd7b540f6176f92c26a6042935","slug":"women","name":"Subscribe to the In(formation) email.","description":"The reality of being a woman — by the numbers.","provider":"cm","image":"https://img.huffingtonpost.com/asset/59e509a12d0000265e30a87f.png?ops=resize_450_450","caption":null,"credit":"HuffPost","hide_logo":false,"one_line":false,"separate_image":false},"inlineWideBackgroundImage":{"placement":"inlineWideBackgroundImage","id":"4b1e39cd7b540f6176f92c26a6042935","slug":"women","name":"In(formation) email.","description":"The reality of being a woman — by the numbers.","provider":"cm","image":"https://img.huffingtonpost.com/asset/59e5098e2d0000971730a87d.jpeg?ops=resize_1080_375","caption":null,"credit":"HuffPost","hide_logo":false,"one_line":true,"separate_image":false},"wideWithBackgroundImageCheckbox":{"placement":"wideWithBackgroundImageCheckbox","id":"4b1e39cd7b540f6176f92c26a6042935","slug":"women","name":"(In)formation","description":"The reality of being a woman — by the numbers.","provider":"cm","image":"https://img.huffingtonpost.com/asset/default-newsletter.jpg?ops=resize_480_127","caption":null,"credit":null,"hide_logo":false,"one_line":false,"separate_image":false},"toasterExtraWide":{"placement":"toasterExtraWide","id":"4b1e39cd7b540f6176f92c26a6042935","slug":"women","name":"(In)formation","description":"The reality of being a woman — by the numbers.","provider":"cm","image":"https://img.huffingtonpost.com/asset/default-newsletter.jpg?ops=resize_2100_300","caption":null,"credit":null,"hide_logo":false,"one_line":true,"separate_image":false},"inlineVerticalSeparateImage":{"placement":"inlineVerticalSeparateImage","id":"4b1e39cd7b540f6176f92c26a6042935","slug":"women","name":"(In)formation","description":"The reality of being a woman — by the numbers.","provider":"cm","image":"https://img.huffingtonpost.com/asset/default-newsletter.jpg?ops=resize_750_421","caption":null,"credit":null,"hide_logo":true,"one_line":false,"separate_image":true},"inlineWideSeparateImage":{"placement":"inlineWideSeparateImage","id":"4b1e39cd7b540f6176f92c26a6042935","slug":"women","name":"(In)formation","description":"The reality of being a woman — by the numbers.","provider":"cm","image":"https://img.huffingtonpost.com/asset/default-newsletter.jpg?ops=resize_937_525","caption":null,"credit":null,"hide_logo":true,"one_line":false,"separate_image":true},"modalVertical":{"placement":"modalVertical","id":"4b1e39cd7b540f6176f92c26a6042935","slug":"women","name":"(In)formation","description":"The reality of being a woman — by the numbers.","provider":"cm","image":"https://img.huffingtonpost.com/asset/default-newsletter.jpg?ops=resize_750_421","caption":null,"credit":null,"hide_logo":true,"one_line":false,"separate_image":true},"modalHorizontal":{"placement":"modalHorizontal","id":"4b1e39cd7b540f6176f92c26a6042935","slug":"women","name":"(In)formation","description":"The reality of being a woman — by the numbers.","provider":"cm","image":"https://img.huffingtonpost.com/asset/default-newsletter.jpg?ops=resize_637_637","caption":null,"credit":null,"hide_logo":true,"one_line":false,"separate_image":true},"hub":{"placement":"hub","id":"4b1e39cd7b540f6176f92c26a6042935","slug":"women","name":"(In)formation","description":"The reality of being a woman — by the numbers.","provider":"cm","image":"https://img.huffingtonpost.com/asset/default-newsletter.jpg?ops=resize_450_450","caption":null,"credit":null,"hide_logo":false,"one_line":false,"separate_image":false},"subscribePageExtraWide":{"placement":"subscribePageExtraWide","id":"4b1e39cd7b540f6176f92c26a6042935","slug":"women","name":"In(formation) email.","description":"The reality of being a woman — by the numbers.","provider":"cm","image":"https://img.huffingtonpost.com/asset/59e509b71500004800da1b2e.jpeg?ops=resize_2100_300","caption":null,"credit":"HuffPost","hide_logo":true,"one_line":false,"separate_image":false}},"world-post":{"square":{"placement":"square","id":"cbaaca425d6986aae037b2b9f94af8e6","slug":"world-post","name":"Subscribe to the World Post email.","description":"","provider":"cm","image":"https://img.huffingtonpost.com/asset/59e50a2e1500002000da1b31.png?ops=resize_450_450","caption":null,"credit":"HuffPost","hide_logo":false,"one_line":false,"separate_image":false},"inlineWideBackgroundImage":{"placement":"inlineWideBackgroundImage","id":"cbaaca425d6986aae037b2b9f94af8e6","slug":"world-post","name":"Subscribe to the World Post email.","description":"","provider":"cm","image":"https://img.huffingtonpost.com/asset/default-newsletter.jpg?ops=resize_1080_375","caption":null,"credit":null,"hide_logo":false,"one_line":true,"separate_image":false},"wideWithBackgroundImageCheckbox":{"placement":"wideWithBackgroundImageCheckbox","id":"cbaaca425d6986aae037b2b9f94af8e6","slug":"world-post","name":"World Post","description":"","provider":"cm","image":"https://img.huffingtonpost.com/asset/default-newsletter.jpg?ops=resize_480_127","caption":null,"credit":null,"hide_logo":false,"one_line":false,"separate_image":false},"toasterExtraWide":{"placement":"toasterExtraWide","id":"cbaaca425d6986aae037b2b9f94af8e6","slug":"world-post","name":"World Post","description":"","provider":"cm","image":"https://img.huffingtonpost.com/asset/default-newsletter.jpg?ops=resize_2100_300","caption":null,"credit":null,"hide_logo":false,"one_line":true,"separate_image":false},"inlineVerticalSeparateImage":{"placement":"inlineVerticalSeparateImage","id":"cbaaca425d6986aae037b2b9f94af8e6","slug":"world-post","name":"World Post","description":"","provider":"cm","image":"https://img.huffingtonpost.com/asset/default-newsletter.jpg?ops=resize_750_421","caption":null,"credit":null,"hide_logo":true,"one_line":false,"separate_image":true},"inlineWideSeparateImage":{"placement":"inlineWideSeparateImage","id":"cbaaca425d6986aae037b2b9f94af8e6","slug":"world-post","name":"World Post","description":"","provider":"cm","image":"https://img.huffingtonpost.com/asset/default-newsletter.jpg?ops=resize_937_525","caption":null,"credit":null,"hide_logo":true,"one_line":false,"separate_image":true},"modalVertical":{"placement":"modalVertical","id":"cbaaca425d6986aae037b2b9f94af8e6","slug":"world-post","name":"World Post","description":"","provider":"cm","image":"https://img.huffingtonpost.com/asset/default-newsletter.jpg?ops=resize_750_421","caption":null,"credit":null,"hide_logo":true,"one_line":false,"separate_image":true},"modalHorizontal":{"placement":"modalHorizontal","id":"cbaaca425d6986aae037b2b9f94af8e6","slug":"world-post","name":"World Post","description":"","provider":"cm","image":"https://img.huffingtonpost.com/asset/default-newsletter.jpg?ops=resize_637_637","caption":null,"credit":null,"hide_logo":true,"one_line":false,"separate_image":true},"hub":{"placement":"hub","id":"cbaaca425d6986aae037b2b9f94af8e6","slug":"world-post","name":"World Post","description":"","provider":"cm","image":"https://img.huffingtonpost.com/asset/default-newsletter.jpg?ops=resize_450_450","caption":null,"credit":null,"hide_logo":false,"one_line":false,"separate_image":false},"subscribePageExtraWide":{"placement":"subscribePageExtraWide","id":"cbaaca425d6986aae037b2b9f94af8e6","slug":"world-post","name":"Subscribe to the World Post email.","description":"","provider":"cm","image":"https://img.huffingtonpost.com/asset/default-newsletter.jpg?ops=resize_2100_300","caption":null,"credit":null,"hide_logo":true,"one_line":false,"separate_image":false}},"highline":{"square":{"placement":"square","id":"c747f17b1495d128504a0b944888f2f7","slug":"highline","name":"Subscribe to the Highline email.","description":"One huge story at a time. Award-winning. Genre-busting. Essential.","provider":"cm","image":"https://img.huffingtonpost.com/asset/default-newsletter.jpg?ops=resize_450_450","caption":null,"credit":null,"hide_logo":false,"one_line":false,"separate_image":false},"inlineWideBackgroundImage":{"placement":"inlineWideBackgroundImage","id":"c747f17b1495d128504a0b944888f2f7","slug":"highline","name":"Highline","description":"One huge story at a time. Award-winning. Genre-busting. Essential.","provider":"cm","image":"https://img.huffingtonpost.com/asset/default-newsletter.jpg?ops=resize_1080_375","caption":null,"credit":null,"hide_logo":false,"one_line":true,"separate_image":false},"wideWithBackgroundImageCheckbox":{"placement":"wideWithBackgroundImageCheckbox","id":"c747f17b1495d128504a0b944888f2f7","slug":"highline","name":"Highline","description":"One huge story at a time. Award-winning. Genre-busting. Essential.","provider":"cm","image":"https://img.huffingtonpost.com/asset/default-newsletter.jpg?ops=resize_480_127","caption":null,"credit":null,"hide_logo":false,"one_line":false,"separate_image":false},"toasterExtraWide":{"placement":"toasterExtraWide","id":"c747f17b1495d128504a0b944888f2f7","slug":"highline","name":"Highline","description":"One huge story at a time. Award-winning. Genre-busting. Essential.","provider":"cm","image":"https://img.huffingtonpost.com/asset/default-newsletter.jpg?ops=resize_2100_300","caption":null,"credit":null,"hide_logo":false,"one_line":true,"separate_image":false},"inlineVerticalSeparateImage":{"placement":"inlineVerticalSeparateImage","id":"c747f17b1495d128504a0b944888f2f7","slug":"highline","name":"Highline","description":"One huge story at a time. Award-winning. Genre-busting. Essential.","provider":"cm","image":"https://img.huffingtonpost.com/asset/default-newsletter.jpg?ops=resize_750_421","caption":null,"credit":null,"hide_logo":true,"one_line":false,"separate_image":true},"inlineWideSeparateImage":{"placement":"inlineWideSeparateImage","id":"c747f17b1495d128504a0b944888f2f7","slug":"highline","name":"Highline","description":"One huge story at a time. Award-winning. Genre-busting. Essential.","provider":"cm","image":"https://img.huffingtonpost.com/asset/default-newsletter.jpg?ops=resize_937_525","caption":null,"credit":null,"hide_logo":true,"one_line":false,"separate_image":true},"modalVertical":{"placement":"modalVertical","id":"c747f17b1495d128504a0b944888f2f7","slug":"highline","name":"Highline","description":"One huge story at a time. Award-winning. Genre-busting. Essential.","provider":"cm","image":"https://img.huffingtonpost.com/asset/default-newsletter.jpg?ops=resize_750_421","caption":null,"credit":null,"hide_logo":true,"one_line":false,"separate_image":true},"modalHorizontal":{"placement":"modalHorizontal","id":"c747f17b1495d128504a0b944888f2f7","slug":"highline","name":"Highline","description":"One huge story at a time. Award-winning. Genre-busting. Essential.","provider":"cm","image":"https://img.huffingtonpost.com/asset/default-newsletter.jpg?ops=resize_637_637","caption":null,"credit":null,"hide_logo":true,"one_line":false,"separate_image":true},"hub":{"placement":"hub","id":"c747f17b1495d128504a0b944888f2f7","slug":"highline","name":"Highline","description":"One huge story at a time. Award-winning. Genre-busting. Essential.","provider":"cm","image":"https://img.huffingtonpost.com/asset/default-newsletter.jpg?ops=resize_450_450","caption":null,"credit":null,"hide_logo":false,"one_line":false,"separate_image":false},"subscribePageExtraWide":{"placement":"subscribePageExtraWide","id":"c747f17b1495d128504a0b944888f2f7","slug":"highline","name":"Subscribe to the Highline email.","description":"One huge story at a time. Award-winning. Genre-busting. Essential.","provider":"cm","image":"https://img.huffingtonpost.com/asset/59e50b411500004800da1b35.jpeg?ops=resize_2100_300","caption":null,"credit":"HuffPost","hide_logo":true,"one_line":false,"separate_image":false}},"funniest-tweets-from-women":{"square":{"placement":"square","id":"3bafc9922204c291013622d67208391c","slug":"funniest-tweets-from-women","name":"Subscribe to the Funniest Tweets From Women email.","description":"Your weekly roundup of the funniest tweets from women.","provider":"cm","image":"https://img.huffingtonpost.com/asset/5a2ac5fa1900003b00cca31d.png?ops=resize_450_450","caption":null,"credit":"HuffPost","hide_logo":false,"one_line":false,"separate_image":false},"inlineWideBackgroundImage":{"placement":"inlineWideBackgroundImage","id":"3bafc9922204c291013622d67208391c","slug":"funniest-tweets-from-women","name":"Funniest Tweets From Women","description":"Your weekly roundup of the funniest tweets from women.","provider":"cm","image":"https://img.huffingtonpost.com/asset/5a2ac5fa1900003b00cca31d.png?ops=resize_1080_375","caption":null,"credit":"HuffPost","hide_logo":false,"one_line":true,"separate_image":false},"wideWithBackgroundImageCheckbox":{"placement":"wideWithBackgroundImageCheckbox","id":"3bafc9922204c291013622d67208391c","slug":"funniest-tweets-from-women","name":"Funniest Tweets From Women","description":"Your weekly roundup of the funniest tweets from women.","provider":"cm","image":"https://img.huffingtonpost.com/asset/default-newsletter.jpg?ops=resize_480_127","caption":null,"credit":null,"hide_logo":false,"one_line":false,"separate_image":false},"toasterExtraWide":{"placement":"toasterExtraWide","id":"3bafc9922204c291013622d67208391c","slug":"funniest-tweets-from-women","name":"Funniest Tweets From Women","description":"Your weekly roundup of the funniest tweets from women.","provider":"cm","image":"https://img.huffingtonpost.com/asset/default-newsletter.jpg?ops=resize_2100_300","caption":null,"credit":null,"hide_logo":false,"one_line":true,"separate_image":false},"inlineVerticalSeparateImage":{"placement":"inlineVerticalSeparateImage","id":"3bafc9922204c291013622d67208391c","slug":"funniest-tweets-from-women","name":"Funniest Tweets From Women","description":"Your weekly roundup of the funniest tweets from women.","provider":"cm","image":"https://img.huffingtonpost.com/asset/default-newsletter.jpg?ops=resize_750_421","caption":null,"credit":null,"hide_logo":true,"one_line":false,"separate_image":true},"inlineWideSeparateImage":{"placement":"inlineWideSeparateImage","id":"3bafc9922204c291013622d67208391c","slug":"funniest-tweets-from-women","name":"Funniest Tweets From Women","description":"Your weekly roundup of the funniest tweets from women.","provider":"cm","image":"https://img.huffingtonpost.com/asset/default-newsletter.jpg?ops=resize_937_525","caption":null,"credit":null,"hide_logo":true,"one_line":false,"separate_image":true},"modalVertical":{"placement":"modalVertical","id":"3bafc9922204c291013622d67208391c","slug":"funniest-tweets-from-women","name":"Funniest Tweets From Women","description":"Your weekly roundup of the funniest tweets from women.","provider":"cm","image":"https://img.huffingtonpost.com/asset/default-newsletter.jpg?ops=resize_750_421","caption":null,"credit":null,"hide_logo":true,"one_line":false,"separate_image":true},"modalHorizontal":{"placement":"modalHorizontal","id":"3bafc9922204c291013622d67208391c","slug":"funniest-tweets-from-women","name":"Funniest Tweets From Women","description":"Your weekly roundup of the funniest tweets from women.","provider":"cm","image":"https://img.huffingtonpost.com/asset/default-newsletter.jpg?ops=resize_637_637","caption":null,"credit":null,"hide_logo":true,"one_line":false,"separate_image":true},"hub":{"placement":"hub","id":"3bafc9922204c291013622d67208391c","slug":"funniest-tweets-from-women","name":"Funniest Tweets From Women","description":"Your weekly roundup of the funniest tweets from women.","provider":"cm","image":"https://img.huffingtonpost.com/asset/default-newsletter.jpg?ops=resize_450_450","caption":null,"credit":null,"hide_logo":false,"one_line":false,"separate_image":false},"subscribePageExtraWide":{"placement":"subscribePageExtraWide","id":"3bafc9922204c291013622d67208391c","slug":"funniest-tweets-from-women","name":"Subscribe to the Funniest Tweets From Women email.","description":"Your weekly roundup of the funniest tweets from women.","provider":"cm","image":"https://img.huffingtonpost.com/asset/59e50bd11500004800da1b39.jpeg?ops=resize_2100_300","caption":null,"credit":"HuffPost","hide_logo":true,"one_line":false,"separate_image":false}},"horoscopes":{"square":{"placement":"square","id":"0be216667f7a9a8d23349a5f1e663754","slug":"horoscopes","name":"Subscribe to the Horoscopes email.","description":"A lot going on in your life right now? See what it all means with your daily horoscope.","provider":"cm","image":"https://img.huffingtonpost.com/asset/59e50cc11500002000da1b3c.jpeg?ops=resize_450_450","caption":null,"credit":"HuffPost","hide_logo":false,"one_line":false,"separate_image":false},"inlineWideBackgroundImage":{"placement":"inlineWideBackgroundImage","id":"0be216667f7a9a8d23349a5f1e663754","slug":"horoscopes","name":"Horoscopes","description":"A lot going on in your life right now? See what it all means with your daily horoscope.","provider":"cm","image":"https://img.huffingtonpost.com/asset/default-newsletter.jpg?ops=resize_1080_375","caption":null,"credit":null,"hide_logo":false,"one_line":true,"separate_image":false},"wideWithBackgroundImageCheckbox":{"placement":"wideWithBackgroundImageCheckbox","id":"0be216667f7a9a8d23349a5f1e663754","slug":"horoscopes","name":"Horoscopes","description":"A lot going on in your life right now? See what it all means with your daily horoscope.","provider":"cm","image":"https://img.huffingtonpost.com/asset/default-newsletter.jpg?ops=resize_480_127","caption":null,"credit":null,"hide_logo":false,"one_line":false,"separate_image":false},"toasterExtraWide":{"placement":"toasterExtraWide","id":"0be216667f7a9a8d23349a5f1e663754","slug":"horoscopes","name":"Horoscopes","description":"A lot going on in your life right now? See what it all means with your daily horoscope.","provider":"cm","image":"https://img.huffingtonpost.com/asset/default-newsletter.jpg?ops=resize_2100_300","caption":null,"credit":null,"hide_logo":false,"one_line":true,"separate_image":false},"inlineVerticalSeparateImage":{"placement":"inlineVerticalSeparateImage","id":"0be216667f7a9a8d23349a5f1e663754","slug":"horoscopes","name":"Horoscopes","description":"A lot going on in your life right now? See what it all means with your daily horoscope.","provider":"cm","image":"https://img.huffingtonpost.com/asset/default-newsletter.jpg?ops=resize_750_421","caption":null,"credit":null,"hide_logo":true,"one_line":false,"separate_image":true},"inlineWideSeparateImage":{"placement":"inlineWideSeparateImage","id":"0be216667f7a9a8d23349a5f1e663754","slug":"horoscopes","name":"Horoscopes","description":"A lot going on in your life right now? See what it all means with your daily horoscope.","provider":"cm","image":"https://img.huffingtonpost.com/asset/default-newsletter.jpg?ops=resize_937_525","caption":null,"credit":null,"hide_logo":true,"one_line":false,"separate_image":true},"modalVertical":{"placement":"modalVertical","id":"0be216667f7a9a8d23349a5f1e663754","slug":"horoscopes","name":"Horoscopes","description":"A lot going on in your life right now? See what it all means with your daily horoscope.","provider":"cm","image":"https://img.huffingtonpost.com/asset/default-newsletter.jpg?ops=resize_750_421","caption":null,"credit":null,"hide_logo":true,"one_line":false,"separate_image":true},"modalHorizontal":{"placement":"modalHorizontal","id":"0be216667f7a9a8d23349a5f1e663754","slug":"horoscopes","name":"Horoscopes","description":"A lot going on in your life right now? See what it all means with your daily horoscope.","provider":"cm","image":"https://img.huffingtonpost.com/asset/default-newsletter.jpg?ops=resize_637_637","caption":null,"credit":null,"hide_logo":true,"one_line":false,"separate_image":true},"hub":{"placement":"hub","id":"0be216667f7a9a8d23349a5f1e663754","slug":"horoscopes","name":"Horoscopes","description":"A lot going on in your life right now? See what it all means with your daily horoscope.","provider":"cm","image":"https://img.huffingtonpost.com/asset/default-newsletter.jpg?ops=resize_450_450","caption":null,"credit":null,"hide_logo":false,"one_line":false,"separate_image":false},"subscribePageExtraWide":{"placement":"subscribePageExtraWide","id":"0be216667f7a9a8d23349a5f1e663754","slug":"horoscopes","name":"Subscribe to the Horoscopes email.","description":"A lot going on in your life right now? See what it all means with your daily horoscope.","provider":"cm","image":"https://img.huffingtonpost.com/asset/59e50cc11500002000da1b3c.jpeg?ops=resize_2100_300","caption":null,"credit":"HuffPost","hide_logo":true,"one_line":false,"separate_image":false}},"the-morning-email-fb":{"square":{"placement":"square","id":"336d89de1681b8f781387762b46627ce","slug":"the-morning-email-fb","name":"Subscribe to The Morning Email.","description":"Wake up to the day's most important news.","provider":"cm","image":"https://img.huffingtonpost.com/asset/59e0fa012d0000971730a32b.jpeg?ops=resize_450_450","caption":null,"credit":"HuffPost","hide_logo":false,"one_line":false,"separate_image":false},"inlineWideBackgroundImage":{"placement":"inlineWideBackgroundImage","id":"336d89de1681b8f781387762b46627ce","slug":"the-morning-email-fb","name":"The Morning Email","description":"Wake up to the day's most important news.","provider":"cm","image":"https://img.huffingtonpost.com/asset/default-newsletter.jpg?ops=resize_1080_375","caption":null,"credit":null,"hide_logo":false,"one_line":true,"separate_image":false},"wideWithBackgroundImageCheckbox":{"placement":"wideWithBackgroundImageCheckbox","id":"336d89de1681b8f781387762b46627ce","slug":"the-morning-email-fb","name":"The Morning Email","description":"Wake up to the day's most important news.","provider":"cm","image":"https://img.huffingtonpost.com/asset/default-newsletter.jpg?ops=resize_480_127","caption":null,"credit":null,"hide_logo":false,"one_line":false,"separate_image":false},"toasterExtraWide":{"placement":"toasterExtraWide","id":"336d89de1681b8f781387762b46627ce","slug":"the-morning-email-fb","name":"The Morning Email","description":"Wake up to the day's most important news.","provider":"cm","image":"https://img.huffingtonpost.com/asset/default-newsletter.jpg?ops=resize_2100_300","caption":null,"credit":null,"hide_logo":false,"one_line":true,"separate_image":false},"inlineVerticalSeparateImage":{"placement":"inlineVerticalSeparateImage","id":"336d89de1681b8f781387762b46627ce","slug":"the-morning-email-fb","name":"The Morning Email","description":"Wake up to the day's most important news.","provider":"cm","image":"https://img.huffingtonpost.com/asset/default-newsletter.jpg?ops=resize_750_421","caption":null,"credit":null,"hide_logo":true,"one_line":false,"separate_image":true},"inlineWideSeparateImage":{"placement":"inlineWideSeparateImage","id":"336d89de1681b8f781387762b46627ce","slug":"the-morning-email-fb","name":"The Morning Email","description":"Wake up to the day's most important news.","provider":"cm","image":"https://img.huffingtonpost.com/asset/default-newsletter.jpg?ops=resize_937_525","caption":null,"credit":null,"hide_logo":true,"one_line":false,"separate_image":true},"modalVertical":{"placement":"modalVertical","id":"336d89de1681b8f781387762b46627ce","slug":"the-morning-email-fb","name":"The Morning Email","description":"Wake up to the day's most important news.","provider":"cm","image":"https://img.huffingtonpost.com/asset/default-newsletter.jpg?ops=resize_750_421","caption":null,"credit":null,"hide_logo":true,"one_line":false,"separate_image":true},"modalHorizontal":{"placement":"modalHorizontal","id":"336d89de1681b8f781387762b46627ce","slug":"the-morning-email-fb","name":"The Morning Email","description":"Wake up to the day's most important news.","provider":"cm","image":"https://img.huffingtonpost.com/asset/default-newsletter.jpg?ops=resize_637_637","caption":null,"credit":null,"hide_logo":true,"one_line":false,"separate_image":true},"hub":{"placement":"hub","id":"336d89de1681b8f781387762b46627ce","slug":"the-morning-email-fb","name":"The Morning Email","description":"Wake up to the day's most important news.","provider":"cm","image":"https://img.huffingtonpost.com/asset/default-newsletter.jpg?ops=resize_450_450","caption":null,"credit":null,"hide_logo":false,"one_line":false,"separate_image":false},"subscribePageExtraWide":{"placement":"subscribePageExtraWide","id":"336d89de1681b8f781387762b46627ce","slug":"the-morning-email-fb","name":"Subscribe to The Morning Email.","description":"Wake up to the day's most important news.","provider":"cm","image":"https://img.huffingtonpost.com/asset/59e0fa262d0000265e30a32c.jpeg?ops=resize_2100_300","caption":null,"credit":"HuffPost","hide_logo":true,"one_line":false,"separate_image":false}},"the-morning-email-fbia":{"square":{"placement":"square","id":"e03b9ca95a1362b8bc5b9966c760427a","slug":"the-morning-email-fbia","name":"The Morning Email","description":"Wake up to the day's most important news.","provider":"cm","image":"https://img.huffingtonpost.com/asset/default-newsletter.jpg?ops=resize_450_450","caption":null,"credit":null,"hide_logo":false,"one_line":false,"separate_image":false},"inlineWideBackgroundImage":{"placement":"inlineWideBackgroundImage","id":"e03b9ca95a1362b8bc5b9966c760427a","slug":"the-morning-email-fbia","name":"The Morning Email","description":"Wake up to the day's most important news.","provider":"cm","image":"https://img.huffingtonpost.com/asset/default-newsletter.jpg?ops=resize_1080_375","caption":null,"credit":null,"hide_logo":false,"one_line":true,"separate_image":false},"wideWithBackgroundImageCheckbox":{"placement":"wideWithBackgroundImageCheckbox","id":"e03b9ca95a1362b8bc5b9966c760427a","slug":"the-morning-email-fbia","name":"The Morning Email","description":"Wake up to the day's most important news.","provider":"cm","image":"https://img.huffingtonpost.com/asset/default-newsletter.jpg?ops=resize_480_127","caption":null,"credit":null,"hide_logo":false,"one_line":false,"separate_image":false},"toasterExtraWide":{"placement":"toasterExtraWide","id":"e03b9ca95a1362b8bc5b9966c760427a","slug":"the-morning-email-fbia","name":"The Morning Email","description":"Wake up to the day's most important news.","provider":"cm","image":"https://img.huffingtonpost.com/asset/default-newsletter.jpg?ops=resize_2100_300","caption":null,"credit":null,"hide_logo":false,"one_line":true,"separate_image":false},"inlineVerticalSeparateImage":{"placement":"inlineVerticalSeparateImage","id":"e03b9ca95a1362b8bc5b9966c760427a","slug":"the-morning-email-fbia","name":"The Morning Email","description":"Wake up to the day's most important news.","provider":"cm","image":"https://img.huffingtonpost.com/asset/default-newsletter.jpg?ops=resize_750_421","caption":null,"credit":null,"hide_logo":true,"one_line":false,"separate_image":true},"inlineWideSeparateImage":{"placement":"inlineWideSeparateImage","id":"e03b9ca95a1362b8bc5b9966c760427a","slug":"the-morning-email-fbia","name":"The Morning Email","description":"Wake up to the day's most important news.","provider":"cm","image":"https://img.huffingtonpost.com/asset/default-newsletter.jpg?ops=resize_937_525","caption":null,"credit":null,"hide_logo":true,"one_line":false,"separate_image":true},"modalVertical":{"placement":"modalVertical","id":"e03b9ca95a1362b8bc5b9966c760427a","slug":"the-morning-email-fbia","name":"The Morning Email","description":"Wake up to the day's most important news.","provider":"cm","image":"https://img.huffingtonpost.com/asset/default-newsletter.jpg?ops=resize_750_421","caption":null,"credit":null,"hide_logo":true,"one_line":false,"separate_image":true},"modalHorizontal":{"placement":"modalHorizontal","id":"e03b9ca95a1362b8bc5b9966c760427a","slug":"the-morning-email-fbia","name":"The Morning Email","description":"Wake up to the day's most important news.","provider":"cm","image":"https://img.huffingtonpost.com/asset/default-newsletter.jpg?ops=resize_637_637","caption":null,"credit":null,"hide_logo":true,"one_line":false,"separate_image":true},"hub":{"placement":"hub","id":"e03b9ca95a1362b8bc5b9966c760427a","slug":"the-morning-email-fbia","name":"The Morning Email","description":"Wake up to the day's most important news.","provider":"cm","image":"https://img.huffingtonpost.com/asset/default-newsletter.jpg?ops=resize_450_450","caption":null,"credit":null,"hide_logo":false,"one_line":false,"separate_image":false},"subscribePageExtraWide":{"placement":"subscribePageExtraWide","id":"e03b9ca95a1362b8bc5b9966c760427a","slug":"the-morning-email-fbia","name":"The Morning Email","description":"Wake up to the day's most important news.","provider":"cm","image":"https://img.huffingtonpost.com/asset/default-newsletter.jpg?ops=resize_2100_300","caption":null,"credit":null,"hide_logo":true,"one_line":false,"separate_image":false}},"royal-wedding-us":{"square":{"placement":"square","id":"96cbccb3edcd66f974b50c5bca44fb3d","slug":"royal-wedding-us","name":"HuffPost's royal roundup","description":"Ready for the royal wedding? We promise you’ll be dead chuffed with our coverage.","provider":"cm","image":"https://img.huffingtonpost.com/asset/5a26f842190000492c034ae6.jpeg?ops=resize_450_450","caption":"Britain's Prince Harry poses with Meghan Markle in the Sunken Garden of Kensington Palace, London, Britain, November 27, 2017. REUTERS/Toby Melville","credit":"Toby Melville / Reuters","hide_logo":false,"one_line":false,"separate_image":false},"inlineWideBackgroundImage":{"placement":"inlineWideBackgroundImage","id":"96cbccb3edcd66f974b50c5bca44fb3d","slug":"royal-wedding-us","name":"HuffPost's royal roundup","description":"Ready for the royal wedding? We promise you’ll be dead chuffed with our coverage.","provider":"cm","image":"https://img.huffingtonpost.com/asset/5a26f842190000492c034ae6.jpeg?ops=resize_1080_375","caption":"Britain's Prince Harry poses with Meghan Markle in the Sunken Garden of Kensington Palace, London, Britain, November 27, 2017. REUTERS/Toby Melville","credit":"Toby Melville / Reuters","hide_logo":false,"one_line":true,"separate_image":false},"wideWithBackgroundImageCheckbox":{"placement":"wideWithBackgroundImageCheckbox","id":"96cbccb3edcd66f974b50c5bca44fb3d","slug":"royal-wedding-us","name":"HuffPost's royal roundup","description":"Ready for the royal wedding? You’ll be dead chuffed with our coverage.","provider":"cm","image":"https://img.huffingtonpost.com/asset/5a28151c190000492c034d90.jpeg?cache=dp74d2txhp&ops=resize_480_127","caption":"A horse drawn carriage is driven past Kensington Palace in London, Britain November 28, 2017. REUTERS/Darrin Zammit Lupi","credit":"Darrin Zammit Lupi / Reuters","hide_logo":false,"one_line":false,"separate_image":false},"toasterExtraWide":{"placement":"toasterExtraWide","id":"96cbccb3edcd66f974b50c5bca44fb3d","slug":"royal-wedding-us","name":"HuffPost's royal roundup","description":"Ready for the royal wedding? We promise you’ll be dead chuffed with our coverage.","provider":"cm","image":"https://img.huffingtonpost.com/asset/5a26f842190000492c034ae6.jpeg?ops=resize_2100_300","caption":"Britain's Prince Harry poses with Meghan Markle in the Sunken Garden of Kensington Palace, London, Britain, November 27, 2017. REUTERS/Toby Melville","credit":"Toby Melville / Reuters","hide_logo":false,"one_line":true,"separate_image":false},"inlineVerticalSeparateImage":{"placement":"inlineVerticalSeparateImage","id":"96cbccb3edcd66f974b50c5bca44fb3d","slug":"royal-wedding-us","name":"HuffPost's royal roundup","description":"Ready for the royal wedding? We promise you’ll be dead chuffed with our coverage.","provider":"cm","image":"https://img.huffingtonpost.com/asset/5a26f842190000492c034ae6.jpeg?ops=resize_750_421","caption":"Britain's Prince Harry poses with Meghan Markle in the Sunken Garden of Kensington Palace, London, Britain, November 27, 2017. REUTERS/Toby Melville","credit":"Toby Melville / Reuters","hide_logo":true,"one_line":false,"separate_image":true},"inlineWideSeparateImage":{"placement":"inlineWideSeparateImage","id":"96cbccb3edcd66f974b50c5bca44fb3d","slug":"royal-wedding-us","name":"HuffPost's royal roundup","description":"Ready for the royal wedding? We promise you’ll be dead chuffed with our coverage.","provider":"cm","image":"https://img.huffingtonpost.com/asset/5a26f842190000492c034ae6.jpeg?ops=resize_937_525","caption":"Britain's Prince Harry poses with Meghan Markle in the Sunken Garden of Kensington Palace, London, Britain, November 27, 2017. REUTERS/Toby Melville","credit":"Toby Melville / Reuters","hide_logo":true,"one_line":false,"separate_image":true},"modalVertical":{"placement":"modalVertical","id":"96cbccb3edcd66f974b50c5bca44fb3d","slug":"royal-wedding-us","name":"HuffPost's royal roundup","description":"Ready for the royal wedding? We promise you’ll be dead chuffed with our coverage.","provider":"cm","image":"https://img.huffingtonpost.com/asset/5a26f842190000492c034ae6.jpeg?ops=resize_750_421","caption":"Britain's Prince Harry poses with Meghan Markle in the Sunken Garden of Kensington Palace, London, Britain, November 27, 2017. REUTERS/Toby Melville","credit":"Toby Melville / Reuters","hide_logo":true,"one_line":false,"separate_image":true},"modalHorizontal":{"placement":"modalHorizontal","id":"96cbccb3edcd66f974b50c5bca44fb3d","slug":"royal-wedding-us","name":"HuffPost's royal roundup","description":"Ready for the royal wedding? We promise you’ll be dead chuffed with our coverage.","provider":"cm","image":"https://img.huffingtonpost.com/asset/5a26f842190000492c034ae6.jpeg?ops=resize_637_637","caption":"Britain's Prince Harry poses with Meghan Markle in the Sunken Garden of Kensington Palace, London, Britain, November 27, 2017. REUTERS/Toby Melville","credit":"Toby Melville / Reuters","hide_logo":true,"one_line":false,"separate_image":true},"hub":{"placement":"hub","id":"96cbccb3edcd66f974b50c5bca44fb3d","slug":"royal-wedding-us","name":"HuffPost's royal roundup","description":"Ready for the royal wedding? Get HuffPost’s royal roundup in your inbox every Saturday. We promise you’ll be dead chuffed with our coverage.","provider":"cm","image":"https://img.huffingtonpost.com/asset/5a26f842190000492c034ae6.jpeg?ops=resize_450_450","caption":"Britain's Prince Harry poses with Meghan Markle in the Sunken Garden of Kensington Palace, London, Britain, November 27, 2017. REUTERS/Toby Melville","credit":"Toby Melville / Reuters","hide_logo":false,"one_line":false,"separate_image":false},"subscribePageExtraWide":{"placement":"subscribePageExtraWide","id":"96cbccb3edcd66f974b50c5bca44fb3d","slug":"royal-wedding-us","name":"HuffPost's royal roundup","description":"Ready for the royal wedding? We promise you’ll be dead chuffed with our coverage.","provider":"cm","image":"https://img.huffingtonpost.com/asset/5a283059140000f36fb6bc9d.jpeg?ops=resize_2100_300","caption":"Britain's Prince Harry and his fiancee Meghan Markle visit the Terrence Higgins Trust World AIDS Day charity fair at Nottingham Contemporary in Nottingham, December 1, 2017. REUTERS/Adrian Dennis/Pool","credit":"POOL New / Reuters","hide_logo":true,"one_line":false,"separate_image":false}},"royal-wedding-canada":{"square":{"placement":"square","id":"45b81dfda3b9e6f45047865dafc028fe","slug":"royal-wedding-canada","name":"HuffPost's royal roundup","description":"Ready for the royal wedding? We promise you’ll be dead chuffed with our coverage.","provider":"cm","image":"https://img.huffingtonpost.com/asset/5a283059140000f36fb6bc9d.jpeg?ops=resize_450_450","caption":"Britain's Prince Harry and his fiancee Meghan Markle visit the Terrence Higgins Trust World AIDS Day charity fair at Nottingham Contemporary in Nottingham, December 1, 2017. REUTERS/Adrian Dennis/Pool","credit":"POOL New / Reuters","hide_logo":false,"one_line":false,"separate_image":false},"inlineWideBackgroundImage":{"placement":"inlineWideBackgroundImage","id":"45b81dfda3b9e6f45047865dafc028fe","slug":"royal-wedding-canada","name":"HuffPost's royal roundup","description":"Ready for the royal wedding? We promise you’ll be dead chuffed with our coverage.","provider":"cm","image":"https://img.huffingtonpost.com/asset/5a283059140000f36fb6bc9d.jpeg?ops=resize_1080_375","caption":"Britain's Prince Harry and his fiancee Meghan Markle visit the Terrence Higgins Trust World AIDS Day charity fair at Nottingham Contemporary in Nottingham, December 1, 2017. REUTERS/Adrian Dennis/Pool","credit":"POOL New / Reuters","hide_logo":false,"one_line":true,"separate_image":false},"wideWithBackgroundImageCheckbox":{"placement":"wideWithBackgroundImageCheckbox","id":"45b81dfda3b9e6f45047865dafc028fe","slug":"royal-wedding-canada","name":"HuffPost's royal roundup","description":"Ready for the royal wedding? We promise you’ll be dead chuffed with our coverage.","provider":"cm","image":"https://img.huffingtonpost.com/asset/5a283059140000f36fb6bc9d.jpeg?ops=resize_480_127","caption":"Britain's Prince Harry and his fiancee Meghan Markle visit the Terrence Higgins Trust World AIDS Day charity fair at Nottingham Contemporary in Nottingham, December 1, 2017. REUTERS/Adrian Dennis/Pool","credit":"POOL New / Reuters","hide_logo":false,"one_line":false,"separate_image":false},"toasterExtraWide":{"placement":"toasterExtraWide","id":"45b81dfda3b9e6f45047865dafc028fe","slug":"royal-wedding-canada","name":"HuffPost's royal roundup","description":"Ready for the royal wedding? We promise you’ll be dead chuffed with our coverage.","provider":"cm","image":"https://img.huffingtonpost.com/asset/5a283059140000f36fb6bc9d.jpeg?ops=resize_2100_300","caption":"Britain's Prince Harry and his fiancee Meghan Markle visit the Terrence Higgins Trust World AIDS Day charity fair at Nottingham Contemporary in Nottingham, December 1, 2017. REUTERS/Adrian Dennis/Pool","credit":"POOL New / Reuters","hide_logo":false,"one_line":true,"separate_image":false},"inlineVerticalSeparateImage":{"placement":"inlineVerticalSeparateImage","id":"45b81dfda3b9e6f45047865dafc028fe","slug":"royal-wedding-canada","name":"HuffPost's royal roundup","description":"Ready for the royal wedding? We promise you’ll be dead chuffed with our coverage.","provider":"cm","image":"https://img.huffingtonpost.com/asset/5a283059140000f36fb6bc9d.jpeg?ops=resize_750_421","caption":"Britain's Prince Harry and his fiancee Meghan Markle visit the Terrence Higgins Trust World AIDS Day charity fair at Nottingham Contemporary in Nottingham, December 1, 2017. REUTERS/Adrian Dennis/Pool","credit":"POOL New / Reuters","hide_logo":true,"one_line":false,"separate_image":true},"inlineWideSeparateImage":{"placement":"inlineWideSeparateImage","id":"45b81dfda3b9e6f45047865dafc028fe","slug":"royal-wedding-canada","name":"HuffPost's royal roundup","description":"Ready for the royal wedding? We promise you’ll be dead chuffed with our coverage.","provider":"cm","image":"https://img.huffingtonpost.com/asset/5a283059140000f36fb6bc9d.jpeg?ops=resize_937_525","caption":"Britain's Prince Harry and his fiancee Meghan Markle visit the Terrence Higgins Trust World AIDS Day charity fair at Nottingham Contemporary in Nottingham, December 1, 2017. REUTERS/Adrian Dennis/Pool","credit":"POOL New / Reuters","hide_logo":true,"one_line":false,"separate_image":true},"modalVertical":{"placement":"modalVertical","id":"45b81dfda3b9e6f45047865dafc028fe","slug":"royal-wedding-canada","name":"HuffPost's royal roundup","description":"Ready for the royal wedding? We promise you’ll be dead chuffed with our coverage.","provider":"cm","image":"https://img.huffingtonpost.com/asset/5a283059140000f36fb6bc9d.jpeg?ops=resize_750_421","caption":"Britain's Prince Harry and his fiancee Meghan Markle visit the Terrence Higgins Trust World AIDS Day charity fair at Nottingham Contemporary in Nottingham, December 1, 2017. REUTERS/Adrian Dennis/Pool","credit":"POOL New / Reuters","hide_logo":true,"one_line":false,"separate_image":true},"modalHorizontal":{"placement":"modalHorizontal","id":"45b81dfda3b9e6f45047865dafc028fe","slug":"royal-wedding-canada","name":"HuffPost's royal roundup","description":"Ready for the royal wedding? We promise you’ll be dead chuffed with our coverage.","provider":"cm","image":"https://img.huffingtonpost.com/asset/5a283059140000f36fb6bc9d.jpeg?ops=resize_637_637","caption":"Britain's Prince Harry and his fiancee Meghan Markle visit the Terrence Higgins Trust World AIDS Day charity fair at Nottingham Contemporary in Nottingham, December 1, 2017. REUTERS/Adrian Dennis/Pool","credit":"POOL New / Reuters","hide_logo":true,"one_line":false,"separate_image":true},"hub":{"placement":"hub","id":"45b81dfda3b9e6f45047865dafc028fe","slug":"royal-wedding-canada","name":"HuffPost's royal roundup","description":"Ready for the royal wedding? We promise you’ll be dead chuffed with our coverage.","provider":"cm","image":"https://img.huffingtonpost.com/asset/5a283059140000f36fb6bc9d.jpeg?ops=resize_450_450","caption":"Britain's Prince Harry and his fiancee Meghan Markle visit the Terrence Higgins Trust World AIDS Day charity fair at Nottingham Contemporary in Nottingham, December 1, 2017. REUTERS/Adrian Dennis/Pool","credit":"POOL New / Reuters","hide_logo":false,"one_line":false,"separate_image":false},"subscribePageExtraWide":{"placement":"subscribePageExtraWide","id":"45b81dfda3b9e6f45047865dafc028fe","slug":"royal-wedding-canada","name":"HuffPost's royal roundup","description":"Ready for the royal wedding? We promise you’ll be dead chuffed with our coverage.","provider":"cm","image":"https://img.huffingtonpost.com/asset/5a283059140000f36fb6bc9d.jpeg?ops=resize_2100_300","caption":"Britain's Prince Harry and his fiancee Meghan Markle visit the Terrence Higgins Trust World AIDS Day charity fair at Nottingham Contemporary in Nottingham, December 1, 2017. REUTERS/Adrian Dennis/Pool","credit":"POOL New / Reuters","hide_logo":true,"one_line":false,"separate_image":false}},"royal-wedding-uk":{"square":{"placement":"square","id":"e20b761498182e092a0dbeff46be8015","slug":"royal-wedding-uk","name":"HuffPost's royal roundup","description":"Ready for the royal wedding? We promise you’ll be dead chuffed with our coverage.","provider":"cm","image":"https://img.huffingtonpost.com/asset/5a283059140000f36fb6bc9d.jpeg?ops=resize_450_450","caption":"Britain's Prince Harry and his fiancee Meghan Markle visit the Terrence Higgins Trust World AIDS Day charity fair at Nottingham Contemporary in Nottingham, December 1, 2017. REUTERS/Adrian Dennis/Pool","credit":"POOL New / Reuters","hide_logo":false,"one_line":false,"separate_image":false},"inlineWideBackgroundImage":{"placement":"inlineWideBackgroundImage","id":"e20b761498182e092a0dbeff46be8015","slug":"royal-wedding-uk","name":"HuffPost's royal roundup","description":"Ready for the royal wedding? We promise you’ll be dead chuffed with our coverage.","provider":"cm","image":"https://img.huffingtonpost.com/asset/5a283059140000f36fb6bc9d.jpeg?ops=resize_1080_375","caption":"Britain's Prince Harry and his fiancee Meghan Markle visit the Terrence Higgins Trust World AIDS Day charity fair at Nottingham Contemporary in Nottingham, December 1, 2017. REUTERS/Adrian Dennis/Pool","credit":"POOL New / Reuters","hide_logo":false,"one_line":true,"separate_image":false},"wideWithBackgroundImageCheckbox":{"placement":"wideWithBackgroundImageCheckbox","id":"e20b761498182e092a0dbeff46be8015","slug":"royal-wedding-uk","name":"HuffPost's royal roundup","description":"Ready for the royal wedding? We promise you’ll be dead chuffed with our coverage.","provider":"cm","image":"https://img.huffingtonpost.com/asset/5a283059140000f36fb6bc9d.jpeg?ops=resize_480_127","caption":"Britain's Prince Harry and his fiancee Meghan Markle visit the Terrence Higgins Trust World AIDS Day charity fair at Nottingham Contemporary in Nottingham, December 1, 2017. REUTERS/Adrian Dennis/Pool","credit":"POOL New / Reuters","hide_logo":false,"one_line":false,"separate_image":false},"toasterExtraWide":{"placement":"toasterExtraWide","id":"e20b761498182e092a0dbeff46be8015","slug":"royal-wedding-uk","name":"HuffPost's royal roundup","description":"Ready for the royal wedding? We promise you’ll be dead chuffed with our coverage.","provider":"cm","image":"https://img.huffingtonpost.com/asset/5a283059140000f36fb6bc9d.jpeg?ops=resize_2100_300","caption":"Britain's Prince Harry and his fiancee Meghan Markle visit the Terrence Higgins Trust World AIDS Day charity fair at Nottingham Contemporary in Nottingham, December 1, 2017. REUTERS/Adrian Dennis/Pool","credit":"POOL New / Reuters","hide_logo":false,"one_line":true,"separate_image":false},"inlineVerticalSeparateImage":{"placement":"inlineVerticalSeparateImage","id":"e20b761498182e092a0dbeff46be8015","slug":"royal-wedding-uk","name":"HuffPost's royal roundup","description":"Ready for the royal wedding? We promise you’ll be dead chuffed with our coverage.","provider":"cm","image":"https://img.huffingtonpost.com/asset/5a283059140000f36fb6bc9d.jpeg?ops=resize_750_421","caption":"Britain's Prince Harry and his fiancee Meghan Markle visit the Terrence Higgins Trust World AIDS Day charity fair at Nottingham Contemporary in Nottingham, December 1, 2017. REUTERS/Adrian Dennis/Pool","credit":"POOL New / Reuters","hide_logo":true,"one_line":false,"separate_image":true},"inlineWideSeparateImage":{"placement":"inlineWideSeparateImage","id":"e20b761498182e092a0dbeff46be8015","slug":"royal-wedding-uk","name":"HuffPost's royal roundup","description":"Ready for the royal wedding? We promise you’ll be dead chuffed with our coverage.","provider":"cm","image":"https://img.huffingtonpost.com/asset/5a283059140000f36fb6bc9d.jpeg?ops=resize_937_525","caption":"Britain's Prince Harry and his fiancee Meghan Markle visit the Terrence Higgins Trust World AIDS Day charity fair at Nottingham Contemporary in Nottingham, December 1, 2017. REUTERS/Adrian Dennis/Pool","credit":"POOL New / Reuters","hide_logo":true,"one_line":false,"separate_image":true},"modalVertical":{"placement":"modalVertical","id":"e20b761498182e092a0dbeff46be8015","slug":"royal-wedding-uk","name":"HuffPost's royal roundup","description":"Ready for the royal wedding? We promise you’ll be dead chuffed with our coverage.","provider":"cm","image":"https://img.huffingtonpost.com/asset/5a283059140000f36fb6bc9d.jpeg?ops=resize_750_421","caption":"Britain's Prince Harry and his fiancee Meghan Markle visit the Terrence Higgins Trust World AIDS Day charity fair at Nottingham Contemporary in Nottingham, December 1, 2017. REUTERS/Adrian Dennis/Pool","credit":"POOL New / Reuters","hide_logo":true,"one_line":false,"separate_image":true},"modalHorizontal":{"placement":"modalHorizontal","id":"e20b761498182e092a0dbeff46be8015","slug":"royal-wedding-uk","name":"HuffPost's royal roundup","description":"Ready for the royal wedding? We promise you’ll be dead chuffed with our coverage.","provider":"cm","image":"https://img.huffingtonpost.com/asset/5a283059140000f36fb6bc9d.jpeg?ops=resize_637_637","caption":"Britain's Prince Harry and his fiancee Meghan Markle visit the Terrence Higgins Trust World AIDS Day charity fair at Nottingham Contemporary in Nottingham, December 1, 2017. REUTERS/Adrian Dennis/Pool","credit":"POOL New / Reuters","hide_logo":true,"one_line":false,"separate_image":true},"hub":{"placement":"hub","id":"e20b761498182e092a0dbeff46be8015","slug":"royal-wedding-uk","name":"HuffPost's royal roundup","description":"Ready for the royal wedding? We promise you’ll be dead chuffed with our coverage.","provider":"cm","image":"https://img.huffingtonpost.com/asset/5a283059140000f36fb6bc9d.jpeg?ops=resize_450_450","caption":"Britain's Prince Harry and his fiancee Meghan Markle visit the Terrence Higgins Trust World AIDS Day charity fair at Nottingham Contemporary in Nottingham, December 1, 2017. REUTERS/Adrian Dennis/Pool","credit":"POOL New / Reuters","hide_logo":false,"one_line":false,"separate_image":false},"subscribePageExtraWide":{"placement":"subscribePageExtraWide","id":"e20b761498182e092a0dbeff46be8015","slug":"royal-wedding-uk","name":"HuffPost's royal roundup","description":"Ready for the royal wedding? We promise you’ll be dead chuffed with our coverage.","provider":"cm","image":"https://img.huffingtonpost.com/asset/5a283059140000f36fb6bc9d.jpeg?ops=resize_2100_300","caption":"Britain's Prince Harry and his fiancee Meghan Markle visit the Terrence Higgins Trust World AIDS Day charity fair at Nottingham Contemporary in Nottingham, December 1, 2017. REUTERS/Adrian Dennis/Pool","credit":"POOL New / Reuters","hide_logo":true,"one_line":false,"separate_image":false}},"this-new-world":{"square":{"placement":"square","id":"e31b361a7a48a1526e5217b8b3f8b405","slug":"this-new-world","name":"Subscribe to This New World","description":"Get weekly updates on our progress toward building a fairer world.","provider":"cm","image":"https://img.huffingtonpost.com/asset/5a8718e31e00002c007abee2.jpeg?ops=resize_450_450","caption":"|abraham lincoln|american|background|backgrounds and textures|brown|business|cent|center|change|coin|color|copper|currency|economy|finance|horizontal|interior|legal tender|light|money|overhead|penny|pile|round|shadow|shiny|sundell larsen|texture|VS03|abraham|backgrounds|legal|lincoln|tender|textures|V03|VOL3|3054.JPG|","credit":"Getty Images","hide_logo":false,"one_line":false,"separate_image":false},"inlineWideBackgroundImage":{"placement":"inlineWideBackgroundImage","id":"e31b361a7a48a1526e5217b8b3f8b405","slug":"this-new-world","name":"This New World","description":"The current capitalist system is broken. Get updates on our progress toward building a fairer world.","provider":"cm","image":"https://img.huffingtonpost.com/asset/5a8718e31e00002c007abee2.jpeg?ops=resize_1080_375","caption":"|abraham lincoln|american|background|backgrounds and textures|brown|business|cent|center|change|coin|color|copper|currency|economy|finance|horizontal|interior|legal tender|light|money|overhead|penny|pile|round|shadow|shiny|sundell larsen|texture|VS03|abraham|backgrounds|legal|lincoln|tender|textures|V03|VOL3|3054.JPG|","credit":"Getty Images","hide_logo":false,"one_line":true,"separate_image":false},"wideWithBackgroundImageCheckbox":{"placement":"wideWithBackgroundImageCheckbox","id":"e31b361a7a48a1526e5217b8b3f8b405","slug":"this-new-world","name":"This New World","description":"The current capitalist system is broken. Get updates on our progress toward building a fairer world.","provider":"cm","image":"https://img.huffingtonpost.com/asset/5a8718e31e00002c007abee2.jpeg?ops=resize_480_127","caption":"|abraham lincoln|american|background|backgrounds and textures|brown|business|cent|center|change|coin|color|copper|currency|economy|finance|horizontal|interior|legal tender|light|money|overhead|penny|pile|round|shadow|shiny|sundell larsen|texture|VS03|abraham|backgrounds|legal|lincoln|tender|textures|V03|VOL3|3054.JPG|","credit":"Getty Images","hide_logo":false,"one_line":false,"separate_image":false},"toasterExtraWide":{"placement":"toasterExtraWide","id":"e31b361a7a48a1526e5217b8b3f8b405","slug":"this-new-world","name":"This New World","description":"The current capitalist system is broken. Get updates on our progress toward building a fairer world.","provider":"cm","image":"https://img.huffingtonpost.com/asset/5a8718e31e00002c007abee2.jpeg?ops=resize_2100_300","caption":"|abraham lincoln|american|background|backgrounds and textures|brown|business|cent|center|change|coin|color|copper|currency|economy|finance|horizontal|interior|legal tender|light|money|overhead|penny|pile|round|shadow|shiny|sundell larsen|texture|VS03|abraham|backgrounds|legal|lincoln|tender|textures|V03|VOL3|3054.JPG|","credit":"Getty Images","hide_logo":false,"one_line":true,"separate_image":false},"inlineVerticalSeparateImage":{"placement":"inlineVerticalSeparateImage","id":"e31b361a7a48a1526e5217b8b3f8b405","slug":"this-new-world","name":"This New World","description":"The current capitalist system is broken. Get updates on our progress toward building a fairer world.","provider":"cm","image":"https://img.huffingtonpost.com/asset/5a8718e31e00002c007abee2.jpeg?ops=resize_750_421","caption":"|abraham lincoln|american|background|backgrounds and textures|brown|business|cent|center|change|coin|color|copper|currency|economy|finance|horizontal|interior|legal tender|light|money|overhead|penny|pile|round|shadow|shiny|sundell larsen|texture|VS03|abraham|backgrounds|legal|lincoln|tender|textures|V03|VOL3|3054.JPG|","credit":"Getty Images","hide_logo":true,"one_line":false,"separate_image":true},"inlineWideSeparateImage":{"placement":"inlineWideSeparateImage","id":"e31b361a7a48a1526e5217b8b3f8b405","slug":"this-new-world","name":"This New World","description":"The current capitalist system is broken. Get updates on our progress toward building a fairer world.","provider":"cm","image":"https://img.huffingtonpost.com/asset/5a8718e31e00002c007abee2.jpeg?ops=resize_937_525","caption":"|abraham lincoln|american|background|backgrounds and textures|brown|business|cent|center|change|coin|color|copper|currency|economy|finance|horizontal|interior|legal tender|light|money|overhead|penny|pile|round|shadow|shiny|sundell larsen|texture|VS03|abraham|backgrounds|legal|lincoln|tender|textures|V03|VOL3|3054.JPG|","credit":"Getty Images","hide_logo":true,"one_line":false,"separate_image":true},"modalVertical":{"placement":"modalVertical","id":"e31b361a7a48a1526e5217b8b3f8b405","slug":"this-new-world","name":"This New World","description":"The current capitalist system is broken. Get updates on our progress toward building a fairer world.","provider":"cm","image":"https://img.huffingtonpost.com/asset/5a8718e31e00002c007abee2.jpeg?ops=resize_750_421","caption":"|abraham lincoln|american|background|backgrounds and textures|brown|business|cent|center|change|coin|color|copper|currency|economy|finance|horizontal|interior|legal tender|light|money|overhead|penny|pile|round|shadow|shiny|sundell larsen|texture|VS03|abraham|backgrounds|legal|lincoln|tender|textures|V03|VOL3|3054.JPG|","credit":"Getty Images","hide_logo":true,"one_line":false,"separate_image":true},"modalHorizontal":{"placement":"modalHorizontal","id":"e31b361a7a48a1526e5217b8b3f8b405","slug":"this-new-world","name":"This New World","description":"The current capitalist system is broken. Get updates on our progress toward building a fairer world.","provider":"cm","image":"https://img.huffingtonpost.com/asset/5a8718e31e00002c007abee2.jpeg?ops=resize_637_637","caption":"|abraham lincoln|american|background|backgrounds and textures|brown|business|cent|center|change|coin|color|copper|currency|economy|finance|horizontal|interior|legal tender|light|money|overhead|penny|pile|round|shadow|shiny|sundell larsen|texture|VS03|abraham|backgrounds|legal|lincoln|tender|textures|V03|VOL3|3054.JPG|","credit":"Getty Images","hide_logo":true,"one_line":false,"separate_image":true},"hub":{"placement":"hub","id":"e31b361a7a48a1526e5217b8b3f8b405","slug":"this-new-world","name":"This New World","description":"The current capitalist system is broken. Get updates on our progress toward building a fairer world.","provider":"cm","image":"https://img.huffingtonpost.com/asset/5a8718e31e00002c007abee2.jpeg?ops=resize_450_450","caption":"|abraham lincoln|american|background|backgrounds and textures|brown|business|cent|center|change|coin|color|copper|currency|economy|finance|horizontal|interior|legal tender|light|money|overhead|penny|pile|round|shadow|shiny|sundell larsen|texture|VS03|abraham|backgrounds|legal|lincoln|tender|textures|V03|VOL3|3054.JPG|","credit":"Getty Images","hide_logo":false,"one_line":false,"separate_image":false},"subscribePageExtraWide":{"placement":"subscribePageExtraWide","id":"e31b361a7a48a1526e5217b8b3f8b405","slug":"this-new-world","name":"Subscribe to This New World","description":"Get weekly updates on our progress toward building a fairer world.","provider":"cm","image":"https://img.huffingtonpost.com/asset/5a8718e31e00002c007abee2.jpeg?ops=resize_2100_300","caption":"|abraham lincoln|american|background|backgrounds and textures|brown|business|cent|center|change|coin|color|copper|currency|economy|finance|horizontal|interior|legal tender|light|money|overhead|penny|pile|round|shadow|shiny|sundell larsen|texture|VS03|abraham|backgrounds|legal|lincoln|tender|textures|V03|VOL3|3054.JPG|","credit":"Getty Images","hide_logo":true,"one_line":false,"separate_image":false}},"streamline":{"square":{"placement":"square","id":"2bfe3c4dd346850a5f7b9f39c108c30f","slug":"streamline","name":"Subscribe to HuffPost Streamline","description":"Wondering what to watch tonight?","provider":"cm","image":"https://img.huffingtonpost.com/asset/5a8c42f02000003900eaf6aa.png?ops=resize_450_450","caption":"","credit":"Getty","hide_logo":false,"one_line":false,"separate_image":false},"inlineWideBackgroundImage":{"placement":"inlineWideBackgroundImage","id":"2bfe3c4dd346850a5f7b9f39c108c30f","slug":"streamline","name":"HuffPost Streamline","description":"Wondering what to watch tonight? Subscribe to our Streamline email.","provider":"cm","image":"https://img.huffingtonpost.com/asset/5a8c42f02000003900eaf6aa.png?ops=resize_1080_375","caption":"","credit":"Getty","hide_logo":false,"one_line":true,"separate_image":false},"wideWithBackgroundImageCheckbox":{"placement":"wideWithBackgroundImageCheckbox","id":"2bfe3c4dd346850a5f7b9f39c108c30f","slug":"streamline","name":"HuffPost Streamline","description":"Wondering what to watch tonight? Subscribe to our Streamline email.","provider":"cm","image":"https://img.huffingtonpost.com/asset/5a8c42f02000003900eaf6aa.png?ops=resize_480_127","caption":"","credit":"Getty","hide_logo":false,"one_line":false,"separate_image":false},"toasterExtraWide":{"placement":"toasterExtraWide","id":"2bfe3c4dd346850a5f7b9f39c108c30f","slug":"streamline","name":"HuffPost Streamline","description":"Wondering what to watch tonight? Subscribe to our Streamline email.","provider":"cm","image":"https://img.huffingtonpost.com/asset/5a8c42f02000003900eaf6aa.png?ops=resize_2100_300","caption":"","credit":"Getty","hide_logo":false,"one_line":true,"separate_image":false},"inlineVerticalSeparateImage":{"placement":"inlineVerticalSeparateImage","id":"2bfe3c4dd346850a5f7b9f39c108c30f","slug":"streamline","name":"HuffPost Streamline","description":"Wondering what to watch tonight? Subscribe to our Streamline email.","provider":"cm","image":"https://img.huffingtonpost.com/asset/5a8c42f02000003900eaf6aa.png?ops=resize_750_421","caption":"","credit":"Getty","hide_logo":true,"one_line":false,"separate_image":true},"inlineWideSeparateImage":{"placement":"inlineWideSeparateImage","id":"2bfe3c4dd346850a5f7b9f39c108c30f","slug":"streamline","name":"HuffPost Streamline","description":"Wondering what to watch tonight? Subscribe to our Streamline email.","provider":"cm","image":"https://img.huffingtonpost.com/asset/5a8c42f02000003900eaf6aa.png?ops=resize_937_525","caption":"","credit":"Getty","hide_logo":true,"one_line":false,"separate_image":true},"modalVertical":{"placement":"modalVertical","id":"2bfe3c4dd346850a5f7b9f39c108c30f","slug":"streamline","name":"HuffPost Streamline","description":"Wondering what to watch tonight? Subscribe to our Streamline email.","provider":"cm","image":"https://img.huffingtonpost.com/asset/5a8c42f02000003900eaf6aa.png?ops=resize_750_421","caption":"","credit":"Getty","hide_logo":true,"one_line":false,"separate_image":true},"modalHorizontal":{"placement":"modalHorizontal","id":"2bfe3c4dd346850a5f7b9f39c108c30f","slug":"streamline","name":"HuffPost Streamline","description":"Wondering what to watch tonight? Subscribe to our Streamline email.","provider":"cm","image":"https://img.huffingtonpost.com/asset/5a8c42f02000003900eaf6aa.png?ops=resize_637_637","caption":"","credit":"Getty","hide_logo":true,"one_line":false,"separate_image":true},"hub":{"placement":"hub","id":"2bfe3c4dd346850a5f7b9f39c108c30f","slug":"streamline","name":"Streamline","description":"Wondering what to watch tonight? Subscribe to our Streamline email.","provider":"cm","image":"https://img.huffingtonpost.com/asset/5a8c42f02000003900eaf6aa.png?ops=resize_450_450","caption":"","credit":"Getty","hide_logo":false,"one_line":false,"separate_image":false},"subscribePageExtraWide":{"placement":"subscribePageExtraWide","id":"2bfe3c4dd346850a5f7b9f39c108c30f","slug":"streamline","name":"HuffPost Streamline","description":"Wondering what to watch tonight? Subscribe to our Streamline email.","provider":"cm","image":"https://img.huffingtonpost.com/asset/5a8c42f02000003900eaf6aa.png?ops=resize_2100_300","caption":"","credit":"Getty","hide_logo":true,"one_line":false,"separate_image":false}},"huffposts-food-email":{"square":{"placement":"square","id":"3eb9c87bc10098f3a73cf2a7800840b3","slug":"huffposts-food-email","name":"Subscribe","description":"The best recipes, kitchen how-tos and genius food facts.","provider":"cm","image":"https://img.huffingtonpost.com/asset/5a8498171e00002c007abb92.png?ops=resize_450_450","caption":null,"credit":"Isabella Carapella","hide_logo":false,"one_line":false,"separate_image":false},"inlineWideBackgroundImage":{"placement":"inlineWideBackgroundImage","id":"3eb9c87bc10098f3a73cf2a7800840b3","slug":"huffposts-food-email","name":"Subscribe to HuffPost’s food email","description":"The best recipes, kitchen how-tos and genius food facts.","provider":"cm","image":"https://img.huffingtonpost.com/asset/5a8498171e00002c007abb92.png?ops=resize_1080_375","caption":null,"credit":"Isabella Carapella","hide_logo":false,"one_line":true,"separate_image":false},"wideWithBackgroundImageCheckbox":{"placement":"wideWithBackgroundImageCheckbox","id":"3eb9c87bc10098f3a73cf2a7800840b3","slug":"huffposts-food-email","name":"Subscribe to HuffPost’s food email","description":"The best recipes, kitchen how-tos and genius food facts.","provider":"cm","image":"https://img.huffingtonpost.com/asset/5a8498171e00002c007abb92.png?ops=resize_480_127","caption":null,"credit":"Isabella Carapella","hide_logo":false,"one_line":false,"separate_image":false},"toasterExtraWide":{"placement":"toasterExtraWide","id":"3eb9c87bc10098f3a73cf2a7800840b3","slug":"huffposts-food-email","name":"Subscribe to HuffPost’s food email","description":"The best recipes, kitchen how-tos and genius food facts.","provider":"cm","image":"https://img.huffingtonpost.com/asset/5a8498171e00002c007abb92.png?ops=resize_2100_300","caption":null,"credit":"Isabella Carapella","hide_logo":false,"one_line":true,"separate_image":false},"inlineVerticalSeparateImage":{"placement":"inlineVerticalSeparateImage","id":"3eb9c87bc10098f3a73cf2a7800840b3","slug":"huffposts-food-email","name":"Subscribe to HuffPost’s food email","description":"The best recipes, kitchen how-tos and genius food facts.","provider":"cm","image":"https://img.huffingtonpost.com/asset/5a8498171e00002c007abb92.png?ops=resize_750_421","caption":null,"credit":"Isabella Carapella","hide_logo":true,"one_line":false,"separate_image":true},"inlineWideSeparateImage":{"placement":"inlineWideSeparateImage","id":"3eb9c87bc10098f3a73cf2a7800840b3","slug":"huffposts-food-email","name":"Subscribe to HuffPost’s food email","description":"The best recipes, kitchen how-tos and genius food facts.","provider":"cm","image":"https://img.huffingtonpost.com/asset/5a8498171e00002c007abb92.png?ops=resize_937_525","caption":null,"credit":"Isabella Carapella","hide_logo":true,"one_line":false,"separate_image":true},"modalVertical":{"placement":"modalVertical","id":"3eb9c87bc10098f3a73cf2a7800840b3","slug":"huffposts-food-email","name":"Subscribe to HuffPost’s food email","description":"The best recipes, kitchen how-tos and genius food facts.","provider":"cm","image":"https://img.huffingtonpost.com/asset/5a8498171e00002c007abb92.png?ops=resize_750_421","caption":null,"credit":"Isabella Carapella","hide_logo":true,"one_line":false,"separate_image":true},"modalHorizontal":{"placement":"modalHorizontal","id":"3eb9c87bc10098f3a73cf2a7800840b3","slug":"huffposts-food-email","name":"Subscribe to HuffPost’s food email","description":"The best recipes, kitchen how-tos and genius food facts.","provider":"cm","image":"https://img.huffingtonpost.com/asset/5a8498171e00002c007abb92.png?ops=resize_637_637","caption":null,"credit":"Isabella Carapella","hide_logo":true,"one_line":false,"separate_image":true},"hub":{"placement":"hub","id":"3eb9c87bc10098f3a73cf2a7800840b3","slug":"huffposts-food-email","name":"Subscribe to HuffPost’s food email","description":"The best recipes, kitchen how-tos and genius food facts.","provider":"cm","image":"https://img.huffingtonpost.com/asset/5a8498171e00002c007abb92.png?ops=resize_450_450","caption":null,"credit":"Isabella Carapella","hide_logo":false,"one_line":false,"separate_image":false},"subscribePageExtraWide":{"placement":"subscribePageExtraWide","id":"3eb9c87bc10098f3a73cf2a7800840b3","slug":"huffposts-food-email","name":"Subscribe to HuffPost’s food email","description":"The best recipes, kitchen how-tos and genius food facts.","provider":"cm","image":"https://img.huffingtonpost.com/asset/5a8498171e00002c007abb92.png?ops=resize_2100_300","caption":null,"credit":"Isabella Carapella","hide_logo":true,"one_line":false,"separate_image":false}},"huffposts-relationships":{"square":{"placement":"square","id":"22834c06d4998c99efa24babfa1d20cd","slug":"huffposts-relationships","name":"Subscribe to HuffPost’s relationships email","description":"A weekly guide to improving all of the relationships in your life.","provider":"cm","image":"https://img.huffingtonpost.com/asset/5a84993e21000039006013f8.png?ops=resize_450_450","caption":null,"credit":"Isabella Carapella","hide_logo":false,"one_line":false,"separate_image":false},"inlineWideBackgroundImage":{"placement":"inlineWideBackgroundImage","id":"22834c06d4998c99efa24babfa1d20cd","slug":"huffposts-relationships","name":"Subscribe to HuffPost’s relationships email","description":"A weekly guide to improving all of the relationships in your life.","provider":"cm","image":"https://img.huffingtonpost.com/asset/5a84993e21000039006013f8.png?ops=resize_1080_375","caption":null,"credit":"Isabella Carapella","hide_logo":false,"one_line":true,"separate_image":false},"wideWithBackgroundImageCheckbox":{"placement":"wideWithBackgroundImageCheckbox","id":"22834c06d4998c99efa24babfa1d20cd","slug":"huffposts-relationships","name":"Subscribe to HuffPost’s relationships email","description":"A weekly guide to improving all of the relationships in your life.","provider":"cm","image":"https://img.huffingtonpost.com/asset/5a84993e21000039006013f8.png?ops=resize_480_127","caption":null,"credit":"Isabella Carapella","hide_logo":false,"one_line":false,"separate_image":false},"toasterExtraWide":{"placement":"toasterExtraWide","id":"22834c06d4998c99efa24babfa1d20cd","slug":"huffposts-relationships","name":"Subscribe to HuffPost’s relationships email","description":"A weekly guide to improving all of the relationships in your life.","provider":"cm","image":"https://img.huffingtonpost.com/asset/5a84993e21000039006013f8.png?ops=resize_2100_300","caption":null,"credit":"Isabella Carapella","hide_logo":false,"one_line":true,"separate_image":false},"inlineVerticalSeparateImage":{"placement":"inlineVerticalSeparateImage","id":"22834c06d4998c99efa24babfa1d20cd","slug":"huffposts-relationships","name":"Subscribe to HuffPost’s relationships email","description":"A weekly guide to improving all of the relationships in your life.","provider":"cm","image":"https://img.huffingtonpost.com/asset/5a84993e21000039006013f8.png?ops=resize_750_421","caption":null,"credit":"Isabella Carapella","hide_logo":true,"one_line":false,"separate_image":true},"inlineWideSeparateImage":{"placement":"inlineWideSeparateImage","id":"22834c06d4998c99efa24babfa1d20cd","slug":"huffposts-relationships","name":"Subscribe to HuffPost’s relationships email","description":"A weekly guide to improving all of the relationships in your life.","provider":"cm","image":"https://img.huffingtonpost.com/asset/5a84993e21000039006013f8.png?ops=resize_937_525","caption":null,"credit":"Isabella Carapella","hide_logo":true,"one_line":false,"separate_image":true},"modalVertical":{"placement":"modalVertical","id":"22834c06d4998c99efa24babfa1d20cd","slug":"huffposts-relationships","name":"Subscribe to HuffPost’s relationships email","description":"A weekly guide to improving all of the relationships in your life.","provider":"cm","image":"https://img.huffingtonpost.com/asset/5a84993e21000039006013f8.png?ops=resize_750_421","caption":null,"credit":"Isabella Carapella","hide_logo":true,"one_line":false,"separate_image":true},"modalHorizontal":{"placement":"modalHorizontal","id":"22834c06d4998c99efa24babfa1d20cd","slug":"huffposts-relationships","name":"Subscribe to HuffPost’s relationships email","description":"A weekly guide to improving all of the relationships in your life.","provider":"cm","image":"https://img.huffingtonpost.com/asset/5a84993e21000039006013f8.png?ops=resize_637_637","caption":null,"credit":"Isabella Carapella","hide_logo":true,"one_line":false,"separate_image":true},"hub":{"placement":"hub","id":"22834c06d4998c99efa24babfa1d20cd","slug":"huffposts-relationships","name":"Subscribe to HuffPost’s relationships email","description":"A weekly guide to improving all of the relationships in your life.","provider":"cm","image":"https://img.huffingtonpost.com/asset/5a84993e21000039006013f8.png?ops=resize_450_450","caption":null,"credit":"Isabella Carapella","hide_logo":false,"one_line":false,"separate_image":false},"subscribePageExtraWide":{"placement":"subscribePageExtraWide","id":"22834c06d4998c99efa24babfa1d20cd","slug":"huffposts-relationships","name":"Subscribe to HuffPost’s relationships email","description":"A weekly guide to improving all of the relationships in your life.","provider":"cm","image":"https://img.huffingtonpost.com/asset/5a84993e21000039006013f8.png?ops=resize_2100_300","caption":null,"credit":"Isabella Carapella","hide_logo":true,"one_line":false,"separate_image":false}},"huffposts-culture":{"square":{"placement":"square","id":"9a4692625eb289e3017a6a78bc369a9f","slug":"huffposts-culture","name":"Subscribe to HuffPost’s culture email","description":"Everything from what to watch to cocktail party fodder you'll love.","provider":"cm","image":"https://img.huffingtonpost.com/asset/5bb6562c220000ba01dcc49d.png?ops=resize_450_450","caption":null,"credit":"Siobhan Dooley","hide_logo":false,"one_line":false,"separate_image":false},"inlineWideBackgroundImage":{"placement":"inlineWideBackgroundImage","id":"9a4692625eb289e3017a6a78bc369a9f","slug":"huffposts-culture","name":"Subscribe to HuffPost’s culture email","description":"Everything from what to watch to cocktail party fodder you'll love.","provider":"cm","image":"https://img.huffingtonpost.com/asset/5bb6562c220000ba01dcc49d.png?ops=resize_1080_375","caption":null,"credit":"Siobhan Dooley","hide_logo":false,"one_line":true,"separate_image":false},"wideWithBackgroundImageCheckbox":{"placement":"wideWithBackgroundImageCheckbox","id":"9a4692625eb289e3017a6a78bc369a9f","slug":"huffposts-culture","name":"Subscribe to HuffPost’s culture email","description":"Everything from what to watch to cocktail party fodder you'll love.","provider":"cm","image":"https://img.huffingtonpost.com/asset/5bb6562c220000ba01dcc49d.png?ops=resize_480_127","caption":null,"credit":"Siobhan Dooley","hide_logo":false,"one_line":false,"separate_image":false},"toasterExtraWide":{"placement":"toasterExtraWide","id":"9a4692625eb289e3017a6a78bc369a9f","slug":"huffposts-culture","name":"Subscribe to HuffPost’s culture email","description":"Everything from what to watch to cocktail party fodder you'll love.","provider":"cm","image":"https://img.huffingtonpost.com/asset/5bb6562c220000ba01dcc49d.png?ops=resize_2100_300","caption":null,"credit":"Siobhan Dooley","hide_logo":false,"one_line":true,"separate_image":false},"inlineVerticalSeparateImage":{"placement":"inlineVerticalSeparateImage","id":"9a4692625eb289e3017a6a78bc369a9f","slug":"huffposts-culture","name":"Subscribe to HuffPost’s culture email","description":"Everything from what to watch to cocktail party fodder you'll love.","provider":"cm","image":"https://img.huffingtonpost.com/asset/5bb6562c220000ba01dcc49d.png?ops=resize_750_421","caption":null,"credit":"Siobhan Dooley","hide_logo":true,"one_line":false,"separate_image":true},"inlineWideSeparateImage":{"placement":"inlineWideSeparateImage","id":"9a4692625eb289e3017a6a78bc369a9f","slug":"huffposts-culture","name":"Subscribe to HuffPost’s culture email","description":"Everything from what to watch to cocktail party fodder you'll love.","provider":"cm","image":"https://img.huffingtonpost.com/asset/5a849a4321000050006013fb.png?ops=resize_937_525","caption":null,"credit":"Isabella Carapella","hide_logo":true,"one_line":false,"separate_image":true},"modalVertical":{"placement":"modalVertical","id":"9a4692625eb289e3017a6a78bc369a9f","slug":"huffposts-culture","name":"Subscribe to HuffPost’s culture email","description":"Everything from what to watch to cocktail party fodder you'll love.","provider":"cm","image":"https://img.huffingtonpost.com/asset/5bb6562c220000ba01dcc49d.png?ops=resize_750_421","caption":null,"credit":"Siobhan Dooley","hide_logo":true,"one_line":false,"separate_image":true},"modalHorizontal":{"placement":"modalHorizontal","id":"9a4692625eb289e3017a6a78bc369a9f","slug":"huffposts-culture","name":"Subscribe to HuffPost’s culture email","description":"Everything from what to watch to cocktail party fodder you'll love.","provider":"cm","image":"https://img.huffingtonpost.com/asset/5bb6562c220000ba01dcc49d.png?ops=resize_637_637","caption":null,"credit":"Siobhan Dooley","hide_logo":true,"one_line":false,"separate_image":true},"hub":{"placement":"hub","id":"9a4692625eb289e3017a6a78bc369a9f","slug":"huffposts-culture","name":"Subscribe to HuffPost’s culture email","description":"Everything from what to watch to cocktail party fodder you'll love.","provider":"cm","image":"https://img.huffingtonpost.com/asset/5bb6562c220000ba01dcc49d.png?ops=resize_450_450","caption":null,"credit":"Siobhan Dooley","hide_logo":false,"one_line":false,"separate_image":false},"subscribePageExtraWide":{"placement":"subscribePageExtraWide","id":"9a4692625eb289e3017a6a78bc369a9f","slug":"huffposts-culture","name":"Subscribe to HuffPost’s culture email","description":"Everything from what to watch to cocktail party fodder you'll love.","provider":"cm","image":"https://img.huffingtonpost.com/asset/5a849a4321000050006013fb.png?ops=resize_2100_300","caption":null,"credit":"Isabella Carapella","hide_logo":true,"one_line":false,"separate_image":false}},"huffposts-money-and-living":{"square":{"placement":"square","id":"8886ac25ddd65d3e1e0625d555afede0","slug":"huffposts-money-and-living","name":"Subscribe to HuffPost’s money and living email","description":"Everything you should have learned in school but didn’t.","provider":"cm","image":"https://img.huffingtonpost.com/asset/5a849b252000003900eaee57.png?ops=resize_450_450","caption":null,"credit":"Isabella Carapella","hide_logo":false,"one_line":false,"separate_image":false},"inlineWideBackgroundImage":{"placement":"inlineWideBackgroundImage","id":"8886ac25ddd65d3e1e0625d555afede0","slug":"huffposts-money-and-living","name":"Subscribe to HuffPost’s money and living email","description":"Everything you should have learned in school but didn’t.","provider":"cm","image":"https://img.huffingtonpost.com/asset/5a849b252000003900eaee57.png?ops=resize_1080_375","caption":null,"credit":"Isabella Carapella","hide_logo":false,"one_line":true,"separate_image":false},"wideWithBackgroundImageCheckbox":{"placement":"wideWithBackgroundImageCheckbox","id":"8886ac25ddd65d3e1e0625d555afede0","slug":"huffposts-money-and-living","name":"Subscribe to HuffPost’s money and living email","description":"Everything you should have learned in school but didn’t.","provider":"cm","image":"https://img.huffingtonpost.com/asset/5a849b252000003900eaee57.png?ops=resize_480_127","caption":null,"credit":"Isabella Carapella","hide_logo":false,"one_line":false,"separate_image":false},"toasterExtraWide":{"placement":"toasterExtraWide","id":"8886ac25ddd65d3e1e0625d555afede0","slug":"huffposts-money-and-living","name":"Subscribe to HuffPost’s money and living email","description":"Everything you should have learned in school but didn’t.","provider":"cm","image":"https://img.huffingtonpost.com/asset/5a849b252000003900eaee57.png?ops=resize_2100_300","caption":null,"credit":"Isabella Carapella","hide_logo":false,"one_line":true,"separate_image":false},"inlineVerticalSeparateImage":{"placement":"inlineVerticalSeparateImage","id":"8886ac25ddd65d3e1e0625d555afede0","slug":"huffposts-money-and-living","name":"Subscribe to HuffPost’s money and living email","description":"Everything you should have learned in school but didn’t.","provider":"cm","image":"https://img.huffingtonpost.com/asset/5a849b252000003900eaee57.png?ops=resize_750_421","caption":null,"credit":"Isabella Carapella","hide_logo":true,"one_line":false,"separate_image":true},"inlineWideSeparateImage":{"placement":"inlineWideSeparateImage","id":"8886ac25ddd65d3e1e0625d555afede0","slug":"huffposts-money-and-living","name":"Subscribe to HuffPost’s money and living email","description":"Everything you should have learned in school but didn’t.","provider":"cm","image":"https://img.huffingtonpost.com/asset/5a849b252000003900eaee57.png?ops=resize_937_525","caption":null,"credit":"Isabella Carapella","hide_logo":true,"one_line":false,"separate_image":true},"modalVertical":{"placement":"modalVertical","id":"8886ac25ddd65d3e1e0625d555afede0","slug":"huffposts-money-and-living","name":"Subscribe to HuffPost’s money and living email","description":"Everything you should have learned in school but didn’t.","provider":"cm","image":"https://img.huffingtonpost.com/asset/5a849b252000003900eaee57.png?ops=resize_750_421","caption":null,"credit":"Isabella Carapella","hide_logo":true,"one_line":false,"separate_image":true},"modalHorizontal":{"placement":"modalHorizontal","id":"8886ac25ddd65d3e1e0625d555afede0","slug":"huffposts-money-and-living","name":"Subscribe to HuffPost’s money and living email","description":"Everything you should have learned in school but didn’t.","provider":"cm","image":"https://img.huffingtonpost.com/asset/5a849b252000003900eaee57.png?ops=resize_637_637","caption":null,"credit":"Isabella Carapella","hide_logo":true,"one_line":false,"separate_image":true},"hub":{"placement":"hub","id":"8886ac25ddd65d3e1e0625d555afede0","slug":"huffposts-money-and-living","name":"Subscribe to HuffPost’s money and living email","description":"Everything you should have learned in school but didn’t.","provider":"cm","image":"https://img.huffingtonpost.com/asset/5a849b252000003900eaee57.png?ops=resize_450_450","caption":null,"credit":"Isabella Carapella","hide_logo":false,"one_line":false,"separate_image":false},"subscribePageExtraWide":{"placement":"subscribePageExtraWide","id":"8886ac25ddd65d3e1e0625d555afede0","slug":"huffposts-money-and-living","name":"Subscribe to HuffPost’s money and living email","description":"Everything you should have learned in school but didn’t.","provider":"cm","image":"https://img.huffingtonpost.com/asset/5a849b252000003900eaee57.png?ops=resize_2100_300","caption":null,"credit":"Isabella Carapella","hide_logo":true,"one_line":false,"separate_image":false}},"huffposts-wellness":{"square":{"placement":"square","id":"f1f38b951586eb14b61f56d4360f067b","slug":"huffposts-wellness","name":"Subscribe to HuffPost’s wellness email","description":"The essential guide to taking care of your mind and body.","provider":"cm","image":"https://img.huffingtonpost.com/asset/5a849bfa2000002d00eaee58.png?ops=resize_450_450","caption":null,"credit":"Isabella Carapella","hide_logo":false,"one_line":false,"separate_image":false},"inlineWideBackgroundImage":{"placement":"inlineWideBackgroundImage","id":"f1f38b951586eb14b61f56d4360f067b","slug":"huffposts-wellness","name":"Subscribe to HuffPost’s wellness email","description":"The essential guide to taking care of your mind and body.","provider":"cm","image":"https://img.huffingtonpost.com/asset/5a849bfa2000002d00eaee58.png?ops=resize_1080_375","caption":null,"credit":"Isabella Carapella","hide_logo":false,"one_line":true,"separate_image":false},"wideWithBackgroundImageCheckbox":{"placement":"wideWithBackgroundImageCheckbox","id":"f1f38b951586eb14b61f56d4360f067b","slug":"huffposts-wellness","name":"Subscribe to HuffPost’s wellness email","description":"The essential guide to taking care of your mind and body.","provider":"cm","image":"https://img.huffingtonpost.com/asset/5a849bfa2000002d00eaee58.png?ops=resize_480_127","caption":null,"credit":"Isabella Carapella","hide_logo":false,"one_line":false,"separate_image":false},"toasterExtraWide":{"placement":"toasterExtraWide","id":"f1f38b951586eb14b61f56d4360f067b","slug":"huffposts-wellness","name":"Subscribe to HuffPost’s wellness email","description":"The essential guide to taking care of your mind and body.","provider":"cm","image":"https://img.huffingtonpost.com/asset/5a849bfa2000002d00eaee58.png?ops=resize_2100_300","caption":null,"credit":"Isabella Carapella","hide_logo":false,"one_line":true,"separate_image":false},"inlineVerticalSeparateImage":{"placement":"inlineVerticalSeparateImage","id":"f1f38b951586eb14b61f56d4360f067b","slug":"huffposts-wellness","name":"Subscribe to HuffPost’s wellness email","description":"The essential guide to taking care of your mind and body.","provider":"cm","image":"https://img.huffingtonpost.com/asset/5a849bfa2000002d00eaee58.png?ops=resize_750_421","caption":null,"credit":"Isabella Carapella","hide_logo":true,"one_line":false,"separate_image":true},"inlineWideSeparateImage":{"placement":"inlineWideSeparateImage","id":"f1f38b951586eb14b61f56d4360f067b","slug":"huffposts-wellness","name":"Subscribe to HuffPost’s wellness email","description":"The essential guide to taking care of your mind and body.","provider":"cm","image":"https://img.huffingtonpost.com/asset/5a849bfa2000002d00eaee58.png?ops=resize_937_525","caption":null,"credit":"Isabella Carapella","hide_logo":true,"one_line":false,"separate_image":true},"modalVertical":{"placement":"modalVertical","id":"f1f38b951586eb14b61f56d4360f067b","slug":"huffposts-wellness","name":"Subscribe to HuffPost’s wellness email","description":"The essential guide to taking care of your mind and body.","provider":"cm","image":"https://img.huffingtonpost.com/asset/5a849bfa2000002d00eaee58.png?ops=resize_750_421","caption":null,"credit":"Isabella Carapella","hide_logo":true,"one_line":false,"separate_image":true},"modalHorizontal":{"placement":"modalHorizontal","id":"f1f38b951586eb14b61f56d4360f067b","slug":"huffposts-wellness","name":"Subscribe to HuffPost’s wellness email","description":"The essential guide to taking care of your mind and body.","provider":"cm","image":"https://img.huffingtonpost.com/asset/5a849bfa2000002d00eaee58.png?ops=resize_637_637","caption":null,"credit":"Isabella Carapella","hide_logo":true,"one_line":false,"separate_image":true},"hub":{"placement":"hub","id":"f1f38b951586eb14b61f56d4360f067b","slug":"huffposts-wellness","name":"Subscribe to HuffPost’s wellness email","description":"The essential guide to taking care of your mind and body.","provider":"cm","image":"https://img.huffingtonpost.com/asset/5a849bfa2000002d00eaee58.png?ops=resize_450_450","caption":null,"credit":"Isabella Carapella","hide_logo":false,"one_line":false,"separate_image":false},"subscribePageExtraWide":{"placement":"subscribePageExtraWide","id":"f1f38b951586eb14b61f56d4360f067b","slug":"huffposts-wellness","name":"Subscribe to HuffPost’s wellness email","description":"The essential guide to taking care of your mind and body.","provider":"cm","image":"https://img.huffingtonpost.com/asset/5a849bfa2000002d00eaee58.png?ops=resize_2100_300","caption":null,"credit":"Isabella Carapella","hide_logo":true,"one_line":false,"separate_image":false}},"huffposts-sales-and-deals":{"square":{"placement":"square","id":"59a3056fee6c31257cd49de82210d33e","slug":"huffposts-sales-and-deals","name":"Subscribe to HuffPost’s sales and deals email","description":"The best-kept deals, steals and practical finds for the good life.","provider":"cm","image":"https://img.huffingtonpost.com/asset/5a849c6a2000003900eaee5d.png?ops=resize_450_450","caption":null,"credit":"Isabella Carapella","hide_logo":false,"one_line":false,"separate_image":false},"inlineWideBackgroundImage":{"placement":"inlineWideBackgroundImage","id":"59a3056fee6c31257cd49de82210d33e","slug":"huffposts-sales-and-deals","name":"Subscribe to HuffPost’s sales and deals email","description":"The best-kept deals, steals and practical finds for the good life.","provider":"cm","image":"https://img.huffingtonpost.com/asset/5a849c6a2000003900eaee5d.png?ops=resize_1080_375","caption":null,"credit":"Isabella Carapella","hide_logo":false,"one_line":true,"separate_image":false},"wideWithBackgroundImageCheckbox":{"placement":"wideWithBackgroundImageCheckbox","id":"59a3056fee6c31257cd49de82210d33e","slug":"huffposts-sales-and-deals","name":"Subscribe to HuffPost’s sales and deals email","description":"The best-kept deals, steals and practical finds for the good life.","provider":"cm","image":"https://img.huffingtonpost.com/asset/5a849c6a2000003900eaee5d.png?ops=resize_480_127","caption":null,"credit":"Isabella Carapella","hide_logo":false,"one_line":false,"separate_image":false},"toasterExtraWide":{"placement":"toasterExtraWide","id":"59a3056fee6c31257cd49de82210d33e","slug":"huffposts-sales-and-deals","name":"Subscribe to HuffPost’s sales and deals email","description":"The best-kept deals, steals and practical finds for the good life.","provider":"cm","image":"https://img.huffingtonpost.com/asset/5a849c6a2000003900eaee5d.png?ops=resize_2100_300","caption":null,"credit":"Isabella Carapella","hide_logo":false,"one_line":true,"separate_image":false},"inlineVerticalSeparateImage":{"placement":"inlineVerticalSeparateImage","id":"59a3056fee6c31257cd49de82210d33e","slug":"huffposts-sales-and-deals","name":"Subscribe to HuffPost’s sales and deals email","description":"The best-kept deals, steals and practical finds for the good life.","provider":"cm","image":"https://img.huffingtonpost.com/asset/5a849c6b1e00002c007abb97.png?ops=resize_750_421","caption":null,"credit":"Isabella Carapella","hide_logo":true,"one_line":false,"separate_image":true},"inlineWideSeparateImage":{"placement":"inlineWideSeparateImage","id":"59a3056fee6c31257cd49de82210d33e","slug":"huffposts-sales-and-deals","name":"Subscribe to HuffPost’s sales and deals email","description":"The best-kept deals, steals and practical finds for the good life.","provider":"cm","image":"https://img.huffingtonpost.com/asset/5a849c6b1e00002c007abb97.png?ops=resize_937_525","caption":null,"credit":"Isabella Carapella","hide_logo":true,"one_line":false,"separate_image":true},"modalVertical":{"placement":"modalVertical","id":"59a3056fee6c31257cd49de82210d33e","slug":"huffposts-sales-and-deals","name":"Subscribe to HuffPost’s sales and deals email","description":"The best-kept deals, steals and practical finds for the good life.","provider":"cm","image":"https://img.huffingtonpost.com/asset/5a849c6a2000003900eaee5d.png?ops=resize_750_421","caption":null,"credit":"Isabella Carapella","hide_logo":true,"one_line":false,"separate_image":true},"modalHorizontal":{"placement":"modalHorizontal","id":"59a3056fee6c31257cd49de82210d33e","slug":"huffposts-sales-and-deals","name":"Subscribe to HuffPost’s sales and deals email","description":"The best-kept deals, steals and practical finds for the good life.","provider":"cm","image":"https://img.huffingtonpost.com/asset/5a849c6a2000003900eaee5d.png?ops=resize_637_637","caption":null,"credit":"Isabella Carapella","hide_logo":true,"one_line":false,"separate_image":true},"hub":{"placement":"hub","id":"59a3056fee6c31257cd49de82210d33e","slug":"huffposts-sales-and-deals","name":"Subscribe to HuffPost’s sales and deals email","description":"The best-kept deals, steals and practical finds for the good life.","provider":"cm","image":"https://img.huffingtonpost.com/asset/5a849c6a2000003900eaee5d.png?ops=resize_450_450","caption":null,"credit":"Isabella Carapella","hide_logo":false,"one_line":false,"separate_image":false},"subscribePageExtraWide":{"placement":"subscribePageExtraWide","id":"59a3056fee6c31257cd49de82210d33e","slug":"huffposts-sales-and-deals","name":"Subscribe to HuffPost’s sales and deals email","description":"The best-kept deals, steals and practical finds for the good life.","provider":"cm","image":"https://img.huffingtonpost.com/asset/5a849c6b1e00002c007abb97.png?ops=resize_2100_300","caption":null,"credit":"Isabella Carapella","hide_logo":true,"one_line":false,"separate_image":false}},"watching-the-royals":{"square":{"placement":"square","id":"76183dbe74c21e20dc366ec6d8577d2d","slug":"watching-the-royals","name":"Watching the Royals","description":"Get a weekly dose of royals, straight to your inbox.","provider":"cm","image":"https://img.huffingtonpost.com/asset/5a26f842190000492c034ae6.jpeg?ops=resize_450_450","caption":"Britain's Prince Harry poses with Meghan Markle in the Sunken Garden of Kensington Palace, London, Britain, November 27, 2017. REUTERS/Toby Melville","credit":"Toby Melville / Reuters","hide_logo":false,"one_line":false,"separate_image":false},"inlineWideBackgroundImage":{"placement":"inlineWideBackgroundImage","id":"76183dbe74c21e20dc366ec6d8577d2d","slug":"watching-the-royals","name":"Watching the Royals","description":"Get a weekly dose of royals, straight to your inbox.","provider":"cm","image":"https://img.huffingtonpost.com/asset/5a26f842190000492c034ae6.jpeg?ops=resize_1080_375","caption":"Britain's Prince Harry poses with Meghan Markle in the Sunken Garden of Kensington Palace, London, Britain, November 27, 2017. REUTERS/Toby Melville","credit":"Toby Melville / Reuters","hide_logo":false,"one_line":true,"separate_image":false},"wideWithBackgroundImageCheckbox":{"placement":"wideWithBackgroundImageCheckbox","id":"76183dbe74c21e20dc366ec6d8577d2d","slug":"watching-the-royals","name":"HuffPost's Watching the Royals newsletter","description":"Get a weekly dose of royals, straight to your inbox.","provider":"cm","image":"https://img.huffingtonpost.com/asset/5a28151c190000492c034d90.jpeg?cache=dp74d2txhp&ops=resize_480_127","caption":"A horse drawn carriage is driven past Kensington Palace in London, Britain November 28, 2017. REUTERS/Darrin Zammit Lupi","credit":"Darrin Zammit Lupi / Reuters","hide_logo":false,"one_line":false,"separate_image":false},"toasterExtraWide":{"placement":"toasterExtraWide","id":"76183dbe74c21e20dc366ec6d8577d2d","slug":"watching-the-royals","name":"Watching the Royals","description":"Get a weekly dose of royals, straight to your inbox.","provider":"cm","image":"https://img.huffingtonpost.com/asset/5a26f842190000492c034ae6.jpeg?ops=resize_2100_300","caption":"Britain's Prince Harry poses with Meghan Markle in the Sunken Garden of Kensington Palace, London, Britain, November 27, 2017. REUTERS/Toby Melville","credit":"Toby Melville / Reuters","hide_logo":false,"one_line":true,"separate_image":false},"inlineVerticalSeparateImage":{"placement":"inlineVerticalSeparateImage","id":"76183dbe74c21e20dc366ec6d8577d2d","slug":"watching-the-royals","name":"Watching the Royals","description":"Get a weekly dose of royals, straight to your inbox.","provider":"cm","image":"https://img.huffingtonpost.com/asset/5a26f842190000492c034ae6.jpeg?ops=resize_750_421","caption":"Britain's Prince Harry poses with Meghan Markle in the Sunken Garden of Kensington Palace, London, Britain, November 27, 2017. REUTERS/Toby Melville","credit":"Toby Melville / Reuters","hide_logo":true,"one_line":false,"separate_image":true},"inlineWideSeparateImage":{"placement":"inlineWideSeparateImage","id":"76183dbe74c21e20dc366ec6d8577d2d","slug":"watching-the-royals","name":"Watching the Royals","description":"Get a weekly dose of royals, straight to your inbox.","provider":"cm","image":"https://img.huffingtonpost.com/asset/5a26f842190000492c034ae6.jpeg?ops=resize_937_525","caption":"Britain's Prince Harry poses with Meghan Markle in the Sunken Garden of Kensington Palace, London, Britain, November 27, 2017. REUTERS/Toby Melville","credit":"Toby Melville / Reuters","hide_logo":true,"one_line":false,"separate_image":true},"modalVertical":{"placement":"modalVertical","id":"76183dbe74c21e20dc366ec6d8577d2d","slug":"watching-the-royals","name":"Watching the Royals","description":"Get a weekly dose of royals, straight to your inbox.","provider":"cm","image":"https://img.huffingtonpost.com/asset/5a26f842190000492c034ae6.jpeg?ops=resize_750_421","caption":"Britain's Prince Harry poses with Meghan Markle in the Sunken Garden of Kensington Palace, London, Britain, November 27, 2017. REUTERS/Toby Melville","credit":"Toby Melville / Reuters","hide_logo":true,"one_line":false,"separate_image":true},"modalHorizontal":{"placement":"modalHorizontal","id":"76183dbe74c21e20dc366ec6d8577d2d","slug":"watching-the-royals","name":"HuffPost's Watching the Royals newsletter","description":"Get a weekly dose of royals, straight to your inbox.","provider":"cm","image":"https://img.huffingtonpost.com/asset/5a26f842190000492c034ae6.jpeg?ops=resize_637_637","caption":"Britain's Prince Harry poses with Meghan Markle in the Sunken Garden of Kensington Palace, London, Britain, November 27, 2017. REUTERS/Toby Melville","credit":"Toby Melville / Reuters","hide_logo":true,"one_line":false,"separate_image":true},"hub":{"placement":"hub","id":"76183dbe74c21e20dc366ec6d8577d2d","slug":"watching-the-royals","name":"Watching the Royals","description":"All the royal news you need to know. Get HuffPost’s Watching the Royals in your inbox each week.","provider":"cm","image":"https://img.huffingtonpost.com/asset/5a26f842190000492c034ae6.jpeg?ops=resize_450_450","caption":"Britain's Prince Harry poses with Meghan Markle in the Sunken Garden of Kensington Palace, London, Britain, November 27, 2017. REUTERS/Toby Melville","credit":"Toby Melville / Reuters","hide_logo":false,"one_line":false,"separate_image":false},"subscribePageExtraWide":{"placement":"subscribePageExtraWide","id":"76183dbe74c21e20dc366ec6d8577d2d","slug":"watching-the-royals","name":"HuffPost's Watching the Royals newsletter","description":"Get a weekly dose of royals, straight to your inbox.","provider":"cm","image":"https://img.huffingtonpost.com/asset/5a283059140000f36fb6bc9d.jpeg?ops=resize_2100_300","caption":"Britain's Prince Harry and his fiancee Meghan Markle visit the Terrence Higgins Trust World AIDS Day charity fair at Nottingham Contemporary in Nottingham, December 1, 2017. REUTERS/Adrian Dennis/Pool","credit":"POOL New / Reuters","hide_logo":true,"one_line":false,"separate_image":false}},"her-stories":{"square":{"placement":"square","id":"e730215d2927c139e080183deb3e482f","slug":"her-stories","name":"Subscribe to the Her Stories email.","description":"Women challenging the status quo around the world.","provider":"cm","image":"https://img.huffingtonpost.com/asset/5bc76cc41d00002c003090f2.jpeg?ops=resize_450_450","caption":"TOPSHOT - Zimbabwean worshippers and congregants from various indigenous church denominations listen to Zimbabwe first lady addressing a rally on November 5, 2017 in Harare.nGrace Mugabe, 41 years younger than her husband, has become increasingly active in public life in what many say is a political grooming process to help her eventually take the top job. / AFP PHOTO / Jekesai NJIKIZANA (Photo credit should read JEKESAI NJIKIZANA/AFP/Getty Images)","credit":"AFP Contributor via Getty Images","hide_logo":false,"one_line":false,"separate_image":false},"inlineWideBackgroundImage":{"placement":"inlineWideBackgroundImage","id":"e730215d2927c139e080183deb3e482f","slug":"her-stories","name":"Subscribe to the Her Stories email.","description":"Women challenging the status quo around the world.","provider":"cm","image":"https://img.huffingtonpost.com/asset/5bc76cc41d00002c003090f2.jpeg?ops=resize_1080_375","caption":"TOPSHOT - Zimbabwean worshippers and congregants from various indigenous church denominations listen to Zimbabwe first lady addressing a rally on November 5, 2017 in Harare.nGrace Mugabe, 41 years younger than her husband, has become increasingly active in public life in what many say is a political grooming process to help her eventually take the top job. / AFP PHOTO / Jekesai NJIKIZANA (Photo credit should read JEKESAI NJIKIZANA/AFP/Getty Images)","credit":"AFP Contributor via Getty Images","hide_logo":false,"one_line":true,"separate_image":false},"wideWithBackgroundImageCheckbox":{"placement":"wideWithBackgroundImageCheckbox","id":"e730215d2927c139e080183deb3e482f","slug":"her-stories","name":"HuffPost's Her Stories newsletter","description":"Women challenging the status quo around the world.","provider":"cm","image":"https://img.huffingtonpost.com/asset/5bc76cc41d00002c003090f2.jpeg?ops=resize_480_127","caption":"TOPSHOT - Zimbabwean worshippers and congregants from various indigenous church denominations listen to Zimbabwe first lady addressing a rally on November 5, 2017 in Harare.nGrace Mugabe, 41 years younger than her husband, has become increasingly active in public life in what many say is a political grooming process to help her eventually take the top job. / AFP PHOTO / Jekesai NJIKIZANA (Photo credit should read JEKESAI NJIKIZANA/AFP/Getty Images)","credit":"AFP Contributor via Getty Images","hide_logo":false,"one_line":false,"separate_image":false},"toasterExtraWide":{"placement":"toasterExtraWide","id":"e730215d2927c139e080183deb3e482f","slug":"her-stories","name":"HuffPost's Her Stories newsletter","description":"Women challenging the status quo around the world.","provider":"cm","image":"https://img.huffingtonpost.com/asset/5bc76cc41d00002c003090f2.jpeg?ops=resize_2100_300","caption":"TOPSHOT - Zimbabwean worshippers and congregants from various indigenous church denominations listen to Zimbabwe first lady addressing a rally on November 5, 2017 in Harare.nGrace Mugabe, 41 years younger than her husband, has become increasingly active in public life in what many say is a political grooming process to help her eventually take the top job. / AFP PHOTO / Jekesai NJIKIZANA (Photo credit should read JEKESAI NJIKIZANA/AFP/Getty Images)","credit":"AFP Contributor via Getty Images","hide_logo":false,"one_line":true,"separate_image":false},"inlineVerticalSeparateImage":{"placement":"inlineVerticalSeparateImage","id":"e730215d2927c139e080183deb3e482f","slug":"her-stories","name":"HuffPost's Her Stories newsletter","description":"Women challenging the status quo around the world.","provider":"cm","image":"https://img.huffingtonpost.com/asset/5bc76cc41d00002c003090f2.jpeg?ops=resize_750_421","caption":"TOPSHOT - Zimbabwean worshippers and congregants from various indigenous church denominations listen to Zimbabwe first lady addressing a rally on November 5, 2017 in Harare.nGrace Mugabe, 41 years younger than her husband, has become increasingly active in public life in what many say is a political grooming process to help her eventually take the top job. / AFP PHOTO / Jekesai NJIKIZANA (Photo credit should read JEKESAI NJIKIZANA/AFP/Getty Images)","credit":"AFP Contributor via Getty Images","hide_logo":true,"one_line":false,"separate_image":true},"inlineWideSeparateImage":{"placement":"inlineWideSeparateImage","id":"e730215d2927c139e080183deb3e482f","slug":"her-stories","name":"HuffPost's Her Stories newsletter","description":"Women challenging the status quo around the world.","provider":"cm","image":"https://img.huffingtonpost.com/asset/5bc76cc41d00002c003090f2.jpeg?ops=resize_937_525","caption":"TOPSHOT - Zimbabwean worshippers and congregants from various indigenous church denominations listen to Zimbabwe first lady addressing a rally on November 5, 2017 in Harare.nGrace Mugabe, 41 years younger than her husband, has become increasingly active in public life in what many say is a political grooming process to help her eventually take the top job. / AFP PHOTO / Jekesai NJIKIZANA (Photo credit should read JEKESAI NJIKIZANA/AFP/Getty Images)","credit":"AFP Contributor via Getty Images","hide_logo":true,"one_line":false,"separate_image":true},"modalVertical":{"placement":"modalVertical","id":"e730215d2927c139e080183deb3e482f","slug":"her-stories","name":"HuffPost's Her Stories newsletter","description":"Women challenging the status quo around the world.","provider":"cm","image":"https://img.huffingtonpost.com/asset/5bc76cc41d00002c003090f2.jpeg?ops=resize_750_421","caption":"TOPSHOT - Zimbabwean worshippers and congregants from various indigenous church denominations listen to Zimbabwe first lady addressing a rally on November 5, 2017 in Harare.nGrace Mugabe, 41 years younger than her husband, has become increasingly active in public life in what many say is a political grooming process to help her eventually take the top job. / AFP PHOTO / Jekesai NJIKIZANA (Photo credit should read JEKESAI NJIKIZANA/AFP/Getty Images)","credit":"AFP Contributor via Getty Images","hide_logo":true,"one_line":false,"separate_image":true},"modalHorizontal":{"placement":"modalHorizontal","id":"e730215d2927c139e080183deb3e482f","slug":"her-stories","name":"HuffPost's Her Stories newsletter","description":"Women challenging the status quo around the world.","provider":"cm","image":"https://img.huffingtonpost.com/asset/5bc76cc41d00002c003090f2.jpeg?ops=resize_637_637","caption":"TOPSHOT - Zimbabwean worshippers and congregants from various indigenous church denominations listen to Zimbabwe first lady addressing a rally on November 5, 2017 in Harare.nGrace Mugabe, 41 years younger than her husband, has become increasingly active in public life in what many say is a political grooming process to help her eventually take the top job. / AFP PHOTO / Jekesai NJIKIZANA (Photo credit should read JEKESAI NJIKIZANA/AFP/Getty Images)","credit":"AFP Contributor via Getty Images","hide_logo":true,"one_line":false,"separate_image":true},"hub":{"placement":"hub","id":"e730215d2927c139e080183deb3e482f","slug":"her-stories","name":"Her Stories","description":"Women challenging the status quo around the world.","provider":"cm","image":"https://img.huffingtonpost.com/asset/5bc76cc41d00002c003090f2.jpeg?ops=resize_450_450","caption":"TOPSHOT - Zimbabwean worshippers and congregants from various indigenous church denominations listen to Zimbabwe first lady addressing a rally on November 5, 2017 in Harare.nGrace Mugabe, 41 years younger than her husband, has become increasingly active in public life in what many say is a political grooming process to help her eventually take the top job. / AFP PHOTO / Jekesai NJIKIZANA (Photo credit should read JEKESAI NJIKIZANA/AFP/Getty Images)","credit":"AFP Contributor via Getty Images","hide_logo":false,"one_line":false,"separate_image":false},"subscribePageExtraWide":{"placement":"subscribePageExtraWide","id":"e730215d2927c139e080183deb3e482f","slug":"her-stories","name":"Subscribe to the Her Stories email.","description":"Women challenging the status quo around the world.","provider":"cm","image":"https://img.huffingtonpost.com/asset/5bc76cc41d00002c003090f2.jpeg?ops=resize_2100_300","caption":"TOPSHOT - Zimbabwean worshippers and congregants from various indigenous church denominations listen to Zimbabwe first lady addressing a rally on November 5, 2017 in Harare.nGrace Mugabe, 41 years younger than her husband, has become increasingly active in public life in what many say is a political grooming process to help her eventually take the top job. / AFP PHOTO / Jekesai NJIKIZANA (Photo credit should read JEKESAI NJIKIZANA/AFP/Getty Images)","credit":"AFP Contributor via Getty Images","hide_logo":true,"one_line":false,"separate_image":false}}},"newsletter":"politics","modalNewsletters":["the-morning-email","must-reads","politics","watching-the-royals","her-stories"]},"aPage":{"className":null,"slug":null},"section":{"slug":"politics","department":"politics-news"},"edition":{"id":"us","baseURL":"/"},"gravityJSON":null,"ab_config":[{"name":"homepageSplash","id":1008,"variant_names":"control,splash","variant_ids":"26,27","variant_distributions":"0.5,0.5"},{"name":"outstreamStyle","id":1002,"variant_names":"control,enabled","variant_ids":"11,12","variant_distributions":"0.75,0.25"},{"name":"outstreamParents","id":1001,"variant_names":"control,enabled","variant_ids":"9,10","variant_distributions":"0.75,0.25"},{"name":"outstreamPolitics","id":1000,"variant_names":"control,enabled","variant_ids":"7,8","variant_distributions":"0.75,0.25"},{"name":"videoBelowSplash100Percent","id":92,"variant_names":"video","variant_ids":"138","variant_distributions":"1.0"},{"name":"vidibleOnHomepage2","id":91,"variant_names":"noVideo,autoPlayWithoutSound","variant_ids":"136,137","variant_distributions":"0.8,0.2"},{"name":"mfp1829","id":1010,"variant_names":"embed,embedFlip,autoPlayWithoutSound","variant_ids":"31,32,33","variant_distributions":"0.4,0.4,0.2"}],"rapidBeacons":[{"type":"sec","id":"masthead","nodeSelector":".yr-masthead"},{"type":"sec","idFromAttribute":"data-rapid-zone","nodeSelector":".yr-zone","trackPosition":true,"positionSelector":".yr-card","postLoaded":true},{"type":"sec","id":"department-feed","nodeSelector":".yr-zone-department-feed"},{"type":"sec","id":"sticky-nav","nodeSelector":".yr-nav-sticky"},{"type":"sec","id":"entry-header","nodeSelector":".yr-entry-header"},{"type":"sec","id":"top-media","nodeSelector":".yr-top-media"},{"type":"sec","id":"entry-text","nodeSelector":".yr-entry-text","trackPosition":true,"positionSelector":".yr-content-list-text"},{"type":"sec","id":"featured-content","nodeSelector":".yr-featured-content","trackPosition":true,"positionSelector":".yr-content-list-text"},{"type":"sec","id":"entry-footer","nodeSelector":".yr-entry-footer"},{"type":"sec","id":"left-rail","nodeSelector":".yr-left-rail"},{"type":"sec","id":"footer","nodeSelector":".yr-footer"},{"type":"sec","id":"extra-content","nodeSelector":".yr-extra-content"},{"type":"sec","id":"comments-pane","nodeSelector":".yr-comments-pane"},{"type":"sec","id":"modal","nodeSelector":".yr-modal","postLoaded":true},{"type":"sec","id":"highlight","nodeSelector":".yr-highlight"},{"type":"sec","id":"overlay","nodeSelector":".yr-overlay"},{"type":"sec","id":"overlay-app-download","nodeSelector":".yr-app-download-overlay"},{"type":"sec","id":"desktop-alert-signup","nodeSelector":".yr-desktop-alert-signup"},{"type":"sec","id":"editions","nodeSelector":".yr-editions"},{"type":"sec","id":"hamburger-menu","nodeSelector":".yr-hamburger-menu"},{"type":"sec","id":"right-rail","nodeSelector":".yr-right-rail"},{"type":"sec","id":"right-rail-upper","nodeSelector":".yr-right-rail-upper"},{"type":"sec","id":"right-rail-lower","nodeSelector":".yr-right-rail-lower"},{"type":"sec","id":"splash","nodeSelector":".yr-splash"},{"type":"sec","id":"author-header","nodeSelector":".yr-author-header"},{"type":"sec","id":"slideshow-desktop","nodeSelector":".yr-slideshow-desktop"},{"type":"sec","id":"author-bio","nodeSelector":".yr-author-bio"},{"type":"sec","id":"author-entries","nodeSelector":".yr-author-entries"},{"type":"sec","id":"static-content","nodeSelector":".yr-static-content"},{"type":"sec","id":"pagination","nodeSelector":".yr-pagination"},{"type":"sec","id":"newsletter-form","nodeSelector":".yr-newsletter-form"},{"type":"sec","id":"main-video","nodeSelector":".yr-video-main"},{"type":"sec","id":"originals","nodeSelector":".yr-video-originals"},{"type":"sec","id":"video-content","nodeSelector":".yr-video-content"},{"type":"sec","id":"carousel","nodeSelector":".yr-carousel","trackPosition":true,"positionSelector":".yr-recirc-item","postLoaded":true},{"type":"sec","id":"breaking-news","nodeSelector":".yr-breaking-news","postLoaded":true},{"type":"sec","id":"interactive","nodeSelector":".yr-interactive-root"},{"type":"subsec","idFromAttribute":"data-rapid-zone","nodeSelector":".yr-subzone","postLoaded":true,"trackPosition":true,"positionSelector":".yr-card"},{"type":"subsec","idFromAttribute":"data-type","nodeSelector":".yr-elevator"},{"type":"subsec","id":"nav-banner","nodeSelector":".yr-nav-banner"},{"type":"subsec","id":"follow","nodeSelector":".yr-social-list"},{"type":"subsec","id":"byline","nodeSelector":".yr-byline"},{"type":"subsec","id":"paragraph","nodeSelector":".yr-content-list-text","trackPosition":true},{"type":"subsec","id":"entry-image","nodeSelector":".yr-content-list-image"},{"type":"subsec","id":"share","nodeSelector":".yr-share"},{"type":"subsec","id":"topic-tag","nodeSelector":".yr-tag-cloud"},{"type":"subsec","idFromAttribute":"data-rapid-recirc-name","nodeSelector":".yr-recirc","trackPosition":true,"positionSelector":".yr-recirc-item","postLoaded":true},{"type":"subsec","id":"follow","nodeSelector":".yr-follow-us"},{"type":"subsec","id":"taboola","nodeSelector":".yr-taboola"},{"type":"subsec","id":"corp-links","nodeSelector":".yr-footer-links"},{"type":"subsec","id":"slideshow-preview","nodeSelector":".yr-slideshow-preview"},{"type":"subsec","id":"slideshow","nodeSelector":".yr-slideshow"},{"type":"subsec","id":"body","nodeSelector":".yr-modal-body","postLoaded":true},{"type":"subsec","id":"app-download","nodeSelector":".yr-app-download"},{"type":"subsec","id":"bachelor-podcast","nodeSelector":".yr-bachelor-podcast"},{"type":"subsec","id":"newsletter-box","nodeSelector":".yr-newsletter-box","postLoaded":true},{"type":"subsec","idFromAttribute":"data-section-name","nodeSelector":".yr-hamburger-section"},{"type":"subsec","id":"department-tag","nodeSelector":".yr-department-tag"},{"type":"subsec","id":"headline-container","nodeSelector":".yr-splash-headline-container","trackPosition":true,"positionSelector":".yr-splash-headline"},{"type":"subsec","id":"trending","nodeSelector":".yr-trending","postLoaded":true},{"type":"subsec","id":"authors","nodeSelector":".yr-authors","trackPosition":true,"positionSelector":".yr-author-card"},{"type":"subsec","id":"related-articles","nodeSelector":".yr-related-articles","trackPosition":true,"positionSelector":".yr-related-article-item"},{"type":"subsec","id":"listicle","nodeSelector":".yr-listicle","trackPosition":true,"positionSelector":".yr-listicle-item"},{"type":"slk","id":"editions-open","nodeSelector":".yr-editions-link","clickToggle":"editions-close","interactionType":1},{"type":"slk","idFromAttribute":"data-edition","nodeSelector":".yr-edition-item"},{"type":"slk","id":"hamburger-open","nodeSelector":".yr-hamburger-button","clickToggle":"hamburger-close","interactionType":1},{"type":"slk","elm":"img","nodeSelector":".yr-logo-image"},{"type":"slk","id":"zone-title","nodeSelector":".yr-zone-title","postLoaded":true},{"type":"slk","id":"more-link","nodeSelector":".yr-zone-more-link","postLoaded":true},{"type":"slk","elm":"img","nodeSelector":".yr-splash-image"},{"type":"slk","id":"splash-headline","nodeSelector":".yr-splash-headline"},{"type":"slk","id":"splash-dek","nodeSelector":".yr-splash-dek"},{"type":"slk","id":"ticker","nodeSelector":".yr-splash-ticker"},{"type":"slk","idFromAttribute":"data-button-name","nodeSelector":".yr-follow-item","trackPosition":true},{"type":"slk","idFromAttribute":"data-linkname","nodeSelector":".yr-department-link"},{"type":"slk","elm":"img","nodeSelector":".yr-author-image"},{"type":"slk","nodeSelector":".yr-author-name"},{"type":"slk","id":"twitter-follow","nodeSelector":".yr-author-twitter"},{"type":"slk","nodeSelector":"a","elm":"context_link","excludeSelector":".yr-instream-share-link, .yr-exclude-anchor, .yr-link, .yr-card-headline","parentNodeSelector":".yr-entry-text","trackPosition":true},{"type":"slk","idFromAttribute":"data-share-name","nodeSelector":".yr-instream-share-link"},{"type":"slk","id":"open","nodeSelector":".yr-read-more-link","postLoaded":true},{"type":"slk","id":"correction","nodeSelector":".yr-correction-link"},{"type":"slk","idFromAttribute":"data-slug","nodeSelector":".yr-tag"},{"type":"slk","idFromAttribute":"data-share-name","nodeSelector":".yr-share-item","trackPosition":true,"trackCt":true},{"type":"slk","nodeSelector":".yr-recirc-show-more","id":"show-more","postLoaded":true},{"type":"slk","elm":"hdln","nodeSelector":".yr-card-headline","trackCarmotId":true,"postLoaded":true},{"type":"slk","elm":"img","nodeSelector":".yr-card-image","trackCarmotId":true,"postLoaded":true},{"type":"slk","id":"description","nodeSelector":".yr-card-description","postLoaded":true},{"type":"slk","nodeSelector":".yr-card-author","postLoaded":true},{"type":"slk","elm":"btn","nodeSelector":".yr-signup-submit","postLoaded":true},{"type":"slk","id":"open","nodeSelector":".yr-slideshow-open"},{"type":"slk","elm":"img","nodeSelector":".yr-slideshow-open-a-page","interactionType":2},{"type":"slk","id":"headline","nodeSelector":".yr-slideshow-open-a-page-headline","interactionType":2},{"type":"slk","id":"back","nodeSelector":".yr-slideshow-back"},{"type":"slk","idFromAttribute":"data-beacon-value","nodeSelector":".yr-slideshow-action-bar-item"},{"type":"slk","id":"thumbnail","nodeSelector":".yr-slideshow-grid-thumb","positionSelector":".yr-slideshow-grid","postLoaded":true,"trackPosition":true,"interactionType":1},{"type":"slk","nodeSelector":"a","parentNodeSelector":".yr-slideshow-caption","postLoaded":true},{"type":"slk","id":"slideshow-share-open","nodeSelector":".yr-slideshow-share-bar-toggle","clickToggle":"slideshow-share-close"},{"type":"slk","id":"close","nodeSelector":".yr-close","postLoaded":true,"interactionType":1},{"type":"slk","id":"previous","nodeSelector":".yr-previous","postLoaded":true},{"type":"slk","id":"next","nodeSelector":".yr-next","postLoaded":true},{"type":"slk","id":"submit","nodeSelector":".yr-submit","postLoaded":true,"interactionType":1},{"type":"slk","id":"cancel","nodeSelector":".yr-cancel","postLoaded":true,"interactionType":1},{"type":"slk","id":"page","nodeSelector":".yr-page"},{"type":"slk","nodeSelector":".yr-footer-link"},{"type":"slk","nodeSelector":".yr-card-link-text"},{"type":"slk","elm":"img","nodeSelector":".yr-footer-oath"},{"type":"slk","idFromAttribute":"data-rapid-name","nodeSelector":".yr-modal-button","postLoaded":true,"interactionType":1},{"type":"slk","id":"mobile-site","nodeSelector":".yr-app-download-mobile-site"},{"type":"slk","id":"load-more","nodeSelector":".yr-load-more","interactionType":1},{"type":"slk","nodeSelector":".yr-link","postLoaded":true}]});
}());

(function() {
window.HP.params.entry = {
id: "745672",
tags: ["college-students", "student-debt", "education-policy", "politics", "publishing-industry", "student-loans", "professors", "higher-education", "textbooks", "college"],
title: "In The Public Interest : Open Textbooks and the Tech-Friendly Generation",
excerpt: "This September I entered my first year at the University of Montana, Missoula. Along with all the typical freshman year excitement of orientation and ...",
url: "https://www.huffingtonpost.com/sarah-sather/i-in-the-public-interest_b_745672.html",
canonicalUrl: "https://www.huffingtonpost.com/sarah-sather/i-in-the-public-interest_b_745672.html",
author: "Sarah Sather",
edition: "us",
isAnyContributor: true
};
window.HP.params.preview = ("" === "true");
window.HP.params.isWide = ("false" === "true");
window.HP.params.isAthena = ("false" === "true");
var isLong = 450 <= ($('.js-entry-body').height() / 2.5);
window.HP.events.publish("entry_opened", {entry: document.querySelector('article'), isLong: isLong});
}());





(function(){
window.PARSELY = {autotrack: false};
(function(s, p, d) {
var h=d.location.protocol, i=p+"-"+s,
e=d.getElementById(i), r=d.getElementById(p+"-root"),
u=h==="https:"?"d1z2jf7jlzjs58.cloudfront.net"
:"static."+p+".com";
if (e) return;
e = d.createElement(s); e.id = i; e.async = true;
e.src = h+"//"+u+"/p.js"; r.appendChild(e);
})("script", "parsely", document);
}());



var prefix = (document.location.protocol == "https:" ? "https://sb" : "http://b");
var script = document.createElement("script");
script.src = prefix + ".scorecardresearch.com/beacon.js";
script.async = true;
script.onload = function() {
window.HP.events.publish('tracking_loaded_comscore');
};
document.querySelector('.tracking').appendChild(script);






(function(d){
var s = document.createElement('script');
s.src='https://s.yimg.com/wi/ytc.js';
s.async=true;
s.onload = function() {
window.HP.events.publish('tracking_loaded_yahoo_dot');
};
(d.getElementsByTagName('head')[0] ||
d.getElementsByTagName('body')[0]).appendChild(s);
})(document);

!function(f,b,e,v,n,t,s){if(f.fbq)return;n=f.fbq=function(){n.callMethod?
n.callMethod.apply(n,arguments):n.queue.push(arguments)};if(!f._fbq)f._fbq=n;
n.push=n;n.loaded=!0;n.version='2.0';n.queue=;t=b.createElement(e);t.async=!0;
t.src=v;s=b.getElementsByTagName(e)[0];
s.parentNode.insertBefore(t,s)}(window,document,'script','https://connect.facebook.net/en_US/fbevents.js');
fbq('init', '1621685564716533'); // Edition specific
fbq('init', '1043018625788392'); // Partner Studio
fbq('track', "PageView");
fbq('track', 'ViewContent', {"content_name":"In The Public Interest : Open Textbooks and the Tech-Friendly Generation","content_category":"us.hpmgpol"} );
fbq('trackCustom', 'EntryPage', {"section_name":"Politics","tags":["college-students","student-debt","education-policy","politics","publishing-industry","student-loans","professors","higher-education","textbooks","college"],"team":null,"ncid":null,"environment":"desktop","render_type":"web"} );
waitForGlobal(function() {
return HP.modules.Tracky;
}, function() {
/* TODO do we still want this?
$('body').on('click', function(event) {
HP.modules.Tracky.reportClick(event, function(data) {
fbq('trackCustom', "Click", data);
});
});
*/
});








HP.functions.init();
window.addEventListener('load', modulousQueue.runAll);

window.HP.events.subscribe('init_dom_ready', function() {
waitForGlobal(function(){
return window.HP && window.$;
}, function() {
$(".js-header-content-left .header__search").removeClass("hidden");
$("#header-search-input").on('keyup', function(event) {
if ( event.keyCode === 13 ) {
$("#huffpost_search_fr").attr('value', 'huffpost_desktop');
}
});
$("input.header__search-glass").on('click', function(event) {
$("#huffpost_search_fr").attr('value', 'huffpost_desktop');
});
var sdk = document.createElement('script');
sdk.src = 'https://s.m.huffpost.com/assets/vendor/assistjs.min-775650529ff1c570d37d3d6343a2f1487419e139c97420e9e2a80b70bae799aa.js';
sdk.id = "assistjs";
sdk.onload = function() {
window.HP.SearchAssist = new window.YAHOO.SAClass();
window.HP.SearchAssist.init({
searchBoxId: 'header-search-input',
saBase: '//search.yahoo.com/sugg/gossip/gossip-us-news/'
});
}
document.body.appendChild(sdk);
});
});


Popular posts from this blog

Human spaceflight

Can not write log (Is /dev/pts mounted?) - openpty in Ubuntu-on-Windows?

File:DeusFollowingSea.jpg