var UtilInit = {
	newElement: function(tagName, style) {
	  var doc = document;
	  var newElement = UtilInit.createElement(doc,tagName);
	  if (style) {
	      for (key in style) {
	        if (key == 'cssFloat' && UtilInit.isIE()) {
	          newElement.style['styleFloat'] = style[key];
	        }
	        else {
	          newElement.style[key] = style[key];
	        }
	      }
	  }
	  return newElement;
	},
	
	createElement: function(doc,tagName) {
	  var newElt = doc.createElement(tagName);
	  if (typeof(newElt) != 'object') {newElt = doc.standardCreateElement(tagName);}
	  return newElt;
	},
	
	isIE: function() {
	  return (navigator.appName == "Microsoft Internet Explorer");
	},
	
	isIE6: function() {
	  return (navigator.appVersion.indexOf("MSIE 6")!=-1);
	},
	
	canUseFixedPosition: function() {
		return (UtilInit.isIE6() || (UtilInit.isIE() && UtilInit.detectDoctype() == null))?false:true;
	},
	
	getWindowWidth: function(){
		var x = 0;
      	if (self.innerHeight){
      		x = self.innerWidth;
      	} else if (document.documentElement && document.documentElement.clientHeight){
      		x = document.documentElement.clientWidth;
      	} else if (document.body){
      		x = document.body.clientWidth;
      	}
      	return x;
	},
      
	getWindowHeight: function(){
      	var x = 0;
      	if (self.innerHeight){
      		x = self.innerHeight;
      	} else if (document.documentElement && document.documentElement.clientHeight){
      		x = document.documentElement.clientHeight;
      	} else if (document.body){
      		x = document.body.clientHeight;
      	}
      	return x;
	},
	
	detectDoctype: function(){
		var re=/\s+(X?HTML)\s+([\d\.]+)\s*([^\/]+)*\//gi;
		var res=false;
		if(typeof document.namespaces != "undefined")
			res=document.all[0].nodeType==8 ? re.test(document.all[0].nodeValue) : false;
		else
			res=document.doctype != null ? re.test(document.doctype.publicId) : false;
		if(res){
			res=new Object();
			res['xhtml']=RegExp.$1;
			res['version']=RegExp.$2;
			res['importance']=RegExp.$3;
			if(res['xhtml'].toLowerCase() != 'xhtml')
				return null;
			return res;
		}else{
			return null;
		}
	},

	getElementsByClassName: function(searchClass,node) {
		if (node == null) node = document;
	    if (node.getElementsByClassName) 
			return node.getElementsByClassName(searchClass);
			
		var classElements = new Array();
		var els = node.getElementsByTagName("*");
		var elsLen = els.length;
		var pattern = new RegExp("(^|\\s)"+searchClass+"(\\s|$)");
		for (i = 0, j = 0; i < elsLen; i++) {
			if (pattern.test(els[i].className)) {
			  classElements[j] = els[i];
			  j++;
			}
		}
		return classElements;
	},
	
	getElementsByName: function(search,node) {
		if (node == null) node = document;
		var elements = new Array();
		var els = node.getElementsByTagName("*");
		var elsLen = els.length;
		var pattern = new RegExp("(^|\\s)"+search+"(\\s|$)");
		for (i = 0, j = 0; i < elsLen; i++) {
			if (pattern.test(els[i].name)) {
				elements[j] = els[i];
			  j++;
			}
		}
		return elements;
	},
	
	 htmlDecode: function(input){
		var e = document.createElement('div');
		e.innerHTML = input;
		var result = "";
		for(var i=0;i<e.childNodes.length; i++) {
			result += e.childNodes[i].nodeValue;
		};
		return result;
	},
	
	contains: function(a, obj) {
	    for (var i = 0; i < a.length; i++) {
	        if (a[i] === obj) {
	            return true;
	        }
	    }
	    return false;
	}

};




var WidgetInit = new WidgetClass();
function  WidgetClass() {		
	var self = this;
	this.WidgetHtml = null;
	this.WidgetParams = null;
	this.WidgetLocalizationProps = { day: 'd', hour: 'h', min: 'm', sec: 's' };
	this.scroll = true;
	this.seconds = new Array();
	this.shortedUrlParams = new Array('wId','affId','site','utm_medium','utm_campaign','host');

	this.gebi = function(elId) {
		var wid = this.WidgetParams.id;
		var result = document.getElementById(elId+wid);
		if(null == result) {
			result = document.getElementById(elId)
		}
		return result;
	};

	this.getWidgetLeft= function(){
		var w = UtilInit.getWindowWidth();
		var btn = this.gebi("nimbleBuyWidget");
		if(!btn) return w;
		if(btn.clientWidth) {
			return w - btn.clientWidth;
		}
		else {
			return w - btn.offsetWidth;
		}
	};
	
	this.getWidgetHeight= function(){
		var btn = this.gebi("nimbleBuyWidget");
		if (btn) {
			if (btn.clientHeight) {
				return btn.clientHeight;
			}
			else {
				return btn.offsetHeight;
			}
		}
		return 0;
	};
	
	this.getParams = function(){
		this.params = {};
		
		var s = null;
		s = this.gebi("nimbleBuyWidgetScript");
		
		if (s) {
			var src = s.getAttribute("src");
			this.params.root = src.substring(0,src.indexOf("/widget.action"));
			var c = src.indexOf("?");
			if (c == -1) 
				return;
			
			var ps = src.substr(c + 1);
			var userPassedUrlParams = "";
			if (ps.length > 3) {
				var pp = ps.split("&");
				for (var i = 0; i < pp.length; i++) {
					var pa = pp[i].split("=");
					this.params[pa[0]] = pa[1];
					if(!UtilInit.contains(this.shortedUrlParams, pa[0])) {
						userPassedUrlParams += "&" + pa[0] + "=" + pa[1];
					}
				}
				if(userPassedUrlParams != "") {
					this.WidgetParams.urlSuffixForIms = userPassedUrlParams;
				}
			}
		}
	};
	
	this.insertWidget = function(){ 
		var nimbleBuyWidget = this.gebi("nimbleBuyWidget");
		if(nimbleBuyWidget){
			if(this.WidgetParams.widgetWidth != 0 && this.WidgetParams.widgetHeight !=0) {
			    var widgetWidth = this.WidgetParams.widgetWidth;
			    if (widgetWidth.indexOf("px") == -1){
			    	widgetWidth += "px";
			    }
			    nimbleBuyWidget.style.width = widgetWidth;
			    
			    var widgetHeight = this.WidgetParams.widgetHeight;
			    if (widgetHeight.indexOf("px") == -1){
			    	widgetHeight += "px";
			    }
			    nimbleBuyWidget.style.height = widgetHeight;
			}
		    nimbleBuyWidget.style.position = "relative";
		    nimbleBuyWidget.style.overflow = "hidden";
		    nimbleBuyWidget.innerHTML = this.WidgetHtml.getNimbleBuyWidgetHTML();
		    if(this.WidgetHtml.getNimbleBuyWidgetHTML() == "") {
		    	nimbleBuyWidget.style.display = "none";
		    }
		    this._outerDiv = nimbleBuyWidget;
		}
		else {
	        var prms = {
		        	zIndex: 20001,
		            scrolling: 'no',
		            overflow: 'hidden',
		            position: 'absolute',
					width: this.WidgetParams.widgetWidth+'px',
					height: this.WidgetParams.widgetHeight+'px'
		        };
		    var bd = document.body;
		    if(!bd) return;
		    this._outerDiv = UtilInit.newElement("div",prms);
	        this._outerDiv.id = "nimbleBuyWidget"+this.WidgetParams.id;
	        this._outerDiv.innerHTML = this.WidgetHtml.getNimbleBuyWidgetHTML();
			bd.insertBefore(this._outerDiv, bd.firstChild);
			this.setWidgetPosition();
		}
		
		this.processWidgetLinks();
    };
    
    this.isImshopping= function() {
    	var url = document.location.href;
    	if ('' != this.WidgetParams.imsAppUrl && url.indexOf(this.WidgetParams.imsAppUrl) > -1) {
    		return true;
    	} else {
    		return false;
    	}
    };
    
    this.processWidgetLinks= function() {
    	var isIms = this.isImshopping();
    	var nimbleBuyWidget = this.gebi("nimbleBuyWidget");
    	var links = UtilInit.getElementsByName("widgetNimbleBuyProductLink",nimbleBuyWidget);
    	if (links.length > 0) {
	    	for (var i = 0; i < links.length; i++) {
	    		var link = links[i];
    			var suffix = this.WidgetParams.urlSuffixForIms;
    			if(suffix.length > 0){
					if (link.href.indexOf("?") > -1) {
						link.href += suffix;
					} else {
						link.href += "?" + suffix;
					}
    			}
	    	}
	    }
    };
    
    this.startScroll = function(){
		this.scroll = true;
	};
	
	this.stopScroll = function(){
		this.scroll = false;
	};
	
	var children = typeof document
	.createElement('div')
	.children != 'undefined';
	
	this.childArray = children ? function(node) {
		return node.children;
	} : function(node) {
		var list = node.childNodes,
		length = list.length,
		i = -1,
		array = [];
		while(++i < length)
			if(list[i].nodeType == 1)
				array.push(list[i]);
		return array;
	}
	
	this.scrollOffer = function(){
    	var offers = this.gebi("nimbleBuyOffers");
    	if(!offers) return;
		if (this.scroll) {
			var l = parseInt(offers.style.left, 10);
			var w = offers.offsetWidth/this.childArray(offers).length;
			if (l > -(this.WidgetParams.widgetOffersSize * w - w)) {
				offers.style.left = l - w + "px";
			}
			else {
				offers.style.left = 0;
			}
		}
		self.processImage();
   		setTimeout(function(){self.scrollOffer();}, this.WidgetParams.rotateTimeInterval);
    };

    this.calcWidgetPosition = function(){
    	var widgetHeight = 400;
    	var widgetWidth = 450;
        var winHeight = UtilInit.getWindowHeight();
        var winWidth = UtilInit.getWindowWidth();
    	var scrollTop = 0;
    	var top = Math.round((winHeight/2) - (widgetHeight/2) +  scrollTop);
		if(top<(10+scrollTop)) top = 10+scrollTop;
    	var widgetPosH = top + 'px';
    	var widgetPosW = Math.round((winWidth/2) - (widgetWidth/2)) + 'px';
		return {top:widgetPosH, left:widgetPosW};
	};
    
	this.setWidgetPosition = function(){
		var btn = this.gebi("nimbleBuyWidget");
		if(!btn) return;
		
        var winHeight = UtilInit.getWindowHeight();
    	var WidgetHeight = this.getWidgetHeight();
    	var btnTop = Math.round((winHeight/2) - (WidgetHeight/2));
		btn.style.top = btnTop + "px";
		btn.style.left = 0;
    };
    
    this.showLoading = function(){
		if(!this.gebi("imsLoading")){
			var w = UtilInit.getWindowWidth();
			var h = UtilInit.getWindowHeight();
	    	var l = Math.round(w/2-100) + 'px';
	    	var t = Math.round(h/2-50) + 'px';
	        var prms = {
		        	zIndex: 20001,
		            display: 'block',
		            position: 'absolute',
		            left: l,
		            top: t,
		            textAlign: 'center',
					padding: '20px',
					border: '10px solid #acacac',
					backgroundColor: '#fff',
					width: '200px',
					fontSize: '18px',
					fontWeight: 'bold',
					fontFamily: 'Arial'
				};
		    this.loading = UtilInit.newElement("div",prms);
	        this.loading.id = "imsLoading"+this.WidgetParams.id;		
	        this.loading.innerHTML = "Loading...";
			document.body.insertBefore(this.loading, document.body.firstChild);
		}
		else {
			this.gebi("imsLoading").innerHTML = "Loading...";
			this.gebi("imsLoading").style.display = "block";
		}
		
	};
	
	this.refreshDealTimeLeftArea = function() {
		var times = UtilInit.getElementsByClassName("offerTimeLeft",this.gebi("nimbleBuyOffers"));
		for(var i=0; i<times.length; i++){
			if (this.seconds.length < i+1) {
				this.seconds[i] = 0;
			}
			var timerText = times[i].innerHTML.toString();
			if(timerText == "") { return; }
			if(null != timerText) {
				timerText = timerText.replace(/(<([^>]+)>)/ig,"");
			} else {timerText = "";}
			if (timerText == "Expired" || timerText == "00:00:00") {
				times[i].innerHTML = "00" + this.WidgetLocalizationProps.hour + ":00" + this.WidgetLocalizationProps.min + ":00" + this.WidgetLocalizationProps.sec;
			} else {
				var timestrs = timerText.split(":");
				var inDays = (timestrs[0].indexOf(this.WidgetLocalizationProps.day)!=-1) ? true : false;
				
				var daysStr = inDays == true ? timestrs[0].substr(0, timestrs[0].length-this.WidgetLocalizationProps.day.length) : null;
				var hoursStr = inDays == true ? timestrs[1].substr(0, timestrs[1].length-this.WidgetLocalizationProps.hour.length) : timestrs[0].substr(0,  timestrs[0].length-this.WidgetLocalizationProps.hour.length);
				var minStr = inDays == true ? timestrs[2].substr(0, timestrs[2].length-this.WidgetLocalizationProps.hour.length) : timestrs[1].substr(0, timestrs[1].length-this.WidgetLocalizationProps.min.length);
				var secStr = inDays == true ? null : timestrs[2].substr(0, timestrs[2].length-this.WidgetLocalizationProps.sec.length);
				
				var seconds = inDays == true ? parseInt(daysStr, 10)*86400 + parseInt(hoursStr, 10)*3600 + parseInt(minStr, 10)*60 : parseInt(hoursStr, 10)*3600 + parseInt(minStr, 10)*60 + parseInt(secStr, 10) - 1;
				if (this.seconds[i] == 0) {
					this.seconds[i] = seconds;
				}
				this.seconds[i]--;
				seconds = this.seconds[i];
				
				if (inDays == true) {
					var days = Math.floor(seconds / 86400);
					seconds -= days*86400;
				}
				var hours = Math.floor(seconds / 3600);
				seconds -= hours*3600;
				var minutes = Math.floor(seconds / 60);
				seconds -= minutes*60;
				if (inDays == false) {
					times[i].innerHTML = hours + this.WidgetLocalizationProps.hour + ":" + ((minutes<10)?("0"+minutes):minutes) + this.WidgetLocalizationProps.min + ":" + ((seconds<10)?("0"+seconds):seconds)+this.WidgetLocalizationProps.sec; 
				} else {
					minutes++;
					times[i].innerHTML = days + this.WidgetLocalizationProps.day + ":" + ((hours<10)?("0"+hours):hours) + this.WidgetLocalizationProps.hour + ":" + ((minutes<10)?("0"+minutes):minutes)+this.WidgetLocalizationProps.min;
				}
			}
		}
		setTimeout(function() {self.refreshDealTimeLeftArea();}, 1000);
	};
	
	this.unInstall = function(){
		var	s = this.gebi("nimbleBuyWidgetScript");
		if (s) {
			s.parentNode.removeChild(s);
			var nimbleBuyWidget = this.gebi("nimbleBuyWidget");
			if (nimbleBuyWidget)
				nimbleBuyWidget.innerHTML = "";
		}
	};
	
	this.processImage = function() {
		var nimbleBuyWidget = this.gebi("nimbleBuyWidget");
    	var imgs = UtilInit.getElementsByName("widgetMainImage",nimbleBuyWidget);
    	if(null != imgs && imgs.length > 0) {
    		if(null != imgs[0].title && imgs[0].title != "") {
    			imgs[0].src=imgs[0].title; imgs[0].title="";
    		} imgs[0].name="";
    	}
	};
	
	this.install = function(WidgetHtml,  WidgetParams, WidgetLocalizationProps){
		this.WidgetHtml = WidgetHtml;
		this.WidgetParams = WidgetParams;
		if (WidgetLocalizationProps){
			this.WidgetLocalizationProps = WidgetLocalizationProps;
		}
		this.getParams();
		this.insertWidget();
		if(this.WidgetParams.widgetOffersSize>1){
			setTimeout(function(){ self.scrollOffer(); }, this.WidgetParams.rotateTimeInterval);
		}
		self.processImage();
		setTimeout(function() {self.refreshDealTimeLeftArea();}, 1000);
	};
	
	this.installOnload = function(WidgetHtml,  WidgetParams){
		if (window.addEventListener) {
			window.addEventListener("load", function(){
				self.install(WidgetHtml,  WidgetParams);
			}, false);
		} 
		else if(window.attachEvent) {
			window.attachEvent("onload", function(){
				self.install(WidgetHtml,  WidgetParams);
			}, false);
		} 
	};
	
};


var WidgetHtml27281 = {	getNimbleBuyWidgetHTML: function(){		var s = '';		s = "&lt;div id=&quot;nimbleBuyOffers27281&quot; style=&quot;width:7800px; height:250px; position:relative;left:0;top:0;&quot;&gt; &lt;div style=&quot;float:left;width:300px;height:250px;&quot;&gt;&lt;div style=&quot;background: #5d3861; padding: 5px; height: 100%; box-sizing: border-box; border: 3px solid #000;&quot;&gt; &lt;a target=&quot;_target&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/69-up-washington-national-opera-masterpiece-dead-man-walking-41?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_3766952&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; style=&quot;background-image: url(https://productimages.nimbledeals.com/nimblebuy/acf5f71a7f5a3997d948f13072ce3dd3); background-repeat: no-repeat; display: block; width: 280px; height: 52px; margin: 10px 0; outline: none; border: none; background-size: 100%; outline: none; border: none;&quot;&gt; &lt;/a&gt; &lt;div style=&quot;background: #ffffff; padding: 5px; &quot;&gt; &lt;div style=&quot;width: 138px; padding-top: 7px; overflow: hidden; padding-left: 10px; font-family: Arial, Helvetica, sans-serif; font-size: 16px; color: #000000;text-overflow: ellipsis;height: 100px;line-height: 21px; float: right;&quot;&gt; $59 &amp; up &ndash; Washington National Opera: &lsquo;Champion,&rsquo; 40% Off &lt;/div&gt; &lt;img src=&quot;https://s3.amazonaws.com/product-images.imshopping.com/nimblebuy/69-up-washington-national-opera-masterpiece-dead-man-walking-41-11502362-small_lv.jpg&quot; style=&quot;width: 126px; height: 92px; margin: 7px 0 10px 0; float: left;&quot; alt=&quot;$59 &amp; up &ndash; Washington National Opera: &lsquo;Champion,&rsquo; 40% Off&quot;&gt; &lt;a href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/69-up-washington-national-opera-masterpiece-dead-man-walking-41?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_3766952&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; target=&quot;_blank&quot; style=&quot;background: #aecb36; display: block; width: 124px; height: 39px; line-height: 40px; padding-left: 4px; font-family: Arial, Helvetica, sans-serif; font-size: 13px; color: white; text-decoration: none; border-radius: 4px; margin-bottom: 3px; text-align: center; clear: left;&quot;&gt;VIEW DEAL NOW&lt;/a&gt; &lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style=&quot;float:left;width:300px;height:250px;&quot;&gt;&lt;div style=&quot;background: #5d3861; padding: 5px; height: 100%; box-sizing: border-box; border: 3px solid #000;&quot;&gt; &lt;a target=&quot;_target&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/69-up-washington-national-opera-masterpiece-dead-man-walking-40?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_3752472&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; style=&quot;background-image: url(https://productimages.nimbledeals.com/nimblebuy/acf5f71a7f5a3997d948f13072ce3dd3); background-repeat: no-repeat; display: block; width: 280px; height: 52px; margin: 10px 0; outline: none; border: none; background-size: 100%; outline: none; border: none;&quot;&gt; &lt;/a&gt; &lt;div style=&quot;background: #ffffff; padding: 5px; &quot;&gt; &lt;div style=&quot;width: 138px; padding-top: 7px; overflow: hidden; padding-left: 10px; font-family: Arial, Helvetica, sans-serif; font-size: 16px; color: #000000;text-overflow: ellipsis;height: 100px;line-height: 21px; float: right;&quot;&gt; $69 &amp; up &ndash; Washington National Opera: &lsquo;Dead Man Walking,&rsquo; 40% Off &lt;/div&gt; &lt;img src=&quot;https://s3.amazonaws.com/product-images.imshopping.com/nimblebuy/69-up-washington-national-opera-masterpiece-dead-man-walking-40-11502152-small_lv.jpg&quot; style=&quot;width: 126px; height: 92px; margin: 7px 0 10px 0; float: left;&quot; alt=&quot;$69 &amp; up &ndash; Washington National Opera: &lsquo;Dead Man Walking,&rsquo; 40% Off&quot;&gt; &lt;a href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/69-up-washington-national-opera-masterpiece-dead-man-walking-40?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_3752472&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; target=&quot;_blank&quot; style=&quot;background: #aecb36; display: block; width: 124px; height: 39px; line-height: 40px; padding-left: 4px; font-family: Arial, Helvetica, sans-serif; font-size: 13px; color: white; text-decoration: none; border-radius: 4px; margin-bottom: 3px; text-align: center; clear: left;&quot;&gt;VIEW DEAL NOW&lt;/a&gt; &lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style=&quot;float:left;width:300px;height:250px;&quot;&gt;&lt;div style=&quot;background: #5d3861; padding: 5px; height: 100%; box-sizing: border-box; border: 3px solid #000;&quot;&gt; &lt;a target=&quot;_target&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/day-of-pampering-at-lansdowne-resort-and-spa-35-off-4?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_3693092&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; style=&quot;background-image: url(https://productimages.nimbledeals.com/nimblebuy/acf5f71a7f5a3997d948f13072ce3dd3); background-repeat: no-repeat; display: block; width: 280px; height: 52px; margin: 10px 0; outline: none; border: none; background-size: 100%; outline: none; border: none;&quot;&gt; &lt;/a&gt; &lt;div style=&quot;background: #ffffff; padding: 5px; &quot;&gt; &lt;div style=&quot;width: 138px; padding-top: 7px; overflow: hidden; padding-left: 10px; font-family: Arial, Helvetica, sans-serif; font-size: 16px; color: #000000;text-overflow: ellipsis;height: 100px;line-height: 21px; float: right;&quot;&gt; Day of Pampering at Lansdowne Resort and Spa, 35% Off &lt;/div&gt; &lt;img src=&quot;https://s3.amazonaws.com/product-images.imshopping.com/nimblebuy/day-of-pampering-at-lansdowne-resort-and-spa-35-off-4-11269452-small_lv.jpg&quot; style=&quot;width: 126px; height: 92px; margin: 7px 0 10px 0; float: left;&quot; alt=&quot;Day of Pampering at Lansdowne Resort and Spa, 35% Off&quot;&gt; &lt;a href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/day-of-pampering-at-lansdowne-resort-and-spa-35-off-4?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_3693092&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; target=&quot;_blank&quot; style=&quot;background: #aecb36; display: block; width: 124px; height: 39px; line-height: 40px; padding-left: 4px; font-family: Arial, Helvetica, sans-serif; font-size: 13px; color: white; text-decoration: none; border-radius: 4px; margin-bottom: 3px; text-align: center; clear: left;&quot;&gt;VIEW DEAL NOW&lt;/a&gt; &lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style=&quot;float:left;width:300px;height:250px;&quot;&gt;&lt;div style=&quot;background: #5d3861; padding: 5px; height: 100%; box-sizing: border-box; border: 3px solid #000;&quot;&gt; &lt;a target=&quot;_target&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/49-h-street-farmtotable-dinner-for-2-wdrinks-50-off-7?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_3521842&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; style=&quot;background-image: url(https://productimages.nimbledeals.com/nimblebuy/acf5f71a7f5a3997d948f13072ce3dd3); background-repeat: no-repeat; display: block; width: 280px; height: 52px; margin: 10px 0; outline: none; border: none; background-size: 100%; outline: none; border: none;&quot;&gt; &lt;/a&gt; &lt;div style=&quot;background: #ffffff; padding: 5px; &quot;&gt; &lt;div style=&quot;width: 138px; padding-top: 7px; overflow: hidden; padding-left: 10px; font-family: Arial, Helvetica, sans-serif; font-size: 16px; color: #000000;text-overflow: ellipsis;height: 100px;line-height: 21px; float: right;&quot;&gt; $49 -- H Street Farm-to-Table Dinner for 2 w/Drinks, 50% Off &lt;/div&gt; &lt;img src=&quot;https://s3.amazonaws.com/product-images.imshopping.com/nimblebuy/49-h-street-farmtotable-dinner-for-2-wdrinks-50-off-7-10547682-small_lv.jpg&quot; style=&quot;width: 126px; height: 92px; margin: 7px 0 10px 0; float: left;&quot; alt=&quot;$49 -- H Street Farm-to-Table Dinner for 2 w/Drinks, 50% Off&quot;&gt; &lt;a href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/49-h-street-farmtotable-dinner-for-2-wdrinks-50-off-7?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_3521842&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; target=&quot;_blank&quot; style=&quot;background: #aecb36; display: block; width: 124px; height: 39px; line-height: 40px; padding-left: 4px; font-family: Arial, Helvetica, sans-serif; font-size: 13px; color: white; text-decoration: none; border-radius: 4px; margin-bottom: 3px; text-align: center; clear: left;&quot;&gt;VIEW DEAL NOW&lt;/a&gt; &lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style=&quot;float:left;width:300px;height:250px;&quot;&gt;&lt;div style=&quot;background: #5d3861; padding: 5px; height: 100%; box-sizing: border-box; border: 3px solid #000;&quot;&gt; &lt;a target=&quot;_target&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/239-virginia-2nt-waterfront-stay-wbubbly-credit-3?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_3726032&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; style=&quot;background-image: url(https://productimages.nimbledeals.com/nimblebuy/acf5f71a7f5a3997d948f13072ce3dd3); background-repeat: no-repeat; display: block; width: 280px; height: 52px; margin: 10px 0; outline: none; border: none; background-size: 100%; outline: none; border: none;&quot;&gt; &lt;/a&gt; &lt;div style=&quot;background: #ffffff; padding: 5px; &quot;&gt; &lt;div style=&quot;width: 138px; padding-top: 7px; overflow: hidden; padding-left: 10px; font-family: Arial, Helvetica, sans-serif; font-size: 16px; color: #000000;text-overflow: ellipsis;height: 100px;line-height: 21px; float: right;&quot;&gt; $239 -- Virginia: 2-Nt. Waterfront Stay w/Bubbly &amp; Credit &lt;/div&gt; &lt;img src=&quot;https://s3.amazonaws.com/product-images.imshopping.com/nimblebuy/239-virginia-2nt-waterfront-stay-wbubbly-credit-3-11369042-small_lv.jpg&quot; style=&quot;width: 126px; height: 92px; margin: 7px 0 10px 0; float: left;&quot; alt=&quot;$239 -- Virginia: 2-Nt. Waterfront Stay w/Bubbly &amp; Credit&quot;&gt; &lt;a href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/239-virginia-2nt-waterfront-stay-wbubbly-credit-3?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_3726032&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; target=&quot;_blank&quot; style=&quot;background: #aecb36; display: block; width: 124px; height: 39px; line-height: 40px; padding-left: 4px; font-family: Arial, Helvetica, sans-serif; font-size: 13px; color: white; text-decoration: none; border-radius: 4px; margin-bottom: 3px; text-align: center; clear: left;&quot;&gt;VIEW DEAL NOW&lt;/a&gt; &lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style=&quot;float:left;width:300px;height:250px;&quot;&gt;&lt;div style=&quot;background: #5d3861; padding: 5px; height: 100%; box-sizing: border-box; border: 3px solid #000;&quot;&gt; &lt;a target=&quot;_target&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/139-foodie-benefit-gala-w60-top-dc-chefs-45-off-5?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_3140402&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; style=&quot;background-image: url(https://productimages.nimbledeals.com/nimblebuy/acf5f71a7f5a3997d948f13072ce3dd3); background-repeat: no-repeat; display: block; width: 280px; height: 52px; margin: 10px 0; outline: none; border: none; background-size: 100%; outline: none; border: none;&quot;&gt; &lt;/a&gt; &lt;div style=&quot;background: #ffffff; padding: 5px; &quot;&gt; &lt;div style=&quot;width: 138px; padding-top: 7px; overflow: hidden; padding-left: 10px; font-family: Arial, Helvetica, sans-serif; font-size: 16px; color: #000000;text-overflow: ellipsis;height: 100px;line-height: 21px; float: right;&quot;&gt; $139 -- Foodie Benefit Gala w/60+ Top D.C. Chefs, 45% Off &lt;/div&gt; &lt;img src=&quot;https://s3.amazonaws.com/product-images.imshopping.com/nimblebuy/139-foodie-benefit-gala-w60-top-dc-chefs-45-off-5-10989912-small_lv.jpg&quot; style=&quot;width: 126px; height: 92px; margin: 7px 0 10px 0; float: left;&quot; alt=&quot;$139 -- Foodie Benefit Gala w/60+ Top D.C. Chefs, 45% Off&quot;&gt; &lt;a href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/139-foodie-benefit-gala-w60-top-dc-chefs-45-off-5?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_3140402&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; target=&quot;_blank&quot; style=&quot;background: #aecb36; display: block; width: 124px; height: 39px; line-height: 40px; padding-left: 4px; font-family: Arial, Helvetica, sans-serif; font-size: 13px; color: white; text-decoration: none; border-radius: 4px; margin-bottom: 3px; text-align: center; clear: left;&quot;&gt;VIEW DEAL NOW&lt;/a&gt; &lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style=&quot;float:left;width:300px;height:250px;&quot;&gt;&lt;div style=&quot;background: #5d3861; padding: 5px; height: 100%; box-sizing: border-box; border: 3px solid #000;&quot;&gt; &lt;a target=&quot;_target&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/22-up-king-charles-iii-at-shakespeare-theatre-co?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_3598872&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; style=&quot;background-image: url(https://productimages.nimbledeals.com/nimblebuy/acf5f71a7f5a3997d948f13072ce3dd3); background-repeat: no-repeat; display: block; width: 280px; height: 52px; margin: 10px 0; outline: none; border: none; background-size: 100%; outline: none; border: none;&quot;&gt; &lt;/a&gt; &lt;div style=&quot;background: #ffffff; padding: 5px; &quot;&gt; &lt;div style=&quot;width: 138px; padding-top: 7px; overflow: hidden; padding-left: 10px; font-family: Arial, Helvetica, sans-serif; font-size: 16px; color: #000000;text-overflow: ellipsis;height: 100px;line-height: 21px; float: right;&quot;&gt; $22 &amp; up &ndash; &#39;King Charles III&#39; at Shakespeare Theatre Co. &lt;/div&gt; &lt;img src=&quot;https://s3.amazonaws.com/product-images.imshopping.com/nimblebuy/22-up-king-charles-iii-at-shakespeare-theatre-co-10924312-small_lv.jpg&quot; style=&quot;width: 126px; height: 92px; margin: 7px 0 10px 0; float: left;&quot; alt=&quot;$22 &amp; up &ndash; &#39;King Charles III&#39; at Shakespeare Theatre Co.&quot;&gt; &lt;a href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/22-up-king-charles-iii-at-shakespeare-theatre-co?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_3598872&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; target=&quot;_blank&quot; style=&quot;background: #aecb36; display: block; width: 124px; height: 39px; line-height: 40px; padding-left: 4px; font-family: Arial, Helvetica, sans-serif; font-size: 13px; color: white; text-decoration: none; border-radius: 4px; margin-bottom: 3px; text-align: center; clear: left;&quot;&gt;VIEW DEAL NOW&lt;/a&gt; &lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style=&quot;float:left;width:300px;height:250px;&quot;&gt;&lt;div style=&quot;background: #5d3861; padding: 5px; height: 100%; box-sizing: border-box; border: 3px solid #000;&quot;&gt; &lt;a target=&quot;_target&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/99-hyatt-chesapeake-bay-spa-day-wbubbly-reg-161?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2993642&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; style=&quot;background-image: url(https://productimages.nimbledeals.com/nimblebuy/acf5f71a7f5a3997d948f13072ce3dd3); background-repeat: no-repeat; display: block; width: 280px; height: 52px; margin: 10px 0; outline: none; border: none; background-size: 100%; outline: none; border: none;&quot;&gt; &lt;/a&gt; &lt;div style=&quot;background: #ffffff; padding: 5px; &quot;&gt; &lt;div style=&quot;width: 138px; padding-top: 7px; overflow: hidden; padding-left: 10px; font-family: Arial, Helvetica, sans-serif; font-size: 16px; color: #000000;text-overflow: ellipsis;height: 100px;line-height: 21px; float: right;&quot;&gt; $99 -- Hyatt Chesapeake Bay Spa Day w/Bubbly, Reg. $158 &lt;/div&gt; &lt;img src=&quot;https://s3.amazonaws.com/product-images.imshopping.com/nimblebuy/99-hyatt-chesapeake-bay-spa-day-wbubbly-reg-161-8610422-small_lv.jpg&quot; style=&quot;width: 126px; height: 92px; margin: 7px 0 10px 0; float: left;&quot; alt=&quot;$99 -- Hyatt Chesapeake Bay Spa Day w/Bubbly, Reg. $158&quot;&gt; &lt;a href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/99-hyatt-chesapeake-bay-spa-day-wbubbly-reg-161?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2993642&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; target=&quot;_blank&quot; style=&quot;background: #aecb36; display: block; width: 124px; height: 39px; line-height: 40px; padding-left: 4px; font-family: Arial, Helvetica, sans-serif; font-size: 13px; color: white; text-decoration: none; border-radius: 4px; margin-bottom: 3px; text-align: center; clear: left;&quot;&gt;VIEW DEAL NOW&lt;/a&gt; &lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style=&quot;float:left;width:300px;height:250px;&quot;&gt;&lt;div style=&quot;background: #5d3861; padding: 5px; height: 100%; box-sizing: border-box; border: 3px solid #000;&quot;&gt; &lt;a target=&quot;_target&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/4-sparkling-wines-in-time-for-new-years-eve-wfree-shipping-6?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_3507172&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; style=&quot;background-image: url(https://productimages.nimbledeals.com/nimblebuy/acf5f71a7f5a3997d948f13072ce3dd3); background-repeat: no-repeat; display: block; width: 280px; height: 52px; margin: 10px 0; outline: none; border: none; background-size: 100%; outline: none; border: none;&quot;&gt; &lt;/a&gt; &lt;div style=&quot;background: #ffffff; padding: 5px; &quot;&gt; &lt;div style=&quot;width: 138px; padding-top: 7px; overflow: hidden; padding-left: 10px; font-family: Arial, Helvetica, sans-serif; font-size: 16px; color: #000000;text-overflow: ellipsis;height: 100px;line-height: 21px; float: right;&quot;&gt; $49 for 4 Bottles of Bubbly or $59 for 6 Reds/Whites; Free Shipping &lt;/div&gt; &lt;img src=&quot;https://s3.amazonaws.com/product-images.imshopping.com/nimblebuy/4-sparkling-wines-in-time-for-new-years-eve-wfree-shipping-6-10475162-small_lv.jpg&quot; style=&quot;width: 126px; height: 92px; margin: 7px 0 10px 0; float: left;&quot; alt=&quot;$49 for 4 Bottles of Bubbly or $59 for 6 Reds/Whites; Free Shipping&quot;&gt; &lt;a href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/4-sparkling-wines-in-time-for-new-years-eve-wfree-shipping-6?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_3507172&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; target=&quot;_blank&quot; style=&quot;background: #aecb36; display: block; width: 124px; height: 39px; line-height: 40px; padding-left: 4px; font-family: Arial, Helvetica, sans-serif; font-size: 13px; color: white; text-decoration: none; border-radius: 4px; margin-bottom: 3px; text-align: center; clear: left;&quot;&gt;VIEW DEAL NOW&lt;/a&gt; &lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style=&quot;float:left;width:300px;height:250px;&quot;&gt;&lt;div style=&quot;background: #5d3861; padding: 5px; height: 100%; box-sizing: border-box; border: 3px solid #000;&quot;&gt; &lt;a target=&quot;_target&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/49-roofers-union-dc-dinner-for-2-at-wapo-pick-reg-93?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_3068652&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; style=&quot;background-image: url(https://productimages.nimbledeals.com/nimblebuy/acf5f71a7f5a3997d948f13072ce3dd3); background-repeat: no-repeat; display: block; width: 280px; height: 52px; margin: 10px 0; outline: none; border: none; background-size: 100%; outline: none; border: none;&quot;&gt; &lt;/a&gt; &lt;div style=&quot;background: #ffffff; padding: 5px; &quot;&gt; &lt;div style=&quot;width: 138px; padding-top: 7px; overflow: hidden; padding-left: 10px; font-family: Arial, Helvetica, sans-serif; font-size: 16px; color: #000000;text-overflow: ellipsis;height: 100px;line-height: 21px; float: right;&quot;&gt; $49 -- Roofers Union DC: Dinner for 2 at WaPo Pick, Reg. $90 &lt;/div&gt; &lt;img src=&quot;https://s3.amazonaws.com/product-images.imshopping.com/nimblebuy/49-roofers-union-dc-dinner-for-2-at-wapo-pick-reg-93-8874652-small_lv.jpg&quot; style=&quot;width: 126px; height: 92px; margin: 7px 0 10px 0; float: left;&quot; alt=&quot;$49 -- Roofers Union DC: Dinner for 2 at WaPo Pick, Reg. $90&quot;&gt; &lt;a href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/49-roofers-union-dc-dinner-for-2-at-wapo-pick-reg-93?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_3068652&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; target=&quot;_blank&quot; style=&quot;background: #aecb36; display: block; width: 124px; height: 39px; line-height: 40px; padding-left: 4px; font-family: Arial, Helvetica, sans-serif; font-size: 13px; color: white; text-decoration: none; border-radius: 4px; margin-bottom: 3px; text-align: center; clear: left;&quot;&gt;VIEW DEAL NOW&lt;/a&gt; &lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style=&quot;float:left;width:300px;height:250px;&quot;&gt;&lt;div style=&quot;background: #5d3861; padding: 5px; height: 100%; box-sizing: border-box; border: 3px solid #000;&quot;&gt; &lt;a target=&quot;_target&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/washington-ballets-romantic-giselle-save-33?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_3676292&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; style=&quot;background-image: url(https://productimages.nimbledeals.com/nimblebuy/acf5f71a7f5a3997d948f13072ce3dd3); background-repeat: no-repeat; display: block; width: 280px; height: 52px; margin: 10px 0; outline: none; border: none; background-size: 100%; outline: none; border: none;&quot;&gt; &lt;/a&gt; &lt;div style=&quot;background: #ffffff; padding: 5px; &quot;&gt; &lt;div style=&quot;width: 138px; padding-top: 7px; overflow: hidden; padding-left: 10px; font-family: Arial, Helvetica, sans-serif; font-size: 16px; color: #000000;text-overflow: ellipsis;height: 100px;line-height: 21px; float: right;&quot;&gt; Washington Ballet&#39;s Romantic &#39;Giselle,&#39; Save 30% &lt;/div&gt; &lt;img src=&quot;https://s3.amazonaws.com/product-images.imshopping.com/nimblebuy/washington-ballets-romantic-giselle-save-33-11212902-small_lv.jpg&quot; style=&quot;width: 126px; height: 92px; margin: 7px 0 10px 0; float: left;&quot; alt=&quot;Washington Ballet&#39;s Romantic &#39;Giselle,&#39; Save 30%&quot;&gt; &lt;a href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/washington-ballets-romantic-giselle-save-33?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_3676292&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; target=&quot;_blank&quot; style=&quot;background: #aecb36; display: block; width: 124px; height: 39px; line-height: 40px; padding-left: 4px; font-family: Arial, Helvetica, sans-serif; font-size: 13px; color: white; text-decoration: none; border-radius: 4px; margin-bottom: 3px; text-align: center; clear: left;&quot;&gt;VIEW DEAL NOW&lt;/a&gt; &lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style=&quot;float:left;width:300px;height:250px;&quot;&gt;&lt;div style=&quot;background: #5d3861; padding: 5px; height: 100%; box-sizing: border-box; border: 3px solid #000;&quot;&gt; &lt;a target=&quot;_target&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/16-georgetown-ice-skating-wrental-for-2-reg-35?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_3306792&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; style=&quot;background-image: url(https://productimages.nimbledeals.com/nimblebuy/acf5f71a7f5a3997d948f13072ce3dd3); background-repeat: no-repeat; display: block; width: 280px; height: 52px; margin: 10px 0; outline: none; border: none; background-size: 100%; outline: none; border: none;&quot;&gt; &lt;/a&gt; &lt;div style=&quot;background: #ffffff; padding: 5px; &quot;&gt; &lt;div style=&quot;width: 138px; padding-top: 7px; overflow: hidden; padding-left: 10px; font-family: Arial, Helvetica, sans-serif; font-size: 16px; color: #000000;text-overflow: ellipsis;height: 100px;line-height: 21px; float: right;&quot;&gt; $16 -- Georgetown: Ice Skating w/Rental for 2, Reg. $32 &lt;/div&gt; &lt;img src=&quot;https://s3.amazonaws.com/product-images.imshopping.com/nimblebuy/16-georgetown-ice-skating-wrental-for-2-reg-35-9723322-small_lv.jpg&quot; style=&quot;width: 126px; height: 92px; margin: 7px 0 10px 0; float: left;&quot; alt=&quot;$16 -- Georgetown: Ice Skating w/Rental for 2, Reg. $32&quot;&gt; &lt;a href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/16-georgetown-ice-skating-wrental-for-2-reg-35?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_3306792&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; target=&quot;_blank&quot; style=&quot;background: #aecb36; display: block; width: 124px; height: 39px; line-height: 40px; padding-left: 4px; font-family: Arial, Helvetica, sans-serif; font-size: 13px; color: white; text-decoration: none; border-radius: 4px; margin-bottom: 3px; text-align: center; clear: left;&quot;&gt;VIEW DEAL NOW&lt;/a&gt; &lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style=&quot;float:left;width:300px;height:250px;&quot;&gt;&lt;div style=&quot;background: #5d3861; padding: 5px; height: 100%; box-sizing: border-box; border: 3px solid #000;&quot;&gt; &lt;a target=&quot;_target&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/spa-at-poplar-springs-50minute-massage-or-facial-45-off-3?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_3518962&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; style=&quot;background-image: url(https://productimages.nimbledeals.com/nimblebuy/acf5f71a7f5a3997d948f13072ce3dd3); background-repeat: no-repeat; display: block; width: 280px; height: 52px; margin: 10px 0; outline: none; border: none; background-size: 100%; outline: none; border: none;&quot;&gt; &lt;/a&gt; &lt;div style=&quot;background: #ffffff; padding: 5px; &quot;&gt; &lt;div style=&quot;width: 138px; padding-top: 7px; overflow: hidden; padding-left: 10px; font-family: Arial, Helvetica, sans-serif; font-size: 16px; color: #000000;text-overflow: ellipsis;height: 100px;line-height: 21px; float: right;&quot;&gt; Spa at Poplar Springs: 50-Minute Massage or Facial, 45% Off &lt;/div&gt; &lt;img src=&quot;https://s3.amazonaws.com/product-images.imshopping.com/nimblebuy/spa-at-poplar-springs-50minute-massage-or-facial-45-off-3-10531482-small_lv.jpg&quot; style=&quot;width: 126px; height: 92px; margin: 7px 0 10px 0; float: left;&quot; alt=&quot;Spa at Poplar Springs: 50-Minute Massage or Facial, 45% Off&quot;&gt; &lt;a href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/spa-at-poplar-springs-50minute-massage-or-facial-45-off-3?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_3518962&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; target=&quot;_blank&quot; style=&quot;background: #aecb36; display: block; width: 124px; height: 39px; line-height: 40px; padding-left: 4px; font-family: Arial, Helvetica, sans-serif; font-size: 13px; color: white; text-decoration: none; border-radius: 4px; margin-bottom: 3px; text-align: center; clear: left;&quot;&gt;VIEW DEAL NOW&lt;/a&gt; &lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style=&quot;float:left;width:300px;height:250px;&quot;&gt;&lt;div style=&quot;background: #5d3861; padding: 5px; height: 100%; box-sizing: border-box; border: 3px solid #000;&quot;&gt; &lt;a target=&quot;_target&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/14-international-spy-museum-admission-3?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_3426712&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; style=&quot;background-image: url(https://productimages.nimbledeals.com/nimblebuy/acf5f71a7f5a3997d948f13072ce3dd3); background-repeat: no-repeat; display: block; width: 280px; height: 52px; margin: 10px 0; outline: none; border: none; background-size: 100%; outline: none; border: none;&quot;&gt; &lt;/a&gt; &lt;div style=&quot;background: #ffffff; padding: 5px; &quot;&gt; &lt;div style=&quot;width: 138px; padding-top: 7px; overflow: hidden; padding-left: 10px; font-family: Arial, Helvetica, sans-serif; font-size: 16px; color: #000000;text-overflow: ellipsis;height: 100px;line-height: 21px; float: right;&quot;&gt; $14 -- International Spy Museum Admission &lt;/div&gt; &lt;img src=&quot;https://s3.amazonaws.com/product-images.imshopping.com/nimblebuy/14-international-spy-museum-admission-3-10157222-small_lv.jpg&quot; style=&quot;width: 126px; height: 92px; margin: 7px 0 10px 0; float: left;&quot; alt=&quot;$14 -- International Spy Museum Admission&quot;&gt; &lt;a href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/14-international-spy-museum-admission-3?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_3426712&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; target=&quot;_blank&quot; style=&quot;background: #aecb36; display: block; width: 124px; height: 39px; line-height: 40px; padding-left: 4px; font-family: Arial, Helvetica, sans-serif; font-size: 13px; color: white; text-decoration: none; border-radius: 4px; margin-bottom: 3px; text-align: center; clear: left;&quot;&gt;VIEW DEAL NOW&lt;/a&gt; &lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style=&quot;float:left;width:300px;height:250px;&quot;&gt;&lt;div style=&quot;background: #5d3861; padding: 5px; height: 100%; box-sizing: border-box; border: 3px solid #000;&quot;&gt; &lt;a target=&quot;_target&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/20-fantastic-salvadoranmexican-food-drinks-50-off-7?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2934572&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; style=&quot;background-image: url(https://productimages.nimbledeals.com/nimblebuy/acf5f71a7f5a3997d948f13072ce3dd3); background-repeat: no-repeat; display: block; width: 280px; height: 52px; margin: 10px 0; outline: none; border: none; background-size: 100%; outline: none; border: none;&quot;&gt; &lt;/a&gt; &lt;div style=&quot;background: #ffffff; padding: 5px; &quot;&gt; &lt;div style=&quot;width: 138px; padding-top: 7px; overflow: hidden; padding-left: 10px; font-family: Arial, Helvetica, sans-serif; font-size: 16px; color: #000000;text-overflow: ellipsis;height: 100px;line-height: 21px; float: right;&quot;&gt; $20 -- &#39;Fantastic&#39; Salvadoran-Mexican Food &amp; Drinks, 50% Off &lt;/div&gt; &lt;img src=&quot;https://s3.amazonaws.com/product-images.imshopping.com/nimblebuy/20-fantastic-salvadoranmexican-food-drinks-50-off-7-8614832-small_lv.jpg&quot; style=&quot;width: 126px; height: 92px; margin: 7px 0 10px 0; float: left;&quot; alt=&quot;$20 -- &#39;Fantastic&#39; Salvadoran-Mexican Food &amp; Drinks, 50% Off&quot;&gt; &lt;a href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/20-fantastic-salvadoranmexican-food-drinks-50-off-7?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2934572&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; target=&quot;_blank&quot; style=&quot;background: #aecb36; display: block; width: 124px; height: 39px; line-height: 40px; padding-left: 4px; font-family: Arial, Helvetica, sans-serif; font-size: 13px; color: white; text-decoration: none; border-radius: 4px; margin-bottom: 3px; text-align: center; clear: left;&quot;&gt;VIEW DEAL NOW&lt;/a&gt; &lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style=&quot;float:left;width:300px;height:250px;&quot;&gt;&lt;div style=&quot;background: #5d3861; padding: 5px; height: 100%; box-sizing: border-box; border: 3px solid #000;&quot;&gt; &lt;a target=&quot;_target&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/15-linganore-winery-award-winning-wine-and-cheese-for-5?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_3599082&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; style=&quot;background-image: url(https://productimages.nimbledeals.com/nimblebuy/acf5f71a7f5a3997d948f13072ce3dd3); background-repeat: no-repeat; display: block; width: 280px; height: 52px; margin: 10px 0; outline: none; border: none; background-size: 100%; outline: none; border: none;&quot;&gt; &lt;/a&gt; &lt;div style=&quot;background: #ffffff; padding: 5px; &quot;&gt; &lt;div style=&quot;width: 138px; padding-top: 7px; overflow: hidden; padding-left: 10px; font-family: Arial, Helvetica, sans-serif; font-size: 16px; color: #000000;text-overflow: ellipsis;height: 100px;line-height: 21px; float: right;&quot;&gt; Maryland&#39;s Largest Winery: Try Award-Winning Varieties &lt;/div&gt; &lt;img src=&quot;https://s3.amazonaws.com/product-images.imshopping.com/nimblebuy/15-linganore-winery-award-winning-wine-and-cheese-for-5-10927722-small_lv.jpg&quot; style=&quot;width: 126px; height: 92px; margin: 7px 0 10px 0; float: left;&quot; alt=&quot; Maryland&#39;s Largest Winery: Try Award-Winning Varieties &quot;&gt; &lt;a href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/15-linganore-winery-award-winning-wine-and-cheese-for-5?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_3599082&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; target=&quot;_blank&quot; style=&quot;background: #aecb36; display: block; width: 124px; height: 39px; line-height: 40px; padding-left: 4px; font-family: Arial, Helvetica, sans-serif; font-size: 13px; color: white; text-decoration: none; border-radius: 4px; margin-bottom: 3px; text-align: center; clear: left;&quot;&gt;VIEW DEAL NOW&lt;/a&gt; &lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style=&quot;float:left;width:300px;height:250px;&quot;&gt;&lt;div style=&quot;background: #5d3861; padding: 5px; height: 100%; box-sizing: border-box; border: 3px solid #000;&quot;&gt; &lt;a target=&quot;_target&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/zagatrated-tapas-dinner-or-paella-class-wdinner?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_3597642&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; style=&quot;background-image: url(https://productimages.nimbledeals.com/nimblebuy/acf5f71a7f5a3997d948f13072ce3dd3); background-repeat: no-repeat; display: block; width: 280px; height: 52px; margin: 10px 0; outline: none; border: none; background-size: 100%; outline: none; border: none;&quot;&gt; &lt;/a&gt; &lt;div style=&quot;background: #ffffff; padding: 5px; &quot;&gt; &lt;div style=&quot;width: 138px; padding-top: 7px; overflow: hidden; padding-left: 10px; font-family: Arial, Helvetica, sans-serif; font-size: 16px; color: #000000;text-overflow: ellipsis;height: 100px;line-height: 21px; float: right;&quot;&gt; Zagat-Rated Tapas Dinner or Paella Class w/Dinner &lt;/div&gt; &lt;img src=&quot;https://s3.amazonaws.com/product-images.imshopping.com/nimblebuy/zagatrated-tapas-dinner-or-paella-class-wdinner-10918802-small_lv.jpg&quot; style=&quot;width: 126px; height: 92px; margin: 7px 0 10px 0; float: left;&quot; alt=&quot;Zagat-Rated Tapas Dinner or Paella Class w/Dinner&quot;&gt; &lt;a href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/zagatrated-tapas-dinner-or-paella-class-wdinner?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_3597642&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; target=&quot;_blank&quot; style=&quot;background: #aecb36; display: block; width: 124px; height: 39px; line-height: 40px; padding-left: 4px; font-family: Arial, Helvetica, sans-serif; font-size: 13px; color: white; text-decoration: none; border-radius: 4px; margin-bottom: 3px; text-align: center; clear: left;&quot;&gt;VIEW DEAL NOW&lt;/a&gt; &lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style=&quot;float:left;width:300px;height:250px;&quot;&gt;&lt;div style=&quot;background: #5d3861; padding: 5px; height: 100%; box-sizing: border-box; border: 3px solid #000;&quot;&gt; &lt;a target=&quot;_target&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/14-canal-park-ice-skating-for-2-wrentals-reg-31?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_3306782&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; style=&quot;background-image: url(https://productimages.nimbledeals.com/nimblebuy/acf5f71a7f5a3997d948f13072ce3dd3); background-repeat: no-repeat; display: block; width: 280px; height: 52px; margin: 10px 0; outline: none; border: none; background-size: 100%; outline: none; border: none;&quot;&gt; &lt;/a&gt; &lt;div style=&quot;background: #ffffff; padding: 5px; &quot;&gt; &lt;div style=&quot;width: 138px; padding-top: 7px; overflow: hidden; padding-left: 10px; font-family: Arial, Helvetica, sans-serif; font-size: 16px; color: #000000;text-overflow: ellipsis;height: 100px;line-height: 21px; float: right;&quot;&gt; $14 -- Canal Park: Ice Skating for 2 w/Rentals, Reg. $28 &lt;/div&gt; &lt;img src=&quot;https://s3.amazonaws.com/product-images.imshopping.com/nimblebuy/14-canal-park-ice-skating-for-2-wrentals-reg-31-9723252-small_lv.jpg&quot; style=&quot;width: 126px; height: 92px; margin: 7px 0 10px 0; float: left;&quot; alt=&quot;$14 -- Canal Park: Ice Skating for 2 w/Rentals, Reg. $28&quot;&gt; &lt;a href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/14-canal-park-ice-skating-for-2-wrentals-reg-31?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_3306782&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; target=&quot;_blank&quot; style=&quot;background: #aecb36; display: block; width: 124px; height: 39px; line-height: 40px; padding-left: 4px; font-family: Arial, Helvetica, sans-serif; font-size: 13px; color: white; text-decoration: none; border-radius: 4px; margin-bottom: 3px; text-align: center; clear: left;&quot;&gt;VIEW DEAL NOW&lt;/a&gt; &lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style=&quot;float:left;width:300px;height:250px;&quot;&gt;&lt;div style=&quot;background: #5d3861; padding: 5px; height: 100%; box-sizing: border-box; border: 3px solid #000;&quot;&gt; &lt;a target=&quot;_target&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/16-tysons-corner-ice-skating-wrental-for-2-reg-39?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_3306772&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; style=&quot;background-image: url(https://productimages.nimbledeals.com/nimblebuy/acf5f71a7f5a3997d948f13072ce3dd3); background-repeat: no-repeat; display: block; width: 280px; height: 52px; margin: 10px 0; outline: none; border: none; background-size: 100%; outline: none; border: none;&quot;&gt; &lt;/a&gt; &lt;div style=&quot;background: #ffffff; padding: 5px; &quot;&gt; &lt;div style=&quot;width: 138px; padding-top: 7px; overflow: hidden; padding-left: 10px; font-family: Arial, Helvetica, sans-serif; font-size: 16px; color: #000000;text-overflow: ellipsis;height: 100px;line-height: 21px; float: right;&quot;&gt; $16 -- Tysons Corner: Ice Skating w/Rental for 2, Reg. $32 &lt;/div&gt; &lt;img src=&quot;https://s3.amazonaws.com/product-images.imshopping.com/nimblebuy/16-tysons-corner-ice-skating-wrental-for-2-reg-39-9723132-small_lv.jpg&quot; style=&quot;width: 126px; height: 92px; margin: 7px 0 10px 0; float: left;&quot; alt=&quot;$16 -- Tysons Corner: Ice Skating w/Rental for 2, Reg. $32&quot;&gt; &lt;a href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/16-tysons-corner-ice-skating-wrental-for-2-reg-39?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_3306772&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; target=&quot;_blank&quot; style=&quot;background: #aecb36; display: block; width: 124px; height: 39px; line-height: 40px; padding-left: 4px; font-family: Arial, Helvetica, sans-serif; font-size: 13px; color: white; text-decoration: none; border-radius: 4px; margin-bottom: 3px; text-align: center; clear: left;&quot;&gt;VIEW DEAL NOW&lt;/a&gt; &lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style=&quot;float:left;width:300px;height:250px;&quot;&gt;&lt;div style=&quot;background: #5d3861; padding: 5px; height: 100%; box-sizing: border-box; border: 3px solid #000;&quot;&gt; &lt;a target=&quot;_target&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/16-reston-center-ice-skating-wrental-for-2-reg-35?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_3306752&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; style=&quot;background-image: url(https://productimages.nimbledeals.com/nimblebuy/acf5f71a7f5a3997d948f13072ce3dd3); background-repeat: no-repeat; display: block; width: 280px; height: 52px; margin: 10px 0; outline: none; border: none; background-size: 100%; outline: none; border: none;&quot;&gt; &lt;/a&gt; &lt;div style=&quot;background: #ffffff; padding: 5px; &quot;&gt; &lt;div style=&quot;width: 138px; padding-top: 7px; overflow: hidden; padding-left: 10px; font-family: Arial, Helvetica, sans-serif; font-size: 16px; color: #000000;text-overflow: ellipsis;height: 100px;line-height: 21px; float: right;&quot;&gt; $16 -- Reston Center: Ice Skating w/Rental for 2, Reg. $32 &lt;/div&gt; &lt;img src=&quot;https://s3.amazonaws.com/product-images.imshopping.com/nimblebuy/16-reston-center-ice-skating-wrental-for-2-reg-35-9723052-small_lv.jpg&quot; style=&quot;width: 126px; height: 92px; margin: 7px 0 10px 0; float: left;&quot; alt=&quot;$16 -- Reston Center: Ice Skating w/Rental for 2, Reg. $32&quot;&gt; &lt;a href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/16-reston-center-ice-skating-wrental-for-2-reg-35?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_3306752&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; target=&quot;_blank&quot; style=&quot;background: #aecb36; display: block; width: 124px; height: 39px; line-height: 40px; padding-left: 4px; font-family: Arial, Helvetica, sans-serif; font-size: 13px; color: white; text-decoration: none; border-radius: 4px; margin-bottom: 3px; text-align: center; clear: left;&quot;&gt;VIEW DEAL NOW&lt;/a&gt; &lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style=&quot;float:left;width:300px;height:250px;&quot;&gt;&lt;div style=&quot;background: #5d3861; padding: 5px; height: 100%; box-sizing: border-box; border: 3px solid #000;&quot;&gt; &lt;a target=&quot;_target&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/85-90minute-thai-massage-at-4-dcarea-locations-3?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_3470982&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; style=&quot;background-image: url(https://productimages.nimbledeals.com/nimblebuy/acf5f71a7f5a3997d948f13072ce3dd3); background-repeat: no-repeat; display: block; width: 280px; height: 52px; margin: 10px 0; outline: none; border: none; background-size: 100%; outline: none; border: none;&quot;&gt; &lt;/a&gt; &lt;div style=&quot;background: #ffffff; padding: 5px; &quot;&gt; &lt;div style=&quot;width: 138px; padding-top: 7px; overflow: hidden; padding-left: 10px; font-family: Arial, Helvetica, sans-serif; font-size: 16px; color: #000000;text-overflow: ellipsis;height: 100px;line-height: 21px; float: right;&quot;&gt; $85 -- 90-Minute Thai Massage at 4 D.C.-Area Locations &lt;/div&gt; &lt;img src=&quot;https://s3.amazonaws.com/product-images.imshopping.com/nimblebuy/85-90minute-thai-massage-at-4-dcarea-locations-3-10350892-small_lv.jpg&quot; style=&quot;width: 126px; height: 92px; margin: 7px 0 10px 0; float: left;&quot; alt=&quot;$85 -- 90-Minute Thai Massage at 4 D.C.-Area Locations&quot;&gt; &lt;a href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/85-90minute-thai-massage-at-4-dcarea-locations-3?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_3470982&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; target=&quot;_blank&quot; style=&quot;background: #aecb36; display: block; width: 124px; height: 39px; line-height: 40px; padding-left: 4px; font-family: Arial, Helvetica, sans-serif; font-size: 13px; color: white; text-decoration: none; border-radius: 4px; margin-bottom: 3px; text-align: center; clear: left;&quot;&gt;VIEW DEAL NOW&lt;/a&gt; &lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style=&quot;float:left;width:300px;height:250px;&quot;&gt;&lt;div style=&quot;background: #5d3861; padding: 5px; height: 100%; box-sizing: border-box; border: 3px solid #000;&quot;&gt; &lt;a target=&quot;_target&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/dupont-circle-ankara-3course-turkish-dinner-55-off-3?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_3397552&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; style=&quot;background-image: url(https://productimages.nimbledeals.com/nimblebuy/acf5f71a7f5a3997d948f13072ce3dd3); background-repeat: no-repeat; display: block; width: 280px; height: 52px; margin: 10px 0; outline: none; border: none; background-size: 100%; outline: none; border: none;&quot;&gt; &lt;/a&gt; &lt;div style=&quot;background: #ffffff; padding: 5px; &quot;&gt; &lt;div style=&quot;width: 138px; padding-top: 7px; overflow: hidden; padding-left: 10px; font-family: Arial, Helvetica, sans-serif; font-size: 16px; color: #000000;text-overflow: ellipsis;height: 100px;line-height: 21px; float: right;&quot;&gt; Dupont Circle: Ankara 3-Course Turkish Dinner, 55% Off &lt;/div&gt; &lt;img src=&quot;https://s3.amazonaws.com/product-images.imshopping.com/nimblebuy/dupont-circle-ankara-3course-turkish-dinner-55-off-3-10058442-small_lv.jpg&quot; style=&quot;width: 126px; height: 92px; margin: 7px 0 10px 0; float: left;&quot; alt=&quot;Dupont Circle: Ankara 3-Course Turkish Dinner, 55% Off&quot;&gt; &lt;a href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/dupont-circle-ankara-3course-turkish-dinner-55-off-3?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_3397552&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; target=&quot;_blank&quot; style=&quot;background: #aecb36; display: block; width: 124px; height: 39px; line-height: 40px; padding-left: 4px; font-family: Arial, Helvetica, sans-serif; font-size: 13px; color: white; text-decoration: none; border-radius: 4px; margin-bottom: 3px; text-align: center; clear: left;&quot;&gt;VIEW DEAL NOW&lt;/a&gt; &lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style=&quot;float:left;width:300px;height:250px;&quot;&gt;&lt;div style=&quot;background: #5d3861; padding: 5px; height: 100%; box-sizing: border-box; border: 3px solid #000;&quot;&gt; &lt;a target=&quot;_target&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/35-2017-pass-for-2-to-100-wineries-wtastings-reg-72?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_3306692&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; style=&quot;background-image: url(https://productimages.nimbledeals.com/nimblebuy/acf5f71a7f5a3997d948f13072ce3dd3); background-repeat: no-repeat; display: block; width: 280px; height: 52px; margin: 10px 0; outline: none; border: none; background-size: 100%; outline: none; border: none;&quot;&gt; &lt;/a&gt; &lt;div style=&quot;background: #ffffff; padding: 5px; &quot;&gt; &lt;div style=&quot;width: 138px; padding-top: 7px; overflow: hidden; padding-left: 10px; font-family: Arial, Helvetica, sans-serif; font-size: 16px; color: #000000;text-overflow: ellipsis;height: 100px;line-height: 21px; float: right;&quot;&gt; $35 -- 2017 Pass for 2 to 100+ Wineries w/Tastings, Reg. $69 &lt;/div&gt; &lt;img src=&quot;https://s3.amazonaws.com/product-images.imshopping.com/nimblebuy/35-2017-pass-for-2-to-100-wineries-wtastings-reg-72-9722822-small_lv.jpg&quot; style=&quot;width: 126px; height: 92px; margin: 7px 0 10px 0; float: left;&quot; alt=&quot;$35 -- 2017 Pass for 2 to 100+ Wineries w/Tastings, Reg. $69&quot;&gt; &lt;a href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/35-2017-pass-for-2-to-100-wineries-wtastings-reg-72?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_3306692&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; target=&quot;_blank&quot; style=&quot;background: #aecb36; display: block; width: 124px; height: 39px; line-height: 40px; padding-left: 4px; font-family: Arial, Helvetica, sans-serif; font-size: 13px; color: white; text-decoration: none; border-radius: 4px; margin-bottom: 3px; text-align: center; clear: left;&quot;&gt;VIEW DEAL NOW&lt;/a&gt; &lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style=&quot;float:left;width:300px;height:250px;&quot;&gt;&lt;div style=&quot;background: #5d3861; padding: 5px; height: 100%; box-sizing: border-box; border: 3px solid #000;&quot;&gt; &lt;a target=&quot;_target&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/potomac-river-dinner-cruises-on-the-odyssey-save-44?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_3306642&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; style=&quot;background-image: url(https://productimages.nimbledeals.com/nimblebuy/acf5f71a7f5a3997d948f13072ce3dd3); background-repeat: no-repeat; display: block; width: 280px; height: 52px; margin: 10px 0; outline: none; border: none; background-size: 100%; outline: none; border: none;&quot;&gt; &lt;/a&gt; &lt;div style=&quot;background: #ffffff; padding: 5px; &quot;&gt; &lt;div style=&quot;width: 138px; padding-top: 7px; overflow: hidden; padding-left: 10px; font-family: Arial, Helvetica, sans-serif; font-size: 16px; color: #000000;text-overflow: ellipsis;height: 100px;line-height: 21px; float: right;&quot;&gt; Potomac River Dinner Cruises on the Odyssey, Save 40% &lt;/div&gt; &lt;img src=&quot;https://s3.amazonaws.com/product-images.imshopping.com/nimblebuy/potomac-river-dinner-cruises-on-the-odyssey-save-44-9722622-small_lv.jpg&quot; style=&quot;width: 126px; height: 92px; margin: 7px 0 10px 0; float: left;&quot; alt=&quot;Potomac River Dinner Cruises on the Odyssey, Save 40%&quot;&gt; &lt;a href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/potomac-river-dinner-cruises-on-the-odyssey-save-44?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_3306642&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; target=&quot;_blank&quot; style=&quot;background: #aecb36; display: block; width: 124px; height: 39px; line-height: 40px; padding-left: 4px; font-family: Arial, Helvetica, sans-serif; font-size: 13px; color: white; text-decoration: none; border-radius: 4px; margin-bottom: 3px; text-align: center; clear: left;&quot;&gt;VIEW DEAL NOW&lt;/a&gt; &lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style=&quot;float:left;width:300px;height:250px;&quot;&gt;&lt;div style=&quot;background: #5d3861; padding: 5px; height: 100%; box-sizing: border-box; border: 3px solid #000;&quot;&gt; &lt;a target=&quot;_target&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/38-up-lower-new-river-half-fullday-rafting-trips-3?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_3306632&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; style=&quot;background-image: url(https://productimages.nimbledeals.com/nimblebuy/acf5f71a7f5a3997d948f13072ce3dd3); background-repeat: no-repeat; display: block; width: 280px; height: 52px; margin: 10px 0; outline: none; border: none; background-size: 100%; outline: none; border: none;&quot;&gt; &lt;/a&gt; &lt;div style=&quot;background: #ffffff; padding: 5px; &quot;&gt; &lt;div style=&quot;width: 138px; padding-top: 7px; overflow: hidden; padding-left: 10px; font-family: Arial, Helvetica, sans-serif; font-size: 16px; color: #000000;text-overflow: ellipsis;height: 100px;line-height: 21px; float: right;&quot;&gt; $38 &amp; up -- Lower New River: Half- &amp; Full-Day Rafting Trips &lt;/div&gt; &lt;img src=&quot;https://s3.amazonaws.com/product-images.imshopping.com/nimblebuy/38-up-lower-new-river-half-fullday-rafting-trips-3-9722612-small_lv.jpg&quot; style=&quot;width: 126px; height: 92px; margin: 7px 0 10px 0; float: left;&quot; alt=&quot;$38 &amp; up -- Lower New River: Half- &amp; Full-Day Rafting Trips&quot;&gt; &lt;a href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/38-up-lower-new-river-half-fullday-rafting-trips-3?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_3306632&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; target=&quot;_blank&quot; style=&quot;background: #aecb36; display: block; width: 124px; height: 39px; line-height: 40px; padding-left: 4px; font-family: Arial, Helvetica, sans-serif; font-size: 13px; color: white; text-decoration: none; border-radius: 4px; margin-bottom: 3px; text-align: center; clear: left;&quot;&gt;VIEW DEAL NOW&lt;/a&gt; &lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style=&quot;float:left;width:300px;height:250px;&quot;&gt;&lt;div style=&quot;background: #5d3861; padding: 5px; height: 100%; box-sizing: border-box; border: 3px solid #000;&quot;&gt; &lt;a target=&quot;_target&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/29-pinstripes-50-credit-for-food-drink-14?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_3109272&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; style=&quot;background-image: url(https://productimages.nimbledeals.com/nimblebuy/acf5f71a7f5a3997d948f13072ce3dd3); background-repeat: no-repeat; display: block; width: 280px; height: 52px; margin: 10px 0; outline: none; border: none; background-size: 100%; outline: none; border: none;&quot;&gt; &lt;/a&gt; &lt;div style=&quot;background: #ffffff; padding: 5px; &quot;&gt; &lt;div style=&quot;width: 138px; padding-top: 7px; overflow: hidden; padding-left: 10px; font-family: Arial, Helvetica, sans-serif; font-size: 16px; color: #000000;text-overflow: ellipsis;height: 100px;line-height: 21px; float: right;&quot;&gt; $29 -- Pinstripes: $50 Credit for Food &amp; Drink &lt;/div&gt; &lt;img src=&quot;https://s3.amazonaws.com/product-images.imshopping.com/nimblebuy/29-pinstripes-50-credit-for-food-drink-14-9049272-small_lv.jpg&quot; style=&quot;width: 126px; height: 92px; margin: 7px 0 10px 0; float: left;&quot; alt=&quot;$29 -- Pinstripes: $50 Credit for Food &amp; Drink&quot;&gt; &lt;a href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/29-pinstripes-50-credit-for-food-drink-14?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_3109272&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; target=&quot;_blank&quot; style=&quot;background: #aecb36; display: block; width: 124px; height: 39px; line-height: 40px; padding-left: 4px; font-family: Arial, Helvetica, sans-serif; font-size: 13px; color: white; text-decoration: none; border-radius: 4px; margin-bottom: 3px; text-align: center; clear: left;&quot;&gt;VIEW DEAL NOW&lt;/a&gt; &lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;";		return UtilInit.htmlDecode(s);	}};var WidgetParams27281 = {	id: '27281',		rootUrl: 'http://us2widget.nimblecommerce.com',	imsAppUrl: 'http://www.imshopping.com',	widgetWidth: '300',	widgetHeight: '250',	widgetOffersSize: 26,	rotateTimeInterval: 5000, 	urlSuffixForIms: ''};var WidgetLocalizationProps27281 = {	day: 'd',	hour: 'h',	min: 'm',	sec: 's'};WidgetInit.install(WidgetHtml27281,  WidgetParams27281, WidgetLocalizationProps27281);