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:13800px; height:250px; position:relative;left:0;top:0;&quot;&gt; &lt;div style=&quot;float:left;width:300px;height:250px;&quot;&gt;&lt;div style=&quot;background: #5d3861; padding: 5px; height: 100%; box-sizing: border-box; border: 3px solid #000;&quot;&gt; &lt;a target=&quot;_target&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/sailing-lesson-on-the-chesapeake-in-spring-summer-45-off-2?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2858302&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; style=&quot;background-image: url(https://productimages.nimbledeals.com/nimblebuy/acf5f71a7f5a3997d948f13072ce3dd3); background-repeat: no-repeat; display: block; width: 280px; height: 52px; margin: 10px 0; outline: none; border: none; background-size: 100%; outline: none; border: none;&quot;&gt; &lt;/a&gt; &lt;div style=&quot;background: #ffffff; padding: 5px; &quot;&gt; &lt;div style=&quot;width: 138px; padding-top: 7px; overflow: hidden; padding-left: 10px; font-family: Arial, Helvetica, sans-serif; font-size: 16px; color: #000000;text-overflow: ellipsis;height: 100px;line-height: 21px; float: right;&quot;&gt; Sailing Lesson on the Chesapeake for 45% Off &lt;/div&gt; &lt;img src=&quot;https://s3.amazonaws.com/product-images.imshopping.com/nimblebuy/sailing-lesson-on-the-chesapeake-in-spring-summer-45-off-2-7899162-small_lv.jpg&quot; style=&quot;width: 126px; height: 92px; margin: 7px 0 10px 0; float: left;&quot; alt=&quot;Sailing Lesson on the Chesapeake for 45% Off&quot; /&gt; &lt;a href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/sailing-lesson-on-the-chesapeake-in-spring-summer-45-off-2?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2858302&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; target=&quot;_blank&quot; style=&quot;background: #aecb36; display: block; width: 124px; height: 39px; line-height: 40px; padding-left: 4px; font-family: Arial, Helvetica, sans-serif; font-size: 13px; color: white; text-decoration: none; border-radius: 4px; margin-bottom: 3px; text-align: center; clear: left;&quot;&gt;VIEW DEAL NOW&lt;/a&gt; &lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style=&quot;float:left;width:300px;height:250px;&quot;&gt;&lt;div style=&quot;background: #5d3861; padding: 5px; height: 100%; box-sizing: border-box; border: 3px solid #000;&quot;&gt; &lt;a target=&quot;_target&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/1535-washington-nationals-sept-games-incl-labor-day?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2858582&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; style=&quot;background-image: url(https://productimages.nimbledeals.com/nimblebuy/acf5f71a7f5a3997d948f13072ce3dd3); background-repeat: no-repeat; display: block; width: 280px; height: 52px; margin: 10px 0; outline: none; border: none; background-size: 100%; outline: none; border: none;&quot;&gt; &lt;/a&gt; &lt;div style=&quot;background: #ffffff; padding: 5px; &quot;&gt; &lt;div style=&quot;width: 138px; padding-top: 7px; overflow: hidden; padding-left: 10px; font-family: Arial, Helvetica, sans-serif; font-size: 16px; color: #000000;text-overflow: ellipsis;height: 100px;line-height: 21px; float: right;&quot;&gt; $15-$35 -- Washington Nationals: Sept. Games incl. Labor Day &lt;/div&gt; &lt;img src=&quot;https://s3.amazonaws.com/product-images.imshopping.com/nimblebuy/1535-washington-nationals-sept-games-incl-labor-day-7901572-small_lv.jpg&quot; style=&quot;width: 126px; height: 92px; margin: 7px 0 10px 0; float: left;&quot; alt=&quot;$15-$35 -- Washington Nationals: Sept. Games incl. Labor Day&quot; /&gt; &lt;a href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/1535-washington-nationals-sept-games-incl-labor-day?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2858582&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; target=&quot;_blank&quot; style=&quot;background: #aecb36; display: block; width: 124px; height: 39px; line-height: 40px; padding-left: 4px; font-family: Arial, Helvetica, sans-serif; font-size: 13px; color: white; text-decoration: none; border-radius: 4px; margin-bottom: 3px; text-align: center; clear: left;&quot;&gt;VIEW DEAL NOW&lt;/a&gt; &lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style=&quot;float:left;width:300px;height:250px;&quot;&gt;&lt;div style=&quot;background: #5d3861; padding: 5px; height: 100%; box-sizing: border-box; border: 3px solid #000;&quot;&gt; &lt;a target=&quot;_target&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/36-up-nascar-sprint-cup-series-in-richmond?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2858542&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; style=&quot;background-image: url(https://productimages.nimbledeals.com/nimblebuy/acf5f71a7f5a3997d948f13072ce3dd3); background-repeat: no-repeat; display: block; width: 280px; height: 52px; margin: 10px 0; outline: none; border: none; background-size: 100%; outline: none; border: none;&quot;&gt; &lt;/a&gt; &lt;div style=&quot;background: #ffffff; padding: 5px; &quot;&gt; &lt;div style=&quot;width: 138px; padding-top: 7px; overflow: hidden; padding-left: 10px; font-family: Arial, Helvetica, sans-serif; font-size: 16px; color: #000000;text-overflow: ellipsis;height: 100px;line-height: 21px; float: right;&quot;&gt; $36 &amp; up -- NASCAR Sprint Cup Series in Richmond &lt;/div&gt; &lt;img src=&quot;https://s3.amazonaws.com/product-images.imshopping.com/nimblebuy/36-up-nascar-sprint-cup-series-in-richmond-7901462-small_lv.jpg&quot; style=&quot;width: 126px; height: 92px; margin: 7px 0 10px 0; float: left;&quot; alt=&quot;$36 &amp; up -- NASCAR Sprint Cup Series in Richmond&quot; /&gt; &lt;a href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/36-up-nascar-sprint-cup-series-in-richmond?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2858542&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; target=&quot;_blank&quot; style=&quot;background: #aecb36; display: block; width: 124px; height: 39px; line-height: 40px; padding-left: 4px; font-family: Arial, Helvetica, sans-serif; font-size: 13px; color: white; text-decoration: none; border-radius: 4px; margin-bottom: 3px; text-align: center; clear: left;&quot;&gt;VIEW DEAL NOW&lt;/a&gt; &lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style=&quot;float:left;width:300px;height:250px;&quot;&gt;&lt;div style=&quot;background: #5d3861; padding: 5px; height: 100%; box-sizing: border-box; border: 3px solid #000;&quot;&gt; &lt;a target=&quot;_target&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/109-salamander-spa-choice-of-massage-or-facial-35-off-2?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2857192&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; style=&quot;background-image: url(https://productimages.nimbledeals.com/nimblebuy/acf5f71a7f5a3997d948f13072ce3dd3); background-repeat: no-repeat; display: block; width: 280px; height: 52px; margin: 10px 0; outline: none; border: none; background-size: 100%; outline: none; border: none;&quot;&gt; &lt;/a&gt; &lt;div style=&quot;background: #ffffff; padding: 5px; &quot;&gt; &lt;div style=&quot;width: 138px; padding-top: 7px; overflow: hidden; padding-left: 10px; font-family: Arial, Helvetica, sans-serif; font-size: 16px; color: #000000;text-overflow: ellipsis;height: 100px;line-height: 21px; float: right;&quot;&gt; $109 -- Salamander Spa: Choice of Massage or Facial, 35% Off &lt;/div&gt; &lt;img src=&quot;https://s3.amazonaws.com/product-images.imshopping.com/nimblebuy/109-salamander-spa-choice-of-massage-or-facial-35-off-2-7893362-small_lv.jpg&quot; style=&quot;width: 126px; height: 92px; margin: 7px 0 10px 0; float: left;&quot; alt=&quot;$109 -- Salamander Spa: Choice of Massage or Facial, 35% Off&quot; /&gt; &lt;a href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/109-salamander-spa-choice-of-massage-or-facial-35-off-2?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2857192&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; target=&quot;_blank&quot; style=&quot;background: #aecb36; display: block; width: 124px; height: 39px; line-height: 40px; padding-left: 4px; font-family: Arial, Helvetica, sans-serif; font-size: 13px; color: white; text-decoration: none; border-radius: 4px; margin-bottom: 3px; text-align: center; clear: left;&quot;&gt;VIEW DEAL NOW&lt;/a&gt; &lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style=&quot;float:left;width:300px;height:250px;&quot;&gt;&lt;div style=&quot;background: #5d3861; padding: 5px; height: 100%; box-sizing: border-box; border: 3px solid #000;&quot;&gt; &lt;a target=&quot;_target&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/40-four-seasons-eno-wine-room-flights-bites-reg-81?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2858472&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; style=&quot;background-image: url(https://productimages.nimbledeals.com/nimblebuy/acf5f71a7f5a3997d948f13072ce3dd3); background-repeat: no-repeat; display: block; width: 280px; height: 52px; margin: 10px 0; outline: none; border: none; background-size: 100%; outline: none; border: none;&quot;&gt; &lt;/a&gt; &lt;div style=&quot;background: #ffffff; padding: 5px; &quot;&gt; &lt;div style=&quot;width: 138px; padding-top: 7px; overflow: hidden; padding-left: 10px; font-family: Arial, Helvetica, sans-serif; font-size: 16px; color: #000000;text-overflow: ellipsis;height: 100px;line-height: 21px; float: right;&quot;&gt; $40 -- Four Seasons: ENO Wine Room Flights &amp; Bites, Reg. $79 &lt;/div&gt; &lt;img src=&quot;https://s3.amazonaws.com/product-images.imshopping.com/nimblebuy/40-four-seasons-eno-wine-room-flights-bites-reg-81-7900722-small_lv.jpg&quot; style=&quot;width: 126px; height: 92px; margin: 7px 0 10px 0; float: left;&quot; alt=&quot;$40 -- Four Seasons: ENO Wine Room Flights &amp; Bites, Reg. $79&quot; /&gt; &lt;a href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/40-four-seasons-eno-wine-room-flights-bites-reg-81?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2858472&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; target=&quot;_blank&quot; style=&quot;background: #aecb36; display: block; width: 124px; height: 39px; line-height: 40px; padding-left: 4px; font-family: Arial, Helvetica, sans-serif; font-size: 13px; color: white; text-decoration: none; border-radius: 4px; margin-bottom: 3px; text-align: center; clear: left;&quot;&gt;VIEW DEAL NOW&lt;/a&gt; &lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style=&quot;float:left;width:300px;height:250px;&quot;&gt;&lt;div style=&quot;background: #5d3861; padding: 5px; height: 100%; box-sizing: border-box; border: 3px solid #000;&quot;&gt; &lt;a target=&quot;_target&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/149-virginias-best-bb-w50-dining-credit-save-55--3?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2858452&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; style=&quot;background-image: url(https://productimages.nimbledeals.com/nimblebuy/acf5f71a7f5a3997d948f13072ce3dd3); background-repeat: no-repeat; display: block; width: 280px; height: 52px; margin: 10px 0; outline: none; border: none; background-size: 100%; outline: none; border: none;&quot;&gt; &lt;/a&gt; &lt;div style=&quot;background: #ffffff; padding: 5px; &quot;&gt; &lt;div style=&quot;width: 138px; padding-top: 7px; overflow: hidden; padding-left: 10px; font-family: Arial, Helvetica, sans-serif; font-size: 16px; color: #000000;text-overflow: ellipsis;height: 100px;line-height: 21px; float: right;&quot;&gt; $149 -- &#39;Virginia&#39;s Best B&amp;B&#39; w/$50 Dining Credit, Save 55% &lt;/div&gt; &lt;img src=&quot;https://s3.amazonaws.com/product-images.imshopping.com/nimblebuy/149-virginias-best-bb-w50-dining-credit-save-55--3-7900572-small_lv.jpg&quot; style=&quot;width: 126px; height: 92px; margin: 7px 0 10px 0; float: left;&quot; alt=&quot;$149 -- &#39;Virginia&#39;s Best B&amp;B&#39; w/$50 Dining Credit, Save 55%&quot; /&gt; &lt;a href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/149-virginias-best-bb-w50-dining-credit-save-55--3?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2858452&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; target=&quot;_blank&quot; style=&quot;background: #aecb36; display: block; width: 124px; height: 39px; line-height: 40px; padding-left: 4px; font-family: Arial, Helvetica, sans-serif; font-size: 13px; color: white; text-decoration: none; border-radius: 4px; margin-bottom: 3px; text-align: center; clear: left;&quot;&gt;VIEW DEAL NOW&lt;/a&gt; &lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style=&quot;float:left;width:300px;height:250px;&quot;&gt;&lt;div style=&quot;background: #5d3861; padding: 5px; height: 100%; box-sizing: border-box; border: 3px solid #000;&quot;&gt; &lt;a target=&quot;_target&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/34-dc-spy-museum-entry-interactive-mission-for-9?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2829782&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; style=&quot;background-image: url(https://productimages.nimbledeals.com/nimblebuy/acf5f71a7f5a3997d948f13072ce3dd3); background-repeat: no-repeat; display: block; width: 280px; height: 52px; margin: 10px 0; outline: none; border: none; background-size: 100%; outline: none; border: none;&quot;&gt; &lt;/a&gt; &lt;div style=&quot;background: #ffffff; padding: 5px; &quot;&gt; &lt;div style=&quot;width: 138px; padding-top: 7px; overflow: hidden; padding-left: 10px; font-family: Arial, Helvetica, sans-serif; font-size: 16px; color: #000000;text-overflow: ellipsis;height: 100px;line-height: 21px; float: right;&quot;&gt; $34 -- D.C. Spy Museum Entry &amp; Interactive Mission for 2 &lt;/div&gt; &lt;img src=&quot;https://s3.amazonaws.com/product-images.imshopping.com/nimblebuy/34-dc-spy-museum-entry-interactive-mission-for-9-7724432-small_lv.jpg&quot; style=&quot;width: 126px; height: 92px; margin: 7px 0 10px 0; float: left;&quot; alt=&quot;$34 -- D.C. Spy Museum Entry &amp; Interactive Mission for 2&quot; /&gt; &lt;a href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/34-dc-spy-museum-entry-interactive-mission-for-9?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2829782&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; target=&quot;_blank&quot; style=&quot;background: #aecb36; display: block; width: 124px; height: 39px; line-height: 40px; padding-left: 4px; font-family: Arial, Helvetica, sans-serif; font-size: 13px; color: white; text-decoration: none; border-radius: 4px; margin-bottom: 3px; text-align: center; clear: left;&quot;&gt;VIEW DEAL NOW&lt;/a&gt; &lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style=&quot;float:left;width:300px;height:250px;&quot;&gt;&lt;div style=&quot;background: #5d3861; padding: 5px; height: 100%; box-sizing: border-box; border: 3px solid #000;&quot;&gt; &lt;a target=&quot;_target&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/65-equinox-very-best-dinner-for-2-in-dc-reg-108?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2845592&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; style=&quot;background-image: url(https://productimages.nimbledeals.com/nimblebuy/acf5f71a7f5a3997d948f13072ce3dd3); background-repeat: no-repeat; display: block; width: 280px; height: 52px; margin: 10px 0; outline: none; border: none; background-size: 100%; outline: none; border: none;&quot;&gt; &lt;/a&gt; &lt;div style=&quot;background: #ffffff; padding: 5px; &quot;&gt; &lt;div style=&quot;width: 138px; padding-top: 7px; overflow: hidden; padding-left: 10px; font-family: Arial, Helvetica, sans-serif; font-size: 16px; color: #000000;text-overflow: ellipsis;height: 100px;line-height: 21px; float: right;&quot;&gt; $65 -- Equinox: &#39;Very Best&#39; Dinner for 2 in D.C., Reg. $106 &lt;/div&gt; &lt;img src=&quot;https://s3.amazonaws.com/product-images.imshopping.com/nimblebuy/65-equinox-very-best-dinner-for-2-in-dc-reg-108-7829232-small_lv.jpg&quot; style=&quot;width: 126px; height: 92px; margin: 7px 0 10px 0; float: left;&quot; alt=&quot;$65 -- Equinox: &#39;Very Best&#39; Dinner for 2 in D.C., Reg. $106&quot; /&gt; &lt;a href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/65-equinox-very-best-dinner-for-2-in-dc-reg-108?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2845592&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; target=&quot;_blank&quot; style=&quot;background: #aecb36; display: block; width: 124px; height: 39px; line-height: 40px; padding-left: 4px; font-family: Arial, Helvetica, sans-serif; font-size: 13px; color: white; text-decoration: none; border-radius: 4px; margin-bottom: 3px; text-align: center; clear: left;&quot;&gt;VIEW DEAL NOW&lt;/a&gt; &lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style=&quot;float:left;width:300px;height:250px;&quot;&gt;&lt;div style=&quot;background: #5d3861; padding: 5px; height: 100%; box-sizing: border-box; border: 3px solid #000;&quot;&gt; &lt;a target=&quot;_target&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/spa-at-four-seasons-georgetown-massage-wbubbly-thru-summer-3?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2763942&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; style=&quot;background-image: url(https://productimages.nimbledeals.com/nimblebuy/acf5f71a7f5a3997d948f13072ce3dd3); background-repeat: no-repeat; display: block; width: 280px; height: 52px; margin: 10px 0; outline: none; border: none; background-size: 100%; outline: none; border: none;&quot;&gt; &lt;/a&gt; &lt;div style=&quot;background: #ffffff; padding: 5px; &quot;&gt; &lt;div style=&quot;width: 138px; padding-top: 7px; overflow: hidden; padding-left: 10px; font-family: Arial, Helvetica, sans-serif; font-size: 16px; color: #000000;text-overflow: ellipsis;height: 100px;line-height: 21px; float: right;&quot;&gt; Spa at Four Seasons Georgetown: Massage w/Bubbly thru Summer &lt;/div&gt; &lt;img src=&quot;https://s3.amazonaws.com/product-images.imshopping.com/nimblebuy/spa-at-four-seasons-georgetown-massage-wbubbly-thru-summer-3-7317212-small_lv.jpg&quot; style=&quot;width: 126px; height: 92px; margin: 7px 0 10px 0; float: left;&quot; alt=&quot;Spa at Four Seasons Georgetown: Massage w/Bubbly thru Summer&quot; /&gt; &lt;a href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/spa-at-four-seasons-georgetown-massage-wbubbly-thru-summer-3?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2763942&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; target=&quot;_blank&quot; style=&quot;background: #aecb36; display: block; width: 124px; height: 39px; line-height: 40px; padding-left: 4px; font-family: Arial, Helvetica, sans-serif; font-size: 13px; color: white; text-decoration: none; border-radius: 4px; margin-bottom: 3px; text-align: center; clear: left;&quot;&gt;VIEW DEAL NOW&lt;/a&gt; &lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style=&quot;float:left;width:300px;height:250px;&quot;&gt;&lt;div style=&quot;background: #5d3861; padding: 5px; height: 100%; box-sizing: border-box; border: 3px solid #000;&quot;&gt; &lt;a target=&quot;_target&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/12-family-treasure-cruise-on-a-pirate-ship-reg-25?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2694752&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; style=&quot;background-image: url(https://productimages.nimbledeals.com/nimblebuy/acf5f71a7f5a3997d948f13072ce3dd3); background-repeat: no-repeat; display: block; width: 280px; height: 52px; margin: 10px 0; outline: none; border: none; background-size: 100%; outline: none; border: none;&quot;&gt; &lt;/a&gt; &lt;div style=&quot;background: #ffffff; padding: 5px; &quot;&gt; &lt;div style=&quot;width: 138px; padding-top: 7px; overflow: hidden; padding-left: 10px; font-family: Arial, Helvetica, sans-serif; font-size: 16px; color: #000000;text-overflow: ellipsis;height: 100px;line-height: 21px; float: right;&quot;&gt; $12 -- Family Treasure Cruise on a Pirate Ship, Reg. $22 &lt;/div&gt; &lt;img src=&quot;https://s3.amazonaws.com/product-images.imshopping.com/nimblebuy/12-family-treasure-cruise-on-a-pirate-ship-reg-25-6968402-small_lv.jpg&quot; style=&quot;width: 126px; height: 92px; margin: 7px 0 10px 0; float: left;&quot; alt=&quot;$12 -- Family Treasure Cruise on a Pirate Ship, Reg. $22&quot; /&gt; &lt;a href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/12-family-treasure-cruise-on-a-pirate-ship-reg-25?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2694752&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; target=&quot;_blank&quot; style=&quot;background: #aecb36; display: block; width: 124px; height: 39px; line-height: 40px; padding-left: 4px; font-family: Arial, Helvetica, sans-serif; font-size: 13px; color: white; text-decoration: none; border-radius: 4px; margin-bottom: 3px; text-align: center; clear: left;&quot;&gt;VIEW DEAL NOW&lt;/a&gt; &lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style=&quot;float:left;width:300px;height:250px;&quot;&gt;&lt;div style=&quot;background: #5d3861; padding: 5px; height: 100%; box-sizing: border-box; border: 3px solid #000;&quot;&gt; &lt;a target=&quot;_target&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/9-comedy-shows-at-washington-improv-theater-reg-17?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2855992&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; style=&quot;background-image: url(https://productimages.nimbledeals.com/nimblebuy/acf5f71a7f5a3997d948f13072ce3dd3); background-repeat: no-repeat; display: block; width: 280px; height: 52px; margin: 10px 0; outline: none; border: none; background-size: 100%; outline: none; border: none;&quot;&gt; &lt;/a&gt; &lt;div style=&quot;background: #ffffff; padding: 5px; &quot;&gt; &lt;div style=&quot;width: 138px; padding-top: 7px; overflow: hidden; padding-left: 10px; font-family: Arial, Helvetica, sans-serif; font-size: 16px; color: #000000;text-overflow: ellipsis;height: 100px;line-height: 21px; float: right;&quot;&gt; This Thursday-Saturday: Comedy Shows at Washington Improv Theater &lt;/div&gt; &lt;img src=&quot;https://s3.amazonaws.com/product-images.imshopping.com/nimblebuy/9-comedy-shows-at-washington-improv-theater-reg-17-7887642-small_lv.jpg&quot; style=&quot;width: 126px; height: 92px; margin: 7px 0 10px 0; float: left;&quot; alt=&quot;This Thursday-Saturday: Comedy Shows at Washington Improv Theater&quot; /&gt; &lt;a href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/9-comedy-shows-at-washington-improv-theater-reg-17?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2855992&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; target=&quot;_blank&quot; style=&quot;background: #aecb36; display: block; width: 124px; height: 39px; line-height: 40px; padding-left: 4px; font-family: Arial, Helvetica, sans-serif; font-size: 13px; color: white; text-decoration: none; border-radius: 4px; margin-bottom: 3px; text-align: center; clear: left;&quot;&gt;VIEW DEAL NOW&lt;/a&gt; &lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style=&quot;float:left;width:300px;height:250px;&quot;&gt;&lt;div style=&quot;background: #5d3861; padding: 5px; height: 100%; box-sizing: border-box; border: 3px solid #000;&quot;&gt; &lt;a target=&quot;_target&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/39-brunch-for-2-wbottoms-up-endless-drinks-reg-75?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2822442&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; style=&quot;background-image: url(https://productimages.nimbledeals.com/nimblebuy/acf5f71a7f5a3997d948f13072ce3dd3); background-repeat: no-repeat; display: block; width: 280px; height: 52px; margin: 10px 0; outline: none; border: none; background-size: 100%; outline: none; border: none;&quot;&gt; &lt;/a&gt; &lt;div style=&quot;background: #ffffff; padding: 5px; &quot;&gt; &lt;div style=&quot;width: 138px; padding-top: 7px; overflow: hidden; padding-left: 10px; font-family: Arial, Helvetica, sans-serif; font-size: 16px; color: #000000;text-overflow: ellipsis;height: 100px;line-height: 21px; float: right;&quot;&gt; $39 -- Brunch for 2 w/&#39;Bottoms Up&#39; Endless Drinks, Reg. $72 &lt;/div&gt; &lt;img src=&quot;https://s3.amazonaws.com/product-images.imshopping.com/nimblebuy/39-brunch-for-2-wbottoms-up-endless-drinks-reg-75-7669872-small_lv.jpg&quot; style=&quot;width: 126px; height: 92px; margin: 7px 0 10px 0; float: left;&quot; alt=&quot;$39 -- Brunch for 2 w/&#39;Bottoms Up&#39; Endless Drinks, Reg. $72&quot; /&gt; &lt;a href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/39-brunch-for-2-wbottoms-up-endless-drinks-reg-75?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2822442&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; target=&quot;_blank&quot; style=&quot;background: #aecb36; display: block; width: 124px; height: 39px; line-height: 40px; padding-left: 4px; font-family: Arial, Helvetica, sans-serif; font-size: 13px; color: white; text-decoration: none; border-radius: 4px; margin-bottom: 3px; text-align: center; clear: left;&quot;&gt;VIEW DEAL NOW&lt;/a&gt; &lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style=&quot;float:left;width:300px;height:250px;&quot;&gt;&lt;div style=&quot;background: #5d3861; padding: 5px; height: 100%; box-sizing: border-box; border: 3px solid #000;&quot;&gt; &lt;a target=&quot;_target&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/129-brandywine-valley-pa-romantic-bb-into-fall-2?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2855342&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; style=&quot;background-image: url(https://productimages.nimbledeals.com/nimblebuy/acf5f71a7f5a3997d948f13072ce3dd3); background-repeat: no-repeat; display: block; width: 280px; height: 52px; margin: 10px 0; outline: none; border: none; background-size: 100%; outline: none; border: none;&quot;&gt; &lt;/a&gt; &lt;div style=&quot;background: #ffffff; padding: 5px; &quot;&gt; &lt;div style=&quot;width: 138px; padding-top: 7px; overflow: hidden; padding-left: 10px; font-family: Arial, Helvetica, sans-serif; font-size: 16px; color: #000000;text-overflow: ellipsis;height: 100px;line-height: 21px; float: right;&quot;&gt; $129 -- Brandywine Valley, Pa.: Romantic B&amp;B into Fall &lt;/div&gt; &lt;img src=&quot;https://s3.amazonaws.com/product-images.imshopping.com/nimblebuy/129-brandywine-valley-pa-romantic-bb-into-fall-2-7884212-small_lv.jpg&quot; style=&quot;width: 126px; height: 92px; margin: 7px 0 10px 0; float: left;&quot; alt=&quot;$129 -- Brandywine Valley, Pa.: Romantic B&amp;B into Fall&quot; /&gt; &lt;a href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/129-brandywine-valley-pa-romantic-bb-into-fall-2?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2855342&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; target=&quot;_blank&quot; style=&quot;background: #aecb36; display: block; width: 124px; height: 39px; line-height: 40px; padding-left: 4px; font-family: Arial, Helvetica, sans-serif; font-size: 13px; color: white; text-decoration: none; border-radius: 4px; margin-bottom: 3px; text-align: center; clear: left;&quot;&gt;VIEW DEAL NOW&lt;/a&gt; &lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style=&quot;float:left;width:300px;height:250px;&quot;&gt;&lt;div style=&quot;background: #5d3861; padding: 5px; height: 100%; box-sizing: border-box; border: 3px solid #000;&quot;&gt; &lt;a target=&quot;_target&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/99-massage-wexpress-facial-at-best-dc-spa-40-off-6?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2855332&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; style=&quot;background-image: url(https://productimages.nimbledeals.com/nimblebuy/acf5f71a7f5a3997d948f13072ce3dd3); background-repeat: no-repeat; display: block; width: 280px; height: 52px; margin: 10px 0; outline: none; border: none; background-size: 100%; outline: none; border: none;&quot;&gt; &lt;/a&gt; &lt;div style=&quot;background: #ffffff; padding: 5px; &quot;&gt; &lt;div style=&quot;width: 138px; padding-top: 7px; overflow: hidden; padding-left: 10px; font-family: Arial, Helvetica, sans-serif; font-size: 16px; color: #000000;text-overflow: ellipsis;height: 100px;line-height: 21px; float: right;&quot;&gt; $99 -- Massage w/Express Facial at &#39;Best D.C. Spa,&#39; 40% Off &lt;/div&gt; &lt;img src=&quot;https://s3.amazonaws.com/product-images.imshopping.com/nimblebuy/99-massage-wexpress-facial-at-best-dc-spa-40-off-6-7884082-small_lv.jpg&quot; style=&quot;width: 126px; height: 92px; margin: 7px 0 10px 0; float: left;&quot; alt=&quot;$99 -- Massage w/Express Facial at &#39;Best D.C. Spa,&#39; 40% Off&quot; /&gt; &lt;a href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/99-massage-wexpress-facial-at-best-dc-spa-40-off-6?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2855332&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; target=&quot;_blank&quot; style=&quot;background: #aecb36; display: block; width: 124px; height: 39px; line-height: 40px; padding-left: 4px; font-family: Arial, Helvetica, sans-serif; font-size: 13px; color: white; text-decoration: none; border-radius: 4px; margin-bottom: 3px; text-align: center; clear: left;&quot;&gt;VIEW DEAL NOW&lt;/a&gt; &lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style=&quot;float:left;width:300px;height:250px;&quot;&gt;&lt;div style=&quot;background: #5d3861; padding: 5px; height: 100%; box-sizing: border-box; border: 3px solid #000;&quot;&gt; &lt;a target=&quot;_target&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/55-bryan-voltaggios-range-bottomless-brunch-for-5?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2828462&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; style=&quot;background-image: url(https://productimages.nimbledeals.com/nimblebuy/acf5f71a7f5a3997d948f13072ce3dd3); background-repeat: no-repeat; display: block; width: 280px; height: 52px; margin: 10px 0; outline: none; border: none; background-size: 100%; outline: none; border: none;&quot;&gt; &lt;/a&gt; &lt;div style=&quot;background: #ffffff; padding: 5px; &quot;&gt; &lt;div style=&quot;width: 138px; padding-top: 7px; overflow: hidden; padding-left: 10px; font-family: Arial, Helvetica, sans-serif; font-size: 16px; color: #000000;text-overflow: ellipsis;height: 100px;line-height: 21px; float: right;&quot;&gt; $55 -- Bryan Voltaggio&#39;s Range: Bottomless Brunch for 2 &lt;/div&gt; &lt;img src=&quot;https://s3.amazonaws.com/product-images.imshopping.com/nimblebuy/55-bryan-voltaggios-range-bottomless-brunch-for-5-7715962-small_lv.jpg&quot; style=&quot;width: 126px; height: 92px; margin: 7px 0 10px 0; float: left;&quot; alt=&quot;$55 -- Bryan Voltaggio&#39;s Range: Bottomless Brunch for 2&quot; /&gt; &lt;a href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/55-bryan-voltaggios-range-bottomless-brunch-for-5?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2828462&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; target=&quot;_blank&quot; style=&quot;background: #aecb36; display: block; width: 124px; height: 39px; line-height: 40px; padding-left: 4px; font-family: Arial, Helvetica, sans-serif; font-size: 13px; color: white; text-decoration: none; border-radius: 4px; margin-bottom: 3px; text-align: center; clear: left;&quot;&gt;VIEW DEAL NOW&lt;/a&gt; &lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style=&quot;float:left;width:300px;height:250px;&quot;&gt;&lt;div style=&quot;background: #5d3861; padding: 5px; height: 100%; box-sizing: border-box; border: 3px solid #000;&quot;&gt; &lt;a target=&quot;_target&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/35-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-image: url(https://productimages.nimbledeals.com/nimblebuy/acf5f71a7f5a3997d948f13072ce3dd3); background-repeat: no-repeat; display: block; width: 280px; height: 52px; margin: 10px 0; outline: none; border: none; background-size: 100%; outline: none; border: none;&quot;&gt; &lt;/a&gt; &lt;div style=&quot;background: #ffffff; padding: 5px; &quot;&gt; &lt;div style=&quot;width: 138px; padding-top: 7px; overflow: hidden; padding-left: 10px; font-family: Arial, Helvetica, sans-serif; font-size: 16px; color: #000000;text-overflow: ellipsis;height: 100px;line-height: 21px; float: right;&quot;&gt; $35 -- 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: 7px 0 10px 0; float: left;&quot; alt=&quot;$35 -- 2016 Pass for 2 to 90+ Wineries w/Tastings, 50% Off&quot; /&gt; &lt;a 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; target=&quot;_blank&quot; style=&quot;background: #aecb36; display: block; width: 124px; height: 39px; line-height: 40px; padding-left: 4px; font-family: Arial, Helvetica, sans-serif; font-size: 13px; color: white; text-decoration: none; border-radius: 4px; margin-bottom: 3px; text-align: center; clear: left;&quot;&gt;VIEW DEAL NOW&lt;/a&gt; &lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style=&quot;float:left;width:300px;height:250px;&quot;&gt;&lt;div style=&quot;background: #5d3861; padding: 5px; height: 100%; box-sizing: border-box; border: 3px solid #000;&quot;&gt; &lt;a target=&quot;_target&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/23-olney-winery-tastings-for-2-wwine-credit-40-off-3?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2846242&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; style=&quot;background-image: url(https://productimages.nimbledeals.com/nimblebuy/acf5f71a7f5a3997d948f13072ce3dd3); background-repeat: no-repeat; display: block; width: 280px; height: 52px; margin: 10px 0; outline: none; border: none; background-size: 100%; outline: none; border: none;&quot;&gt; &lt;/a&gt; &lt;div style=&quot;background: #ffffff; padding: 5px; &quot;&gt; &lt;div style=&quot;width: 138px; padding-top: 7px; overflow: hidden; padding-left: 10px; font-family: Arial, Helvetica, sans-serif; font-size: 16px; color: #000000;text-overflow: ellipsis;height: 100px;line-height: 21px; float: right;&quot;&gt; $23 -- Olney Winery: Tastings for 2 w/Wine Credit, 40% Off &lt;/div&gt; &lt;img src=&quot;https://s3.amazonaws.com/product-images.imshopping.com/nimblebuy/23-olney-winery-tastings-for-2-wwine-credit-40-off-3-7834512-small_lv.jpg&quot; style=&quot;width: 126px; height: 92px; margin: 7px 0 10px 0; float: left;&quot; alt=&quot;$23 -- Olney Winery: Tastings for 2 w/Wine Credit, 40% Off&quot; /&gt; &lt;a href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/23-olney-winery-tastings-for-2-wwine-credit-40-off-3?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2846242&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; target=&quot;_blank&quot; style=&quot;background: #aecb36; display: block; width: 124px; height: 39px; line-height: 40px; padding-left: 4px; font-family: Arial, Helvetica, sans-serif; font-size: 13px; color: white; text-decoration: none; border-radius: 4px; margin-bottom: 3px; text-align: center; clear: left;&quot;&gt;VIEW DEAL NOW&lt;/a&gt; &lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style=&quot;float:left;width:300px;height:250px;&quot;&gt;&lt;div style=&quot;background: #5d3861; padding: 5px; height: 100%; box-sizing: border-box; border: 3px solid #000;&quot;&gt; &lt;a target=&quot;_target&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/8-potomac-river-cruise-for-1-incl-cherry-blossom-season-3?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2687462&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; style=&quot;background-image: url(https://productimages.nimbledeals.com/nimblebuy/acf5f71a7f5a3997d948f13072ce3dd3); background-repeat: no-repeat; display: block; width: 280px; height: 52px; margin: 10px 0; outline: none; border: none; background-size: 100%; outline: none; border: none;&quot;&gt; &lt;/a&gt; &lt;div style=&quot;background: #ffffff; padding: 5px; &quot;&gt; &lt;div style=&quot;width: 138px; padding-top: 7px; overflow: hidden; padding-left: 10px; font-family: Arial, Helvetica, sans-serif; font-size: 16px; color: #000000;text-overflow: ellipsis;height: 100px;line-height: 21px; float: right;&quot;&gt; $8 -- Narrated Potomac River Cruise through Summer, Reg. $15 &lt;/div&gt; &lt;img src=&quot;https://s3.amazonaws.com/product-images.imshopping.com/nimblebuy/8-potomac-river-cruise-for-1-incl-cherry-blossom-season-3-6926502-small_lv.jpg&quot; style=&quot;width: 126px; height: 92px; margin: 7px 0 10px 0; float: left;&quot; alt=&quot;$8 -- Narrated Potomac River Cruise through Summer, Reg. $15&quot; /&gt; &lt;a href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/8-potomac-river-cruise-for-1-incl-cherry-blossom-season-3?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2687462&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; target=&quot;_blank&quot; style=&quot;background: #aecb36; display: block; width: 124px; height: 39px; line-height: 40px; padding-left: 4px; font-family: Arial, Helvetica, sans-serif; font-size: 13px; color: white; text-decoration: none; border-radius: 4px; margin-bottom: 3px; text-align: center; clear: left;&quot;&gt;VIEW DEAL NOW&lt;/a&gt; &lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style=&quot;float:left;width:300px;height:250px;&quot;&gt;&lt;div style=&quot;background: #5d3861; padding: 5px; height: 100%; box-sizing: border-box; border: 3px solid #000;&quot;&gt; &lt;a target=&quot;_target&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/87-va-countryside-50minute-massage-or-facial-45-off-3?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2838942&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; style=&quot;background-image: url(https://productimages.nimbledeals.com/nimblebuy/acf5f71a7f5a3997d948f13072ce3dd3); background-repeat: no-repeat; display: block; width: 280px; height: 52px; margin: 10px 0; outline: none; border: none; background-size: 100%; outline: none; border: none;&quot;&gt; &lt;/a&gt; &lt;div style=&quot;background: #ffffff; padding: 5px; &quot;&gt; &lt;div style=&quot;width: 138px; padding-top: 7px; overflow: hidden; padding-left: 10px; font-family: Arial, Helvetica, sans-serif; font-size: 16px; color: #000000;text-overflow: ellipsis;height: 100px;line-height: 21px; float: right;&quot;&gt; $87 -- Va. Countryside: 50-Minute Massage or Facial, 45% Off &lt;/div&gt; &lt;img src=&quot;https://s3.amazonaws.com/product-images.imshopping.com/nimblebuy/87-va-countryside-50minute-massage-or-facial-45-off-3-7789602-small_lv.jpg&quot; style=&quot;width: 126px; height: 92px; margin: 7px 0 10px 0; float: left;&quot; alt=&quot;$87 -- Va. Countryside: 50-Minute Massage or Facial, 45% Off&quot; /&gt; &lt;a href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/87-va-countryside-50minute-massage-or-facial-45-off-3?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2838942&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; target=&quot;_blank&quot; style=&quot;background: #aecb36; display: block; width: 124px; height: 39px; line-height: 40px; padding-left: 4px; font-family: Arial, Helvetica, sans-serif; font-size: 13px; color: white; text-decoration: none; border-radius: 4px; margin-bottom: 3px; text-align: center; clear: left;&quot;&gt;VIEW DEAL NOW&lt;/a&gt; &lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style=&quot;float:left;width:300px;height:250px;&quot;&gt;&lt;div style=&quot;background: #5d3861; padding: 5px; height: 100%; box-sizing: border-box; border: 3px solid #000;&quot;&gt; &lt;a target=&quot;_target&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/39-pass-for-up-to-4-wmini-golf-batting-cages-50-off-3?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2725772&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; style=&quot;background-image: url(https://productimages.nimbledeals.com/nimblebuy/acf5f71a7f5a3997d948f13072ce3dd3); background-repeat: no-repeat; display: block; width: 280px; height: 52px; margin: 10px 0; outline: none; border: none; background-size: 100%; outline: none; border: none;&quot;&gt; &lt;/a&gt; &lt;div style=&quot;background: #ffffff; padding: 5px; &quot;&gt; &lt;div style=&quot;width: 138px; padding-top: 7px; overflow: hidden; padding-left: 10px; font-family: Arial, Helvetica, sans-serif; font-size: 16px; color: #000000;text-overflow: ellipsis;height: 100px;line-height: 21px; float: right;&quot;&gt; $39 -- Pass for up to 4 w/Mini Golf &amp; Batting Cages, 50% Off &lt;/div&gt; &lt;img src=&quot;https://s3.amazonaws.com/product-images.imshopping.com/nimblebuy/39-pass-for-up-to-4-wmini-golf-batting-cages-50-off-3-7106552-small_lv.jpg&quot; style=&quot;width: 126px; height: 92px; margin: 7px 0 10px 0; float: left;&quot; alt=&quot;$39 -- Pass for up to 4 w/Mini Golf &amp; Batting Cages, 50% Off&quot; /&gt; &lt;a href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/39-pass-for-up-to-4-wmini-golf-batting-cages-50-off-3?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2725772&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; target=&quot;_blank&quot; style=&quot;background: #aecb36; display: block; width: 124px; height: 39px; line-height: 40px; padding-left: 4px; font-family: Arial, Helvetica, sans-serif; font-size: 13px; color: white; text-decoration: none; border-radius: 4px; margin-bottom: 3px; text-align: center; clear: left;&quot;&gt;VIEW DEAL NOW&lt;/a&gt; &lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style=&quot;float:left;width:300px;height:250px;&quot;&gt;&lt;div style=&quot;background: #5d3861; padding: 5px; height: 100%; box-sizing: border-box; border: 3px solid #000;&quot;&gt; &lt;a target=&quot;_target&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/celeb-chef-daniel-bouluds-dbgb-99-dinner-for-2-wdrinks-3?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2799692&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; style=&quot;background-image: url(https://productimages.nimbledeals.com/nimblebuy/acf5f71a7f5a3997d948f13072ce3dd3); background-repeat: no-repeat; display: block; width: 280px; height: 52px; margin: 10px 0; outline: none; border: none; background-size: 100%; outline: none; border: none;&quot;&gt; &lt;/a&gt; &lt;div style=&quot;background: #ffffff; padding: 5px; &quot;&gt; &lt;div style=&quot;width: 138px; padding-top: 7px; overflow: hidden; padding-left: 10px; font-family: Arial, Helvetica, sans-serif; font-size: 16px; color: #000000;text-overflow: ellipsis;height: 100px;line-height: 21px; float: right;&quot;&gt; Celeb Chef Daniel Boulud&#39;s DBGB: $99 Dinner for 2 w/Drinks &lt;/div&gt; &lt;img src=&quot;https://s3.amazonaws.com/product-images.imshopping.com/nimblebuy/celeb-chef-daniel-bouluds-dbgb-99-dinner-for-2-wdrinks-3-7512142-small_lv.jpg&quot; style=&quot;width: 126px; height: 92px; margin: 7px 0 10px 0; float: left;&quot; alt=&quot;Celeb Chef Daniel Boulud&#39;s DBGB: $99 Dinner for 2 w/Drinks&quot; /&gt; &lt;a href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/celeb-chef-daniel-bouluds-dbgb-99-dinner-for-2-wdrinks-3?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2799692&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; target=&quot;_blank&quot; style=&quot;background: #aecb36; display: block; width: 124px; height: 39px; line-height: 40px; padding-left: 4px; font-family: Arial, Helvetica, sans-serif; font-size: 13px; color: white; text-decoration: none; border-radius: 4px; margin-bottom: 3px; text-align: center; clear: left;&quot;&gt;VIEW DEAL NOW&lt;/a&gt; &lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style=&quot;float:left;width:300px;height:250px;&quot;&gt;&lt;div style=&quot;background: #5d3861; padding: 5px; height: 100%; box-sizing: border-box; border: 3px solid #000;&quot;&gt; &lt;a target=&quot;_target&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/25-paint-nite-at-local-bars-nationwide-reg-48?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2765142&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; style=&quot;background-image: url(https://productimages.nimbledeals.com/nimblebuy/acf5f71a7f5a3997d948f13072ce3dd3); background-repeat: no-repeat; display: block; width: 280px; height: 52px; margin: 10px 0; outline: none; border: none; background-size: 100%; outline: none; border: none;&quot;&gt; &lt;/a&gt; &lt;div style=&quot;background: #ffffff; padding: 5px; &quot;&gt; &lt;div style=&quot;width: 138px; padding-top: 7px; overflow: hidden; padding-left: 10px; font-family: Arial, Helvetica, sans-serif; font-size: 16px; color: #000000;text-overflow: ellipsis;height: 100px;line-height: 21px; float: right;&quot;&gt; $25 -- Paint Nite at Local Bars, Reg. $45 &lt;/div&gt; &lt;img src=&quot;https://s3.amazonaws.com/product-images.imshopping.com/nimblebuy/25-paint-nite-at-local-bars-nationwide-reg-48-7327572-small_lv.jpg&quot; style=&quot;width: 126px; height: 92px; margin: 7px 0 10px 0; float: left;&quot; alt=&quot;$25 -- Paint Nite at Local Bars, Reg. $45&quot; /&gt; &lt;a href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/25-paint-nite-at-local-bars-nationwide-reg-48?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2765142&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; target=&quot;_blank&quot; style=&quot;background: #aecb36; display: block; width: 124px; height: 39px; line-height: 40px; padding-left: 4px; font-family: Arial, Helvetica, sans-serif; font-size: 13px; color: white; text-decoration: none; border-radius: 4px; margin-bottom: 3px; text-align: center; clear: left;&quot;&gt;VIEW DEAL NOW&lt;/a&gt; &lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style=&quot;float:left;width:300px;height:250px;&quot;&gt;&lt;div style=&quot;background: #5d3861; padding: 5px; height: 100%; box-sizing: border-box; border: 3px solid #000;&quot;&gt; &lt;a target=&quot;_target&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/49-thomas-circle-choice-of-hourlong-massage-reg-102?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2811562&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; style=&quot;background-image: url(https://productimages.nimbledeals.com/nimblebuy/acf5f71a7f5a3997d948f13072ce3dd3); background-repeat: no-repeat; display: block; width: 280px; height: 52px; margin: 10px 0; outline: none; border: none; background-size: 100%; outline: none; border: none;&quot;&gt; &lt;/a&gt; &lt;div style=&quot;background: #ffffff; padding: 5px; &quot;&gt; &lt;div style=&quot;width: 138px; padding-top: 7px; overflow: hidden; padding-left: 10px; font-family: Arial, Helvetica, sans-serif; font-size: 16px; color: #000000;text-overflow: ellipsis;height: 100px;line-height: 21px; float: right;&quot;&gt; $49 -- Thomas Circle: Choice of Hourlong Massage, Reg. $95 &lt;/div&gt; &lt;img src=&quot;https://s3.amazonaws.com/product-images.imshopping.com/nimblebuy/49-thomas-circle-choice-of-hourlong-massage-reg-102-7593372-small_lv.jpg&quot; style=&quot;width: 126px; height: 92px; margin: 7px 0 10px 0; float: left;&quot; alt=&quot;$49 -- Thomas Circle: Choice of Hourlong Massage, Reg. $95&quot; /&gt; &lt;a href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/49-thomas-circle-choice-of-hourlong-massage-reg-102?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2811562&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; target=&quot;_blank&quot; style=&quot;background: #aecb36; display: block; width: 124px; height: 39px; line-height: 40px; padding-left: 4px; font-family: Arial, Helvetica, sans-serif; font-size: 13px; color: white; text-decoration: none; border-radius: 4px; margin-bottom: 3px; text-align: center; clear: left;&quot;&gt;VIEW DEAL NOW&lt;/a&gt; &lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style=&quot;float:left;width:300px;height:250px;&quot;&gt;&lt;div style=&quot;background: #5d3861; padding: 5px; height: 100%; box-sizing: border-box; border: 3px solid #000;&quot;&gt; &lt;a target=&quot;_target&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/199-orlando-2night-stay-in-a-2bedroom-villa-40-off-2?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2845722&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; style=&quot;background-image: url(https://productimages.nimbledeals.com/nimblebuy/acf5f71a7f5a3997d948f13072ce3dd3); background-repeat: no-repeat; display: block; width: 280px; height: 52px; margin: 10px 0; outline: none; border: none; background-size: 100%; outline: none; border: none;&quot;&gt; &lt;/a&gt; &lt;div style=&quot;background: #ffffff; padding: 5px; &quot;&gt; &lt;div style=&quot;width: 138px; padding-top: 7px; overflow: hidden; padding-left: 10px; font-family: Arial, Helvetica, sans-serif; font-size: 16px; color: #000000;text-overflow: ellipsis;height: 100px;line-height: 21px; float: right;&quot;&gt; $199 -- Orlando: 2-Night Stay in a 2-Bedroom Villa, 40% Off &lt;/div&gt; &lt;img src=&quot;https://s3.amazonaws.com/product-images.imshopping.com/nimblebuy/199-orlando-2night-stay-in-a-2bedroom-villa-40-off-2-7830442-small_lv.jpg&quot; style=&quot;width: 126px; height: 92px; margin: 7px 0 10px 0; float: left;&quot; alt=&quot;$199 -- Orlando: 2-Night Stay in a 2-Bedroom Villa, 40% Off&quot; /&gt; &lt;a href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/199-orlando-2night-stay-in-a-2bedroom-villa-40-off-2?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2845722&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; target=&quot;_blank&quot; style=&quot;background: #aecb36; display: block; width: 124px; height: 39px; line-height: 40px; padding-left: 4px; font-family: Arial, Helvetica, sans-serif; font-size: 13px; color: white; text-decoration: none; border-radius: 4px; margin-bottom: 3px; text-align: center; clear: left;&quot;&gt;VIEW DEAL NOW&lt;/a&gt; &lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style=&quot;float:left;width:300px;height:250px;&quot;&gt;&lt;div style=&quot;background: #5d3861; padding: 5px; height: 100%; box-sizing: border-box; border: 3px solid #000;&quot;&gt; &lt;a target=&quot;_target&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/65-up-river-rafting-packages-into-fall-save-up-to-45?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2837012&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; style=&quot;background-image: url(https://productimages.nimbledeals.com/nimblebuy/acf5f71a7f5a3997d948f13072ce3dd3); background-repeat: no-repeat; display: block; width: 280px; height: 52px; margin: 10px 0; outline: none; border: none; background-size: 100%; outline: none; border: none;&quot;&gt; &lt;/a&gt; &lt;div style=&quot;background: #ffffff; padding: 5px; &quot;&gt; &lt;div style=&quot;width: 138px; padding-top: 7px; overflow: hidden; padding-left: 10px; font-family: Arial, Helvetica, sans-serif; font-size: 16px; color: #000000;text-overflow: ellipsis;height: 100px;line-height: 21px; float: right;&quot;&gt; Summer &amp; Fall River Rafting Packages &lt;/div&gt; &lt;img src=&quot;https://s3.amazonaws.com/product-images.imshopping.com/nimblebuy/65-up-river-rafting-packages-into-fall-save-up-to-45-7774992-small_lv.jpg&quot; style=&quot;width: 126px; height: 92px; margin: 7px 0 10px 0; float: left;&quot; alt=&quot;Summer &amp; Fall River Rafting Packages&quot; /&gt; &lt;a href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/65-up-river-rafting-packages-into-fall-save-up-to-45?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2837012&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; target=&quot;_blank&quot; style=&quot;background: #aecb36; display: block; width: 124px; height: 39px; line-height: 40px; padding-left: 4px; font-family: Arial, Helvetica, sans-serif; font-size: 13px; color: white; text-decoration: none; border-radius: 4px; margin-bottom: 3px; text-align: center; clear: left;&quot;&gt;VIEW DEAL NOW&lt;/a&gt; &lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style=&quot;float:left;width:300px;height:250px;&quot;&gt;&lt;div style=&quot;background: #5d3861; padding: 5px; height: 100%; box-sizing: border-box; border: 3px solid #000;&quot;&gt; &lt;a target=&quot;_target&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/49-taberna-wine-tapas-for-2-at-zagat-pick-reg-84?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2829792&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; style=&quot;background-image: url(https://productimages.nimbledeals.com/nimblebuy/acf5f71a7f5a3997d948f13072ce3dd3); background-repeat: no-repeat; display: block; width: 280px; height: 52px; margin: 10px 0; outline: none; border: none; background-size: 100%; outline: none; border: none;&quot;&gt; &lt;/a&gt; &lt;div style=&quot;background: #ffffff; padding: 5px; &quot;&gt; &lt;div style=&quot;width: 138px; padding-top: 7px; overflow: hidden; padding-left: 10px; font-family: Arial, Helvetica, sans-serif; font-size: 16px; color: #000000;text-overflow: ellipsis;height: 100px;line-height: 21px; float: right;&quot;&gt; $49 -- Taberna: Wine &amp; Tapas for 2 at Zagat Pick, Reg. $81 &lt;/div&gt; &lt;img src=&quot;https://s3.amazonaws.com/product-images.imshopping.com/nimblebuy/49-taberna-wine-tapas-for-2-at-zagat-pick-reg-84-7724502-small_lv.jpg&quot; style=&quot;width: 126px; height: 92px; margin: 7px 0 10px 0; float: left;&quot; alt=&quot;$49 -- Taberna: Wine &amp; Tapas for 2 at Zagat Pick, Reg. $81&quot; /&gt; &lt;a href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/49-taberna-wine-tapas-for-2-at-zagat-pick-reg-84?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2829792&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; target=&quot;_blank&quot; style=&quot;background: #aecb36; display: block; width: 124px; height: 39px; line-height: 40px; padding-left: 4px; font-family: Arial, Helvetica, sans-serif; font-size: 13px; color: white; text-decoration: none; border-radius: 4px; margin-bottom: 3px; text-align: center; clear: left;&quot;&gt;VIEW DEAL NOW&lt;/a&gt; &lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style=&quot;float:left;width:300px;height:250px;&quot;&gt;&lt;div style=&quot;background: #5d3861; padding: 5px; height: 100%; box-sizing: border-box; border: 3px solid #000;&quot;&gt; &lt;a target=&quot;_target&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/40-the-fourth-estate-80-to-spend-on-meals-wine-for-5?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2763932&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; style=&quot;background-image: url(https://productimages.nimbledeals.com/nimblebuy/acf5f71a7f5a3997d948f13072ce3dd3); background-repeat: no-repeat; display: block; width: 280px; height: 52px; margin: 10px 0; outline: none; border: none; background-size: 100%; outline: none; border: none;&quot;&gt; &lt;/a&gt; &lt;div style=&quot;background: #ffffff; padding: 5px; &quot;&gt; &lt;div style=&quot;width: 138px; padding-top: 7px; overflow: hidden; padding-left: 10px; font-family: Arial, Helvetica, sans-serif; font-size: 16px; color: #000000;text-overflow: ellipsis;height: 100px;line-height: 21px; float: right;&quot;&gt; $40 -- The Fourth Estate: $80 to Spend on Meals &amp; Wine for 2 &lt;/div&gt; &lt;img src=&quot;https://s3.amazonaws.com/product-images.imshopping.com/nimblebuy/40-the-fourth-estate-80-to-spend-on-meals-wine-for-5-7317172-small_lv.jpg&quot; style=&quot;width: 126px; height: 92px; margin: 7px 0 10px 0; float: left;&quot; alt=&quot;$40 -- The Fourth Estate: $80 to Spend on Meals &amp; Wine for 2&quot; /&gt; &lt;a href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/40-the-fourth-estate-80-to-spend-on-meals-wine-for-5?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2763932&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; target=&quot;_blank&quot; style=&quot;background: #aecb36; display: block; width: 124px; height: 39px; line-height: 40px; padding-left: 4px; font-family: Arial, Helvetica, sans-serif; font-size: 13px; color: white; text-decoration: none; border-radius: 4px; margin-bottom: 3px; text-align: center; clear: left;&quot;&gt;VIEW DEAL NOW&lt;/a&gt; &lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style=&quot;float:left;width:300px;height:250px;&quot;&gt;&lt;div style=&quot;background: #5d3861; padding: 5px; height: 100%; box-sizing: border-box; border: 3px solid #000;&quot;&gt; &lt;a target=&quot;_target&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/6-baltimore-museum-of-industry-50-off-admission-2?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2844272&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; style=&quot;background-image: url(https://productimages.nimbledeals.com/nimblebuy/acf5f71a7f5a3997d948f13072ce3dd3); background-repeat: no-repeat; display: block; width: 280px; height: 52px; margin: 10px 0; outline: none; border: none; background-size: 100%; outline: none; border: none;&quot;&gt; &lt;/a&gt; &lt;div style=&quot;background: #ffffff; padding: 5px; &quot;&gt; &lt;div style=&quot;width: 138px; padding-top: 7px; overflow: hidden; padding-left: 10px; font-family: Arial, Helvetica, sans-serif; font-size: 16px; color: #000000;text-overflow: ellipsis;height: 100px;line-height: 21px; float: right;&quot;&gt; $6 -- Baltimore Museum of Industry: 50% Off Admission &lt;/div&gt; &lt;img src=&quot;https://s3.amazonaws.com/product-images.imshopping.com/nimblebuy/6-baltimore-museum-of-industry-50-off-admission-2-7823112-small_lv.jpg&quot; style=&quot;width: 126px; height: 92px; margin: 7px 0 10px 0; float: left;&quot; alt=&quot;$6 -- Baltimore Museum of Industry: 50% Off Admission&quot; /&gt; &lt;a href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/6-baltimore-museum-of-industry-50-off-admission-2?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2844272&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; target=&quot;_blank&quot; style=&quot;background: #aecb36; display: block; width: 124px; height: 39px; line-height: 40px; padding-left: 4px; font-family: Arial, Helvetica, sans-serif; font-size: 13px; color: white; text-decoration: none; border-radius: 4px; margin-bottom: 3px; text-align: center; clear: left;&quot;&gt;VIEW DEAL NOW&lt;/a&gt; &lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style=&quot;float:left;width:300px;height:250px;&quot;&gt;&lt;div style=&quot;background: #5d3861; padding: 5px; height: 100%; box-sizing: border-box; border: 3px solid #000;&quot;&gt; &lt;a target=&quot;_target&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/55-bottomless-brunch-for-2-at-aggio-by-bryan-voltaggio-3?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2828492&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; style=&quot;background-image: url(https://productimages.nimbledeals.com/nimblebuy/acf5f71a7f5a3997d948f13072ce3dd3); background-repeat: no-repeat; display: block; width: 280px; height: 52px; margin: 10px 0; outline: none; border: none; background-size: 100%; outline: none; border: none;&quot;&gt; &lt;/a&gt; &lt;div style=&quot;background: #ffffff; padding: 5px; &quot;&gt; &lt;div style=&quot;width: 138px; padding-top: 7px; overflow: hidden; padding-left: 10px; font-family: Arial, Helvetica, sans-serif; font-size: 16px; color: #000000;text-overflow: ellipsis;height: 100px;line-height: 21px; float: right;&quot;&gt; $55 -- Bottomless Brunch for 2 at Aggio by Bryan Voltaggio &lt;/div&gt; &lt;img src=&quot;https://s3.amazonaws.com/product-images.imshopping.com/nimblebuy/55-bottomless-brunch-for-2-at-aggio-by-bryan-voltaggio-3-7716252-small_lv.jpg&quot; style=&quot;width: 126px; height: 92px; margin: 7px 0 10px 0; float: left;&quot; alt=&quot;$55 -- Bottomless Brunch for 2 at Aggio by Bryan Voltaggio&quot; /&gt; &lt;a href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/55-bottomless-brunch-for-2-at-aggio-by-bryan-voltaggio-3?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2828492&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; target=&quot;_blank&quot; style=&quot;background: #aecb36; display: block; width: 124px; height: 39px; line-height: 40px; padding-left: 4px; font-family: Arial, Helvetica, sans-serif; font-size: 13px; color: white; text-decoration: none; border-radius: 4px; margin-bottom: 3px; text-align: center; clear: left;&quot;&gt;VIEW DEAL NOW&lt;/a&gt; &lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style=&quot;float:left;width:300px;height:250px;&quot;&gt;&lt;div style=&quot;background: #5d3861; padding: 5px; height: 100%; box-sizing: border-box; border: 3px solid #000;&quot;&gt; &lt;a target=&quot;_target&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/45-comedy-factory-night-for-2-wendless-drinks-reg-96?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2822402&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; style=&quot;background-image: url(https://productimages.nimbledeals.com/nimblebuy/acf5f71a7f5a3997d948f13072ce3dd3); background-repeat: no-repeat; display: block; width: 280px; height: 52px; margin: 10px 0; outline: none; border: none; background-size: 100%; outline: none; border: none;&quot;&gt; &lt;/a&gt; &lt;div style=&quot;background: #ffffff; padding: 5px; &quot;&gt; &lt;div style=&quot;width: 138px; padding-top: 7px; overflow: hidden; padding-left: 10px; font-family: Arial, Helvetica, sans-serif; font-size: 16px; color: #000000;text-overflow: ellipsis;height: 100px;line-height: 21px; float: right;&quot;&gt; $45 -- Comedy Factory Night for 2 w/Endless Drinks, Reg. $88 &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-96-7669622-small_lv.jpg&quot; style=&quot;width: 126px; height: 92px; margin: 7px 0 10px 0; float: left;&quot; alt=&quot;$45 -- Comedy Factory Night for 2 w/Endless Drinks, Reg. $88&quot; /&gt; &lt;a href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/45-comedy-factory-night-for-2-wendless-drinks-reg-96?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2822402&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; target=&quot;_blank&quot; style=&quot;background: #aecb36; display: block; width: 124px; height: 39px; line-height: 40px; padding-left: 4px; font-family: Arial, Helvetica, sans-serif; font-size: 13px; color: white; text-decoration: none; border-radius: 4px; margin-bottom: 3px; text-align: center; clear: left;&quot;&gt;VIEW DEAL NOW&lt;/a&gt; &lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style=&quot;float:left;width:300px;height:250px;&quot;&gt;&lt;div style=&quot;background: #5d3861; padding: 5px; height: 100%; box-sizing: border-box; border: 3px solid #000;&quot;&gt; &lt;a target=&quot;_target&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/39-musttry-fried-chicken-dinner-from-bryan-voltaggio-3?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2828472&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; style=&quot;background-image: url(https://productimages.nimbledeals.com/nimblebuy/acf5f71a7f5a3997d948f13072ce3dd3); background-repeat: no-repeat; display: block; width: 280px; height: 52px; margin: 10px 0; outline: none; border: none; background-size: 100%; outline: none; border: none;&quot;&gt; &lt;/a&gt; &lt;div style=&quot;background: #ffffff; padding: 5px; &quot;&gt; &lt;div style=&quot;width: 138px; padding-top: 7px; overflow: hidden; padding-left: 10px; font-family: Arial, Helvetica, sans-serif; font-size: 16px; color: #000000;text-overflow: ellipsis;height: 100px;line-height: 21px; float: right;&quot;&gt; $39 -- &#39;Must-Try&#39; Fried Chicken Dinner from Bryan Voltaggio &lt;/div&gt; &lt;img src=&quot;https://s3.amazonaws.com/product-images.imshopping.com/nimblebuy/39-musttry-fried-chicken-dinner-from-bryan-voltaggio-3-7716082-small_lv.jpg&quot; style=&quot;width: 126px; height: 92px; margin: 7px 0 10px 0; float: left;&quot; alt=&quot;$39 -- &#39;Must-Try&#39; Fried Chicken Dinner from Bryan Voltaggio&quot; /&gt; &lt;a href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/39-musttry-fried-chicken-dinner-from-bryan-voltaggio-3?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2828472&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; target=&quot;_blank&quot; style=&quot;background: #aecb36; display: block; width: 124px; height: 39px; line-height: 40px; padding-left: 4px; font-family: Arial, Helvetica, sans-serif; font-size: 13px; color: white; text-decoration: none; border-radius: 4px; margin-bottom: 3px; text-align: center; clear: left;&quot;&gt;VIEW DEAL NOW&lt;/a&gt; &lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style=&quot;float:left;width:300px;height:250px;&quot;&gt;&lt;div style=&quot;background: #5d3861; padding: 5px; height: 100%; box-sizing: border-box; border: 3px solid #000;&quot;&gt; &lt;a target=&quot;_target&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/14-up-potomac-river-cruises-thru-summer-up-to-50-off-1?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2687442&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; style=&quot;background-image: url(https://productimages.nimbledeals.com/nimblebuy/acf5f71a7f5a3997d948f13072ce3dd3); background-repeat: no-repeat; display: block; width: 280px; height: 52px; margin: 10px 0; outline: none; border: none; background-size: 100%; outline: none; border: none;&quot;&gt; &lt;/a&gt; &lt;div style=&quot;background: #ffffff; padding: 5px; &quot;&gt; &lt;div style=&quot;width: 138px; padding-top: 7px; overflow: hidden; padding-left: 10px; font-family: Arial, Helvetica, sans-serif; font-size: 16px; color: #000000;text-overflow: ellipsis;height: 100px;line-height: 21px; float: right;&quot;&gt; $14 &amp; up -- Potomac River Cruises thru Summer, up to 50% Off &lt;/div&gt; &lt;img src=&quot;https://s3.amazonaws.com/product-images.imshopping.com/nimblebuy/14-up-potomac-river-cruises-thru-summer-up-to-50-off-1-6926372-small_lv.jpg&quot; style=&quot;width: 126px; height: 92px; margin: 7px 0 10px 0; float: left;&quot; alt=&quot;$14 &amp; up -- Potomac River Cruises thru Summer, up to 50% Off&quot; /&gt; &lt;a href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/14-up-potomac-river-cruises-thru-summer-up-to-50-off-1?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2687442&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; target=&quot;_blank&quot; style=&quot;background: #aecb36; display: block; width: 124px; height: 39px; line-height: 40px; padding-left: 4px; font-family: Arial, Helvetica, sans-serif; font-size: 13px; color: white; text-decoration: none; border-radius: 4px; margin-bottom: 3px; text-align: center; clear: left;&quot;&gt;VIEW DEAL NOW&lt;/a&gt; &lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style=&quot;float:left;width:300px;height:250px;&quot;&gt;&lt;div style=&quot;background: #5d3861; padding: 5px; height: 100%; box-sizing: border-box; border: 3px solid #000;&quot;&gt; &lt;a target=&quot;_target&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/39-washington-post-pick-unlimited-mimosa-brunch-for-5?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2822482&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; style=&quot;background-image: url(https://productimages.nimbledeals.com/nimblebuy/acf5f71a7f5a3997d948f13072ce3dd3); background-repeat: no-repeat; display: block; width: 280px; height: 52px; margin: 10px 0; outline: none; border: none; background-size: 100%; outline: none; border: none;&quot;&gt; &lt;/a&gt; &lt;div style=&quot;background: #ffffff; padding: 5px; &quot;&gt; &lt;div style=&quot;width: 138px; padding-top: 7px; overflow: hidden; padding-left: 10px; font-family: Arial, Helvetica, sans-serif; font-size: 16px; color: #000000;text-overflow: ellipsis;height: 100px;line-height: 21px; float: right;&quot;&gt; Washington Post Pick: Unlimited Mimosa Brunch or Dinner at Bayou &lt;/div&gt; &lt;img src=&quot;https://s3.amazonaws.com/product-images.imshopping.com/nimblebuy/39-washington-post-pick-unlimited-mimosa-brunch-for-5-7670132-small_lv.jpg&quot; style=&quot;width: 126px; height: 92px; margin: 7px 0 10px 0; float: left;&quot; alt=&quot;Washington Post Pick: Unlimited Mimosa Brunch or Dinner at Bayou&quot; /&gt; &lt;a href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/39-washington-post-pick-unlimited-mimosa-brunch-for-5?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2822482&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; target=&quot;_blank&quot; style=&quot;background: #aecb36; display: block; width: 124px; height: 39px; line-height: 40px; padding-left: 4px; font-family: Arial, Helvetica, sans-serif; font-size: 13px; color: white; text-decoration: none; border-radius: 4px; margin-bottom: 3px; text-align: center; clear: left;&quot;&gt;VIEW DEAL NOW&lt;/a&gt; &lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style=&quot;float:left;width:300px;height:250px;&quot;&gt;&lt;div style=&quot;background: #5d3861; padding: 5px; height: 100%; box-sizing: border-box; border: 3px solid #000;&quot;&gt; &lt;a target=&quot;_target&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/999-2hour-private-potomac-charter-for-120-reg-2005?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2737992&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; style=&quot;background-image: url(https://productimages.nimbledeals.com/nimblebuy/acf5f71a7f5a3997d948f13072ce3dd3); background-repeat: no-repeat; display: block; width: 280px; height: 52px; margin: 10px 0; outline: none; border: none; background-size: 100%; outline: none; border: none;&quot;&gt; &lt;/a&gt; &lt;div style=&quot;background: #ffffff; padding: 5px; &quot;&gt; &lt;div style=&quot;width: 138px; padding-top: 7px; overflow: hidden; padding-left: 10px; font-family: Arial, Helvetica, sans-serif; font-size: 16px; color: #000000;text-overflow: ellipsis;height: 100px;line-height: 21px; float: right;&quot;&gt; $999 -- 2-Hour Private Potomac Charter for 74, Reg. $2000 &lt;/div&gt; &lt;img src=&quot;https://s3.amazonaws.com/product-images.imshopping.com/nimblebuy/999-2hour-private-potomac-charter-for-120-reg-2005-7168612-small_lv.jpg&quot; style=&quot;width: 126px; height: 92px; margin: 7px 0 10px 0; float: left;&quot; alt=&quot;$999 -- 2-Hour Private Potomac Charter for 74, Reg. $2000&quot; /&gt; &lt;a href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/999-2hour-private-potomac-charter-for-120-reg-2005?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2737992&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; target=&quot;_blank&quot; style=&quot;background: #aecb36; display: block; width: 124px; height: 39px; line-height: 40px; padding-left: 4px; font-family: Arial, Helvetica, sans-serif; font-size: 13px; color: white; text-decoration: none; border-radius: 4px; margin-bottom: 3px; text-align: center; clear: left;&quot;&gt;VIEW DEAL NOW&lt;/a&gt; &lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style=&quot;float:left;width:300px;height:250px;&quot;&gt;&lt;div style=&quot;background: #5d3861; padding: 5px; height: 100%; box-sizing: border-box; border: 3px solid #000;&quot;&gt; &lt;a target=&quot;_target&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/99-salamander-resort-2016-zipline-tour-reg-170?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2787552&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; style=&quot;background-image: url(https://productimages.nimbledeals.com/nimblebuy/acf5f71a7f5a3997d948f13072ce3dd3); background-repeat: no-repeat; display: block; width: 280px; height: 52px; margin: 10px 0; outline: none; border: none; background-size: 100%; outline: none; border: none;&quot;&gt; &lt;/a&gt; &lt;div style=&quot;background: #ffffff; padding: 5px; &quot;&gt; &lt;div style=&quot;width: 138px; padding-top: 7px; overflow: hidden; padding-left: 10px; font-family: Arial, Helvetica, sans-serif; font-size: 16px; color: #000000;text-overflow: ellipsis;height: 100px;line-height: 21px; float: right;&quot;&gt; $99 -- Salamander Resort: Zip-Line Tour in Summer, Reg. $164 &lt;/div&gt; &lt;img src=&quot;https://s3.amazonaws.com/product-images.imshopping.com/nimblebuy/99-salamander-resort-2016-zipline-tour-reg-170-7436662-small_lv.jpg&quot; style=&quot;width: 126px; height: 92px; margin: 7px 0 10px 0; float: left;&quot; alt=&quot;$99 -- Salamander Resort: Zip-Line Tour in Summer, Reg. $164 &quot; /&gt; &lt;a href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/99-salamander-resort-2016-zipline-tour-reg-170?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2787552&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; target=&quot;_blank&quot; style=&quot;background: #aecb36; display: block; width: 124px; height: 39px; line-height: 40px; padding-left: 4px; font-family: Arial, Helvetica, sans-serif; font-size: 13px; color: white; text-decoration: none; border-radius: 4px; margin-bottom: 3px; text-align: center; clear: left;&quot;&gt;VIEW DEAL NOW&lt;/a&gt; &lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style=&quot;float:left;width:300px;height:250px;&quot;&gt;&lt;div style=&quot;background: #5d3861; padding: 5px; height: 100%; box-sizing: border-box; border: 3px solid #000;&quot;&gt; &lt;a target=&quot;_target&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/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-image: url(https://productimages.nimbledeals.com/nimblebuy/acf5f71a7f5a3997d948f13072ce3dd3); background-repeat: no-repeat; display: block; width: 280px; height: 52px; margin: 10px 0; outline: none; border: none; background-size: 100%; outline: none; border: none;&quot;&gt; &lt;/a&gt; &lt;div style=&quot;background: #ffffff; padding: 5px; &quot;&gt; &lt;div style=&quot;width: 138px; padding-top: 7px; overflow: hidden; padding-left: 10px; font-family: Arial, Helvetica, sans-serif; font-size: 16px; color: #000000;text-overflow: ellipsis;height: 100px;line-height: 21px; float: right;&quot;&gt; $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: 7px 0 10px 0; float: left;&quot; alt=&quot;$135 -- Shenandoah Valley Hot Air Balloon Ride for 1&quot; /&gt; &lt;a 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; target=&quot;_blank&quot; style=&quot;background: #aecb36; display: block; width: 124px; height: 39px; line-height: 40px; padding-left: 4px; font-family: Arial, Helvetica, sans-serif; font-size: 13px; color: white; text-decoration: none; border-radius: 4px; margin-bottom: 3px; text-align: center; clear: left;&quot;&gt;VIEW DEAL NOW&lt;/a&gt; &lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style=&quot;float:left;width:300px;height:250px;&quot;&gt;&lt;div style=&quot;background: #5d3861; padding: 5px; height: 100%; box-sizing: border-box; border: 3px solid #000;&quot;&gt; &lt;a target=&quot;_target&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/30-little-washington-wine-bootcamp-for-2-reg-84?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2702202&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; style=&quot;background-image: url(https://productimages.nimbledeals.com/nimblebuy/acf5f71a7f5a3997d948f13072ce3dd3); background-repeat: no-repeat; display: block; width: 280px; height: 52px; margin: 10px 0; outline: none; border: none; background-size: 100%; outline: none; border: none;&quot;&gt; &lt;/a&gt; &lt;div style=&quot;background: #ffffff; padding: 5px; &quot;&gt; &lt;div style=&quot;width: 138px; padding-top: 7px; overflow: hidden; padding-left: 10px; font-family: Arial, Helvetica, sans-serif; font-size: 16px; color: #000000;text-overflow: ellipsis;height: 100px;line-height: 21px; float: right;&quot;&gt; $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-84-7006762-small_lv.jpg&quot; style=&quot;width: 126px; height: 92px; margin: 7px 0 10px 0; float: left;&quot; alt=&quot;$30 -- Little Washington: Wine Bootcamp for 2, Reg. $80&quot; /&gt; &lt;a href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/30-little-washington-wine-bootcamp-for-2-reg-84?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2702202&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; target=&quot;_blank&quot; style=&quot;background: #aecb36; display: block; width: 124px; height: 39px; line-height: 40px; padding-left: 4px; font-family: Arial, Helvetica, sans-serif; font-size: 13px; color: white; text-decoration: none; border-radius: 4px; margin-bottom: 3px; text-align: center; clear: left;&quot;&gt;VIEW DEAL NOW&lt;/a&gt; &lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style=&quot;float:left;width:300px;height:250px;&quot;&gt;&lt;div style=&quot;background: #5d3861; padding: 5px; height: 100%; box-sizing: border-box; border: 3px solid #000;&quot;&gt; &lt;a target=&quot;_target&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/19-dc-memorials-bus-tour-wstops-at-7-landmarks-3?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2822432&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; style=&quot;background-image: url(https://productimages.nimbledeals.com/nimblebuy/acf5f71a7f5a3997d948f13072ce3dd3); background-repeat: no-repeat; display: block; width: 280px; height: 52px; margin: 10px 0; outline: none; border: none; background-size: 100%; outline: none; border: none;&quot;&gt; &lt;/a&gt; &lt;div style=&quot;background: #ffffff; padding: 5px; &quot;&gt; &lt;div style=&quot;width: 138px; padding-top: 7px; overflow: hidden; padding-left: 10px; font-family: Arial, Helvetica, sans-serif; font-size: 16px; color: #000000;text-overflow: ellipsis;height: 100px;line-height: 21px; float: right;&quot;&gt; $19 -- D.C. Memorials Bus Tour w/Stops at 7 Landmarks &lt;/div&gt; &lt;img src=&quot;https://s3.amazonaws.com/product-images.imshopping.com/nimblebuy/19-dc-memorials-bus-tour-wstops-at-7-landmarks-3-7669812-small_lv.jpg&quot; style=&quot;width: 126px; height: 92px; margin: 7px 0 10px 0; float: left;&quot; alt=&quot;$19 -- D.C. Memorials Bus Tour w/Stops at 7 Landmarks&quot; /&gt; &lt;a href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/19-dc-memorials-bus-tour-wstops-at-7-landmarks-3?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2822432&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; target=&quot;_blank&quot; style=&quot;background: #aecb36; display: block; width: 124px; height: 39px; line-height: 40px; padding-left: 4px; font-family: Arial, Helvetica, sans-serif; font-size: 13px; color: white; text-decoration: none; border-radius: 4px; margin-bottom: 3px; text-align: center; clear: left;&quot;&gt;VIEW DEAL NOW&lt;/a&gt; &lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style=&quot;float:left;width:300px;height:250px;&quot;&gt;&lt;div style=&quot;background: #5d3861; padding: 5px; height: 100%; box-sizing: border-box; border: 3px solid #000;&quot;&gt; &lt;a target=&quot;_target&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/49-dc-harvest-farmtotable-dinner-for-2-50-off-3?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2787512&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; style=&quot;background-image: url(https://productimages.nimbledeals.com/nimblebuy/acf5f71a7f5a3997d948f13072ce3dd3); background-repeat: no-repeat; display: block; width: 280px; height: 52px; margin: 10px 0; outline: none; border: none; background-size: 100%; outline: none; border: none;&quot;&gt; &lt;/a&gt; &lt;div style=&quot;background: #ffffff; padding: 5px; &quot;&gt; &lt;div style=&quot;width: 138px; padding-top: 7px; overflow: hidden; padding-left: 10px; font-family: Arial, Helvetica, sans-serif; font-size: 16px; color: #000000;text-overflow: ellipsis;height: 100px;line-height: 21px; float: right;&quot;&gt; $49 -- DC Harvest: Farm-to-Table Dinner for 2, 50% Off &lt;/div&gt; &lt;img src=&quot;https://s3.amazonaws.com/product-images.imshopping.com/nimblebuy/49-dc-harvest-farmtotable-dinner-for-2-50-off-3-7436362-small_lv.jpg&quot; style=&quot;width: 126px; height: 92px; margin: 7px 0 10px 0; float: left;&quot; alt=&quot;$49 -- DC Harvest: Farm-to-Table Dinner for 2, 50% Off&quot; /&gt; &lt;a href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/49-dc-harvest-farmtotable-dinner-for-2-50-off-3?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2787512&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; target=&quot;_blank&quot; style=&quot;background: #aecb36; display: block; width: 124px; height: 39px; line-height: 40px; padding-left: 4px; font-family: Arial, Helvetica, sans-serif; font-size: 13px; color: white; text-decoration: none; border-radius: 4px; margin-bottom: 3px; text-align: center; clear: left;&quot;&gt;VIEW DEAL NOW&lt;/a&gt; &lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style=&quot;float:left;width:300px;height:250px;&quot;&gt;&lt;div style=&quot;background: #5d3861; padding: 5px; height: 100%; box-sizing: border-box; border: 3px solid #000;&quot;&gt; &lt;a target=&quot;_target&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/36-awardwinning-winery-tour-picnic-for-2-reg-93?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2787492&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; style=&quot;background-image: url(https://productimages.nimbledeals.com/nimblebuy/acf5f71a7f5a3997d948f13072ce3dd3); background-repeat: no-repeat; display: block; width: 280px; height: 52px; margin: 10px 0; outline: none; border: none; background-size: 100%; outline: none; border: none;&quot;&gt; &lt;/a&gt; &lt;div style=&quot;background: #ffffff; padding: 5px; &quot;&gt; &lt;div style=&quot;width: 138px; padding-top: 7px; overflow: hidden; padding-left: 10px; font-family: Arial, Helvetica, sans-serif; font-size: 16px; color: #000000;text-overflow: ellipsis;height: 100px;line-height: 21px; float: right;&quot;&gt; $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-93-7436212-small_lv.jpg&quot; style=&quot;width: 126px; height: 92px; margin: 7px 0 10px 0; float: left;&quot; alt=&quot;$36 -- Award-Winning Winery: Tour &amp; Picnic for 2, Reg. $85&quot; /&gt; &lt;a href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/36-awardwinning-winery-tour-picnic-for-2-reg-93?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2787492&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; target=&quot;_blank&quot; style=&quot;background: #aecb36; display: block; width: 124px; height: 39px; line-height: 40px; padding-left: 4px; font-family: Arial, Helvetica, sans-serif; font-size: 13px; color: white; text-decoration: none; border-radius: 4px; margin-bottom: 3px; text-align: center; clear: left;&quot;&gt;VIEW DEAL NOW&lt;/a&gt; &lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style=&quot;float:left;width:300px;height:250px;&quot;&gt;&lt;div style=&quot;background: #5d3861; padding: 5px; height: 100%; box-sizing: border-box; border: 3px solid #000;&quot;&gt; &lt;a target=&quot;_target&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/annapolis-byob-summer-boat-parties-up-to-50-off-3?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2828482&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; style=&quot;background-image: url(https://productimages.nimbledeals.com/nimblebuy/acf5f71a7f5a3997d948f13072ce3dd3); background-repeat: no-repeat; display: block; width: 280px; height: 52px; margin: 10px 0; outline: none; border: none; background-size: 100%; outline: none; border: none;&quot;&gt; &lt;/a&gt; &lt;div style=&quot;background: #ffffff; padding: 5px; &quot;&gt; &lt;div style=&quot;width: 138px; padding-top: 7px; overflow: hidden; padding-left: 10px; font-family: Arial, Helvetica, sans-serif; font-size: 16px; color: #000000;text-overflow: ellipsis;height: 100px;line-height: 21px; float: right;&quot;&gt; Annapolis: BYOB Summer Boat Parties, up to 50% Off &lt;/div&gt; &lt;img src=&quot;https://s3.amazonaws.com/product-images.imshopping.com/nimblebuy/annapolis-byob-summer-boat-parties-up-to-50-off-3-7716132-small_lv.jpg&quot; style=&quot;width: 126px; height: 92px; margin: 7px 0 10px 0; float: left;&quot; alt=&quot;Annapolis: BYOB Summer Boat Parties, up to 50% Off&quot; /&gt; &lt;a href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/annapolis-byob-summer-boat-parties-up-to-50-off-3?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2828482&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; target=&quot;_blank&quot; style=&quot;background: #aecb36; display: block; width: 124px; height: 39px; line-height: 40px; padding-left: 4px; font-family: Arial, Helvetica, sans-serif; font-size: 13px; color: white; text-decoration: none; border-radius: 4px; margin-bottom: 3px; text-align: center; clear: left;&quot;&gt;VIEW DEAL NOW&lt;/a&gt; &lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style=&quot;float:left;width:300px;height:250px;&quot;&gt;&lt;div style=&quot;background: #5d3861; padding: 5px; height: 100%; box-sizing: border-box; border: 3px solid #000;&quot;&gt; &lt;a target=&quot;_target&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/national-mall-segway-tours-for-1-or-2-up-to-40-off-7?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2687382&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; style=&quot;background-image: url(https://productimages.nimbledeals.com/nimblebuy/acf5f71a7f5a3997d948f13072ce3dd3); background-repeat: no-repeat; display: block; width: 280px; height: 52px; margin: 10px 0; outline: none; border: none; background-size: 100%; outline: none; border: none;&quot;&gt; &lt;/a&gt; &lt;div style=&quot;background: #ffffff; padding: 5px; &quot;&gt; &lt;div style=&quot;width: 138px; padding-top: 7px; overflow: hidden; padding-left: 10px; font-family: Arial, Helvetica, sans-serif; font-size: 16px; color: #000000;text-overflow: ellipsis;height: 100px;line-height: 21px; float: right;&quot;&gt; National Mall Segway Tours for 1 or 2, up to 40% Off &lt;/div&gt; &lt;img src=&quot;https://s3.amazonaws.com/product-images.imshopping.com/nimblebuy/national-mall-segway-tours-for-1-or-2-up-to-40-off-7-6925922-small_lv.jpg&quot; style=&quot;width: 126px; height: 92px; margin: 7px 0 10px 0; float: left;&quot; alt=&quot;National Mall Segway Tours for 1 or 2, up to 40% Off&quot; /&gt; &lt;a href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/national-mall-segway-tours-for-1-or-2-up-to-40-off-7?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2687382&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; target=&quot;_blank&quot; style=&quot;background: #aecb36; display: block; width: 124px; height: 39px; line-height: 40px; padding-left: 4px; font-family: Arial, Helvetica, sans-serif; font-size: 13px; color: white; text-decoration: none; border-radius: 4px; margin-bottom: 3px; text-align: center; clear: left;&quot;&gt;VIEW DEAL NOW&lt;/a&gt; &lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style=&quot;float:left;width:300px;height:250px;&quot;&gt;&lt;div style=&quot;background: #5d3861; padding: 5px; height: 100%; box-sizing: border-box; border: 3px solid #000;&quot;&gt; &lt;a target=&quot;_target&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/taberna-paellamaking-class-wdinner-sangria-45-off-3?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2725762&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; style=&quot;background-image: url(https://productimages.nimbledeals.com/nimblebuy/acf5f71a7f5a3997d948f13072ce3dd3); background-repeat: no-repeat; display: block; width: 280px; height: 52px; margin: 10px 0; outline: none; border: none; background-size: 100%; outline: none; border: none;&quot;&gt; &lt;/a&gt; &lt;div style=&quot;background: #ffffff; padding: 5px; &quot;&gt; &lt;div style=&quot;width: 138px; padding-top: 7px; overflow: hidden; padding-left: 10px; font-family: Arial, Helvetica, sans-serif; font-size: 16px; color: #000000;text-overflow: ellipsis;height: 100px;line-height: 21px; float: right;&quot;&gt; Taberna: Paella-Making Class w/Dinner &amp; Sangria, 45% Off &lt;/div&gt; &lt;img src=&quot;https://s3.amazonaws.com/product-images.imshopping.com/nimblebuy/taberna-paellamaking-class-wdinner-sangria-45-off-3-7106372-small_lv.jpg&quot; style=&quot;width: 126px; height: 92px; margin: 7px 0 10px 0; float: left;&quot; alt=&quot;Taberna: Paella-Making Class w/Dinner &amp; Sangria, 45% Off&quot; /&gt; &lt;a href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/taberna-paellamaking-class-wdinner-sangria-45-off-3?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2725762&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; target=&quot;_blank&quot; style=&quot;background: #aecb36; display: block; width: 124px; height: 39px; line-height: 40px; padding-left: 4px; font-family: Arial, Helvetica, sans-serif; font-size: 13px; color: white; text-decoration: none; border-radius: 4px; margin-bottom: 3px; text-align: center; clear: left;&quot;&gt;VIEW DEAL NOW&lt;/a&gt; &lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style=&quot;float:left;width:300px;height:250px;&quot;&gt;&lt;div style=&quot;background: #5d3861; padding: 5px; height: 100%; box-sizing: border-box; border: 3px solid #000;&quot;&gt; &lt;a target=&quot;_target&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/66-mount-vernon-bike-trip-w-boat-tour-for-1-reg-90?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2687372&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; style=&quot;background-image: url(https://productimages.nimbledeals.com/nimblebuy/acf5f71a7f5a3997d948f13072ce3dd3); background-repeat: no-repeat; display: block; width: 280px; height: 52px; margin: 10px 0; outline: none; border: none; background-size: 100%; outline: none; border: none;&quot;&gt; &lt;/a&gt; &lt;div style=&quot;background: #ffffff; padding: 5px; &quot;&gt; &lt;div style=&quot;width: 138px; padding-top: 7px; overflow: hidden; padding-left: 10px; font-family: Arial, Helvetica, sans-serif; font-size: 16px; color: #000000;text-overflow: ellipsis;height: 100px;line-height: 21px; float: right;&quot;&gt; $66 -- Mount Vernon Bike Trip w/ Boat Tour for 1, Reg. $83 &lt;/div&gt; &lt;img src=&quot;https://s3.amazonaws.com/product-images.imshopping.com/nimblebuy/66-mount-vernon-bike-trip-w-boat-tour-for-1-reg-90-6925802-small_lv.jpg&quot; style=&quot;width: 126px; height: 92px; margin: 7px 0 10px 0; float: left;&quot; alt=&quot;$66 -- Mount Vernon Bike Trip w/ Boat Tour for 1, Reg. $83&quot; /&gt; &lt;a href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/66-mount-vernon-bike-trip-w-boat-tour-for-1-reg-90?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2687372&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; target=&quot;_blank&quot; style=&quot;background: #aecb36; display: block; width: 124px; height: 39px; line-height: 40px; padding-left: 4px; font-family: Arial, Helvetica, sans-serif; font-size: 13px; color: white; text-decoration: none; border-radius: 4px; margin-bottom: 3px; text-align: center; clear: left;&quot;&gt;VIEW DEAL NOW&lt;/a&gt; &lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style=&quot;float:left;width:300px;height:250px;&quot;&gt;&lt;div style=&quot;background: #5d3861; padding: 5px; height: 100%; box-sizing: border-box; border: 3px solid #000;&quot;&gt; &lt;a target=&quot;_target&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/15-up-kids-language-lessons-winner-of-25-awards-5?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2694762&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; style=&quot;background-image: url(https://productimages.nimbledeals.com/nimblebuy/acf5f71a7f5a3997d948f13072ce3dd3); background-repeat: no-repeat; display: block; width: 280px; height: 52px; margin: 10px 0; outline: none; border: none; background-size: 100%; outline: none; border: none;&quot;&gt; &lt;/a&gt; &lt;div style=&quot;background: #ffffff; padding: 5px; &quot;&gt; &lt;div style=&quot;width: 138px; padding-top: 7px; overflow: hidden; padding-left: 10px; font-family: Arial, Helvetica, sans-serif; font-size: 16px; color: #000000;text-overflow: ellipsis;height: 100px;line-height: 21px; float: right;&quot;&gt; $15 &amp; up -- Kids&#39; Language Lessons: Winner of 25 Awards &lt;/div&gt; &lt;img src=&quot;https://s3.amazonaws.com/product-images.imshopping.com/nimblebuy/15-up-kids-language-lessons-winner-of-25-awards-5-6968512-small_lv.jpg&quot; style=&quot;width: 126px; height: 92px; margin: 7px 0 10px 0; float: left;&quot; alt=&quot;$15 &amp; up -- Kids&#39; Language Lessons: Winner of 25 Awards&quot; /&gt; &lt;a href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/15-up-kids-language-lessons-winner-of-25-awards-5?merchantId=1791&amp;wId=27281&amp;utm_medium=AdUnit&amp;utm_campaign=300+x+250_2694762&amp;host=www.thecapitoldeal.com&amp;site=en&amp;utm_source=300+x+250&quot; target=&quot;_blank&quot; style=&quot;background: #aecb36; display: block; width: 124px; height: 39px; line-height: 40px; padding-left: 4px; font-family: Arial, Helvetica, sans-serif; font-size: 13px; color: white; text-decoration: none; border-radius: 4px; margin-bottom: 3px; text-align: center; clear: left;&quot;&gt;VIEW DEAL NOW&lt;/a&gt; &lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style=&quot;float:left;width:300px;height:250px;&quot;&gt;&lt;div style=&quot;background: #5d3861; padding: 5px; height: 100%; box-sizing: border-box; border: 3px solid #000;&quot;&gt; &lt;a target=&quot;_target&quot; href=&quot;https://www.thecapitoldeal.com/deal/washington-dc/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-image: url(https://productimages.nimbledeals.com/nimblebuy/acf5f71a7f5a3997d948f13072ce3dd3); background-repeat: no-repeat; display: block; width: 280px; height: 52px; margin: 10px 0; outline: none; border: none; background-size: 100%; outline: none; border: none;&quot;&gt; &lt;/a&gt; &lt;div style=&quot;background: #ffffff; padding: 5px; &quot;&gt; &lt;div style=&quot;width: 138px; padding-top: 7px; overflow: hidden; padding-left: 10px; font-family: Arial, Helvetica, sans-serif; font-size: 16px; color: #000000;text-overflow: ellipsis;height: 100px;line-height: 21px; float: right;&quot;&gt; $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: 7px 0 10px 0; float: left;&quot; alt=&quot;$21 -- Capital Sites or Monuments Bike Tour for 1, Reg. $45&quot; /&gt; &lt;a 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; target=&quot;_blank&quot; style=&quot;background: #aecb36; display: block; width: 124px; height: 39px; line-height: 40px; padding-left: 4px; font-family: Arial, Helvetica, sans-serif; font-size: 13px; color: white; text-decoration: none; border-radius: 4px; margin-bottom: 3px; text-align: center; clear: left;&quot;&gt;VIEW DEAL NOW&lt;/a&gt; &lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;";		return UtilInit.htmlDecode(s);	}};var WidgetParams27281 = {	id: '27281',		rootUrl: 'http://us2widget.nimblecommerce.com',	imsAppUrl: 'http://www.imshopping.com',	widgetWidth: '300',	widgetHeight: '250',	widgetOffersSize: 46,	rotateTimeInterval: 5000, 	urlSuffixForIms: ''};var WidgetLocalizationProps27281 = {	day: 'd',	hour: 'h',	min: 'm',	sec: 's'};WidgetInit.install(WidgetHtml27281,  WidgetParams27281, WidgetLocalizationProps27281);