littlemisswhoever

Theme: armorscale

Jul 1st, 2018
181
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 50.63 KB | None | 0 0
  1. <!DOCTYPE html>
  2.  
  3. <!-- (BASE) THEME BY INIZIARE (LUMENRECTIS / KHRUSEOS) -->
  4.  
  5.  
  6.  
  7.  
  8. <html>
  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. <!-- SCRIPT: TOOLTIP -->
  20.  
  21.  
  22. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  23. <script src="http://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js"></script>
  24. <script>
  25. (function($){
  26. $(document).ready(function(){
  27. $("a[title]").style_my_tooltips({
  28. tip_follows_cursor:true,
  29. tip_delay_time:90,
  30. tip_fade_speed:600,
  31. attribute:"title"
  32. });
  33. });
  34. })(jQuery);
  35. </script>
  36.  
  37.  
  38.  
  39. <!-- SCRIPT: POPUPS -->
  40.  
  41. <script type="text/javascript"
  42. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  43. <script>
  44. $(document).ready(function() {
  45. //
  46. $('a.poplight[href^=#]').click(function() {
  47. var popID = $(this).attr('rel'); //Get Popup Name
  48. var popURL = $(this).attr('href'); //Get Popup href to define size
  49. var query= popURL.split('?');
  50. var dim= query[1].split('&');
  51. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  52. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"></a>');
  53. var popMargTop = ($('#' + popID).height() + 80) / 2;
  54. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  55. //Apply Margin to Popup
  56. $('#' + popID).css({
  57. 'margin-top' : -popMargTop,
  58. 'margin-left' : -popMargLeft
  59. });
  60. $('body').append('<div id="fade"></div>');
  61. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'})
  62. return false;
  63. });
  64. $('a.close, #fade').live('click', function() {
  65. $('#fade , .popup_block').fadeOut(function() {
  66. $('#fade, a.close').remove(); //fade them both out
  67. });
  68. return false;
  69. });
  70. });
  71. </script>
  72.  
  73.  
  74.  
  75.  
  76. <!-- SCRIPT: jQuery -->
  77.  
  78. <script src="//ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
  79.  
  80.  
  81.  
  82.  
  83. <!-- SCRIPT: AUDIO PLAYER -->
  84.  
  85. <script>
  86. $(document).ready(function() {
  87. $('iframe.tumblr_audio_player').load( function() {
  88. $('iframe.tumblr_audio_player').contents().find("head")
  89. .append($("<style type='text/css'> .audio-player{background:#000000 !important; color:#ffffff !important;} </style>"));
  90. });
  91. });
  92. </script>
  93.  
  94.  
  95.  
  96.  
  97. <!-- SCRIPT: POPUP TABS -->
  98.  
  99. <script>$(document).ready(function(){
  100. $("ul#tabs li").click(function(e){
  101. if (!$(this).hasClass("active")) {
  102. var tabNum = $(this).index();
  103. var nthChild = tabNum+1;
  104. $("ul#tabs li.active").removeClass("active");
  105. $(this).addClass("active");
  106. $("ul#tab li.active").removeClass("active");
  107. $("ul#tab li:nth-child("+nthChild+")").addClass("active");}});});</script>
  108.  
  109.  
  110.  
  111.  
  112. <!-- CUSTOM FONTS -->
  113.  
  114. <link href="https://fonts.googleapis.com/css?family=Frank+Ruhl+Libre" rel="stylesheet">
  115.  
  116.  
  117. <link rel="stylesheet" href="CUSTOMFONTHERE">
  118.  
  119.  
  120.  
  121.  
  122.  
  123.  
  124. <!-- META LINES -->
  125.  
  126.  
  127. <meta name="text:Font" content="'Frank Ruhl Libre'"/>
  128. <meta name="text:Font Size" content="10px"/>
  129. <meta name="text:Custom Capitals Font" content="'customfonthere'">
  130.  
  131. <meta name="color:Italic" content="#ffffff" />
  132. <meta name="color:Links Hover" content="#ffffff" />
  133.  
  134.  
  135.  
  136. <meta name="if:Text Wrapping" content="1"/>
  137. <meta name="if:Boxed Blockquotes" content="1"/>
  138. <meta name="if:Icon Borders" content="1"/>
  139. <meta name="if:Bigger Tags on Hover" content="0"/>
  140. <meta name="if:First Letter Styling" content="0"/>
  141.  
  142.  
  143.  
  144. <style type="text/css">
  145.  
  146.  
  147.  
  148.  
  149. /* SCROLLBAR */
  150.  
  151. ::-webkit-scrollbar {
  152. background:transparent;
  153. height: 0px;
  154. display:none;
  155. width: 0px; /* remove scrollbar space */
  156. -ms-overflow-style: none; // IE 10+
  157. overflow: -moz-scrollbars-none; // Firefox
  158. }
  159.  
  160.  
  161. ::-webkit-scrollbar-thumb {
  162. background:transparent;
  163. }
  164.  
  165.  
  166. /* TEXT SELECTION */
  167.  
  168. ::selection {background: #000000; color:#ffffff;}
  169. ::-moz-selection {background: #000000; color:#ffffff;}
  170.  
  171.  
  172.  
  173.  
  174.  
  175. /* TOOLTIP */
  176.  
  177.  
  178. #s-m-t-tooltip {
  179. z-index:999999;
  180. max-width:350px;
  181. margin-left:10px;
  182. margin-top:10px;
  183. font-weight:lighter;
  184. background-color:#000000;
  185. background:rgba(0,0,0,1);
  186. border:1px solid #1a1a1a;
  187. padding-top:6px;
  188. padding-bottom:6px;
  189. padding-left:16px;
  190. padding-right:16px;
  191. font-family:calibri;
  192. font-style:normal;
  193. font-weight:700;
  194. font-size:10px;
  195. text-shadow: 0px 0px 1px #000;
  196. color: #e8e8e8;
  197. text-transform:uppercase;
  198. letter-spacing:0px;
  199. -webkit-box-shadow: 0px 1px 19px 4px rgba(0,0,0,0.75);
  200. -moz-box-shadow: 0px 1px 19px 4px rgba(0,0,0,0.75);
  201. box-shadow: 0px 1px 19px 4px rgba(0,0,0,0.75);
  202. }
  203.  
  204.  
  205.  
  206.  
  207.  
  208.  
  209. /* FOUNDATION */
  210.  
  211.  
  212. body {
  213. background-image:url('https://i.imgur.com/xbbtAYZ.png');
  214. background-attachment:fixed;
  215. background-repeat:no-repeat;
  216. background-position:top left;
  217. background-color:#000000;
  218. color:#c6c6c6;
  219. font-size:{text:Font Size};
  220. line-height:{text:Line Height}
  221. word-spacing:-0.5px;
  222. color:{color:Body Text};
  223. font-family:{text:Font};
  224. word-wrap: break-word;
  225. }
  226.  
  227.  
  228. body a {
  229. font-size:12px;
  230. color:#cdb6af;
  231. font-weight:bold;
  232. text-decoration:none!important;
  233. -moz-transition-duration:1s;
  234. -webkit-transition-duration:1s;
  235. -o-transition-duration:1s;
  236. }
  237.  
  238. body a:hover {
  239. color:{color:links hover};
  240. -moz-transition-duration:1s;
  241. -webkit-transition-duration:1s;
  242. -o-transition-duration:1s;
  243. }
  244.  
  245.  
  246.  
  247.  
  248.  
  249. /* BLOCKQUOTES */
  250.  
  251. {block:IfBoxedBlockquotes}
  252. blockquote {
  253. padding-left:24px;
  254. padding-right:24px;
  255. padding-top:14px;
  256. padding-bottom:12px;
  257. margin-top:12px;
  258. text-align:justify;
  259. margin-bottom:24px;
  260. margin-left:-25px;
  261. margin-right:-25px;
  262. border-left:1px solid #141414;
  263. border-right:1px solid #141414;
  264. border-bottom:1px solid #141414;
  265. border-top:1px solid #141414;
  266. background-color:transparent;
  267. word-wrap: break-word!important;
  268. }
  269.  
  270.  
  271. blockquote blockquote {
  272. margin-left:0px;
  273. margin-right:0px;
  274. }
  275. {/block:IfBoxedBlockquotes}
  276.  
  277.  
  278. {block:IfNotBoxedBlockquotes}
  279. blockquote {
  280. padding-left:24px;
  281. margin-top:12px;
  282. margin-left:0px;
  283. margin-right:0px;
  284. text-align:justify;
  285. margin-bottom:24px;
  286. border-left:1px solid #141414;
  287. background-color:transparent;
  288. word-wrap: break-word!important;
  289. }
  290.  
  291.  
  292.  
  293. blockquote blockquote {
  294. margin-top:15px;
  295. margin-bottom:15px;
  296. }
  297.  
  298.  
  299. blockquote img {
  300. max-width:386px!important;
  301. height:auto;
  302. }
  303. {/block:IfNotBoxedBlockquotes}
  304.  
  305.  
  306.  
  307.  
  308.  
  309. /* FONT-RELATED */
  310.  
  311.  
  312. small, sub, sup {
  313. font-size:{text:Font Size};
  314. }
  315.  
  316.  
  317. big {
  318. font-size:120%;
  319. }
  320.  
  321.  
  322. b, bold, strong {
  323. font-size:10px;
  324. text-transform:uppercase;
  325. font-family: calibri;
  326. font-weight:bold;
  327. color:#3b4e2b;
  328. padding-right:1px;
  329. padding-left:1px;
  330. text-shadow: 0px 0px 1px rgba(77, 18, 19, 0.85);
  331. }
  332.  
  333. em, i, italic {
  334. font-family:calibri;
  335. font-style:normal;
  336. font-weight:700;
  337. font-size:10px;
  338. line-height:10px;
  339. text-shadow: 0px 0px 1px #000;
  340. color: {color:Italic};
  341. text-transform:uppercase;
  342. }
  343.  
  344.  
  345. u {
  346. text-decoration:none!important;
  347. }
  348.  
  349.  
  350. {block:ifFirstLetterStyling}
  351. u, u a {
  352. background-color: #000000;
  353. border: 1px solid #151515;
  354. font-family:'Frank Ruhl Libre', serif;
  355. color: #cecece;
  356. text-decoration:none!important;
  357. font-style:normal!important;
  358. font-weight:100!important;
  359. text-transform:uppercase!important;
  360. float: left;
  361. height:50px;
  362. width:50px;
  363. font-size: 36px;
  364. margin-right: 11px;
  365. position: relative;
  366. text-align: center;
  367. vertical-align: middle;
  368. line-height: 50px;
  369. }
  370. {/block:ifFirstLetterStyling}
  371.  
  372.  
  373.  
  374. pre {
  375. font-weight:lighter;
  376. text-transform:uppercase;
  377. color: #d1d1d1;
  378. line-height:155%;
  379. font-weight:lighter!important;
  380. color:#e6e6e6;
  381. font-size:8.6px;
  382. letter-spacing:0.6px;
  383. white-space: pre-wrap;
  384. white-space: -moz-pre-wrap;
  385. white-space: -pre-wrap;
  386. white-space: -o-pre-wrap;
  387. word-wrap: break-word;
  388. }
  389.  
  390.  
  391. pre a {
  392. color:#cdb6af;
  393. -moz-transition-duration:2s;
  394. -webkit-transition-duration:2s;
  395. -o-transition-duration:2s;
  396. }
  397.  
  398.  
  399.  
  400. h1 {
  401. word-spacing:-0.5px;
  402. font-size:12px;
  403. color: #ffffff;
  404. font-weight:bold;
  405. font-family:calibri;
  406. margin-bottom:24px;
  407. text-align:left!important;
  408. text-transform:uppercase;
  409. }
  410.  
  411.  
  412.  
  413. h1 a {
  414. font-weight:bold;
  415. color: #d1d1d1!important;
  416. }
  417.  
  418.  
  419.  
  420. h2 {
  421. font-family: calibri, sans-serif;
  422. font-size:13.4px;
  423. text-transform:uppercase!important;
  424. color:{color:bold};
  425. letter-spacing:-0.4px;
  426. }
  427.  
  428.  
  429.  
  430. h2 a {
  431. font-family: calibri, sans-serif;
  432. font-size:13.4px!important;
  433. text-transform:uppercase!important;
  434. color:#cdb6af;
  435. letter-spacing:-0.4px;
  436. }
  437.  
  438.  
  439.  
  440. h3 {
  441. text-transform:uppercase;
  442. font-family: 'Josefin Sans', sans-serif;
  443. font-size:10.5px;
  444. text-transform:uppercase;
  445. letter-spacing:0px;
  446. word-spacing:-1px;
  447. color: #dadada;
  448. text-shadow:1px 1px 0 #000;
  449. text-align:center;
  450. margin-bottom:6px;
  451. padding-right:10px;
  452. padding-left:10px;
  453. background-color:#000000;
  454. border:1px solid #171717;
  455. background-image:url('');
  456. font-weight:bold!important;
  457. text-transform:uppercase;
  458. padding-top:12px;
  459. padding-bottom:12px;
  460. }
  461.  
  462.  
  463.  
  464. h4 {
  465. background-image:url('');
  466. background-repeat:repeat;
  467. background-attachment:fixed;
  468. border:1px solid #171717;
  469. margin-bottom:24px;
  470. margin-top:24px;
  471. padding-top:12px;
  472. padding-bottom:12px;
  473. width:479px;
  474. margin-left:-26px;
  475. text-align:center;
  476. font-family:calibri;
  477. font-style:normal;
  478. font-weight:bold;
  479. font-size:10px;
  480. line-height:10px;
  481. color: #ffffff;
  482. text-transform:uppercase;
  483. }
  484.  
  485.  
  486.  
  487. h4 a {
  488. font-family:calibri;
  489. font-style:normal;
  490. font-weight:700;
  491. font-size:10px;
  492. line-height:10px;
  493. text-shadow: 0px 0px 1px #000;
  494. color:#cdb6af;
  495. }
  496.  
  497.  
  498.  
  499. header {
  500. position:fixed!important;
  501. border: 1px solid #151515;
  502. background-color:#030303;
  503. letter-spacing:0px;
  504. word-spacing:-0.5px;
  505. font-size:11px;
  506. color: #ffffff;
  507. font-family:calibri;
  508. padding-bottom:0px;
  509. padding-top:7px;
  510. margin-top:-55px;
  511. font-weight:bold;
  512. margin-bottom:24px!important;
  513. width:478px;
  514. height:24px;
  515. margin-left:-25px;
  516. text-align:center!important;
  517. text-transform:uppercase;
  518. z-index:9999999;
  519. }
  520.  
  521.  
  522.  
  523.  
  524. /* DESCRIPTION */
  525.  
  526. .bottombox {
  527. position:fixed;
  528. width:478px;
  529. left:142px;
  530. top:489px;
  531. }
  532.  
  533.  
  534.  
  535. .description {
  536. height:50px;
  537. max-height:50px;
  538. padding-left:24px;
  539. padding-right:24px;
  540. border-top:18px solid transparent;
  541. padding-bottom:18px;
  542. line-height:14px;
  543. margin-top:5px;
  544. text-align:justify;
  545. overflow-y:scroll;
  546. }
  547.  
  548.  
  549. .description:first-letter {
  550. background-color: #000000;
  551. border: 1px solid #151515;
  552. font-family:'Frank Ruhl Libre', serif;
  553. color: #cecece;
  554. text-decoration:none!important;
  555. font-style:normal!important;
  556. font-weight:100!important;
  557. text-transform:uppercase!important;
  558. float: left;
  559. font-size: 36px;
  560. margin-right: 11px;
  561. position: relative;
  562. text-align: center;
  563. vertical-align: middle;
  564. line-height: 46px;
  565. padding-left:13px;
  566. padding-right:13px;
  567. }
  568.  
  569.  
  570. .navi {
  571. width:466px;
  572. height:19px;
  573. font-size:12px;
  574. border-top:1px solid #191919;
  575. border-bottom:1px solid #191919;
  576. border-left:1px solid #151515;
  577. border-right:1px solid #151515;
  578. background-color:#030303;
  579. text-align: center;
  580. letter-spacing:0.3px;
  581. left:141px;
  582. top:606px!important;
  583. font-family:calibri!important;
  584. padding:6px;
  585. position:fixed;
  586. }
  587.  
  588.  
  589.  
  590. .navi a {
  591. font-family:calibri;
  592. font-size:11px;
  593. padding-top:9px!important;
  594. letter-spacing:0.2px;
  595. text-decoration:none!important;
  596. color:#cdb6af;
  597. margin-left:24px;
  598. }
  599.  
  600.  
  601. .navi b {
  602. color:#3b4e2b!important;
  603. }
  604.  
  605.  
  606.  
  607.  
  608.  
  609. /* POPUPS: GENERAL */
  610.  
  611.  
  612. .popup_block {
  613. display:none;
  614. background-color:#000000;
  615. height:300px!important;
  616. top:305px;
  617. left:397px!important;
  618. opacity:1;
  619. position:fixed;
  620. z-index:9999999;
  621. padding-left:24px!important;
  622. padding-right:24px!important;
  623. outline:1px solid #151515;
  624. border-top:24px solid #000000;
  625. border-bottom:24px solid #000000;
  626. overflow-y:scroll;
  627. text-align:justify;
  628. overflow-x:hidden;
  629. }
  630.  
  631.  
  632.  
  633.  
  634.  
  635. .popup_block a {
  636. margin-right:0px;
  637. vertical-align:top;
  638. font-family: calibri, sans-serif;
  639. font-size:8px;
  640. color:#cdb6af;
  641. font-weight:lighter!important;
  642. padding-bottom:3px;
  643. position: relative;
  644. text-decoration:none;
  645. text-transform:uppercase;
  646. }
  647.  
  648.  
  649.  
  650. *html #fade {
  651. position: absolute;
  652. }
  653.  
  654.  
  655.  
  656. *html .popup_block {
  657. position: absolute;
  658. }
  659.  
  660.  
  661.  
  662. #fade {
  663. display:none;
  664. position:fixed;
  665. left:0px;
  666. top:0px;
  667. width:100%;
  668. height:100%;
  669. z-index:9;
  670. background:#000;
  671. opacity:0;
  672. }
  673.  
  674.  
  675.  
  676. #intro {
  677. margin-top:4px;
  678. margin-bottom:24px;
  679. border:1px solid #151515;
  680. padding-left:24px;
  681. padding-right:24px;
  682. padding-top:14px;
  683. padding-bottom:14px;
  684. {block:ifFirstLetterStyling}
  685. min-height:42px;
  686. {/block:ifFirstLetterStyling}
  687. }
  688.  
  689.  
  690.  
  691.  
  692.  
  693.  
  694. /* POPUPS: TABS */
  695.  
  696. #headerbar{
  697. left:50%;
  698. top:50%;
  699. overflow:scroll;
  700. text-align:justify;
  701. color:#eee;
  702. font-family:calibri;
  703. font-size:12px;
  704. }
  705.  
  706. #tabbar{
  707. left:50%;
  708. top:50%;
  709. margin-left:
  710. overflow: scroll;
  711. text-align:justify;
  712. color:#222;
  713. font-family:calibri;
  714. font-size:12px;
  715. }
  716.  
  717. ul#tabs {text-align: center;}
  718. ul#tabs li {
  719. display: inline-block;
  720. background-repeat:repeat;
  721. background-attachment:fixed;
  722. border:1px solid #171717; /* INACTIVE TAB */
  723. width:158px;
  724. font-weight:bold;
  725. text-align:center;
  726. font-family:calibri;
  727. font-style:normal;
  728. font-weight:700;
  729. font-size:10px;
  730. line-height:10px;
  731. text-shadow: 0px 0px 1px #000;
  732. padding: 10px 10px;
  733. margin-bottom: 4px;
  734. cursor:pointer;
  735. }
  736.  
  737. ul#tabs li.active {
  738. display: inline-block;
  739. padding:9px;
  740. text-align:center;
  741. font-family:calibri;
  742. font-style:normal;
  743. font-weight:700;
  744. font-size:10px;
  745. line-height:10px;
  746. text-shadow: 0px 0px 1px #000;
  747. background:#000000;
  748. font-weight:bold;
  749. font-size:10px;
  750. border:1px solid #171717; /* ACTIVE TAB */
  751. color:#e6e6e6;
  752. padding: 10px 10px;
  753. margin-bottom: 4px;
  754. cursor:pointer;
  755. }
  756.  
  757. ul#tab, ul#tabs{
  758. list-style-type:none;
  759. margin:0px;padding:0px;
  760. }
  761.  
  762. ul#tab li.active {
  763. display: block;
  764. }
  765.  
  766. ul#tab li {
  767. display: none;
  768. }
  769.  
  770.  
  771.  
  772.  
  773.  
  774. /* POPUPS: NAVIGATION */
  775.  
  776.  
  777. #nvroom {
  778. width:434px;
  779. }
  780.  
  781.  
  782.  
  783. .nvlinks {
  784. margin-left:-2px;
  785. padding-top:0px;
  786. padding-bottom:0px;
  787. text-align:center;
  788. }
  789.  
  790.  
  791.  
  792. .nvlinks a {
  793. display:inline-block;
  794. font-family: calibri, sans-serif;
  795. font-weight:lighter!important;
  796. width: 211px;
  797. height: 10px;
  798. margin-right:2px;
  799. margin-bottom:4px;
  800. padding-top:9px;
  801. padding-bottom:9px!important;
  802. text-align:center;
  803. background:#000000;
  804. border: 1px solid #151515;
  805. color:#e6e6e6;
  806. font-size:8.6px;
  807. letter-spacing:0.6px;
  808. cursor: pointer;
  809. z-index:2;
  810. }
  811.  
  812.  
  813.  
  814. .nvlinks a:before {
  815. content: '';
  816. display: block;
  817. position: absolute;
  818. left: 0;
  819. bottom: 0;
  820. height: 30px;
  821. width: 0;
  822. transition: width 0s ease;
  823. background 1.5s ease;
  824. z-index:1;
  825. }
  826.  
  827.  
  828.  
  829. .nvlinks a:after {
  830. content: '';
  831. display: block;
  832. position: absolute;
  833. right: 0;
  834. bottom: 0;
  835. height: 30px;
  836. width: 0;
  837. background: rgba(16, 16, 16, 0.5); /* 50% opaque blue */
  838. transition: width 1.5s ease;
  839. z-index:1;
  840. }
  841.  
  842.  
  843.  
  844. .nvlinks a:hover:before {
  845. width: 100%;
  846. background: rgba(16, 16, 16, 0.5); /* 50% opaque blue */
  847. transition: width 1.5s ease;
  848. }
  849.  
  850.  
  851.  
  852. .nvlinks a:hover:after {
  853. width: 100%;
  854. background: transparent;
  855. transition: all 0s ease;
  856. }
  857.  
  858.  
  859.  
  860.  
  861.  
  862.  
  863.  
  864. /* POSTS: GENERAL */
  865.  
  866.  
  867. #container {
  868. position:fixed;
  869. height:553px;
  870. width:430px;
  871. left:670px;
  872. top:84px;
  873. background-color:#000000;
  874. overflow-y:scroll;
  875. padding-left:24px;
  876. padding-right:24px;
  877. z-index:9999;
  878. border:1px solid #151515!important;
  879. }
  880.  
  881.  
  882.  
  883. .containerheadertop {
  884. position:fixed;
  885. width:478px;
  886. height:31px;
  887. background-color:#030303;
  888. border:1px solid #151515;
  889. text-align: center;
  890. margin-left:-25px;
  891. margin-top:-1px;
  892. z-index:99999;
  893. }
  894.  
  895.  
  896.  
  897. #containertopspace {
  898. position:fixed;
  899. width:478px;
  900. height:31px;
  901. background-color:transparent;
  902. margin-left:-24px;
  903. border-bottom:24px solid #000000;
  904. margin-top:-1px;
  905. z-index:999;
  906. }
  907.  
  908.  
  909.  
  910. .containerheaderbottom {
  911. position:fixed;
  912. width:478px;
  913. height:31px;
  914. background-color:#030303;
  915. border:1px solid #151515;
  916. text-align: center;
  917. left:671px;
  918. top:606px;
  919. margin-left:-1px;
  920. z-index:9999999;
  921. }
  922.  
  923.  
  924.  
  925. #containerbottomspace {
  926. position:fixed;
  927. left:695px;
  928. top:574px;
  929. width:478px;
  930. height:25px;
  931. background-color:#000000;
  932. text-align: center;
  933. margin-left:-24px;
  934. margin-top:7px;
  935. z-index:999999;
  936. }
  937.  
  938.  
  939.  
  940.  
  941. .posts {
  942. width:430px;
  943. padding-right:25px;
  944. padding-left:25px;
  945. margin-left:-25px;
  946. word-wrap: break-word;
  947. text-align:justify;
  948. line-height:14px;
  949. }
  950.  
  951.  
  952.  
  953.  
  954. .posts a {
  955. font-family: calibri;
  956. text-transform:uppercase;
  957. font-size:9px;
  958. font-weight:bold!important;
  959. -moz-transition-duration:2s;
  960. -webkit-transition-duration:2s;
  961. -o-transition-duration:2s;
  962. }
  963.  
  964. .posts a:hover {
  965. color:{color:links hover};
  966. -moz-transition-duration:2s;
  967. -webkit-transition-duration:2s;
  968. -o-transition-duration:2s;
  969. }
  970.  
  971.  
  972. .posts img {
  973. margin-top:14px;
  974. max-width:410px;
  975. height:auto;
  976. }
  977.  
  978.  
  979.  
  980.  
  981.  
  982.  
  983.  
  984.  
  985. /* TEXT-WRAPPING AROUND ICONS/IMAGES */
  986.  
  987.  
  988. #wrap img {
  989. margin-top:0px!important;
  990. margin-bottom:0px!important;
  991. padding-right:3px;
  992. padding-bottom:3px;
  993. {block:IfTextWrapping}
  994. float:left;
  995. margin-right:14px;
  996. {/block:IfTextWrapping}
  997. {block:ificonborders}
  998. padding:9px;
  999. border:1px solid #151515;
  1000. {/block:ificonborders}
  1001. -webkit-filter: brightness(1) contrast(1) saturate(1);
  1002. }
  1003.  
  1004.  
  1005. {block:IfTextWrapping}
  1006. #wrap blockquote img {
  1007. margin-top:8px!important;
  1008. margin-bottom:0px!important;
  1009. margin-left:14px;
  1010. margin-right:0px!important;
  1011. float:right;
  1012. }
  1013. {/block:IfTextWrapping}
  1014.  
  1015.  
  1016.  
  1017.  
  1018.  
  1019. /* POSTS: TEXT */
  1020.  
  1021. #text {
  1022. border:1px solid #151515;
  1023. padding-left:24px;
  1024. padding-right:24px;
  1025. padding-top:24px;
  1026. padding-bottom:0px;
  1027. margin-left:-25px;
  1028. margin-right:-25px;
  1029. margin-bottom:-25px;
  1030. margin-top:30px;
  1031. }
  1032.  
  1033.  
  1034. #textbody {
  1035. {block:permalinkpage}
  1036. margin-top:-24px;
  1037. padding-top:0px;
  1038. {/block:permalinkpage}
  1039. margin-top:-24px;
  1040. padding-top:14px;
  1041. padding-bottom:14px;
  1042.  
  1043. }
  1044.  
  1045.  
  1046.  
  1047.  
  1048.  
  1049. /* POSTS: PHOTO/PHOTOSETS */
  1050.  
  1051. #psingle {
  1052. position:relative;
  1053. z-index:99999999!important;
  1054. margin-top:-1px;
  1055. margin-bottom:-30px;
  1056. margin-left:-26px;
  1057. margin-right:-25px;
  1058. border-top:1px solid #2e2e2e;
  1059. -webkit-filter: brightness(.75) contrast(1.1) saturate(0.75);
  1060. -webkit-transition: all 0.9s ease-in-out;
  1061. -moz-transition: all 0.9s ease-in-out;
  1062. -o-transition: all 0.9s ease-in-out;
  1063. -ms-transition: all 0.9s ease-in-out;
  1064. transition: all 0.9s ease-in-out;
  1065. }
  1066.  
  1067.  
  1068.  
  1069. #psingle:hover {
  1070. -webkit-filter: brightness(.75) contrast(1.1) saturate(0.75);
  1071. -webkit-transition: all 0.9s ease-in-out;
  1072. -moz-transition: all 0.9s ease-in-out;
  1073. -o-transition: all 0.9s ease-in-out;
  1074. -ms-transition: all 0.9s ease-in-out;
  1075. transition: all 0.9s ease-in-out;
  1076. }
  1077.  
  1078.  
  1079.  
  1080. #pset {
  1081. {block:permalinkpage}
  1082. margin-top:-2px!important;
  1083. {/block:permalinkpage}
  1084. position:relative;
  1085. z-index:99999999!important;
  1086. width: 480px;
  1087. margin-top:-1px!important;
  1088. margin-bottom:-28px;
  1089. margin-left:-24px;
  1090. border-top:1px solid #2e2e2e;
  1091. -webkit-filter: brightness(.80) contrast(1.1) saturate(0.75);
  1092. -webkit-transition: all 0.9s ease-in-out;
  1093. -moz-transition: all 0.9s ease-in-out;
  1094. -o-transition: all 0.9s ease-in-out;
  1095. -ms-transition: all 0.9s ease-in-out;
  1096. transition: all 0.9s ease-in-out;
  1097. }
  1098.  
  1099.  
  1100.  
  1101. #pset:hover {
  1102. -webkit-filter: brightness(.75) contrast(1.1) saturate(0.75);
  1103. -webkit-transition: all 0.9s ease-in-out;
  1104. -moz-transition: all 0.9s ease-in-out;
  1105. -o-transition: all 0.9s ease-in-out;
  1106. -ms-transition: all 0.9s ease-in-out;
  1107. transition: all 0.9s ease-in-out;
  1108. }
  1109.  
  1110.  
  1111.  
  1112.  
  1113. #pcaption {
  1114. border-top:1px solid #151515;
  1115. margin-top:24px;
  1116. margin-left:-24px;
  1117. margin-right:-24px;
  1118. padding-left:24px;
  1119. padding-right:24px;
  1120. }
  1121.  
  1122.  
  1123.  
  1124. #pcaption a {
  1125. font-size:10px;
  1126. }
  1127.  
  1128.  
  1129.  
  1130.  
  1131.  
  1132.  
  1133. /* POSTS: QUOTE */
  1134.  
  1135. #quotebox {
  1136. border:1px solid #151515;
  1137. padding-left:24px;
  1138. padding-right:24px;
  1139. padding-top:24px;
  1140. padding-bottom:0px;
  1141. margin-left:-25px;
  1142. margin-right:-25px;
  1143. margin-bottom:-26px;
  1144. margin-top:30px;
  1145. }
  1146.  
  1147.  
  1148.  
  1149. #quote {
  1150. text-align:justify;
  1151. font-size:14px;
  1152. padding-top:0px;
  1153. padding-bottom:24px;
  1154. line-height:165%;
  1155. letter-spacing:-0.6px;
  1156. min-height:52px;
  1157. }
  1158.  
  1159.  
  1160.  
  1161. #quote:first-letter {
  1162. background-color: #000000;
  1163. border: 1px solid #151515;
  1164. font-family:{text:Custom Capitals Font}, 'Frank Ruhl Libre', serif;
  1165. color:{color:First Letter}!important;
  1166. text-decoration:none!important;
  1167. font-style:normal!important;
  1168. font-weight:100!important;
  1169. text-transform:uppercase!important;
  1170. float: left;
  1171. font-size: 42px;
  1172. margin-right: 11px;
  1173. margin-top: 0px;
  1174. padding-right: 13px;
  1175. padding-top:17px;
  1176. padding-bottom:17px;
  1177. padding-left:13px;
  1178. }
  1179.  
  1180.  
  1181.  
  1182. .source {
  1183. font-family:calibri;
  1184. font-weight:bold;
  1185. text-align:left;
  1186. font-size:10px;
  1187. color:#3b4e2b;
  1188. text-transform:uppercase;
  1189. border:1px solid #151515;
  1190. margin-top:-1px;
  1191. padding-top:12px;
  1192. padding-bottom:12px;
  1193. padding-right:24px;
  1194. padding-left:24px;
  1195. margin-left:-25px;
  1196. margin-right:-25px;
  1197. background-color:#030303;
  1198. }
  1199.  
  1200.  
  1201.  
  1202.  
  1203.  
  1204.  
  1205. /* POSTS: LINK */
  1206.  
  1207. #linkpost {
  1208. margin-right:-25px;
  1209. margin-left:-25px!important;
  1210. {block:permalinkpage}
  1211. margin-top:0px;
  1212. {/block:permalinkpage}
  1213. padding-top:0px;
  1214. margin-bottom:-25px;
  1215. }
  1216.  
  1217.  
  1218.  
  1219. #link {
  1220. margin-top:32px;
  1221. border:1px solid #151515;
  1222. padding:24px;
  1223. }
  1224.  
  1225.  
  1226. #link a {
  1227. font-size:12px;
  1228. }
  1229.  
  1230.  
  1231.  
  1232.  
  1233.  
  1234.  
  1235. /* POSTS: CHAT */
  1236.  
  1237. #chatbox {
  1238. margin-right:-25px;
  1239. margin-left:-25px!important;
  1240. padding-bottom:0px!important;
  1241. }
  1242.  
  1243.  
  1244.  
  1245. #chat {
  1246. margin-top:25px;
  1247. border-top:1px solid #151515;
  1248. padding-top:27px;
  1249. padding-left:24px;
  1250. padding-right:24px;
  1251. }
  1252.  
  1253.  
  1254.  
  1255.  
  1256.  
  1257.  
  1258. /* POSTS: AUDIO */
  1259.  
  1260. #audiobox {
  1261. {block:permalinkpage}
  1262. margin-top:0px;
  1263. {/block:permalinkpage}
  1264. padding-left:24px;
  1265. padding-right:24px;
  1266. padding-bottom:0px;
  1267. margin-left:-25px;
  1268. margin-right:-25px;
  1269. margin-bottom:-25px;
  1270. }
  1271.  
  1272.  
  1273.  
  1274. .player {
  1275. opacity: 1;
  1276. position: absolute;
  1277. z-index: 1;
  1278. width: 50px;
  1279. height: 36px;
  1280. margin-top: 20px;
  1281. margin-left: -5px;
  1282. display: block;
  1283. color:#000000;
  1284. background-color:transparent!important;
  1285. }
  1286.  
  1287. .audioplayer {
  1288. width: 24px;
  1289. height: 24px;
  1290. margin-left: 0px;
  1291. overflow: hidden;
  1292. padding: 0px;
  1293. color:#000000!important;
  1294. background-color:transparent!important;
  1295. }
  1296.  
  1297.  
  1298.  
  1299. .audioinfo {
  1300. border:1px solid #151515;
  1301. margin-left: -25px;
  1302. margin-right: -25px;
  1303. margin-top:30px;
  1304. padding:24px;
  1305. display: block;
  1306. font-family:calibri;
  1307. font-weight:bold;
  1308. text-transform: uppercase;
  1309. text-align: center;
  1310. letter-spacing:0px;
  1311. word-spacing:-0.5px;
  1312. font-size:11px;
  1313. color: #ffffff;
  1314. background: transparent;
  1315. }
  1316.  
  1317.  
  1318. #acaption {
  1319. border-top:1px solid #151515;
  1320. width:455px;
  1321. margin-left:-24px;
  1322. padding-left:24px;
  1323. }
  1324.  
  1325. #acaption a {
  1326. font-size:10px;
  1327. }
  1328.  
  1329.  
  1330.  
  1331.  
  1332.  
  1333.  
  1334. /* POSTS: VIDEO */
  1335.  
  1336. .video-container {
  1337. position: relative;
  1338. padding-bottom: 56.25%;
  1339. padding-top: 30px;
  1340. height: 0;
  1341. overflow: hidden;
  1342. }
  1343.  
  1344. .video-container iframe,
  1345. .video-container object,
  1346. .video-container embed {
  1347. position: absolute;
  1348. top: 0;
  1349. left: 0;
  1350. width: 100%;
  1351. height: 100%;
  1352. }
  1353.  
  1354.  
  1355.  
  1356.  
  1357.  
  1358.  
  1359.  
  1360. /* POSTS: ASK */
  1361.  
  1362. #answer {
  1363. padding-left:24px;
  1364. padding-right:24px;
  1365. margin-left:-25px;
  1366. margin-right:-25px;
  1367. margin-top:0px;
  1368. }
  1369.  
  1370.  
  1371. #question {
  1372. border-top:0px solid #151515;
  1373. width: 80%;
  1374. margin-top:32px;
  1375. height:70px;
  1376. width:447px;
  1377. margin-left:-25px;
  1378. }
  1379.  
  1380.  
  1381.  
  1382. #ask {
  1383. float:left;
  1384. font-family:calibri, sans-serif;
  1385. text-transform:uppercase;
  1386. position: absolute;
  1387. font-weight:bold;
  1388. background-color:#000000;
  1389. font-size:9px;
  1390. line-height:12px!important;
  1391. width:365px;
  1392. min-height:21px;
  1393. max-height:21px;
  1394. overflow:scroll;
  1395. margin-top:0px;
  1396. margin-left:1px;
  1397. margin-bottom:0px;
  1398. padding-left:24px;
  1399. padding-right:24px;
  1400. outline:solid 1px #151515;
  1401. border-top:22px solid #000000;
  1402. border-bottom:22px solid #000000;
  1403. -moz-transition-duration:1.5s;
  1404. -webkit-transition-duration:1.5s;
  1405. -o-transition-duration:1.5s;
  1406. }
  1407.  
  1408.  
  1409.  
  1410. #ask:hover {
  1411. max-height:51px!important;
  1412. -moz-transition-duration:1.5s;
  1413. -webkit-transition-duration:1.5s;
  1414. -o-transition-duration:1.5s;
  1415. }
  1416.  
  1417.  
  1418. #ask a {
  1419. font-weight:lighter;
  1420. color:#ffffff;
  1421. font-size:9px;
  1422. text-decoration:none;
  1423. }
  1424.  
  1425.  
  1426. #ask b {
  1427. color:#ffffff;
  1428. font-size:9px;
  1429. line-height:11px;
  1430. font-family:calibri!important;
  1431. }
  1432.  
  1433.  
  1434.  
  1435. #ask img {
  1436. -webkit-filter:grayscale(1);
  1437. }
  1438.  
  1439.  
  1440.  
  1441. .letterask {
  1442. position:relative;
  1443. z-index:9999!important;
  1444. position:absolute;
  1445. text-align:center;
  1446. font-size:44px;
  1447. margin-left:415px;
  1448. outline:1px solid #151515;
  1449. padding-top:25px;
  1450. padding-bottom:26px;
  1451. padding-left:17px;
  1452. padding-right:17px;
  1453. color:#151515;
  1454. -webkit-user-select: none; /* Chrome all / Safari all */
  1455. -moz-user-select: none; /* Firefox all */
  1456. -ms-user-select: none; /* IE 10+ */
  1457. user-select: none; /* Likely future */
  1458. }
  1459.  
  1460.  
  1461.  
  1462.  
  1463. #response {
  1464. margin-top:24px;
  1465. padding-top:0px;
  1466. padding-bottom:0px;
  1467. }
  1468.  
  1469.  
  1470. #response blockquote {
  1471. margin-top:15px;
  1472. margin-bottom:24px;
  1473. margin-left:-25px;
  1474. margin-right:-25px;
  1475. padding-top:12px;
  1476. padding-left:25px;
  1477. padding-right:25px;
  1478. padding-bottom:12px;
  1479. border-left:1px solid #151515;
  1480. border-right:1px solid #151515;
  1481. border-bottom:1px solid #151515;
  1482. border-top:1px solid #151515;
  1483. background-color:#030303;
  1484. }
  1485.  
  1486.  
  1487. #response img {
  1488. float:left;
  1489. position:relative;
  1490. margin-left:-1px!important;
  1491. margin-right:13px;
  1492. margin-top:0px;
  1493. margin-bottom:5px;
  1494. padding:8px;
  1495. border:1px solid #151515;
  1496. -webkit-filter: brightness(1) contrast(1) saturate(1);
  1497. }
  1498.  
  1499.  
  1500.  
  1501.  
  1502. /* POST INFORMATION */
  1503.  
  1504.  
  1505. .permalinkbar {
  1506. width:478px;
  1507. margin-top:24px!important;
  1508. margin-left:-25px;
  1509. }
  1510.  
  1511.  
  1512. .permalinkbuttons {
  1513. width:478px;
  1514. height:30px;
  1515. font-size:12.6px!important;
  1516. margin-left:-1px!important;
  1517. margin-bottom:1px!important;
  1518. border-top:1px solid #151515;
  1519. border-bottom:0px solid #151515;
  1520. }
  1521.  
  1522.  
  1523. .permalinkbuttons a {
  1524. font-family:calibri;
  1525. display:inline-block;
  1526. padding-top:8px;
  1527. padding-bottom:8px;
  1528. margin-right:-5px;
  1529. width:216px;
  1530. background-color:#000000;
  1531. border-bottom:1px solid #151515;
  1532. font-weight:bold!important;
  1533. color:#151515;
  1534. font-size:11px;
  1535. -moz-transition-duration:2s;
  1536. -webkit-transition-duration:2s;
  1537. -o-transition-duration:2s;
  1538. -webkit-user-select: none; /* Chrome all / Safari all */
  1539. -moz-user-select: none; /* Firefox all */
  1540. -ms-user-select: none; /* IE 10+ */
  1541. user-select: none; /* Likely future */
  1542. }
  1543.  
  1544.  
  1545. .permalinkbuttons a:hover {
  1546. background-color:#000000!important;
  1547. font-weight:bold!important;
  1548. color:#bebebe;
  1549. -moz-transition-duration:2s;
  1550. -webkit-transition-duration:2s;
  1551. -o-transition-duration:2s;
  1552. }
  1553.  
  1554.  
  1555.  
  1556.  
  1557.  
  1558. #tagsbox {
  1559. {block:permalinkpage}
  1560. margin-top:28px!important;
  1561. {/block:permalinkpage}
  1562. margin-bottom:88px;
  1563. border:1px solid #151515;
  1564. margin-top:-1px;
  1565. padding-top:11px;
  1566. padding-bottom:11px;
  1567. padding-left:24px;
  1568. padding-right:24px;
  1569. margin-left:-25px;
  1570. margin-right:-25px;
  1571. width:430px;
  1572. }
  1573.  
  1574.  
  1575.  
  1576. .tags {
  1577. font-family: calibri!important;
  1578. font-weight:bold!important;
  1579. background-color:#000000;
  1580. color:#2c2c2c;
  1581. text-transform:uppercase!important;
  1582. font-style:normal;
  1583. line-height:150%;
  1584. font-size:8.5px;
  1585. text-align:justify;
  1586. -moz-text-align-last: center; /* Code for Firefox */
  1587. text-align-last: center;
  1588. -moz-transition-duration:2s;
  1589. -webkit-transition-duration:2s;
  1590. -o-transition-duration:2s;
  1591. }
  1592.  
  1593.  
  1594.  
  1595. .tags a {
  1596. text-decoration:none!important;
  1597. font-weight:bold!important;
  1598. font-size:8.5px;
  1599. margin-right:1px;
  1600. text-transform:uppercase!important;
  1601. font-family: calibri!important;
  1602. color:#151515!important;
  1603. -moz-transition-duration:2s;
  1604. -webkit-transition-duration:0.2
  1605. }
  1606.  
  1607.  
  1608. .tags a:hover {
  1609. color:#ffffff!important;
  1610. -moz-transition-duration:1s;
  1611. -webkit-transition-duration:1s;
  1612. -o-transition-duration:1s;
  1613. {block:ifBiggerTagsonHover}
  1614. font-size:10px!important;
  1615. {block:ifBiggerTagsonHover}
  1616. }
  1617.  
  1618.  
  1619.  
  1620.  
  1621.  
  1622. /* PERMAPAGE NOTES */
  1623.  
  1624.  
  1625. .note {
  1626. text-transform:normal;
  1627. font-style:normal;
  1628. font-size: 10px;
  1629. text-align:left;
  1630. margin-left:-32px;
  1631. }
  1632.  
  1633.  
  1634. .note li {
  1635. list-style-type:none;
  1636. padding:12px 23px 12px 23px;
  1637. border-bottom:1px solid #171717;
  1638. border-top:1px solid #171717;
  1639. margin-bottom:-1px;
  1640. text-align:left;
  1641. margin-right:-24px;
  1642. -moz-transition-duration:0.5s;
  1643. -webkit-transition-duration:0.5s;
  1644. -o-transition-duration:0.5s;
  1645. }
  1646.  
  1647. .note blockquote {
  1648. padding-top:12px;
  1649. padding-bottom:12px;
  1650. padding-left:24px;
  1651. padding-right:24px;
  1652. margin-top:12px;
  1653. margin-bottom:12px;
  1654. margin-left:0px;
  1655. margin-right:0px;
  1656. }
  1657.  
  1658.  
  1659. .note img.avatar {
  1660. width: 0px;
  1661. height: 0px;
  1662. }
  1663.  
  1664.  
  1665. .note li a {
  1666. font-family:calibri!important;
  1667. font-size:10px!important;
  1668. padding-right:2px;
  1669. font-weight:bold;
  1670. text-transform:uppercase;
  1671. letter-spacing:0px;
  1672. color: {color:links};
  1673. }
  1674.  
  1675. .note li a:hover {
  1676. color: {color:links hover};
  1677. }
  1678.  
  1679.  
  1680.  
  1681.  
  1682.  
  1683. /* CREDITS */
  1684.  
  1685. #credit {
  1686. z-index:999;
  1687. position:absolute;
  1688. bottom:5px;
  1689. right:5px;
  1690. width:10px;
  1691. height:13px;
  1692. word-wrap:break-word;
  1693. overflow:hidden;
  1694. -webkit-transition:all 1s ease;
  1695. -moz-transition:all 1s ease;
  1696. -o-transition:all 1s ease;
  1697. transition:all 1s ease-in-out;
  1698. }
  1699.  
  1700.  
  1701. #credit a {
  1702. color:{color:body text};
  1703. text-transform:uppercase;
  1704. font-size:10px;
  1705. }
  1706.  
  1707. #credit:hover {width:84px;}
  1708.  
  1709. #credit span {
  1710. text-shadow:1px 1px .2px #000;
  1711. color:{color:body text};
  1712. margin-right:5px;
  1713. font-size:11px;
  1714. }
  1715.  
  1716.  
  1717.  
  1718.  
  1719. </style>
  1720.  
  1721. </head>
  1722.  
  1723. <body>
  1724.  
  1725.  
  1726.  
  1727. <!-- DESCRIPTION + NAVIGATION BAR -->
  1728.  
  1729.  
  1730. <div class="bottombox">
  1731. <div class="description">
  1732.  
  1733. <i>"Doubt truth to be a liar."</i> This is an independent and semi-private portrayal of <b>Meliorn</b> from Cassandra Clare's <i>The SHADOWHUNTER CHRONICLES,</i> along with Freeform's <i>Shadowhunters.</i> However, this portrayal is canon divergent from both canons, taking bits from both and sometimes I run off in my own direction entirely. Please refer to my pages for the precise details! <b> // Written by Portia.</b>
  1734.  
  1735. </div class="bottombox">
  1736. </div class="description">
  1737.  
  1738.  
  1739.  
  1740.  
  1741. <div class="navi">
  1742. <b>NAVIGATION:&nbsp;&nbsp;</b>
  1743. <a href="/" title="{text:Description IND Hover}">IND.</a>
  1744. <a href="#?w=430" rel="pageASK" class="poplight" title="{text:Description ASK Hover}">ASK.</a>
  1745. <a href="#?w=430" rel="pageGDL" class="poplight" title="{text:Description GDL Hover}">GDL.</a>
  1746. <a href="#?w=430" rel="pageBIO" class="poplight" title="{text:Description NAV Hover}">BIO.</a>
  1747.  
  1748.  
  1749.  
  1750.  
  1751.  
  1752. {block:IndexPage}{block:PreviousPage}
  1753. <a href="{PreviousPage}"><b>Prev.</b></a>
  1754. {/block:PreviousPage}
  1755.  
  1756. {block:NextPage}
  1757. <a href="{NextPage}"><b>Next.</b></a>
  1758. {/block:NextPage}{/block:IndexPage}
  1759.  
  1760.  
  1761. {block:PermalinkPagination}{block:PreviousPost}
  1762. <a href="{PreviousPost}"><b>Prev.</b></a>
  1763. {/block:PreviousPost}
  1764.  
  1765. {block:NextPost}
  1766. <a href="{NextPost}"><b>Next.</b></a>
  1767. {/block:NextPost}{/block:PermalinkPagination}
  1768.  
  1769. </div class="navi">
  1770.  
  1771.  
  1772.  
  1773.  
  1774.  
  1775. <!-- POSTS -->
  1776.  
  1777.  
  1778.  
  1779. <div id="container">
  1780.  
  1781. <div class="containerheadertop"></div>
  1782. <div id="containertopspace"></div>
  1783.  
  1784. {block:Posts}
  1785. <div class="posts">
  1786.  
  1787.  
  1788.  
  1789.  
  1790.  
  1791. <!-- POSTS: TEXT -->
  1792.  
  1793.  
  1794. {block:Text}
  1795. <div id="text">
  1796.  
  1797.  
  1798.  
  1799. <div id="textbody">
  1800. {block:Title}
  1801. <h1>{Title}</a></h1>
  1802. {/block:Title}
  1803. <div id="wrap">
  1804. {Body}
  1805. <div style="clear:both">
  1806. </div style="clear:both">
  1807. </div id="wrap">
  1808. </div>
  1809.  
  1810. </div id="text">
  1811.  
  1812. {/block:Text}
  1813.  
  1814.  
  1815.  
  1816.  
  1817.  
  1818. <!-- POSTS: PHOTO/SET -->
  1819.  
  1820. {block:Photo}
  1821. <div id="psingle">
  1822. {LinkOpenTag}
  1823. <img src="{PhotoURL-HighRes}" style="min-width:480px!important; width:480px!important; margin-top:0px;">
  1824. {LinkCloseTag}
  1825. </div id="psingle">
  1826.  
  1827. {block:Caption}
  1828. <div id="pcaption">
  1829. {Caption}
  1830. </div id="pcaption">
  1831. {/block:Caption}
  1832. {/block:Photo}
  1833.  
  1834.  
  1835. {block:Photoset}
  1836. <div id="pset">
  1837. {Photoset}
  1838. </div id="pset">
  1839.  
  1840. {block:Caption}
  1841. <div id="pcaption">
  1842. {Caption}
  1843. </div id="pcaption">
  1844. {/block:Caption}
  1845. {/block:Photoset}
  1846.  
  1847.  
  1848.  
  1849.  
  1850.  
  1851. <!-- POSTS: QUOTE -->
  1852.  
  1853. {block:Quote}
  1854. <div id="quotebox">
  1855. <div id="quote">
  1856. {Quote}
  1857. </div id="quote">
  1858. <div class="source">
  1859. {Source}
  1860. </div class="source">
  1861. </div>
  1862. {/block:Quote}
  1863.  
  1864.  
  1865.  
  1866.  
  1867.  
  1868. <!-- POSTS: LINK -->
  1869.  
  1870. {block:Link}
  1871. <div id="linkpost">
  1872. <div id="link">
  1873. <a href="{URL}" {Target}>{Name}&nbsp;&nbsp; ►</a>
  1874. </div id="link">
  1875. </div id="linkpost">
  1876. {/block:Link}
  1877.  
  1878.  
  1879.  
  1880.  
  1881.  
  1882. <!-- POSTS: CHAT -->
  1883.  
  1884.  
  1885. {block:Chat}
  1886.  
  1887. <div id="chatbox">
  1888. <div id="chat">
  1889. {block:Lines}
  1890. <div id="{Alt}">
  1891. {block:Label}<i>{Label}</i>{/block:Label} {Line}
  1892. </div id="{Alt}">
  1893. {/block:Lines}
  1894. </div id="chat">
  1895. </div id="chatbox">
  1896.  
  1897. {/block:Chat}
  1898.  
  1899.  
  1900.  
  1901.  
  1902.  
  1903. <!-- POSTS: AUDIO -->
  1904.  
  1905. {block:Audio}
  1906. <div id="audiobox">
  1907.  
  1908. <div style="-webkit-filter:grayscale(1);">
  1909.  
  1910. <div class="player">
  1911. <div class="audioplayer">
  1912.  
  1913. {AudioPlayerWhite}
  1914.  
  1915. </div class="audioplayer">
  1916. </div class="player">
  1917.  
  1918. <div class="audioinfo">
  1919. {block:TrackName}{TrackName}{/block:TrackName} — {block:Artist}{Artist}{/block:Artist}
  1920. </div class="audioinfo">
  1921.  
  1922. </div style>
  1923.  
  1924. {block:Caption}
  1925. <div id="pcaption">
  1926. {Caption}
  1927. </div id="pcaption">
  1928. {/block:Caption}
  1929.  
  1930. </div id="audiobox">
  1931. {/block:Audio}
  1932.  
  1933.  
  1934.  
  1935.  
  1936.  
  1937. <!-- POSTS: VIDEO -->
  1938.  
  1939. {block:Video}
  1940. <div class="video-container">
  1941. {Video-400}
  1942. {block:Caption}{Caption}{/block:Caption}
  1943. </div class="video-container">
  1944. {/block:Video}
  1945.  
  1946.  
  1947.  
  1948.  
  1949. <!-- POSTS: ASK -->
  1950.  
  1951. {block:Answer}
  1952. <div id="answer">
  1953.  
  1954. <div id="question"><div id="ask"><b style="color:#3b4e2b!important;">{Asker} is inquiring for information:</b>
  1955. <br>{Question}</div><div class="letterask">Q</div></div>
  1956.  
  1957.  
  1958. <h4 style="margin-top:-5px; height:5px; padding-right:1px; background-color:#030303!important;"></h4>
  1959.  
  1960.  
  1961. <div id="response">{Answer}<div style="clear:both; margin-bottom:-5px;"></div>
  1962. </div id="response">
  1963.  
  1964. </div id="answer">
  1965. {/block:Answer}
  1966.  
  1967.  
  1968.  
  1969.  
  1970.  
  1971. <!-- POST INFORMATION -->
  1972.  
  1973.  
  1974. {block:Date}
  1975.  
  1976. {block:indexpage}
  1977. <div class="permalinkbar">
  1978. <div class="permalinkbuttons">
  1979. <a href="{Permalink}" style="text-align:left; padding-left:24px;" title="{TimeAgo}">{Month} {DayOfMonth}{DayOfMonthSuffix} / {12Hour}:{Minutes}{CapitalAmPm} / {NoteCountWithLabel}</a>
  1980. <a href="{ReblogURL}" target="_blank" class="details" style="margin-left:-1px!important; text-align:right; padding-right:25px;">CLICK HERE TO REBLOG THIS POST</a>
  1981. </div class="permalinkbuttons">
  1982. </div class="permalinkbar">
  1983.  
  1984. <div id="tagsbox">
  1985. <div class="tags">
  1986. {block:HasTags}
  1987. {block:Tags}
  1988. <a href="{TagURL}">{Tag}&nbsp;&nbsp;</a>
  1989. {/block:Tags}
  1990. {/block:HasTags}
  1991.  
  1992. </div class="tags">
  1993. </div id="tagsbox">
  1994.  
  1995. {/block:indexpage}
  1996.  
  1997.  
  1998. {block:permalinkpage}
  1999. <div class="permalinkbar">
  2000. <div class="permalinkbuttons">
  2001. <a href="{Permalink}" style="text-align:left; padding-left:24px;">{Month} {DayOfMonth}{DayOfMonthSuffix} / {12Hour}:{Minutes}{CapitalAmPm} / {NoteCountWithLabel}</a>
  2002. <a href="{ReblogURL}" target="_blank" class="details" style="margin-left:-1px!important; text-align:right; padding-right:25px;">CLICK HERE TO REBLOG THIS POST</a>
  2003. {block:RebloggedFrom}
  2004. <a href="{ReblogParentURL}" style="text-align: center; width:480px; margin-top:-2px; height:13px; border-top:1px solid #151515; border-bottom:1px solid #151515l;">REBLOGGED FROM / VIA / SOURCE</a>
  2005. {/block:RebloggedFrom}
  2006. </div class="permalinkbuttons">
  2007. </div class="permalinkbar">
  2008.  
  2009. <div id="tagsbox">
  2010. <div class="tags">
  2011. {block:HasTags}
  2012. {block:Tags}
  2013. <a href="{TagURL}">{Tag}&nbsp;&nbsp;</a>
  2014. {/block:Tags}
  2015. {/block:HasTags}
  2016.  
  2017. </div class="tags">
  2018. </div id="tagsbox">
  2019.  
  2020. {/block:permalinkpage}
  2021.  
  2022.  
  2023.  
  2024. {/block:Date}
  2025.  
  2026.  
  2027.  
  2028.  
  2029.  
  2030. <!-- NOTES -->
  2031.  
  2032. <div class="note">
  2033. {block:PostNotes}{PostNotes}{/block:PostNotes}
  2034. </div class="note">
  2035.  
  2036.  
  2037.  
  2038.  
  2039.  
  2040. <!-- HIDE VIA/SOURCE IN POSTS -->
  2041.  
  2042.  
  2043. {block:ContentSource}<!-- {SourceURL}
  2044. {block:SourceLogo}<img src="{BlackLogoURL}"width="{LogoWidth}" height="{LogoHeight}" alt="{SourceTitle}" />{/block:SourceLogo}
  2045. {block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo} -->
  2046. {/block:ContentSource}
  2047.  
  2048.  
  2049. <!-- {block:NoRebloggedFrom}
  2050. {block:RebloggedFrom}{ReblogParentName}{/block:RebloggedFrom}
  2051. {/block:NoRebloggedFrom} -->
  2052.  
  2053.  
  2054.  
  2055. </div class="posts">
  2056.  
  2057. {/block:Posts}
  2058.  
  2059.  
  2060. <div class="containerheaderbottom">
  2061. <div id="containerbottomspace"></div>
  2062. </div class="containerheaderbottom">
  2063.  
  2064.  
  2065. </div id="container">
  2066.  
  2067. </div>
  2068.  
  2069.  
  2070.  
  2071.  
  2072. <!-- POPUP PAGES -->
  2073.  
  2074.  
  2075.  
  2076. <!-- POPUP PAGE: ASK. -->
  2077.  
  2078. <div id="pageASK" class="popup_block">
  2079.  
  2080.  
  2081. <header>INQUIRIES</header>
  2082.  
  2083. <p>
  2084.  
  2085. <iframe frameborder="0" allowtransparency="true" scrolling="no" width="416px" height="200px" src="http://www.tumblr.com/ask_form/armorscale.tumblr.com/" style="background-color:#000000!important; padding:6px; overflow:hidden;border:1px solid #151515;" id="ask_form"></iframe><!--[if IE]><script type="text/javascript">document.getElementById('ask_form').allowTransparency=true;</script><![endif]-->
  2086.  
  2087. <p>
  2088. </div id="pageASK" class="popup_block">
  2089. </div>
  2090.  
  2091.  
  2092.  
  2093.  
  2094.  
  2095. <!-- POPUP PAGE: GDL. -->
  2096.  
  2097.  
  2098. <div id="pageGDL" class="popup_block">
  2099.  
  2100. <header>LAWS</header>
  2101.  
  2102.  
  2103. <h4 style="margin-top:0px;">On Interaction</h4>
  2104.  
  2105. <b>i.</b> I’m mutuals only, but, like most, <i>I only follow people I want to interact with,</i> so if I follow you, I want to write with you!
  2106. <br><b>ii.</b> If we follow each other you can send me any meme, any time, tag me in a starter, ask me for a starter, ask for my discord, demand my firstborn bear your name, etc.
  2107. <br><b>iii.</b> <i>I am super slow, but I will get to you.</i> So consider this an advance apology for the slowness and/or occasional shoddy activity.
  2108. <br><b>iv.</b> I am 22. While I’ll gladly write with anyone of any age, no younglings (here: people below the age of 18) may interact with or send me any nsfw posts. Violating this will get you blocked.
  2109.  
  2110.  
  2111.  
  2112. <h4>On Etiquette</h4>
  2113.  
  2114. <b>i.</b> While like most I don’t like godmodding, more importantly, <i>do not metagame.</i> This matters a lot re: Meliorn in particlar. He’s a deceptive guy.
  2115. <br><b>ii.</b> Really, standard etiquette. Don’t send me rude things, or I block you, be respectful, be kind, etc.
  2116. <br><b>iii.</b> Muse hard feelings =/= mun hard feelings. Meliorn is a little shit quite often, and if he’s unpleasant, or your muse doesn’t like him, I promise, I still probably adore you with all my heart!
  2117. <br><b>iv.</b> I am not normally one to take exclusives, but I will honor it if you take them.
  2118.  
  2119.  
  2120. <h4>On Meliorn</h4>
  2121.  
  2122. <b>i.</b> I don’t own him. That should be obvious, but here’s my disclaimer. I’m not affiliated with Cassandra Clare, Shadowhunters, or Jade Jassoune.
  2123. <br><b>ii.</b> My Meliorn is canon divergent <i>from both canons.</i> I use a lot of headcanon, lore and literature when I write him that is divergent.
  2124. <br><b>iii.</b> Some things from the book that I keep include Meliorn being technically only half-faerie and <i>thus able to lie,</i> being very formal, having ultimate loyalty to the queen, becoming the faerie representative to the Clave and fleeing England in the 1800s, when he pissed literally everyone off.
  2125. <br><b>iv.</b> Some show aspects I use include a genuine affection for Isabelle, and a punishment for having helped the queen, a rapport with vampires.
  2126. <br><b>v.</b> As such, because my Meliorn is a bastardization, I’ll RP with people based in either the book or a show, and will either slide into the plot structure of either. I’m aware the plotlines differ more than anything else, and I don’t mind tipping him into whichever.
  2127. <br><b>vi.</b> In my default blog canon, I headcanon that he managed to survive his book-death. However, if you don’t wish to interact with that aspect of canon divergence, we can simply decline to.
  2128.  
  2129.  
  2130. <h4>On Ships</h4>
  2131.  
  2132. <b>i.</b> I’m open to any ship involving <i>Meliorn x Chemistry.</i> He has no preferences as to the gender of his partners, and I don’t have one with ships either. If you ship something, let me know in messages and we can work it out!
  2133. <br><b>ii.</b> I do like Izzy/Meliorn, but I won’t force or assume. If you’re an Isabelle and don’t feel like doing something romantic, then we can go with that. If you do, then that’s great, too.
  2134.  
  2135.  
  2136. <p>
  2137. </div id="pageGDL" class="popup_block">
  2138.  
  2139.  
  2140.  
  2141.  
  2142.  
  2143. <!-- POPUP PAGE: BIO. -->
  2144.  
  2145. <div id="pageBIO" class="popup_block">
  2146.  
  2147. <header>BIOGRAPHY / ABOUT</header>
  2148.  
  2149. <div id="intro" style="height:70px;">
  2150. <p><b><u>N</u>ame:</b> Meliorn. <b>Date of Birth:</b> 1 May 1734. <b>Gender:</b> None / man-ish. <b>Pronouns:</b> He/Him/His. <b>Sexuality:</b> Pansexual. <b>Species:</b> Half-Faerie. <b>Court:</b> Seelie. <b>Profession:</b> Knight.
  2151. </div id="intro">
  2152.  
  2153.  
  2154. <h4>In The Beginning</h4>
  2155.  
  2156. Meliorn was born in a port town in England to a traveling merchant and a mysterious woman he met one day while walking the moors. She was a lady of faerie gentry, who bore her son at home in the hills of Faerie. When her boy was two, she brought him to his father for a while. He learned a bit about the human world, but when his father had to sail away to sell his wares, she took Meliorn back to Faerie. There, he learned to sing, to deceive without lying, to fight, and all the other things a proper gentry Fey must learn. He fell in love with their light, their nature, their songs and their rules. Though half his blood was human, his heart was all fey.
  2157.  
  2158.  
  2159. <h4>The Wandering Years</h4>
  2160.  
  2161. Still too young to join the queen’s ranks as a night, Meliorn spent his adolescence in the human realm. He thought he’d have some Puckish fun, see what fools these mortals be. And so he made his way around London, gambling well, fooling all, falling in love and breaking hearts, scamming fools and avoiding debts. He offered services as an informant at the Shadow Market, too, until the rest of his wild roving ways caught up with him, and he found it best to leave the scene of mortal London.
  2162.  
  2163. <p>Across the pond he went, doing similar services in New York, until he tired of it. He is always a bit homesick when he is not in Faerie, never restful unless on his knees before the Queen.
  2164.  
  2165.  
  2166. <h4>Rise, Good Knight</h4>
  2167.  
  2168. Meliorn returned to faerie and swore his loyalty to the queen. No longer the silly, garlanded child he once was, he took up his sword and swore to defend her. She rewarded him handsomely, and ever since he has been loyal to none above the Queen and the realm.
  2169.  
  2170. <p>He keeps his human father a secret. He knows that he is only half a knight if he tells anyone he is only half a faerie in blood. Meliorn is determined to prove better than all the rest. And he does. He navigates the downworld, impresses at home in Faerie, and lives a life fit for any gentry. He is mortal, and he will one day grow old and infirm, but in Faerie, time is a slow stream that shall not carry him there for some time.
  2171.  
  2172. <p>Life, as Meliorn knows it, is a sweet, rewarding thing. During this sweetness, a Nephilim captures his interest, and perhaps (loathe as he’d be to say) his heart. For fondness of her, of the dance between two brilliant minds, he finds himself helping the Nephilim, the most unpleasant, repressive of people.
  2173.  
  2174. <p>For helping the lovely one’s friend, Meliorn faces reprimand by his queen, and the knight bares his disgrace with a bitter resignment. This is what he gets for letting his heart wander out of court.
  2175.  
  2176.  
  2177. <h4>A Loyal Servant</h4>
  2178.  
  2179. The Queen makes a new ally of her strange, mad lover. Meliorn has no place to judge his Lady. His feelings matter not. It matters little if it gives his stomach a lurch, as on a ship, to bend his knee while Valentine’s son watches. He is a Knight of the Court, and he will do the Queen’s bidding. That is Faerie honor.
  2180.  
  2181. <p>It’s for Sebastian that he is made to lie–a gift he uses seldom, but has secretly held–and for his Queen’s ambition that the whole court falls down. Meliorn’s hands are bloodstained, and his armor pierced through with arrows. He can think no ill of the Queen, but what he thinks of himself is a murky, twisted thing now.
  2182.  
  2183. <p>Their arms are stripped and life is a thing of ill ease for a bloodstained liar who cannot so much as own a sword. What sort of knight is a disarmed knight?
  2184.  
  2185.  
  2186. <h4>A Kind of Hope</h4>
  2187.  
  2188. The Queen, it seems, is willing to rescind her misstep. The time has come again that the liar Meliorn sees the Seelie Court willing to fight alongside Nephilim again, the Cold Peace broken. This is a chance that Meliorn never thought he’d live to see–to be a knight again, to walk the world again.
  2189.  
  2190. <p>The jaded knight finds himself reaquainted with hope and purpose.
  2191.  
  2192.  
  2193.  
  2194. <p>
  2195. </div id="pageBIO" class="popup_block">
  2196. </div>
  2197.  
  2198.  
  2199.  
  2200.  
  2201. <!-- POPUP PAGE: VRS. -->
  2202.  
  2203.  
  2204. <div id="pageVRS" class="popup_block">
  2205.  
  2206. <header>
  2207. UNIVERSES / TIMELINES
  2208. </header>
  2209.  
  2210. <h4 style="margin-top:-30px;">VERSE 001. if i only could make a deal with god</h4>
  2211.  
  2212. <b>Main verse of the moment.</b> Set during present-show canon-ish. Currently following the Dark War/Edom/Lilith arc in the overall storyline. Maryse is still running the institute, and frantically dealing with the Clave, and hoping her children remain safe.
  2213.  
  2214. <h4>VERSE 002. and i need to be redeemed</h4>
  2215.  
  2216. Set from the time Maryse is sent to New York after the Uprising, through the beginning of canon shenanigans. This verse deals mainly with the time she spends running the Institute while under the impression that Valentine is dead.
  2217.  
  2218. <h4>VERSE 003. it’s a new dawn & a new day</h4>
  2219.  
  2220. <b>Set post-canon.</b> Maryse is divorced, the war is over, and life is beginning to return to normal for her, her children, and her children’s partners, whom she loves dearly.
  2221.  
  2222. <h4>VERSE 004. ‘cause I’m feeling like a criminal</h4>
  2223.  
  2224. Set during Maryse’s younger years from age seventeen to age 23 in Idris. This covers her later years in the academy and time as a circle member, ending when she abandons the Uprising and is sent to New York.
  2225.  
  2226. <h4>VERSE 005. I have the falling sickness</h4>
  2227.  
  2228. <b>Deruned!verse.</b> In this universe, Maryse is faulted for the misgivings and happenings at the Institute, as well as for her former circle crimes, and stripped of runes.
  2229.  
  2230. <h4>VERSE 006. when there’s nothing left to burn</h4>
  2231.  
  2232. <b>Vampire!verse.</b> At 23, Maryse was sent on the same mission that killed Stephen Herondale. However, unlike Stephen, Maryse escaped. She was turned into a vampire, and fled Idris, leaving behind a husband, and a small son.
  2233.  
  2234. <h4>VERSE 007. a world in the walls</h4>
  2235.  
  2236. <b>Alternate Universe based on 1x10.</b> Maryse is a lawyer, high-powered and overworked. She knows nothing of demons, or the world she was ordinarily born into. Her drive and ambition went instead into professional success and notoriety. Otherwise, she’s a fairly ordinary mother of a few children, and a respected professional among her peers, with a marriage that’s failing in all the usual ways.
  2237.  
  2238.  
  2239.  
  2240.  
  2241. <p>
  2242. </div id="pageVRS" class="popup_block">
  2243. </div>
  2244.  
  2245.  
  2246.  
  2247.  
  2248.  
  2249.  
  2250.  
  2251. <!-- POPUP PAGE 005. -->
  2252.  
  2253.  
  2254. <div id="pageNAV" class="popup_block">
  2255.  
  2256.  
  2257. <header>DIRECTORY</header>
  2258.  
  2259.  
  2260. <p>
  2261. <div id="nvroom">
  2262. <div class="nvlinks">
  2263.  
  2264.  
  2265. <h4 style="margin-top:0px;">GENERAL</h4>
  2266.  
  2267. <a href="/tagged/%28-ooc-%29.-are-you-suggesting-that-coconuts-migrate%3F">
  2268. Out of character posts
  2269. </a>
  2270.  
  2271. <a href="/tagged/%28-ic-%29.-the-fault-lies-in-ourselves">
  2272. In character posts
  2273. </a>
  2274.  
  2275. <a href="/tagged/%28-askbox-%29.-you-answer-with-a-wicked-tongue">
  2276. ANSWERED
  2277. </a>
  2278.  
  2279. <a href="/tags#mce_temp_url#">
  2280. MEMES
  2281. </a>
  2282.  
  2283. </div id="nvroom">
  2284. </div class="nvlinks">
  2285.  
  2286.  
  2287.  
  2288. <h4>CHARACTER</h4>
  2289.  
  2290.  
  2291. <div id="nvroom">
  2292. <div class="nvlinks">
  2293.  
  2294.  
  2295. <a href="/tagged/%28-about-maryse-%29.-straight-for-the-knife-%26-i-prepared-to-die">
  2296. ABOUT MARYSE
  2297. </a>
  2298.  
  2299. <a href="/tagged/%28-headcanon-%29.-you-cannot-hide-from-the-mess-inside">
  2300. HEADCANONS
  2301. </a>
  2302.  
  2303. <a href="/tagged/%28-faceclaim-%29.-mock-the-tide-with-fairest-show">
  2304. FACE CLAIM
  2305. </a>
  2306.  
  2307. </div id="nvroom">
  2308. </div class="nvlinks">
  2309.  
  2310.  
  2311. <h4>RELATIONSHIPS</h4>
  2312.  
  2313.  
  2314. <a href="/tagged/">
  2315.  
  2316. </a>
  2317.  
  2318. <a href="/tagged/">
  2319.  
  2320. </a>
  2321.  
  2322. <a href="/tagged/">
  2323.  
  2324. </a>
  2325.  
  2326. <a href="/tagged/">
  2327.  
  2328. </a>
  2329.  
  2330.  
  2331. </div id="nvroom">
  2332. </div class="nvlinks">
  2333.  
  2334. <br>
  2335. </div id="pageNAV" class="popup_block">
  2336.  
  2337.  
  2338.  
  2339.  
  2340.  
  2341. <!-- CREDIT -->
  2342.  
  2343. <div id="credit"><div style="width:105px;margin-right:10px;">
  2344. <a href="http://iniziare.tumblr.com/" target="blank">
  2345. <span>S.</span>MADE BY SAE.</a>
  2346. </div></div>
  2347.  
  2348. </body>
  2349. </html>
Advertisement
Add Comment
Please, Sign In to add comment