summaryrefslogtreecommitdiff
path: root/bak/oldluxpages/photos/galleries/yellowstone-national-park/index.html
blob: b4174a87ff74b86ca9d693f1fe0aceab94013e86 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
<!DOCTYPE html>
<html class="black" dir="ltr" lang="en-US">
    
<head>
    <title>Yellowstone National Park - Luxagraf, Photos</title>
    <meta charset="utf-8">
    <meta http-equiv="x-ua-compatible" content="ie=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <meta name="description" 
          content="From Grand Teton I headed north to the very crowded, but beautiful, Yellowstone National Park.">
    <meta name="author" content="Scott Gilbertson">
    <!--[if IE]>
    <script src="/js/html5css3ie.min.js"></script>
    <![endif]-->
    <link rel="alternate" 
          type="application/rss+xml" 
          title="Luxagraf RSS feed"
          href="https://luxagraf.net/rss/">
    <link rel="stylesheet" 
          href="/media/screenv8.css" 
          media="screen">
    <!--[if IE]>
    <link rel="stylesheet" 
          href="/media/css/ie.css" 
          media="screen">
    <![endif]-->
    <link rel="manifest" href="manifest.json">
    <meta property="fb:pages" content="900822029969349" />
    
     <script src="/media/js/leaflet-master/leaflet-mod.js"></script>
     <style>
         #map-canvas img{ border: none;}
     </style>

</head>
<body class="image_gallery">
    <div class="wrapper">
    <div class="header-wrapper">
        <header role="banner">
            <h1><a id="logo" href="/" title="home">Luxagraf</a></h1>
            <h2>Walk Slowly</h2>
        </header>
        <nav role="navigation" class="bl">
            <ul>
                <li id="laverdad"><a href="/jrnl/" title="What we've been up to lately">Journal</a></li>
                <li id="nota"><a href="/field-notes/" title="Quick notes and images from the road">Notes</a></li>
                <li id="fotos"><a href="/photos/" title="Photos from travels around the world">Photos</a></li>
                <li id="maps"><a href="/map" title="Maps">Map</a></li>
                <li id="about"><a href="/about" title="About Luxagraf">About</a></li>
                <li id="etc" class="last"><a href="/projects/" title="the less visible portions of the iceberg">Etc</a></li>
            </ul>
        </nav>
    </div>
    <ul class="bl" id="breadcrumbs" itemscope itemtype="http://data-vocabulary.org/Breadcrumb">
        <li><a href="/" title="luxagraf homepage" itemprop="url"><span itemprop="title">Home</span></a> &rarr; </li>
        <li><a href="/photos/" title="See all Photos" itemprop="url"><span>Photos</span></a> &rarr;</li> 
        <li>Yellowstone National Park</li>
    </ul>
    <p class="directions">Use left/right arrow keys to navigate through photos</p>
    <main id="slides" class="image-gallery--wrapper">
        <h1 class="hide">Photos from Yellowstone National Park</h1>
        <article id="image-1"> 
            <h6><a href="#image-1" class="permalink" title="link to this image">&#8734; one &#8734;</a></h6>
            <figure class="fig"><img src="https://images.luxagraf.net/slideshow/2010/4834620588.jpg" srcset="https://images.luxagraf.net/slideshow/2010/4834620588x2.jpg 2x" alt="Color" class="v"  />
            <figcaption class="figcaption">
                <div class="caption" id="id-2809">
                    <h3 class="figcaption--title">Color</h3>
                    <time class="figcaption--date" datetime="2010-07-23T18:59:38">Jul 23, 2010</time>
                    <a class="map-link" href="#" data-latitude="44.461077" data-longitude="-110.829573" data-imgid="id-2809">Map</a>
                    <p class="figcaption--desc">Somewhere near Old Faithful</p>   
                </div>
                <div class="photo-options">
                    <p>Panasonic GF1 with  <a href="http://amzn.to/azIr5w" title="buy the LUMIX G VARIO 14-45/F3.5-5.6 on Amazon">Lumix 14-45mm lens</a></p>
                    <p>0.001 sec (1/800) sec at f/8.0, ISO 100 </p>
                    <!--<p><a href="http://www.flickr.com/photos/luxagraf/4834620588/" title="View this Photo on Flickr.com">View on Flickr</a></p>-->
                    <!--<a href="#" class="exif-link" title="2809">Camera</a>-->
                </div>
            </figcaption>
        </figure>
        </article>
        
        <article id="image-2"> 
            <h6><a href="#image-2" class="permalink" title="link to this image">&#8734; two &#8734;</a></h6>
            <figure class="fig"><img src="https://images.luxagraf.net/slideshow/2010/4832993241.jpg" srcset="https://images.luxagraf.net/slideshow/2010/4832993241x2.jpg 2x" alt="Old Faithful" class="v"  />
            <figcaption class="figcaption">
                <div class="caption" id="id-2808">
                    <h3 class="figcaption--title">Old Faithful</h3>
                    <time class="figcaption--date" datetime="2010-07-23T19:12:54">Jul 23, 2010</time>
                    <a class="map-link" href="#" data-latitude="44.460594" data-longitude="-110.828082" data-imgid="id-2808">Map</a>
                    <p class="figcaption--desc">If you watch Ken Burn's National Parks series, you'll know one of the reasons for creating Yellowstone was to make sure it didn't &quot;turn into another Niagra Falls.&quot; Sorry Nps, but I think you pretty much failed there.</p>   
                </div>
                <div class="photo-options">
                    <p>Panasonic GF1 with  <a href="http://amzn.to/azIr5w" title="buy the LUMIX G VARIO 14-45/F3.5-5.6 on Amazon">Lumix 14-45mm lens</a></p>
                    <p>0.001 sec (1/1250) sec at f/8.0, ISO 100 </p>
                    <!--<p><a href="http://www.flickr.com/photos/luxagraf/4832993241/" title="View this Photo on Flickr.com">View on Flickr</a></p>-->
                    <!--<a href="#" class="exif-link" title="2808">Camera</a>-->
                </div>
            </figcaption>
        </figure>
        </article>
        
        <article id="image-3"> 
            <h6><a href="#image-3" class="permalink" title="link to this image">&#8734; three &#8734;</a></h6>
            <figure class="fig"><img src="https://images.luxagraf.net/slideshow/2010/4834622770.jpg" srcset="https://images.luxagraf.net/slideshow/2010/4834622770x2.jpg 2x" alt="Something is alive ahead"   />
            <figcaption class="figcaption">
                <div class="caption" id="id-2807">
                    <h3 class="figcaption--title">Something is alive ahead</h3>
                    <time class="figcaption--date" datetime="2010-07-23T19:51:05">Jul 23, 2010</time>
                    <a class="map-link" href="#" data-latitude="44.646711" data-longitude="-110.868444" data-imgid="id-2807">Map</a>
                    <p class="figcaption--desc">Doesn't matter what it is -- elk, moose, coyote, grizzly -- there will be a traffic jam.</p>   
                </div>
                <div class="photo-options">
                    <p>Panasonic GF1 with  <a href="http://amzn.to/a9DfV7" title="buy the LUMIX G VARIO 45-200/F4.0-5.6 on Amazon">Lumix 45-200mm lens</a></p>
                    <p>0.008 sec (1/125) sec at f/8.0, ISO 100 </p>
                    <!--<p><a href="http://www.flickr.com/photos/luxagraf/4834622770/" title="View this Photo on Flickr.com">View on Flickr</a></p>-->
                    <!--<a href="#" class="exif-link" title="2807">Camera</a>-->
                </div>
            </figcaption>
        </figure>
        </article>
        
        <article id="image-4"> 
            <h6><a href="#image-4" class="permalink" title="link to this image">&#8734; four &#8734;</a></h6>
            <figure class="fig"><img src="https://images.luxagraf.net/slideshow/2010/4834015497.jpg" srcset="https://images.luxagraf.net/slideshow/2010/4834015497x2.jpg 2x" alt="Elk"   />
            <figcaption class="figcaption">
                <div class="caption" id="id-2806">
                    <h3 class="figcaption--title">Elk</h3>
                    <time class="figcaption--date" datetime="2010-07-24T15:51:27">Jul 24, 2010</time>
                    <a class="map-link" href="#" data-latitude="44.650627" data-longitude="-111.006331" data-imgid="id-2806">Map</a>
                    <p class="figcaption--desc">Not what was at the traffic jam in the previous photo, but naturally this one had stopped traffic too.</p>   
                </div>
                <div class="photo-options">
                    <p>Panasonic GF1 with  <a href="http://amzn.to/a9DfV7" title="buy the LUMIX G VARIO 45-200/F4.0-5.6 on Amazon">Lumix 45-200mm lens</a></p>
                    <p>0.002 sec (1/640) sec at f/5.6, ISO 100 </p>
                    <!--<p><a href="http://www.flickr.com/photos/luxagraf/4834015497/" title="View this Photo on Flickr.com">View on Flickr</a></p>-->
                    <!--<a href="#" class="exif-link" title="2806">Camera</a>-->
                </div>
            </figcaption>
        </figure>
        </article>
        
        <article id="image-5"> 
            <h6><a href="#image-5" class="permalink" title="link to this image">&#8734; five &#8734;</a></h6>
            <figure class="fig"><img src="https://images.luxagraf.net/slideshow/2010/4834018501.jpg" srcset="https://images.luxagraf.net/slideshow/2010/4834018501x2.jpg 2x" alt="More Elk"   />
            <figcaption class="figcaption">
                <div class="caption" id="id-2805">
                    <h3 class="figcaption--title">More Elk</h3>
                    <time class="figcaption--date" datetime="2010-07-24T16:23:23">Jul 24, 2010</time>
                    <a class="map-link" href="#" data-latitude="44.611722" data-longitude="-110.851267" data-imgid="id-2805">Map</a>
                      
                </div>
                <div class="photo-options">
                    <p>Panasonic GF1 with  <a href="http://amzn.to/a9DfV7" title="buy the LUMIX G VARIO 45-200/F4.0-5.6 on Amazon">Lumix 45-200mm lens</a></p>
                    <p>0.01 sec (1/100) sec at f/16.0, ISO 100 </p>
                    <!--<p><a href="http://www.flickr.com/photos/luxagraf/4834018501/" title="View this Photo on Flickr.com">View on Flickr</a></p>-->
                    <!--<a href="#" class="exif-link" title="2805">Camera</a>-->
                </div>
            </figcaption>
        </figure>
        </article>
        
        <article id="image-6"> 
            <h6><a href="#image-6" class="permalink" title="link to this image">&#8734; six &#8734;</a></h6>
            <figure class="fig"><img src="https://images.luxagraf.net/slideshow/2010/4834631216.jpg" srcset="https://images.luxagraf.net/slideshow/2010/4834631216x2.jpg 2x" alt="So Inviting"   />
            <figcaption class="figcaption">
                <div class="caption" id="id-2804">
                    <h3 class="figcaption--title">So Inviting</h3>
                    <time class="figcaption--date" datetime="2010-07-24T16:42:27">Jul 24, 2010</time>
                    <a class="map-link" href="#" data-latitude="44.550172" data-longitude="-110.805884" data-imgid="id-2804">Map</a>
                    <p class="figcaption--desc">But so boiling. Damn.</p>   
                </div>
                <div class="photo-options">
                    <p>Panasonic GF1 with  <a href="http://amzn.to/azIr5w" title="buy the LUMIX G VARIO 14-45/F3.5-5.6 on Amazon">Lumix 14-45mm lens</a></p>
                    <p>0.001 sec (1/1250) sec at f/8.0, ISO 100 </p>
                    <!--<p><a href="http://www.flickr.com/photos/luxagraf/4834631216/" title="View this Photo on Flickr.com">View on Flickr</a></p>-->
                    <!--<a href="#" class="exif-link" title="2804">Camera</a>-->
                </div>
            </figcaption>
        </figure>
        </article>
        
        <article id="image-7"> 
            <h6><a href="#image-7" class="permalink" title="link to this image">&#8734; seven &#8734;</a></h6>
            <figure class="fig"><img src="https://images.luxagraf.net/slideshow/2010/4834023839.jpg" srcset="https://images.luxagraf.net/slideshow/2010/4834023839x2.jpg 2x" alt="Boiling Mud"   />
            <figcaption class="figcaption">
                <div class="caption" id="id-2803">
                    <h3 class="figcaption--title">Boiling Mud</h3>
                    <time class="figcaption--date" datetime="2010-07-24T16:43:39">Jul 24, 2010</time>
                    <a class="map-link" href="#" data-latitude="44.550646" data-longitude="-110.806217" data-imgid="id-2803">Map</a>
                      
                </div>
                <div class="photo-options">
                    <p>Panasonic GF1 with  <a href="http://amzn.to/azIr5w" title="buy the LUMIX G VARIO 14-45/F3.5-5.6 on Amazon">Lumix 14-45mm lens</a></p>
                    <p>0.002 sec (1/640) sec at f/14.0, ISO 100 </p>
                    <!--<p><a href="http://www.flickr.com/photos/luxagraf/4834023839/" title="View this Photo on Flickr.com">View on Flickr</a></p>-->
                    <!--<a href="#" class="exif-link" title="2803">Camera</a>-->
                </div>
            </figcaption>
        </figure>
        </article>
        
        <article id="image-8"> 
            <h6><a href="#image-8" class="permalink" title="link to this image">&#8734; eight &#8734;</a></h6>
            <figure class="fig"><img src="https://images.luxagraf.net/slideshow/2010/4834026079.jpg" srcset="https://images.luxagraf.net/slideshow/2010/4834026079x2.jpg 2x" alt="Geyser"   />
            <figcaption class="figcaption">
                <div class="caption" id="id-2802">
                    <h3 class="figcaption--title">Geyser</h3>
                    <time class="figcaption--date" datetime="2010-07-24T16:48:37">Jul 24, 2010</time>
                    <a class="map-link" href="#" data-latitude="44.551021" data-longitude="-110.807901" data-imgid="id-2802">Map</a>
                    <p class="figcaption--desc">Don't remember the name of this one...</p>   
                </div>
                <div class="photo-options">
                    <p>Panasonic GF1 with  <a href="http://amzn.to/azIr5w" title="buy the LUMIX G VARIO 14-45/F3.5-5.6 on Amazon">Lumix 14-45mm lens</a></p>
                    <p>0.003 sec (1/400) sec at f/14.0, ISO 100 </p>
                    <!--<p><a href="http://www.flickr.com/photos/luxagraf/4834026079/" title="View this Photo on Flickr.com">View on Flickr</a></p>-->
                    <!--<a href="#" class="exif-link" title="2802">Camera</a>-->
                </div>
            </figcaption>
        </figure>
        </article>
        
        <article id="image-9"> 
            <h6><a href="#image-9" class="permalink" title="link to this image">&#8734; nine &#8734;</a></h6>
            <figure class="fig"><img src="https://images.luxagraf.net/slideshow/2010/4834028431.jpg" srcset="https://images.luxagraf.net/slideshow/2010/4834028431x2.jpg 2x" alt="Blue Steam"   />
            <figcaption class="figcaption">
                <div class="caption" id="id-2801">
                    <h3 class="figcaption--title">Blue Steam</h3>
                    <time class="figcaption--date" datetime="2010-07-24T17:12:58">Jul 24, 2010</time>
                    <a class="map-link" href="#" data-latitude="44.526511" data-longitude="-110.837041" data-imgid="id-2801">Map</a>
                      
                </div>
                <div class="photo-options">
                    <p>Panasonic GF1 with  <a href="http://amzn.to/azIr5w" title="buy the LUMIX G VARIO 14-45/F3.5-5.6 on Amazon">Lumix 14-45mm lens</a></p>
                    <p>0.005 sec (1/200) sec at f/14.0, ISO 100 </p>
                    <!--<p><a href="http://www.flickr.com/photos/luxagraf/4834028431/" title="View this Photo on Flickr.com">View on Flickr</a></p>-->
                    <!--<a href="#" class="exif-link" title="2801">Camera</a>-->
                </div>
            </figcaption>
        </figure>
        </article>
        
        <article id="image-10"> 
            <h6><a href="#image-10" class="permalink" title="link to this image">&#8734; ten &#8734;</a></h6>
            <figure class="fig"><img src="https://images.luxagraf.net/slideshow/2010/4834641218.jpg" srcset="https://images.luxagraf.net/slideshow/2010/4834641218x2.jpg 2x" alt="Turquoise Pool"   />
            <figcaption class="figcaption">
                <div class="caption" id="id-2800">
                    <h3 class="figcaption--title">Turquoise Pool</h3>
                    <time class="figcaption--date" datetime="2010-07-24T17:13:30">Jul 24, 2010</time>
                    <a class="map-link" href="#" data-latitude="44.526511" data-longitude="-110.837041" data-imgid="id-2800">Map</a>
                      
                </div>
                <div class="photo-options">
                    <p>Panasonic GF1 with  <a href="http://amzn.to/azIr5w" title="buy the LUMIX G VARIO 14-45/F3.5-5.6 on Amazon">Lumix 14-45mm lens</a></p>
                    <p>0.006 sec (1/160) sec at f/14.0, ISO 100 </p>
                    <!--<p><a href="http://www.flickr.com/photos/luxagraf/4834641218/" title="View this Photo on Flickr.com">View on Flickr</a></p>-->
                    <!--<a href="#" class="exif-link" title="2800">Camera</a>-->
                </div>
            </figcaption>
        </figure>
        </article>
        
        <article id="image-11"> 
            <h6><a href="#image-11" class="permalink" title="link to this image">&#8734; eleven &#8734;</a></h6>
            <figure class="fig"><img src="https://images.luxagraf.net/slideshow/2010/4834643378.jpg" srcset="https://images.luxagraf.net/slideshow/2010/4834643378x2.jpg 2x" alt="Opal Pool"   />
            <figcaption class="figcaption">
                <div class="caption" id="id-2799">
                    <h3 class="figcaption--title">Opal Pool</h3>
                    <time class="figcaption--date" datetime="2010-07-24T17:15:36">Jul 24, 2010</time>
                    <a class="map-link" href="#" data-latitude="44.526511" data-longitude="-110.838671" data-imgid="id-2799">Map</a>
                      
                </div>
                <div class="photo-options">
                    <p>Panasonic GF1 with  <a href="http://amzn.to/azIr5w" title="buy the LUMIX G VARIO 14-45/F3.5-5.6 on Amazon">Lumix 14-45mm lens</a></p>
                    <p>0.008 sec (1/125) sec at f/16.0, ISO 100 </p>
                    <!--<p><a href="http://www.flickr.com/photos/luxagraf/4834643378/" title="View this Photo on Flickr.com">View on Flickr</a></p>-->
                    <!--<a href="#" class="exif-link" title="2799">Camera</a>-->
                </div>
            </figcaption>
        </figure>
        </article>
        
        <article id="image-12"> 
            <h6><a href="#image-12" class="permalink" title="link to this image">&#8734; twelve &#8734;</a></h6>
            <figure class="fig"><img src="https://images.luxagraf.net/slideshow/2010/4834036175.jpg" srcset="https://images.luxagraf.net/slideshow/2010/4834036175x2.jpg 2x" alt="Ripple Colors" class="v"  />
            <figcaption class="figcaption">
                <div class="caption" id="id-2798">
                    <h3 class="figcaption--title">Ripple Colors</h3>
                    <time class="figcaption--date" datetime="2010-07-24T17:17:12">Jul 24, 2010</time>
                    <a class="map-link" href="#" data-latitude="44.525846" data-longitude="-110.838371" data-imgid="id-2798">Map</a>
                      
                </div>
                <div class="photo-options">
                    <p>Panasonic GF1 with  <a href="http://amzn.to/azIr5w" title="buy the LUMIX G VARIO 14-45/F3.5-5.6 on Amazon">Lumix 14-45mm lens</a></p>
                    <p>0.01 sec (1/100) sec at f/16.0, ISO 100 </p>
                    <!--<p><a href="http://www.flickr.com/photos/luxagraf/4834036175/" title="View this Photo on Flickr.com">View on Flickr</a></p>-->
                    <!--<a href="#" class="exif-link" title="2798">Camera</a>-->
                </div>
            </figcaption>
        </figure>
        </article>
        
        <article id="image-13"> 
            <h6><a href="#image-13" class="permalink" title="link to this image">&#8734; thirteen &#8734;</a></h6>
            <figure class="fig"><img src="https://images.luxagraf.net/slideshow/2010/4834647730.jpg" srcset="https://images.luxagraf.net/slideshow/2010/4834647730x2.jpg 2x" alt="Grand Prismatic Spring"   />
            <figcaption class="figcaption">
                <div class="caption" id="id-2797">
                    <h3 class="figcaption--title">Grand Prismatic Spring</h3>
                    <time class="figcaption--date" datetime="2010-07-24T17:18:08">Jul 24, 2010</time>
                    <a class="map-link" href="#" data-latitude="44.525448" data-longitude="-110.837609" data-imgid="id-2797">Map</a>
                    <p class="figcaption--desc">Stunning colors at Grand Prismatic.</p>   
                </div>
                <div class="photo-options">
                    <p>Panasonic GF1 with  <a href="http://amzn.to/azIr5w" title="buy the LUMIX G VARIO 14-45/F3.5-5.6 on Amazon">Lumix 14-45mm lens</a></p>
                    <p>0.006 sec (1/160) sec at f/16.0, ISO 100 </p>
                    <!--<p><a href="http://www.flickr.com/photos/luxagraf/4834647730/" title="View this Photo on Flickr.com">View on Flickr</a></p>-->
                    <!--<a href="#" class="exif-link" title="2797">Camera</a>-->
                </div>
            </figcaption>
        </figure>
        </article>
        
        <article id="image-14"> 
            <h6><a href="#image-14" class="permalink" title="link to this image">&#8734; fourteen &#8734;</a></h6>
            <figure class="fig"><img src="https://images.luxagraf.net/slideshow/2010/4834040417.jpg" srcset="https://images.luxagraf.net/slideshow/2010/4834040417x2.jpg 2x" alt="Grand Prismatic Spring II"   />
            <figcaption class="figcaption">
                <div class="caption" id="id-2796">
                    <h3 class="figcaption--title">Grand Prismatic Spring II</h3>
                    <time class="figcaption--date" datetime="2010-07-24T17:20:45">Jul 24, 2010</time>
                    <a class="map-link" href="#" data-latitude="44.525448" data-longitude="-110.837609" data-imgid="id-2796">Map</a>
                      
                </div>
                <div class="photo-options">
                    <p>Panasonic GF1 with  <a href="http://amzn.to/azIr5w" title="buy the LUMIX G VARIO 14-45/F3.5-5.6 on Amazon">Lumix 14-45mm lens</a></p>
                    <p>0.008 sec (1/125) sec at f/16.0, ISO 100 </p>
                    <!--<p><a href="http://www.flickr.com/photos/luxagraf/4834040417/" title="View this Photo on Flickr.com">View on Flickr</a></p>-->
                    <!--<a href="#" class="exif-link" title="2796">Camera</a>-->
                </div>
            </figcaption>
        </figure>
        </article>
        
        <article id="image-15"> 
            <h6><a href="#image-15" class="permalink" title="link to this image">&#8734; fifteen &#8734;</a></h6>
            <figure class="fig"><img src="https://images.luxagraf.net/slideshow/2010/4834043015.jpg" srcset="https://images.luxagraf.net/slideshow/2010/4834043015x2.jpg 2x" alt="Grand Prismatic Spring III"   />
            <figcaption class="figcaption">
                <div class="caption" id="id-2795">
                    <h3 class="figcaption--title">Grand Prismatic Spring III</h3>
                    <time class="figcaption--date" datetime="2010-07-24T17:21:38">Jul 24, 2010</time>
                    <a class="map-link" href="#" data-latitude="44.525448" data-longitude="-110.837609" data-imgid="id-2795">Map</a>
                      
                </div>
                <div class="photo-options">
                    <p>Panasonic GF1 with  <a href="http://amzn.to/azIr5w" title="buy the LUMIX G VARIO 14-45/F3.5-5.6 on Amazon">Lumix 14-45mm lens</a></p>
                    <p>0.008 sec (1/125) sec at f/16.0, ISO 100 </p>
                    <!--<p><a href="http://www.flickr.com/photos/luxagraf/4834043015/" title="View this Photo on Flickr.com">View on Flickr</a></p>-->
                    <!--<a href="#" class="exif-link" title="2795">Camera</a>-->
                </div>
            </figcaption>
        </figure>
        </article>
        
        <article id="image-16"> 
            <h6><a href="#image-16" class="permalink" title="link to this image">&#8734; sixteen &#8734;</a></h6>
            <figure class="fig"><img src="https://images.luxagraf.net/slideshow/2010/4834047295.jpg" srcset="https://images.luxagraf.net/slideshow/2010/4834047295x2.jpg 2x" alt="Prismatic Pano"   />
            <figcaption class="figcaption">
                <div class="caption" id="id-2794">
                    <h3 class="figcaption--title">Prismatic Pano</h3>
                    <time class="figcaption--date" datetime="2010-07-24T17:21:54">Jul 24, 2010</time>
                    <a class="map-link" href="#" data-latitude="44.525448" data-longitude="-110.837609" data-imgid="id-2794">Map</a>
                      
                </div>
                <div class="photo-options">
                    <p>Panasonic GF1 with  <a href="http://amzn.to/azIr5w" title="buy the LUMIX G VARIO 14-45/F3.5-5.6 on Amazon">Lumix 14-45mm lens</a></p>
                    <p>0.006 sec (1/160) sec at f/16.0, ISO 100 </p>
                    <!--<p><a href="http://www.flickr.com/photos/luxagraf/4834047295/" title="View this Photo on Flickr.com">View on Flickr</a></p>-->
                    <!--<a href="#" class="exif-link" title="2794">Camera</a>-->
                </div>
            </figcaption>
        </figure>
        </article>
        
        <article id="image-17"> 
            <h6><a href="#image-17" class="permalink" title="link to this image">&#8734; seventeen &#8734;</a></h6>
            <figure class="fig"><img src="https://images.luxagraf.net/slideshow/2010/4834660204.jpg" srcset="https://images.luxagraf.net/slideshow/2010/4834660204x2.jpg 2x" alt="Excelsior Geyser Crater"   />
            <figcaption class="figcaption">
                <div class="caption" id="id-2793">
                    <h3 class="figcaption--title">Excelsior Geyser Crater</h3>
                    <time class="figcaption--date" datetime="2010-07-24T17:48:48">Jul 24, 2010</time>
                    <a class="map-link" href="#" data-latitude="44.525448" data-longitude="-110.837609" data-imgid="id-2793">Map</a>
                      
                </div>
                <div class="photo-options">
                    <p>Panasonic GF1 with  <a href="http://amzn.to/azIr5w" title="buy the LUMIX G VARIO 14-45/F3.5-5.6 on Amazon">Lumix 14-45mm lens</a></p>
                    <p>0.006 sec (1/160) sec at f/16.0, ISO 100 </p>
                    <!--<p><a href="http://www.flickr.com/photos/luxagraf/4834660204/" title="View this Photo on Flickr.com">View on Flickr</a></p>-->
                    <!--<a href="#" class="exif-link" title="2793">Camera</a>-->
                </div>
            </figcaption>
        </figure>
        </article>
        
        <article id="image-18"> 
            <h6><a href="#image-18" class="permalink" title="link to this image">&#8734; eighteen &#8734;</a></h6>
            <figure class="fig"><img src="https://images.luxagraf.net/slideshow/2010/4834662692.jpg" srcset="https://images.luxagraf.net/slideshow/2010/4834662692x2.jpg 2x" alt="Wall Pool" class="v"  />
            <figcaption class="figcaption">
                <div class="caption" id="id-2792">
                    <h3 class="figcaption--title">Wall Pool</h3>
                    <time class="figcaption--date" datetime="2010-07-24T17:49:54">Jul 24, 2010</time>
                    <a class="map-link" href="#" data-latitude="44.525326" data-longitude="-110.83688" data-imgid="id-2792">Map</a>
                      
                </div>
                <div class="photo-options">
                    <p>Panasonic GF1 with  <a href="http://amzn.to/azIr5w" title="buy the LUMIX G VARIO 14-45/F3.5-5.6 on Amazon">Lumix 14-45mm lens</a></p>
                    <p>0.008 sec (1/125) sec at f/16.0, ISO 100 </p>
                    <!--<p><a href="http://www.flickr.com/photos/luxagraf/4834662692/" title="View this Photo on Flickr.com">View on Flickr</a></p>-->
                    <!--<a href="#" class="exif-link" title="2792">Camera</a>-->
                </div>
            </figcaption>
        </figure>
        </article>
        
        <article id="image-19"> 
            <h6><a href="#image-19" class="permalink" title="link to this image">&#8734; nineteen &#8734;</a></h6>
            <figure class="fig"><img src="https://images.luxagraf.net/slideshow/2010/4834665338.jpg" srcset="https://images.luxagraf.net/slideshow/2010/4834665338x2.jpg 2x" alt="Sapphire Pool"   />
            <figcaption class="figcaption">
                <div class="caption" id="id-2791">
                    <h3 class="figcaption--title">Sapphire Pool</h3>
                    <time class="figcaption--date" datetime="2010-07-24T17:52:51">Jul 24, 2010</time>
                    <a class="map-link" href="#" data-latitude="44.484982" data-longitude="-110.85529" data-imgid="id-2791">Map</a>
                      
                </div>
                <div class="photo-options">
                    <p>Panasonic GF1 with  <a href="http://amzn.to/azIr5w" title="buy the LUMIX G VARIO 14-45/F3.5-5.6 on Amazon">Lumix 14-45mm lens</a></p>
                    <p>0.004 sec (1/250) sec at f/16.0, ISO 100 </p>
                    <!--<p><a href="http://www.flickr.com/photos/luxagraf/4834665338/" title="View this Photo on Flickr.com">View on Flickr</a></p>-->
                    <!--<a href="#" class="exif-link" title="2791">Camera</a>-->
                </div>
            </figcaption>
        </figure>
        </article>
        
        <article id="image-20"> 
            <h6><a href="#image-20" class="permalink" title="link to this image">&#8734; twenty-nine &#8734;</a></h6>
            <figure class="fig"><img src="https://images.luxagraf.net/slideshow/2010/4834058021.jpg" srcset="https://images.luxagraf.net/slideshow/2010/4834058021x2.jpg 2x" alt="Drainage" class="v"  />
            <figcaption class="figcaption">
                <div class="caption" id="id-2790">
                    <h3 class="figcaption--title">Drainage</h3>
                    <time class="figcaption--date" datetime="2010-07-24T18:01:13">Jul 24, 2010</time>
                    <a class="map-link" href="#" data-latitude="44.525326" data-longitude="-110.83688" data-imgid="id-2790">Map</a>
                      
                </div>
                <div class="photo-options">
                    <p>Panasonic GF1 with  <a href="http://amzn.to/azIr5w" title="buy the LUMIX G VARIO 14-45/F3.5-5.6 on Amazon">Lumix 14-45mm lens</a></p>
                    <p>0.002 sec (1/500) sec at f/16.0, ISO 100 </p>
                    <!--<p><a href="http://www.flickr.com/photos/luxagraf/4834058021/" title="View this Photo on Flickr.com">View on Flickr</a></p>-->
                    <!--<a href="#" class="exif-link" title="2790">Camera</a>-->
                </div>
            </figcaption>
        </figure>
        </article>
        
        <article id="image-21"> 
            <h6><a href="#image-21" class="permalink" title="link to this image">&#8734; twenty-one &#8734;</a></h6>
            <figure class="fig"><img src="https://images.luxagraf.net/slideshow/2010/4834670578.jpg" srcset="https://images.luxagraf.net/slideshow/2010/4834670578x2.jpg 2x" alt="Algae" class="v"  />
            <figcaption class="figcaption">
                <div class="caption" id="id-2789">
                    <h3 class="figcaption--title">Algae</h3>
                    <time class="figcaption--date" datetime="2010-07-24T18:13:02">Jul 24, 2010</time>
                    <a class="map-link" href="#" data-latitude="44.527594" data-longitude="-110.836" data-imgid="id-2789">Map</a>
                    <p class="figcaption--desc">The rivers are so warm they're full of giant algae plumes</p>   
                </div>
                <div class="photo-options">
                    <p>Panasonic GF1 with  <a href="http://amzn.to/azIr5w" title="buy the LUMIX G VARIO 14-45/F3.5-5.6 on Amazon">Lumix 14-45mm lens</a></p>
                    <p>0.003 sec (1/320) sec at f/3.8, ISO 100 </p>
                    <!--<p><a href="http://www.flickr.com/photos/luxagraf/4834670578/" title="View this Photo on Flickr.com">View on Flickr</a></p>-->
                    <!--<a href="#" class="exif-link" title="2789">Camera</a>-->
                </div>
            </figcaption>
        </figure>
        </article>
        
        <article id="image-22"> 
            <h6><a href="#image-22" class="permalink" title="link to this image">&#8734; twenty-two &#8734;</a></h6>
            <figure class="fig"><img src="https://images.luxagraf.net/slideshow/2010/4834672874.jpg" srcset="https://images.luxagraf.net/slideshow/2010/4834672874x2.jpg 2x" alt="Runoff" class="v"  />
            <figcaption class="figcaption">
                <div class="caption" id="id-2788">
                    <h3 class="figcaption--title">Runoff</h3>
                    <time class="figcaption--date" datetime="2010-07-24T18:27:17">Jul 24, 2010</time>
                    <a class="map-link" href="#" data-latitude="44.527594" data-longitude="-110.836" data-imgid="id-2788">Map</a>
                    <p class="figcaption--desc">Never stuck my foot in near the geysers, but even miles down stream Firehole river is well into the 70s.</p>   
                </div>
                <div class="photo-options">
                    <p>Panasonic GF1 with  <a href="http://amzn.to/azIr5w" title="buy the LUMIX G VARIO 14-45/F3.5-5.6 on Amazon">Lumix 14-45mm lens</a></p>
                    <p>1/4000 sec sec at f/3.5, ISO 100 </p>
                    <!--<p><a href="http://www.flickr.com/photos/luxagraf/4834672874/" title="View this Photo on Flickr.com">View on Flickr</a></p>-->
                    <!--<a href="#" class="exif-link" title="2788">Camera</a>-->
                </div>
            </figcaption>
        </figure>
        </article>
        
        <article id="image-23"> 
            <h6><a href="#image-23" class="permalink" title="link to this image">&#8734; twenty-three &#8734;</a></h6>
            <figure class="fig"><img src="https://images.luxagraf.net/slideshow/2010/4834676142.jpg" srcset="https://images.luxagraf.net/slideshow/2010/4834676142x2.jpg 2x" alt="Life"   />
            <figcaption class="figcaption">
                <div class="caption" id="id-2787">
                    <h3 class="figcaption--title">Life</h3>
                    <time class="figcaption--date" datetime="2010-07-24T18:27:31">Jul 24, 2010</time>
                    <a class="map-link" href="#" data-latitude="44.527594" data-longitude="-110.836" data-imgid="id-2787">Map</a>
                    <p class="figcaption--desc">There's sulfuric acid pouring in that river and yet somehow normal plants find a toe hold.</p>   
                </div>
                <div class="photo-options">
                    <p>Panasonic GF1 with  <a href="http://amzn.to/azIr5w" title="buy the LUMIX G VARIO 14-45/F3.5-5.6 on Amazon">Lumix 14-45mm lens</a></p>
                    <p>0.003 sec (1/400) sec at f/3.5, ISO 100 </p>
                    <!--<p><a href="http://www.flickr.com/photos/luxagraf/4834676142/" title="View this Photo on Flickr.com">View on Flickr</a></p>-->
                    <!--<a href="#" class="exif-link" title="2787">Camera</a>-->
                </div>
            </figcaption>
        </figure>
        </article>
        
        <article id="image-24"> 
            <h6><a href="#image-24" class="permalink" title="link to this image">&#8734; twenty-four &#8734;</a></h6>
            <figure class="fig"><img src="https://images.luxagraf.net/slideshow/2010/4834679828.jpg" srcset="https://images.luxagraf.net/slideshow/2010/4834679828x2.jpg 2x" alt="Rainbow Colors"   />
            <figcaption class="figcaption">
                <div class="caption" id="id-2786">
                    <h3 class="figcaption--title">Rainbow Colors</h3>
                    <time class="figcaption--date" datetime="2010-07-24T18:31:18">Jul 24, 2010</time>
                    <a class="map-link" href="#" data-latitude="44.462616" data-longitude="-110.854743" data-imgid="id-2786">Map</a>
                    <p class="figcaption--desc">Each color is created by a different type of microorganism.</p>   
                </div>
                <div class="photo-options">
                    <p>Panasonic GF1 with  <a href="http://amzn.to/azIr5w" title="buy the LUMIX G VARIO 14-45/F3.5-5.6 on Amazon">Lumix 14-45mm lens</a></p>
                    <p>0.003 sec (1/320) sec at f/8.0, ISO 100 </p>
                    <!--<p><a href="http://www.flickr.com/photos/luxagraf/4834679828/" title="View this Photo on Flickr.com">View on Flickr</a></p>-->
                    <!--<a href="#" class="exif-link" title="2786">Camera</a>-->
                </div>
            </figcaption>
        </figure>
        </article>
        
        <article id="image-25"> 
            <h6><a href="#image-25" class="permalink" title="link to this image">&#8734; twenty-five &#8734;</a></h6>
            <figure class="fig"><img src="https://images.luxagraf.net/slideshow/2010/4834683442.jpg" srcset="https://images.luxagraf.net/slideshow/2010/4834683442x2.jpg 2x" alt="Detail"   />
            <figcaption class="figcaption">
                <div class="caption" id="id-2785">
                    <h3 class="figcaption--title">Detail</h3>
                    <time class="figcaption--date" datetime="2010-07-24T18:33:08">Jul 24, 2010</time>
                    <a class="map-link" href="#" data-latitude="44.462616" data-longitude="-110.854743" data-imgid="id-2785">Map</a>
                      
                </div>
                <div class="photo-options">
                    <p>Panasonic GF1 with  <a href="http://amzn.to/azIr5w" title="buy the LUMIX G VARIO 14-45/F3.5-5.6 on Amazon">Lumix 14-45mm lens</a></p>
                    <p>0.002 sec (1/640) sec at f/8.0, ISO 100 </p>
                    <!--<p><a href="http://www.flickr.com/photos/luxagraf/4834683442/" title="View this Photo on Flickr.com">View on Flickr</a></p>-->
                    <!--<a href="#" class="exif-link" title="2785">Camera</a>-->
                </div>
            </figcaption>
        </figure>
        </article>
        
        <article id="image-26"> 
            <h6><a href="#image-26" class="permalink" title="link to this image">&#8734; twenty-six &#8734;</a></h6>
            <figure class="fig"><img src="https://images.luxagraf.net/slideshow/2010/4834814280.jpg" srcset="https://images.luxagraf.net/slideshow/2010/4834814280x2.jpg 2x" alt="Sunset Lake Pool Pano"   />
            <figcaption class="figcaption">
                <div class="caption" id="id-2784">
                    <h3 class="figcaption--title">Sunset Lake Pool Pano</h3>
                    <time class="figcaption--date" datetime="2010-07-24T18:38:43">Jul 24, 2010</time>
                    <a class="map-link" href="#" data-latitude="44.462823" data-longitude="-110.854614" data-imgid="id-2784">Map</a>
                      
                </div>
                <div class="photo-options">
                    <p>Panasonic GF1 with  <a href="http://amzn.to/azIr5w" title="buy the LUMIX G VARIO 14-45/F3.5-5.6 on Amazon">Lumix 14-45mm lens</a></p>
                    <p>0.002 sec (1/640) sec at f/8.0, ISO 100 </p>
                    <!--<p><a href="http://www.flickr.com/photos/luxagraf/4834814280/" title="View this Photo on Flickr.com">View on Flickr</a></p>-->
                    <!--<a href="#" class="exif-link" title="2784">Camera</a>-->
                </div>
            </figcaption>
        </figure>
        </article>
        
        <article id="image-27"> 
            <h6><a href="#image-27" class="permalink" title="link to this image">&#8734; twenty-seven &#8734;</a></h6>
            <figure class="fig"><img src="https://images.luxagraf.net/slideshow/2010/4834688460.jpg" srcset="https://images.luxagraf.net/slideshow/2010/4834688460x2.jpg 2x" alt="Steam"   />
            <figcaption class="figcaption">
                <div class="caption" id="id-2783">
                    <h3 class="figcaption--title">Steam</h3>
                    <time class="figcaption--date" datetime="2010-07-24T19:08:51">Jul 24, 2010</time>
                    <a class="map-link" href="#" data-latitude="44.535223" data-longitude="-110.80185" data-imgid="id-2783">Map</a>
                    <p class="figcaption--desc">Another one I don't remember the name of...</p>   
                </div>
                <div class="photo-options">
                    <p>Panasonic GF1 with  <a href="http://amzn.to/azIr5w" title="buy the LUMIX G VARIO 14-45/F3.5-5.6 on Amazon">Lumix 14-45mm lens</a></p>
                    <p>0.002 sec (1/500) sec at f/8.0, ISO 100 </p>
                    <!--<p><a href="http://www.flickr.com/photos/luxagraf/4834688460/" title="View this Photo on Flickr.com">View on Flickr</a></p>-->
                    <!--<a href="#" class="exif-link" title="2783">Camera</a>-->
                </div>
            </figcaption>
        </figure>
        </article>
        
        <article id="image-28"> 
            <h6><a href="#image-28" class="permalink" title="link to this image">&#8734; twenty-eight &#8734;</a></h6>
            <figure class="fig"><img src="https://images.luxagraf.net/slideshow/2010/4834692116.jpg" srcset="https://images.luxagraf.net/slideshow/2010/4834692116x2.jpg 2x" alt="Miniature Grand Canyon" class="v"  />
            <figcaption class="figcaption">
                <div class="caption" id="id-2782">
                    <h3 class="figcaption--title">Miniature Grand Canyon</h3>
                    <time class="figcaption--date" datetime="2010-07-24T20:36:15">Jul 24, 2010</time>
                    <a class="map-link" href="#" data-latitude="44.727844" data-longitude="-110.702984" data-imgid="id-2782">Map</a>
                    <p class="figcaption--desc">Underwater Grand Canyon. Maybe the Mariana Trench would be the better comparison.</p>   
                </div>
                <div class="photo-options">
                    <p>Panasonic GF1 with  <a href="http://amzn.to/azIr5w" title="buy the LUMIX G VARIO 14-45/F3.5-5.6 on Amazon">Lumix 14-45mm lens</a></p>
                    <p>0.003 sec (1/320) sec at f/8.0, ISO 100 </p>
                    <!--<p><a href="http://www.flickr.com/photos/luxagraf/4834692116/" title="View this Photo on Flickr.com">View on Flickr</a></p>-->
                    <!--<a href="#" class="exif-link" title="2782">Camera</a>-->
                </div>
            </figcaption>
        </figure>
        </article>
        
        <article id="image-29"> 
            <h6><a href="#image-29" class="permalink" title="link to this image">&#8734; twenty-nine &#8734;</a></h6>
            <figure class="fig"><img src="https://images.luxagraf.net/slideshow/2010/4834084815.jpg" srcset="https://images.luxagraf.net/slideshow/2010/4834084815x2.jpg 2x" alt="Swimming Pools on the Moon"   />
            <figcaption class="figcaption">
                <div class="caption" id="id-2781">
                    <h3 class="figcaption--title">Swimming Pools on the Moon</h3>
                    <time class="figcaption--date" datetime="2010-07-24T20:36:43">Jul 24, 2010</time>
                    <a class="map-link" href="#" data-latitude="44.727844" data-longitude="-110.702984" data-imgid="id-2781">Map</a>
                    <p class="figcaption--desc">Well, except for that pine tree branch.</p>   
                </div>
                <div class="photo-options">
                    <p>Panasonic GF1 with  <a href="http://amzn.to/azIr5w" title="buy the LUMIX G VARIO 14-45/F3.5-5.6 on Amazon">Lumix 14-45mm lens</a></p>
                    <p>0.002 sec (1/500) sec at f/8.0, ISO 100 </p>
                    <!--<p><a href="http://www.flickr.com/photos/luxagraf/4834084815/" title="View this Photo on Flickr.com">View on Flickr</a></p>-->
                    <!--<a href="#" class="exif-link" title="2781">Camera</a>-->
                </div>
            </figcaption>
        </figure>
        </article>
        
        <article id="image-30"> 
            <h6><a href="#image-30" class="permalink" title="link to this image">&#8734; thirty-nine &#8734;</a></h6>
            <figure class="fig"><img src="https://images.luxagraf.net/slideshow/2010/4834091111.jpg" srcset="https://images.luxagraf.net/slideshow/2010/4834091111x2.jpg 2x" alt="Small Geyser"   />
            <figcaption class="figcaption">
                <div class="caption" id="id-2780">
                    <h3 class="figcaption--title">Small Geyser</h3>
                    <time class="figcaption--date" datetime="2010-07-24T20:39:16">Jul 24, 2010</time>
                    <a class="map-link" href="#" data-latitude="44.728103" data-longitude="-110.70249" data-imgid="id-2780">Map</a>
                    <p class="figcaption--desc">Toward the back of the Norris Geyser Basin</p>   
                </div>
                <div class="photo-options">
                    <p>Panasonic GF1 with  <a href="http://amzn.to/azIr5w" title="buy the LUMIX G VARIO 14-45/F3.5-5.6 on Amazon">Lumix 14-45mm lens</a></p>
                    <p>0.001 sec (1/1000) sec at f/8.0, ISO 100 </p>
                    <!--<p><a href="http://www.flickr.com/photos/luxagraf/4834091111/" title="View this Photo on Flickr.com">View on Flickr</a></p>-->
                    <!--<a href="#" class="exif-link" title="2780">Camera</a>-->
                </div>
            </figcaption>
        </figure>
        </article>
        
        <article id="image-31"> 
            <h6><a href="#image-31" class="permalink" title="link to this image">&#8734; thirty-one &#8734;</a></h6>
            <figure class="fig"><img src="https://images.luxagraf.net/slideshow/2010/4834704672.jpg" srcset="https://images.luxagraf.net/slideshow/2010/4834704672x2.jpg 2x" alt="Norris Geyser Basin"   />
            <figcaption class="figcaption">
                <div class="caption" id="id-2779">
                    <h3 class="figcaption--title">Norris Geyser Basin</h3>
                    <time class="figcaption--date" datetime="2010-07-24T20:41:09">Jul 24, 2010</time>
                    <a class="map-link" href="#" data-latitude="44.728103" data-longitude="-110.70249" data-imgid="id-2779">Map</a>
                      
                </div>
                <div class="photo-options">
                    <p>Panasonic GF1 with  <a href="http://amzn.to/azIr5w" title="buy the LUMIX G VARIO 14-45/F3.5-5.6 on Amazon">Lumix 14-45mm lens</a></p>
                    <p>0.001 sec (1/1000) sec at f/8.0, ISO 100 </p>
                    <!--<p><a href="http://www.flickr.com/photos/luxagraf/4834704672/" title="View this Photo on Flickr.com">View on Flickr</a></p>-->
                    <!--<a href="#" class="exif-link" title="2779">Camera</a>-->
                </div>
            </figcaption>
        </figure>
        </article>
        
        <article id="image-32"> 
            <h6><a href="#image-32" class="permalink" title="link to this image">&#8734; thirty-two &#8734;</a></h6>
            <figure class="fig"><img src="https://images.luxagraf.net/slideshow/2010/4834098173.jpg" srcset="https://images.luxagraf.net/slideshow/2010/4834098173x2.jpg 2x" alt="Congress Pool"   />
            <figcaption class="figcaption">
                <div class="caption" id="id-2778">
                    <h3 class="figcaption--title">Congress Pool</h3>
                    <time class="figcaption--date" datetime="2010-07-24T20:42:38">Jul 24, 2010</time>
                    <a class="map-link" href="#" data-latitude="44.728103" data-longitude="-110.70249" data-imgid="id-2778">Map</a>
                    <p class="figcaption--desc">My favorite name in Yellowstone, this ugly, stinking, roiling grey cesspool is named Congress Pool.</p>   
                </div>
                <div class="photo-options">
                    <p>Panasonic GF1 with  <a href="http://amzn.to/azIr5w" title="buy the LUMIX G VARIO 14-45/F3.5-5.6 on Amazon">Lumix 14-45mm lens</a></p>
                    <p>0.001 sec (1/1000) sec at f/8.0, ISO 100 </p>
                    <!--<p><a href="http://www.flickr.com/photos/luxagraf/4834098173/" title="View this Photo on Flickr.com">View on Flickr</a></p>-->
                    <!--<a href="#" class="exif-link" title="2778">Camera</a>-->
                </div>
            </figcaption>
        </figure>
        </article>
        
        <article id="image-33"> 
            <h6><a href="#image-33" class="permalink" title="link to this image">&#8734; thirty-three &#8734;</a></h6>
            <figure class="fig"><img src="https://images.luxagraf.net/slideshow/2010/4834711272.jpg" srcset="https://images.luxagraf.net/slideshow/2010/4834711272x2.jpg 2x" alt="Green"   />
            <figcaption class="figcaption">
                <div class="caption" id="id-2777">
                    <h3 class="figcaption--title">Green</h3>
                    <time class="figcaption--date" datetime="2010-07-24T20:43:17">Jul 24, 2010</time>
                    <a class="map-link" href="#" data-latitude="44.728103" data-longitude="-110.70249" data-imgid="id-2777">Map</a>
                    <p class="figcaption--desc">The only green pool I saw.</p>   
                </div>
                <div class="photo-options">
                    <p>Panasonic GF1 with  <a href="http://amzn.to/azIr5w" title="buy the LUMIX G VARIO 14-45/F3.5-5.6 on Amazon">Lumix 14-45mm lens</a></p>
                    <p>0.003 sec (1/400) sec at f/8.0, ISO 100 </p>
                    <!--<p><a href="http://www.flickr.com/photos/luxagraf/4834711272/" title="View this Photo on Flickr.com">View on Flickr</a></p>-->
                    <!--<a href="#" class="exif-link" title="2777">Camera</a>-->
                </div>
            </figcaption>
        </figure>
        </article>
        
        <article id="image-34"> 
            <h6><a href="#image-34" class="permalink" title="link to this image">&#8734; thirty-four &#8734;</a></h6>
            <figure class="fig"><img src="https://images.luxagraf.net/slideshow/2010/4834104849.jpg" srcset="https://images.luxagraf.net/slideshow/2010/4834104849x2.jpg 2x" alt="The Grand Canyon of the Yellowstone" class="v"  />
            <figcaption class="figcaption">
                <div class="caption" id="id-2776">
                    <h3 class="figcaption--title">The Grand Canyon of the Yellowstone</h3>
                    <time class="figcaption--date" datetime="2010-07-24T21:38:39">Jul 24, 2010</time>
                    <a class="map-link" href="#" data-latitude="44.723343" data-longitude="-110.483429" data-imgid="id-2776">Map</a>
                      
                </div>
                <div class="photo-options">
                    <p>Panasonic GF1 with  <a href="http://amzn.to/a9DfV7" title="buy the LUMIX G VARIO 45-200/F4.0-5.6 on Amazon">Lumix 45-200mm lens</a></p>
                    <p>0.001 sec (1/1250) sec at f/6.3, ISO 100 </p>
                    <!--<p><a href="http://www.flickr.com/photos/luxagraf/4834104849/" title="View this Photo on Flickr.com">View on Flickr</a></p>-->
                    <!--<a href="#" class="exif-link" title="2776">Camera</a>-->
                </div>
            </figcaption>
        </figure>
        </article>
        
        <article id="image-35"> 
            <h6><a href="#image-35" class="permalink" title="link to this image">&#8734; thirty-five &#8734;</a></h6>
            <figure class="fig"><img src="https://images.luxagraf.net/slideshow/2010/4834717486.jpg" srcset="https://images.luxagraf.net/slideshow/2010/4834717486x2.jpg 2x" alt="Lower Yellowstone Falls" class="v"  />
            <figcaption class="figcaption">
                <div class="caption" id="id-2775">
                    <h3 class="figcaption--title">Lower Yellowstone Falls</h3>
                    <time class="figcaption--date" datetime="2010-07-24T21:45:45">Jul 24, 2010</time>
                    <a class="map-link" href="#" data-latitude="44.723343" data-longitude="-110.483429" data-imgid="id-2775">Map</a>
                      
                </div>
                <div class="photo-options">
                    <p>Panasonic GF1 with  <a href="http://amzn.to/a9DfV7" title="buy the LUMIX G VARIO 45-200/F4.0-5.6 on Amazon">Lumix 45-200mm lens</a></p>
                    <p>0.006 sec (1/160) sec at f/6.3, ISO 100 </p>
                    <!--<p><a href="http://www.flickr.com/photos/luxagraf/4834717486/" title="View this Photo on Flickr.com">View on Flickr</a></p>-->
                    <!--<a href="#" class="exif-link" title="2775">Camera</a>-->
                </div>
            </figcaption>
        </figure>
        </article>
        
        <article id="image-36"> 
            <h6><a href="#image-36" class="permalink" title="link to this image">&#8734; thirty-six &#8734;</a></h6>
            <figure class="fig"><img src="https://images.luxagraf.net/slideshow/2010/4834717944.jpg" srcset="https://images.luxagraf.net/slideshow/2010/4834717944x2.jpg 2x" alt="Osprey with Chicks"   />
            <figcaption class="figcaption">
                <div class="caption" id="id-2774">
                    <h3 class="figcaption--title">Osprey with Chicks</h3>
                    <time class="figcaption--date" datetime="2010-07-24T21:46:25">Jul 24, 2010</time>
                    <a class="map-link" href="#" data-latitude="44.723343" data-longitude="-110.483429" data-imgid="id-2774">Map</a>
                    <p class="figcaption--desc">Stretching the limits of my zoom lens, not perfect, but not too bad.</p>   
                </div>
                <div class="photo-options">
                    <p>Panasonic GF1 with  <a href="http://amzn.to/a9DfV7" title="buy the LUMIX G VARIO 45-200/F4.0-5.6 on Amazon">Lumix 45-200mm lens</a></p>
                    <p>0.001 sec (1/1250) sec at f/5.6, ISO 100 </p>
                    <!--<p><a href="http://www.flickr.com/photos/luxagraf/4834717944/" title="View this Photo on Flickr.com">View on Flickr</a></p>-->
                    <!--<a href="#" class="exif-link" title="2774">Camera</a>-->
                </div>
            </figcaption>
        </figure>
        </article>
        
        <article id="image-37"> 
            <h6><a href="#image-37" class="permalink" title="link to this image">&#8734; thirty-seven &#8734;</a></h6>
            <figure class="fig"><img src="https://images.luxagraf.net/slideshow/2010/4834110805.jpg" srcset="https://images.luxagraf.net/slideshow/2010/4834110805x2.jpg 2x" alt="Hayden Valley"   />
            <figcaption class="figcaption">
                <div class="caption" id="id-2773">
                    <h3 class="figcaption--title">Hayden Valley</h3>
                    <time class="figcaption--date" datetime="2010-07-24T22:27:34">Jul 24, 2010</time>
                    <a class="map-link" href="#" data-latitude="44.667226" data-longitude="-110.467261" data-imgid="id-2773">Map</a>
                    <p class="figcaption--desc">Yellowstone River</p>   
                </div>
                <div class="photo-options">
                    <p>Panasonic GF1 with  <a href="http://amzn.to/azIr5w" title="buy the LUMIX G VARIO 14-45/F3.5-5.6 on Amazon">Lumix 14-45mm lens</a></p>
                    <p>0.001 sec (1/1000) sec at f/5.3, ISO 100 </p>
                    <!--<p><a href="http://www.flickr.com/photos/luxagraf/4834110805/" title="View this Photo on Flickr.com">View on Flickr</a></p>-->
                    <!--<a href="#" class="exif-link" title="2773">Camera</a>-->
                </div>
            </figcaption>
        </figure>
        </article>
        
        <article id="image-38"> 
            <h6><a href="#image-38" class="permalink" title="link to this image">&#8734; thirty-eight &#8734;</a></h6>
            <figure class="fig"><img src="https://images.luxagraf.net/slideshow/2010/4834722764.jpg" srcset="https://images.luxagraf.net/slideshow/2010/4834722764x2.jpg 2x" alt="Buffalo"   />
            <figcaption class="figcaption">
                <div class="caption" id="id-2772">
                    <h3 class="figcaption--title">Buffalo</h3>
                    <time class="figcaption--date" datetime="2010-07-24T22:37:56">Jul 24, 2010</time>
                    <a class="map-link" href="#" data-latitude="44.638139" data-longitude="-110.452347" data-imgid="id-2772">Map</a>
                    <p class="figcaption--desc">We bonded. Or he looked at me, contemplated charging, decided he was too lazy and went back to eating. Which is Bison for bonding.</p>   
                </div>
                <div class="photo-options">
                    <p>Panasonic GF1 with  <a href="http://amzn.to/a9DfV7" title="buy the LUMIX G VARIO 45-200/F4.0-5.6 on Amazon">Lumix 45-200mm lens</a></p>
                    <p>0.001 sec (1/800) sec at f/5.6, ISO 100 </p>
                    <!--<p><a href="http://www.flickr.com/photos/luxagraf/4834722764/" title="View this Photo on Flickr.com">View on Flickr</a></p>-->
                    <!--<a href="#" class="exif-link" title="2772">Camera</a>-->
                </div>
            </figcaption>
        </figure>
        </article>
        
        <article id="image-39"> 
            <h6><a href="#image-39" class="permalink" title="link to this image">&#8734; thirty-nine &#8734;</a></h6>
            <figure class="fig"><img src="https://images.luxagraf.net/slideshow/2010/4834723502.jpg" srcset="https://images.luxagraf.net/slideshow/2010/4834723502x2.jpg 2x" alt="Grizzly with cubs"   />
            <figcaption class="figcaption">
                <div class="caption" id="id-2771">
                    <h3 class="figcaption--title">Grizzly with cubs</h3>
                    <time class="figcaption--date" datetime="2010-07-24T22:43:43">Jul 24, 2010</time>
                    <a class="map-link" href="#" data-latitude="44.630497" data-longitude="-110.44179" data-imgid="id-2771">Map</a>
                    <p class="figcaption--desc">At least half a mile away, the way I like my grizzly beers. Especially mother's with cubs. I mean, the scientific name is Ursus arctos horribilis. Horribilis.</p>   
                </div>
                <div class="photo-options">
                    <p>Panasonic GF1 with  <a href="http://amzn.to/a9DfV7" title="buy the LUMIX G VARIO 45-200/F4.0-5.6 on Amazon">Lumix 45-200mm lens</a></p>
                    <p>0.001 sec (1/800) sec at f/5.6, ISO 100 </p>
                    <!--<p><a href="http://www.flickr.com/photos/luxagraf/4834723502/" title="View this Photo on Flickr.com">View on Flickr</a></p>-->
                    <!--<a href="#" class="exif-link" title="2771">Camera</a>-->
                </div>
            </figcaption>
        </figure>
        </article>
        
        <article id="image-40"> 
            <h6><a href="#image-40" class="permalink" title="link to this image">&#8734; forty-nine &#8734;</a></h6>
            <figure class="fig"><img src="https://images.luxagraf.net/slideshow/2010/4834115783.jpg" srcset="https://images.luxagraf.net/slideshow/2010/4834115783x2.jpg 2x" alt="Yellowstone River"   />
            <figcaption class="figcaption">
                <div class="caption" id="id-2770">
                    <h3 class="figcaption--title">Yellowstone River</h3>
                    <time class="figcaption--date" datetime="2010-07-24T22:52:49">Jul 24, 2010</time>
                    <a class="map-link" href="#" data-latitude="44.60245" data-longitude="-110.384445" data-imgid="id-2770">Map</a>
                      
                </div>
                <div class="photo-options">
                    <p>Panasonic GF1 with  <a href="http://amzn.to/daMYOm" title="buy the LUMIX G 20/F1.7 on Amazon">Lumix 20mm prime lens</a></p>
                    <p>0.001 sec (1/1000) sec at f/5.6, ISO 100 </p>
                    <!--<p><a href="http://www.flickr.com/photos/luxagraf/4834115783/" title="View this Photo on Flickr.com">View on Flickr</a></p>-->
                    <!--<a href="#" class="exif-link" title="2770">Camera</a>-->
                </div>
            </figcaption>
        </figure>
        </article>
        
        <article id="image-41"> 
            <h6><a href="#image-41" class="permalink" title="link to this image">&#8734; forty-one &#8734;</a></h6>
            <figure class="fig"><img src="https://images.luxagraf.net/slideshow/2010/4834727346.jpg" srcset="https://images.luxagraf.net/slideshow/2010/4834727346x2.jpg 2x" alt="River, Flowers"   />
            <figcaption class="figcaption">
                <div class="caption" id="id-2769">
                    <h3 class="figcaption--title">River, Flowers</h3>
                    <time class="figcaption--date" datetime="2010-07-24T22:56:01">Jul 24, 2010</time>
                    <a class="map-link" href="#" data-latitude="44.60245" data-longitude="-110.384445" data-imgid="id-2769">Map</a>
                      
                </div>
                <div class="photo-options">
                    <p>Panasonic GF1 with  <a href="http://amzn.to/daMYOm" title="buy the LUMIX G 20/F1.7 on Amazon">Lumix 20mm prime lens</a></p>
                    <p>0.033 sec (1/30) sec at f/16.0, ISO 100 </p>
                    <!--<p><a href="http://www.flickr.com/photos/luxagraf/4834727346/" title="View this Photo on Flickr.com">View on Flickr</a></p>-->
                    <!--<a href="#" class="exif-link" title="2769">Camera</a>-->
                </div>
            </figcaption>
        </figure>
        </article>
        
        <article id="image-42"> 
            <h6><a href="#image-42" class="permalink" title="link to this image">&#8734; forty-two &#8734;</a></h6>
            <figure class="fig"><img src="https://images.luxagraf.net/slideshow/2010/4834120111.jpg" srcset="https://images.luxagraf.net/slideshow/2010/4834120111x2.jpg 2x" alt="Tetons from Yellowstone"   />
            <figcaption class="figcaption">
                <div class="caption" id="id-2768">
                    <h3 class="figcaption--title">Tetons from Yellowstone</h3>
                    <time class="figcaption--date" datetime="2010-07-24T23:33:42">Jul 24, 2010</time>
                    <a class="map-link" href="#" data-latitude="44.510194" data-longitude="-110.27471" data-imgid="id-2768">Map</a>
                    <p class="figcaption--desc">They say you can see the Tetons from up to 150 miles in every direction.</p>   
                </div>
                <div class="photo-options">
                    <p>Panasonic GF1 with  <a href="http://amzn.to/a9DfV7" title="buy the LUMIX G VARIO 45-200/F4.0-5.6 on Amazon">Lumix 45-200mm lens</a></p>
                    <p>0.002 sec (1/500) sec at f/5.6, ISO 100 </p>
                    <!--<p><a href="http://www.flickr.com/photos/luxagraf/4834120111/" title="View this Photo on Flickr.com">View on Flickr</a></p>-->
                    <!--<a href="#" class="exif-link" title="2768">Camera</a>-->
                </div>
            </figcaption>
        </figure>
        </article>
        
        <article id="image-43"> 
            <h6><a href="#image-43" class="permalink" title="link to this image">&#8734; forty-three &#8734;</a></h6>
            <figure class="fig"><img src="https://images.luxagraf.net/slideshow/2010/4834733108.jpg" srcset="https://images.luxagraf.net/slideshow/2010/4834733108x2.jpg 2x" alt="Mule Deer"   />
            <figcaption class="figcaption">
                <div class="caption" id="id-2767">
                    <h3 class="figcaption--title">Mule Deer</h3>
                    <time class="figcaption--date" datetime="2010-07-25T00:19:33">Jul 25, 2010</time>
                    <a class="map-link" href="#" data-latitude="44.510232" data-longitude="-110.272693" data-imgid="id-2767">Map</a>
                    <p class="figcaption--desc">Taken in very low light, mainly so I could play with the new color noise tools in Lightroom 3. They actually work quite well.</p>   
                </div>
                <div class="photo-options">
                    <p>Panasonic GF1 with  <a href="http://amzn.to/a9DfV7" title="buy the LUMIX G VARIO 45-200/F4.0-5.6 on Amazon">Lumix 45-200mm lens</a></p>
                    <p>0.05 sec (1/20) sec at f/5.1, ISO 800 </p>
                    <!--<p><a href="http://www.flickr.com/photos/luxagraf/4834733108/" title="View this Photo on Flickr.com">View on Flickr</a></p>-->
                    <!--<a href="#" class="exif-link" title="2767">Camera</a>-->
                </div>
            </figcaption>
        </figure>
        </article>
        
        <article id="image-44"> 
            <h6><a href="#image-44" class="permalink" title="link to this image">&#8734; forty-four &#8734;</a></h6>
            <figure class="fig"><img src="https://images.luxagraf.net/slideshow/2010/4834126787.jpg" srcset="https://images.luxagraf.net/slideshow/2010/4834126787x2.jpg 2x" alt="Full moon"   />
            <figcaption class="figcaption">
                <div class="caption" id="id-2766">
                    <h3 class="figcaption--title">Full moon</h3>
                    <time class="figcaption--date" datetime="2010-07-25T00:37:51">Jul 25, 2010</time>
                    <a class="map-link" href="#" data-latitude="44.504226" data-longitude="-110.197473" data-imgid="id-2766">Map</a>
                      
                </div>
                <div class="photo-options">
                    <p>Panasonic GF1 with  <a href="http://amzn.to/a9DfV7" title="buy the LUMIX G VARIO 45-200/F4.0-5.6 on Amazon">Lumix 45-200mm lens</a></p>
                    <p> sec at f/11.0, ISO 400 </p>
                    <!--<p><a href="http://www.flickr.com/photos/luxagraf/4834126787/" title="View this Photo on Flickr.com">View on Flickr</a></p>-->
                    <!--<a href="#" class="exif-link" title="2766">Camera</a>-->
                </div>
            </figcaption>
        </figure>
        </article>
        
        <article id="image-45"> 
            <h6><a href="#image-45" class="permalink" title="link to this image">&#8734; forty-five &#8734;</a></h6>
            <figure class="fig"><img src="https://images.luxagraf.net/slideshow/2010/4834742114.jpg" srcset="https://images.luxagraf.net/slideshow/2010/4834742114x2.jpg 2x" alt="Yellowstone River and Falls"   />
            <figcaption class="figcaption">
                <div class="caption" id="id-2765">
                    <h3 class="figcaption--title">Yellowstone River and Falls</h3>
                    <time class="figcaption--date" datetime="2008-07-03T23:44:25">Jul 3, 2008</time>
                    <a class="map-link" href="#" data-latitude="44.720674" data-longitude="-110.47903" data-imgid="id-2765">Map</a>
                      
                </div>
                <div class="photo-options">
                    <p> </p>
                    <p> sec at f/2.8, ISO  </p>
                    <!--<p><a href="http://www.flickr.com/photos/luxagraf/4834742114/" title="View this Photo on Flickr.com">View on Flickr</a></p>-->
                    <!--<a href="#" class="exif-link" title="2765">Camera</a>-->
                </div>
            </figcaption>
        </figure>
        </article>
        
        <article id="image-46"> 
            <h6><a href="#image-46" class="permalink" title="link to this image">&#8734; forty-six &#8734;</a></h6>
            <figure class="fig"><img src="https://images.luxagraf.net/slideshow/2010/4834745712.jpg" srcset="https://images.luxagraf.net/slideshow/2010/4834745712x2.jpg 2x" alt="Lower Falls, Canyon" class="v"  />
            <figcaption class="figcaption">
                <div class="caption" id="id-2764">
                    <h3 class="figcaption--title">Lower Falls, Canyon</h3>
                    <time class="figcaption--date" datetime="2010-07-25T14:56:56">Jul 25, 2010</time>
                    <a class="map-link" href="#" data-latitude="44.720674" data-longitude="-110.47903" data-imgid="id-2764">Map</a>
                      
                </div>
                <div class="photo-options">
                    <p>Panasonic GF1 with  <a href="http://amzn.to/azIr5w" title="buy the LUMIX G VARIO 14-45/F3.5-5.6 on Amazon">Lumix 14-45mm lens</a></p>
                    <p>0.001 sec (1/1250) sec at f/11.0, ISO 400 </p>
                    <!--<p><a href="http://www.flickr.com/photos/luxagraf/4834745712/" title="View this Photo on Flickr.com">View on Flickr</a></p>-->
                    <!--<a href="#" class="exif-link" title="2764">Camera</a>-->
                </div>
            </figcaption>
        </figure>
        </article>
        
        <article id="image-47"> 
            <h6><a href="#image-47" class="permalink" title="link to this image">&#8734; forty-seven &#8734;</a></h6>
            <figure class="fig"><img src="https://images.luxagraf.net/slideshow/2010/4834140005.jpg" srcset="https://images.luxagraf.net/slideshow/2010/4834140005x2.jpg 2x" alt="Yellowstone Canyon Colors"   />
            <figcaption class="figcaption">
                <div class="caption" id="id-2763">
                    <h3 class="figcaption--title">Yellowstone Canyon Colors</h3>
                    <time class="figcaption--date" datetime="2010-07-25T14:58:18">Jul 25, 2010</time>
                    <a class="map-link" href="#" data-latitude="44.720674" data-longitude="-110.47903" data-imgid="id-2763">Map</a>
                      
                </div>
                <div class="photo-options">
                    <p>Panasonic GF1 with  <a href="http://amzn.to/azIr5w" title="buy the LUMIX G VARIO 14-45/F3.5-5.6 on Amazon">Lumix 14-45mm lens</a></p>
                    <p>0.001 sec (1/1000) sec at f/11.0, ISO 400 </p>
                    <!--<p><a href="http://www.flickr.com/photos/luxagraf/4834140005/" title="View this Photo on Flickr.com">View on Flickr</a></p>-->
                    <!--<a href="#" class="exif-link" title="2763">Camera</a>-->
                </div>
            </figcaption>
        </figure>
        </article>
        
        <article id="image-48"> 
            <h6><a href="#image-48" class="permalink" title="link to this image">&#8734; forty-eight &#8734;</a></h6>
            <figure class="fig"><img src="https://images.luxagraf.net/slideshow/2010/4834143869.jpg" srcset="https://images.luxagraf.net/slideshow/2010/4834143869x2.jpg 2x" alt="Lower Falls" class="v"  />
            <figcaption class="figcaption">
                <div class="caption" id="id-2762">
                    <h3 class="figcaption--title">Lower Falls</h3>
                    <time class="figcaption--date" datetime="2010-07-25T14:59:48">Jul 25, 2010</time>
                    <a class="map-link" href="#" data-latitude="44.720674" data-longitude="-110.47903" data-imgid="id-2762">Map</a>
                      
                </div>
                <div class="photo-options">
                    <p>Panasonic GF1 with  <a href="http://amzn.to/a9DfV7" title="buy the LUMIX G VARIO 45-200/F4.0-5.6 on Amazon">Lumix 45-200mm lens</a></p>
                    <p>0.001 sec (1/800) sec at f/11.0, ISO 100 </p>
                    <!--<p><a href="http://www.flickr.com/photos/luxagraf/4834143869/" title="View this Photo on Flickr.com">View on Flickr</a></p>-->
                    <!--<a href="#" class="exif-link" title="2762">Camera</a>-->
                </div>
            </figcaption>
        </figure>
        </article>
        
        <article id="image-49"> 
            <h6><a href="#image-49" class="permalink" title="link to this image">&#8734; forty-nine &#8734;</a></h6>
            <figure class="fig"><img src="https://images.luxagraf.net/slideshow/2010/4834758532.jpg" srcset="https://images.luxagraf.net/slideshow/2010/4834758532x2.jpg 2x" alt="Rangers" class="v"  />
            <figcaption class="figcaption">
                <div class="caption" id="id-2761">
                    <h3 class="figcaption--title">Rangers</h3>
                    <time class="figcaption--date" datetime="2010-07-25T15:42:59">Jul 25, 2010</time>
                    <a class="map-link" href="#" data-latitude="44.737809" data-longitude="-110.696879" data-imgid="id-2761">Map</a>
                    <p class="figcaption--desc">Chicks dig the uniform (taken at the Museum of the Ranger)</p>   
                </div>
                <div class="photo-options">
                    <p>Panasonic GF1 with  <a href="http://amzn.to/daMYOm" title="buy the LUMIX G 20/F1.7 on Amazon">Lumix 20mm prime lens</a></p>
                    <p>0.1 sec (1/10) sec at f/1.7, ISO 400 </p>
                    <!--<p><a href="http://www.flickr.com/photos/luxagraf/4834758532/" title="View this Photo on Flickr.com">View on Flickr</a></p>-->
                    <!--<a href="#" class="exif-link" title="2761">Camera</a>-->
                </div>
            </figcaption>
        </figure>
        </article>
        
        <article id="image-50"> 
            <h6><a href="#image-50" class="permalink" title="link to this image">&#8734; fifty-nine &#8734;</a></h6>
            <figure class="fig"><img src="https://images.luxagraf.net/slideshow/2010/4834762128.jpg" srcset="https://images.luxagraf.net/slideshow/2010/4834762128x2.jpg 2x" alt="Mammoth Springs"   />
            <figcaption class="figcaption">
                <div class="caption" id="id-2760">
                    <h3 class="figcaption--title">Mammoth Springs</h3>
                    <time class="figcaption--date" datetime="2010-07-25T16:36:27">Jul 25, 2010</time>
                    <a class="map-link" href="#" data-latitude="44.968578" data-longitude="-110.70705" data-imgid="id-2760">Map</a>
                    <p class="figcaption--desc">Not so springy right now...</p>   
                </div>
                <div class="photo-options">
                    <p>Panasonic GF1 with  <a href="http://amzn.to/azIr5w" title="buy the LUMIX G VARIO 14-45/F3.5-5.6 on Amazon">Lumix 14-45mm lens</a></p>
                    <p>0.003 sec (1/400) sec at f/11.0, ISO 100 </p>
                    <!--<p><a href="http://www.flickr.com/photos/luxagraf/4834762128/" title="View this Photo on Flickr.com">View on Flickr</a></p>-->
                    <!--<a href="#" class="exif-link" title="2760">Camera</a>-->
                </div>
            </figcaption>
        </figure>
        </article>
        
        <article id="image-51"> 
            <h6><a href="#image-51" class="permalink" title="link to this image">&#8734; fifty-one &#8734;</a></h6>
            <figure class="fig"><img src="https://images.luxagraf.net/slideshow/2010/4834158621.jpg" srcset="https://images.luxagraf.net/slideshow/2010/4834158621x2.jpg 2x" alt="Big Sky Country"   />
            <figcaption class="figcaption">
                <div class="caption" id="id-2759">
                    <h3 class="figcaption--title">Big Sky Country</h3>
                    <time class="figcaption--date" datetime="2010-07-25T16:43:23">Jul 25, 2010</time>
                    <a class="map-link" href="#" data-latitude="44.968578" data-longitude="-110.70705" data-imgid="id-2759">Map</a>
                    <p class="figcaption--desc">Somewhere out there is Montana.</p>   
                </div>
                <div class="photo-options">
                    <p>Panasonic GF1 with  <a href="http://amzn.to/azIr5w" title="buy the LUMIX G VARIO 14-45/F3.5-5.6 on Amazon">Lumix 14-45mm lens</a></p>
                    <p>0.002 sec (1/500) sec at f/11.0, ISO 100 </p>
                    <!--<p><a href="http://www.flickr.com/photos/luxagraf/4834158621/" title="View this Photo on Flickr.com">View on Flickr</a></p>-->
                    <!--<a href="#" class="exif-link" title="2759">Camera</a>-->
                </div>
            </figcaption>
        </figure>
        </article>
        
        <article id="image-52"> 
            <h6><a href="#image-52" class="permalink" title="link to this image">&#8734; fifty-two &#8734;</a></h6>
            <figure class="fig"><img src="https://images.luxagraf.net/slideshow/2010/4834770984.jpg" srcset="https://images.luxagraf.net/slideshow/2010/4834770984x2.jpg 2x" alt="Rough Break"   />
            <figcaption class="figcaption">
                <div class="caption" id="id-2758">
                    <h3 class="figcaption--title">Rough Break</h3>
                    <time class="figcaption--date" datetime="2010-07-25T17:24:39">Jul 25, 2010</time>
                    <a class="map-link" href="#" data-latitude="44.946724" data-longitude="-110.713863" data-imgid="id-2758">Map</a>
                    <p class="figcaption--desc">Man, and just when things were going so well...</p>   
                </div>
                <div class="photo-options">
                    <p>Panasonic GF1 with  <a href="http://amzn.to/a9DfV7" title="buy the LUMIX G VARIO 45-200/F4.0-5.6 on Amazon">Lumix 45-200mm lens</a></p>
                    <p>0.004 sec (1/250) sec at f/10.0, ISO 100 </p>
                    <!--<p><a href="http://www.flickr.com/photos/luxagraf/4834770984/" title="View this Photo on Flickr.com">View on Flickr</a></p>-->
                    <!--<a href="#" class="exif-link" title="2758">Camera</a>-->
                </div>
            </figcaption>
        </figure>
        </article>
        
    </section>

    
    <footer role="contentinfo">
        <nav class="bl">
            <ul>
                <li><a href="/blogroll" title="Sites that inspire us">Blogroll</a></li>
                <li><a href="/jrnl/feed.xml" title="RSS feed">Subscribe</a></li>
                <li><a href="/contact/" title="contact luxagraf">Contact</a></li>
                <li><a href="https://twitter.com/luxagraf" rel="me" title="follow luxagraf on Twitter">Twitter</a></li>
                <li><a href="https://www.flickr.com/photos/luxagraf" rel="me" title="luxagraf on Flickr">Flickr</a></li>
                <li><a href="https://www.facebook.com/luxagraf" rel="me" title="luxagraf on Facebook">Facebook</a></li>
                <li><a href="https://www.instagram.com/luxagraf/" rel="me" title="luxagraf on Instacrap">Instacrap</a></li>
            </ul>
        </nav>
        <p id="license">
            &copy; 2003-2016 
            <span class="h-card"><a class="p-name u-url" href="https://luxagraf.net/">Scott Gilbertson</a><data class="p-nickname" value="luxagraf"></data><data class="p-locality" value="Athens"></data><data class="p-region" value="Georgia"></data><data class="p-country-name" value="United States"></data></span>, except photos, which are licensed under the Creative Commons (<a href="http://creativecommons.org/licenses/by-sa/3.0/" title="read the Attribution-Share Alike 3.0 deed">details</a>).
        </p>
        <p><a href="https://evolution-host.com/ssd-vps-hosting.php">SSD VPS Hosting by Evolution Host</a>.</p> 
    </footer>
    </div>
    
    <script type="text/javascript" src="/media/js/jquery.js"></script>
    <script type="text/javascript" src="/media/js/jquery.scrollTo-1.4.2-min.js"></script>
    <script type="text/javascript" src="/media/js/photos.min.js" ></script>

<!-- Piwik -->
<script type="text/javascript">
var _paq = _paq || [];
_paq.push(["disableCookies"]);
_paq.push(['trackPageView']);
_paq.push(['enableLinkTracking']);
(function() {
    var u="//stats.luxagraf.net/";
    _paq.push(['setTrackerUrl', u+'piwik.php']);
    _paq.push(['setSiteId', 1]);
    var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0];
    g.type='text/javascript'; g.async=true; g.defer=true; g.src=u+'piwik.js'; s.parentNode.insertBefore(g,s);
})();
</script>
<noscript><p><img src="//stats.luxagraf.net/piwik.php?idsite=1" style="border:0;" alt="" /></p></noscript>
<!-- End Piwik Code -->


</body>
</html>