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
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<!--
. .o8 oooo
.o8 "888 `888
.o888oo oooo oooo ooo. .oo. .oo. 888oooo. 888 oooo d8b
888 `888 `888 `888P"Y88bP"Y88b d88' `88b 888 `888""8P
888 888 888 888 888 888 888 888 888 888
888 . 888 888 888 888 888 888 888 888 888 .o.
"888" `V88V"V8P' o888o o888o o888o `Y8bod8P' o888o d888b Y8P
-->
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<!-- DEFAULT VARIABLES -->
<meta name="color:Background" content="#3b627e" />
<meta name="font:Title" content="Arial" />
<meta name="font:Body" content="Arial" />
<meta name="font:Accent" content="Lucida Sans" />
<meta name="if:Show People I Follow" content="1" />
<meta name="if:Show Tags" content="1" />
<meta name="if:Show Album Art on Audio Posts" content="1" />
<meta name="if:Enable Jump Pagination" content="0" />
<meta name="text:Disqus Shortname" content="" />
<meta name="image:Header" content="" />
<meta name="image:Background" content="" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>The Near-Sighted Monkey</title>
<meta name="description" content="" />
<link rel="shortcut icon" href="http://24.media.tumblr.com/avatar_cd7caa3934d2_16.png" />
<link rel="apple-touch-icon" href="http://30.media.tumblr.com/avatar_cd7caa3934d2_128.png"/>
<link rel="alternate" type="application/rss+xml" href="http://thenearsightedmonkey.tumblr.com/rss" />
<style type="text/css">
body {
background: #8FAABD url('http://assets.tumblr.com/images/x.gif') top left fixed repeat;
margin: 0;
padding: 0;
font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif;
}
.clear {
clear: both;
height: 0px;
overflow: hidden;
}
a img {
border: none;
}
#wrapper {
width: 845px;
margin: 0 auto;
}
#wrapper #title {
margin: 30px 0;
color: #fff;
font-size: 50px;
font-weight: bold;
font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif;
text-shadow: 1px 3px 5px rgba(0,0,0, 0.5);
letter-spacing: -1px;
}
#wrapper #title a {
color: #fff;
text-decoration: none;
}
#wrapper #content {
width: 520px;
float: left;
}
#wrapper #content .post {
font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif;
background: #fff;
padding: 10px;
position: relative;
}
#wrapper #content .post .media {
text-align: center;
margin-bottom: 10px;
}
#wrapper #content .post .quotebg {
font-family: georgia, serif;
font-size: 150px;
color: #8FAABD;
opacity: 0.2;
filter: alpha(opacity=20);
-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=20)";
position: absolute;
top: 70px;
left: 10px;
}
#wrapper #content .post .quote {
color: #8FAABD;
font-weight: bold;
padding: 20px 20px 5px 20px;
}
#wrapper #content .post .quote.short {
font-size: 33px;
line-height: 35px;
}
#wrapper #content .post .quote.medium {
font-size: 25px;
line-height: 28px;
}
#wrapper #content .post .quote.long {
font-size: 18px;
line-height: 22px;
}
#wrapper #content .post .quote_source *:first-child {
margin-top: 0px;
}
#wrapper #content .post .quote_source *:last-child {
margin-bottom: 0px;
}
#wrapper #content .post .quote *:first-child {
margin-top: 0px;
}
#wrapper #content .post .quote *:last-child {
margin-bottom: 0px;
}
#wrapper #content .post .copy {
color: #6e7173;
padding: 10px;
font-size: 13px;
line-height: 15px;
}
#wrapper #content .post .copy a {
color: #6e7173;
text-decoration: underline;
}
#wrapper #content .post .copy p {
margin: 10px 0 0 0;
padding: 0;
}
#wrapper #content .post .copy pre {
margin: 10px 0px 10px 0px;
padding: 10px;
background-color: #e6e6e6;
font: normal 11px Courier, monospace;
overflow: auto;
}
#wrapper #content .post .copy > p:first-child {
margin-top: 0;
}
#wrapper #content .post .copy img {
max-width: 100%;
}
#wrapper #content .post .audio {
background: #eaeaea;
float: left;
padding: 7px;
margin-bottom: 10px;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
border-radius: 4px;
}
#wrapper #content .post .audio .player {
float: left;
}
#wrapper #content .post .audio .player .audio_player embed {
border: 1px solid #c8c8c8;
}
#wrapper #content .post .audio .meta {
padding: 8px 13px;
height: 13px;
float: left;
color: #666;
font-family: 'Lucida Sans', 'Lucida Grande', 'Lucida Sans Unicode', sans-serif;
font-size: 11px;
text-transform: lowercase;
}
#wrapper #content .post .audio .meta a {
color: #666;
text-decoration: none;
}
#wrapper #content .post .album_art {
text-align: center;
}
#wrapper #content .post .question {
color: #494949;
font-size: 16px;
font-weight: bold;
background: #f1f1f1;
-moz-border-radius: 8px;
-webkit-border-radius: 8px;
border-radius: 8px;
margin: 0 0 15px 0;
padding: 15px 20px;
position: relative;
}
#wrapper #content .post .question .nipple {
width: 13px;
height: 7px;
background: #f1f1f1 url('http://assets.tumblr.com/themes/redux/ask-mask.png');
position: absolute;
bottom: -7px;
left: 30px;
}
#wrapper #content .post .asker_container {
margin: 0 0 20px 24px;
}
#wrapper #content .post .asker_container img {
margin: 0 12px -7px 0;
}
#wrapper #content .post .asker_container a.asker {
color: ;
}
#wrapper #content .post .title {
color: #494949;
font-size: 16px;
font-weight: bold;
padding: 10px 10px 0 10px;
}
#wrapper #content .post img {
max-width: 500px;
}
#wrapper #content .post .chat {
background-color: #fff;
border-left: 5px solid #dedddd;
margin: 10px 10px 0 10px;
font-size: 14px;
}
#wrapper #content .post .chat .lines {
margin-left: 1px;
}
#wrapper #content .post .chat .lines .line {
background-color: #eaeaea;
color: #494949;
margin-bottom: 1px;
padding: 3px 5px;
}
#wrapper #content .post .chat .lines .line.even {
background-color: #dedddd;
}
#wrapper #content .post .link {
margin: 4px 0 2px 0;
font-size: 16px;
line-height: 25px;
}
#wrapper #content .post .link a {
background-color: #8FAABD;
color: #fff;
padding: 5px 7px;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
border-radius: 4px;
}
#wrapper #content .post .link a:hover {
opacity: 0.9;
filter: alpha(opacity=90);
-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
}
#wrapper #content .post .footer {
background: #eaeaea;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
border-radius: 4px;
font-family: 'Lucida Sans', 'Lucida Grande', 'Lucida Sans Unicode', sans-serif;
font-size: 11px;
color: #666;
padding: 5px 10px;
margin-top: 10px;
}
#wrapper #content .post .footer.for_permalink:hover {
opacity: 0.9;
filter: alpha(opacity=90);
-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
}
#wrapper #content .post .footer .date {
width: 67%;
float: left;
color: #666;
}
#wrapper #content .post .footer .notes {
width: 33%;
float: right;
text-align: right;
color: #666;
}
#wrapper #content .post .footer .notes a {
color: #666;
}
#wrapper #content .post .footer .tags a {
color: #4a4a51;
text-decoration: underline;
}
#wrapper #content .post .footer .tags .tag-commas:last-child {
display: none;
}
#wrapper #content .post .footer.with_source_url .tags {
max-width: 330px;
float: left;
}
#wrapper #content .post .footer.with_source_url .source_url {
float: right;
max-width: 160px;
overflow: hidden;
white-space: nowrap;
}
#wrapper #content .post .footer.with_source_url .source_url img {
vertical-align: top;
-moz-opacity: 0.5;
opacity: 0.5;
}
#wrapper #content .post .footer.with_source_url .source_url:hover img {
-moz-opacity: 0.7;
opacity: 0.7;
}
#wrapper #content .post a {
color: #6e7173;
text-decoration: none;
}
#wrapper #content .post .copy blockquote {
margin: 10px 0px 10px 10px;
padding-left: 15px;
border-left: solid 4px #dcdcdc;
}
#wrapper #content .post .copy blockquote blockquote {
border-left: solid 4px #cccccc;
}
#wrapper #content .post .copy blockquote blockquote blockquote {
border-left: solid 4px #bcbcbc;
}
#wrapper #content .post .copy blockquote blockquote blockquote blockquote {
border-left: solid 4px #acacac;
}
#wrapper #content .post .copy blockquote blockquote blockquote blockquote blockquote {
border-left: solid 4px #9c9c9c;
}
#wrapper #content .post .copy blockquote blockquote blockquote blockquote blockquote blockquote {
border-left: solid 4px #8c8c8c;
}
#wrapper #content .bottom {
background: url('http://assets.tumblr.com/themes/redux/shadow-post.png') top center no-repeat transparent;
width: 513px;
height: 40px;
margin: 0 auto;
}
#wrapper #content #navigation {
text-align: right;
padding-bottom: 35px;
text-transform: lowercase;
}
#wrapper #content #navigation a {
background-color: #fff;
color: #8FAABD;
padding: 5px 10px;
text-decoration: none;
margin-left: 25px;
}
#wrapper #content #navigation a:hover {
opacity: 0.9;
filter: alpha(opacity=90);
-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
}
#wrapper #content #navigation.jump_pagination {}
#wrapper #content #navigation.jump_pagination a {
margin: 0 0 0 4px;
}
#wrapper #content #navigation.jump_pagination .current_page {
color: #fff;
background-color: rgba(255,255,255, 0.1);
border: 2px solid #fff;
padding: 3px 8px;
margin: 0 0 0 4px;
cursor: default;
}
#wrapper #content #navigation.jump_pagination .jump_page {}
#wrapper #content .post .notecontainer {
background: #eaeaea;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
border-radius: 4px;
font-family: 'Lucida Sans', 'Lucida Grande', 'Lucida Sans Unicode', sans-serif;
font-size: 11px;
color: #666;
margin-top: 10px;
margin-bottom: -10px;
}
#wrapper #content .post .notecontainer a {
color: #666;
text-decoration: underline;
}
#wrapper #content .post .notecontainer ol.notes {
padding: 0px 0 10px 0;
list-style-type: none;
font-size: 11px;
}
#wrapper #content .post .notecontainer ol.notes li.note {
padding: 10px 10px 0 10px;
}
#wrapper #content .post .notecontainer ol.notes li.note img.avatar {
vertical-align: -4px;
margin-right: 10px;
width: 16px;
height: 16px;
}
#wrapper #content .post .notecontainer ol.notes li.note span.action {
font-weight: normal;
}
#wrapper #content .post .notecontainer ol.notes li.note .answer_content {
font-weight: normal;
}
#wrapper #content .post .notecontainer ol.notes li.note blockquote {
border-left: 2px solid #666;
padding: 4px 10px;
margin: 10px 0px 0px 25px;
}
#wrapper #content .post .notecontainer ol.notes li.note blockquote a {
text-decoration: none;
}
#wrapper #content #searchresults {
color: #fff;
margin: 0 0 15px 0;
text-shadow: 1px 3px 5px rgba(0,0,0, 0.5);
font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif;
font-size: 20px;
}
#wrapper #content #searchresults .search_query {
font-weight: bold;
}
#wrapper #content #searchresults .search_query:before {
content:'“';
}
#wrapper #content #searchresults .search_query:after {
content:'”';
}
#wrapper #sidebar {
width: 250px;
float: right;
color: #8FAABD;
font-family: 'Lucida Sans', 'Lucida Grande', 'Lucida Sans Unicode', sans-serif
}
#wrapper #sidebar a {
color: #8FAABD;
}
#wrapper #sidebar #top {
background: #fff;
padding: 0 20px;
-webkit-border-top-left-radius: 10px;
-webkit-border-top-right-radius: 10px;
-moz-border-radius-topleft: 10px;
-moz-border-radius-topright: 10px;
border-top-left-radius: 10px;
border-top-right-radius: 10px;
}
#wrapper #sidebar #top #avatar {
width: 146px;
height: 146px;
padding: 8px 0 0 9px;
background: url('http://assets.tumblr.com/themes/redux/avatar-bg.png') top left no-repeat transparent;
position: relative;
top: -24px;
left: -5px;
}
#wrapper #sidebar #top #pages {
margin-bottom: 15px;
font-size: 12px;
}
#wrapper #sidebar #top #pages.ask_and_submit {
display: none;
}
#wrapper #sidebar #top #pages a.page {
display: block;
float: left;
background-color: #8FAABD;
color: #fff;
padding: 4px 5px;
margin: 0 5px 5px 0;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
}
#wrapper #sidebar #top #pages a.page:last-child {
margin-right: 0;
}
#wrapper #sidebar #top #pages a.page:hover {
opacity: 0.9;
filter: alpha(opacity=90);
-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
}
#wrapper #sidebar #top #description {
font-size: 11px;
position: relative;
top: -18px;
}
#wrapper #sidebar #top #description a {
color: #8FAABD;
text-decoration: underline;
}
#wrapper #sidebar #top #search {
background: #fff;
border: 1px solid #8FAABD;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
border-radius: 4px;
}
#wrapper #sidebar #top #search-scope {
padding-top: 5px;
font-size: 11px;
text-align: center;
}
#wrapper #sidebar #top #search-scope input,
#wrapper #sidebar #top #search-scope label {
cursor: pointer;
}
#wrapper #sidebar #top #search form {
margin: 0;
}
#wrapper #sidebar #top #search form .query {
padding: 5px;
border: none;
background: transparent;
outline: none;
width: 125px;
float: left;
color: #8FAABD;
}
#wrapper #sidebar #top #search form .submit {
background: #8FAABD;
color: #fff;
border: none;
padding: 5px 7px;
margin: 3px 3px 2px 0;
float: right;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
cursor: pointer;
}
#wrapper #sidebar #top #search form .submit:hover {
opacity: 0.9;
filter: alpha(opacity=90);
-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
}
#wrapper #sidebar #top .heading {
color: #fff;
font-family: helvetica, arial, sans-serif;
font-size: 17px;
margin-top: 20px;
padding: 10px;
background-color: #8FAABD;
-webkit-border-top-left-radius: 4px;
-webkit-border-top-right-radius: 4px;
-moz-border-radius-topleft: 4px;
-moz-border-radius-topright: 4px;
border-top-left-radius: 4px;
border-top-right-radius: 4px;
}
#wrapper #sidebar #top a .heading {
color: #fff;
text-decoration: none;
}
#wrapper #sidebar #top .heading#followontumblr {
background: url('http://assets.tumblr.com/themes/redux/sidebar-follow-on-en_US.png') center left no-repeat #8FAABD;
text-indent: -9999px;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
border-radius: 4px;
}
#wrapper #sidebar #top .heading#followontumblr:hover,
#wrapper #sidebar #top .heading#twitter:hover {
opacity: 0.9;
filter: alpha(opacity=90);
-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
}
#wrapper #sidebar #top .heading#twitter {
background: url('http://assets.tumblr.com/themes/redux/sidebar-twitter.png') right center no-repeat #8FAABD;
}
#wrapper #sidebar #top .heading#following {
background: url('http://assets.tumblr.com/themes/redux/sidebar-following.png') right center no-repeat #8FAABD;
}
#wrapper #sidebar #top .content {
margin-top: 2px;
padding: 7px 10px;
background: #eaeaea;
color: #666;
font-size: 11px;
overflow: hidden;
}
#wrapper #sidebar #top a {
text-decoration: none;
}
#wrapper #sidebar #top #following-avatars.content {
padding: 4px;
}
#wrapper #sidebar #top #following-avatars.content a img {
margin: 5px;
}
#wrapper #sidebar #top #buttons {
padding: 20px 0 0 0;
}
#wrapper #sidebar #top #buttons .button {
width: 35%;
height: 21px;
float: left;
background: left center no-repeat transparent;
padding: 2px 0 0 30px;
font-size: 14px;
}
#wrapper #sidebar #top #buttons a {
color: #8FAABD;
text-decoration: none;
}
#wrapper #sidebar #top #buttons div {
padding-bottom: 10px;
}
#wrapper #sidebar #top #buttons .button#button-rss {
background-image: url('http://assets.tumblr.com/themes/redux/button-rss.png?2');
text-transform: capitalize;
}
#wrapper #sidebar #top #buttons .button#button-random {
background-image: url('http://assets.tumblr.com/themes/redux/button-random.png?2');
}
#wrapper #sidebar #top #buttons .button#button-archive {
background-image: url('http://assets.tumblr.com/themes/redux/button-archive.png?2');
}
#wrapper #sidebar #top #buttons .button#button-mobile {
background-image: url('http://assets.tumblr.com/themes/redux/button-mobile.png?2');
}
#wrapper #sidebar #bottom {
background: url('http://assets.tumblr.com/themes/redux/sidebar-bottom.png') top center no-repeat transparent;
width: 250px;
height: 25px;
}
#wrapper #sidebar #copyright {
text-align: center;
color: #fff;
font-size: 12px;
margin-bottom: 10px;
}
#wrapper #sidebar #copyright a {
color: #fff;
margin-left: 15px;
}
</style>
<!--[if lt IE 7.]>
<style type="text/css">
#wrapper #sidebar #bottom {
background: transparent;
}
#wrapper #sidebar #top #avatar {
background: none;
}
#wrapper #sidebar #top #avatar img {
border: 5px solid #f1f1f1;
}
#wrapper #sidebar #top .heading#followontumblr {
background-image: none;
text-indent: 0;
}
#wrapper #sidebar #top .heading#twitter {
background-image: none;
}
#wrapper #sidebar #top .heading#following {
background-image: none;
}
#wrapper #content .post .audio .player {
float: none;
}
#wrapper #content .post .audio .meta {
display: none;
float: none;
}
</style>
<![endif]-->
<!--[if lt IE 8.]>
<style type="text/css">
#wrapper #content .bottom {
background: transparent;
}
#wrapper #content .post .footer {
background: transparent;
color: #000;
}
#wrapper #content .post .audio {
float: none;
background: transparent;
}
#wrapper #content .post .notecontainer .notes {
padding: 0;
margin: 0;
}
</style>
<![endif]-->
<style type="text/css"></style>
<meta http-equiv="x-dns-prefetch-control" content="off"/></head>
<body>
<div id="wrapper">
<div id="title">
<a href="../index.html">
The Near-Sighted Monkey
</a>
</div>
<div id="content">
<div class="post">
<div class="media"><a href="http://www.nature.com/neuro/journal/vaop/ncurrent/fig_tab/nn.2726_F4.html"><img src="http://27.media.tumblr.com/tumblr_lkdi74Lqcc1qbub56o1_500.jpg" alt="houseofmind:
Anatomically Distinct Dopamine Release During Anticipation and Experience of Peak Emotion to Music
Music has long been recognized as both an abstract and rewarding stimulus that produces feelings of euphoria and pleasure in many listeners. Music may also elicit emotional responses from listeners and alter affective states. While music has been present across multiple cultures and societies throughout time, the experience of pleasure while listening to music is highly specific, personal and subjective. In a study featured in Nature Neuroscience last February, Salimpoor and others set out to study what goes on in the brain of individuals while they listened to enjoyable/pleasurable music.
For the study, subjects were asked to bring their own pleasurable music, and the other subjects’ music was used as neutral music for comparison. Dopamine release while listening to music was estimated indirectly by using ligand-based positron emission tomography (PET) scan in which 11C raclopride, a radioactively labeled ligand, competes with endogenous dopamine for D2 receptor binding. The assumption is that if brain areas are experiencing surges of dopamine release, they binding capacity of 11C raclopride will decrease in these areas. The experience of feeling chills, a marker of peak emotional responses to music, was self-reported by the subjects. In addition, psychophysiological measurements (i.e. respiration rate, heart rate, skin conductance, temperature) were also conducted while the subjects listened to music while undergoing PET scanning.
PET scanning revealed changes in 11C raclopride binding in the striatum, specifically in the right caudate and the right nucleus accumbens. There was also a significant positive correlation between reports of chills and feelings of overall pleasure, perhaps indicating that chills may serve as an objective measure of pleasure while listening to music. The experience of overall greater pleasure while music listening was also correlated with greater autonomic nervous system arousal, as indexed by changes in psychophysiological measurements.
To assess the temporal dynamics in dopamine release, the group employed functional magnetic resonance imaging (fMRI) while subjects listened to neutral or pleasurable music. Subjects were asked to press a button whenever they felt chills (typically during pleasurable moments), and the 15s prior to the pressing of the button, which indicated chills + pleasure, were denoted as the anticipation window. Thus, dopamine release was studied in two different time periods: anticipation period (15s before reported pleasure and chills), and peak response (chills/pleasure).
When the fMRI scans were conjoined with the PET masks, the group was able to identify a temporally mediated BOLD response in the right side of dorsal (caudate) and ventral (nucleus accumbens) striatum that corresponded with anticipation epochs and peak experience, respectively. Moreover, as demonstrated above, behavioral measures like the number of reported chills were more correlated with 11C raclopride binding changes in the right caudate while intensity of chills and overall degree of reported pleasure were more significantly correlated with changes in 11C raclopride binding potential in the right nucleus accumbens.
In summary, the experience of pleasure while listening to music acts on the brain similarly to other rewards like food, sex and drugs. Listening to pleasurable music targets striatal areas associated with mesolimbic reward circuitry and dopaminergic neurotransmission.
Source:
Salimpoor, et al. 2011. Anatomically Distinct Dopamine Release During Anticipation and Experience of Peak Emotion to Music. Nature Neuroscience. doi:10.1038/nn.2726
" /></a></div>
<div class="copy"><p><a href="http://houseofmind.tumblr.com/post/5162146460">houseofmind</a>:</p>
<blockquote>
<p><strong>Anatomically Distinct Dopamine Release During Anticipation and Experience of Peak Emotion to Music</strong></p>
<p><strong>Music has long been recognized as both an abstract and rewarding stimulus that produces feelings of euphoria and pleasure in many listeners.</strong> <strong>Music may also elicit emotional responses from listeners and alter affective states.</strong> While music has been present across multiple cultures and societies throughout time,<strong> the experience of pleasure while listening to music is highly specific, personal and subjective.</strong> In a study featured in Nature Neuroscience last February, Salimpoor and others set out to study what goes on in the brain of individuals while they listened to enjoyable/pleasurable music. </p>
<p>For the study, subjects were asked to bring their own pleasurable music, and the other subjects’ music was used as neutral music for comparison. <strong>Dopamine release while listening to music was estimated indirectly by using ligand-based positron emission tomography (PET) scan in which 11C raclopride, a radioactively labeled ligand, competes with endogenous dopamine for D2 receptor binding.</strong> The assumption is that if brain areas are experiencing surges of dopamine release, they binding capacity of 11C raclopride will decrease in these areas.<strong> The experience of feeling chills, a marker of peak emotional responses to music, was self-reported by the subjects. In addition, psychophysiological measurements (i.e. respiration rate, heart rate, skin conductance, temperature) were also conducted while the subjects listened to music while undergoing PET scanning. </strong></p>
<p><strong>PET scanning revealed changes in 11C raclopride binding in the striatum, specifically in the right caudate and the right nucleus accumbens. </strong>There was also a significant positive correlation between reports of chills and feelings of overall pleasure, perhaps indicating that chills may serve as an objective measure of pleasure while listening to music. <strong>The experience of overall greater pleasure while music listening was also correlated with greater autonomic nervous system arousal, as indexed by changes in psychophysiological measurements. </strong></p>
<p><strong>To assess the temporal dynamics in dopamine release, the group employed functional magnetic resonance imaging (fMRI) while subjects listened to neutral or pleasurable music.</strong> Subjects were asked to press a button whenever they felt chills (typically during pleasurable moments), and the 15s prior to the pressing of the button, which indicated chills + pleasure, were denoted as the anticipation window. <strong>Thus, dopamine release was studied in two different time periods: anticipation period (15s before reported pleasure and chills), and peak response (chills/pleasure). </strong></p>
<p><strong>When the fMRI scans were conjoined with the PET masks, the group was able to identify a temporally mediated BOLD response in the right side of dorsal (caudate) and ventral (nucleus accumbens) striatum that corresponded with anticipation epochs and peak experience, respectively. </strong>Moreover, as demonstrated above, behavioral measures like the number of reported chills were more correlated with 11C raclopride binding changes in the right caudate while intensity of chills and overall degree of reported pleasure were more significantly correlated with changes in 11C raclopride binding potential in the right nucleus accumbens. </p>
<p><strong>In summary, the experience of pleasure while listening to music acts on the brain similarly to other rewards like food, sex and drugs. Listening to pleasurable music targets striatal areas associated with mesolimbic reward circuitry and dopaminergic neurotransmission. </strong></p>
<p><strong>Source:</strong></p>
<p><span> </span></p>
<p><a href="http://www.nature.com/neuro/journal/vaop/ncurrent/pdf/nn.2726.pdf">Salimpoor, et al. 2011. Anatomically Distinct Dopamine Release During Anticipation and Experience of Peak Emotion to Music. </a><em><a href="http://www.nature.com/neuro/journal/vaop/ncurrent/pdf/nn.2726.pdf">Nature Neuroscience</a></em><a href="http://www.nature.com/neuro/journal/vaop/ncurrent/pdf/nn.2726.pdf">. </a><span><a href="http://www.nature.com/neuro/journal/vaop/ncurrent/pdf/nn.2726.pdf">doi:10.1038/nn.2726</a></span></p>
<p><strong><span><strong><br/></strong></span></strong></p>
</blockquote></div>
<a href="http://thenearsightedmonkey.tumblr.com/post/9227936233/houseofmind-anatomically-distinct-dopamine">
<div class="footer for_permalink">
<div class="date">
Reblogged 3 days ago from houseofmind
</div>
<div class="notes">114 notes </div>
<div class="clear"></div>
</div>
</a>
<div class="footer with_source_url" style="
display:none;
display:block;
">
<a href="http://houseofmind.tumblr.com/post/5162146460/anatomically-distinct-dopamine-release-during" class="source_url">
Source:
houseofmind
</a>
<div class="clear"></div>
</div>
</div>
<div class="bottom"></div>
<div class="post">
<div class="media"><a href="http://www.tumblr.com/photo/1280/9195679380/1/tumblr_lq9h3tKYwI1r1gqac"><img src="http://28.media.tumblr.com/tumblr_lq9h3tKYwI1r1gqaco1_500.jpg" alt="" /></a></div>
<a href="http://thenearsightedmonkey.tumblr.com/post/9195679380">
<div class="footer for_permalink">
<div class="date">
Posted 3 days ago
</div>
<div class="notes">1 note </div>
<div class="clear"></div>
</div>
</a>
<div class="footer " style="
display:none;
">
<div class="clear"></div>
</div>
</div>
<div class="bottom"></div>
<div class="post">
<div class="media"><a href="http://www.tumblr.com/photo/1280/9195621612/1/tumblr_lq9h17BhfX1r1gqac"><img src="http://25.media.tumblr.com/tumblr_lq9h17BhfX1r1gqaco1_500.jpg" alt="" /></a></div>
<a href="http://thenearsightedmonkey.tumblr.com/post/9195621612">
<div class="footer for_permalink">
<div class="date">
Posted 3 days ago
</div>
<div class="notes">2 notes </div>
<div class="clear"></div>
</div>
</a>
<div class="footer " style="
display:none;
">
<div class="clear"></div>
</div>
</div>
<div class="bottom"></div>
<div class="post">
<div class="media"><a href="http://www.tumblr.com/photo/1280/9195556328/1/tumblr_lq9gyaNTkT1r1gqac"><img src="http://29.media.tumblr.com/tumblr_lq9gyaNTkT1r1gqaco1_500.jpg" alt="" /></a></div>
<a href="http://thenearsightedmonkey.tumblr.com/post/9195556328">
<div class="footer for_permalink">
<div class="date">
Posted 3 days ago
</div>
<div class="notes">1 note </div>
<div class="clear"></div>
</div>
</a>
<div class="footer " style="
display:none;
">
<div class="clear"></div>
</div>
</div>
<div class="bottom"></div>
<div class="post">
<div class="media"><a href="http://www.tumblr.com/photo/1280/9195493051/1/tumblr_lq9gvefSsB1r1gqac"><img src="http://27.media.tumblr.com/tumblr_lq9gvefSsB1r1gqaco1_500.jpg" alt="" /></a></div>
<a href="http://thenearsightedmonkey.tumblr.com/post/9195493051">
<div class="footer for_permalink">
<div class="date">
Posted 3 days ago
</div>
<div class="notes">1 note </div>
<div class="clear"></div>
</div>
</a>
<div class="footer " style="
display:none;
">
<div class="clear"></div>
</div>
</div>
<div class="bottom"></div>
<div class="post">
<div class="media"><a href="http://www.tumblr.com/photo/1280/9195397371/1/tumblr_lq9gr3Zha51r1gqac"><img src="http://29.media.tumblr.com/tumblr_lq9gr3Zha51r1gqaco1_500.jpg" alt="" /></a></div>
<a href="http://thenearsightedmonkey.tumblr.com/post/9195397371">
<div class="footer for_permalink">
<div class="date">
Posted 3 days ago
</div>
<div class="notes">5 notes </div>
<div class="clear"></div>
</div>
</a>
<div class="footer " style="
display:none;
">
<div class="clear"></div>
</div>
</div>
<div class="bottom"></div>
<div class="post">
<div class="media"><a href="http://www.tumblr.com/photo/1280/9195248168/1/tumblr_lq9gkiSbUu1r1gqac"><img src="http://30.media.tumblr.com/tumblr_lq9gkiSbUu1r1gqaco1_500.jpg" alt="" /></a></div>
<a href="http://thenearsightedmonkey.tumblr.com/post/9195248168">
<div class="footer for_permalink">
<div class="date">
Posted 3 days ago
</div>
<div class="notes">14 notes </div>
<div class="clear"></div>
</div>
</a>
<div class="footer " style="
display:none;
">
<div class="clear"></div>
</div>
</div>
<div class="bottom"></div>
<div class="post">
<div class="media"><a href="http://www.tumblr.com/photo/1280/9195109179/1/tumblr_lq9gebfupo1r1gqac"><img src="http://24.media.tumblr.com/tumblr_lq9gebfupo1r1gqaco1_r1_500.jpg" alt="" /></a></div>
<a href="http://thenearsightedmonkey.tumblr.com/post/9195109179">
<div class="footer for_permalink">
<div class="date">
Posted 3 days ago
</div>
<div class="notes">8 notes </div>
<div class="clear"></div>
</div>
</a>
<div class="footer " style="
display:none;
">
<div class="clear"></div>
</div>
</div>
<div class="bottom"></div>
<div class="post">
<div class="media"><a href="http://www.tumblr.com/photo/1280/9195020956/1/tumblr_lq9gagHET51r1gqac"><img src="http://27.media.tumblr.com/tumblr_lq9gagHET51r1gqaco1_500.jpg" alt="" /></a></div>
<a href="http://thenearsightedmonkey.tumblr.com/post/9195020956">
<div class="footer for_permalink">
<div class="date">
Posted 3 days ago
</div>
<div class="notes">1 note </div>
<div class="clear"></div>
</div>
</a>
<div class="footer " style="
display:none;
">
<div class="clear"></div>
</div>
</div>
<div class="bottom"></div>
<div class="post">
<div class="media"><a href="http://www.tumblr.com/photo/1280/9194915261/1/tumblr_lq9g5pMFUE1r1gqac"><img src="http://29.media.tumblr.com/tumblr_lq9g5pMFUE1r1gqaco1_500.jpg" alt="" /></a></div>
<a href="http://thenearsightedmonkey.tumblr.com/post/9194915261">
<div class="footer for_permalink">
<div class="date">
Posted 3 days ago
</div>
<div class="notes">2 notes </div>
<div class="clear"></div>
</div>
</a>
<div class="footer " style="
display:none;
">
<div class="clear"></div>
</div>
</div>
<div class="bottom"></div>
<div class="post">
<div class="media"><a href="http://www.tumblr.com/photo/1280/9171705835/1/tumblr_lq8mvnA6Ra1r1gqac"><img src="http://27.media.tumblr.com/tumblr_lq8mvnA6Ra1r1gqaco1_500.jpg" alt="This is the handwriting of John Steinbeck" /></a></div>
<div class="copy"><p>This is the handwriting of John Steinbeck</p></div>
<a href="http://thenearsightedmonkey.tumblr.com/post/9171705835/this-is-the-handwriting-of-john-steinbeck">
<div class="footer for_permalink">
<div class="date">
Posted 4 days ago
</div>
<div class="notes"> </div>
<div class="clear"></div>
</div>
</a>
<div class="footer " style="
display:none;
">
<div class="clear"></div>
</div>
</div>
<div class="bottom"></div>
<div class="post">
<div class="media"><a href="http://www.tumblr.com/photo/1280/9171693282/1/tumblr_lq8mulHKAI1r1gqac"><img src="http://25.media.tumblr.com/tumblr_lq8mulHKAI1r1gqaco1_500.jpg" alt="This is the handwriting of Oscar Wilde" /></a></div>
<div class="copy"><p>This is the handwriting of Oscar Wilde</p></div>
<a href="http://thenearsightedmonkey.tumblr.com/post/9171693282/this-is-the-handwriting-of-oscar-wilde">
<div class="footer for_permalink">
<div class="date">
Posted 4 days ago
</div>
<div class="notes"> </div>
<div class="clear"></div>
</div>
</a>
<div class="footer " style="
display:none;
">
<div class="clear"></div>
</div>
</div>
<div class="bottom"></div>
<div class="post">
<div class="media"><a href="http://www.tumblr.com/photo/1280/9171679021/1/tumblr_lq8mtf4dba1r1gqac"><img src="http://30.media.tumblr.com/tumblr_lq8mtf4dba1r1gqaco1_500.jpg" alt="This is the handwriting of Emily Dickinson" /></a></div>
<div class="copy"><p>This is the handwriting of Emily Dickinson</p></div>
<a href="http://thenearsightedmonkey.tumblr.com/post/9171679021/this-is-the-handwriting-of-emily-dickinson">
<div class="footer for_permalink">
<div class="date">
Posted 4 days ago
</div>
<div class="notes">2 notes </div>
<div class="clear"></div>
</div>
</a>
<div class="footer " style="
display:none;
">
<div class="clear"></div>
</div>
</div>
<div class="bottom"></div>
<div class="post">
<div class="media"><a href="http://www.tumblr.com/photo/1280/9171661839/1/tumblr_lq8ms5W4aA1r1gqac"><img src="http://28.media.tumblr.com/tumblr_lq8ms5W4aA1r1gqaco1_500.jpg" alt="This is the handwriting of Charles Dickens" /></a></div>
<div class="copy"><p>This is the handwriting of Charles Dickens</p></div>
<a href="http://thenearsightedmonkey.tumblr.com/post/9171661839/this-is-the-handwriting-of-charles-dickens">
<div class="footer for_permalink">
<div class="date">
Posted 4 days ago
</div>
<div class="notes"> </div>
<div class="clear"></div>
</div>
</a>
<div class="footer " style="
display:none;
">
<div class="clear"></div>
</div>
</div>
<div class="bottom"></div>
<div class="post">
<div class="media"><a href="http://www.tumblr.com/photo/1280/9170924387/1/tumblr_lq8lr5cQB61r1gqac"><img src="http://24.media.tumblr.com/tumblr_lq8lr5cQB61r1gqaco1_r1_500.jpg" alt="This is the handwriting of Edgar Allen Poe" /></a></div>
<div class="copy"><p>This is the handwriting of Edgar Allen Poe</p></div>
<a href="http://thenearsightedmonkey.tumblr.com/post/9170924387/this-is-the-handwriting-of-edgar-allen-poe">
<div class="footer for_permalink">
<div class="date">
Posted 4 days ago
</div>
<div class="notes"> </div>
<div class="clear"></div>
</div>
</a>
<div class="footer " style="
display:none;
">
<div class="clear"></div>
</div>
</div>
<div class="bottom"></div>
<div id="navigation" >
<a href="https://www.dillo.org/page/5">← Previous</a>
<a href="https://www.dillo.org/page/7">Next page →</a>
</div>
</div>
<div id="sidebar">
<div id="top">
<div id="avatar"><a href="../index.html"><img src="http://30.media.tumblr.com/avatar_cd7caa3934d2_128.png" /></a></div>
<div id="description">During Spring Semester of 2012, Lynda Barry will be the University of Wisconsin’s Artist in Residence on the Madison campus. She’ll be teaching a writing and picture-making class called, “What It Is: Manually Shifting the Image” which will meet twice a week.<br />
<br />
The class will be open to both graduate and undergraduate students from all academic disciplines. No artistic talent is required to be part of this class, but students should have an interest in memory, images, how the brain works, and what the biological function of the thing we call ‘the arts’ may be.<br />
<br />
To find out more visit:http://www.arts.wisc.edu/artsinstitute/IAR/barry/</div>
<div id="pages" class="ask_and_submit">
<div class="clear"></div>
</div>
<div id="search">
<form action="https://www.dillo.org/search" method="get" id="search-form">
<input type="hidden" name="t" value="thenearsightedmonkey" />
<input type="hidden" name="scope" value="all_of_tumblr" />
<input type="text" name="q" class="query" value="" />
<input type="submit" value="Search" class="submit" />
<div class="clear"></div>
</form>
</div>
<div id="search-scope">
<input type="radio" id="search-scope-me" name="scope" checked onclick="document.getElementById('search-form').action='/search'" /> <label for="search-scope-me" onclick="document.getElementById('search-form').action='/search'">My blog</label>
<input type="radio" id="search-scope-all" name="scope" onclick="document.getElementById('search-form').action='http://www.tumblr.com/search'" /> <label for="search-scope-all" onclick="document.getElementById('search-form').action='http://www.tumblr.com/search'">All of Tumblr</label>
</div>
<a href="http://www.tumblr.com/follow/thenearsightedmonkey"><div class="heading" id="followontumblr">Follow on Tumblr</div></a>
<div id="buttons">
<div class="row">
<div class="button" id="button-rss"><a href="http://thenearsightedmonkey.tumblr.com/rss">RSS feed</a></div>
<div class="button" id="button-random"><a href="https://www.dillo.org/random">Random</a></div>
</div>
<div class="clear"></div>
<div class="row">
<div class="button" id="button-archive"><a href="https://www.dillo.org/archive">Archive</a></div>
<div class="button" id="button-mobile"><a href="https://www.dillo.org/mobile">Mobile</a></div>
</div>
<div class="clear"></div>
</div>
</div>
<div id="bottom"></div>
<div id="copyright">© 2011 <a href="http://www.tumblr.com">Powered by Tumblr</a></div>
</div>
<div class="clear"></div>
</div>
<!-- BEGIN TUMBLR CODE --><iframe src="http://assets.tumblr.com/iframe.html?9&src=http%3A%2F%2Fthenearsightedmonkey.tumblr.com%2Fpage%2F6%2F&lang=en_US&name=thenearsightedmonkey&brag=0" scrolling="no" width="330" height="25" frameborder="0" style="position:absolute; z-index:1337; top:0px; right:0px; border:0px; background-color:transparent; overflow:hidden;" id="tumblr_controls"></iframe><!--[if IE]><script type="text/javascript">document.getElementById('tumblr_controls').allowTransparency=true;</script><![endif]--><script type="text/javascript">_qoptions={qacct:"p-19UtqE8ngoZbM"};</script><script type="text/javascript" src="http://edge.quantserve.com/quant.js"></script><noscript><img src="http://pixel.quantserve.com/pixel/p-19UtqE8ngoZbM.gif" style="display:none; border-width:0px; height:1px; width:1px;" alt=""/></noscript><!-- END TUMBLR CODE --></body>
</html>
|