								<div class="wrap ">
									<div class="fix"></div>
																											<div class="flickr_badge_image start"><a href="{faq}" target="_top">doesn\'t allow embedding within frames</a>.<br><br>If you\'d like to view this content, <a href="{url}" target="_top">please click here</a>.', 'https://www.flickr.com', true, false));

</script>
<script type="text/javascript" nonce="023e496b433c74fc843d6313c6ef2e2d">	
if(window.opener&&window.location.href.match(/photo_grease_postlogin.gne/)){window.opener.location=window.location;window.close();}

</script>



<!--[if LT IE 7]>
<style type="text/css">
.trans_png {
	behavior: url('/javascript/pngbehavior2.htc');
	border:0;
}
</style>
<![endif]-->



<!-- global js vars -->

<script type="text/javascript" nonce="023e496b433c74fc843d6313c6ef2e2d">
var global_magisterLudi = '176021093154138467d0fdcff8b384a3',
global_auth_hash = '9e1feb94a651a91420117ac6b794f1ed',
global_auth_token = '',
global_flickr_secret = 'a24423f982360684',
global_slideShowVersion = '1002875565',
global_slideShowCodeVersion = '2483848801',
global_slideShowVersionV2 = '2568297995',
global_slideShowCodeVersionV2 = '937268811',
global_slideShowTextVersion = '4100841610',
global_slideShowVersionV3 = '3687798455',
global_nsid = '',
global_hashed_nsid = '',
global_ispro = 0,
global_dbid = '',
global_name ='',
global_expire ='',
global_icon_url ='https://combo.staticflickr.com/pw/images/buddyicon00.png#',
global_tag_limit = '75',
	global_collection_depth_limit = 5,
	global_stewartVersion = '2968162862',
global_contact_limit = '100000',
global_eighteen = 1,
global_group_limit = 30,
global_photos_ids_limit = 20,
disable_stewart = 0;
disable_geo = 0;

var global_widget_carets = 0;
var global_explore_search = 1;

var global_intl_lang = 'en-us';

var _photo_root = 'https://live.staticflickr.com/';
 var _video_root = 'https://live.staticflickr.com/';
var _site_root = 'https://www.flickr.com';
var _images_root = 'https://combo.staticflickr.com/pw/images';
var _intl_images_root = 'https://combo.staticflickr.com/pw/images/en-us';
var _enable_popup_login = 1;
var do_bbml = 1;

</script>
<script type="text/javascript" src="https://combo.staticflickr.com/pw/javascript/global.js.v2027547896.57"></script>
<script nonce="023e496b433c74fc843d6313c6ef2e2d">
		
(function(F) {


/*jslint white: false, undef: false, browser: true, eqeqeq: true, regexp: false, newcap: true, immed: true, onevar: false, plusplus: false */
/*global F: false, YUI: false, window: false */ 

	// ================================================================================
	// Constants and variables.
	// ================================================================================

	// --------------------------------------------------------------------------------
	// Constants.
	// --------------------------------------------------------------------------------

	var TIMEOUT = 10000, // 10 seconds
		ACTIVATE_COOKIE_CONSENT_CLIENT_SIDE = false,
		cookieConsentObjectName = "ccc",
		cookieLevelBuckets = { // cookie level buckets for cookie consent
			"required": ["ccc","cookie_accid","cookie_epass","cookie_l10n","cookie_session","dcbn","ffs","ffs","flrb","flrbfd","flrbgdrp","flrbgmrp","flrbgrp","flrbp","flrbrgs","flrbrst","flrbs","flrtags","liqph","liqpw","localization","RT","rtna","sa","s_sq","vp","xb"],
			"functional": [],
			"advertising": [],
		};

	// --------------------------------------------------------------------------------
	// Variables.
	// --------------------------------------------------------------------------------
	
	var pollers = { },
		pollerCount = 0,
		cachedEls = { },
		testDiv = document.createElement('div'),
		support = {
		nativeTrim: typeof String.prototype.trim === 'function',
		classList: 'classList' in testDiv
		};

	// ================================================================================
	// Attach the public methods to the F object.
	// ================================================================================

	F.util = {

		// ================================================================================
		// Objects.
		// ================================================================================

		clone: function (o) {
			if (o === null || typeof o !== 'object') {
				return o;
			}
			var c = new o.constructor();
			for (var k in o) {
				c[k] = F.util.clone(o[k]);
			}
			return c;
		},

		// ================================================================================
		// Strings.
		// ================================================================================

		trim: function (str) {
			if (support.nativeTrim) {
				return str.trim();
			}
			else {
				return str.replace(/^\s+|\s+$/g, '');
			}
		},

		// ================================================================================
		// DOM.
		// ================================================================================

		// --------------------------------------------------------------------------------
		// Cache references to elements, since we may need them repeatedly.
		// --------------------------------------------------------------------------------

		getElementById: function (id) {
			if (!cachedEls[id]) {
				cachedEls[id] = document.getElementById(id);
			}
			return cachedEls[id];
		},

		// --------------------------------------------------------------------------------
		// Methods for adding, detecting, and removing classes.
		// --------------------------------------------------------------------------------

		hasClass: function (el, className) {
			if (!el) {
				return false;
			}
			if (support.classList) {
				return el.classList.contains(className);
			}
			else {
				var re = new RegExp('(?:^|\\s+)' + className + '(?:\\s+|$)');
					return re.test(el.className);
			}
		},

		addClass: function (el, className) {
			if (!el) {
				return;
			}
			if (support.classList) {
				el.classList.add(className);
			}
			else if (!F.util.hasClass(el, className)) {
				el.className = F.util.trim([el.className, className].join(' '));
			}
		},

		removeClass: function (el, className) {
			if (support.classList) {
				el.classList.remove(className);
			}
			else if (className && F.util.hasClass(el, className)) {
				el.className = F.util.trim(el.className.replace(new RegExp('(?:^|\\s+)' + className + '(?:\\s+|$)'), ' '));

				if (F.util.hasClass(el, className) ) { // In case of multiple adjacent.
					F.util.removeClass(el, className);
				}
			}
		},

		// --------------------------------------------------------------------------------
		// Do something as soon as an element (with an ID) is available on the page.
		// --------------------------------------------------------------------------------	

		whenElementExists: function (id, callback, interval) {

			var iterations = 0,
				pollerId = id + pollerCount++;
			
			interval = interval || 10;

			// Function used to check and call the callback.
		
			var checkElementAndCallback = function () {

				var el = (id === 'body') ? document.body : F.util.getElementById(id);
				if (el) {
					clearInterval(pollers[pollerId]);
					callback(el);
					return true;
				}
				else if (++iterations * interval >= TIMEOUT) {
					clearInterval(pollers[pollerId]);
					return false;
				}
			};

			// First check to see if it exists.

			if (!checkElementAndCallback()) {

				// Otherwise set up a poller.

				pollers[pollerId] = setInterval(checkElementAndCallback, interval);
			}
		},

		// ================================================================================
		// Events.
		// ================================================================================

		addListener: function (el, type, fn, capture) {
			if (el.addEventListener) {
				el.addEventListener(type, fn, capture);
			}
			else if (el.attachEvent) {
				el.attachEvent('on' + type, fn);
			}
		},	

		// ================================================================================
		// Cookies.
		// ================================================================================

		setCookie: function (name, value, days, path) {
		
			var date, 
				expires = '', 
				path = path || '/';
			if (days) {
				date = new Date();
				date.setTime(date.getTime() + (days * 24 * 60 * 60 * 1000));
				expires = '; expires=' + date.toGMTString();
			}
			if (ACTIVATE_COOKIE_CONSENT_CLIENT_SIDE) {
				var cookieLevel = F.util.getCookieLevel(name),
					consentContext = F.util.getCookieConsentContext();
				if (cookieLevel === null || cookieLevel <= consentContext.info.cookieBlock.level) {
					document.cookie = name + '=' + value + expires + '; path=' + path;
				}
			} else {
				document.cookie = name + '=' + value + expires + '; path=' + path;
			}

		},

		getCookieLevel: function (cookieName) {
			if (cookieLevelBuckets.required.indexOf(cookieName) !== -1) {
				return 0;
			} else if (cookieLevelBuckets.functional.indexOf(cookieName) !== -1) {
				return 1;
			} else if (cookieLevelBuckets.advertising.indexOf(cookieName) !== -1) {
				return 2;
			} else {
				return null;
			}
		},

		getCookieConsentContext: function () {
			var cookieContext = decodeURIComponent(F.util.getCookie(cookieConsentObjectName)),
				path = '/',
				newCookieContext = {
					managed: 0, // Verifying whether user has given their consent
					changed: 0, // Determines whether consent has been changed on the client, because the level will be set, but no removal action taken yet
					info: {
						cookieBlock: {
							level: 0, // 0 = required only, 1 = functional, 2 = advertising
							blockRan: 0, // Verifying whether the blocking of cookies/trackers occurred
						},
					},
				};

			if (cookieContext) {
				try {
					newCookieContext = JSON.parse(cookieContext);
				} catch (err) {
					document.cookie = cookieConsentObjectName + '=' + JSON.stringify(newCookieContext) + new Date((new Date()).getTime() + 24 * 60 * 60 * 1000 * 30) + '; path=' + path;
				}
			} else { // Assume zero cookie load preferences, create cookie context
				document.cookie = cookieConsentObjectName + '=' + JSON.stringify(newCookieContext) + new Date((new Date()).getTime() + 24 * 60 * 60 * 1000 * 30) + '; path=' + path;
			}
			return newCookieContext;
		},

		getCookie: function (name) {

			var i, 
				cookies = ' ' + document.cookie + ';';

			name = ' ' + name + '=';

			if ((i = cookies.indexOf(name)) >= 0) {
				i += name.length;
				cookies = cookies.substring(i, cookies.indexOf(';', i));
				return cookies;
			}
		},

		removeCookie: function (name) {
			return F.util.setCookie(name, '', 0);
		}
	};
	
	// ================================================================================
	// Cleanup.
	// ================================================================================
	
	testDiv = null;

}(F));

		(function(F){var el,w,d,n,ua,ae,is_away_from_tab,de,disabled=false,assigned_events=false;w=window;d=w.document;n=w.navigator;ua=n&&n.userAgent;var supportsActiveElt=false;if('activeElement'in document){supportsActiveElt=true;} function doF(e,me){if(is_away_from_tab&&e.target===w){is_away_from_tab=false;}else{el=e.target||me;}} function doB(e){if(el!==w&&e.target===w){is_away_from_tab=true;}else{el=undefined;}} function get(){var nt,in_doc;if(supportsActiveElt){el=document.activeElement;}else if(el&&(nt=el.nodeType)){if(d.contains){if((ua&&ua.match(/Opera[\s\/]([^\s]*)/))||nt===1){in_doc=d.contains(el);}else{while(el){if(d===el){in_doc=true;} el=el.parentNode;}}}else if(d.compareDocumentPosition){if(d===el||!!(d.compareDocumentPosition(el)&16)){in_doc=true;}}else{var myEl=el;while(myEl){if(d===myEl){in_doc=true;} myEl=myEl.parentNode;}}} return in_doc?el:undefined;} function isInput(){var n=get(),nn;if(!n){return false;} nn=n.nodeName.toLowerCase();return(nn==='input'||nn==='textarea');} function instrumentInputs(){if(!assigned_events){var i,me,inputs=document.getElementsByTagName('input'),tas=document.getElementsByTagName('textarea'),nInputs=inputs.length,nTextAreas=tas.length;if(nInputs||nTextAreas){for(i=0;i<nTextAreas;i++){me=tas[i];tas[i].attachEvent('onfocusin',function(e){if(!disabled){doF(e,me);}});} for(i=0;i<nInputs;i++){me=inputs[i];inputs[i].attachEvent('onfocusin',function(e){if(!disabled){doF(e,me);}});} assigned_events=true;}}} function destroy(){disabled=true;if(de=w.removeEventListener){de('focus',doF,true);de('blur',doB,true);}else if(de=d.removeEvent){de('blur',doB);}} function dom_onready(onready_handler){if(typeof onready_handler==='undefined'){return false;} if(document.readyState==='complete'){onready_handler();}else{if(document.addEventListener){DOMContentLoaded=function(){document.removeEventListener('DOMContentLoaded',DOMContentLoaded,false);onready_handler();};}else if(document.attachEvent){DOMContentLoaded=function(){if(document.readyState==='complete'){document.detachEvent('onreadystatechange',DOMContentLoaded);onready_handler();}};} if(document.addEventListener){document.addEventListener('DOMContentLoaded',onready_handler,false);}else if(document.attachEvent){document.attachEvent('onreadystatechange',onready_handler);}}} if(ae=w.addEventListener){ae('focus',doF,true);ae('blur',doB,true);}else if(ae=d.attachEvent){dom_onready(instrumentInputs);ae('onfocusout',doB);} F.focus_tracker={get:get,isInput:isInput,destroy:destroy};}(F));</script>

<script type="text/javascript" nonce="023e496b433c74fc843d6313c6ef2e2d">

</script>








 


















	






<script type="text/javascript" src="https://combo.staticflickr.com/pw/javascript/fold_main.js.v23.1601386142.57"></script>

<script type="text/javascript" src="https://combo.staticflickr.com/pw/javascript/s_output_en-us.js.9999999916013861421015"></script>
<script type="text/javascript" nonce="023e496b433c74fc843d6313c6ef2e2d">

YAHOO.util.Event.addListener(window, 'load', F._window_onload);
YAHOO.util.Event.addListener(window, 'resize', F._window_onresize);
YAHOO.util.Event.addListener(window, 'blur', F._window_onblur);
YAHOO.util.Event.addListener(window, 'focus', F._window_onfocus);
YAHOO.util.Event.addListener(window, 'unload', F._window_onunload);

</script>

<script type="text/javascript" nonce="023e496b433c74fc843d6313c6ef2e2d">
var global_joinDate = F.convert_unix_time_stamp('');
var global_time_stamp = '200929062902';


fixMaxWidth_getWidth = (navigator.userAgent.match(/MSIE 6/i)?function(el) {
  return el.currentStyle['max-width'];
}:function(el){
  return el.currentStyle['maxWidth'];
});

fixMaxWidth = function(el) {
  try {
    el.runtimeStyle.behavior = 'none';
    var mw = fixMaxWidth_getWidth(el);
    var nmw = parseInt(mw,10) || 10000;
    var cW = parseInt(el.offsetWidth);
    var cH = parseInt(el.offsetHeight);
    var ratio = (cH/cW);
    if (el.offsetWidth>nmw) {
      el.style.width = (nmw+'px');
      if (!isNaN(cH) && cH) {
        el.style.height = (Math.ceil(nmw*ratio)+'px');
      }
    }
  } catch(e) {
    // oh well
  }
}



YAHOO.util.Event.onDOMReady(F._window_onload_dom);


F.keyboardShortcuts.enableAll();
</script>

<!--[if IE]>
<style type="text/css">

img.notsowide {
 behavior:expression(fixMaxWidth(this));
}

</style>
<![endif]-->







</head>


<body class="zeus new-footer new-header super-liquid extras quirks en-us">

<script type='text/javascript' nonce="023e496b433c74fc843d6313c6ef2e2d">
	('<a href="/enfnl">')
</script>
<!-- <a href="/enfnl"> -->

<noscript>
	<div id="beacon"><img src="https://geo.yahoo.com/f?s=792600122&t=02858d3a015a9b737707e989ac4def33&r=https%3A%2F%2Fwww.flickr.com%2Fbadge_code_v2.gne%3Fsource%3Duser%26user%3D88351014%40N05%26count%3D9%26display%3Dlatest%26layout%3Dx%26size%3Ds&fl_ev=0&lang=en&intl=sg" width="0" height="0" alt="" /></div>
</noscript>


<script nonce="023e496b433c74fc843d6313c6ef2e2d">
	/*jslint white: false, undef: false, browser: true, eqeqeq: true, regexp: false, newcap: true, immed: true, onevar: false, plusplus: false */
/*global F: false, YUI: false, window: false */ 

(function(F){var OFFSETS={GLOBAL_NAV:null,UNIVERSAL_HEADER:null};function alignToAnchor(anchor,preventDelay){var delay=(!preventDelay&&document.documentMode)?800:50;var elt=document.getElementById(anchor)||document.getElementsByName(anchor)[0];if(elt){setTimeout(function(){var destination=elt.offsetTop,origPosition=elt.style.position;if(F.util.hasClass(document.body,'header-underlap')){destination-=OFFSETS.GLOBAL_NAV;} if(F.util.hasClass(document.body,'with-eyebrow')){destination-=OFFSETS.UNIVERSAL_HEADER;} if(!origPosition){elt.style.position='relative';destination=Math.max(destination,elt.offsetTop-destination);elt.style.position=origPosition;} window.scrollTo(0,destination);},delay);}} function normalizeAnchor(){var anchor=document.location.hash;if(anchor[0]==='#'){anchor=anchor.replace('#','');} return anchor;} function handleEvent(elt,eventName,handler,useCapture){useCapture=useCapture||false;if(elt.addEventListener){elt.addEventListener(eventName,handler,useCapture);}else if(elt.attachEvent){elt.attachEvent('on'+eventName,handler);}} F.anchorRepositioner={init:function(){F.util.whenElementExists('global-nav',function(nav){OFFSETS.GLOBAL_NAV=nav.offsetHeight;});F.util.whenElementExists('eyebrow',function(eyebrow){OFFSETS.UNIVERSAL_HEADER=eyebrow.offsetHeight;});var pageLoadAnchor=normalizeAnchor();if(pageLoadAnchor){handleEvent(document,'DOMContentLoaded',function(){alignToAnchor(pageLoadAnchor);});} handleEvent(window,'hashchange',function(e){if(e.preventDefault){e.preventDefault();}else{e.returnValue=false;} var anchor=normalizeAnchor();alignToAnchor(anchor);},true);}};}(F));	F.anchorRepositioner.init();
</script>


<script nonce="023e496b433c74fc843d6313c6ef2e2d">
			/*jslint white: false, undef: false, browser: true, eqeqeq: true, regexp: false, newcap: true, immed: true, onevar: false, plusplus: false */
/*global F: false, YUI: false, window: false */

(function(F) {
	var useNewExplore =  false ,
    	    useEyebrow = false,
	    HEIGHT_TO_PHOTO_TOP = 49,
    	    savingThrowAgainstTrailingCommas = true;
 
            var NEW_PHOTO_HEIGHT;
    var MIN_PAGE_WIDTH=1024,MIN_PAGE_HEIGHT=768,MIN_PHOTO_WIDTH=975,SCROLLBAR_GUTTER=26,PHOTO_INTERIOR_PADDING_TOP=0,PHOTO_INTERIOR_PADDING_SIDES=10,PHOTO_TITLE_HEIGHT=41,PHOTO_ATTRIBUTION_HEIGHT=NEW_PHOTO_HEIGHT||45;var bodyInitialized=false,subnavDefaultWidth=0;function verifyDimension(n){return(typeof n==='number'&&n>0);} function resizeCoverPhoto(subnav){var main=F.util.getElementById('main')||F.util.getElementById('Main');if(F.util.hasClass(document.body,'breakout')){subnav.style.left=0;subnav.style.width='auto';return;} if(!subnavDefaultWidth){subnavDefaultWidth=main.offsetWidth;} var clientWidth=document.body.clientWidth;if(clientWidth<975){return;} var offset=Math.ceil((clientWidth-subnavDefaultWidth)/2);subnav.style.left=(-1*offset)+'px';subnav.style.width=clientWidth+'px';} F.liquid={getDimensions:function(preventHighResolution){var doc=window.document,win=doc.defaultView||doc.parentWindow,mode=doc.compatMode,h=win.innerHeight,w=win.innerWidth,root=doc.documentElement,preventHighResolution=preventHighResolution||false,pixelRatio=preventHighResolution?1:(window.devicePixelRatio||1);if(mode){if(mode!=='CSS1Compat'){root=doc.body;} h=root.clientHeight;w=root.clientWidth;} h*=pixelRatio;w*=pixelRatio;if(verifyDimension(w)&&verifyDimension(h)){return{height:h,width:w,isHighResolution:(pixelRatio>1)};} return false;},getAvailableSpaceForPhoto:function(){var dimensions,pixelRatio=window.devicePixelRatio||1;dimensions=F.liquid.getDimensions()||{width:MIN_PAGE_WIDTH,height:MIN_PAGE_HEIGHT};return{w:Math.max(dimensions.width-(2*pixelRatio*PHOTO_INTERIOR_PADDING_SIDES),pixelRatio*MIN_PHOTO_WIDTH),h:dimensions.height-(pixelRatio*(HEIGHT_TO_PHOTO_TOP+PHOTO_INTERIOR_PADDING_TOP+PHOTO_TITLE_HEIGHT+PHOTO_ATTRIBUTION_HEIGHT))};},getAvailableSpaceForPhotoContainer:function(){var dimensions,pixelRatio=window.devicePixelRatio||1;dimensions=F.liquid.getDimensions()||{width:MIN_PAGE_WIDTH,height:MIN_PAGE_HEIGHT};dimensions.width/=pixelRatio;dimensions.height/=pixelRatio;return{w:dimensions.width,h:dimensions.height-HEIGHT_TO_PHOTO_TOP-PHOTO_ATTRIBUTION_HEIGHT};},resizePage:function(){var pageDimensions=F.liquid.getDimensions(true),pageWidth=pageDimensions.width,pageHeight=pageDimensions.height-HEIGHT_TO_PHOTO_TOP;F.util.setCookie('liqpw',pageWidth,365);F.util.setCookie('liqph',pageHeight,365);if(!bodyInitialized){F.util.whenElementExists('body',function(body){F.util.addClass(body,'liquid');bodyInitialized=true;});} F.util.whenElementExists('subnav-refresh',function(subnav){resizeCoverPhoto(subnav);});return pageWidth;}};}(F));		F.liquid.resizePage();
</script>


<a name="top"></a></div>
										
									<div class="fix"></div>
									<a class="see-more button" href="http://www.flickr.com/photos/88351014@N05">See more</a>
								</div>

								