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:12600px; 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: 4px 6px 30px; border: 1px solid #4a9dd3;&quot;&gt; &lt;a target=&quot;_target&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/39-hill-country-barbecue-60-to-spend-on-food-drinks-4?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2445812&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; style=&quot;background: url(https://d2x2whwtikbhn8.cloudfront.net/nimblebuy/264568c4d28445c266921a01379a0d3) no-repeat; display: block; width: 285px; height: 51px; margin-bottom: 20px;&quot;&gt;&lt;/a&gt; &lt;div style=&quot;background: #ffffff; padding: 5px; &quot;&gt; &lt;div style=&quot;width: 138px; padding-top: 25px; 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; $39 -- Hill Country Barbecue: $60 to Spend on Food &amp; Drinks &lt;/div&gt; &lt;img src=&quot;https://s3.amazonaws.com/product-images.imshopping.com/nimblebuy/39-hill-country-barbecue-60-to-spend-on-food-drinks-4-5958122-small_lv.jpg&quot; style=&quot;width: 126px; height: 92px; margin-bottom: 20px; float: left;&quot; alt=&quot;$39 -- Hill Country Barbecue: $60 to Spend on Food &amp; Drinks&quot; /&gt; &lt;a target=&quot;_blank&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/39-hill-country-barbecue-60-to-spend-on-food-drinks-4?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2445812&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&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; 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: 4px 6px 30px; border: 1px solid #4a9dd3;&quot;&gt; &lt;a target=&quot;_target&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/22-night-of-comedy-at-shakespeare-theatre-co-?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2506842&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; style=&quot;background: url(https://d2x2whwtikbhn8.cloudfront.net/nimblebuy/264568c4d28445c266921a01379a0d3) no-repeat; display: block; width: 285px; height: 51px; margin-bottom: 20px;&quot;&gt;&lt;/a&gt; &lt;div style=&quot;background: #ffffff; padding: 5px; &quot;&gt; &lt;div style=&quot;width: 138px; padding-top: 25px; 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 -- &#39;The Critic&#39; &amp; &#39;The Real Inspector Hound&#39; Comedies &lt;/div&gt; &lt;img src=&quot;https://s3.amazonaws.com/product-images.imshopping.com/nimblebuy/22-night-of-comedy-at-shakespeare-theatre-co--6170442-small_lv.jpg&quot; style=&quot;width: 126px; height: 92px; margin-bottom: 20px; float: left;&quot; alt=&quot;$22 -- &#39;The Critic&#39; &amp; &#39;The Real Inspector Hound&#39; Comedies&quot; /&gt; &lt;a target=&quot;_blank&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/22-night-of-comedy-at-shakespeare-theatre-co-?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2506842&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&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; 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: 4px 6px 30px; border: 1px solid #4a9dd3;&quot;&gt; &lt;a target=&quot;_target&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/55-off-6-wines-curated-by-michelinstarred-chef-shipping-4?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2450452&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; style=&quot;background: url(https://d2x2whwtikbhn8.cloudfront.net/nimblebuy/264568c4d28445c266921a01379a0d3) no-repeat; display: block; width: 285px; height: 51px; margin-bottom: 20px;&quot;&gt;&lt;/a&gt; &lt;div style=&quot;background: #ffffff; padding: 5px; &quot;&gt; &lt;div style=&quot;width: 138px; padding-top: 25px; 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; 55% Off 6 Wines Curated by Michelin-Starred Chef + Shipping &lt;/div&gt; &lt;img src=&quot;https://s3.amazonaws.com/product-images.imshopping.com/nimblebuy/55-off-6-wines-curated-by-michelinstarred-chef-shipping-4-5978982-small_lv.jpg&quot; style=&quot;width: 126px; height: 92px; margin-bottom: 20px; float: left;&quot; alt=&quot;55% Off 6 Wines Curated by Michelin-Starred Chef + Shipping&quot; /&gt; &lt;a target=&quot;_blank&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/55-off-6-wines-curated-by-michelinstarred-chef-shipping-4?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2450452&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&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; 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: 4px 6px 30px; border: 1px solid #4a9dd3;&quot;&gt; &lt;a target=&quot;_target&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/55-toprated-french-dining-for-2-wcocktails-reg-110?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_1534762&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; style=&quot;background: url(https://d2x2whwtikbhn8.cloudfront.net/nimblebuy/264568c4d28445c266921a01379a0d3) no-repeat; display: block; width: 285px; height: 51px; margin-bottom: 20px;&quot;&gt;&lt;/a&gt; &lt;div style=&quot;background: #ffffff; padding: 5px; &quot;&gt; &lt;div style=&quot;width: 138px; padding-top: 25px; 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; $55 -- Top-Rated French Dining for 2 w/Cocktails, Reg. $107 &lt;/div&gt; &lt;img src=&quot;https://s3.amazonaws.com/product-images.imshopping.com/nimblebuy/55-toprated-french-dining-for-2-wcocktails-reg-110-4169042-small_lv.jpg&quot; style=&quot;width: 126px; height: 92px; margin-bottom: 20px; float: left;&quot; alt=&quot;$55 -- Top-Rated French Dining for 2 w/Cocktails, Reg. $107&quot; /&gt; &lt;a target=&quot;_blank&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/55-toprated-french-dining-for-2-wcocktails-reg-110?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_1534762&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&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; 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: 4px 6px 30px; border: 1px solid #4a9dd3;&quot;&gt; &lt;a target=&quot;_target&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/virginia-countryside-poplar-springs-inn-spa-day-saves-47?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2508082&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; style=&quot;background: url(https://d2x2whwtikbhn8.cloudfront.net/nimblebuy/264568c4d28445c266921a01379a0d3) no-repeat; display: block; width: 285px; height: 51px; margin-bottom: 20px;&quot;&gt;&lt;/a&gt; &lt;div style=&quot;background: #ffffff; padding: 5px; &quot;&gt; &lt;div style=&quot;width: 138px; padding-top: 25px; 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; Virginia Countryside: Poplar Springs Inn Spa Day, Saves 45% &lt;/div&gt; &lt;img src=&quot;https://s3.amazonaws.com/product-images.imshopping.com/nimblebuy/virginia-countryside-poplar-springs-inn-spa-day-saves-47-6174002-small_lv.jpg&quot; style=&quot;width: 126px; height: 92px; margin-bottom: 20px; float: left;&quot; alt=&quot;Virginia Countryside: Poplar Springs Inn Spa Day, Saves 45%&quot; /&gt; &lt;a target=&quot;_blank&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/virginia-countryside-poplar-springs-inn-spa-day-saves-47?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2508082&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&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; 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: 4px 6px 30px; border: 1px solid #4a9dd3;&quot;&gt; &lt;a target=&quot;_target&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/199-virginias-best-bb-incl-100-spa-credit-1?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2508252&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; style=&quot;background: url(https://d2x2whwtikbhn8.cloudfront.net/nimblebuy/264568c4d28445c266921a01379a0d3) no-repeat; display: block; width: 285px; height: 51px; margin-bottom: 20px;&quot;&gt;&lt;/a&gt; &lt;div style=&quot;background: #ffffff; padding: 5px; &quot;&gt; &lt;div style=&quot;width: 138px; padding-top: 25px; 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; $199 -- &#39;Virginia&#39;s Best B&amp;B&#39;: 1-Nt. Stay w/$100 Spa Credit &lt;/div&gt; &lt;img src=&quot;https://s3.amazonaws.com/product-images.imshopping.com/nimblebuy/199-virginias-best-bb-incl-100-spa-credit-1-6175102-small_lv.jpg&quot; style=&quot;width: 126px; height: 92px; margin-bottom: 20px; float: left;&quot; alt=&quot;$199 -- &#39;Virginia&#39;s Best B&amp;B&#39;: 1-Nt. Stay w/$100 Spa Credit&quot; /&gt; &lt;a target=&quot;_blank&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/199-virginias-best-bb-incl-100-spa-credit-1?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2508252&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&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; 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: 4px 6px 30px; border: 1px solid #4a9dd3;&quot;&gt; &lt;a target=&quot;_target&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/39-brunch-for-2-wbottoms-up-endless-drinks-saves-47?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2508072&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; style=&quot;background: url(https://d2x2whwtikbhn8.cloudfront.net/nimblebuy/264568c4d28445c266921a01379a0d3) no-repeat; display: block; width: 285px; height: 51px; margin-bottom: 20px;&quot;&gt;&lt;/a&gt; &lt;div style=&quot;background: #ffffff; padding: 5px; &quot;&gt; &lt;div style=&quot;width: 138px; padding-top: 25px; 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; $39 -- Brunch for 2 w/&#39;Bottoms Up&#39; Endless Drinks, Saves 45% &lt;/div&gt; &lt;img src=&quot;https://s3.amazonaws.com/product-images.imshopping.com/nimblebuy/39-brunch-for-2-wbottoms-up-endless-drinks-saves-47-6173932-small_lv.jpg&quot; style=&quot;width: 126px; height: 92px; margin-bottom: 20px; float: left;&quot; alt=&quot;$39 -- Brunch for 2 w/&#39;Bottoms Up&#39; Endless Drinks, Saves 45%&quot; /&gt; &lt;a target=&quot;_blank&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/39-brunch-for-2-wbottoms-up-endless-drinks-saves-47?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2508072&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&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; 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: 4px 6px 30px; border: 1px solid #4a9dd3;&quot;&gt; &lt;a target=&quot;_target&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/45-toprated-authentic-indian-dinner-wwine-reg-87?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2508062&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; style=&quot;background: url(https://d2x2whwtikbhn8.cloudfront.net/nimblebuy/264568c4d28445c266921a01379a0d3) no-repeat; display: block; width: 285px; height: 51px; margin-bottom: 20px;&quot;&gt;&lt;/a&gt; &lt;div style=&quot;background: #ffffff; padding: 5px; &quot;&gt; &lt;div style=&quot;width: 138px; padding-top: 25px; 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; $45 -- Top-Rated Authentic Indian Dinner w/Wine, Reg. $85 &lt;/div&gt; &lt;img src=&quot;https://s3.amazonaws.com/product-images.imshopping.com/nimblebuy/45-toprated-authentic-indian-dinner-wwine-reg-87-6173792-small_lv.jpg&quot; style=&quot;width: 126px; height: 92px; margin-bottom: 20px; float: left;&quot; alt=&quot;$45 -- Top-Rated Authentic Indian Dinner w/Wine, Reg. $85&quot; /&gt; &lt;a target=&quot;_blank&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/45-toprated-authentic-indian-dinner-wwine-reg-87?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2508062&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&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; 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: 4px 6px 30px; border: 1px solid #4a9dd3;&quot;&gt; &lt;a target=&quot;_target&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/35-station-4-brunch-for-2-wendless-cocktails-reg-63?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2508042&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; style=&quot;background: url(https://d2x2whwtikbhn8.cloudfront.net/nimblebuy/264568c4d28445c266921a01379a0d3) no-repeat; display: block; width: 285px; height: 51px; margin-bottom: 20px;&quot;&gt;&lt;/a&gt; &lt;div style=&quot;background: #ffffff; padding: 5px; &quot;&gt; &lt;div style=&quot;width: 138px; padding-top: 25px; 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 -- Station 4: Brunch for 2 w/Endless Cocktails, Reg. $60 &lt;/div&gt; &lt;img src=&quot;https://s3.amazonaws.com/product-images.imshopping.com/nimblebuy/35-station-4-brunch-for-2-wendless-cocktails-reg-63-6173722-small_lv.jpg&quot; style=&quot;width: 126px; height: 92px; margin-bottom: 20px; float: left;&quot; alt=&quot;$35 -- Station 4: Brunch for 2 w/Endless Cocktails, Reg. $60&quot; /&gt; &lt;a target=&quot;_blank&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/35-station-4-brunch-for-2-wendless-cocktails-reg-63?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2508042&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&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; 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: 4px 6px 30px; border: 1px solid #4a9dd3;&quot;&gt; &lt;a target=&quot;_target&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/top-romantic-inn-in-the-nation-2-nights-100-in-extras-2?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2461742&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; style=&quot;background: url(https://d2x2whwtikbhn8.cloudfront.net/nimblebuy/264568c4d28445c266921a01379a0d3) no-repeat; display: block; width: 285px; height: 51px; margin-bottom: 20px;&quot;&gt;&lt;/a&gt; &lt;div style=&quot;background: #ffffff; padding: 5px; &quot;&gt; &lt;div style=&quot;width: 138px; padding-top: 25px; 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; &#39;Top Romantic Inn in the Nation&#39;: 2 Nights &amp; $100 in Extras &lt;/div&gt; &lt;img src=&quot;https://s3.amazonaws.com/product-images.imshopping.com/nimblebuy/top-romantic-inn-in-the-nation-2-nights-100-in-extras-2-6025652-small_lv.jpg&quot; style=&quot;width: 126px; height: 92px; margin-bottom: 20px; float: left;&quot; alt=&quot;&#39;Top Romantic Inn in the Nation&#39;: 2 Nights &amp; $100 in Extras&quot; /&gt; &lt;a target=&quot;_blank&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/top-romantic-inn-in-the-nation-2-nights-100-in-extras-2?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2461742&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&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; 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: 4px 6px 30px; border: 1px solid #4a9dd3;&quot;&gt; &lt;a target=&quot;_target&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/115-four-seasons-georgetown-massage-wbubbly-reg-172?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2433442&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; style=&quot;background: url(https://d2x2whwtikbhn8.cloudfront.net/nimblebuy/264568c4d28445c266921a01379a0d3) no-repeat; display: block; width: 285px; height: 51px; margin-bottom: 20px;&quot;&gt;&lt;/a&gt; &lt;div style=&quot;background: #ffffff; padding: 5px; &quot;&gt; &lt;div style=&quot;width: 138px; padding-top: 25px; 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; $115 -- Four Seasons Georgetown: Massage w/Bubbly, Reg. $170 &lt;/div&gt; &lt;img src=&quot;https://s3.amazonaws.com/product-images.imshopping.com/nimblebuy/115-four-seasons-georgetown-massage-wbubbly-reg-172-5919092-small_lv.jpg&quot; style=&quot;width: 126px; height: 92px; margin-bottom: 20px; float: left;&quot; alt=&quot;$115 -- Four Seasons Georgetown: Massage w/Bubbly, Reg. $170&quot; /&gt; &lt;a target=&quot;_blank&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/115-four-seasons-georgetown-massage-wbubbly-reg-172?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2433442&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&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; 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: 4px 6px 30px; border: 1px solid #4a9dd3;&quot;&gt; &lt;a target=&quot;_target&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/45-memberfavorite-brunch-for-2-wbubbly-reg-92?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_1532802&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; style=&quot;background: url(https://d2x2whwtikbhn8.cloudfront.net/nimblebuy/264568c4d28445c266921a01379a0d3) no-repeat; display: block; width: 285px; height: 51px; margin-bottom: 20px;&quot;&gt;&lt;/a&gt; &lt;div style=&quot;background: #ffffff; padding: 5px; &quot;&gt; &lt;div style=&quot;width: 138px; padding-top: 25px; 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; $45 -- Roofers Union: Brunch for 2 w/Bubbly, Reg. $90 &lt;/div&gt; &lt;img src=&quot;https://s3.amazonaws.com/product-images.imshopping.com/nimblebuy/45-memberfavorite-brunch-for-2-wbubbly-reg-92-4159702-small_lv.jpg&quot; style=&quot;width: 126px; height: 92px; margin-bottom: 20px; float: left;&quot; alt=&quot;$45 -- Roofers Union: Brunch for 2 w/Bubbly, Reg. $90&quot; /&gt; &lt;a target=&quot;_blank&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/45-memberfavorite-brunch-for-2-wbubbly-reg-92?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_1532802&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&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; 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: 4px 6px 30px; border: 1px solid #4a9dd3;&quot;&gt; &lt;a target=&quot;_target&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/45-ankara-3course-turkish-dinner-for-2-reg-102?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2426572&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; style=&quot;background: url(https://d2x2whwtikbhn8.cloudfront.net/nimblebuy/264568c4d28445c266921a01379a0d3) no-repeat; display: block; width: 285px; height: 51px; margin-bottom: 20px;&quot;&gt;&lt;/a&gt; &lt;div style=&quot;background: #ffffff; padding: 5px; &quot;&gt; &lt;div style=&quot;width: 138px; padding-top: 25px; 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; $45 -- Ankara: 3-Course Turkish Dinner for 2, Reg. $100 &lt;/div&gt; &lt;img src=&quot;https://s3.amazonaws.com/product-images.imshopping.com/nimblebuy/45-ankara-3course-turkish-dinner-for-2-reg-102-5873792-small_lv.jpg&quot; style=&quot;width: 126px; height: 92px; margin-bottom: 20px; float: left;&quot; alt=&quot;$45 -- Ankara: 3-Course Turkish Dinner for 2, Reg. $100&quot; /&gt; &lt;a target=&quot;_blank&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/45-ankara-3course-turkish-dinner-for-2-reg-102?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2426572&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&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; 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: 4px 6px 30px; border: 1px solid #4a9dd3;&quot;&gt; &lt;a target=&quot;_target&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/30-editors-pick-bourbon-50-off-dinner-drinks-for-5?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_1461642&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; style=&quot;background: url(https://d2x2whwtikbhn8.cloudfront.net/nimblebuy/264568c4d28445c266921a01379a0d3) no-repeat; display: block; width: 285px; height: 51px; margin-bottom: 20px;&quot;&gt;&lt;/a&gt; &lt;div style=&quot;background: #ffffff; padding: 5px; &quot;&gt; &lt;div style=&quot;width: 138px; padding-top: 25px; 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; $30 -- Editors&#39; Pick Bourbon: 50% Off Dinner &amp; Drinks for 2 &lt;/div&gt; &lt;img src=&quot;https://s3.amazonaws.com/product-images.imshopping.com/nimblebuy/30-editors-pick-bourbon-50-off-dinner-drinks-for-5-3936432-small_lv.jpg&quot; style=&quot;width: 126px; height: 92px; margin-bottom: 20px; float: left;&quot; alt=&quot;$30 -- Editors&#39; Pick Bourbon: 50% Off Dinner &amp; Drinks for 2&quot; /&gt; &lt;a target=&quot;_blank&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/30-editors-pick-bourbon-50-off-dinner-drinks-for-5?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_1461642&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&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; 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: 4px 6px 30px; border: 1px solid #4a9dd3;&quot;&gt; &lt;a target=&quot;_target&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/155-four-seasons-spa-day-wmassage-bubbly-reg-277?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2447112&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; style=&quot;background: url(https://d2x2whwtikbhn8.cloudfront.net/nimblebuy/264568c4d28445c266921a01379a0d3) no-repeat; display: block; width: 285px; height: 51px; margin-bottom: 20px;&quot;&gt;&lt;/a&gt; &lt;div style=&quot;background: #ffffff; padding: 5px; &quot;&gt; &lt;div style=&quot;width: 138px; padding-top: 25px; 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; $155 -- Four Seasons Baltimore Spa Day w/Massage &amp; Bubbly, Reg. $275 &lt;/div&gt; &lt;img src=&quot;https://s3.amazonaws.com/product-images.imshopping.com/nimblebuy/155-four-seasons-spa-day-wmassage-bubbly-reg-277-5965062-small_lv.jpg&quot; style=&quot;width: 126px; height: 92px; margin-bottom: 20px; float: left;&quot; alt=&quot;$155 -- Four Seasons Baltimore Spa Day w/Massage &amp; Bubbly, Reg. $275&quot; /&gt; &lt;a target=&quot;_blank&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/155-four-seasons-spa-day-wmassage-bubbly-reg-277?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2447112&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&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; 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: 4px 6px 30px; border: 1px solid #4a9dd3;&quot;&gt; &lt;a target=&quot;_target&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/13-canal-park-ice-skating-for-2-wrentals-reg-28?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_1480192&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; style=&quot;background: url(https://d2x2whwtikbhn8.cloudfront.net/nimblebuy/264568c4d28445c266921a01379a0d3) no-repeat; display: block; width: 285px; height: 51px; margin-bottom: 20px;&quot;&gt;&lt;/a&gt; &lt;div style=&quot;background: #ffffff; padding: 5px; &quot;&gt; &lt;div style=&quot;width: 138px; padding-top: 25px; 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; $13 -- Canal Park: Ice Skating for 2 w/Rentals, Reg. $26 &lt;/div&gt; &lt;img src=&quot;https://s3.amazonaws.com/product-images.imshopping.com/nimblebuy/13-canal-park-ice-skating-for-2-wrentals-reg-28-4030202-small_lv.jpg&quot; style=&quot;width: 126px; height: 92px; margin-bottom: 20px; float: left;&quot; alt=&quot;$13 -- Canal Park: Ice Skating for 2 w/Rentals, Reg. $26&quot; /&gt; &lt;a target=&quot;_blank&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/13-canal-park-ice-skating-for-2-wrentals-reg-28?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_1480192&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&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; 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: 4px 6px 30px; border: 1px solid #4a9dd3;&quot;&gt; &lt;a target=&quot;_target&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/36-awardwinning-winery-tour-picnic-for-2-reg-88?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_1530512&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; style=&quot;background: url(https://d2x2whwtikbhn8.cloudfront.net/nimblebuy/264568c4d28445c266921a01379a0d3) no-repeat; display: block; width: 285px; height: 51px; margin-bottom: 20px;&quot;&gt;&lt;/a&gt; &lt;div style=&quot;background: #ffffff; padding: 5px; &quot;&gt; &lt;div style=&quot;width: 138px; padding-top: 25px; 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; $36 -- Award-Winning Winery: Tour &amp; Picnic for 2, Reg. $85 &lt;/div&gt; &lt;img src=&quot;https://s3.amazonaws.com/product-images.imshopping.com/nimblebuy/36-awardwinning-winery-tour-picnic-for-2-reg-88-4146112-small_lv.jpg&quot; style=&quot;width: 126px; height: 92px; margin-bottom: 20px; float: left;&quot; alt=&quot;$36 -- Award-Winning Winery: Tour &amp; Picnic for 2, Reg. $85&quot; /&gt; &lt;a target=&quot;_blank&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/36-awardwinning-winery-tour-picnic-for-2-reg-88?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_1530512&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&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; 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: 4px 6px 30px; border: 1px solid #4a9dd3;&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?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2445802&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; style=&quot;background: url(https://d2x2whwtikbhn8.cloudfront.net/nimblebuy/264568c4d28445c266921a01379a0d3) no-repeat; display: block; width: 285px; height: 51px; margin-bottom: 20px;&quot;&gt;&lt;/a&gt; &lt;div style=&quot;background: #ffffff; padding: 5px; &quot;&gt; &lt;div style=&quot;width: 138px; padding-top: 25px; 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-5957832-small_lv.jpg&quot; style=&quot;width: 126px; height: 92px; margin-bottom: 20px; float: left;&quot; alt=&quot;$139 -- Foodie Benefit Gala w/60+ Top D.C. Chefs, 45% Off&quot; /&gt; &lt;a target=&quot;_blank&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/139-foodie-benefit-gala-w60-top-dc-chefs-45-off?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2445802&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&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; 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: 4px 6px 30px; border: 1px solid #4a9dd3;&quot;&gt; &lt;a target=&quot;_target&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/39-blue-ridge-shadows-unlimited-golf-for-1-reg-87?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2477832&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; style=&quot;background: url(https://d2x2whwtikbhn8.cloudfront.net/nimblebuy/264568c4d28445c266921a01379a0d3) no-repeat; display: block; width: 285px; height: 51px; margin-bottom: 20px;&quot;&gt;&lt;/a&gt; &lt;div style=&quot;background: #ffffff; padding: 5px; &quot;&gt; &lt;div style=&quot;width: 138px; padding-top: 25px; 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; $39 -- Blue Ridge Shadows: Unlimited Golf for 1, Reg. $85 &lt;/div&gt; &lt;img src=&quot;https://s3.amazonaws.com/product-images.imshopping.com/nimblebuy/39-blue-ridge-shadows-unlimited-golf-for-1-reg-87-6077782-small_lv.jpg&quot; style=&quot;width: 126px; height: 92px; margin-bottom: 20px; float: left;&quot; alt=&quot;$39 -- Blue Ridge Shadows: Unlimited Golf for 1, Reg. $85&quot; /&gt; &lt;a target=&quot;_blank&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/39-blue-ridge-shadows-unlimited-golf-for-1-reg-87?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2477832&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&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; 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: 4px 6px 30px; border: 1px solid #4a9dd3;&quot;&gt; &lt;a target=&quot;_target&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/79-choice-of-90minute-thai-massage-package-reg-152?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2477812&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; style=&quot;background: url(https://d2x2whwtikbhn8.cloudfront.net/nimblebuy/264568c4d28445c266921a01379a0d3) no-repeat; display: block; width: 285px; height: 51px; margin-bottom: 20px;&quot;&gt;&lt;/a&gt; &lt;div style=&quot;background: #ffffff; padding: 5px; &quot;&gt; &lt;div style=&quot;width: 138px; padding-top: 25px; 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; $79 -- Choice of 90-Minute Thai Massage Package, Reg. $150 &lt;/div&gt; &lt;img src=&quot;https://s3.amazonaws.com/product-images.imshopping.com/nimblebuy/79-choice-of-90minute-thai-massage-package-reg-152-6077682-small_lv.jpg&quot; style=&quot;width: 126px; height: 92px; margin-bottom: 20px; float: left;&quot; alt=&quot;$79 -- Choice of 90-Minute Thai Massage Package, Reg. $150&quot; /&gt; &lt;a target=&quot;_blank&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/79-choice-of-90minute-thai-massage-package-reg-152?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2477812&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&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; 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: 4px 6px 30px; border: 1px solid #4a9dd3;&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-155?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2461752&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; style=&quot;background: url(https://d2x2whwtikbhn8.cloudfront.net/nimblebuy/264568c4d28445c266921a01379a0d3) no-repeat; display: block; width: 285px; height: 51px; margin-bottom: 20px;&quot;&gt;&lt;/a&gt; &lt;div style=&quot;background: #ffffff; padding: 5px; &quot;&gt; &lt;div style=&quot;width: 138px; padding-top: 25px; 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. $153 &lt;/div&gt; &lt;img src=&quot;https://s3.amazonaws.com/product-images.imshopping.com/nimblebuy/99-hyatt-chesapeake-bay-spa-day-wbubbly-reg-155-6025832-small_lv.jpg&quot; style=&quot;width: 126px; height: 92px; margin-bottom: 20px; float: left;&quot; alt=&quot;$99 -- Hyatt Chesapeake Bay Spa Day w/Bubbly, Reg. $153&quot; /&gt; &lt;a target=&quot;_blank&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/99-hyatt-chesapeake-bay-spa-day-wbubbly-reg-155?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2461752&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&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; 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: 4px 6px 30px; border: 1px solid #4a9dd3;&quot;&gt; &lt;a target=&quot;_target&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/99-taberna-del-alabardero-dinner-for-2-wbottle-of-cava-10?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_1480162&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; style=&quot;background: url(https://d2x2whwtikbhn8.cloudfront.net/nimblebuy/264568c4d28445c266921a01379a0d3) no-repeat; display: block; width: 285px; height: 51px; margin-bottom: 20px;&quot;&gt;&lt;/a&gt; &lt;div style=&quot;background: #ffffff; padding: 5px; &quot;&gt; &lt;div style=&quot;width: 138px; padding-top: 25px; 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 -- Taberna del Alabardero: Dinner for 2 w/Bottle of Cava &lt;/div&gt; &lt;img src=&quot;https://s3.amazonaws.com/product-images.imshopping.com/nimblebuy/99-taberna-del-alabardero-dinner-for-2-wbottle-of-cava-10-4030122-small_lv.jpg&quot; style=&quot;width: 126px; height: 92px; margin-bottom: 20px; float: left;&quot; alt=&quot;$99 -- Taberna del Alabardero: Dinner for 2 w/Bottle of Cava&quot; /&gt; &lt;a target=&quot;_blank&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/99-taberna-del-alabardero-dinner-for-2-wbottle-of-cava-10?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_1480162&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&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; 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: 4px 6px 30px; border: 1px solid #4a9dd3;&quot;&gt; &lt;a target=&quot;_target&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/15-georgetown-ice-skating-wrental-for-2-reg-32?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2051782&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; style=&quot;background: url(https://d2x2whwtikbhn8.cloudfront.net/nimblebuy/264568c4d28445c266921a01379a0d3) no-repeat; display: block; width: 285px; height: 51px; margin-bottom: 20px;&quot;&gt;&lt;/a&gt; &lt;div style=&quot;background: #ffffff; padding: 5px; &quot;&gt; &lt;div style=&quot;width: 138px; padding-top: 25px; 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; $15 -- Georgetown: Ice Skating w/Rental for 2, Reg. $30 &lt;/div&gt; &lt;img src=&quot;https://s3.amazonaws.com/product-images.imshopping.com/nimblebuy/15-georgetown-ice-skating-wrental-for-2-reg-32-4735012-small_lv.jpg&quot; style=&quot;width: 126px; height: 92px; margin-bottom: 20px; float: left;&quot; alt=&quot;$15 -- Georgetown: Ice Skating w/Rental for 2, Reg. $30&quot; /&gt; &lt;a target=&quot;_blank&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/15-georgetown-ice-skating-wrental-for-2-reg-32?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2051782&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&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; 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: 4px 6px 30px; border: 1px solid #4a9dd3;&quot;&gt; &lt;a target=&quot;_target&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/national-press-club-half-off-dinner-with-bottle-of-wine-14?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2450472&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; style=&quot;background: url(https://d2x2whwtikbhn8.cloudfront.net/nimblebuy/264568c4d28445c266921a01379a0d3) no-repeat; display: block; width: 285px; height: 51px; margin-bottom: 20px;&quot;&gt;&lt;/a&gt; &lt;div style=&quot;background: #ffffff; padding: 5px; &quot;&gt; &lt;div style=&quot;width: 138px; padding-top: 25px; 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; National Press Club: Half Off Dinner with Bottle of Wine &lt;/div&gt; &lt;img src=&quot;https://s3.amazonaws.com/product-images.imshopping.com/nimblebuy/national-press-club-half-off-dinner-with-bottle-of-wine-14-5979202-small_lv.jpg&quot; style=&quot;width: 126px; height: 92px; margin-bottom: 20px; float: left;&quot; alt=&quot;National Press Club: Half Off Dinner with Bottle of Wine&quot; /&gt; &lt;a target=&quot;_blank&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/national-press-club-half-off-dinner-with-bottle-of-wine-14?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2450472&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&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; 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: 4px 6px 30px; border: 1px solid #4a9dd3;&quot;&gt; &lt;a target=&quot;_target&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/129-2016-unlimited-kayaking-paddleboarding-reg-201?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2461732&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; style=&quot;background: url(https://d2x2whwtikbhn8.cloudfront.net/nimblebuy/264568c4d28445c266921a01379a0d3) no-repeat; display: block; width: 285px; height: 51px; margin-bottom: 20px;&quot;&gt;&lt;/a&gt; &lt;div style=&quot;background: #ffffff; padding: 5px; &quot;&gt; &lt;div style=&quot;width: 138px; padding-top: 25px; 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; $129 -- 2016: Unlimited Kayaking &amp; Paddleboarding, Reg. $199 &lt;/div&gt; &lt;img src=&quot;https://s3.amazonaws.com/product-images.imshopping.com/nimblebuy/129-2016-unlimited-kayaking-paddleboarding-reg-201-6025612-small_lv.jpg&quot; style=&quot;width: 126px; height: 92px; margin-bottom: 20px; float: left;&quot; alt=&quot;$129 -- 2016: Unlimited Kayaking &amp; Paddleboarding, Reg. $199&quot; /&gt; &lt;a target=&quot;_blank&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/129-2016-unlimited-kayaking-paddleboarding-reg-201?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2461732&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&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; 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: 4px 6px 30px; border: 1px solid #4a9dd3;&quot;&gt; &lt;a target=&quot;_target&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/10-potomac-river-20-kayak-or-paddleboard-credit-2?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2461722&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; style=&quot;background: url(https://d2x2whwtikbhn8.cloudfront.net/nimblebuy/264568c4d28445c266921a01379a0d3) no-repeat; display: block; width: 285px; height: 51px; margin-bottom: 20px;&quot;&gt;&lt;/a&gt; &lt;div style=&quot;background: #ffffff; padding: 5px; &quot;&gt; &lt;div style=&quot;width: 138px; padding-top: 25px; 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; Presale: $10 -- Potomac River Kayak or Paddleboard Credit &lt;/div&gt; &lt;img src=&quot;https://s3.amazonaws.com/product-images.imshopping.com/nimblebuy/10-potomac-river-20-kayak-or-paddleboard-credit-2-6025552-small_lv.jpg&quot; style=&quot;width: 126px; height: 92px; margin-bottom: 20px; float: left;&quot; alt=&quot;Presale: $10 -- Potomac River Kayak or Paddleboard Credit&quot; /&gt; &lt;a target=&quot;_blank&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/10-potomac-river-20-kayak-or-paddleboard-credit-2?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2461722&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&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; 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: 4px 6px 30px; border: 1px solid #4a9dd3;&quot;&gt; &lt;a target=&quot;_target&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/35-2016-pass-for-2-to-90-wineries-wtastings-50-off-2?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2445762&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; style=&quot;background: url(https://d2x2whwtikbhn8.cloudfront.net/nimblebuy/264568c4d28445c266921a01379a0d3) no-repeat; display: block; width: 285px; height: 51px; margin-bottom: 20px;&quot;&gt;&lt;/a&gt; &lt;div style=&quot;background: #ffffff; padding: 5px; &quot;&gt; &lt;div style=&quot;width: 138px; padding-top: 25px; 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 -- 2016 Pass for 2 to 90+ Wineries w/Tastings, 50% Off &lt;/div&gt; &lt;img src=&quot;https://s3.amazonaws.com/product-images.imshopping.com/nimblebuy/35-2016-pass-for-2-to-90-wineries-wtastings-50-off-2-5957632-small_lv.jpg&quot; style=&quot;width: 126px; height: 92px; margin-bottom: 20px; float: left;&quot; alt=&quot;$35 -- 2016 Pass for 2 to 90+ Wineries w/Tastings, 50% Off&quot; /&gt; &lt;a target=&quot;_blank&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/35-2016-pass-for-2-to-90-wineries-wtastings-50-off-2?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2445762&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&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; 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: 4px 6px 30px; border: 1px solid #4a9dd3;&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-34?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_1480222&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; style=&quot;background: url(https://d2x2whwtikbhn8.cloudfront.net/nimblebuy/264568c4d28445c266921a01379a0d3) no-repeat; display: block; width: 285px; height: 51px; margin-bottom: 20px;&quot;&gt;&lt;/a&gt; &lt;div style=&quot;background: #ffffff; padding: 5px; &quot;&gt; &lt;div style=&quot;width: 138px; padding-top: 25px; 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-34-4030242-small_lv.jpg&quot; style=&quot;width: 126px; height: 92px; margin-bottom: 20px; float: left;&quot; alt=&quot;$16 -- Tysons Corner: Ice Skating w/Rental for 2, Reg. $32&quot; /&gt; &lt;a target=&quot;_blank&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/16-tysons-corner-ice-skating-wrental-for-2-reg-34?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_1480222&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&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; 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: 4px 6px 30px; border: 1px solid #4a9dd3;&quot;&gt; &lt;a target=&quot;_target&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/bobby-vans-40-off-filet-lobster-dinner-with-wine--3?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_1484172&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; style=&quot;background: url(https://d2x2whwtikbhn8.cloudfront.net/nimblebuy/264568c4d28445c266921a01379a0d3) no-repeat; display: block; width: 285px; height: 51px; margin-bottom: 20px;&quot;&gt;&lt;/a&gt; &lt;div style=&quot;background: #ffffff; padding: 5px; &quot;&gt; &lt;div style=&quot;width: 138px; padding-top: 25px; 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; Bobby Van&#39;s: 40% Off Filet &amp; Lobster Dinner with Wine &lt;/div&gt; &lt;img src=&quot;https://s3.amazonaws.com/product-images.imshopping.com/nimblebuy/bobby-vans-40-off-filet-lobster-dinner-with-wine--3-4050432-small_lv.jpg&quot; style=&quot;width: 126px; height: 92px; margin-bottom: 20px; float: left;&quot; alt=&quot;Bobby Van&#39;s: 40% Off Filet &amp; Lobster Dinner with Wine&quot; /&gt; &lt;a target=&quot;_blank&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/bobby-vans-40-off-filet-lobster-dinner-with-wine--3?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_1484172&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&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; 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: 4px 6px 30px; border: 1px solid #4a9dd3;&quot;&gt; &lt;a target=&quot;_target&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/39-musthit-bottomless-mimosa-brunch-for-2-reg-74?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_1540002&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; style=&quot;background: url(https://d2x2whwtikbhn8.cloudfront.net/nimblebuy/264568c4d28445c266921a01379a0d3) no-repeat; display: block; width: 285px; height: 51px; margin-bottom: 20px;&quot;&gt;&lt;/a&gt; &lt;div style=&quot;background: #ffffff; padding: 5px; &quot;&gt; &lt;div style=&quot;width: 138px; padding-top: 25px; 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; $39 -- &#39;Must-Hit&#39; Bottomless Mimosa Brunch for 2, Reg. $72 &lt;/div&gt; &lt;img src=&quot;https://s3.amazonaws.com/product-images.imshopping.com/nimblebuy/39-musthit-bottomless-mimosa-brunch-for-2-reg-74-4194072-small_lv.jpg&quot; style=&quot;width: 126px; height: 92px; margin-bottom: 20px; float: left;&quot; alt=&quot;$39 -- &#39;Must-Hit&#39; Bottomless Mimosa Brunch for 2, Reg. $72&quot; /&gt; &lt;a target=&quot;_blank&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/39-musthit-bottomless-mimosa-brunch-for-2-reg-74?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_1540002&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&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; 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: 4px 6px 30px; border: 1px solid #4a9dd3;&quot;&gt; &lt;a target=&quot;_target&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/15-secret-mission-at-international-spy-museum-reg-26?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2445832&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; style=&quot;background: url(https://d2x2whwtikbhn8.cloudfront.net/nimblebuy/264568c4d28445c266921a01379a0d3) no-repeat; display: block; width: 285px; height: 51px; margin-bottom: 20px;&quot;&gt;&lt;/a&gt; &lt;div style=&quot;background: #ffffff; padding: 5px; &quot;&gt; &lt;div style=&quot;width: 138px; padding-top: 25px; 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; $15 -- Secret Mission at International Spy Museum, Reg. $23 &lt;/div&gt; &lt;img src=&quot;https://s3.amazonaws.com/product-images.imshopping.com/nimblebuy/15-secret-mission-at-international-spy-museum-reg-26-5958262-small_lv.jpg&quot; style=&quot;width: 126px; height: 92px; margin-bottom: 20px; float: left;&quot; alt=&quot;$15 -- Secret Mission at International Spy Museum, Reg. $23&quot; /&gt; &lt;a target=&quot;_blank&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/15-secret-mission-at-international-spy-museum-reg-26?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2445832&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&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; 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: 4px 6px 30px; border: 1px solid #4a9dd3;&quot;&gt; &lt;a target=&quot;_target&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/135-shenandoah-valley-hot-air-balloon-ride-for-3?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2445772&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; style=&quot;background: url(https://d2x2whwtikbhn8.cloudfront.net/nimblebuy/264568c4d28445c266921a01379a0d3) no-repeat; display: block; width: 285px; height: 51px; margin-bottom: 20px;&quot;&gt;&lt;/a&gt; &lt;div style=&quot;background: #ffffff; padding: 5px; &quot;&gt; &lt;div style=&quot;width: 138px; padding-top: 25px; 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; $135 -- Shenandoah Valley Hot Air Balloon Ride for 1 &lt;/div&gt; &lt;img src=&quot;https://s3.amazonaws.com/product-images.imshopping.com/nimblebuy/135-shenandoah-valley-hot-air-balloon-ride-for-3-5957642-small_lv.jpg&quot; style=&quot;width: 126px; height: 92px; margin-bottom: 20px; float: left;&quot; alt=&quot;$135 -- Shenandoah Valley Hot Air Balloon Ride for 1&quot; /&gt; &lt;a target=&quot;_blank&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/135-shenandoah-valley-hot-air-balloon-ride-for-3?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2445772&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&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; 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: 4px 6px 30px; border: 1px solid #4a9dd3;&quot;&gt; &lt;a target=&quot;_target&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/15-up-president-lincolns-cottage-tour-for-2-or-6?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2043552&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; style=&quot;background: url(https://d2x2whwtikbhn8.cloudfront.net/nimblebuy/264568c4d28445c266921a01379a0d3) no-repeat; display: block; width: 285px; height: 51px; margin-bottom: 20px;&quot;&gt;&lt;/a&gt; &lt;div style=&quot;background: #ffffff; padding: 5px; &quot;&gt; &lt;div style=&quot;width: 138px; padding-top: 25px; 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; $15 &amp; up -- President Lincoln&#39;s Cottage Tour for 2 or 4 &lt;/div&gt; &lt;img src=&quot;https://s3.amazonaws.com/product-images.imshopping.com/nimblebuy/15-up-president-lincolns-cottage-tour-for-2-or-6-4708722-small_lv.jpg&quot; style=&quot;width: 126px; height: 92px; margin-bottom: 20px; float: left;&quot; alt=&quot;$15 &amp; up -- President Lincoln&#39;s Cottage Tour for 2 or 4&quot; /&gt; &lt;a target=&quot;_blank&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/15-up-president-lincolns-cottage-tour-for-2-or-6?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2043552&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&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; 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: 4px 6px 30px; border: 1px solid #4a9dd3;&quot;&gt; &lt;a target=&quot;_target&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/159-tandem-skydive-120-mph-free-fall-reg-332?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2433452&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; style=&quot;background: url(https://d2x2whwtikbhn8.cloudfront.net/nimblebuy/264568c4d28445c266921a01379a0d3) no-repeat; display: block; width: 285px; height: 51px; margin-bottom: 20px;&quot;&gt;&lt;/a&gt; &lt;div style=&quot;background: #ffffff; padding: 5px; &quot;&gt; &lt;div style=&quot;width: 138px; padding-top: 25px; 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; $159 -- Tandem Skydive: 120 MPH Free Fall, Reg. $329 &lt;/div&gt; &lt;img src=&quot;https://s3.amazonaws.com/product-images.imshopping.com/nimblebuy/159-tandem-skydive-120-mph-free-fall-reg-332-5919102-small_lv.jpg&quot; style=&quot;width: 126px; height: 92px; margin-bottom: 20px; float: left;&quot; alt=&quot;$159 -- Tandem Skydive: 120 MPH Free Fall, Reg. $329&quot; /&gt; &lt;a target=&quot;_blank&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/159-tandem-skydive-120-mph-free-fall-reg-332?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2433452&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&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; 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: 4px 6px 30px; border: 1px solid #4a9dd3;&quot;&gt; &lt;a target=&quot;_target&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/29-craft-cocktails-or-whiskey-flights-for-2-reg-74?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2043542&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; style=&quot;background: url(https://d2x2whwtikbhn8.cloudfront.net/nimblebuy/264568c4d28445c266921a01379a0d3) no-repeat; display: block; width: 285px; height: 51px; margin-bottom: 20px;&quot;&gt;&lt;/a&gt; &lt;div style=&quot;background: #ffffff; padding: 5px; &quot;&gt; &lt;div style=&quot;width: 138px; padding-top: 25px; 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 -- Craft Cocktails or Whiskey Flights for 2, Reg. $72 &lt;/div&gt; &lt;img src=&quot;https://s3.amazonaws.com/product-images.imshopping.com/nimblebuy/29-craft-cocktails-or-whiskey-flights-for-2-reg-74-4708602-small_lv.jpg&quot; style=&quot;width: 126px; height: 92px; margin-bottom: 20px; float: left;&quot; alt=&quot;$29 -- Craft Cocktails or Whiskey Flights for 2, Reg. $72&quot; /&gt; &lt;a target=&quot;_blank&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/29-craft-cocktails-or-whiskey-flights-for-2-reg-74?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2043542&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&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; 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: 4px 6px 30px; border: 1px solid #4a9dd3;&quot;&gt; &lt;a target=&quot;_target&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/89-lansdowne-resort-50minute-massage-or-facial-40-off-5?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2046302&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; style=&quot;background: url(https://d2x2whwtikbhn8.cloudfront.net/nimblebuy/264568c4d28445c266921a01379a0d3) no-repeat; display: block; width: 285px; height: 51px; margin-bottom: 20px;&quot;&gt;&lt;/a&gt; &lt;div style=&quot;background: #ffffff; padding: 5px; &quot;&gt; &lt;div style=&quot;width: 138px; padding-top: 25px; 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; $89 -- Lansdowne Resort 50-Minute Massage or Facial, 40% Off &lt;/div&gt; &lt;img src=&quot;https://s3.amazonaws.com/product-images.imshopping.com/nimblebuy/89-lansdowne-resort-50minute-massage-or-facial-40-off-5-4720392-small_lv.jpg&quot; style=&quot;width: 126px; height: 92px; margin-bottom: 20px; float: left;&quot; alt=&quot;$89 -- Lansdowne Resort 50-Minute Massage or Facial, 40% Off&quot; /&gt; &lt;a target=&quot;_blank&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/89-lansdowne-resort-50minute-massage-or-facial-40-off-5?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2046302&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&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; 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: 4px 6px 30px; border: 1px solid #4a9dd3;&quot;&gt; &lt;a target=&quot;_target&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/49-h-street-farmtotable-dinner-drinks-for-2-50-off-2?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_1540012&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; style=&quot;background: url(https://d2x2whwtikbhn8.cloudfront.net/nimblebuy/264568c4d28445c266921a01379a0d3) no-repeat; display: block; width: 285px; height: 51px; margin-bottom: 20px;&quot;&gt;&lt;/a&gt; &lt;div style=&quot;background: #ffffff; padding: 5px; &quot;&gt; &lt;div style=&quot;width: 138px; padding-top: 25px; 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 &amp; Drinks for 2, 50% Off &lt;/div&gt; &lt;img src=&quot;https://s3.amazonaws.com/product-images.imshopping.com/nimblebuy/49-h-street-farmtotable-dinner-drinks-for-2-50-off-2-4194212-small_lv.jpg&quot; style=&quot;width: 126px; height: 92px; margin-bottom: 20px; float: left;&quot; alt=&quot;$49 -- H Street Farm-to-Table Dinner &amp; Drinks for 2, 50% Off&quot; /&gt; &lt;a target=&quot;_blank&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/49-h-street-farmtotable-dinner-drinks-for-2-50-off-2?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_1540012&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&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; 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: 4px 6px 30px; border: 1px solid #4a9dd3;&quot;&gt; &lt;a target=&quot;_target&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/15-reston-ice-skating-wrental-for-2-reg-32?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_1480212&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; style=&quot;background: url(https://d2x2whwtikbhn8.cloudfront.net/nimblebuy/264568c4d28445c266921a01379a0d3) no-repeat; display: block; width: 285px; height: 51px; margin-bottom: 20px;&quot;&gt;&lt;/a&gt; &lt;div style=&quot;background: #ffffff; padding: 5px; &quot;&gt; &lt;div style=&quot;width: 138px; padding-top: 25px; 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; $15 -- Reston: Ice Skating w/Rental for 2, Reg. $30 &lt;/div&gt; &lt;img src=&quot;https://s3.amazonaws.com/product-images.imshopping.com/nimblebuy/15-reston-ice-skating-wrental-for-2-reg-32-4030232-small_lv.jpg&quot; style=&quot;width: 126px; height: 92px; margin-bottom: 20px; float: left;&quot; alt=&quot;$15 -- Reston: Ice Skating w/Rental for 2, Reg. $30&quot; /&gt; &lt;a target=&quot;_blank&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/15-reston-ice-skating-wrental-for-2-reg-32?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_1480212&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&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; 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: 4px 6px 30px; border: 1px solid #4a9dd3;&quot;&gt; &lt;a target=&quot;_target&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/30-little-washington-wine-bootcamp-for-2-reg-80?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_1485202&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; style=&quot;background: url(https://d2x2whwtikbhn8.cloudfront.net/nimblebuy/264568c4d28445c266921a01379a0d3) no-repeat; display: block; width: 285px; height: 51px; margin-bottom: 20px;&quot;&gt;&lt;/a&gt; &lt;div style=&quot;background: #ffffff; padding: 5px; &quot;&gt; &lt;div style=&quot;width: 138px; padding-top: 25px; 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; $30 -- Little Washington: Wine Bootcamp for 2, Reg. $80 &lt;/div&gt; &lt;img src=&quot;https://s3.amazonaws.com/product-images.imshopping.com/nimblebuy/30-little-washington-wine-bootcamp-for-2-reg-80-4055992-small_lv.jpg&quot; style=&quot;width: 126px; height: 92px; margin-bottom: 20px; float: left;&quot; alt=&quot;$30 -- Little Washington: Wine Bootcamp for 2, Reg. $80&quot; /&gt; &lt;a target=&quot;_blank&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/30-little-washington-wine-bootcamp-for-2-reg-80?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_1485202&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&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; 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: 4px 6px 30px; border: 1px solid #4a9dd3;&quot;&gt; &lt;a target=&quot;_target&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/45-french-bistro-brunch-for-2-wmimosa-bottle-service-2?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_1536862&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; style=&quot;background: url(https://d2x2whwtikbhn8.cloudfront.net/nimblebuy/264568c4d28445c266921a01379a0d3) no-repeat; display: block; width: 285px; height: 51px; margin-bottom: 20px;&quot;&gt;&lt;/a&gt; &lt;div style=&quot;background: #ffffff; padding: 5px; &quot;&gt; &lt;div style=&quot;width: 138px; padding-top: 25px; 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; $45 -- French Bistro Brunch for 2 w/Mimosa Bottle Service &lt;/div&gt; &lt;img src=&quot;https://s3.amazonaws.com/product-images.imshopping.com/nimblebuy/45-french-bistro-brunch-for-2-wmimosa-bottle-service-2-4178432-small_lv.jpg&quot; style=&quot;width: 126px; height: 92px; margin-bottom: 20px; float: left;&quot; alt=&quot;$45 -- French Bistro Brunch for 2 w/Mimosa Bottle Service&quot; /&gt; &lt;a target=&quot;_blank&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/45-french-bistro-brunch-for-2-wmimosa-bottle-service-2?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_1536862&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&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; 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: 4px 6px 30px; border: 1px solid #4a9dd3;&quot;&gt; &lt;a target=&quot;_target&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/45-comedy-factory-night-for-2-wendless-drinks-reg-91?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_1532312&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; style=&quot;background: url(https://d2x2whwtikbhn8.cloudfront.net/nimblebuy/264568c4d28445c266921a01379a0d3) no-repeat; display: block; width: 285px; height: 51px; margin-bottom: 20px;&quot;&gt;&lt;/a&gt; &lt;div style=&quot;background: #ffffff; padding: 5px; &quot;&gt; &lt;div style=&quot;width: 138px; padding-top: 25px; 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; Baltimore: Comedy Factory Night w/Unlimited Drinks &lt;/div&gt; &lt;img src=&quot;https://s3.amazonaws.com/product-images.imshopping.com/nimblebuy/45-comedy-factory-night-for-2-wendless-drinks-reg-91-4157262-small_lv.jpg&quot; style=&quot;width: 126px; height: 92px; margin-bottom: 20px; float: left;&quot; alt=&quot;Baltimore: Comedy Factory Night w/Unlimited Drinks&quot; /&gt; &lt;a target=&quot;_blank&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/45-comedy-factory-night-for-2-wendless-drinks-reg-91?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_1532312&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&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; 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: 4px 6px 30px; border: 1px solid #4a9dd3;&quot;&gt; &lt;a target=&quot;_target&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/21-capital-sites-or-monuments-bike-tour-for-1-reg-47?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_1484162&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; style=&quot;background: url(https://d2x2whwtikbhn8.cloudfront.net/nimblebuy/264568c4d28445c266921a01379a0d3) no-repeat; display: block; width: 285px; height: 51px; margin-bottom: 20px;&quot;&gt;&lt;/a&gt; &lt;div style=&quot;background: #ffffff; padding: 5px; &quot;&gt; &lt;div style=&quot;width: 138px; padding-top: 25px; 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; $21 -- Capital Sites or Monuments Bike Tour for 1, Reg. $45 &lt;/div&gt; &lt;img src=&quot;https://s3.amazonaws.com/product-images.imshopping.com/nimblebuy/21-capital-sites-or-monuments-bike-tour-for-1-reg-47-4050392-small_lv.jpg&quot; style=&quot;width: 126px; height: 92px; margin-bottom: 20px; float: left;&quot; alt=&quot;$21 -- Capital Sites or Monuments Bike Tour for 1, Reg. $45&quot; /&gt; &lt;a target=&quot;_blank&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/21-capital-sites-or-monuments-bike-tour-for-1-reg-47?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_1484162&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&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; 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: 42,	rotateTimeInterval: 5000, 	urlSuffixForIms: ''};var WidgetLocalizationProps27281 = {	day: 'd',	hour: 'h',	min: 'm',	sec: 's'};WidgetInit.install(WidgetHtml27281,  WidgetParams27281, WidgetLocalizationProps27281);