· 5 years ago · Feb 23, 2020, 09:06 PM
1.<!DOCTYPE html>
2
3
4
5<!-- (BASE) THEME BY SAE (INIZIARE) -->
6
7
8
9<head>
10<title>{Title}</title>
11<link rel="shortcut icon" href="{Favicon}">
12<link rel="alternate" type="application/rss+xml" href="{RSS}">
13{block:Description}
14<meta name="description" content="{MetaDescription}" />
15{/block:Description}
16</head>
17
18
19
20
21
22
23
24
25<!-- SCRIPT: TOOLTIP -->
26
27<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
28<script src="https://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js"></script>
29<script>
30(function($){
31$(document).ready(function(){
32$("a[title]").style_my_tooltips({
33tip_follows_cursor:true,
34tip_delay_time:90,
35tip_fade_speed:600,
36attribute:"title"
37});
38});
39})(jQuery);
40</script>
41
42
43
44
45
46
47
48
49<!-- SCRIPT: jQuery -->
50
51<script src="https://static.tumblr.com/gjexvml/cszpz4vyd/jquery-3.4.1.min.js"></script>
52
53
54
55
56
57
58
59
60<!-- SCRIPT: AUDIO PLAYER -->
61
62<script>
63 $(document).ready(function() {
64 $('iframe.tumblr_audio_player').load( function() {
65 $('iframe.tumblr_audio_player').contents().find("head")
66 .append($("<style type='text/css'> .audio-player{background:transparent!important; color:{color:bold}!important;} </style>"));
67 });
68 });
69</script>
70
71
72
73
74
75<!-- SCRIPT: CLICK MENU -->
76
77<script>
78$(document).ready(function(){
79 jQuery('.dropbtn').click( function() {
80 $(this).next('.dropdown-content').fadeToggle();
81 return false;
82 });
83});
84</script>
85
86
87
88
89
90
91<!-- SCRIPT: CLICK MENU #2 -->
92
93<script>
94$(document).ready(function(){
95 jQuery('.dropbtn2').click( function() {
96 $(this).next('.dropdown-content2').fadeToggle();
97 return false;
98 });
99});
100</script>
101
102
103
104
105
106<!-- SCRIPT: CLICK MENU #3 -->
107
108<script>
109$(document).ready(function(){
110 jQuery('.dropbtn3').click( function() {
111 $(this).next('.dropdown-content3').fadeToggle();
112 return false;
113 });
114});
115</script>
116
117
118
119
120
121<!-- SCRIPT: NAVIGATION TABS -->
122
123<script>
124function openNavi(naviName) {
125 var i;
126 var x = document.getElementsByClassName("navi");
127 for (i = 0; i < x.length; i++) {
128 x[i].style.display = "none";
129 }
130 document.getElementById(naviName).style.display = "block";
131}
132</script>
133
134
135
136<script>
137function openMuse(museName) {
138 var i;
139 var x = document.getElementsByClassName("muse");
140 for (i = 0; i < x.length; i++) {
141 x[i].style.display = "none";
142 }
143 document.getElementById(museName).style.display = "block";
144}
145</script>
146
147
148
149
150
151<script type="text/javascript" src="https://static.tumblr.com/8pnyeus/10hors8sn/themekid-popup.min.js">
152</script>
153
154<script type="text/javascript">
155$(document).ready(function(){
156 popUp(true);
157});
158</script>
159
160
161
162
163
164<!-- SCRIPT: NAVIGATION TABS -->
165
166
167<script>
168function openPage(pageName) {
169 var i;
170 var x = document.getElementsByClassName("page");
171 for (i = 0; i < x.length; i++) {
172 x[i].style.display = "none";
173 }
174 document.getElementById(pageName).style.display = "block";
175}
176
177</script>
178
179
180
181
182
183<!-- SCRIPT: TOGGLE -->
184
185<script>
186$(document).ready(function(){
187 $(".nlinksbutton").click(function(){
188 $(".nlinkscontent").toggle();
189 });
190});
191</script>
192
193<script>
194$(document).ready(function(){
195 $(".nlinksbutton1").click(function(){
196 $(".nlinkscontent1").toggle();
197 });
198});
199</script>
200
201<script>
202$(document).ready(function(){
203 $(".nlinksbutton2").click(function(){
204 $(".nlinkscontent2").toggle();
205 });
206});
207</script>
208
209<script>
210$(document).ready(function(){
211 $(".nlinksbutton3").click(function(){
212 $(".nlinkscontent3").toggle();
213 });
214});
215</script>
216
217<script>
218$(document).ready(function(){
219 $(".nlinksbutton4").click(function(){
220 $(".nlinkscontent4").toggle();
221 });
222});
223</script>
224
225
226
227
228<!-- SCRIPT: POPUP TABS -->
229
230<script>$(document).ready(function(){
231 $("ul#tabs li").click(function(e){
232 if (!$(this).hasClass("active")) {
233 var tabNum = $(this).index();
234 var nthChild = tabNum+1;
235 $("ul#tabs li.active").removeClass("active");
236 $(this).addClass("active");
237 $("ul#tab li.active").removeClass("active");
238 $("ul#tab li:nth-child("+nthChild+")").addClass("active");}});});</script>
239
240
241
242<!-- SCRIPT: VIDEO WIDTH (CREDIT: SHYTHEMES) -->
243
244<script>
245$(document).ready(function(){
246 resizeVideos();
247});
248function resizeVideos() {
249 $('.video:not(.resized) iframe:not(.tumblr_video_iframe)').each(function(){
250 var vw = $(this).width(482);
251 var vh = $(this).height(auto);
252 var scale = $(this).parents('.video').width() / vw;
253 $(this).attr({
254 width: Math.floor($(this).attr('width') * scale),
255 height: Math.floor($(this).attr('height') * scale)
256 });
257 $(this).parents('.video').addClass('resized');
258 });
259 $('.video:not(.resized) .tumblr_video_iframe').each(function(){
260 var vw = $(this).width();
261 var vh = $(this).height();
262 var scale = $(this).parents('.video').width() / vw;
263 $(this).css({
264 'transform': 'scale(' + scale + ')',
265 'margin': vh * (scale - 1) / 2 + 'px ' + vw * (scale - 1) / 2 + 'px'
266 });
267 $(this).parents('.tumblr_video_container').css({
268 width: Math.floor(vw * ( scale + 1 ) / 2),
269 height: Math.floor(vh * ( scale + 1 ) / 2)
270 });
271 $(this).parents('.video').addClass('resized');
272 });
273}
274</script>
275
276
277
278
279
280
281<!-- CUSTOM FONTS -->
282
283<link href="https://fonts.googleapis.com/css?family=Frank+Ruhl+Libre" rel="stylesheet">
284
285<link rel="stylesheet" href="https://static.tumblr.com/gjexvml/yTwpxxahr/stylesheet.css">
286
287
288
289
290
291
292<!-- META LINES -->
293
294<meta name="image:Background" content="https://static.tumblr.com/m7qloac/B4Aq65obz/bg6.png"/>
295<meta name="image:Sidebar Background" content="https://static.tumblr.com/m7qloac/KWzq65ocf/008.png"/>
296<meta name="image:Sidebar Image Top" content="https://static.tumblr.com/m7qloac/LrAq65ocv/009.png"/>
297<meta name="image:Sidebar Image Bottom" content="https://static.tumblr.com/m7qloac/z59q65od5/007.png"/>
298
299<meta name="text:Custom Capitals Font" content="'customfonthere'">
300<meta name="text:Sidebar Title" content="Side"/>
301<meta name="text:Title" content="Title">
302<meta name="text:Title Font Size" content="111px">
303
304<meta name="color:Background" content="#191919"/>
305<meta name="color:Border" content="#47423f"/>
306<meta name="color:Body Text" content="#c6c6c6"/>
307<meta name="color:Button Active" content="#c6c6c6"/>
308<meta name="color:Button Inactive" content="#494543"/>
309<meta name="color:Bold" content="#605b57"/>
310<meta name="color:Headers" content ="#5d5855"/>
311<meta name="color:Italic" content="#ffffff"/>
312<meta name="color:Links" content="#ffffff"/>
313<meta name="color:Navigation List Links" content="#5d5855"/>
314<meta name="color:Links Hover" content="#ffffff"/>
315<meta name="color:First Letter" content="#151515"/>
316<meta name="color:Title" content="#000000"/>
317<meta name="color:Title Shadow" content="#151515"/>
318<meta name="color:Permalink" content="#55504f"/>
319<meta name="color:Tags" content="#282726"/>
320
321<meta name="if:Text Wrapping" content="1"/>
322<meta name="if:Boxed Blockquotes" content="1"/>
323<meta name="if:Icon Borders" content="1"/>
324<meta name="if:Bigger Tags on Hover" content="0"/>
325<meta name="if:First Letter Styling" content="0"/>
326<meta name="if:Calibri Font" content="0"/>
327<meta name="if:BlogTitle" content="0"/>
328<meta name="if:SidebarTitle" content="0"/>
329
330<style type="text/css">
331
332
333
334
335/* SCROLLBAR */
336
337
338/* Set all margins and paddings to 0 on all browsers */
339
340
341::-webkit-scrollbar {
342 background-color:transparent;
343 height: 0px;
344 display:none;
345 width: 0px
346 -ms-overflow-style: none; // IE 10+
347 overflow: -moz-scrollbars-none; // Firefox
348}
349
350
351::-webkit-scrollbar-thumb {
352 background-color:transparent;
353}
354
355
356
357/* TEXT SELECTION */
358
359::selection {
360 background: {color:background};
361 color:{color:links};
362}
363
364
365::-moz-selection {
366 background: {color:background};
367 color:{color:links};
368}
369
370
371
372
373
374
375/* TOOLTIP */
376
377
378#s-m-t-tooltip {
379 z-index:99;
380 max-width:250px;
381 line-height:13px;
382 margin-left:12.5px;
383 margin-top:12.5px;
384 font-weight:bold;
385 background-color:{color:background};
386 border:1px solid {color:border};
387 padding-left:25px;
388 padding-right:25px;
389 padding-top:12.5px;
390 padding-bottom:12.5px;
391 font-family:calibri;
392 font-size:10px;
393 color: {color:italic};
394 text-transform:uppercase;
395 text-shadow: 0px 0px 1px {color:italic};
396}
397
398
399
400
401
402/* FOUNDATION */
403
404
405body {
406 background-image:url({image:background});
407 background-attachment:fixed;
408 background-repeat:no-repeat;
409 background-position:top left;
410 background-color:{color:background};
411 color:{color:Body Text};
412 font-size:10px;
413 line-height:14px;
414 word-spacing:-1px;
415 color:{color:Body Text};
416 font-family: 'Frank Ruhl Libre', serif;
417 {block:ifCalibriFont}
418 font-family:calibri;
419 {/block:ifCalibriFont}
420 word-wrap: break-word;
421}
422
423
424body a {
425 font-size:10px;
426 font-weight:bold;
427 color:{color:links};
428 text-decoration:none!important;
429 -moz-transition-duration:1.5s;
430 -webkit-transition-duration:1.5s;
431 -o-transition-duration:1.5s;
432 text-shadow: 0px 0px 1px {color:links};
433}
434
435
436body a:hover {
437 color:{color:links hover};
438 -moz-transition-duration:1.5s;
439 -webkit-transition-duration:1.5s;
440 -o-transition-duration:1.5s;
441 text-shadow: 0px 0px 1px {color:links hover};
442}
443
444
445
446
447p:first-letter {
448 text-transform:capitalize!important;
449}
450
451
452
453
454
455/* BLOCKQUOTES */
456
457
458{block:IfBoxedBlockquotes}
459
460blockquote {
461 padding-left:25px;
462 padding-right:25px;
463 padding-top:12px;
464 padding-bottom:12px;
465 margin-top:12px;
466 margin-bottom:12px;
467 text-align:justify;
468 margin-left:0px;
469 margin-right:0px;
470 outline:1px solid {color:border};
471 word-wrap: break-word!important;
472}
473
474
475
476blockquote blockquote {
477 outline:0px solid {color:border};
478 border-left:1px solid {color:border}!important;
479 border-top:0px!important;
480 border-bottom:0px!important;
481 border-right:0px!important;
482 padding-top:0px!important;
483 padding-bottom:0px!important;
484 padding-left:25px;
485 padding-right:0px;
486 margin-top:12px!important;
487 margin-bottom:0px!important;
488}
489{/block:IfBoxedBlockquotes}
490
491
492
493
494{block:IfNotBoxedBlockquotes}
495blockquote {
496 padding-left:25px;
497 margin-top:12px;
498 margin-left:0px;
499 margin-right:0px;
500 text-align:justify;
501 margin-bottom:25px;
502 border-left:1px solid {color:border};
503 background-color:transparent;
504 word-wrap: break-word!important;
505}
506
507
508
509blockquote blockquote {
510 margin-top:12px;
511 margin-bottom:12px;
512}
513
514
515
516blockquote img {
517 max-width:386px!important;
518 height:auto;
519}
520{/block:IfNotBoxedBlockquotes}
521
522
523
524
525
526 /* FONT-RELATED */
527
528
529small {
530 font-size:10px;
531}
532
533
534sub, sup {
535 font-size:10px;
536 vertical-align: baseline!important;
537 position: relative!important;
538 top: 0em!important;
539 line-height:14px;
540}
541
542
543big {
544 font-size:125%;
545}
546
547
548ul, ol {
549 padding:0;
550 list-style: decimal outside;
551 margin-left:8px;
552}
553
554
555li {
556 padding-left:2px;
557}
558
559
560b, bold, strong {
561 font-size:9.5px;
562 text-transform:uppercase;
563 font-family: calibri, sans-serif;
564 font-weight:bold!important;
565 color:{color:bold};
566 text-shadow: 0px 0px 1px {color:bold};
567
568}
569
570
571em, i, italic {
572 color: {color:italic};
573 margin-right:1px;
574}
575
576
577 {block:ifFirstLetterStyling}
578u, u a {
579 background-color: {color:background};
580 outline: 1px solid {color:border};
581 font-family:'Frank Ruhl Libre', serif;
582 color:{color:background};!important;
583 text-decoration:none!important;
584 font-style:normal!important;
585 font-weight:bold!important;
586 text-transform:uppercase!important;
587 float:left;
588 margin-top:0px;
589 height:60px;
590 width:60px;
591 font-size: 48px;
592 margin-right: 12px;
593 position: relative;
594 text-align: center;
595 vertical-align: middle;
596 line-height: 60px;
597 text-shadow:
598 -1px -1px 0 {color:border},
599 1px -1px 0 {color:border},
600 -1px 1px 0 {color:border},
601 1px 1px 0 {color:border};
602}
603 {/block:ifFirstLetterStyling}
604
605
606
607
608pre {
609 overflow: hidden;
610 background-color: {color:background};
611 outline:1px solid {color:border};
612 padding-left:25px;
613 padding-right:25px;
614 padding-top:8px;
615 padding-bottom:8px;
616 margin-bottom:18px!important;
617 margin-top:18px!important;
618 margin-right:1px;
619 text-transform:uppercase;
620 line-height:155%;
621 font-weight:lighter!important;
622 color:{color:body text};
623 font-size:8.4px;
624 letter-spacing:0.6px;
625 white-space: pre-wrap;
626 white-space: -moz-pre-wrap;
627 white-space: -pre-wrap;
628 white-space: -o-pre-wrap;
629 word-wrap: break-word;
630}
631
632
633
634pre a, pre b, pre strong {
635 font-family:monospace!important;
636 font-weight:lighter!important;
637 font-size:8.4px!important;
638 letter-spacing:0.6px!important;
639 line-height:155%;
640 color:{color:bold};
641 -moz-transition-duration:1.5s;
642 -webkit-transition-duration:1.5s;
643 -o-transition-duration:1.5s;
644}
645
646
647
648h1 {
649 outline: 1px solid {color:border};
650 background-color:{color:background};
651 overflow:hidden;
652 margin-top:8px!important;
653 margin-left:0px;
654 margin-bottom:12px;
655 padding-left:25px;
656 padding-right:25px;
657 height:25px;
658 line-height:25px;
659 text-align:left!important;
660 font-family:calibri;
661 font-weight:bold;
662 font-size:10px!important;
663 text-transform:uppercase;
664 color: {color:headers};
665 text-shadow: 0px 0px 1px {color:headers};
666}
667
668
669
670h1 a {
671 color: {color:links};
672 font-size:10px!important;
673 text-shadow: 0px 0px 1px {color:links};
674}
675
676
677
678h2 {
679 font-family: calibri, sans-serif;
680 font-size:11px!important;
681 text-transform:uppercase!important;
682 color:{color:headers};
683 letter-spacing:-0.2px;
684 text-shadow: 0px 0px 1px {color:headers};
685}
686
687
688h2 a {
689 font-family: calibri, sans-serif;
690 font-size:11px!important;
691 text-transform:uppercase!important;
692 color:{color:links};
693 letter-spacing:-0.4px;
694 text-shadow: 0px 0px 1px {color:links};
695}
696
697
698h4 {
699 border:1px solid {color:border};
700 margin-bottom:12.5px;
701 margin-top:12.5px;
702 padding-left:25px;
703 padding-right:25px;
704 height:25px;
705 text-align:left;
706 font-family:calibri;
707 font-style:normal;
708 font-weight:bold;
709 font-size:10px;
710 line-height:25px;
711 color: {color:headers};
712 text-transform:uppercase;
713 text-shadow: 0px 0px 1px {color:headers};
714}
715
716
717h4:first-child {
718 margin-top:0px;
719}
720
721
722h4 a {
723 font-family:calibri;
724 font-style:normal;
725 font-weight:700;
726 font-size:10px;
727 line-height:10px;
728 color: {color:links};
729 text-shadow: 0px 0px 1px {color:links};
730}
731
732
733
734
735
736
737
738
739/* CONTAINER */
740
741
742#container {
743 z-index:98;
744 left: 50%;
745 margin-left:-450px;
746 margin-top:175px;
747 position:fixed;
748 width:895px;
749 height:475px;
750 overflow:hidden;
751 outline:1px solid {color:border};
752 background:rgba(25,25,25,.95);
753 -webkit-box-shadow: 0px 0px 48px 20px {color:background};
754 -moz-box-shadow: 0px 0px 48px 20px {color:background};
755 box-shadow: 0px 0px 48px 20px {color:background};
756}
757
758
759
760.sidebar {
761 position:absolute;
762 width:283px;
763 height:423px;
764 left:26px;
765 top:26px;
766 overflow-y:hidden;
767 outline:1px solid {color:border};
768}
769
770
771
772{block:ifSidebarTitle}
773.sidebartitle {
774 position:absolute;
775 font-family: 'janeaustennosecret';
776 color:{color:title};
777 font-weight:bold!important;
778 text-transform:none;
779 padding-left:4px;
780 padding-right:4px;
781 font-size:55px;
782 width:222px;
783 left:26px;
784 top:133px;
785 line-height:14px;
786 letter-spacing:-2px;
787 text-align:right!important;
788 z-index:999;
789 pointer-events:none;
790 background-color:transparent;
791 text-shadow:
792 -1px -1px 0 {color:title shadow},
793 1px -1px 0 {color:title shadow},
794 -1px 1px 0 {color:title shadow},
795 1px 1px 0 {color:title shadow};
796}
797{/block:ifSidebarTitle}
798
799
800
801
802.sidebarbg {
803 background-image:url('{Sidebar Background}');
804 background-position:top left;
805 position:absolute;
806 width:284px;
807 height:423px;
808 -webkit-filter: brightness(.4) contrast(.88) saturate(1);
809}
810
811
812
813.inner {
814 position:absolute;
815 width:231px;
816 margin-left:26px;
817 margin-top:26px;
818 outline:0px solid {color:border};
819 background:rgba(0,0,0,0);
820 -webkit-box-shadow: 0px 0px 48px 4px {color:background};
821 -moz-box-shadow: 0px 0px 48px 4px {color:background};
822 box-shadow: 0px 0px 48px 4px {color:background};
823}
824
825
826.sidebarimgtop {
827 background-image:url('{Sidebar Image Top}');
828 background-position:top left;
829 outline:1px solid {color:border};
830 overflow:hidden;
831 width:231px;
832 height:120px!important;
833 -webkit-filter: brightness(1) contrast(1) saturate(1);
834}
835
836
837.sidebarimgbottom {
838 background-image:url('{Sidebar Image Bottom}');
839 background-position:top left;
840 margin-top:0px;
841 outline:1px solid {color:border};
842 overflow:hidden;
843 width:231px;
844 height:120px;
845 -webkit-filter: brightness(1) contrast(1) saturate(1);
846}
847
848
849{block:ifBlogTitle}
850.title {
851 position:fixed;
852 font-family: 'janeaustennosecret';
853 color:{color:title};
854 font-weight:lighter!important;
855 text-transform:none;
856 padding-left:8px;
857 padding-right:8px;
858 font-size:{text:title font size};
859 width:490px;
860 margin-left:340px;
861 margin-top:400px;
862 line-height:14px;
863 letter-spacing:-4px;
864 word-spacing:-1px;
865 text-align:right!important;
866 z-index:70!important;
867 padding-right:25px;
868 pointer-events:none;
869 background-color:transparent;
870 text-shadow:
871 -1px -1px 0 {color:title shadow},
872 1px -1px 0 {color:title shadow},
873 -1px 1px 0 {color:title shadow},
874 1px 1px 0 {color:title shadow};
875}
876{/block:ifBlogTitle}
877
878
879
880
881
882
883.description {
884 width:181px;
885 height:80px;
886 padding-left:25px;
887 padding-right:25px;
888 outline:1px solid {color:border};
889 border-top:25px solid {color:background};
890 border-bottom:25px solid {color:background};
891 background-color:{color:background};
892 text-shadow: 0px 0px 1px {color:Navigation List Links};
893 line-height:13px;
894 margin-top:-3px;
895 text-align:justify;
896 overflow-y:scroll;
897 background-color:{color:background};
898 -moz-transition-duration:1.5s;
899 -webkit-transition-duration:1.5s;
900 -o-transition-duration:1.5s;
901}
902
903
904
905
906.description a {
907 color:{color:body text};
908 font-family:monospace;
909 letter-spacing:0.6px;
910 font-size:8.4px;
911 font-weight:lighter;
912 font-style:normal;
913 text-transform:uppercase;
914 -moz-transition-duration:1.5s;
915 -webkit-transition-duration:1.5s;
916 -o-transition-duration:1.5s;
917 text-shadow: 0px 0px 1px {color:bold};
918}
919
920
921
922
923
924
925
926
927
928/* POSTS: GENERAL */
929
930
931#content {
932 position:absolute;
933 text-align:justify;
934 height:320px;
935 width:533px;
936 left:336px;
937 top:76px;
938 background-color:transparent;
939 overflow-y:scroll;
940 overflow-x:hidden;
941 z-index:9;
942 outline:1px solid {color:border}!important;
943}
944
945
946#content2 {
947 width:483px;
948 height:270px;
949 overflow-y:scroll;
950 padding-left:25px;
951 padding-right:25px;
952 margin-left:0px;
953 margin-top:25px!important;
954}
955
956
957
958.posts {
959 width:482px;
960 word-wrap: break-word;
961 text-align:justify;
962 line-height:15px;
963 margin-bottom:36px;
964}
965
966
967.posts:first-child, .posts:first-of-type {
968 margin-top:13px;
969}
970
971
972.posts:last-child {
973 margin-bottom:0px!important;
974}
975
976
977
978.posts a {
979 font-size:9.5px;
980 text-transform:uppercase;
981 font-family: calibri, sans-serif;
982 font-weight:bold!important;
983 color:{color:links};
984 text-shadow: 0px 0px 1px {color:links};
985 -moz-transition-duration:1.5s;
986 -webkit-transition-duration:1.5s;
987 -o-transition-duration:1.5s;
988}
989
990
991.posts a:hover {
992 color:{color:links hover};
993 text-shadow: 0px 0px 1px {color:links hover};
994 -moz-transition-duration:1.5s;
995 -webkit-transition-duration:1.5s;
996 -o-transition-duration:1.5s;
997}
998
999
1000.posts img {
1001 max-width: -webkit-calc(100% - 22px);
1002 max-width: -moz-calc(100% - 22px);
1003 max-width: calc(100% - 22px);
1004 height:auto;
1005}
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015/* TEXT-WRAPPING AROUND ICONS/IMAGES */
1016
1017#wrap {
1018 margin-top:12px;
1019 margin-bottom: 12px;
1020}
1021
1022
1023#wrap img {
1024 width: auto;
1025 overflow: hidden;
1026 background-color:{color:background}!important;
1027 margin-top:0px!important;
1028 margin-bottom:0px!important;
1029 padding-right:3px;
1030 padding-bottom:3px;
1031 {block:IfTextWrapping}
1032 float:left;
1033 margin-right:12px;
1034 {/block:IfTextWrapping}
1035 {block:ificonborders}
1036 padding:12px;
1037 outline:1px solid {color:border};
1038 {/block:ificonborders}
1039}
1040
1041
1042
1043 {block:IfTextWrapping}
1044#wrap blockquote img {
1045 position:relative;
1046 background-color:{color:background}!important;
1047 margin-top:12px!important;
1048 margin-bottom:0px!important;
1049 margin-left:16px;
1050 margin-right:0px!important;
1051 float:right;
1052 z-index:150;
1053}
1054 {/block:IfTextWrapping}
1055
1056
1057
1058
1059
1060
1061/* NAVIGATION BAR */
1062
1063
1064.navigation {
1065 top:25px;
1066 left:335px;
1067 width:600px;
1068 position:absolute;
1069 border:0px!important;
1070 height:25px;
1071 z-index:99!important;
1072}
1073
1074
1075button {
1076 display:inline-block;
1077 box-sizing: border-box;
1078 font-size:9.5px;
1079 text-align:center;
1080 padding-left:25px;
1081 padding-right:25px;
1082 font-family: calibri, sans-serif;
1083 text-transform:uppercase;
1084 width:180px;
1085 max-width:180px;
1086 height:25px;
1087 background-color:{color:background};
1088 border:1px solid {color:border};
1089 line-height:22px;
1090 margin-left:0px;
1091 margin-right:-4px;
1092 color: {color:button inactive};
1093 cursor:pointer;
1094 font-weight:bold!important;
1095 overflow:hidden;
1096 text-shadow: 0px 0px 1px {color:button inactive};
1097 -webkit-transition: all 1.5s ease-in-out;
1098 -moz-transition: all 1.5s ease-in-out;
1099 -o-transition: all 1.5s ease-in-out;
1100 -ms-transition: all 1.5s ease-in-out;
1101 transition: all 1.5s ease-in-out;
1102}
1103
1104
1105button:focus, button:active {
1106 border:1px solid {color:border}!important;
1107 outline:0px!important;
1108 color:{color:button active}!important;
1109 text-shadow: 0px 0px 1px {color:button active};
1110}
1111
1112
1113
1114button:hover {
1115 color:{color:links hover}!important;
1116 -webkit-transition: all 1.5s ease-in-out;
1117 -moz-transition: all 1.5s ease-in-out;
1118 -o-transition: all 1.5s ease-in-out;
1119 -ms-transition: all 1.5s ease-in-out;
1120 transition: all 1.5s ease-in-out;
1121 text-shadow: 0px 0px 1px {color:links hover};
1122}
1123
1124
1125
1126#tabcontent {
1127 z-index:75;
1128 position:absolute;
1129 text-align:justify;
1130 box-sizing: border-box;
1131 height:296px;
1132 max-height:300px;
1133 width:844px;
1134 left:25px;
1135 top:26px;
1136 padding-top:0px!important;
1137 background-color:{color:background}!important;
1138 border-top:0px solid {color:background};
1139 border-bottom:0px solid {color:background};
1140 padding-left:25px;
1141 padding-right:25px;
1142 outline:0px solid {color:border}!important;
1143}
1144
1145
1146
1147
1148
1149
1150
1151/* POSTS: TEXT */
1152
1153#textbody {
1154 margin-top:-12px!important;
1155 {block:permalinkpage}
1156 margin-top:-12px!important;
1157 {/block:permalinkpage}
1158}
1159
1160
1161
1162
1163
1164
1165/* POSTS: PHOTO/PHOTOSETS */
1166
1167
1168#psingle {
1169 width: 502px;
1170 margin-top:-12px!important;
1171 pointer-events:none;
1172 -webkit-filter: brightness(.6) contrast(.8) saturate(0.7);
1173 -webkit-transition: all 1.5s ease-in-out;
1174 -moz-transition: all 1.5s ease-in-out;
1175 -o-transition: all 1.5s ease-in-out;
1176 -ms-transition: all 1.5s ease-in-out;
1177 transition: all 1.5s ease-in-out;
1178}
1179
1180
1181#psingle:hover {
1182 -webkit-filter: brightness(.6) contrast(.8) saturate(0.7);
1183 -webkit-transition: all 1.5s ease-in-out;
1184 -moz-transition: all 1.5s ease-in-out;
1185 -o-transition: all 1.5s ease-in-out;
1186 -ms-transition: all 1.5s ease-in-out;
1187 transition: all 1.5s ease-in-out;
1188}
1189
1190
1191#pset {
1192 margin-top:-11px!important;
1193 {block:permalinkpage}
1194 margin-top:0px;
1195 {block:permalinkpage}
1196 width: 485px;
1197 pointer-events:none;
1198 -webkit-filter: brightness(.6) contrast(.8) saturate(0.7);
1199 -webkit-transition: all 1.5s ease-in-out;
1200 -moz-transition: all 1.5s ease-in-out;
1201 -o-transition: all 1.5s ease-in-out;
1202 -ms-transition: all 1.5s ease-in-out;
1203 transition: all 1.5s ease-in-out;
1204}
1205
1206
1207#pset:hover {
1208 -webkit-filter: brightness(.6) contrast(.8) saturate(0.7);
1209 -webkit-transition: all 1.5s ease-in-out;
1210 -moz-transition: all 1.5s ease-in-out;
1211 -o-transition: all 1.5s ease-in-out;
1212 -ms-transition: all 1.5s ease-in-out;
1213 transition: all 1.5s ease-in-out;
1214}
1215
1216
1217
1218
1219
1220
1221/* POSTS: QUOTE */
1222
1223
1224#quote {
1225 font-size:15px;
1226 text-align:left;
1227 padding-top:0px;
1228 padding-bottom:0px;
1229 letter-spacing:-1px;
1230 line-height:15px;
1231 margin-top:-12px!important;
1232}
1233
1234
1235.source {
1236 border:1px solid {color:border};
1237 font-family:calibri;
1238 font-weight:bold;
1239 text-align:left;
1240 font-size:9.5px;
1241 height:25px;
1242 line-height:25px;
1243 color: {color:bold};
1244 text-transform:uppercase;
1245 letter-spacing:0.2px;
1246 margin-top:25px;
1247 padding-right:25px;
1248 padding-left:25px;
1249 margin-top:25px;
1250 text-shadow: 0px 0px 1px {color:bold};
1251}
1252
1253
1254.source a {
1255 color: {color:bold};
1256 text-shadow: 0px 0px 1px {color:bold};
1257}
1258
1259
1260.source:first-letter {
1261 position:relative;
1262 z-index:50;
1263 background-color: transparent;
1264 font-family: 'janeaustennosecret';
1265 color:{color:title}!important;
1266 font-weight:bold!important;
1267 text-transform:uppercase!important;
1268 float:left;
1269 padding-left:0px;
1270 padding-right:9px;
1271 font-size:44px;
1272 margin-left:-6px;
1273 margin-right: 12.5px;
1274 margin-top:12px;
1275 margin-bottom:12px;
1276 vertical-align: middle;
1277 text-shadow:
1278 -1px -1px 0 {color:title shadow},
1279 1px -1px 0 {color:title shadow},
1280 -1px 1px 0 {color:title shadow},
1281 1px 1px 0 {color:title shadow};
1282}
1283
1284
1285
1286
1287/* POSTS: LINK */
1288
1289
1290#link {
1291 outline:1px solid {color:border};
1292 padding:25px;
1293 margin-top:-12px!important;
1294}
1295
1296
1297#link a {
1298 font-size:12px;
1299}
1300
1301
1302
1303
1304
1305
1306/* POSTS: CHAT */
1307
1308
1309#chat {
1310 margin-top:-16px!important;
1311 padding-left:0px;
1312 padding-right:0px;
1313}
1314
1315
1316
1317
1318
1319
1320/* POSTS: AUDIO */
1321
1322
1323.audioplayer {
1324 margin-left:12.5px;
1325 margin-top:-12px!important;
1326 width: 25px;
1327 height: 25px;
1328 overflow: hidden;
1329}
1330
1331
1332.audioinfo {
1333 outline:1px solid {color:border};
1334 margin-right: 0px;
1335 padding-left:60px;
1336 padding-right:25px;
1337 margin-top:-24px;
1338 margin-bottom:12px;
1339 height:25px;
1340 line-height:25px;
1341 display: block;
1342 font-family:calibri;
1343 font-weight:bold;
1344 text-transform: uppercase;
1345 text-align: left;
1346 letter-spacing:0.2px;
1347 word-spacing:-0.5px;
1348 overflow:hidden;
1349 font-size:9.5px;
1350 color:{color:bold};
1351 text-shadow: 0px 0px 1px {color:bold};
1352}
1353
1354
1355
1356
1357
1358
1359
1360 /* POSTS: VIDEO */
1361
1362
1363.video {
1364 margin-top:-15px!important;
1365}
1366
1367
1368
1369
1370
1371
1372/* POSTS: ASK */
1373
1374
1375#question {
1376 position:relative;
1377 width: 80%;
1378 height:70px;
1379 margin-left:0px;
1380 margin-top:-9px!important;
1381 background-color:{color:background};
1382}
1383
1384
1385#ask {
1386 position:relative;
1387 z-index:999999!important;
1388 float:left;
1389 font-family:calibri!important;
1390 text-transform:uppercase;
1391 font-weight:bold;
1392 background-color:{color:background};
1393 font-size:8.5px!important;
1394 letter-spacing:0.2px!important;
1395 line-height:12px!important;
1396 width:368px;
1397 min-height:21px;
1398 max-height:21px;
1399 overflow:scroll;
1400 margin-top:0px;
1401 margin-left:0px;
1402 margin-bottom:0px;
1403 padding-left:24px;
1404 padding-right:24px;
1405 outline:solid 1px {color:border};
1406 border-top:22px solid {color:background};
1407 border-bottom:22px solid {color:background};
1408 -moz-transition-duration:1.5s;
1409 -webkit-transition-duration:1.5s;
1410 -o-transition-duration:1.5s;
1411}
1412
1413
1414#ask:hover {
1415 max-height:35px!important;
1416 width:432px;
1417 z-index:999999!important;
1418 -moz-transition-duration:1.5s;
1419 -webkit-transition-duration:1.5s;
1420 -o-transition-duration:1.5s;
1421}
1422
1423
1424#ask a {
1425 font-family:monospace!important;
1426 font-weight:lighter!important;
1427 font-size:8.5px!important;
1428 letter-spacing:0.6px!important;
1429 color:{color:bold};
1430 text-decoration:none;
1431 text-shadow: 0px 0px 1px {color:bold};
1432}
1433
1434
1435#ask b {
1436 color:{color:bold};
1437 font-family:monospace!important;
1438 font-weight:lighter!important;
1439 font-size:8.5px!important;
1440 letter-spacing:0.6px!important;
1441 line-height:11px;
1442 text-shadow: 0px 0px 1px {color:bold};
1443}
1444
1445
1446.letterask {
1447 font-family:'Frank Ruhl Libre', serif;
1448 color:#000000!important;
1449 text-decoration:none!important;
1450 font-style:normal!important;
1451 font-weight:bold!important;
1452 text-transform:uppercase!important;
1453 position:absolute;
1454 z-index:9999!important;
1455 text-align:center;
1456 font-size:48px;
1457 width:60px;
1458 margin-left:417px;
1459 outline:1px solid {color:border};
1460 background-color:{color:background};
1461 padding-top:25px;
1462 padding-bottom:27px;
1463 padding-right:3px;
1464 color:{color:title};
1465 -webkit-user-select: none;
1466 -moz-user-select: none;
1467 -ms-user-select: none;
1468 user-select: none;
1469 text-shadow:
1470 -1px -1px 0 {color:title shadow},
1471 1px -1px 0 {color:title shadow},
1472 -1px 1px 0 {color:title shadow},
1473 1px 1px 0 {color:title shadow};
1474}
1475
1476
1477#response {
1478 margin-bottom:-4px!important;
1479 margin-top:20px;
1480}
1481
1482
1483#response blockquote {
1484 margin-top:12px;
1485 margin-bottom:12px!important;
1486 padding-top:12px;
1487 padding-bottom:12px;
1488}
1489
1490
1491
1492
1493
1494
1495/* POST INFORMATION */
1496
1497
1498.permalink {
1499 margin-top:25px!important;
1500 margin-left:-27px!important;
1501 margin-right:-27px;
1502 margin-bottom:25px!important;
1503}
1504
1505
1506
1507.permalinkbuttons {
1508 height:25px;
1509 background-color:{color:background};
1510 font-weight:bold!important;
1511 line-height:25px;
1512 letter-spacing:-0.2px;
1513 margin-left:0px!important;
1514 margin-bottom:1px!important;
1515 border:1px solid {color:border};
1516 color: {color:permalink};
1517}
1518
1519
1520.permalinkbuttons a {
1521 letter-spacing:0px;
1522 display:inline-block;
1523 box-sizing: border-box;
1524 font-size:9.5px!important;
1525 text-align:center;
1526 padding-left:25px;
1527 padding-right:25px;
1528 font-family: calibri, sans-serif;
1529 text-transform:uppercase;
1530 width:177px;
1531 max-width:177px;
1532 height:25px;
1533 background-color:{color:background};
1534 outline:1px solid {color:border};
1535 line-height:25px;
1536 color: {color:permalink};
1537 font-weight:bold!important;
1538 overflow:hidden;
1539 text-shadow: 0px 0px 1px {color:permalink};
1540}
1541
1542
1543.permalinkbuttons a:hover {
1544 color:{color:links hover};
1545 -moz-transition-duration:1.5s;
1546 -webkit-transition-duration:1.5s;
1547 -o-transition-duration:1.5s;
1548 text-shadow: 0px 0px 1px {color:links hover};
1549}
1550
1551
1552.tags {
1553 font-family: calibri!important;
1554 font-weight:bold!important;
1555 background-color:{color:background};
1556 border:1px solid {color:border};
1557 padding-top:12px;
1558 padding-bottom:12px;
1559 padding-left:24px;
1560 padding-right:24px;
1561 margin-top:-2px;
1562 color:{color:tags};
1563 text-transform:uppercase!important;
1564 font-style:normal;
1565 line-height:150%;
1566 font-size:8.5px;
1567 text-align:justify;
1568 -moz-text-align-last: center; /* Code for Firefox */
1569 text-align-last: center;
1570
1571}
1572
1573
1574.tags a {
1575 text-decoration:none!important;
1576 font-weight:lighter!important;
1577 font-size:8.5px;
1578 margin-right:0px;
1579 letter-spacing:0px;
1580 text-transform:uppercase!important;
1581 font-family: calibri!important;
1582 color:{color:tags};
1583 -moz-transition-duration:1.5s;
1584 -webkit-transition-duration:1.5s;
1585 -o-transition-duration:1.5s;
1586 text-shadow: 0px 0px 1px {color:border};
1587}
1588
1589
1590
1591.tags a:hover {
1592 color:{color:italic}!important;
1593 -moz-transition-duration:1.5s;
1594 -webkit-transition-duration:1.5s;
1595 -o-transition-duration:1.5s;
1596 text-shadow: 0px 0px 1px {color:links hover};
1597 {block:ifBiggerTagsonHover}
1598 font-size:9px!important;
1599 {block:ifBiggerTagsonHover}
1600}
1601
1602
1603
1604
1605
1606
1607/* PERMAPAGE NOTES */
1608
1609
1610#notes {
1611 outline:1px solid {color:border};
1612 margin-bottom:1px!important;
1613 margin-left:1px;
1614 margin-right:1px;
1615 margin-top:25px!important;
1616 padding-top:16px;
1617 padding-bottom:16px;
1618 padding-left:16px;
1619 padding-right:16px;
1620 letter-spacing:0px;
1621 font-weight:bold;
1622 font-size:9.4px!important;
1623 color:{color:permalink}!important;
1624 text-shadow: 0px 0px 1px {color:permalink};
1625}
1626
1627
1628
1629#notes span, .note span {
1630 color:{color:permalink}!important;
1631 text-shadow: 0px 0px 1px {color:permalink};
1632}
1633
1634
1635
1636.note li, .note, .note a {
1637 list-style-type:none;
1638 padding-top:0px;
1639 line-height:14px;
1640 padding-bottom:0px;
1641 padding-left:0px;
1642 padding-right:2px;
1643 letter-spacing:-0.3px;
1644 text-align:left!important;
1645 -moz-transition-duration:0.5s;
1646 -webkit-transition-duration:0.5s;
1647 -o-transition-duration:0.5s;
1648 font-family:calibri!important;
1649 font-size:9.4px!important;
1650 font-weight:bold;
1651 text-transform:uppercase;
1652 color:{color:permalink}!important;
1653 text-shadow: 0px 0px 1px {color:permalink};
1654}
1655
1656
1657.note li a {
1658 text-align:left!important;
1659 font-family:calibri!important;
1660 font-size:9.4px!important;
1661 padding-right:2px;
1662 letter-spacing:-0.3px;
1663 font-weight:bold;
1664 text-transform:uppercase;
1665 color:{color:button active}!important;
1666 text-shadow: 0px 0px 1px {color:button active};
1667}
1668
1669
1670.more_notes_link, .more_notes_link a {
1671 text-align:left!important;
1672 margin-top:25px!important;
1673 padding-top:25px!important;
1674 color:{color:button active}!important;
1675 text-shadow: 0px 0px 1px {color:button active};
1676}
1677
1678
1679.note blockquote a {
1680 padding-top:12px;
1681 padding-bottom:12px;
1682 padding-left:24px;
1683 padding-right:24px;
1684 margin-top:12px;
1685 margin-bottom:12px;
1686 margin-left:0px;
1687 margin-right:0px;
1688 font-weight:bold;
1689 color:{color:button active}!important;
1690 text-shadow: 0px 0px 1px {color:button active};
1691}
1692
1693
1694.note img.avatar {
1695 display:none;
1696 width: 0px;
1697 height: 0px;
1698}
1699
1700
1701
1702
1703
1704
1705/* PAGINATION */
1706
1707
1708.navigationbottom {
1709 left:336px;
1710 top:424px;
1711 position:absolute;
1712 width: 533px;
1713 outline:1px solid {color:border};
1714 height:25px;
1715 line-height:25px;
1716 z-index:5;
1717}
1718
1719
1720.pagination {
1721 height:25px;
1722 line-height:25px;
1723}
1724
1725
1726.pagination b {
1727 color:{color:button inactive}!important;
1728 text-shadow: 0px 0px 1px {color:button inactive};
1729}
1730
1731
1732.pagination a {
1733 display:inline-block;
1734 box-sizing: border-box;
1735 font-size:10px;
1736 text-align:center;
1737 padding-left:25px;
1738 padding-right:25px;
1739 font-family: calibri, sans-serif;
1740 text-transform:uppercase;
1741 width:177px;
1742 max-width:177px;
1743 height:25px;
1744 background-color:{color:background};
1745 outline:1px solid {color:border};
1746 line-height:25px;
1747 margin-right:0px;
1748 color: {color:button inactive};
1749 font-weight:bold!important;
1750 overflow:hidden;
1751 text-shadow: 0px 0px 1px {color:button inactive};
1752}
1753
1754
1755.pagination a:first-child {
1756 margin-left:0px!important;
1757}
1758
1759
1760.pagination a:last-child {
1761 margin-right:0px!important;
1762}
1763
1764
1765.navigationbottom a:hover, .pagination a:hover, .pagination:hover {
1766 font-weight:bold!important;
1767 color:{color:links hover}!important;
1768 -moz-transition-duration:1.5s;
1769 -webkit-transition-duration:1.5s;
1770 -o-transition-duration:1.5s;
1771 text-shadow: 0px 0px 1px {color:links hover};
1772}
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785/* TRANSFORM */
1786
1787
1788.transformmenu {
1789 position:fixed;
1790 margin-top:25px!important;
1791 margin-left:0px!important;
1792 font-family:calibri;
1793 text-transform:uppercase;
1794 font-weight:bold;
1795 padding-left:25px;
1796 padding-right:25px;
1797 height:25px;
1798 line-height:25px;
1799}
1800
1801
1802
1803.transformlist {
1804 position:absolute;
1805 z-index:99!important;
1806 margin-left:26px;
1807 margin-top:75px;
1808 height:119px;
1809 max-height:119px;
1810 width:178px;
1811 max-width:178px;
1812 background-color:{color:background};
1813 overflow-y:scroll;
1814 padding-left:0px;
1815 padding-right:0px;
1816 outline:1px solid {color:border}!important;
1817}
1818
1819
1820.transformlinks {
1821 margin-top:-1px;
1822 margin-left:-1px;
1823 width:275px;
1824 background-color:{color:background};
1825}
1826
1827
1828.transformlinks a, .transformlinks li, .transformlinks button {
1829 display:inline-block;
1830 box-sizing: border-box;
1831 padding-right:24px;
1832 border-top:1px solid {color:border};
1833 background-color:{color:background};
1834 width:275px;
1835 overflow:hidden;
1836 height:32.5px;
1837 padding-left:24px;
1838 padding-right:24px;
1839 font-family:calibri;
1840 text-align:left!important;
1841 font-style:normal;
1842 font-weight:bold!important;
1843 margin-right:0px;
1844 margin-bottom:-3px;
1845 font-size:9.5px;
1846 letter-spacing:0px;
1847 line-height:32.5px;
1848 color: {color:Navigation List Links};
1849 text-transform:uppercase;
1850 cursor:pointer;
1851 text-shadow: 0px 0px 1px {color:Navigation List Links};
1852 -moz-transition-duration:1.5s;
1853 -webkit-transition-duration:1.5s;
1854 -o-transition-duration:1.5s;
1855}
1856
1857
1858.transformlinks li:hover, .transformlinks li:nth-of-type(even):hover {
1859 color:{color:links}!important;
1860 text-shadow: 0px 0px 1px {color:links};
1861 -moz-transition-duration:1.5s;
1862 -webkit-transition-duration:1.5s;
1863 -o-transition-duration:1.5s;
1864}
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877/* POPUPS: GENERAL */
1878
1879
1880.popup_block {
1881 box-sizing: border-box;
1882 width:400px;
1883 height:388px;
1884 max-height:388px;
1885 margin-top:76px!important;
1886 margin-left:337px!important;
1887 display:none;
1888 background-color:{color:background}!important;
1889 outline:1px solid {color:border};
1890 border-bottom:24px solid {color:background};
1891 padding-left:24px;
1892 padding-right:24px;
1893 position:absolute;
1894 z-index:99999999;
1895 opacity:1;
1896 overflow-y:hidden;
1897 text-align:justify;
1898 overflow-x:hidden;
1899}
1900
1901
1902.popup_block a {
1903 margin-right:0px;
1904 vertical-align:top;
1905 font-family: calibri, sans-serif;
1906 font-size:9.5px;
1907 color:{color:links};
1908 font-weight:bold!important;
1909 position: relative;
1910 text-decoration:none;
1911 text-transform:uppercase;
1912 text-shadow: 0px 0px 1px {color:links};
1913}
1914
1915
1916*html #fade {
1917 position: absolute;
1918}
1919
1920
1921*html .popup_block {
1922 position: absolute;
1923}
1924
1925
1926#fade {
1927 display:none;
1928 position:fixed;
1929 left:0px;
1930 top:0px;
1931 width:100%;
1932 height:100%;
1933 z-index:9;
1934 background:transparent;
1935 opacity:0;
1936}
1937
1938
1939
1940
1941
1942
1943/* NAVIGATION LIST */
1944
1945
1946.nlist {
1947 position:absolute;
1948 z-index:88!important;
1949 left:52px;
1950 margin-top:173px;
1951 height:129px;
1952 max-height:129px;
1953 width:231px;
1954 max-width:231px;
1955 border-bottom:0px solid {color:background}!important;
1956 border-top:0px solid {color:background}!important;
1957 background-color:{color:background};
1958 overflow-y:scroll;
1959 padding-left:0px;
1960 padding-right:0px;
1961 outline:0px solid {color:border}!important;
1962}
1963
1964
1965.nlinks {
1966 margin-top:-1px;
1967 padding-left:0px!important;
1968 width:275px;
1969 background-color:{color:background};
1970}
1971
1972
1973.nlinks a, .nlinks li {
1974 display:inline-block;
1975 box-sizing: border-box;
1976 border-top:1px solid {color:border};
1977 background-color:{color:background};
1978 width:275px;
1979 overflow:hidden;
1980 height:31.5px;
1981 padding-left:25px;
1982 padding-right:25px;
1983 font-family:calibri;
1984 text-align:left;
1985 font-style:normal;
1986 font-weight:bold;
1987 margin-right:0px;
1988 margin-bottom:-3px;
1989 font-size:9.4px;
1990 letter-spacing:0px;
1991 line-height:31.5px;
1992 color: {color:Navigation List Links};
1993 text-transform:uppercase;
1994 font-weight:bold;
1995 cursor:pointer;
1996 text-shadow: 0px 0px 1px {color:Navigation List Links};
1997 -moz-transition-duration:1.5s;
1998 -webkit-transition-duration:1.5s;
1999 -o-transition-duration:1.5s;
2000}
2001
2002
2003.nlinks li:hover, .nlinks li:nth-of-type(even):hover {
2004 color:{color:links}!important;
2005 text-shadow: 0px 0px 1px {color:links};
2006 -moz-transition-duration:1.5s;
2007 -webkit-transition-duration:1.5s;
2008 -o-transition-duration:1.5s;
2009}
2010
2011
2012
2013.nlinksbutton, .nlinksbutton1, .nlinksbutton2, .nlinksbutton3, .nlinksbutton4 {
2014 display:inline-block;
2015 box-sizing: border-box;
2016 border-top:1px solid {color:border};
2017 background-color:{color:background};
2018 width:275px;
2019 overflow:hidden;
2020 height:31.5px;
2021 padding-left:25px;
2022 padding-right:25px;
2023 text-align:left;
2024 color:{color:body text};
2025 font-family:monospace;
2026 letter-spacing:0.6px;
2027 font-size:8.4px;
2028 font-weight:lighter;
2029 font-style:normal;
2030 font-weight:bold;
2031 margin-right:0px;
2032 margin-bottom:-3px;
2033 line-height:31.5px;
2034 text-transform:uppercase;
2035 cursor:pointer;
2036 -moz-transition-duration:1.5s;
2037 -webkit-transition-duration:1.5s;
2038 -o-transition-duration:1.5s;
2039}
2040
2041
2042
2043.nlinkscontent, .nlinkscontent1, .nlinkscontent2, .nlinkscontent3, .nlinkscontent4 {
2044 display:none;
2045 max-width:484px;
2046 background-color:#000000;
2047 overflow:hidden;
2048 outline:0px solid {color:border};
2049}
2050
2051
2052.nlinkscontent a {
2053 outline:0px solid {color:border};
2054 border:0px;
2055 width:242.1px!important;
2056 margin-top:-1px!important;
2057 margin-left:0px!important;
2058 margin-right:-1px!important;
2059 margin-bottom:0px!important;
2060}
2061
2062
2063.nlinkscontent a:nth-child (odd) {
2064 border-right:1px solid {color:border};
2065 width:243px!important;
2066}
2067
2068
2069
2070/*NAVIGATION PAGES: SIDEBAR */
2071
2072
2073.npside {
2074 position:absolute;
2075 width:283px;
2076 height:423px;
2077 left:1px;
2078 top:0px;
2079 overflow-y:hidden;
2080 outline:1px solid {color:border};
2081 background-color:{color:background}!important;
2082}
2083
2084
2085.npsidetitle {
2086 position:absolute;
2087 font-family: 'janeaustennosecret';
2088 color:{color:title};
2089 font-weight:bold!important;
2090 text-transform:none;
2091 padding-left:25px;
2092 padding-right:25px;
2093 font-size:70px;
2094 width:488px;
2095 margin-left:-24px;
2096 top:123px;
2097 line-height:14px;
2098 letter-spacing:-2px;
2099 text-align:right!important;
2100 z-index:90;
2101 pointer-events:none;
2102 background-color:transparent;
2103 text-shadow:
2104 -1px -1px 0 {color:title shadow},
2105 1px -1px 0 {color:title shadow},
2106 -1px 1px 0 {color:title shadow},
2107 1px 1px 0 {color:title shadow};
2108}
2109
2110
2111
2112.npsideinner {
2113 position:absolute;
2114 width:231px;
2115 margin-left:26px;
2116 margin-top:26px;
2117 outline:1px solid {color:border};
2118 background-color:{color:background};
2119 -webkit-box-shadow: 0px 0px 48px 4px {color:background};
2120 -moz-box-shadow: 0px 0px 48px 4px {color:background};
2121 box-shadow: 0px 0px 48px 4px {color:background};
2122}
2123
2124
2125.npsideimgtop {
2126 background-image:url('{Sidebar Image Top}');
2127 background-position:top left;
2128 outline:1px solid {color:border};
2129 overflow:hidden;
2130 width:231px;
2131 height:120px!important;
2132 -webkit-filter: brightness(1) contrast(1) saturate(1);
2133}
2134
2135
2136.npsideimgbottom {
2137 background-image:url('{Sidebar Image Bottom}');
2138 background-position:top left;
2139 outline:1px solid {color:border};
2140 margin-top:131px;
2141 overflow:hidden;
2142 width:231px;
2143 height:120px;
2144 -webkit-filter: brightness(1) contrast(1) saturate(1);
2145}
2146
2147
2148
2149
2150.nlist2 {
2151 position:relative;
2152 z-index:20!important;
2153 margin-left:0px;
2154 margin-top:1px;
2155 height:129px;
2156 max-height:129px;
2157 width:231px;
2158 max-width:231px;
2159 border-bottom:0px solid {color:background}!important;
2160 border-top:0px solid {color:background}!important;
2161 background-color:{color:background};
2162 overflow-y:scroll;
2163 padding-left:0px;
2164 padding-right:0px;
2165 outline:1px solid {color:border}!important;
2166}
2167
2168
2169.nlinks2 {
2170 margin-top:0px;
2171 padding-left:0px!important;
2172 width:275px;
2173 background-color:{color:background};
2174}
2175
2176
2177.nlinks2 a, .nlinks2 li {
2178 display:inline-block;
2179 box-sizing: border-box;
2180 padding-right:24px;
2181 outline:1px solid {color:border};
2182 background-color:{color:background};
2183 width:275px;
2184 overflow:hidden;
2185 height:31.5px;
2186 padding-left:24px;
2187 padding-right:24px;
2188 font-family:calibri;
2189 text-align:left;
2190 font-style:normal;
2191 font-weight:bold!important;
2192 margin-right:0px;
2193 margin-bottom:-3px;
2194 font-size:9.5px;
2195 letter-spacing:0px;
2196 line-height:31.5px;
2197 color: {color:Navigation List Links};
2198 text-transform:uppercase;
2199 cursor:pointer;
2200 text-shadow: 0px 0px 1px {color:Navigation List Links};
2201}
2202
2203
2204.nlinks2 li:hover, .nlinks2 li:nth-of-type(even):hover {
2205 color:{color:links}!important;
2206 text-shadow: 0px 0px 1px {color:links};
2207 -moz-transition-duration:1.5s;
2208 -webkit-transition-duration:1.5s;
2209 -o-transition-duration:1.5s;
2210}
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223/* NAVIGATION PAGES */
2224
2225
2226#page {
2227 width:484px;
2228 height:373px;
2229 margin-left:286px;
2230 margin-top:50px;
2231 overflow-x:hidden;
2232 outline:1px solid {color:border};
2233 padding-left:24px;
2234 padding-right:25px;
2235 background-color:{color:background}!important;
2236}
2237
2238
2239
2240#page pre {
2241 overflow: hidden;
2242 background-color: {color:background};
2243 outline:1px solid {color:border};
2244 padding-left:25px;
2245 padding-right:25px;
2246 width:432px;
2247 padding-top:8px;
2248 padding-bottom:8px;
2249 margin-bottom:18px!important;
2250 margin-top:18px!important;
2251 text-transform:uppercase;
2252 line-height:155%;
2253 font-weight:lighter!important;
2254 color:{color:body text};
2255 font-size:8.4px;
2256 letter-spacing:0.6px;
2257 white-space: pre-wrap;
2258 white-space: -moz-pre-wrap;
2259 white-space: -pre-wrap;
2260 white-space: -o-pre-wrap;
2261 word-wrap: break-word;
2262}
2263
2264
2265#pre a {
2266 color:{links hover}!important;
2267 text-shadow: 0px 0px 1px {links hover}!important;
2268}
2269
2270
2271#page pre:first-child {
2272 margin-top:1px!important;
2273}
2274
2275
2276
2277
2278.npheader {
2279 margin-top:0px;
2280 margin-left:-24px;
2281 margin-bottom:0px!important;
2282 height:90px;
2283 width:538px;
2284 overflow:hidden;
2285 outline:1px solid {color:border};
2286 -webkit-filter: brightness(1.1) contrast(1) saturate(1);
2287}
2288
2289
2290.npnavi {
2291 margin-top:1px;
2292 margin-left:-25px!important;
2293 margin-right:-25px!important;
2294 margin-bottom:0px;
2295 outline:0px;
2296}
2297
2298
2299
2300
2301.npnavi2 {
2302 margin-top:1px;
2303 margin-left:-25px!important;
2304 margin-right:-25px!important;
2305 margin-bottom:0px;
2306 outline:0px;
2307}
2308
2309
2310
2311
2312.dropbtn {
2313 display:inline-block;
2314 box-sizing: border-box;
2315 font-size:9.5px;
2316 text-align:center;
2317 min-width:539px!important;
2318 padding-left:25px;
2319 padding-right:25px;
2320 margin-left:0px;
2321 margin-top:-1px;
2322 margin-bottom:0px!important;
2323 font-family: calibri, sans-serif;
2324 text-transform:uppercase;
2325 height:26px;
2326 background-color:transparent;
2327 outline:0px solid {color:border};
2328 border:1px solid {color:border};
2329 line-height:23px;
2330 margin-right:0px;
2331 color: {color:bold};
2332 font-weight:bold!important;
2333 overflow:hidden; /* older browsers */
2334}
2335
2336
2337
2338
2339.dropbtn:hover, .dropbtn:focus {
2340 color:{color:links};
2341}
2342
2343
2344
2345
2346.dropdown {
2347 position: relative;
2348 display: inline-block;
2349}
2350
2351
2352
2353.dropdown-content {
2354 display: none;
2355 position: absolute;
2356 margin-top:-1px!important;
2357 margin-left:0px;
2358 outline:1px solid {color:border};
2359 border:0px solid {color:border};
2360 background-color: {color:background};
2361 width:537px;
2362 z-index: 99;
2363 -webkit-box-shadow: 0px 25px 0px -1px rgba(25,25,25,1);
2364 -moz-box-shadow: 0px 25px 0px -1px rgba(25,25,25,1);
2365 box-shadow: 0px 25px 0px -1px rgba(25,25,25,1);
2366}
2367
2368
2369.dropdown-content a {
2370 color: black;
2371 padding: 12px 16px;
2372 text-decoration: none;
2373 display: block;
2374}
2375
2376
2377.dropdown-content a:hover, .dropdown a:hover {
2378 color:{color:links hover};!important;
2379}
2380
2381
2382
2383
2384.dropdown2 {
2385 position: relative;
2386 display: inline-block;
2387}
2388
2389
2390
2391
2392.dropdown-content2 {
2393 display: none;
2394 position: absolute;
2395 margin-top:-1px!important;
2396 margin-left:1px;
2397 outline:1px solid {color:border};
2398 border:0px solid {color:border};
2399 background-color: {color:background};
2400 width:200px;
2401 z-index: 99;
2402 -webkit-box-shadow: 0px 25px 0px -1px rgba(0,0,0,1);
2403 -moz-box-shadow: 0px 25px 0px -1px rgba(0,0,0,1);
2404 box-shadow: 0px 25px 0px -1px rgba(0,0,0,1);
2405}
2406
2407
2408.dropdown-content2 a {
2409 color: black;
2410 padding: 12px 16px;
2411 text-decoration: none;
2412 display: block;
2413}
2414
2415
2416.dropdown-content2 a:hover, .dropdown2 a:hover {
2417 color:{color:links hover};!important;
2418}
2419
2420
2421
2422
2423
2424
2425.show {
2426 display:block;
2427}
2428
2429
2430ul#tabs {
2431 text-align: left;
2432 Cursor:pointer;
2433}
2434
2435
2436ul#tabs li {
2437 display:inline-block;
2438 box-sizing: border-box;
2439 font-size:9.5px;
2440 text-align:center;
2441 padding-left:24px;
2442 padding-right:24px;
2443 margin-bottom:-5px!important;
2444 font-family: calibri, sans-serif;
2445 text-transform:uppercase;
2446 width:268.5px;
2447 max-width:268.5px;
2448 height:25px;
2449 background-color:transparent;
2450 border-bottom:1px solid {color:border};
2451 border-left:1px solid {color:border};
2452 border-right:1px solid {color:border};
2453 line-height:25px;
2454 margin-left:-1px;
2455 margin-right:-1px;
2456 color: {color:navigation list links};
2457 font-weight:bold!important;
2458 overflow:hidden;
2459 text-shadow: 0px 0px 1px {color:navigation list links};
2460}
2461
2462
2463ul#tabs li.active {
2464 color:{color:body text};
2465}
2466
2467
2468ul#tab, ul#tabs{
2469 list-style-type:none;
2470 margin:0px;
2471 padding:0px;
2472}
2473
2474
2475ul#tab li.active {
2476 display: block;
2477}
2478
2479
2480ul#tab li {
2481 display: none;
2482}
2483
2484
2485.npcontent {
2486 margin-top:2px!important;
2487 border-top:24px solid {color:background};
2488 border-bottom:24px solid {color:background};
2489 padding-left:25px;
2490 padding-right:25px;
2491 margin-left:-25px;
2492 margin-right:-25px;
2493 overflow-y:scroll!important;
2494 height:205px;
2495 background-color:{color:background};
2496}
2497
2498
2499.nplinks {
2500 margin-top:0px!important;
2501 margin-bottom:0px!important;
2502 padding-top:0px!important;
2503 padding-bottom:0px;
2504 background-color:{color:background};
2505 width:491px;
2506}
2507
2508
2509.nplinks h4 {
2510 color:{color:headers}!important;
2511 width:433px!important;
2512 text-shadow: 0px 0px 1px {color:headers};
2513}
2514
2515
2516.nplinks a {
2517 font-family:calibri!important;
2518 font-weight:bold!important;
2519 color: {color:bold}!important;
2520 text-transform:uppercase;
2521 display:inline-block;
2522 box-sizing: border-box;
2523 width:238.7px;
2524 height:25px!important;
2525 padding-left:25px;
2526 padding-right:25px;
2527 line-height:25px;
2528 margin-left:-0px;
2529 margin-right:6px;
2530 margin-bottom:8.4px;
2531 text-align:left;
2532 border: 1px solid {color:border};
2533 font-size:9.5px;
2534 text-shadow: 0px 0px 0px {color:bold}!important;
2535}
2536
2537
2538.nplinks a:hover, .nplinks:hover {
2539 color:{color:links hover}!important;
2540 -moz-transition-duration:1.5s;
2541 -webkit-transition-duration:1.5s;
2542 -o-transition-duration:1.5s;
2543 text-shadow: 0px 0px 1px {color:links hover};
2544}
2545
2546
2547.nplinks a:last-child, .nplinks a:last-of-type {
2548 margin-right:-2px!important;
2549}
2550
2551
2552
2553
2554
2555/* CREDIT */
2556
2557
2558#credit {
2559 background-color:{color:background};
2560 border:1px solid {color:border};
2561 padding:6px 10px;
2562 z-index:999;
2563 position:absolute;
2564 bottom:44px;
2565 right:44px;
2566 width:6px;
2567 height:14px;
2568 word-wrap:break-word;
2569 font-family:calibri;
2570 overflow:hidden;
2571 -webkit-transition:all 1.5s ease;
2572 -moz-transition:all 1.5s ease;
2573 -o-transition:all 1.5s ease;
2574 transition:all 1.5s ease-in-out;
2575}
2576
2577
2578#credit a {
2579 color:{color:links};
2580 text-transform:uppercase;
2581 font-size:9.5px;
2582 text-shadow: 0px 0px 1px {color:links};
2583}
2584
2585
2586#credit:hover {
2587 width:73px;
2588}
2589
2590
2591#credit span {
2592 color:{color:bold};
2593 font-family:calibri;
2594 margin-right:10px;
2595 font-size:10.5px;
2596 text-shadow: 0px 0px 1px {color:bold};
2597}
2598
2599
2600</style>
2601</head>
2602
2603
2604
2605
2606<body>
2607
2608
2609
2610
2611
2612<!-- CONTAINER -->
2613
2614<div id="container">
2615
2616
2617
2618
2619<!-- SIDEBAR -->
2620
2621<div class="sidebar">
2622
2623{block:ifSidebarTitle}
2624<div class="sidebartitle">
2625{text:Sidebar Title}
2626</div class="sidebartitle">
2627{/block:ifSidebarTitle}
2628
2629<div class="sidebarbg">
2630<img src="{image:Sidebar Background}">
2631</div class="sidebarbg">
2632
2633
2634<div class="inner">
2635
2636<img class="sidebarimgtop" src="{image:Sidebar Image Top}" alt="Black Image" />
2637
2638
2639<div class="description">
2640
2641<b>“Gentlemen, milady ---- you will always remember this as the day you <i>almost</i> caught Captain Jack Sparrow."</b> Indie RP blog for Captain Jack Sparrow, adored by Lottie. Established on 21st August 2014, rebooted on 23rd February 2020.
2642
2643</div class="description">
2644
2645
2646<img class="sidebarimgbottom" src="{image:Sidebar Image Bottom}" alt="Black Image" />
2647
2648
2649</div class="inner">
2650
2651</div class="sidebar">
2652
2653
2654
2655
2656
2657
2658<!-- NAVIGATION: TOP -->
2659
2660
2661<div class="navigation">
2662
2663<button class="w3-bar-item w3-button" onclick="openPage('Index'); openNavi('Index'); openMuse('Index');" autofocus style="text-align:left; color:{color:button active}; text-shadow: 0px 0px 1px {color:button active};">
2664Close the popups
2665</button>
2666
2667<button class="w3-bar-item w3-button" onclick="openMuse('Inquiries')">
2668Parley
2669</button>
2670
2671<button class="w3-bar-item w3-button" onclick="openMuse('Muses')" style="text-align:right;">
2672The Navigation
2673</button>
2674
2675</div class="navigation">
2676
2677
2678
2679
2680
2681
2682
2683<!-- POSTS -->
2684
2685
2686<div id="content">
2687<div id="content2">
2688
2689
2690{block:Posts}
2691<div class="posts">
2692
2693
2694
2695
2696
2697
2698<!-- POSTS: TEXT -->
2699
2700
2701{block:Text}
2702<div id="textbody">
2703{block:Title}
2704<h1>{Title}</h1>
2705{/block:Title}
2706
2707<div id="wrap">
2708{Body}
2709</div id="wrap">
2710<div style="clear:both">
2711</div style="clear:both">
2712</div id="textbody">
2713{/block:Text}
2714
2715
2716
2717
2718
2719
2720<!-- POSTS: PHOTO/SET -->
2721
2722
2723{block:Photo}
2724<div id="psingle">
2725{LinkOpenTag}
2726
2727<img src="{PhotoURL-HighRes}">
2728{LinkCloseTag}
2729
2730</div id="psingle">
2731
2732
2733{block:Caption}
2734
2735<div id="pcaption">
2736{Caption}
2737</div id="pcaption">
2738
2739{/block:Caption}
2740
2741{/block:Photo}
2742
2743
2744
2745
2746{block:Photoset}
2747<div id="pset">
2748{Photoset}
2749</div id="pset">
2750
2751{block:Caption}
2752{Caption}
2753{/block:Caption}
2754
2755{/block:Photoset}
2756
2757
2758
2759
2760
2761
2762<!-- POSTS: QUOTE -->
2763
2764
2765{block:Quote}
2766<div id="quote">
2767"{Quote}"
2768
2769<div class="source">
2770Source: {Source}
2771</div class="source">
2772
2773</div id="quote">
2774{/block:Quote}
2775
2776
2777
2778
2779
2780
2781<!-- POSTS: LINK -->
2782
2783
2784{block:Link}
2785<div id="link">
2786
2787<a href="{URL}" {Target}>{Name} ►</a>
2788
2789</div id="link">
2790{/block:Link}
2791
2792
2793
2794
2795
2796
2797<!-- POSTS: CHAT -->
2798
2799
2800{block:Chat}
2801<div id="chat">
2802
2803{block:Lines}
2804<div id="{Alt}">
2805
2806{block:Label}<b>{Label}</b>{/block:Label} {Line}
2807
2808</div id="{Alt}">
2809{/block:Lines}
2810
2811</div id="chat">
2812{/block:Chat}
2813
2814
2815
2816
2817
2818
2819<!-- POSTS: AUDIO -->
2820
2821
2822{block:Audio}
2823<div class="audioplayer">
2824
2825{AudioPlayerWhite}
2826
2827</div class="audioplayer">
2828
2829
2830<div class="audioinfo">
2831{block:TrackName}{TrackName}{/block:TrackName} — {block:Artist}{Artist}{/block:Artist}
2832</div class="audioinfo">
2833
2834{block:Caption}
2835{Caption}
2836{/block:Caption}
2837
2838{/block:Audio}
2839
2840
2841
2842
2843
2844
2845<!-- POSTS: VIDEO -->
2846
2847
2848{block:Video}
2849<div class="video">
2850
2851{VideoEmbed-500}
2852
2853</div class="video">
2854
2855{block:Caption}
2856{Caption}
2857{/block:Caption}
2858
2859{/block:Video}
2860
2861
2862
2863
2864
2865
2866<!-- POSTS: ASK -->
2867
2868
2869{block:Answer}
2870
2871<div id="question">
2872<div id="ask">
2873
2874<b>{Asker} has come bearing inquiries:</b>
2875{Question}
2876
2877</div id="ask">
2878<div class="letterask">Q</div class="letterask">
2879
2880</div id="question">
2881
2882<div id="response">
2883<div id="wrap">{Answer}</div id="wrap">
2884
2885</div id="response">
2886
2887{/block:Answer}
2888
2889
2890
2891
2892
2893
2894
2895
2896<!-- POST INFORMATION -->
2897
2898
2899
2900{block:Date}
2901
2902{block:indexpage}
2903
2904<div class="permalink">
2905<div class="permalinkbuttons">
2906
2907<a href="{Permalink}" style="text-align:left;" title="{NoteCountWithLabel}">
2908{Month} {DayOfMonth}{DayOfMonthSuffix} / {12Hour}:{Minutes}{CapitalAmPm}</a>
2909
2910{block:RebloggedFrom}
2911<a href="{ReblogParentURL}" title="{ReblogParentName}: {ReblogParentTitle}">
2912REBLOGGED FROM / VIA
2913</a>
2914{/block:RebloggedFrom}
2915
2916<a href="{ReblogURL}" target="_blank" class="details" style="float:right; text-align:right;">
2917CLICK HERE TO REBLOG THIS POST
2918</a>
2919
2920</div class="permalinkbuttons">
2921
2922
2923{block:HasTags}
2924<div class="tags">
2925
2926{block:Tags}
2927<a href="{TagURL}">{Tag} </a>
2928{/block:Tags}
2929
2930</div class="tags">
2931{/block:HasTags}
2932
2933
2934</div class="permalink">
2935{/block:indexpage}
2936
2937
2938
2939
2940
2941
2942{block:permalinkpage}
2943<div class="permalink">
2944<div class="permalinkbuttons">
2945
2946{block:RebloggedFrom}
2947<a href="{ReblogParentName}" title="{ReblogParentName}" style="text-align:left;">
2948REBLOGGED FROM / VIA
2949</a>
2950{/block:RebloggedFrom}
2951
2952<a href="{ReblogURL}" target="_blank" class="details" style="float:right; ">
2953CLICK HERE TO REBLOG THIS POST
2954</a>
2955
2956</div class="permalinkbuttons">
2957
2958{block:HasTags}
2959<div class="tags">
2960{block:Tags}
2961
2962<a href="{TagURL}">
2963{Tag}
2964</a>
2965
2966{/block:Tags}
2967</div class="tags">
2968{/block:HasTags}
2969
2970</div class="permalink">
2971{/block:permalinkpage}
2972
2973{/block:Date}
2974
2975
2976
2977
2978
2979
2980<!-- NOTES -->
2981
2982{block:PostNotes}
2983<div id="notes">
2984
2985<div class="note">
2986{PostNotes}
2987</div class="note">
2988
2989</div id="notes">
2990{/block:PostNotes}
2991
2992
2993
2994
2995
2996
2997<!-- HIDE VIA/SOURCE IN POSTS -->
2998
2999
3000{block:ContentSource}<!-- {SourceURL}
3001{block:SourceLogo}<img src="{BlackLogoURL}"width="{LogoWidth}" height="{LogoHeight}" alt="{SourceTitle}" />{/block:SourceLogo}
3002{block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo} -->
3003{/block:ContentSource}
3004
3005
3006<!-- {block:NoRebloggedFrom}
3007{block:RebloggedFrom}{ReblogParentName}{/block:RebloggedFrom}
3008{/block:NoRebloggedFrom} -->
3009
3010
3011</div class="posts">
3012{/block:Posts}
3013
3014
3015</div id="content2">
3016</div id="content">
3017
3018
3019
3020
3021
3022{block:ifBlogTitle}
3023<div class="title">
3024{text:Title}
3025</div class="title">
3026{/block:ifBlogTitle}
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036<!-- NAVIGATION: BOTTOM -->
3037
3038
3039<div class="navigationbottom">
3040<div class="pagination">
3041
3042<a href="/" title="Refresh the page" autofocus style="text-align:left; color:{color:button active}; text-shadow: 0px 0px 1px {color:button active};">RETURN TO MAIN PAGE</a>
3043
3044{block:Indexpage}
3045{block:PreviousPage}<a href="{PreviousPage}">RETURN TO LAST PAGE</a>{/block:PreviousPage}
3046{block:NextPage}<a href="{NextPage}" style="float:right; margin-right:1px; text-align:right;">PROCEED TO NEXT PAGE</a>{/block:NextPage}
3047{/block:Indexpage}
3048
3049
3050
3051{block:PermalinkPagination}
3052{block:PreviousPost}<a href="{PreviousPost}" title="Previous Post">RETURN TO LAST POST</a>{/block:PreviousPost}
3053{block:NextPost}<a href="{NextPost}" title="Next Post" style="float:right; margin-right:1px; text-align:right;">PROCEED TO NEXT POST</a>{/block:NextPost}
3054{/block:PermalinkPagination}
3055
3056
3057</div class="pagination">
3058</div class="navigationbottom">
3059
3060
3061
3062
3063<div id="Index" class="Muse; navi; page;" style="display:block">
3064
3065</div id="Index" class="Muse; navi; page;">
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081<!-- PAGE: INQUIRIES -->
3082
3083<div id="Inquiries" class="page" style="display:none;">
3084<div id="tabcontent">
3085
3086
3087<div class="npside">
3088
3089
3090<div class="sidebarbg">
3091<img src="{image:Sidebar Background}">
3092</div class="sidebarbg">
3093
3094
3095<div class="inner">
3096
3097
3098<img class="sidebarimgtop" src="{image:Sidebar Image Top}" alt="Black Image" />
3099
3100
3101<div class="description">
3102
3103<b>"Gentlemen, my lady— ... You will always remember this as the day you almost caught <i>Captain</i> Jack Sparrow."</b> This is an independent RP for Captain Jack Sparrow, adored by Lottie. This blog was originally established on the 21st of August, 2014.
3104
3105</div class="description">
3106
3107
3108<img class="sidebarimgbottom" src="{image:Sidebar Image Bottom}" alt="Black Image" />
3109
3110
3111</div class="inner">
3112</div class="npside">
3113
3114
3115<div id="page">
3116
3117
3118<div class="npheader">
3119<img src="https://static.tumblr.com/m7qloac/qw2q4j931/guidelinesheader02.png">
3120</div class="npheader">
3121
3122
3123<div class="npnavi">
3124<div class="dropdown">
3125
3126<button onclick="myFunction()" class="dropbtn" style="pointer-events:none;">
3127Inquiries / Askbox / Curiosities</button>
3128
3129</div class="dropdown">
3130</div class="npnavi">
3131
3132
3133<!-- TAB ONE -->
3134
3135<ul id="tab"><li class="active">
3136
3137<div class="npcontent">
3138
3139<iframe frameborder="0" scrolling="yes" width="465px" height="200px" src="https://www.tumblr.com/ask_form/trickstercaptain.tumblr.com" style="padding:8px;margin-top:px; background-color:transparent; border:1px solid #151515; overflow:hidden;" id="ask_form"></iframe><!--[if IE]><script type="text/javascript">document.getElementById('ask_form').allowTransparency=true;</script><![endif]--></p>
3140
3141
3142</div class="npcontent">
3143
3144
3145
3146</div id="page">
3147
3148
3149</div id="tabcontent">
3150</div id="Inquiries" class="page">
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167<!-- NAVIGATIONAL LIST LINKS -->
3168
3169<div id="Muses" class="muse" style="display:none;">
3170
3171
3172<div class="nlist">
3173<div class="nlinks">
3174
3175
3176
3177<!-- COPY/PASTE THESE IF YOU WANT MORE LINKS -->
3178
3179<div class="nlinksbutton">Guidelines / Notes</div>
3180<div class="nlinkscontent">
3181
3182<li onclick="openPage('Codex')">
3183The Pirata Codex
3184</li>
3185
3186<li onclick="openPage('Mains')">
3187Mains / Exclusives
3188</li>
3189
3190<li onclick="openPage('Navigation')">
3191The Navigation
3192</li>
3193
3194</div class="nlinkscontent">
3195
3196
3197
3198
3199<div class="nlinksbutton1">Universes: Canon</div>
3200<div class="nlinkscontent1">
3201
3202<li onclick="openPage('CanonBio')">
3203Information: Biography
3204</li>
3205
3206<li onclick="openPage('CanonYoung')">
3207Timeline: Young
3208</li>
3209
3210<li onclick="openPage('CanonEITC')">
3211Timeline: East India Trading Company
3212</li>
3213
3214<li onclick="openPage('CanonPPMutiny')">
3215Timeline: Pre/Post-Mutiny
3216</li>
3217
3218<li onclick="openPage('CanonFilms')">
3219Timeline: Individual Films
3220</li>
3221
3222<li onclick="openPage('CanonAlternate')">
3223Timeline: Alternate(s)
3224</li>
3225
3226
3227</div class="nlinkscontent">
3228
3229
3230
3231
3232
3233
3234
3235<div class="nlinksbutton2">Universes: Modern</div>
3236<div class="nlinkscontent2">
3237
3238<li onclick="openPage('ModernBio')">
3239Information: Biography
3240</li>
3241
3242<li onclick="openPage('ModernYoung')">
3243Timeline: Young
3244</li>
3245
3246<li onclick="openPage('ModernMagic')">
3247Timeline: Magic / Supernatural
3248</li>
3249
3250<li onclick="openPage('ModernMCU')">
3251Timeline: Marvel Cinematic Universe
3252</li>
3253
3254<li onclick="openPage('ModernAlternate')">
3255Timeline: Alternate(s)
3256</li>
3257
3258
3259</div class="nlinkscontent">
3260
3261
3262
3263
3264
3265
3266<div class="nlinksbutton3">Universes: Crossover</div>
3267<div class="nlinkscontent3">
3268
3269<li onclick="openPage('CrossoverWizard')">
3270Timeline: Wizarding World
3271</li>
3272
3273<li onclick="openPage('CrossoverASOIAF')">
3274Timeline: A Song of Ice and Fire
3275</li>
3276
3277<li onclick="openPage('CrossoverVictorian')">
3278Timeline: Victorian
3279</li>
3280
3281<li onclick="openPage('CrossoverBS')">
3282Timeline: Black Sails
3283</li>
3284
3285<li onclick="openPage('CrossoverDA')">
3286Timeline: Dragon Age
3287</li>
3288
3289<li onclick="openPage('CrossoverTHG')">
3290Timeline: The Hunger Games
3291</li>
3292
3293<li onclick="openPage('CrossoverWW')">
3294Westworld
3295</li>
3296
3297</div class="nlinkscontent">
3298
3299
3300
3301
3302
3303
3304
3305<div class="nlinksbutton4">Universes: Private</div>
3306<div class="nlinkscontent4">
3307
3308<li onclick="openPage('PrivatePirateWar')">
3309Timeline: Pirate War
3310</li>
3311
3312<li onclick="openPage('PrivateSoulmate')">
3313Timeline: Soulmate AU
3314</li>
3315
3316<li onclick="openPage('PrivateApocalypse')">
3317Timeline: Apocalypse
3318</li>
3319
3320<li onclick="openPage('PrivatePearl')">
3321Timeline: Humanised Pearl
3322</li>
3323
3324</div class="nlinkscontent">
3325
3326
3327<!-- / COPY/PASTE THESE IF YOU WANT MORE LINKS -->
3328
3329
3330
3331</div class="nlinks">
3332</div class="nlist">
3333
3334</div id="Muses" class="muse">
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350<!-- PAGE: CODEX -->
3351
3352<div id="Codex" class="page" style="display:none;">
3353<div id="tabcontent">
3354
3355
3356<div class="npside">
3357
3358
3359<div class="sidebarbg">
3360<img src="{image:Sidebar Background}">
3361</div class="sidebarbg">
3362
3363
3364<div class="npsideinner">
3365
3366
3367<div class="npsideimgtop">
3368<img src="https://static.tumblr.com/m7qloac/zoLq4j95k/guidelineslefttop02.png">
3369</div class="npsideimgtop">
3370
3371
3372
3373<div class="npsideimgbottom">
3374<img src="https://static.tumblr.com/m7qloac/lmjq4j99f/guidelinesleftbottom02.png">
3375</div class="npsideimgbottom">
3376
3377
3378</div class="npsideinner">
3379</div class="npside">
3380
3381
3382<div id="page">
3383
3384
3385
3386<div class="npheader">
3387<img src="https://static.tumblr.com/m7qloac/qw2q4j931/guidelinesheader02.png">
3388</div class="npheader">
3389
3390
3391<div class="npnavi">
3392<div class="dropdown">
3393
3394<button onclick="myFunction()" class="dropbtn" style="pointer-events:none;">
3395The Pirata Codex
3396</button>
3397 <div id="myDropdown" class="dropdown-content">
3398
3399
3400 </div id="myDropdown" class="dropdown-content">
3401
3402</div class="dropdown">
3403</div class="npnavi">
3404
3405
3406<!-- TAB ONE -->
3407
3408<ul id="tab"><li class="active">
3409
3410<div class="npcontent">
3411
3412
3413<h4>001. Introduction</h4>
3414
3415First things first, a couple of notes about my particular portrayal:
3416
3417<p>My portrayal of Jack draws on both movie & book canon, primarily the trilogy and Ann Crispin’s <i>The Price of Freedom</i>, the latter of which concerns Jack’s past, although I do borrow sparingly from other sources across extended canon. He is much more than the witty rogue with a fondness for rum that he is often dismissed as; I therefore ask that you please respect this and my reasons for being picky when it comes to incorporating certain ‘canon’ established in <i>Dead Men Tell No Tales</i> in particular.
3418
3419<p>I have been writing Jack on this blog for more than five years now. In that time, I have developed him far beyond his canon, and have covered a lot of ground in terms of interactions. In particular, having written a reply to many a tavern starter over the years, I can no longer guarantee that my muse will spark into life if you write me a generic greeter starter without any prior plotting beforehand. This isn’t to say that I won’t reply to one, only to point out that you may wait a while for a reply and therefore it is much better to come to me to plot out something if you’re ever unsure of the sort of starter to throw my way.
3420
3421<p>Essentially, communication is the key! And after all this time, plotted dynamics and threads are far more likely to convince Jack’s muse into sticking beyond only a few replies, so just be aware of this.
3422
3423<h4>002. Private / Selective </h4>
3424
3425This blog is private and selective, meaning that I only write with mutuals for my own state of mind. I work and have a busy life outside of tumblr which takes priority, so I cannot write with everyone. I also do sometimes practice exclusivity, although I tend to be very picky about this: any portrayal to which I am mains or exclusive is listed in that tab to the left of this page.
3426
3427<h4>003. Drama / Tumblr Politics</h4>
3428
3429I do not care to see call out posts or any other kind of drama. I will unfollow and potentially block if I see it on my dash: I am here to <i>write</i>, not to engage in tumblr politics.
3430
3431<h4>004. Shipping</h4>
3432
3433I am multiship and Jack is <i>bisexual</i>, but both mun and muse are picky when it comes to shipping. Just because Jack is promiscuous does not necessarily mean that he will emotionally invest or jump into bed with just anyone. He is, however, a huge flirt, but conversely please do not assume that this is an attempt to force a ship on you and your muse. My son just loves to turn on the charm.
3434
3435<h4>005. General Etiquette</h4>
3436
3437Usual Tumblr etiquette applies. Please don’t godmod, don’t rush me on replies as I am very slow, please make sure meme replies are transferred over to a new post etc etc. Icons were made, although not capped by me, so please do not take them.
3438
3439
3440<h4>006. Mature Content / Triggers</h4>
3441
3442NSFW may appear from time to time, as well as certain dark topics considering that Jack is a pirate and a dangerous individual. I do not have any triggers myself, but I will certainly try to tag anything particularly sensitive that may appear on this blog.
3443
3444
3445<h4>007. Following = Writing</h4>
3446
3447If we are mutuals, I absolutely want to write with you! Hitting up my IMs for plotting is likely the easiest way to get something going with me, but sending a meme or liking a starter/interaction call absolutely works too!
3448
3449
3450<h4>008. About the mun</h4>
3451
3452Lottie. Early twenties. She/hers. GMT timezone, so I live in the land of tea and the never-ending dfs sale. Mutuals are certainly welcome to ask for my discord!
3453
3454
3455<h4>009. Disclaimer / Rights</h4>
3456
3457I do not have any association with Disney, Pirates of the Caribbean, or the wonderful Johnny Depp. Any ignorant and uneducated hate towards my faceclaim will not be tolerated on my dash and, out of respect to him as a human being, as well as for my own comfort, I will not write or interact with any blog who uses Amber Heard as a faceclaim.
3458
3459
3460</div class="npcontent">
3461
3462
3463</li></ul>
3464
3465
3466</div id="page">
3467
3468
3469</div id="tabcontent">
3470</div id="Codex" class="page">
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492<!-- PAGE: MAINS -->
3493
3494<div id="Mains" class="page" style="display:none;">
3495<div id="tabcontent">
3496
3497
3498<div class="npside">
3499
3500
3501<div class="sidebarbg">
3502<img src="{image:Sidebar Background}">
3503</div class="sidebarbg">
3504
3505
3506<div class="npsideinner">
3507
3508
3509<div class="npsideimgtop">
3510<img src="https://static.tumblr.com/m7qloac/zoLq4j95k/guidelineslefttop02.png">
3511</div class="npsideimgtop">
3512
3513
3514
3515<div class="npsideimgbottom">
3516<img src="https://static.tumblr.com/m7qloac/lmjq4j99f/guidelinesleftbottom02.png">
3517</div class="npsideimgbottom">
3518
3519
3520</div class="npsideinner">
3521</div class="npside">
3522
3523
3524<div id="page">
3525
3526
3527
3528<div class="npheader">
3529<img src="https://static.tumblr.com/m7qloac/qw2q4j931/guidelinesheader02.png">
3530</div class="npheader">
3531
3532
3533<div class="npnavi">
3534<div class="dropdown">
3535
3536<button onclick="myFunction()" class="dropbtn" style="pointer-events:none;">
3537Mains / Exclusives
3538</button>
3539 <div id="myDropdown" class="dropdown-content">
3540
3541
3542 </div id="myDropdown" class="dropdown-content">
3543
3544</div class="dropdown">
3545</div class="npnavi">
3546
3547
3548<!-- TAB ONE -->
3549
3550<ul id="tab"><li class="active">
3551
3552<p>All of the portrayals listed on this page are near and dear to my heart, and have been in most cases for several years. Exclusives are my one and only, and something I only tend to extend to others when there is copious plotting and a strong out of character relationship involved.</p>
3553
3554<div class="nplinks">
3555
3556<h4>Exclusives</h4>
3557
3558
3559<a href="http://empireburned.tumblr.com">
3560angelica / empireburned
3561</a>
3562
3563<a href="http://krakensdotter.tumblr.com">
3564asha greyjoy / krakensdotter
3565</a>
3566
3567<a href="http://thecodekeeper.tumblr.com">
3568edward teague / thecodekeeper
3569</a>
3570
3571<a href="http://hangtherules.tumblr.com">
3572elizabeth swann / hangtherules
3573</a>
3574
3575<a href="http://crimeblogger.tumblr.com">
3576john watson / crimeblogger
3577</a>
3578
3579<a href="http://piraticalwit.tumblr.com">
3580killian jones / piraticalwit
3581</a>
3582
3583<a href="http;//empireburned.tumblr.com">
3584maria sparrow / empireburned
3585</a>
3586
3587<a href="http://scavengered.tumblr.com">
3588rey / scavengered
3589</a>
3590
3591<a href="http://nailedbats.tumblr.com">
3592steve harrington / nailedbats
3593</a>
3594
3595<a href="http://talktoten.tumblr.com">
3596tenth doctor / talktoten
3597</a>
3598</div class="nplinks">
3599
3600<p>In regards to mains, I will accept up to <strong>two per character/muse,</strong> who I will prioritise when it comes to plotting and writing. However, with these, I am still open to interacting with other portrayals.</p>
3601
3602<div class="nplinks">
3603
3604<h4>Mains</h4>
3605
3606<a href="http://empireburned.tumblr.com">
3607carina smyth / empireburned
3608</a>
3609
3610<a href="http://empireburned.tumblr.com">
3611claire fraser / empireburned
3612</a>
3613
3614<a href="http://empireburned.tumblr.com">
3615eleanor guthrie / empireburned
3616</a>
3617
3618<a href="http://khruseos.tumblr.com">
3619ezio auditore / khruseos
3620</a>
3621
3622<a href="http;//saliberte.tumblr.com">
3623humanised pearl / saliberte
3624</a>
3625
3626<a href="http://thevictors.tumblr.com">
3627tia dalma / thevictors
3628</a>
3629
3630
3631</div class="nplinks">
3632
3633
3634
3635</li></ul>
3636
3637
3638</div id="page">
3639
3640
3641</div id="tabcontent">
3642</div id="Mains" class="page">
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661<!-- PAGE: NAVIGATION -->
3662
3663<div id="Navigation" class="page" style="display:none;">
3664<div id="tabcontent">
3665
3666
3667<div class="npside">
3668
3669
3670<div class="sidebarbg">
3671<img src="{image:Sidebar Background}">
3672</div class="sidebarbg">
3673
3674
3675<div class="npsideinner">
3676
3677
3678<div class="npsideimgtop">
3679<img src="https://static.tumblr.com/m7qloac/zoLq4j95k/guidelineslefttop02.png">
3680</div class="npsideimgtop">
3681
3682
3683
3684<div class="npsideimgbottom">
3685<img src="https://static.tumblr.com/m7qloac/lmjq4j99f/guidelinesleftbottom02.png">
3686</div class="npsideimgbottom">
3687
3688
3689</div class="npsideinner">
3690</div class="npside">
3691
3692
3693<div id="page">
3694
3695
3696
3697<div class="npheader">
3698<img src="https://static.tumblr.com/m7qloac/qw2q4j931/guidelinesheader02.png">
3699</div class="npheader">
3700
3701
3702<div class="npnavi">
3703<div class="dropdown">
3704
3705<button onclick="myFunction()" class="dropbtn" style="pointer-events:none;">
3706General Navigation
3707</button>
3708 <div id="myDropdown" class="dropdown-content">
3709
3710
3711 </div id="myDropdown" class="dropdown-content">
3712
3713</div class="dropdown">
3714</div class="npnavi">
3715
3716
3717<!-- TAB ONE -->
3718
3719<ul id="tab"><li class="active">
3720
3721<div class="npcontent">
3722
3723
3724<div class="nplinks">
3725
3726<h4>General / Informative</h4>
3727
3728
3729<a href="/tagged/%5B-out-of-character.-%5D-i%27m-not-questioning-your-powers-of-observation.-i%27m-merely-remarking-on-the-paradox-of-asking-a-masked-man-who-he-is.">
3730Out of character posts
3731</a>
3732
3733<a href="/tagged/%5B-in-character.-%5D-you-got-this-right%3F-%2F-got-what%3F-i-don%27t-even-know-what-i%27m-supposed-to-get%21">
3734In character posts
3735</a>
3736
3737<a href="/tagged/%5B-crack.-%5D-i%27m-going-to-get-you-a-dictionary-for-christmas-this-year-so-you-can-look-up-%27fun.%27-i%27m-not-sure-you-know-what-it-means.">
3738Crack / Humor
3739</a>
3740
3741<a href="/tagged/%5B-salt.-%5D-there-once-was-a-man-named-duccio.-a-rat-with-lecherous-taste.-whenever-he-would-show-himself.-my-fist-would-find-his-face.">
3742Salt / Opinions
3743</a>
3744
3745<a href="/tagged/%5B-my-resources-%2F-edits.-%5D-welcome-to-the-birthing-suite.-i%27m-pleased-to-announce-the-imminent-arrival-of-your-bouncing-badass-baby-brother.">
3746Resources / Edits
3747</a>
3748
3749<a href="/tagged/%5B-all-meta.-%5D-artists-use-lies-to-tell-the-truth.-yes-i-created-a-lie.-but-because-you-believed-it.-you-found-something-true-about-yourself.">
3750All written meta
3751</a>
3752
3753<a href="/tagged/%5B-self-promotion.-%5D-have-you-fallen-in-love-with-the-wrong-person-yet%3F-%2F-unfortunately-lady-of-the-haven.-my-one-true-love-remains-myself.">
3754Self Promotions
3755</a>
3756
3757<a href="/tagged/%5B-other-promotions.-%5D-i-told-you-i-don%27t-wanna-join-your-super-secret-boy-band.">
3758Other Promotions
3759</a>
3760
3761
3762<h4>Social Aspects</h4>
3763
3764
3765<a href="/tagged/%5B-saved.-%5D-i-don%27t-want-to-harp-on-this-but-did-you-like-the-custom-rabbit%3F-%2F-...-did-i-like-it%3F-%2F-nailed-it.-right%3F">
3766Saved messages / Treasures
3767</a>
3768
3769<a href="/tagged/%5B-public-service-announcement.-%5D-obviously-you-can-quote-me-on-that.-%27cause-i-just-said-it.">
3770Public Service Announcements
3771</a>
3772
3773<a href="/tagged/%5B-inquiries%3A-out-of-character.-%5D-you-can-call-me-anytime.-i%27ll-put-you-on-hold.-i-like-to-watch-the-line-blink.">
3774Answered: Out of character
3775</a>
3776
3777<a href="/tagged/%5B-inquiries%3A-in-character.-%5D-so-you-came-here-to-torture-me-and-talk-about-yourself%3F-%2F-you-may-not-remember-but-that%27s-kind-of-our-thing.">
3778Answered: In character
3779</a>
3780
3781<a href="/tagged/%5B-inquiries%3A-memes-%2F-prompts.-%5D-this-is-probably-a-bad-idea.-like-a-record-breakingly-bad-idea.-like-a-go-down-in-history-bad-idea.">
3782Answered: Memes / Prompts
3783</a>
3784
3785<a href="/tagged/%5B-memes-%2F-prompts.-%5D-either-you%27ve-been-out-fighting-the-forces-of-evil-or-you%27ve-come-from-a-much-wilder-party-than-we-have.">
3786Memes / Prompts
3787</a>
3788
3789<a href="/tagged/%5B-et-cetera.-%5D-what-was-done-to-me-created-me%3A-a-basic-principle-of-the-universe-that-every-action-causes-an-equal-and-opposing-reaction.">
3790Et cetera / Various
3791</a>
3792
3793
3794<h4>Contact</h4>
3795
3796<a href="https://iniziare.tumblr.com">
3797My Theme Blog
3798</a>
3799
3800<a href="https://dyksa.tumblr.com">
3801My Personal / My Edits
3802</a>
3803
3804<a href="https://nl.pinterest.com/cantrous/">
3805My Pinterest Aesthetics
3806</a>
3807
3808<a href="https://open.spotify.com/user/5z17pfywk5x5h11orutliixfo?si=mud-vGyzQwuvVwlH7v9KqA">
3809My Spotify Playlists
3810</a>
3811
3812<a href="">
3813Discord: Sae#3614
3814</a>
3815
3816<a href="">
3817Skype: Littlemisswhoever
3818</a>
3819
3820</div class="nplinks">
3821
3822
3823</div class="npcontent">
3824
3825
3826</li></ul>
3827
3828
3829</div id="page">
3830
3831
3832</div id="tabcontent">
3833</div id="Navigation" class="page">
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853<!-- PAGE: CANONBIO -->
3854
3855<div id="CanonBio" class="page" style="display:none;">
3856<div id="tabcontent">
3857
3858
3859<div class="npside">
3860
3861
3862<div class="sidebarbg">
3863<img src="{image:Sidebar Background}">
3864</div class="sidebarbg">
3865
3866
3867<div class="npsideinner">
3868
3869
3870<div class="npsideimgtop">
3871<img src="https://static.tumblr.com/m7qloac/lc8q60nuw/canonside06.png">
3872</div class="npsideimgtop">
3873
3874
3875
3876<div class="npsideimgbottom">
3877<img src="https://static.tumblr.com/m7qloac/BFqq5g3xc/canonside01.png">
3878</div class="npsideimgbottom">
3879
3880
3881
3882</div class="npsideinner">
3883</div class="npside">
3884
3885
3886<div id="page">
3887
3888
3889
3890<div class="npheader">
3891<img src="https://static.tumblr.com/m7qloac/vaQq5g4w4/canonheader02.png">
3892</div class="npheader">
3893
3894
3895<div class="npnavi">
3896<div class="dropdown">
3897
3898<button onclick="myFunction()" class="dropbtn">
3899Click for links
3900</button>
3901 <div id="myDropdown" class="dropdown-content">
3902
3903
3904<ul id="tabs">
3905<li style="text-align:left;" autofocus>Biography</li>
3906<li style="text-align:right;">Timeline</li>
3907<li style="text-align:left;">Important Headcanons/Meta</li>
3908</ul id="tabs">
3909
3910
3911 </div id="myDropdown" class="dropdown-content">
3912
3913</div class="dropdown">
3914</div class="npnavi">
3915
3916
3917<!-- TAB ONE -->
3918
3919<ul id="tab">
3920<li class="active">
3921
3922<div class="npcontent">
3923
3924<h4>Basic information</h4>
3925
3926
3927<strong>FULL NAME:</strong> Captain Jack Sparrow <br />
3928<strong>NICKNAME(S):</strong> Jackie, Jacky boy, Witty Jack, mi corazón, Captain Looby, Uncle Jack, little bird <br />
3929<strong>ALIAS(ES):</strong> Mister / Justice Smith <br />
3930<strong>OCCUPATION:</strong> Pirate / Captain of the Black Pearl / Pirate Lord of the Caribbean <br />
3931<strong>AGE:</strong> 38 ( post AWE / main verse ) <br />
3932<strong>SEXUAL ORIENTATION:</strong> Bisexual <br />
3933<strong>ROMANTIC ORIENTATION:</strong> Demiromantic <br />
3934<strong>DATE OF BIRTH:</strong> 6th August 1704 <br />
3935<strong>NATIONALITY:</strong> English <br />
3936<strong>RELIGION:</strong> Agnostic
3937
3938<h4>PHYSICAL INFORMATION</h4>
3939
3940<p><strong>HEIGHT:</strong> 5'10" <br />
3941<strong>EYE COLOUR:</strong> Brown <br />
3942<strong>HAIR COLOUR:</strong> Black <br />
3943<strong>DOMINANT HAND:</strong> Right, but somewhat ambidextrous <br />
3944<strong>DISTINGUISHING FEATURES:</strong> High cheekbones, mane of hair, large, kohl-rimmed eyes <br />
3945<strong>TATTOO(S):</strong> Sparrow flying over stylised waves on his right forearm, ‘mi corazón’ on the left hand side of his chest, the desiderata poem on his back <br />
3946<strong>SCAR(S):</strong> ‘P’ brand on his right wrist/forearm, two powder burns on the right hand side of his chest, extensive burns along his left arm, scar through his right eyebrow, other nicks and scars scattered across his torso<br />
3947<strong>PIERCING(S):</strong> Both ears <br />
3948
3949<h4>BACKGROUND INFORMATION</h4>
3950
3951<strong>HOMETOWN:</strong> Shipwreck Cove <br />
3952<strong>CURRENT RESIDENCE:</strong> The Black Pearl, Tortuga, at sea <br />
3953<strong>LANGUAGE(S):</strong> English, Spanish, French, along with some Latin, Mandarin & others <br />
3954<strong>PARENTS:</strong> Edward Teague & Maria Sparrow <i>( deceased )</i><br />
3955<strong>SIBLING(S):</strong> None <i>( Isobel Sparrow in an AU )</i> <br />
3956<strong>EXTENDED FAMILY:</strong> Uncle Jack <i>( Paternal Uncle )</i>, Henry Turner <i>( Stepson / Surrogate Son )</i>, Bartholomew <i>( Paternal Grandfather )</i>, Anne Teague <i>( Paternal Grandmother )</i> <br />
3957<strong>SIGNIFICANT OTHER:</strong> Multiple, verse dependent <br />
3958<strong>CHILD(REN):</strong> Verse dependent; Emma, Jacob & Lily Swann Sparrow <br />
3959<strong>PET(S):</strong> Tim <i>( Dog with Keys )</i>, the animals on board the Pearl, including Cotton’s Parrot and, begrudgingly, Jack the Monkey <br />
3960<strong>FRIENDS / ALLIES:</strong> Joshamee Gibbs, Will Turner, Elizabeth Swann, Marty, Cotton, Anamaria, Scrum, Tia Dalma, Bootstrap Bill Turner, Carina Smyth, John Watson, Asha Greyjoy, Tenth Doctor <br />
3961<strong>ENEMIES / ANIMOSITIES:</strong> Cutler Beckett, Davy Jones, Edward Teach, Ian Mercer, the Royal Navy, the East India Trading Company, Sao Feng, Hector Barbossa, the cursed crew, James Norrington, Christophe-Julien de Rapièr, Armando Salazar
3962
3963<h4>PERSONALITY INFORMATION</h4>
3964
3965<strong>POSITIVE TRAITS:</strong> Independent, charming, open-minded, unprejudiced, intelligent, perceptive, hard-working, ambitious, well-read, merciful, witty, capable of gentleness & selflessness, flirtatious, individualistic, opinionated, charismatic, resilient, adaptable, flamboyant <br />
3966<strong>FLAWS:</strong> Stubborn, manipulative, perfectionistic, emotionally stunted, self-serving, reckless, spiteful, petty, cynical, untrustworthy, proud, distrustful, paranoid, egocentric, obsessive, unreliable, chaotic, unpredictable, moody, sometimes melancholic <br />
3967<strong>LIKES:</strong> Freedom, sailing, trouble-making, gambling, reading, rum, risk-taking, swimming <br />
3968<strong>DISLIKES:</strong> Stupidity, ignorance, injustice, cruelty, complacency, staying in one place <br />
3969<strong>FEARS:</strong> Not being good enough, loneliness, abandonment, not being remembered, death, failure, fire <br />
3970<strong>SKILLS:</strong> Navigation, cartography, sailing, fencing, using a pistol/musket, reading people, improvising, learning languages, disguise, leadership <br />
3971
3972<h4>VICES + HABITS</h4>
3973
3974<strong>SMOKES?</strong> No <br />
3975<strong>DRINKS?</strong> Yes <br />
3976<strong>DRUGS?</strong> Occasional recreational use <br />
3977<strong>SELF-DESTRUCTIVE?</strong> Yes <br />
3978
3979<h4>MISCELLANEOUS INFORMATION</h4>
3980
3981<strong>HOUSE:</strong> Slytherin <br />
3982<strong>ZODIAC:</strong> Leo <br />
3983<strong>VICE:</strong> All of them at one point or another <br />
3984<strong>VIRTUE:</strong> Cricket noises <br />
3985<strong>ELEMENT:</strong> Fire & water <br />
3986<strong>ALIGNMENT:</strong> Chaotic Neutral <br />
3987<strong>MBTI:</strong> ENTP <br />
3988
3989<h4>BIOGRAPHY</h4>
3990
3991<blockquote><i>❝ I grew up here and there, love. My first memory is of climbing up the ratlines to the yardarm and seeing the ocean, all spread out. As for raising… I more or less raised meself. ❞</i></blockquote>
3992
3993<p>The Indian Ocean. 1704. A storm is raging out to sea, and as it calmed around the Misty Lady, the first cries of a baby sparrow could be heard by the exhausted, rain-sodden crew. His mother: a lady of education and breeding, fled from the slave plantation owned by her father both in search of adventure, and to avoid the prospect of an arranged marriage. His father: one of the most notorious pirate captains to sail these waters, his harshness tempered by the woman who taught him how to love.</p>
3994
3995<p>The arrival of a child into their lives created a fissure that would never heal between them: a storm of their own, a human life in need of love and stability in a life of anything but. The young Jack Sparrow was shielded from the brunt of the tension, however, by his mother, spending the first seven years of his childhood in relative happiness. He was not immediately a pirate, spending time in more legitimate ports as Captain Teague took up a privateering contract, and even when he was tempted back into more dishonest means of making a living, Jack did not know true loneliness and pain until his mother died of an illness when he was seven years old.</p>
3996
3997<p>On that day, he all but lost both parents. A year was spent in the company of his brutal grandmother, abandoned by everyone, before he was taken on as a cabin boy on Teague’s ship. Father became an all but forbidden word: it was captain and protégé, though Jack never felt good enough to live up to the latter. Still, he learned all he could, growing up wild and street savvy in Shipwreck Cove between voyages, quickly realising that his true strength resided in his wits, not his fists. He paid a Portuguese master of the blade to teach him swordplay, and perfected his aim with the help of abandoned, empty rum bottles from the stores of one of the island’s many taverns.</p>
3998
3999<p>Making a name for himself was not something that would happen here, stuck both in Edward Teague’s shadow and the scrutiny of his gaze. But when he read a passage of the Pirate’s Code regarding freedom aged fourteen and stowed on a ship away from Shipwreck, he was quickly dragged back to a place that was quickly becoming a prison. One ( seemingly ) good thing came of it though: a meeting with a dashing French captain during Jack’s adolescence: Christophe-Julien de Rapièr. A man who Jack came to idolise, and one of the few friends he had.</p>
4000
4001<p>Jack had resolved to leave with the older man’s crew on numerous occasions, but was thwarted at every turn by Teague and his apparent efforts to keep him where he was, something which only served to greater infuriate him. Even in the face of a growing threat to the Brethren: rogue pirates, those who refuse to follow the Pirate Codex and slaughtered the crews of the ships they took as prizes, before burning the evidence. With their presence in the Caribbean came a greater threat from the navies dedicated to hunting pirates down, and Teague, along with the Pirate Lords had put themselves in charge of dealing with them.</p>
4002
4003<p>It was during one of these rogue hunting missions that the Brethren came into contact with Armando Salazar, a Spanish naval captain intent on seeing all pirates rid from the West Indies. Serving on Troudabour, Teague’s ship, it was Jack’s ingenuity that won them the day – winning him some respect among his peers, but only serving as further proof that little would change while he was unable to escape the Keeper of the Code.</p>
4004
4005<p>Shipwreck Cove welcomed Hector Barbossa for the first time, a victim of a rogue attack on his ship, and another new visitor: the Lady Esmeralda, granddaughter to Pirate Lord of the Caribbean Don Rafael. Jack was captivated. But as the two grew closer, Christophe began to interfere with the chasteness of their meetings, and Jack began to get closer to the truth of the rogues’ whereabouts: traitors in Shipwreck themselves, members of the very Court who proclaimed to follow the Code.</p>
4006
4007<p>After summoning Davy Jones himself, the traitors names became clear – but as Christophe de Rapièr was named, Jack’s outrage at what could only be a false accusation was inflamed. He resolved to break his innocent friend out of gaol and help him escape, but as soon as he’d unlocked the cell, the Frenchman’s true nature was revealed. Pirates began to riot as the rest of the rogue crews were freed, and before Jack had a chance to do anything, he was knocked out and pressganged on board the man’s ship.</p>
4008
4009<p>He had few options now. Returning to Shipwreck would carry a death sentence for breaking the Code and turning his back on his very own heritage and, having not been given a chance to sign the articles of Christophe’s ship, Jack could expect no help were he to be wounded in battle. So, with the aid of a fellow conscriptee, Robby Greene, Jack escaped the ship with enough supplies to get the two new friends to shore, and they both signed onto the East India Trading Company.</p>
4010
4011<blockquote><i>❝ As long as he stayed within the letter of the law, and didn’t bend the rules too much, he’d never again have to fear mounting a scaffold to the sound of a drumbeat, then feeling the noose tighten around his neck. ❞</i></blockquote>
4012
4013<p>Five years passed, and in that time Jack finally found a place where his merits were recognised. Stifled as he was in the dress and manner of an honest merchant sailor, Jack rose through the ranks to the role of first mate – and, after a chance reunion with Esmeralda, his first love – was handed an opportunity to vie for the position of captain. His new employer in West Africa granted it to him, Cutler Beckett, and so Jack became the commander of a charming, if weather-beaten brig: the Wicked Wench. It was love at first sight.</p>
4014
4015<p>The two began a successful partnership working to transport material cargo around the Triangle for Beckett, and are enlisted for a venture of particular interest. The lost island of Kerma was said to contain a trove of treasure within its labyrinth, recorded in a book that both Jack and Cutler had read avidly as younger men. With one of the Zerzurans in his custody, Beckett requested that Jack earn her trust, and get her to lead him to the island ready to hand over the coordinates.</p>
4016
4017<p>As the venture wore on, confronted by the people of Zerzura and the vulnerabilities of their magical island ( as well as a final, fateful confrontation with the very Frenchman who had betrayed him ), Jack began to doubt the motives of Beckett and the company behind him. Taking his share of the treasure from the labyrinth for helping the captured Zerzuran, the lost princess of the island, return home, Jack refused to divulge the bearings. Covering his tracks well, Beckett was unable to prove his employee’s dishonesty, and so set about teaching him a lesson for his disobedience.</p>
4018
4019<p>Having previously objected to getting involved in the Atlantic slave trade, Beckett offered him an ultimatum: transport these slaves for me and you can purchase the Wench for just one shilling. Refusing on principle, Jack was then told that to resign his position would mean he’d owe money for lost cargo due to pirate attacks and other misfortunes that had befallen him during his voyages for the company.</p>
4020
4021<p>He had no choice but to accept.</p>
4022
4023<blockquote><i>❝ “And what is it that I want, Jack?” Beckett asked, sounding genuinely puzzled, as though he really didn’t know.<br /> Jack looked at him. “Fear. Love. Respect. None of which you will get from me.” ❞</i></blockquote>
4024
4025<p>Days into the slave voyage, roaming his own ship like a wraith, Jack decided to renege on his agreement. He took the people on his ship to Zerzura, whose people agree to offer them asylum and a safe place away from those who would see them recaptured. But as he made for his escape, intending to sail for Port Royal and release any unwilling sailors there, before going back on the account, the Wench is captured by Beckett’s forces. </p>
4026
4027<p>Imprisoned along with Robby for nigh on a month, Jack was eventually taken on board an EITC ship out to sea, only to see his own ship moored opposite. Branding his former employee a pirate wasn’t enough: Beckett then saw to it that the vessel Jack so loved was set aflame, and left to sink beneath the waves.</p>
4028
4029<p>Jack broke free of his captors and desperately tried to save her, but ended up suck inside of his own cabin, suffocating as the ship sank into the depths. Stuck between life and death, Jack did the only thing he could think of, and summoned Davy Jones, offering him an ultimatum of his own. His ship, his life and his freedom for thirteen years, in exchange for his immortal soul.</p>
4030
4031<p>True to his word, the Wench was restored to her former glory, albeit charred and scarred like her captain. Inspired by the words of his former friend Robby, who he had urged to save himself during their final confrontation with Beckett, Jack rechristened her the Black Pearl, and had her hull painted black to hide the scorch marks. Never again would he serve a king or company or empire. True freedom was in the pirate’s life and, with both rogue pirates he’d previously freed dead, he could make a plea for a pardon from the Brethren and finally create a legend worth telling stories about.</p>
4032
4033<blockquote><i>❝ He plays things closer to the vest now. And a hard-learned lesson it was. See, three days out on the venture, the first mate comes to him and says everything’s an equal share. That should mean the location of the treasure, too. So, Jack gives up the bearings. That night, there was a mutiny. They marooned Jack on an island and left him to die, but not before he’d gone mad with the heat. ❞</i></blockquote>
4034
4035<p>Two years into his newly discovered freedom, Jack Sparrow suffered the cruel hand of betrayal again, this time by Hector Barbossa as the two set out for the Aztec gold believed to be contained on the Isla de Muerta. Given a pistol with one shot meant to put him out of his misery, Jack languished for three days on a deserted island before salvation arrived in the form of rumrunners, using the island as a cache from which to smuggle alcohol into legitimate ports. Jack struck a bargain for passage off of his place of abandonment, offering the only thing he had left to give: service as an able hand before the mast.</p>
4036
4037<p>After weeks of smuggling rum and paying back his due to the rumrunners, Jack is left in Tortuga with vengeance in his heart. However, with his mutinous first mate and the Black Pearl unattainable, beginning a ten year campaign of terror across the West Indies, the help of a new friend, Joshamee Gibbs, ensured that Jack did not forget to live. He travelled the world, captaining multiple ships of his own, and made a name for himself before a spurned marriage proposal ( or two ) led him on a stolen dory to Port Royal, setting into a motion a series of events that would give him the leverage needed to gain his ship back.</p>
4038
4039<p>But not before tragedy struck, and the position of Pirate Lord of the Caribbean passed from the late Lady Esmeralda, Doña Pirata, to Jack.</p>
4040
4041<p>With the help of Governor’s daughter Elizabeth Swann and the blacksmith Will Turner, the curse set upon Barbossa and his mutinous crew when they arrived at the Isla de Muerta is lifted, and justice is served. Escaping from his very own hanging, Jack is reunited with the ship he gave up his soul for, roughly a year before the terms of his agreement with Davy Jones were due to run out.</p>
4042
4043<p>The subsequent year was spent chasing a fantasy: from revisiting the Isla de Muerta only to find that the treasure had been reclaimed by the sea, to being chased across the Atlantic and almost through a hurricane by an enraged James Norrington, Jack’s crew went from one misfortune to the other. With discontent growing, Jack feared another mutiny would soon be on his hands – but a need to find a way out of the debt that he would soon owe led him to Constantinople.</p>
4044
4045<p>Inside one of their most notorious prisons supposedly held the answer to Jack’s prayers: a man who had survived an encounter with the Flying Dutchman, or so the stories said. Breaking into the gaol, Jack gained some of the information he sought, but during a botched break-out attempt he became the only survivor. Frustrated, and still no closer to actually leveraging his way out of his pact, it was that night that he received an emissary from Jones himself: none other than Bootstrap Bill Turner, the one man to stand up for him after the mutiny more than a decade before.</p>
4046
4047<p>With the black spot for his trouble, a visceral symbol that Jones had marked him for death, so began a frantic search for the dead man’s chest – and in it, the heart of Davy Jones, cut out of his body after suffering a betrayal from the sea goddess, Calypso. But with Jones’ re-emergence also came that of another old adversary: Cutler Beckett, now a lord of the realm and intent on controlling the seas for himself.</p>
4048
4049<p>One Judas kiss later, and Jack finally had to face what he had feared all along: Davy Jones’ Locker, a living purgatory, designed to recreate the deepest fear of the man contained in it. For Jack, that meant a vast desert, stretching on forever, and for months he languished there, with naught but himself and his demons for company.</p>
4050
4051<blockquote><i>❝ No, mate. I’m free forever. Free to sail the seas beyond the edges of the map. Free from death itself. ❞ </i></blockquote>
4052
4053<p>Haunted from his time in the Locker, and determined not to end up there again once his rescue arrives, Jack resolves that there is only one way forward from here: to stab the heart of Davy Jones himself, taking his place as Captain of the Dutchman and sailing the seas forever. It takes a moment’s hesitation, during the height of the struggle for the Brethren to assert their freedom over Lord Beckett and the forces of the East India Trading Company, for Davy Jones’ blade to pierce Will Turner’s chest and change Jack’s mind. Making Will the new Captain of the Dutchman, his actions separate the two lovers but spare their lives, leaving him – for the first time since she was rechristened – with his Black Pearl in his possession and unburdened by a debt.<strong>*</strong></p>
4054
4055<p>Once again losing the Pearl to Barbossa, Jack spends the subsequent years chasing both her and his next shot at immortality, the Fountain of Youth. In the meantime, he regularly visits Shipwreck Cove, bridging boundaries and rekindling a friendship with Elizabeth and her son, Henry. His quest for the Fountain culminates when he encounters Angelica, an old flame who informs him of her next con: tricking the famed Blackbeard into believing that she was his daughter. Knowing that Jack had learned the whereabouts of the Fountain, sought after by Teach to combat a prophecy told by one of his crew, Angelica coerces him into helping her – and once again Jack is forced into a position to give up the immortality he sought.</p>
4056
4057<p>However, his desire for eternal youth soon comes back to bite him. As the years pass following his venture to the Fountain, bottled Pearl in his possession ( but without the means to release her back into her true form ), his aging slows. Jack even begins to wonder whether he truly has become immortal, whether the waters of the Fountain have rubbed off on him somehow… but, having reached the peak of his legendary status, cemented as a figure set to go down in the history books, there is only one way to go from there and that is down.</p>
4058
4059<p>A curse, set upon him in envy, impacts his ability to free his beloved ship, and sends him into a self-destructive spiral of misfortune after misfortune, reawakening past trauma and leading him to his very lowest point since the Locker. Losing their fleet of bottled ships, Jack and the few remaining loyal members of his crew are forced to captain the pitiful Dying Gull to the island of Saint Martin, where the skiff is beached and leaves them stranded.</p>
4060
4061<p>Jack has one last ditch plan to save them, and it involves the seduction of the Governor’s wife, Frances Dix, and an ambitious bank robbery that would give them the funds to refit theDying Gull and get back to sea. But it ends in failure. His crew storm off in a huff, and Jack finally hits rock bottom. The curse inflicted upon him then sets about its crowning glory, forcing Jack to betray the compass he owns and release an imprisoned evil upon the seas, taking command of the dead…</p>
4062
4063<h4>extra notes:</h4>
4064<strong>*</strong>Default point of my main verse. Unless specified otherwise all interactions will take place immediately post-At World's End, <i>with</i> the Black Pearl in Jack's possession.</p>
4065
4066
4067</div class="npcontent">
4068
4069</li>
4070
4071
4072
4073
4074
4075
4076
4077<li>
4078
4079<div class="npcontent">
4080
4081Text for timeline
4082
4083<p>Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; In non vehicula nisi, at laoreet odio. Integer et turpis vitae sem ultrices hendrerit sed eget sapien. Etiam erat dolor, finibus et est sit amet, blandit mollis nisi. Etiam laoreet vel justo vitae condimentum. Nam quis erat volutpat, venenatis lorem vitae, suscipit urna. Aenean luctus venenatis enim. Sed lacinia mi eu arcu faucibus vestibulum. Nunc eget eros libero. Nullam et sem venenatis, euismod dui vel, cursus lacus.
4084
4085</div class="npcontent">
4086
4087</li>
4088
4089
4090
4091
4092
4093
4094<li>
4095
4096<div class="npcontent">
4097
4098Text for meta
4099
4100<p>Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; In non vehicula nisi, at laoreet odio. Integer et turpis vitae sem ultrices hendrerit sed eget sapien. Etiam erat dolor, finibus et est sit amet, blandit mollis nisi. Etiam laoreet vel justo vitae condimentum. Nam quis erat volutpat, venenatis lorem vitae, suscipit urna. Aenean luctus venenatis enim. Sed lacinia mi eu arcu faucibus vestibulum. Nunc eget eros libero. Nullam et sem venenatis, euismod dui vel, cursus lacus.
4101
4102</div class="npcontent">
4103
4104</li>
4105
4106
4107</ul id="tab">
4108
4109
4110
4111</div id="page">
4112
4113
4114</div id="tabcontent">
4115</div id="CanonBio" class="page">
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131<!-- PAGE: CANONYOUNG -->
4132
4133<div id="CanonYoung" class="page" style="display:none;">
4134<div id="tabcontent">
4135
4136
4137<div class="npside">
4138
4139
4140<div class="sidebarbg">
4141<img src="{image:Sidebar Background}">
4142</div class="sidebarbg">
4143
4144
4145<div class="npsideinner">
4146
4147
4148<div class="npsideimgtop">
4149<img src="https://static.tumblr.com/m7qloac/LxDq4mqqa/youngside03.png">
4150</div class="npsideimgtop">
4151
4152
4153
4154<div class="npsideimgbottom">
4155<img src="https://static.tumblr.com/m7qloac/bGrq4mqsw/youngside04.png">
4156</div class="npsideimgbottom">
4157
4158
4159</div class="npsideinner">
4160</div class="npside">
4161
4162
4163<div id="page">
4164
4165
4166
4167<div class="npheader">
4168<img src="https://static.tumblr.com/m7qloac/e45q4mqou/youngheader02.png">
4169</div class="npheader">
4170
4171
4172<div class="npnavi">
4173<div class="dropdown">
4174
4175<button onclick="myFunction()" class="dropbtn" style="pointer-events:none;">
4176Timeline: Young
4177</button>
4178 <div id="myDropdown" class="dropdown-content">
4179
4180
4181 </div id="myDropdown" class="dropdown-content">
4182
4183</div class="dropdown">
4184</div class="npnavi">
4185
4186
4187<!-- TAB ONE -->
4188
4189<ul id="tab"><li class="active">
4190
4191<div class="npcontent">
4192
4193
4194
4195
4196TEXT HERE
4197
4198
4199
4200
4201
4202</div class="npcontent">
4203
4204
4205</li></ul>
4206
4207
4208</div id="page">
4209
4210
4211</div id="tabcontent">
4212</div id="CanonYoung" class="page">
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230<!-- PAGE: CANONEITC -->
4231
4232<div id="CanonEITC" class="page" style="display:none;">
4233<div id="tabcontent">
4234
4235
4236<div class="npside">
4237
4238
4239<div class="sidebarbg">
4240<img src="{image:Sidebar Background}">
4241</div class="sidebarbg">
4242
4243
4244<div class="npsideinner">
4245
4246
4247<div class="npsideimgtop">
4248<img src="https://static.tumblr.com/m7qloac/Q6lq4mows/eitcleft04.png">
4249</div class="npsideimgtop">
4250
4251
4252
4253<div class="npsideimgbottom">
4254<img src="https://static.tumblr.com/m7qloac/bczq4mpsf/eitcleft07.png">
4255</div class="npsideimgbottom">
4256
4257
4258</div class="npsideinner">
4259</div class="npside">
4260
4261
4262<div id="page">
4263
4264
4265
4266<div class="npheader">
4267<img src="https://static.tumblr.com/m7qloac/Vtiq4mofw/eitcheader.png">
4268</div class="npheader">
4269
4270
4271<div class="npnavi">
4272<div class="dropdown">
4273
4274<button onclick="myFunction()" class="dropbtn" style="pointer-events:none;">
4275Timeline: East India Trading Company
4276</button>
4277 <div id="myDropdown" class="dropdown-content">
4278
4279
4280 </div id="myDropdown" class="dropdown-content">
4281
4282</div class="dropdown">
4283</div class="npnavi">
4284
4285
4286<!-- TAB ONE -->
4287
4288<ul id="tab"><li class="active">
4289
4290<div class="npcontent">
4291
4292
4293
4294
4295TEXT HERE
4296
4297
4298
4299
4300
4301
4302</div class="npcontent">
4303
4304
4305</li></ul>
4306
4307
4308</div id="page">
4309
4310
4311</div id="tabcontent">
4312</div id="CanonEITC" class="page">
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330<!-- PAGE: CanonPPMutiny -->
4331
4332<div id="CanonPPMutiny" class="page" style="display:none;">
4333<div id="tabcontent">
4334
4335
4336<div class="npside">
4337
4338
4339<div class="sidebarbg">
4340<img src="{image:Sidebar Background}">
4341</div class="sidebarbg">
4342
4343
4344<div class="npsideinner">
4345
4346
4347<div class="npsideimgtop">
4348<img src="https://static.tumblr.com/m7qloac/lc8q60nuw/canonside06.png">
4349</div class="npsideimgtop">
4350
4351
4352
4353<div class="npsideimgbottom">
4354<img src="https://static.tumblr.com/m7qloac/BFqq5g3xc/canonside01.png">
4355</div class="npsideimgbottom">
4356
4357
4358
4359</div class="npsideinner">
4360</div class="npside">
4361
4362
4363<div id="page">
4364
4365
4366
4367<div class="npheader">
4368<img src="https://static.tumblr.com/m7qloac/vaQq5g4w4/canonheader02.png">
4369</div class="npheader">
4370
4371
4372<div class="npnavi">
4373<div class="dropdown">
4374
4375<button onclick="myFunction()" class="dropbtn" style="pointer-events:none;">
4376Timeline: Pre-Mutiny
4377</button>
4378 <div id="myDropdown" class="dropdown-content">
4379
4380
4381 </div id="myDropdown" class="dropdown-content">
4382
4383</div class="dropdown">
4384</div class="npnavi">
4385
4386
4387<!-- TAB ONE -->
4388
4389<ul id="tab"><li class="active">
4390
4391<div class="npcontent">
4392
4393
4394
4395
4396
4397
4398TEXT HERE
4399
4400
4401
4402
4403
4404
4405</div class="npcontent">
4406
4407
4408</li></ul>
4409
4410
4411</div id="page">
4412
4413
4414</div id="tabcontent">
4415</div id="CanonPPMutiny" class="page">
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433<!-- PAGE: CanonFilms -->
4434
4435<div id="CanonFilms" class="page" style="display:none;">
4436<div id="tabcontent">
4437
4438
4439<div class="npside">
4440
4441
4442<div class="sidebarbg">
4443<img src="{image:Sidebar Background}">
4444</div class="sidebarbg">
4445
4446
4447<div class="npsideinner">
4448
4449
4450<div class="npsideimgtop">
4451<img src="https://static.tumblr.com/m7qloac/lc8q60nuw/canonside06.png">
4452</div class="npsideimgtop">
4453
4454
4455
4456<div class="npsideimgbottom">
4457<img src="https://static.tumblr.com/m7qloac/BFqq5g3xc/canonside01.png">
4458</div class="npsideimgbottom">
4459
4460
4461
4462</div class="npsideinner">
4463</div class="npside">
4464
4465
4466<div id="page">
4467
4468
4469
4470<div class="npheader">
4471<img src="https://static.tumblr.com/m7qloac/vaQq5g4w4/canonheader02.png">
4472</div class="npheader">
4473
4474
4475<div class="npnavi">
4476<div class="dropdown">
4477
4478<button onclick="myFunction()" class="dropbtn">
4479Timeline: Individual Films
4480</button>
4481 <div id="myDropdown" class="dropdown-content">
4482
4483
4484<ul id="tabs">
4485<li style="text-align:left;" autofocus>Curse of the Black Pearl</li>
4486<li style="text-align:right;">Dead Man's Chest</li>
4487<li style="text-align:left;">At World's End</li>
4488<li style="text-align:right;">Post-At World's End</li>
4489<li style="text-align:left;">On Stranger Tides</li>
4490<li style="text-align:right;">Dead Men Tell No Tales</li>
4491<li style="text-align:left;">Post-Dead Men Tell No Tales</li>
4492
4493
4494</ul id="tabs">
4495
4496
4497 </div id="myDropdown" class="dropdown-content">
4498
4499</div class="dropdown">
4500</div class="npnavi">
4501
4502
4503<!-- TAB ONE -->
4504
4505<ul id="tab">
4506<li class="active">
4507
4508<div class="npcontent">
4509
4510<h4>Curse of the Black Pearl</h4>
4511
4512<p>Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; In non vehicula nisi, at laoreet odio. Integer et turpis vitae sem ultrices hendrerit sed eget sapien. Etiam erat dolor, finibus et est sit amet, blandit mollis nisi. Etiam laoreet vel justo vitae condimentum. Nam quis erat volutpat, venenatis lorem vitae, suscipit urna. Aenean luctus venenatis enim. Sed lacinia mi eu arcu faucibus vestibulum. Nunc eget eros libero. Nullam et sem venenatis, euismod dui vel, cursus lacus.
4513
4514</div class="npcontent">
4515
4516</li>
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526<li>
4527
4528<div class="npcontent">
4529
4530<h4>Dead Man's Chest</h4>
4531
4532<p>Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; In non vehicula nisi, at laoreet odio. Integer et turpis vitae sem ultrices hendrerit sed eget sapien. Etiam erat dolor, finibus et est sit amet, blandit mollis nisi. Etiam laoreet vel justo vitae condimentum. Nam quis erat volutpat, venenatis lorem vitae, suscipit urna. Aenean luctus venenatis enim. Sed lacinia mi eu arcu faucibus vestibulum. Nunc eget eros libero. Nullam et sem venenatis, euismod dui vel, cursus lacus.
4533
4534</div class="npcontent">
4535
4536</li>
4537
4538
4539
4540
4541
4542
4543<li>
4544
4545<div class="npcontent">
4546
4547<h4>At World's End</h4>
4548
4549<p>Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; In non vehicula nisi, at laoreet odio. Integer et turpis vitae sem ultrices hendrerit sed eget sapien. Etiam erat dolor, finibus et est sit amet, blandit mollis nisi. Etiam laoreet vel justo vitae condimentum. Nam quis erat volutpat, venenatis lorem vitae, suscipit urna. Aenean luctus venenatis enim. Sed lacinia mi eu arcu faucibus vestibulum. Nunc eget eros libero. Nullam et sem venenatis, euismod dui vel, cursus lacus.
4550
4551</div class="npcontent">
4552
4553</li>
4554
4555
4556
4557
4558
4559
4560
4561<li>
4562
4563<div class="npcontent">
4564
4565<h4>Post-At World's End</h4>
4566
4567<p>Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; In non vehicula nisi, at laoreet odio. Integer et turpis vitae sem ultrices hendrerit sed eget sapien. Etiam erat dolor, finibus et est sit amet, blandit mollis nisi. Etiam laoreet vel justo vitae condimentum. Nam quis erat volutpat, venenatis lorem vitae, suscipit urna. Aenean luctus venenatis enim. Sed lacinia mi eu arcu faucibus vestibulum. Nunc eget eros libero. Nullam et sem venenatis, euismod dui vel, cursus lacus.
4568
4569</div class="npcontent">
4570
4571</li>
4572
4573
4574
4575
4576
4577
4578
4579<li>
4580
4581<div class="npcontent">
4582
4583<h4>On Stranger Tides</h4>
4584
4585<p>Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; In non vehicula nisi, at laoreet odio. Integer et turpis vitae sem ultrices hendrerit sed eget sapien. Etiam erat dolor, finibus et est sit amet, blandit mollis nisi. Etiam laoreet vel justo vitae condimentum. Nam quis erat volutpat, venenatis lorem vitae, suscipit urna. Aenean luctus venenatis enim. Sed lacinia mi eu arcu faucibus vestibulum. Nunc eget eros libero. Nullam et sem venenatis, euismod dui vel, cursus lacus.
4586
4587</div class="npcontent">
4588
4589</li>
4590
4591
4592
4593
4594
4595
4596
4597<li>
4598
4599<div class="npcontent">
4600
4601<h4>Dead Men Tell No Tales</h4>
4602
4603<p>Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; In non vehicula nisi, at laoreet odio. Integer et turpis vitae sem ultrices hendrerit sed eget sapien. Etiam erat dolor, finibus et est sit amet, blandit mollis nisi. Etiam laoreet vel justo vitae condimentum. Nam quis erat volutpat, venenatis lorem vitae, suscipit urna. Aenean luctus venenatis enim. Sed lacinia mi eu arcu faucibus vestibulum. Nunc eget eros libero. Nullam et sem venenatis, euismod dui vel, cursus lacus.
4604
4605</div class="npcontent">
4606
4607</li>
4608
4609
4610
4611
4612
4613
4614
4615<li>
4616
4617<div class="npcontent">
4618
4619<h4>Post-Dead Men Tell No Tales</h4>
4620
4621<p>Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; In non vehicula nisi, at laoreet odio. Integer et turpis vitae sem ultrices hendrerit sed eget sapien. Etiam erat dolor, finibus et est sit amet, blandit mollis nisi. Etiam laoreet vel justo vitae condimentum. Nam quis erat volutpat, venenatis lorem vitae, suscipit urna. Aenean luctus venenatis enim. Sed lacinia mi eu arcu faucibus vestibulum. Nunc eget eros libero. Nullam et sem venenatis, euismod dui vel, cursus lacus.
4622
4623</div class="npcontent">
4624
4625</li>
4626
4627
4628</ul id="tab">
4629
4630
4631</div id="page">
4632
4633
4634</div id="tabcontent">
4635</div id="CanonFilms" class="page">
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651<!-- PAGE: CanonAlternate -->
4652
4653<div id="CanonAlternate" class="page" style="display:none;">
4654<div id="tabcontent">
4655
4656
4657<div class="npside">
4658
4659
4660<div class="sidebarbg">
4661<img src="{image:Sidebar Background}">
4662</div class="sidebarbg">
4663
4664
4665<div class="npsideinner">
4666
4667
4668<div class="npsideimgtop">
4669<img src="https://static.tumblr.com/m7qloac/lc8q60nuw/canonside06.png">
4670</div class="npsideimgtop">
4671
4672
4673
4674<div class="npsideimgbottom">
4675<img src="https://static.tumblr.com/m7qloac/BFqq5g3xc/canonside01.png">
4676</div class="npsideimgbottom">
4677
4678
4679
4680</div class="npsideinner">
4681</div class="npside">
4682
4683
4684<div id="page">
4685
4686
4687
4688<div class="npheader">
4689<img src="https://static.tumblr.com/m7qloac/vaQq5g4w4/canonheader02.png">
4690</div class="npheader">
4691
4692
4693<div class="npnavi">
4694<div class="dropdown">
4695
4696<button onclick="myFunction()" class="dropbtn">
4697Timeline: Alternate(s)
4698</button>
4699 <div id="myDropdown" class="dropdown-content">
4700
4701<ul id="tabs">
4702<li style="text-align:left;" autofocus>Sparrabeth</li>
4703<li style="text-align:right;">Canon Post-AWE</li>
4704</ul id="tabs">
4705
4706 </div id="myDropdown" class="dropdown-content">
4707
4708</div class="dropdown">
4709</div class="npnavi">
4710
4711
4712<!-- TAB ONE -->
4713
4714<ul id="tab">
4715<li class="active">
4716
4717<div class="npcontent">
4718
4719<h4>Sparrabeth Verse</h4>
4720
4721<p>Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; In non vehicula nisi, at laoreet odio. Integer et turpis vitae sem ultrices hendrerit sed eget sapien. Etiam erat dolor, finibus et est sit amet, blandit mollis nisi. Etiam laoreet vel justo vitae condimentum. Nam quis erat volutpat, venenatis lorem vitae, suscipit urna. Aenean luctus venenatis enim. Sed lacinia mi eu arcu faucibus vestibulum. Nunc eget eros libero. Nullam et sem venenatis, euismod dui vel, cursus lacus.
4722
4723</div class="npcontent">
4724
4725</li>
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735<li>
4736
4737<div class="npcontent">
4738
4739<h4>Canon post-AWE</h4>
4740
4741<p>Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; In non vehicula nisi, at laoreet odio. Integer et turpis vitae sem ultrices hendrerit sed eget sapien. Etiam erat dolor, finibus et est sit amet, blandit mollis nisi. Etiam laoreet vel justo vitae condimentum. Nam quis erat volutpat, venenatis lorem vitae, suscipit urna. Aenean luctus venenatis enim. Sed lacinia mi eu arcu faucibus vestibulum. Nunc eget eros libero. Nullam et sem venenatis, euismod dui vel, cursus lacus.
4742
4743</div class="npcontent">
4744
4745</li>
4746
4747
4748</ul>
4749
4750</div id="page">
4751
4752
4753</div id="tabcontent">
4754</div id="CanonAlternate" class="page">
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770<!-- PAGE: ModernBio -->
4771
4772<div id="ModernBio" class="page" style="display:none;">
4773<div id="tabcontent">
4774
4775
4776<div class="npside">
4777
4778
4779<div class="sidebarbg">
4780<img src="{image:Sidebar Background}">
4781</div class="sidebarbg">
4782
4783
4784<div class="npsideinner">
4785
4786
4787<div class="npsideimgtop">
4788<img src="https://static.tumblr.com/m7qloac/0Wsq4saul/modernside02.png">
4789</div class="npsideimgtop">
4790
4791
4792
4793<div class="npsideimgbottom">
4794<img src="https://static.tumblr.com/m7qloac/jYTq4scjk/modernside03.png">
4795</div class="npsideimgbottom">
4796
4797
4798</div class="npsideinner">
4799</div class="npside">
4800
4801
4802<div id="page">
4803
4804
4805
4806<div class="npheader">
4807<img src="https://static.tumblr.com/m7qloac/Vebq4scll/canonheader02.png">
4808</div class="npheader">
4809
4810
4811<div class="npnavi">
4812<div class="dropdown">
4813
4814<button onclick="myFunction()" class="dropbtn">
4815Information: Biography
4816</button>
4817 <div id="myDropdown" class="dropdown-content">
4818
4819<ul id="tabs">
4820<li style="text-align:left;" autofocus>Biography</li>
4821<li style="text-align:right;">Important headcanons/meta</li>
4822</ul id="tabs">
4823
4824 </div id="myDropdown" class="dropdown-content">
4825
4826</div class="dropdown">
4827</div class="npnavi">
4828
4829
4830<!-- TAB ONE -->
4831
4832<ul id="tab">
4833<li class="active">
4834
4835<div class="npcontent">
4836
4837<h4>Biography</h4>
4838
4839<p>Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; In non vehicula nisi, at laoreet odio. Integer et turpis vitae sem ultrices hendrerit sed eget sapien. Etiam erat dolor, finibus et est sit amet, blandit mollis nisi. Etiam laoreet vel justo vitae condimentum. Nam quis erat volutpat, venenatis lorem vitae, suscipit urna. Aenean luctus venenatis enim. Sed lacinia mi eu arcu faucibus vestibulum. Nunc eget eros libero. Nullam et sem venenatis, euismod dui vel, cursus lacus.
4840
4841</div class="npcontent">
4842
4843</li>
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853<li>
4854
4855<div class="npcontent">
4856
4857<h4>Important headcanons</h4>
4858
4859<p>Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; In non vehicula nisi, at laoreet odio. Integer et turpis vitae sem ultrices hendrerit sed eget sapien. Etiam erat dolor, finibus et est sit amet, blandit mollis nisi. Etiam laoreet vel justo vitae condimentum. Nam quis erat volutpat, venenatis lorem vitae, suscipit urna. Aenean luctus venenatis enim. Sed lacinia mi eu arcu faucibus vestibulum. Nunc eget eros libero. Nullam et sem venenatis, euismod dui vel, cursus lacus.
4860
4861</div class="npcontent">
4862
4863</li>
4864</ul>
4865
4866
4867</div id="page">
4868
4869
4870</div id="tabcontent">
4871</div id="ModernBio" class="page">
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887<!-- PAGE: ModernYoung -->
4888
4889<div id="ModernYoung" class="page" style="display:none;">
4890<div id="tabcontent">
4891
4892
4893<div class="npside">
4894
4895
4896<div class="sidebarbg">
4897<img src="{image:Sidebar Background}">
4898</div class="sidebarbg">
4899
4900
4901<div class="npsideinner">
4902
4903
4904<div class="npsideimgtop">
4905<img src="https://static.tumblr.com/m7qloac/bVvq60r5t/myoungside03.png">
4906</div class="npsideimgtop">
4907
4908
4909
4910<div class="npsideimgbottom">
4911<img src="https://static.tumblr.com/m7qloac/ueEq4s9mh/canonside02.png">
4912</div class="npsideimgbottom">
4913
4914
4915</div class="npsideinner">
4916</div class="npside">
4917
4918
4919<div id="page">
4920
4921
4922
4923<div class="npheader">
4924<img src="https://static.tumblr.com/m7qloac/rDlq4s9nr/canonheader01.png">
4925</div class="npheader">
4926
4927
4928<div class="npnavi">
4929<div class="dropdown">
4930
4931<button onclick="myFunction()" class="dropbtn" style="pointer-events:none;">
4932Timeline: Young
4933</button>
4934 <div id="myDropdown" class="dropdown-content">
4935
4936
4937 </div id="myDropdown" class="dropdown-content">
4938
4939</div class="dropdown">
4940</div class="npnavi">
4941
4942
4943<!-- TAB ONE -->
4944
4945<ul id="tab"><li class="active">
4946
4947<div class="npcontent">
4948
4949
4950TEXT HERE
4951
4952
4953</div class="npcontent">
4954
4955
4956</li></ul>
4957
4958
4959</div id="page">
4960
4961
4962</div id="tabcontent">
4963</div id="ModernYoung" class="page">
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979<!-- PAGE: ModernMagic -->
4980
4981<div id="ModernMagic" class="page" style="display:none;">
4982<div id="tabcontent">
4983
4984
4985<div class="npside">
4986
4987
4988<div class="sidebarbg">
4989<img src="{image:Sidebar Background}">
4990</div class="sidebarbg">
4991
4992
4993<div class="npsideinner">
4994
4995
4996
4997
4998<div class="npsideimgtop">
4999<img src="https://static.tumblr.com/m7qloac/Zmxq5g5x5/wizardingside02.png">
5000</div class="npsideimgtop">
5001
5002
5003
5004<div class="npsideimgbottom">
5005<img src="https://static.tumblr.com/m7qloac/HTgq5gd59/wizardingside05.png">
5006</div class="npsideimgbottom">
5007
5008
5009</div class="npsideinner">
5010</div class="npside">
5011
5012
5013<div id="page">
5014
5015
5016
5017<div class="npheader">
5018<img src="https://static.tumblr.com/m7qloac/Xwuq60req/wizardingheader01.png">
5019</div class="npheader">
5020
5021
5022<div class="npnavi">
5023<div class="dropdown">
5024
5025<button onclick="myFunction()" class="dropbtn" style="pointer-events:none;">
5026Timeline: Magic/Supernatural
5027</button>
5028 <div id="myDropdown" class="dropdown-content">
5029
5030
5031 </div id="myDropdown" class="dropdown-content">
5032
5033</div class="dropdown">
5034</div class="npnavi">
5035
5036
5037<!-- TAB ONE -->
5038
5039<ul id="tab"><li class="active">
5040
5041<div class="npcontent">
5042
5043
5044TEXT HERE
5045
5046
5047</div class="npcontent">
5048
5049
5050</li></ul>
5051
5052
5053</div id="page">
5054
5055
5056</div id="tabcontent">
5057</div id="ModernMagic" class="page">
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078<!-- PAGE: ModernMCU -->
5079
5080<div id="ModernMCU" class="page" style="display:none;">
5081<div id="tabcontent">
5082
5083
5084<div class="npside">
5085
5086
5087<div class="sidebarbg">
5088<img src="{image:Sidebar Background}">
5089</div class="sidebarbg">
5090
5091
5092<div class="npsideinner">
5093
5094
5095<div class="npsideimgtop">
5096<img src="https://static.tumblr.com/m7qloac/hgkq60rvu/mcuside02.png">
5097</div class="npsideimgtop">
5098
5099
5100
5101<div class="npsideimgbottom">
5102<img src="https://static.tumblr.com/m7qloac/JnEq60rq9/mcuside01.png">
5103</div class="npsideimgbottom">
5104
5105
5106</div class="npsideinner">
5107</div class="npside">
5108
5109
5110<div id="page">
5111
5112
5113
5114<div class="npheader">
5115<img src="https://static.tumblr.com/m7qloac/j9Jq60ry8/mcuheader01.png">
5116</div class="npheader">
5117
5118
5119<div class="npnavi">
5120<div class="dropdown">
5121
5122<button onclick="myFunction()" class="dropbtn" style="pointer-events:none;">
5123Timeline: Marvel Cinematic Universe
5124</button>
5125 <div id="myDropdown" class="dropdown-content">
5126
5127
5128 </div id="myDropdown" class="dropdown-content">
5129
5130</div class="dropdown">
5131</div class="npnavi">
5132
5133
5134<!-- TAB ONE -->
5135
5136<ul id="tab"><li class="active">
5137
5138<div class="npcontent">
5139
5140
5141TEXT HERE
5142
5143
5144</div class="npcontent">
5145
5146
5147</li></ul>
5148
5149
5150</div id="page">
5151
5152
5153</div id="tabcontent">
5154</div id="ModernMCU" class="page">
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168<!-- PAGE: ModernAlternate -->
5169
5170<div id="ModernAlternate" class="page" style="display:none;">
5171<div id="tabcontent">
5172
5173
5174<div class="npside">
5175
5176
5177<div class="sidebarbg">
5178<img src="{image:Sidebar Background}">
5179</div class="sidebarbg">
5180
5181
5182<div class="npsideinner">
5183
5184
5185<div class="npsideimgtop">
5186<img src="https://static.tumblr.com/m7qloac/0Wsq4saul/modernside02.png">
5187</div class="npsideimgtop">
5188
5189
5190
5191<div class="npsideimgbottom">
5192<img src="https://static.tumblr.com/m7qloac/jYTq4scjk/modernside03.png">
5193</div class="npsideimgbottom">
5194
5195
5196</div class="npsideinner">
5197</div class="npside">
5198
5199
5200<div id="page">
5201
5202
5203
5204<div class="npheader">
5205<img src="https://static.tumblr.com/m7qloac/Vebq4scll/canonheader02.png">
5206</div class="npheader">
5207
5208
5209<div class="npnavi">
5210<div class="dropdown">
5211
5212<button onclick="myFunction()" class="dropbtn">
5213Timeline: Alternate(s)
5214</button>
5215 <div id="myDropdown" class="dropdown-content">
5216
5217<ul id="tabs">
5218<li style="text-align:left;" autofocus>Professor</li>
5219<li style="text-align:right;">Lawyer</li>
5220<li style="text-align:left;">Spice World</li>
5221<li style="text-align:right;">Modern Sparrabeth</li>
5222</ul id="tabs">
5223
5224 </div id="myDropdown" class="dropdown-content">
5225
5226</div class="dropdown">
5227</div class="npnavi">
5228
5229
5230<!-- TAB ONE -->
5231
5232<ul id="tab">
5233<li class="active">
5234
5235<div class="npcontent">
5236
5237<h4>Professor</h4>
5238
5239<p>Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; In non vehicula nisi, at laoreet odio. Integer et turpis vitae sem ultrices hendrerit sed eget sapien. Etiam erat dolor, finibus et est sit amet, blandit mollis nisi. Etiam laoreet vel justo vitae condimentum. Nam quis erat volutpat, venenatis lorem vitae, suscipit urna. Aenean luctus venenatis enim. Sed lacinia mi eu arcu faucibus vestibulum. Nunc eget eros libero. Nullam et sem venenatis, euismod dui vel, cursus lacus.
5240
5241</div class="npcontent">
5242
5243</li>
5244
5245
5246
5247
5248
5249
5250
5251
5252
5253<li>
5254
5255<div class="npcontent">
5256
5257<h4>Lawyer</h4>
5258
5259<p>Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; In non vehicula nisi, at laoreet odio. Integer et turpis vitae sem ultrices hendrerit sed eget sapien. Etiam erat dolor, finibus et est sit amet, blandit mollis nisi. Etiam laoreet vel justo vitae condimentum. Nam quis erat volutpat, venenatis lorem vitae, suscipit urna. Aenean luctus venenatis enim. Sed lacinia mi eu arcu faucibus vestibulum. Nunc eget eros libero. Nullam et sem venenatis, euismod dui vel, cursus lacus.
5260
5261</div class="npcontent">
5262
5263</li>
5264
5265
5266
5267
5268
5269
5270<li>
5271
5272<div class="npcontent">
5273
5274<h4>Spice World</h4>
5275
5276<p>Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; In non vehicula nisi, at laoreet odio. Integer et turpis vitae sem ultrices hendrerit sed eget sapien. Etiam erat dolor, finibus et est sit amet, blandit mollis nisi. Etiam laoreet vel justo vitae condimentum. Nam quis erat volutpat, venenatis lorem vitae, suscipit urna. Aenean luctus venenatis enim. Sed lacinia mi eu arcu faucibus vestibulum. Nunc eget eros libero. Nullam et sem venenatis, euismod dui vel, cursus lacus.
5277
5278</div class="npcontent">
5279
5280</li>
5281
5282
5283
5284
5285
5286
5287
5288<li>
5289
5290<div class="npcontent">
5291
5292<h4>Modern Sparrabeth</h4>
5293
5294<p>Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; In non vehicula nisi, at laoreet odio. Integer et turpis vitae sem ultrices hendrerit sed eget sapien. Etiam erat dolor, finibus et est sit amet, blandit mollis nisi. Etiam laoreet vel justo vitae condimentum. Nam quis erat volutpat, venenatis lorem vitae, suscipit urna. Aenean luctus venenatis enim. Sed lacinia mi eu arcu faucibus vestibulum. Nunc eget eros libero. Nullam et sem venenatis, euismod dui vel, cursus lacus.
5295
5296</div class="npcontent">
5297
5298
5299</li>
5300
5301
5302</ul>
5303
5304
5305</div id="page">
5306
5307
5308</div id="tabcontent">
5309</div id="ModernAlternate" class="page">
5310
5311
5312
5313
5314
5315
5316
5317
5318
5319
5320
5321
5322
5323
5324
5325
5326
5327
5328<!-- PAGE: CrossoverWizard -->
5329
5330<div id="CrossoverWizard" class="page" style="display:none;">
5331<div id="tabcontent">
5332
5333
5334<div class="npside">
5335
5336
5337<div class="sidebarbg">
5338<img src="{image:Sidebar Background}">
5339</div class="sidebarbg">
5340
5341
5342<div class="npsideinner">
5343
5344
5345<div class="npsideimgtop">
5346<img src="https://static.tumblr.com/m7qloac/Zmxq5g5x5/wizardingside02.png">
5347</div class="npsideimgtop">
5348
5349
5350
5351<div class="npsideimgbottom">
5352<img src="https://static.tumblr.com/m7qloac/HTgq5gd59/wizardingside05.png">
5353</div class="npsideimgbottom">
5354
5355
5356</div class="npsideinner">
5357</div class="npside">
5358
5359
5360<div id="page">
5361
5362
5363
5364<div class="npheader">
5365<img src="https://static.tumblr.com/m7qloac/Xwuq60req/wizardingheader01.png">
5366</div class="npheader">
5367
5368
5369<div class="npnavi">
5370<div class="dropdown">
5371
5372<button onclick="myFunction()" class="dropbtn" style="pointer-events:none;">
5373Crossover: Wizarding World
5374</button>
5375 <div id="myDropdown" class="dropdown-content">
5376
5377
5378 </div id="myDropdown" class="dropdown-content">
5379
5380</div class="dropdown">
5381</div class="npnavi">
5382
5383
5384<!-- TAB ONE -->
5385
5386<ul id="tab"><li class="active">
5387
5388<div class="npcontent">
5389
5390
5391TEXT HERE
5392
5393
5394</div class="npcontent">
5395
5396
5397</li></ul>
5398
5399
5400</div id="page">
5401
5402
5403</div id="tabcontent">
5404</div id="CrossoverWizard" class="page">
5405
5406
5407
5408
5409
5410
5411
5412
5413
5414
5415
5416
5417
5418
5419<!-- PAGE: CrossoverASOIAF -->
5420
5421<div id="CrossoverASOIAF" class="page" style="display:none;">
5422<div id="tabcontent">
5423
5424
5425<div class="npside">
5426
5427
5428<div class="sidebarbg">
5429<img src="{image:Sidebar Background}">
5430</div class="sidebarbg">
5431
5432
5433<div class="npsideinner">
5434
5435
5436<div class="npsideimgtop">
5437<img src="https://static.tumblr.com/m7qloac/21Zq5gdax/asoiafside05.png">
5438</div class="npsideimgtop">
5439
5440
5441
5442<div class="npsideimgbottom">
5443<img src="https://static.tumblr.com/m7qloac/Pzsq5gdbd/asoiafside02.png">
5444</div class="npsideimgbottom">
5445
5446
5447</div class="npsideinner">
5448</div class="npside">
5449
5450
5451<div id="page">
5452
5453
5454
5455<div class="npheader">
5456<img src="https://static.tumblr.com/m7qloac/ybtq5gdc9/asoiafheader03.png">
5457</div class="npheader">
5458
5459
5460<div class="npnavi">
5461<div class="dropdown">
5462
5463<button onclick="myFunction()" class="dropbtn" style="pointer-events:none;">
5464Crossover: A Song of Ice and Fire
5465</button>
5466 <div id="myDropdown" class="dropdown-content">
5467
5468
5469 </div id="myDropdown" class="dropdown-content">
5470
5471</div class="dropdown">
5472</div class="npnavi">
5473
5474
5475<!-- TAB ONE -->
5476
5477<ul id="tab"><li class="active">
5478
5479<div class="npcontent">
5480
5481
5482TEXT HERE
5483
5484
5485</div class="npcontent">
5486
5487
5488</li></ul>
5489
5490
5491</div id="page">
5492
5493
5494</div id="tabcontent">
5495</div id="CrossoverASOIAF" class="page">
5496
5497
5498
5499
5500
5501
5502
5503
5504
5505
5506
5507
5508
5509
5510<!-- PAGE: CrossoverVictorian -->
5511
5512<div id="CrossoverVictorian" class="page" style="display:none;">
5513<div id="tabcontent">
5514
5515
5516<div class="npside">
5517
5518
5519<div class="sidebarbg">
5520<img src="{image:Sidebar Background}">
5521</div class="sidebarbg">
5522
5523
5524<div class="npsideinner">
5525
5526
5527<div class="npsideimgtop">
5528<img src="https://static.tumblr.com/m7qloac/kvYq5ft7x/victorianside02.png">
5529</div class="npsideimgtop">
5530
5531
5532
5533<div class="npsideimgbottom">
5534<img src="https://static.tumblr.com/m7qloac/Y2wq5fsn3/victorianside01.png">
5535</div class="npsideimgbottom">
5536
5537
5538</div class="npsideinner">
5539</div class="npside">
5540
5541
5542<div id="page">
5543
5544
5545
5546<div class="npheader">
5547<img src="https://static.tumblr.com/m7qloac/abiq5ft8u/victorianheader01.png">
5548</div class="npheader">
5549
5550
5551<div class="npnavi">
5552<div class="dropdown">
5553
5554<button onclick="myFunction()" class="dropbtn" style="pointer-events:none;">
5555Crossover: Victorian
5556</button>
5557 <div id="myDropdown" class="dropdown-content">
5558
5559
5560 </div id="myDropdown" class="dropdown-content">
5561
5562</div class="dropdown">
5563</div class="npnavi">
5564
5565
5566<!-- TAB ONE -->
5567
5568<ul id="tab"><li class="active">
5569
5570<div class="npcontent">
5571
5572
5573TEXT HERE
5574
5575
5576</div class="npcontent">
5577
5578
5579</li></ul>
5580
5581
5582</div id="page">
5583
5584
5585</div id="tabcontent">
5586</div id="CrossoverVictorian" class="page">
5587
5588
5589
5590
5591
5592
5593
5594
5595
5596
5597
5598
5599
5600
5601
5602
5603<!-- PAGE: CrossoverBS -->
5604
5605<div id="CrossoverBS" class="page" style="display:none;">
5606<div id="tabcontent">
5607
5608
5609<div class="npside">
5610
5611
5612<div class="sidebarbg">
5613<img src="{image:Sidebar Background}">
5614</div class="sidebarbg">
5615
5616
5617<div class="npsideinner">
5618
5619
5620<div class="npsideimgtop">
5621<img src="https://static.tumblr.com/m7qloac/lc8q60nuw/canonside06.png">
5622</div class="npsideimgtop">
5623
5624
5625
5626<div class="npsideimgbottom">
5627<img src="https://static.tumblr.com/m7qloac/BFqq5g3xc/canonside01.png">
5628</div class="npsideimgbottom">
5629
5630
5631
5632</div class="npsideinner">
5633</div class="npside">
5634
5635
5636<div id="page">
5637
5638
5639
5640<div class="npheader">
5641<img src="https://static.tumblr.com/m7qloac/vaQq5g4w4/canonheader02.png">
5642</div class="npheader">
5643
5644
5645<div class="npnavi">
5646<div class="dropdown">
5647
5648<button onclick="myFunction()" class="dropbtn" style="pointer-events:none;">
5649Crossover: Black Sails
5650</button>
5651 <div id="myDropdown" class="dropdown-content">
5652
5653
5654 </div id="myDropdown" class="dropdown-content">
5655
5656</div class="dropdown">
5657</div class="npnavi">
5658
5659
5660<!-- TAB ONE -->
5661
5662<ul id="tab"><li class="active">
5663
5664<div class="npcontent">
5665
5666
5667TEXT HERE
5668
5669
5670</div class="npcontent">
5671
5672
5673</li></ul>
5674
5675
5676</div id="page">
5677
5678
5679</div id="tabcontent">
5680</div id="CrossoverBS" class="page">
5681
5682
5683
5684
5685
5686
5687
5688
5689
5690
5691
5692
5693
5694<!-- PAGE: CrossoverDA -->
5695
5696<div id="CrossoverDA" class="page" style="display:none;">
5697<div id="tabcontent">
5698
5699
5700<div class="npside">
5701
5702
5703<div class="sidebarbg">
5704<img src="{image:Sidebar Background}">
5705</div class="sidebarbg">
5706
5707
5708<div class="npsideinner">
5709
5710
5711<div class="npsideimgtop">
5712<img src="https://static.tumblr.com/m7qloac/lc8q60nuw/canonside06.png">
5713</div class="npsideimgtop">
5714
5715
5716
5717<div class="npsideimgbottom">
5718<img src="https://static.tumblr.com/m7qloac/BFqq5g3xc/canonside01.png">
5719</div class="npsideimgbottom">
5720
5721
5722
5723</div class="npsideinner">
5724</div class="npside">
5725
5726
5727<div id="page">
5728
5729
5730
5731<div class="npheader">
5732<img src="https://static.tumblr.com/m7qloac/vaQq5g4w4/canonheader02.png">
5733</div class="npheader">
5734
5735
5736<div class="npnavi">
5737<div class="dropdown">
5738
5739<button onclick="myFunction()" class="dropbtn" style="pointer-events:none;">
5740Crossover: Dragon Age
5741</button>
5742 <div id="myDropdown" class="dropdown-content">
5743
5744
5745 </div id="myDropdown" class="dropdown-content">
5746
5747</div class="dropdown">
5748</div class="npnavi">
5749
5750
5751<!-- TAB ONE -->
5752
5753<ul id="tab"><li class="active">
5754
5755<div class="npcontent">
5756
5757
5758TEXT HERE
5759
5760
5761</div class="npcontent">
5762
5763
5764</li></ul>
5765
5766
5767</div id="page">
5768
5769
5770</div id="tabcontent">
5771</div id="CrossoverDA" class="page">
5772
5773
5774
5775
5776
5777
5778
5779
5780
5781
5782
5783<!-- PAGE: CrossoverTHG -->
5784
5785<div id="CrossoverTHG" class="page" style="display:none;">
5786<div id="tabcontent">
5787
5788
5789<div class="npside">
5790
5791
5792<div class="sidebarbg">
5793<img src="{image:Sidebar Background}">
5794</div class="sidebarbg">
5795
5796
5797<div class="npsideinner">
5798
5799
5800<div class="npsideimgtop">
5801<img src="https://static.tumblr.com/m7qloac/ffxq5ftx6/thgside01.png">
5802</div class="npsideimgtop">
5803
5804
5805
5806<div class="npsideimgbottom">
5807<img src="https://static.tumblr.com/m7qloac/W1eq5fu2a/thgside02.png">
5808</div class="npsideimgbottom">
5809
5810
5811</div class="npsideinner">
5812</div class="npside">
5813
5814
5815<div id="page">
5816
5817
5818
5819<div class="npheader">
5820<img src="https://static.tumblr.com/m7qloac/HMsq5fts4/thgheader01.png">
5821</div class="npheader">
5822
5823
5824<div class="npnavi">
5825<div class="dropdown">
5826
5827<button onclick="myFunction()" class="dropbtn" style="pointer-events:none;">
5828Crossover: The Hunger Games
5829</button>
5830 <div id="myDropdown" class="dropdown-content">
5831
5832
5833 </div id="myDropdown" class="dropdown-content">
5834
5835</div class="dropdown">
5836</div class="npnavi">
5837
5838
5839<!-- TAB ONE -->
5840
5841<ul id="tab"><li class="active">
5842
5843<div class="npcontent">
5844
5845
5846TEXT HERE
5847
5848
5849</div class="npcontent">
5850
5851
5852</li></ul>
5853
5854
5855</div id="page">
5856
5857
5858</div id="tabcontent">
5859</div id="CrossoverTHG" class="page">
5860
5861
5862
5863
5864
5865
5866
5867
5868
5869
5870
5871
5872
5873
5874
5875<!-- PAGE: CrossoverWW -->
5876
5877<div id="CrossoverWW" class="page" style="display:none;">
5878<div id="tabcontent">
5879
5880
5881<div class="npside">
5882
5883
5884<div class="sidebarbg">
5885<img src="{image:Sidebar Background}">
5886</div class="sidebarbg">
5887
5888
5889<div class="npsideinner">
5890
5891
5892<div class="npsideimgtop">
5893<img src="https://static.tumblr.com/m7qloac/IWGq5fufs/westworldside02.png">
5894</div class="npsideimgtop">
5895
5896
5897
5898<div class="npsideimgbottom">
5899<img src="https://static.tumblr.com/m7qloac/lBvq5fuad/westworldside01.png">
5900</div class="npsideimgbottom">
5901
5902
5903</div class="npsideinner">
5904</div class="npside">
5905
5906
5907<div id="page">
5908
5909
5910
5911<div class="npheader">
5912<img src="https://static.tumblr.com/m7qloac/aS9q5fv72/westworldheader01.png">
5913</div class="npheader">
5914
5915
5916<div class="npnavi">
5917<div class="dropdown">
5918
5919<button onclick="myFunction()" class="dropbtn" style="pointer-events:none;">
5920Crossover: Westworld
5921</button>
5922 <div id="myDropdown" class="dropdown-content">
5923
5924
5925 </div id="myDropdown" class="dropdown-content">
5926
5927</div class="dropdown">
5928</div class="npnavi">
5929
5930
5931<!-- TAB ONE -->
5932
5933<ul id="tab"><li class="active">
5934
5935<div class="npcontent">
5936
5937
5938TEXT HERE
5939
5940
5941</div class="npcontent">
5942
5943
5944</li></ul>
5945
5946
5947</div id="page">
5948
5949
5950</div id="tabcontent">
5951</div id="CrossoverWW" class="page">
5952
5953
5954
5955
5956
5957
5958
5959
5960
5961
5962
5963
5964
5965
5966
5967
5968
5969
5970
5971
5972
5973<!-- PAGE: PrivatePirateWar -->
5974
5975<div id="PrivatePirateWar" class="page" style="display:none;">
5976<div id="tabcontent">
5977
5978
5979<div class="npside">
5980
5981
5982<div class="sidebarbg">
5983<img src="{image:Sidebar Background}">
5984</div class="sidebarbg">
5985
5986
5987<div class="npsideinner">
5988
5989
5990<div class="npsideimgtop">
5991<img src="https://static.tumblr.com/m7qloac/lc8q60nuw/canonside06.png">
5992</div class="npsideimgtop">
5993
5994
5995
5996<div class="npsideimgbottom">
5997<img src="https://static.tumblr.com/m7qloac/BFqq5g3xc/canonside01.png">
5998</div class="npsideimgbottom">
5999
6000
6001
6002</div class="npsideinner">
6003</div class="npside">
6004
6005
6006<div id="page">
6007
6008
6009
6010<div class="npheader">
6011<img src="https://static.tumblr.com/m7qloac/vaQq5g4w4/canonheader02.png">
6012</div class="npheader">
6013
6014
6015<div class="npnavi">
6016<div class="dropdown">
6017
6018<button onclick="myFunction()" class="dropbtn" style="pointer-events:none;">
6019Private verse: Pirate War
6020</button>
6021 <div id="myDropdown" class="dropdown-content">
6022
6023
6024 </div id="myDropdown" class="dropdown-content">
6025
6026</div class="dropdown">
6027</div class="npnavi">
6028
6029
6030<!-- TAB ONE -->
6031
6032<ul id="tab"><li class="active">
6033
6034<div class="npcontent">
6035
6036
6037TEXT HERE
6038
6039
6040</div class="npcontent">
6041
6042
6043</li></ul>
6044
6045
6046</div id="page">
6047
6048
6049</div id="tabcontent">
6050</div id="PrivatePirateWar" class="page">
6051
6052
6053
6054
6055
6056
6057
6058
6059
6060
6061
6062
6063<!-- PAGE: PrivateSoulmate -->
6064
6065<div id="PrivateSoulmate" class="page" style="display:none;">
6066<div id="tabcontent">
6067
6068
6069<div class="npside">
6070
6071
6072<div class="sidebarbg">
6073<img src="{image:Sidebar Background}">
6074</div class="sidebarbg">
6075
6076
6077<div class="npsideinner">
6078
6079
6080<div class="npsideimgtop">
6081<img src="https://static.tumblr.com/m7qloac/lc8q60nuw/canonside06.png">
6082</div class="npsideimgtop">
6083
6084
6085
6086<div class="npsideimgbottom">
6087<img src="https://static.tumblr.com/m7qloac/BFqq5g3xc/canonside01.png">
6088</div class="npsideimgbottom">
6089
6090
6091
6092</div class="npsideinner">
6093</div class="npside">
6094
6095
6096<div id="page">
6097
6098
6099
6100<div class="npheader">
6101<img src="https://static.tumblr.com/m7qloac/vaQq5g4w4/canonheader02.png">
6102</div class="npheader">
6103
6104
6105<div class="npnavi">
6106<div class="dropdown">
6107
6108<button onclick="myFunction()" class="dropbtn" style="pointer-events:none;">
6109Private verse: Soulmate AU
6110</button>
6111 <div id="myDropdown" class="dropdown-content">
6112
6113
6114 </div id="myDropdown" class="dropdown-content">
6115
6116</div class="dropdown">
6117</div class="npnavi">
6118
6119
6120<!-- TAB ONE -->
6121
6122<ul id="tab"><li class="active">
6123
6124<div class="npcontent">
6125
6126
6127TEXT HERE
6128
6129
6130</div class="npcontent">
6131
6132
6133</li></ul>
6134
6135
6136</div id="page">
6137
6138
6139</div id="tabcontent">
6140</div id="PrivateSoulmate" class="page">
6141
6142
6143
6144
6145
6146
6147
6148
6149
6150
6151
6152
6153
6154
6155
6156<!-- PAGE: PrivateApocalypse -->
6157
6158<div id="PrivateApocalypse" class="page" style="display:none;">
6159<div id="tabcontent">
6160
6161
6162<div class="npside">
6163
6164
6165<div class="sidebarbg">
6166<img src="{image:Sidebar Background}">
6167</div class="sidebarbg">
6168
6169
6170<div class="npsideinner">
6171
6172
6173<div class="npsideimgtop">
6174<img src="https://static.tumblr.com/m7qloac/lajq5fwt0/apocalypseside03.png">
6175</div class="npsideimgtop">
6176
6177
6178
6179<div class="npsideimgbottom">
6180<img src="https://static.tumblr.com/m7qloac/ALmq5fwaj/apocalypseside02.png">
6181</div class="npsideimgbottom">
6182
6183
6184</div class="npsideinner">
6185</div class="npside">
6186
6187
6188<div id="page">
6189
6190
6191
6192
6193<div class="npheader">
6194<img src="https://static.tumblr.com/m7qloac/RdPq5fw1o/apocalypseheader01.png">
6195</div class="npheader">
6196
6197
6198<div class="npnavi">
6199<div class="dropdown">
6200
6201<button onclick="myFunction()" class="dropbtn" style="pointer-events:none;">
6202Private verse: Apocalypse
6203</button>
6204 <div id="myDropdown" class="dropdown-content">
6205
6206
6207 </div id="myDropdown" class="dropdown-content">
6208
6209</div class="dropdown">
6210</div class="npnavi">
6211
6212
6213<!-- TAB ONE -->
6214
6215<ul id="tab"><li class="active">
6216
6217<div class="npcontent">
6218
6219
6220TEXT HERE
6221
6222
6223</div class="npcontent">
6224
6225
6226</li></ul>
6227
6228
6229</div id="page">
6230
6231
6232</div id="tabcontent">
6233</div id="PrivateApocalypse" class="page">
6234
6235
6236
6237
6238
6239
6240
6241
6242
6243
6244
6245
6246
6247
6248
6249
6250<!-- PAGE: PrivatePearl -->
6251
6252<div id="PrivatePearl" class="page" style="display:none;">
6253<div id="tabcontent">
6254
6255
6256<div class="npside">
6257
6258
6259<div class="sidebarbg">
6260<img src="{image:Sidebar Background}">
6261</div class="sidebarbg">
6262
6263
6264<div class="npsideinner">
6265
6266
6267<div class="npsideimgtop">
6268<img src="https://static.tumblr.com/m7qloac/lc8q60nuw/canonside06.png">
6269</div class="npsideimgtop">
6270
6271
6272
6273<div class="npsideimgbottom">
6274<img src="https://static.tumblr.com/m7qloac/BFqq5g3xc/canonside01.png">
6275</div class="npsideimgbottom">
6276
6277
6278
6279</div class="npsideinner">
6280</div class="npside">
6281
6282
6283<div id="page">
6284
6285
6286
6287<div class="npheader">
6288<img src="https://static.tumblr.com/m7qloac/vaQq5g4w4/canonheader02.png">
6289</div class="npheader">
6290
6291
6292<div class="npnavi">
6293<div class="dropdown">
6294
6295<button onclick="myFunction()" class="dropbtn" style="pointer-events:none;">
6296Private verse: Humanised Pearl
6297</button>
6298 <div id="myDropdown" class="dropdown-content">
6299
6300
6301 </div id="myDropdown" class="dropdown-content">
6302
6303</div class="dropdown">
6304</div class="npnavi">
6305
6306
6307<!-- TAB ONE -->
6308
6309<ul id="tab"><li class="active">
6310
6311<div class="npcontent">
6312
6313
6314TEXT HERE
6315
6316
6317</div class="npcontent">
6318
6319
6320</li></ul>
6321
6322
6323</div id="page">
6324
6325
6326</div id="tabcontent">
6327</div id="PrivatePearl" class="page">
6328
6329
6330
6331
6332
6333
6334
6335
6336
6337
6338</div id="container">
6339
6340
6341<!-- CREDIT -->
6342
6343<div id="credit">
6344<div style="width:105px;margin-right:10px;">
6345
6346
6347<a href="http://iniziare.tumblr.com/post/183826974792/base-theme-viper-preview-download-code" target="blank">
6348<span>S.</span>MADE BY SAE.</a>
6349
6350
6351</div style>
6352</div id="credit">
6353
6354</body>
6355</html>