Advertisement
kurokit

Inizare-Theme Black Moon

Aug 13th, 2019
231
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 159.74 KB | None | 0 0
  1. <!DOCTYPE html>
  2.  
  3.  
  4.  
  5. <!-- (BASE) THEME BY SAE (INIZIARE) -->
  6.  
  7.  
  8.  
  9.  
  10.  
  11. <html>
  12. <head>
  13. <title>{Title}</title>
  14. <link rel="shortcut icon" href="{Favicon}">
  15. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  16. {block:Description}
  17. <meta name="description" content="{MetaDescription}" />
  18. {/block:Description}
  19. </head>
  20.  
  21.  
  22. <script type="text/javascript">
  23. // <![CDATA[
  24. var colour="#968c8d"; // what colour are the blobs
  25. var speed=50; // speed of animation, lower is faster
  26. var blobs=6; // how many blobs are in the jar
  27. var charc=String.fromCharCode(9679); // a blob - can be changed to charc='hello' or charc='*' for a different effect
  28.  
  29. /***************************\
  30. * Blobs in a Jar Effect *
  31. * (c)2012 mf2fm web-design *
  32. * http://www.mf2fm.com/rv *
  33. * DON'T EDIT BELOW THIS BOX *
  34. \***************************/
  35.  
  36. window.onload=fill_the_jar;
  37. var div;
  38. var xpos=new Array();
  39. var ypos=new Array();
  40. var zpos=new Array();
  41. var dx=new Array();
  42. var dy=new Array();
  43. var dz=new Array();
  44. var blob=new Array();
  45. var swide=800;
  46. var shigh=600;
  47. function fill_the_jar() {
  48. var i, dvs;
  49. div=document.createElement('div');
  50. dvs=div.style;
  51. dvs.position='fixed';
  52. dvs.left='0px';
  53. dvs.top='0px';
  54. dvs.width='1px';
  55. dvs.height='1px';
  56. document.body.appendChild(div);
  57. set_width();
  58. for (i=0; i<blobs; i++) {
  59. add_blob(i);
  60. jamjar(i);
  61. }
  62. }
  63.  
  64. function add_blob(ref) {
  65. var dv, sy;
  66. dv=document.createElement('div');
  67. dv.appendChild(document.createTextNode(charc));
  68. sy=dv.style;
  69. sy.position='absolute';
  70. sy.textAlign="center";
  71. if (navigator.appName=="Microsoft Internet Explorer") {
  72. sy.fontSize="10px";
  73. sy.width="100px";
  74. sy.height="100px";
  75. sy.paddingTop="40px";
  76. sy.color=colour;
  77. }
  78. else sy.color='rgba(0,0,0,0)';
  79. ypos[ref]=Math.floor(shigh*Math.random());
  80. dy[ref]=(0.5+Math.random())*(Math.random()>.5?2:-2);
  81. xpos[ref]=Math.floor(swide*Math.random());
  82. dx[ref]=(0.5+Math.random())*(Math.random()>.5?2:-2);
  83. zpos[ref]=Math.random()*20;
  84. dz[ref]=(0.5+Math.random())*(Math.random()>.5?.5:-.5);
  85. blob[ref]=dv;
  86. div.appendChild(blob[ref]);
  87. set_blob(ref);
  88. }
  89. function rejig(ref, xy) {
  90. if (xy=='y') {
  91. dx[ref]=(0.5+Math.random())*sign(dx[ref]);
  92. dy[ref]=(0.5+Math.random())*-sign(dy[ref]);
  93. }
  94. else {
  95. dx[ref]=(0.5+Math.random())*-sign(dx[ref]);
  96. dy[ref]=(0.5+Math.random())*sign(dy[ref]);
  97. }
  98. }
  99. function sign(a) {
  100. if (a<0) return (-2);
  101. else if (a>0) return (2);
  102. else return (0);
  103. }
  104. function set_blob(ref) {
  105. var sy;
  106. sy=blob[ref].style;
  107. sy.top=ypos[ref]+'px';
  108. sy.left=xpos[ref]+'px';
  109. if (navigator.appName=="Microsoft Internet Explorer") {
  110. sy.filter="glow(color="+colour+",strength="+zpos[ref]+")";
  111. sy.fontSize=30-zpos[ref]+"px";
  112. }
  113. else {
  114. sy.textShadow=colour+' 0px 0px '+zpos[ref]+'px';
  115. sy.fontSize=40+zpos[ref]+'px';
  116. }
  117. }
  118. function jamjar(ref) {
  119. if (ypos[ref]+dy[ref]<-50 || ypos[ref]+dy[ref]>shigh) rejig(ref, 'y');
  120. ypos[ref]+=dy[ref];
  121. if (xpos[ref]+dx[ref]<-50 || xpos[ref]+dx[ref]>swide) rejig(ref, 'x');
  122. xpos[ref]+=dx[ref];
  123. if (zpos[ref]+dz[ref]<0 || zpos[ref]+dz[ref]>20) dz[ref]=-dz[ref];
  124. zpos[ref]+=dz[ref];
  125. set_blob(ref);
  126. setTimeout("jamjar("+ref+")", speed);
  127. }
  128.  
  129. window.onresize=set_width;
  130. function set_width() {
  131. var sw_min=999999;
  132. var sh_min=999999;
  133. if (document.documentElement && document.documentElement.clientWidth) {
  134. if (document.documentElement.clientWidth>0) sw_min=document.documentElement.clientWidth;
  135. if (document.documentElement.clientHeight>0) sh_min=document.documentElement.clientHeight;
  136. }
  137. if (typeof(self.innerWidth)!="undefined" && self.innerWidth) {
  138. if (self.innerWidth>0 && self.innerWidth<sw_min) sw_min=self.innerWidth;
  139. if (self.innerHeight>0 && self.innerHeight<sh_min) sh_min=self.innerHeight;
  140. }
  141. if (document.body.clientWidth) {
  142. if (document.body.clientWidth>0 && document.body.clientWidth<sw_min) sw_min=document.body.clientWidth;
  143. if (document.body.clientHeight>0 && document.body.clientHeight<sh_min) sh_min=document.body.clientHeight;
  144. }
  145. if (sw_min==999999 || sh_min==999999) {
  146. sw_min=800;
  147. sh_min=600;
  148. }
  149. swide=sw_min;
  150. shigh=sh_min;
  151. }
  152. // ]]>
  153. </script>
  154.  
  155.  
  156. <!--tooltip script end-->
  157.  
  158.  
  159.  
  160. <!-- SCRIPT: TOOLTIP -->
  161.  
  162.  
  163. <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  164. <script src="https://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js"></script>
  165. <script>
  166. (function($){
  167. $(document).ready(function(){
  168. $("a[title]").style_my_tooltips({
  169. tip_follows_cursor:true,
  170. tip_delay_time:90,
  171. tip_fade_speed:600,
  172. attribute:"title"
  173. });
  174. });
  175. })(jQuery);
  176. </script>
  177.  
  178.  
  179.  
  180.  
  181.  
  182. <!-- SCRIPT: POPUPS -->
  183.  
  184.  
  185. <script>
  186. $(document).ready(function() {
  187. //
  188. $('a.poplight[href^=#]').click(function() {
  189. var popID = $(this).attr('rel'); //Get Popup Name
  190. var popURL = $(this).attr('href'); //Get Popup href to define size
  191. var query= popURL.split('?');
  192. var dim= query[1].split('&');
  193. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  194. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"></a>');
  195. var popMargTop = ($('#' + popID).height() + 80) / 2;
  196. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  197. //Apply Margin to Popup
  198. $('#' + popID).css({
  199. 'margin-top' : -popMargTop,
  200. 'margin-left' : -popMargLeft
  201. });
  202. $('body').append('<div id="fade"></div>');
  203. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'})
  204. return false;
  205. });
  206. $('a.close, #fade').live('click', function() {
  207. $('#fade , .popup_block').fadeOut(function() {
  208. $('#fade, a.close').remove(); //fade them both out
  209. });
  210. return false;
  211. });
  212. });
  213. </script>
  214.  
  215.  
  216.  
  217.  
  218.  
  219.  
  220.  
  221.  
  222. <!-- SCRIPT: jQuery -->
  223.  
  224. <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
  225.  
  226.  
  227.  
  228.  
  229. <!-- SCRIPT: AUDIO PLAYER -->
  230.  
  231. <script>
  232. $(document).ready(function() {
  233. $('iframe.tumblr_audio_player').load( function() {
  234. $('iframe.tumblr_audio_player').contents().find("head")
  235. .append($("<style type='text/css'> .audio-player{background:{color:background}!important; color:{color:italic} !important;} </style>"));
  236. });
  237. });
  238. </script>
  239.  
  240.  
  241.  
  242.  
  243. <!-- SCRIPT: NAVIGATION TABS -->
  244.  
  245.  
  246. <script>
  247. function openNavi(naviName) {
  248. var i;
  249. var x = document.getElementsByClassName("navi");
  250. for (i = 0; i < x.length; i++) {
  251. x[i].style.display = "none";
  252. }
  253. document.getElementById(naviName).style.display = "block";
  254. }
  255. </script>
  256.  
  257.  
  258.  
  259.  
  260. <script type="text/javascript" src="https://static.tumblr.com/8pnyeus/10hors8sn/themekid-popup.min.js"></script>
  261. <script type="text/javascript">
  262. $(document).ready(function(){
  263. popUp(true);
  264. });
  265. </script>
  266.  
  267.  
  268.  
  269.  
  270. <!-- SCRIPT: POPUP TABS -->
  271.  
  272. <script>$(document).ready(function(){
  273. $("ul#tabs li").click(function(e){
  274. if (!$(this).hasClass("active")) {
  275. var tabNum = $(this).index();
  276. var nthChild = tabNum+1;
  277. $("ul#tabs li.active").removeClass("active");
  278. $(this).addClass("active");
  279. $("ul#tab li.active").removeClass("active");
  280. $("ul#tab li:nth-child("+nthChild+")").addClass("active");}});});</script>
  281.  
  282.  
  283.  
  284.  
  285.  
  286. <!-- CUSTOM FONTS -->
  287.  
  288. <link href="https://fonts.googleapis.com/css?family=Frank+Ruhl+Libre" rel="stylesheet">
  289.  
  290.  
  291. <link rel="stylesheet" href="https://static.tumblr.com/ebrrv1n/YAlpnz5ld/stylesheet.css">
  292.  
  293.  
  294.  
  295.  
  296. <!-- META LINES -->
  297.  
  298.  
  299. <meta name="image:Background" content=""/>
  300. <meta name="image:Sidebar Background" content="https://static.tumblr.com/ebrrv1n/lmXpp6px3/dimensions_side-bg.png"/>
  301. <meta name="image:Sidebar Image Top" content="https://static.tumblr.com/ebrrv1n/Byopp6kos/dimensions_side-small.png"/>
  302. <meta name="image:Sidebar Image Bottom" content="https://static.tumblr.com/ebrrv1n/Byopp6kos/dimensions_side-small.png"/>
  303.  
  304.  
  305. <meta name="text:Custom Capitals Font" content="'customfonthere'">
  306. <meta name="text:Title" content="Title">
  307.  
  308.  
  309. <meta name="color:Background" content="#000000" />
  310. <meta name="color:Border" content="#151515" />
  311. <meta name="color:Body Text" content="#c6c6c6" />
  312. <meta name="color:Bold" content="#555555" />
  313. <meta name="color:Italic" content="#ffffff" />
  314. <meta name="color:Links" content="#ffffff" />
  315. <meta name="color:Links Hover and Active" content="#ffffff" />
  316. <meta name="color:First Letter" content="#151515" />
  317. <meta name="color:Title" content="#D1D1D1" />
  318. <meta name="color:Permalink" content="#151515" />
  319. <meta name="color:Tags" content="#151515" />
  320.  
  321.  
  322.  
  323. <meta name="if:Text Wrapping" content="1"/>
  324. <meta name="if:Boxed Blockquotes" content="1"/>
  325. <meta name="if:Icon Borders" content="1"/>
  326. <meta name="if:Bigger Tags on Hover" content="0"/>
  327. <meta name="if:First Letter Styling" content="0"/>
  328. <meta name="if:Muses Page" content="0"/>
  329. <meta name="if:Calibri Font" content="0"/>
  330.  
  331.  
  332. <meta name="text:Popup Page RULES" content="This is a popup page that appears as 'RULES' in the navigation. Recommendation would be to use this for your rules/guidelines, but it's entirely up to you as to how you want to use this. Go wild! <3"/>
  333.  
  334.  
  335. <meta name="text:Navigation 1 Title" content="Title 1"/>
  336. <meta name="text:Navigation 1 Link" content="Link/URL 1"/>
  337.  
  338. <meta name="text:Navigation 2 Title" content="Title 2"/>
  339. <meta name="text:Navigation 2 Link" content="Link/URL 2"/>
  340.  
  341. <meta name="text:Navigation 3 Title" content="Title 3"/>
  342. <meta name="text:Navigation 3 Link" content="Link/URL 3"/>
  343.  
  344. <meta name="text:Navigation 4 Title" content="Title 4"/>
  345. <meta name="text:Navigation 4 Link" content="Link/URL 4"/>
  346.  
  347. <meta name="text:Navigation 5 Title" content="Title 5"/>
  348. <meta name="text:Navigation 5 Link" content="Link/URL 5"/>
  349.  
  350. <meta name="text:Navigation 6 Title" content="Title 6"/>
  351. <meta name="text:Navigation 6 Link" content="Link/URL 6"/>
  352.  
  353. <meta name="text:Navigation 7 Title" content="Title 7"/>
  354. <meta name="text:Navigation 7 Link" content="Link/URL 7"/>
  355.  
  356. <meta name="text:Navigation 8 Title" content="Title 8"/>
  357. <meta name="text:Navigation 8 Link" content="Link/URL 8"/>
  358.  
  359. <meta name="text:Navigation 9 Title" content="Title 9"/>
  360. <meta name="text:Navigation 9 Link" content="Link/URL 9"/>
  361.  
  362. <meta name="text:Navigation 10 Title" content="Title 10"/>
  363. <meta name="text:Navigation 10 Link" content="Link/URL 10"/>
  364.  
  365. <meta name="text:Navigation 11 Title" content="Title 11"/>
  366. <meta name="text:Navigation 11 Link" content="Link/URL 11"/>
  367.  
  368. <meta name="text:Navigation 12 Title" content="Title 12"/>
  369. <meta name="text:Navigation 12 Link" content="Link/URL 12"/>
  370.  
  371.  
  372. <style type="text/css">
  373.  
  374.  
  375.  
  376.  
  377. /* SCROLLBAR */
  378.  
  379. ::-webkit-scrollbar {
  380. background:transparent;
  381. height: 0px;
  382. display:none;
  383. width: 0px; /* remove scrollbar space */
  384. -ms-overflow-style: none; // IE 10+
  385. overflow: -moz-scrollbars-none; // Firefox
  386. }
  387.  
  388.  
  389. ::-webkit-scrollbar-thumb {
  390. background:transparent;
  391. }
  392.  
  393.  
  394. /* TEXT SELECTION */
  395.  
  396. ::selection {background: #000000; color:#ffffff;}
  397. ::-moz-selection {background: #000000; color:#ffffff;}
  398.  
  399.  
  400.  
  401.  
  402.  
  403.  
  404. /* TOOLTIP */
  405.  
  406.  
  407. #s-m-t-tooltip {
  408. z-index:999999;
  409. height:36px;
  410. line-height:36px;
  411. max-width:350px;
  412. margin-left:10px;
  413. margin-top:10px;
  414. font-weight:bold;
  415. background-color:{color:background};
  416. border:1px solid {color:border};
  417. padding-left:16px;
  418. padding-right:16px;
  419. font-family:calibri;
  420. font-style:normal;
  421. font-size:11px;
  422. color: {color:bold};
  423. text-transform:uppercase;
  424. letter-spacing:0px;
  425. }
  426.  
  427.  
  428.  
  429.  
  430.  
  431.  
  432. /* FOUNDATION */
  433.  
  434.  
  435. body {
  436. background-image:url({image:background});
  437. background-attachment:fixed;
  438. background-repeat:no-repeat;
  439. background-position:top left;
  440. background-color:{color:background};
  441. color:{color:Body Text};
  442. font-size:11px;
  443. line-height:14px;
  444. word-spacing:-1px;
  445. color:{color:Body Text};
  446. font-family: 'Frank Ruhl Libre', serif;
  447. {block:ifCalibriFont}
  448. font-family:calibri;
  449. font-size:10px;
  450. {/block:ifCalibriFont}
  451. word-wrap: break-word;
  452. }
  453.  
  454.  
  455. body a {
  456. font-size:11px;
  457. color:{color:links};
  458. font-weight:bold;
  459. text-decoration:none!important;
  460. -moz-transition-duration:1s;
  461. -webkit-transition-duration:1s;
  462. -o-transition-duration:1s;
  463. }
  464.  
  465. body a:hover {
  466. color:{color:LINKS HOVER and active};
  467. -moz-transition-duration:1s;
  468. -webkit-transition-duration:1s;
  469. -o-transition-duration:1s;
  470. }
  471.  
  472.  
  473.  
  474.  
  475.  
  476. /* BLOCKQUOTES */
  477.  
  478.  
  479. {block:IfBoxedBlockquotes}
  480.  
  481.  
  482. blockquote {
  483. padding-left:24px;
  484. padding-right:24px;
  485. padding-top:12px;
  486. padding-bottom:12px;
  487. margin-top:12px;
  488. margin-bottom:12px;
  489. text-align:justify;
  490. margin-left:0px;
  491. margin-right:0px;
  492. border:1px solid {color:border};
  493. word-wrap: break-word!important;
  494. }
  495.  
  496.  
  497.  
  498. blockquote blockquote {
  499. width: auto;
  500. overflow: hidden;
  501. border-left:1px solid {color:border}important;
  502. border-top:0px!important;
  503. border-bottom:0px!important;
  504. border-right:0px!important;
  505. outline:0px solid transparent;
  506. padding-left:24px;
  507. padding-right:0px;
  508. padding-top:0px;
  509. padding-bottom:0px;
  510. margin-top:12px!important;
  511. margin-bottom:0px!important;
  512. }
  513. {/block:IfBoxedBlockquotes}
  514.  
  515.  
  516.  
  517.  
  518. {block:IfNotBoxedBlockquotes}
  519. blockquote {
  520. width: auto;
  521. overflow: hidden;
  522. padding-left:24px;
  523. margin-top:0px;
  524. margin-left:0px;
  525. margin-right:0px;
  526. text-align:justify;
  527. margin-bottom:24px;
  528. border-left:1px solid {color:border};
  529. background-color:transparent;
  530. word-wrap: break-word!important;
  531. }
  532.  
  533.  
  534.  
  535. blockquote blockquote {
  536. width: auto;
  537. overflow: hidden;
  538. margin-top:15px;
  539. margin-bottom:15px;
  540. }
  541.  
  542.  
  543.  
  544. blockquote img {
  545. max-width:386px!important;
  546. height:auto;
  547. }
  548. {/block:IfNotBoxedBlockquotes}
  549.  
  550.  
  551.  
  552.  
  553. /* FONT-RELATED */
  554.  
  555.  
  556. small, sub, sup {
  557. font-size:10px;
  558. }
  559.  
  560.  
  561. sub {
  562. font-size:10px;
  563. vertical-align: baseline!important;
  564. position: relative!important;
  565. top: 0em!important;
  566. line-height:14px;
  567. }
  568.  
  569.  
  570.  
  571. sup {
  572. font-size:10px;
  573. vertical-align: baseline!important;
  574. position: relative!important;
  575. top: 0em!important;
  576. line-height:14px;
  577. }
  578.  
  579.  
  580.  
  581.  
  582. ul, ol {
  583. padding:0;
  584. list-style: decimal outside;
  585. margin-left:8px;
  586. }
  587.  
  588.  
  589. li {
  590. padding-left:2px;
  591. }
  592.  
  593.  
  594.  
  595. big {
  596. font-size:120%;
  597. }
  598.  
  599.  
  600.  
  601.  
  602. b, bold, strong {
  603. font-size:9.5px;
  604. text-transform:uppercase;
  605. font-family: calibri, sans-serif;
  606. font-weight:bold!important;
  607. color:{color:Bold};
  608. padding-right:0px;
  609. padding-left:0px;
  610. }
  611.  
  612.  
  613.  
  614. em, i, italic {
  615. color: {color:Italic};
  616. }
  617.  
  618.  
  619.  
  620. {block:ifFirstLetterStyling}
  621. u, u a {
  622. background-color: {color:background};
  623. border: 1px solid {color:border};
  624. font-family:{text:Custom Capitals Font}, 'Frank Ruhl Libre', serif;
  625. color:{color:first letter};!important;
  626. text-decoration:none!important;
  627. font-style:normal!important;
  628. font-weight:lighter!important;
  629. text-transform:uppercase!important;
  630. float:left;
  631. margin-top:2px;
  632. height:53px;
  633. width:53px;
  634. font-size: 40px;
  635. margin-right: 11px;
  636. position: relative;
  637. text-align: center;
  638. vertical-align: middle;
  639. line-height: 56px;
  640. text-shadow:none!important;
  641. }
  642. {/block:ifFirstLetterStyling}
  643.  
  644.  
  645.  
  646. pre {
  647. font-weight:lighter;
  648. text-transform:uppercase;
  649. color: #d1d1d1;
  650. line-height:155%;
  651. font-weight:lighter!important;
  652. color:#e6e6e6;
  653. font-size:8.4px;
  654. letter-spacing:0.6px;
  655. white-space: pre-wrap;
  656. white-space: -moz-pre-wrap;
  657. white-space: -pre-wrap;
  658. white-space: -o-pre-wrap;
  659. word-wrap: break-word;
  660. }
  661.  
  662.  
  663. pre a {
  664. color:{color:links};
  665. -moz-transition-duration:2s;
  666. -webkit-transition-duration:2s;
  667. -o-transition-duration:2s;
  668. }
  669.  
  670.  
  671. h1 {
  672. border: 1px solid {color:border};
  673. background-color: transparent;
  674. line-height:24px;
  675. overflow:hidden;
  676. margin-top:12px;
  677. margin-bottom:12px;
  678. padding-top:6px;
  679. padding-bottom:6px;
  680. padding-left:24px;
  681. padding-right:24px;
  682. line-height:14px;
  683. z-index:9999999;
  684. text-align:left!important;
  685. font-family:calibri;
  686. font-weight:bold;
  687. font-size:12px!important;
  688. text-transform:uppercase;
  689. color:{color:bold}!important;
  690. }
  691.  
  692.  
  693. h1 a {
  694. color:{color:bold}!important;
  695. font-size:10px!important;
  696. }
  697.  
  698.  
  699.  
  700.  
  701. h2 {
  702. font-family: calibri, sans-serif;
  703. font-size:13.4px!important;
  704. text-transform:uppercase!important;
  705. color:{color:bold};
  706. letter-spacing:-0.4px;
  707. }
  708.  
  709.  
  710.  
  711. h2 a {
  712. font-family: calibri, sans-serif;
  713. font-size:13.4px!important;
  714. text-transform:uppercase!important;
  715. color:{color:links};
  716. letter-spacing:-0.4px;
  717. }
  718.  
  719.  
  720.  
  721.  
  722.  
  723. h4 {
  724. border:1px solid {color:border};
  725. margin-bottom:12px;
  726. margin-top:12px;
  727. padding-left:24px;
  728. height:24px;
  729. margin-right:0px;
  730. text-align:left;
  731. font-family:calibri;
  732. font-style:normal;
  733. font-weight:bold;
  734. font-size:10px;
  735. line-height:24px;
  736. color: {color:bold};
  737. text-transform:uppercase;
  738. }
  739.  
  740.  
  741.  
  742. h4:first-child {
  743. margin-top:0px;
  744. }
  745.  
  746.  
  747.  
  748.  
  749. h4 a {
  750. font-family:calibri;
  751. font-style:normal;
  752. font-weight:700;
  753. font-size:10px;
  754. line-height:10px;
  755. text-shadow: 0px 0px 1px #000;
  756. color: #e8e8e8;
  757. }
  758.  
  759.  
  760.  
  761.  
  762.  
  763.  
  764.  
  765.  
  766.  
  767.  
  768. /* CONTAINER */
  769.  
  770.  
  771. #container {
  772. z-index:9999;
  773. left: 50%;
  774. margin-left:-425px;
  775. margin-top:75px;
  776. position:fixed;
  777. width:849px;
  778. height:485px;
  779. outline:1px solid {color:border};
  780. overflow:hidden;
  781. background-color:{color:background};
  782. }
  783.  
  784.  
  785.  
  786.  
  787.  
  788.  
  789. .sidebar {
  790. position:absolute;
  791. width:275px;
  792. height:435px;
  793. left:25px;
  794. top:25px;
  795. overflow-y:hidden;
  796. outline:1px solid {color:border};
  797. }
  798.  
  799.  
  800.  
  801.  
  802.  
  803.  
  804.  
  805.  
  806. .sidebarbg {
  807. -webkit-filter: brightness(1) contrast(1) saturate(1);
  808. opacity:1;
  809. background-image:url('{SideImageOne}');
  810. background-position:top left;
  811. position:absolute;
  812. margin-top:1px!important;
  813. margin-left:0px!important;
  814. outline:0px solid {color:border};
  815. min-width:250px;
  816. width:275px;
  817. height:435px;
  818. }
  819.  
  820.  
  821.  
  822.  
  823.  
  824.  
  825.  
  826. .inner {
  827. position:absolute;
  828. width:225px;
  829. margin-left:25px;
  830. margin-top:26px;
  831. outline:1px solid {color:border};
  832. background:rgba(0,0,0,.65)
  833. padding:0px;
  834. -webkit-box-shadow: 0px 0px 48px 4px rgba(0,0,0,1);
  835. -moz-box-shadow: 0px 0px 48px 4px rgba(0,0,0,1);
  836. box-shadow: 0px 0px 48px 4px rgba(0,0,0,1);
  837. }
  838.  
  839.  
  840.  
  841.  
  842.  
  843.  
  844. .sidebarimgtop {
  845. -webkit-filter: brightness(1) contrast(1) saturate(1);
  846. background-image:url('{SideImageOne}');
  847. background-position:top left;
  848. margin-top:0px!important;
  849. margin-left:0px!important;
  850. outline:1px solid {color:border};
  851. overflow:hidden;
  852. width:225px;
  853. height:120px!important;
  854. }
  855.  
  856.  
  857.  
  858.  
  859. .sidebarimgbottom {
  860. -webkit-filter: brightness(1) contrast(1) saturate(1);
  861. background-image:url('{SideImageOne}');
  862. background-position:top left;
  863. margin-left:0px!important;
  864. margin-top:1px;
  865. outline:0px solid {color:border};
  866. overflow:hidden;
  867. width:225px;
  868. height:120px;
  869. }
  870.  
  871.  
  872.  
  873.  
  874. .desctitle {
  875. position:absolute;
  876. font-family: 'letter_1882regular';
  877. color:{color:title};
  878. font-weight:lighter!important;
  879. text-transform:lowercase;
  880. font-size:73px;
  881. width:225px;
  882. left:0px;
  883. top:115px;
  884. line-height:14px;
  885. letter-spacing:-5px;
  886. text-align:right!important;
  887. z-index:999;
  888. pointer-events:none;
  889. opacity:.84;
  890. text-shadow: 0px 0px 13px #000000;
  891. }
  892.  
  893.  
  894.  
  895.  
  896. .pagination {
  897. width:225px;
  898. height:24px;
  899. outline:1px solid #151515;
  900. border-bottom:1px solid {color:border};
  901. background-color:{color:background};
  902. margin-bottom:-1px;
  903. text-align: center;
  904. line-height:24px;
  905. margin-left:0px;
  906. overflow:hidden;
  907. font-family:calibri!important;
  908. }
  909.  
  910.  
  911.  
  912.  
  913.  
  914. .pagination b {
  915. color:{color:pagination links};!important;
  916. }
  917.  
  918.  
  919.  
  920.  
  921. .pagination a {
  922. display:inline-block;
  923. box-sizing: border-box;
  924. font-size:9.5px;
  925. padding-left:24px;
  926. padding-right:24px;
  927. font-family: calibri, sans-serif;
  928. text-transform:uppercase;
  929. width:100px;
  930. max-width:100px;
  931. height:25px;
  932. outline:0px solid {color:border};
  933. line-height:25px;
  934. margin-left:-1px;
  935. margin-right:0px;
  936. color:{color:bold};
  937. font-weight:bold!important;
  938. overflow:hidden; /* older browsers */
  939. }
  940.  
  941.  
  942.  
  943. .pagination a:last-child {
  944. margin-right:0px!important;
  945. }
  946.  
  947.  
  948.  
  949. .pagination a:hover {
  950. font-weight:bold!important;
  951. color:{color:links}!important;
  952. -moz-transition-duration:2s;
  953. -webkit-transition-duration:2s;
  954. -o-transition-duration:2s;
  955. }
  956.  
  957.  
  958.  
  959.  
  960. .description {
  961. width:177px;
  962. height:73px;
  963. padding-left:24px;
  964. padding-right:24px;
  965. outline:1px solid {color:border};
  966. border-top:24px solid {color:background};
  967. border-bottom:24px solid {color:background};
  968. background-color:{color:background};
  969. margin-top:-3px;
  970. line-height:15px;
  971. text-align:justify;
  972. overflow-y:scroll;
  973. -moz-transition-duration:1.5s;
  974. -webkit-transition-duration:1.5s;
  975. -o-transition-duration:1.5s;
  976. }
  977.  
  978.  
  979.  
  980. .description a {
  981. color:{color:bold};
  982. font-family: calibri;
  983. text-transform:uppercase;
  984. font-size:10px;
  985. font-weight:bold!important;
  986. -moz-transition-duration:2s;
  987. -webkit-transition-duration:2s;
  988. -o-transition-duration:2s;
  989. }
  990.  
  991.  
  992.  
  993.  
  994.  
  995. {block:ifFirstLetterStyling}
  996. .description:first-letter {
  997. background-color: {color:background};
  998. border: 1px solid {color:border};
  999. font-family:{text:Custom Capitals Font}, 'Frank Ruhl Libre', serif;
  1000. color:{color:first letter};!important;
  1001. text-decoration:none!important;
  1002. font-style:normal!important;
  1003. font-weight:lighter!important;
  1004. text-transform:uppercase!important;
  1005. float:left;
  1006. margin-top:2px;
  1007. height:50px;
  1008. padding-left:13px;
  1009. padding-right:13px;
  1010. font-size: 40px;
  1011. margin-right: 11px;
  1012. position: relative;
  1013. text-align: center;
  1014. vertical-align: middle;
  1015. line-height: 54px;
  1016. }
  1017. {/block:ifFirstLetterStyling}
  1018.  
  1019.  
  1020.  
  1021.  
  1022.  
  1023.  
  1024. #pagination {
  1025. position:absolute;
  1026. z-index:999;
  1027. font-family:calibri;
  1028. font-size:10px;
  1029. width:197px;
  1030. height:24px;
  1031. outline:1px solid {color:border};
  1032. background-color:{color:background};
  1033. text-align: center;
  1034. margin-left:25px;
  1035. margin-right:24px;
  1036. line-height:24px;
  1037. margin-top:0px!important;
  1038. overflow:hidden;
  1039. font-family:calibri!important;
  1040. text-shadow: 0px 0px 1px rgba(69, 64, 64, 0.08);
  1041. -webkit-user-select: none; /* Chrome all / Safari all */
  1042. -moz-user-select: none; /* Firefox all */
  1043. -ms-user-select: none; /* IE 10+ */
  1044. user-select: none; /* Likely future */
  1045. }
  1046.  
  1047.  
  1048.  
  1049.  
  1050. #pagination a {
  1051. margin-right:40px!important;
  1052. font-size:9px!important;
  1053. color:{color:pagination links};!important;
  1054. }
  1055.  
  1056.  
  1057.  
  1058.  
  1059. #pagination a:last-child {
  1060. margin-right:0px!important;
  1061. }
  1062.  
  1063.  
  1064.  
  1065.  
  1066. #sideheaderbottom {
  1067. position:fixed;
  1068. width:478px;
  1069. height:24px;
  1070. background-color:{color:background};
  1071. border:1px solid {color:border};
  1072. text-align: center;
  1073. left:254px;
  1074. top:612px;
  1075. margin-left:-113px;
  1076. z-index:9999999;
  1077. }
  1078.  
  1079.  
  1080.  
  1081.  
  1082.  
  1083.  
  1084.  
  1085.  
  1086.  
  1087.  
  1088. /* POSTS: GENERAL */
  1089.  
  1090.  
  1091. #content {
  1092. position:absolute;
  1093. text-align:justify;
  1094. height:363px;
  1095. width:450px;
  1096. left:326px;
  1097. top:25px;
  1098. background-color:{color:background};
  1099. border-bottom:24px solid {color:background};
  1100. overflow-y:scroll;
  1101. padding-left:24px;
  1102. padding-right:24px;
  1103. z-index:9999;
  1104. outline:1px solid {color:border}!important;
  1105. }
  1106.  
  1107.  
  1108.  
  1109.  
  1110. #contenttopspace {
  1111. position:fixed;
  1112. width:498px;
  1113. height:24px;
  1114. background-color:{color:background};
  1115. margin-left:-24px;
  1116. margin-top:0px;
  1117. z-index:999;
  1118. }
  1119.  
  1120.  
  1121.  
  1122.  
  1123.  
  1124.  
  1125.  
  1126. .posts {
  1127. width:450px;
  1128. padding-right:25px;
  1129. padding-left:25px;
  1130. margin-left:-25px;
  1131. word-wrap: break-word;
  1132. text-align:justify;
  1133. line-height:14px;
  1134. margin-bottom:60px;
  1135. }
  1136.  
  1137.  
  1138.  
  1139.  
  1140.  
  1141. .posts:last-child {
  1142. margin-bottom:0px!important;
  1143. }
  1144.  
  1145.  
  1146.  
  1147.  
  1148.  
  1149. .posts a {
  1150. font-family: calibri;
  1151. text-transform:uppercase;
  1152. font-size:10px;
  1153. font-weight:bold!important;
  1154. -moz-transition-duration:2s;
  1155. -webkit-transition-duration:2s;
  1156. -o-transition-duration:2s;
  1157. }
  1158.  
  1159.  
  1160.  
  1161. .posts a:hover {
  1162. color:{color:LINKS HOVER and active};
  1163. -moz-transition-duration:2s;
  1164. -webkit-transition-duration:2s;
  1165. -o-transition-duration:2s;
  1166. }
  1167.  
  1168.  
  1169. .posts img {
  1170. max-width: -webkit-calc(100% - 22px);
  1171. max-width: -moz-calc(100% - 22px);
  1172. max-width: calc(100% - 22px);
  1173. height:auto;
  1174. }
  1175.  
  1176.  
  1177.  
  1178.  
  1179.  
  1180.  
  1181.  
  1182.  
  1183.  
  1184.  
  1185.  
  1186. /* TEXT-WRAPPING AROUND ICONS/IMAGES */
  1187.  
  1188.  
  1189. #wrap {
  1190. margin-top:12px;
  1191. margin-bottom: 12px;
  1192. }
  1193.  
  1194.  
  1195. #wrap img {
  1196. width: auto;
  1197. overflow: hidden;
  1198. margin-top:0px!important;
  1199. margin-bottom:0px!important;
  1200. padding-right:3px;
  1201. padding-bottom:3px;
  1202. {block:IfTextWrapping}
  1203. float:left;
  1204. margin-right:14px;
  1205. {/block:IfTextWrapping}
  1206. {block:ificonborders}
  1207. padding:9px;
  1208. border:1px solid {color:border};
  1209. {/block:ificonborders}
  1210. -webkit-filter: brightness(1) contrast(1) saturate(1);
  1211. }
  1212.  
  1213.  
  1214.  
  1215. {block:IfTextWrapping}
  1216. #wrap blockquote img {
  1217. margin-top:12px!important;
  1218. margin-bottom:10px!important;
  1219. margin-left:12px;
  1220. margin-right:0px!important;
  1221. float:right;
  1222. }
  1223. {/block:IfTextWrapping}
  1224.  
  1225.  
  1226.  
  1227.  
  1228.  
  1229.  
  1230.  
  1231.  
  1232.  
  1233.  
  1234.  
  1235. /* NAVIGATION BAR */
  1236.  
  1237.  
  1238. .navigation {
  1239. top:437px;
  1240. left:325px;
  1241. position:absolute;
  1242. width: 500px;
  1243. border:0px solid {color:border};
  1244. height:25px;
  1245. }
  1246.  
  1247.  
  1248.  
  1249.  
  1250.  
  1251. button {
  1252. display:inline-block;
  1253. box-sizing: border-box;
  1254. font-size:9.5px;
  1255. text-align:center;
  1256. padding-left:24px;
  1257. padding-right:24px;
  1258. font-family: calibri, sans-serif;
  1259. text-transform:uppercase;
  1260. width:127px;
  1261. max-width:127px;
  1262. height:25px;
  1263. background-color:{color:background};
  1264. border:1px solid {color:border};
  1265. line-height:22px;
  1266. margin-left:0px;
  1267. margin-right:-4px;
  1268. color:{color:bold};
  1269. font-weight:bold!important;
  1270. overflow:hidden; /* older browsers */
  1271. {block:ifMusesPage}
  1272. width:102px;
  1273. max-width:102px;
  1274. {/block:ifMusesPage}
  1275. }
  1276.  
  1277.  
  1278.  
  1279.  
  1280. button:focus {
  1281. border:1px solid {color:border}!important;
  1282. outline:0px solid {color:border}!important;
  1283. color:{color:LINKS HOVER and active};!important;
  1284. }
  1285.  
  1286.  
  1287. button:active {
  1288. border:1px solid {color:border}!important;
  1289. outline:0px solid {color:border}!important;
  1290. color:{color:LINKS HOVER and active};!important;
  1291. }
  1292.  
  1293.  
  1294.  
  1295.  
  1296. #tabcontent {
  1297. position:absolute;
  1298. text-align:justify;
  1299. height:343px;
  1300. width:177px;
  1301. left:50px;
  1302. top:49px;
  1303. overflow-y:hidden;
  1304. padding-top:0px!important;
  1305. background-color:{color:background};!important;
  1306. border-top:24px solid {color:background};
  1307. border-bottom:24px solid {color:background};
  1308. overflow-y:scroll;
  1309. padding-left:24px;
  1310. padding-right:24px;
  1311. z-index:9999;
  1312. outline:1px solid {color:border}!important;
  1313. }
  1314.  
  1315.  
  1316.  
  1317. #tabcontent a {
  1318. font-family:calibri;
  1319. font-family:8px!important;
  1320. color:{color:italic};
  1321. text-transform:uppercase;
  1322. }
  1323.  
  1324.  
  1325.  
  1326.  
  1327.  
  1328.  
  1329.  
  1330. /* POSTS: TEXT */
  1331.  
  1332.  
  1333. #text {
  1334. border:1px solid {color:border};
  1335. margin-left:-25px;
  1336. margin-right:-25px;
  1337. margin-bottom:-25px;
  1338. margin-top:-1px;
  1339. padding-left:24px;
  1340. padding-right:24px;
  1341. padding-top:12px;
  1342. padding-bottom:12px;
  1343.  
  1344. }
  1345.  
  1346.  
  1347. #textbody {
  1348. {block:PermaLinkPage}
  1349. margin-top:-24px;
  1350. padding-top:0px;
  1351. {/block:PermaLinkPage}
  1352. margin-top:3px;
  1353. }
  1354.  
  1355.  
  1356.  
  1357.  
  1358.  
  1359. /* POSTS: PHOTO/PHOTOSETS */
  1360.  
  1361.  
  1362. #psingle {
  1363. margin-top:24px!important;
  1364. margin-top:-1px;
  1365. margin-right:-24px;
  1366. -webkit-filter: brightness(.7) contrast(1.1) saturate(0.9);
  1367. -webkit-transition: all 0.9s ease-in-out;
  1368. -moz-transition: all 0.9s ease-in-out;
  1369. -o-transition: all 0.9s ease-in-out;
  1370. -ms-transition: all 0.9s ease-in-out;
  1371. transition: all 0.9s ease-in-out;
  1372. }
  1373.  
  1374.  
  1375.  
  1376. #psingle:hover {
  1377. -webkit-filter: brightness(.7) contrast(1.1) saturate(0.9);
  1378. -webkit-transition: all 0.9s ease-in-out;
  1379. -moz-transition: all 0.9s ease-in-out;
  1380. -o-transition: all 0.9s ease-in-out;
  1381. -ms-transition: all 0.9s ease-in-out;
  1382. transition: all 0.9s ease-in-out;
  1383. }
  1384.  
  1385.  
  1386.  
  1387.  
  1388.  
  1389. #pset {
  1390. background-color:{color:background};
  1391. margin-top:24px!important;
  1392. margin-bottom:-24px;
  1393. margin-left:0px;
  1394. -webkit-filter: brightness(.88) contrast(1.1) saturate(0.85);
  1395. -webkit-transition: all 0.9s ease-in-out;
  1396. -moz-transition: all 0.9s ease-in-out;
  1397. -o-transition: all 0.9s ease-in-out;
  1398. -ms-transition: all 0.9s ease-in-out;
  1399. transition: all 0.9s ease-in-out;
  1400. }
  1401.  
  1402.  
  1403.  
  1404.  
  1405. #pset:hover {
  1406. -webkit-filter: brightness(.88) contrast(1.1) saturate(0.85);
  1407. -webkit-transition: all 0.9s ease-in-out;
  1408. -moz-transition: all 0.9s ease-in-out;
  1409. -o-transition: all 0.9s ease-in-out;
  1410. -ms-transition: all 0.9s ease-in-out;
  1411. transition: all 0.9s ease-in-out;
  1412. }
  1413.  
  1414.  
  1415.  
  1416.  
  1417. #pcaption {
  1418. margin-top:28px;
  1419. margin-left:-24px;
  1420. margin-right:-24px;
  1421. padding-left:24px;
  1422. padding-right:24px;
  1423. }
  1424.  
  1425.  
  1426.  
  1427. #pcaption a {
  1428. font-size:10px;
  1429. }
  1430.  
  1431.  
  1432.  
  1433.  
  1434.  
  1435.  
  1436.  
  1437.  
  1438. /* POSTS: QUOTE */
  1439.  
  1440.  
  1441. #quotebox {
  1442. outline:1px solid {color:border};
  1443. padding-left:24px;
  1444. padding-right:24px;
  1445. padding-top:24px;
  1446. padding-bottom:0px;
  1447. margin-left:0px;
  1448. margin-right:0px;
  1449. margin-bottom:0px;
  1450. margin-top:24px;
  1451. }
  1452.  
  1453.  
  1454.  
  1455. #quote {
  1456. font-size:14px;
  1457. text-align:left;
  1458. padding-top:0px;
  1459. padding-bottom:0px;
  1460. letter-spacing:-0.6px;
  1461. line-height:14px;
  1462. }
  1463.  
  1464.  
  1465.  
  1466.  
  1467.  
  1468.  
  1469. .source {
  1470. font-family:calibri;
  1471. font-weight:bold;
  1472. text-align:left;
  1473. font-size:9.5px;
  1474. height:24px;
  1475. line-height:24px;
  1476. color: #e8e8e8;
  1477. text-transform:uppercase;
  1478. border-top:1px solid {color:border};
  1479. letter-spacing:0.2px;
  1480. margin-top:-1px;
  1481. padding-right:24px;
  1482. padding-left:24px;
  1483. margin-top:24px;
  1484. margin-left:-25px;
  1485. margin-right:-25px;
  1486. }
  1487.  
  1488.  
  1489.  
  1490.  
  1491.  
  1492.  
  1493. /* POSTS: LINK */
  1494.  
  1495.  
  1496. #linkpost {
  1497. margin-right:-25px;
  1498. margin-left:-25px!important;
  1499. {block:PermaLinkPage}
  1500. margin-top:0px;
  1501. {/block:PermaLinkPage}
  1502. padding-top:0px;
  1503. margin-bottom:-25px;
  1504. }
  1505.  
  1506.  
  1507.  
  1508. #link {
  1509. margin-top:32px;
  1510. border:1px solid {color:border};
  1511. padding:24px;
  1512. }
  1513.  
  1514.  
  1515. #link a {
  1516. font-size:12px;
  1517. }
  1518.  
  1519.  
  1520.  
  1521.  
  1522.  
  1523.  
  1524.  
  1525.  
  1526.  
  1527. /* POSTS: CHAT */
  1528.  
  1529.  
  1530. #chatbox {
  1531. margin-right:-25px;
  1532. margin-left:-25px!important;
  1533. padding-bottom:0px!important;
  1534. }
  1535.  
  1536.  
  1537.  
  1538. #chat {
  1539. margin-top:25px;
  1540. border-top:1px solid {color:border};
  1541. padding-top:27px;
  1542. padding-left:24px;
  1543. padding-right:24px;
  1544. }
  1545.  
  1546.  
  1547.  
  1548.  
  1549.  
  1550.  
  1551. /* POSTS: AUDIO */
  1552.  
  1553.  
  1554. #audiobox {
  1555. {block:PermaLinkPage}
  1556. margin-top:0px;
  1557. {/block:PermaLinkPage}
  1558. margin-top:-24px!important;
  1559. padding-left:24px;
  1560. padding-right:24px;
  1561. padding-bottom:20px;
  1562. padding-top:24px;
  1563. margin-left:0px;
  1564. margin-right:0px;
  1565. margin-bottom:-18px;
  1566. }
  1567.  
  1568.  
  1569.  
  1570.  
  1571. .player {
  1572. opacity: 1;
  1573. position: absolute;
  1574. z-index: 1;
  1575. line-height:33px;
  1576. margin-left: -16px;
  1577. margin-top:35px;
  1578. display: block;
  1579. }
  1580.  
  1581.  
  1582.  
  1583.  
  1584. .audioplayer {
  1585. width: 24px;
  1586. height: 24px;
  1587. margin-left: 0px;
  1588. overflow: hidden;
  1589. padding: 0px;
  1590. }
  1591.  
  1592.  
  1593.  
  1594. .audioinfo {
  1595. border:1px solid {color:border};
  1596. margin-left: -24px;
  1597. margin-right: -24px;
  1598. padding-left:48px;
  1599. padding-right:24px;
  1600. margin-top:24px;
  1601. margin-bottom:-4px;
  1602. height:48px;
  1603. line-height:48px;
  1604. display: block;
  1605. font-family:calibri;
  1606. font-weight:bold;
  1607. text-transform: uppercase;
  1608. text-align: left;
  1609. letter-spacing:0.2px;
  1610. word-spacing:-0.5px;
  1611. overflow:hidden;
  1612. font-size:9.5px;
  1613. color:{color:bold};
  1614. }
  1615.  
  1616.  
  1617.  
  1618. #acaption {
  1619. border-top:0px solid #151515;
  1620. padding-top:12px;
  1621. padding-bottom:12px;
  1622. margin-left:-24px;
  1623. padding-left:24px;
  1624. }
  1625.  
  1626. #acaption a {
  1627. font-size:10px;
  1628. }
  1629.  
  1630.  
  1631.  
  1632.  
  1633.  
  1634.  
  1635.  
  1636.  
  1637.  
  1638. /* POSTS: VIDEO */
  1639.  
  1640.  
  1641. .video-content {
  1642. -webkit-filter: brightness(.88) contrast(1.1) saturate(0.85);
  1643. position: relative;
  1644. padding-bottom: 56.25%;
  1645. padding-top: 30px;
  1646. height: 0;
  1647. overflow: hidden;
  1648. }
  1649.  
  1650. .video-content iframe,
  1651. .video-content object,
  1652. .video-content embed {
  1653. position: absolute;
  1654. top: 0;
  1655. left: 0;
  1656. width: 100%;
  1657. height: 100%;
  1658. }
  1659.  
  1660.  
  1661.  
  1662.  
  1663.  
  1664.  
  1665.  
  1666. /* POSTS: ASK */
  1667.  
  1668.  
  1669. #answer {
  1670. padding-left:24px;
  1671. padding-right:24px;
  1672. margin-left:-25px;
  1673. margin-right:-25px;
  1674. }
  1675.  
  1676.  
  1677. #question {
  1678. width: 80%;
  1679. margin-top:0px;
  1680. height:73px;
  1681. margin-left:-25px;
  1682. margin-right:-25px;
  1683. }
  1684.  
  1685.  
  1686.  
  1687. #ask {
  1688. z-index:999999!important;
  1689. float:left;
  1690. font-family:calibri, sans-serif;
  1691. text-transform:uppercase;
  1692. position: absolute;
  1693. font-weight:bold;
  1694. background-color:{color:background};
  1695. font-size:10px;
  1696. line-height:12px!important;
  1697. width:385px;
  1698. min-height:24px;
  1699. max-height:24px;
  1700. overflow:scroll;
  1701. margin-top:0px;
  1702. margin-left:1px;
  1703. margin-bottom:0px;
  1704. padding-left:24px;
  1705. padding-right:24px;
  1706. outline:solid 1px {color:border};
  1707. border-top:22px solid {color:background};
  1708. border-bottom:22px solid {color:background};
  1709. -moz-transition-duration:1.5s;
  1710. -webkit-transition-duration:1.5s;
  1711. -o-transition-duration:1.5s;
  1712. }
  1713.  
  1714.  
  1715.  
  1716. #ask:hover {
  1717. width:451px;
  1718. z-index:999999!important;
  1719. max-height:46px!important;
  1720. -moz-transition-duration:1.5s;
  1721. -webkit-transition-duration:1.5s;
  1722. -o-transition-duration:1.5s;
  1723. }
  1724.  
  1725.  
  1726.  
  1727.  
  1728. #ask a {
  1729. font-weight:lighter;
  1730. color:{color:bold};
  1731. font-size:9.5px;
  1732. text-decoration:none;
  1733. }
  1734.  
  1735.  
  1736.  
  1737. #ask b {
  1738. color:{color:bold};
  1739. font-size:9.5px;
  1740. line-height:11px;
  1741. font-family:calibri!important;
  1742. }
  1743.  
  1744.  
  1745.  
  1746.  
  1747.  
  1748. .letterask {
  1749. font-family:{text:Custom Capitals Font}, 'Frank Ruhl Libre', serif;
  1750. position:relative;
  1751. font-weight:lighter;
  1752. position:absolute;
  1753. text-align:center;
  1754. font-size:55px;
  1755. margin-left:435px;
  1756. outline:1px solid {color:border};
  1757. padding-top:28px;
  1758. padding-bottom:26px;
  1759. padding-left:20px;
  1760. padding-right:23px;
  1761. color:{color:border};
  1762. -webkit-user-select: none; /* Chrome all / Safari all */
  1763. -moz-user-select: none; /* Firefox all */
  1764. -ms-user-select: none; /* IE 10+ */
  1765. user-select: none; /* Likely future */
  1766. }
  1767.  
  1768.  
  1769.  
  1770.  
  1771. #response {
  1772. margin-top:24px;
  1773. padding-top:0px;
  1774. padding-bottom:0px;
  1775. }
  1776.  
  1777.  
  1778.  
  1779. #response img {
  1780. float:left;
  1781. position:relative;
  1782. margin-left:-1px!important;
  1783. margin-right:13px;
  1784. margin-top:2px;
  1785. margin-bottom:5px;
  1786. padding:8px;
  1787. border:1px solid {color:border};
  1788. -webkit-filter: brightness(1) contrast(1) saturate(1);
  1789. }
  1790.  
  1791.  
  1792.  
  1793.  
  1794.  
  1795.  
  1796.  
  1797. /* POST INFORMATION */
  1798.  
  1799.  
  1800. .permalinkbar {
  1801. height:24px;
  1802. line-height:24px;
  1803. {block:PermaLinkPage}
  1804. margin-top:-27px!important;
  1805. {/block:PermaLinkPage}
  1806. position:relative;
  1807. z-index:99999999!important;
  1808. border:1px solid {color:border};
  1809. margin-top:-2px!important;
  1810. margin-left:-25px;
  1811. margin-right:-25px;
  1812. }
  1813.  
  1814.  
  1815.  
  1816. .permalinkbuttons {
  1817. display:inline-block;
  1818. box-sizing: border-box;
  1819. height:24px;
  1820. line-height:14px;
  1821. outline:0px solid {color:border};
  1822. font-size:12.6px!important;
  1823. margin-left:-2px!important;
  1824. margin-bottom:0px!important;
  1825. }
  1826.  
  1827.  
  1828.  
  1829. .permalinkbuttons a {
  1830. display:inline-block;
  1831. box-sizing: border-box;
  1832. font-family:calibri;
  1833. display:inline-block;
  1834. height:24px;
  1835. line-height:24px;
  1836. letter-spacing:0px;
  1837. margin-left:-1px;
  1838. margin-right:-1px;
  1839. outline:0px solid {color:border};
  1840. width:251px;
  1841. background-color:transparent;
  1842. font-weight:bold!important;
  1843. color:{color:permalink};
  1844. font-size:9.5px;
  1845. -moz-transition-duration:2s;
  1846. -webkit-transition-duration:2s;
  1847. -o-transition-duration:2s;
  1848. -webkit-user-select: none; /* Chrome all / Safari all */
  1849. -moz-user-select: none; /* Firefox all */
  1850. -ms-user-select: none; /* IE 10+ */
  1851. user-select: none; /* Likely future */
  1852. }
  1853.  
  1854.  
  1855.  
  1856.  
  1857. .permalinkbuttons a:hover {
  1858. font-weight:bold!important;
  1859. color:{links hover};
  1860. -moz-transition-duration:2s;
  1861. -webkit-transition-duration:2s;
  1862. -o-transition-duration:2s;
  1863. }
  1864.  
  1865.  
  1866.  
  1867.  
  1868.  
  1869. #tagsbox {
  1870. border-left:0px solid {color:border};
  1871. border-right:0px solid {color:border};
  1872. border-bottom:1px solid {color:border};
  1873. border-top:0px solid {color:border};
  1874. margin-top:0px;
  1875. padding-top:10px;
  1876. padding-bottom:10px;
  1877. padding-left:24px;
  1878. padding-right:24px;
  1879. margin-left:-24px;
  1880. margin-right:-24px;
  1881. margin-bottom:24px;
  1882. }
  1883.  
  1884.  
  1885.  
  1886. .tags {
  1887. font-family: calibri;
  1888. font-weight:bold!important;
  1889. color:{color:tags};
  1890. text-transform:uppercase!important;
  1891. font-style:normal;
  1892. line-height:150%;
  1893. font-size:10px;
  1894. text-align:justify;
  1895. -moz-text-align-last: center; /* Code for Firefox */
  1896. text-align-last: center;
  1897. -moz-transition-duration:2s;
  1898. -webkit-transition-duration:2s;
  1899. -o-transition-duration:2s;
  1900. }
  1901.  
  1902.  
  1903.  
  1904. .tags a {
  1905. text-decoration:none!important;
  1906. font-weight:bold!important;
  1907. font-size:9px;
  1908. margin-right:0px;
  1909. text-transform:uppercase!important;
  1910. font-family: calibri;
  1911. color:{color:tags}!important;
  1912. -moz-transition-duration:2s;
  1913. -webkit-transition-duration:0.2
  1914. }
  1915.  
  1916.  
  1917. .tags a:hover {
  1918. color:#ffffff!important;
  1919. -moz-transition-duration:1s;
  1920. -webkit-transition-duration:1s;
  1921. -o-transition-duration:1s;
  1922. {block:ifBiggerTagsonHover}
  1923. font-size:10px!important;
  1924. {block:ifBiggerTagsonHover}
  1925. }
  1926.  
  1927.  
  1928.  
  1929.  
  1930.  
  1931.  
  1932.  
  1933.  
  1934.  
  1935.  
  1936. /* PERMAPAGE NOTES */
  1937.  
  1938.  
  1939. #notes {
  1940. margin-bottom:0px!important;
  1941. margin-top:55px!important;
  1942. margin-left:-32px;
  1943. margin-right:-25px;
  1944. }
  1945.  
  1946.  
  1947.  
  1948. .note li {
  1949. list-style-type:none;
  1950. padding-top:12px;
  1951. padding-bottom:12px;
  1952. padding-left:24px;
  1953. padding-right:24px;
  1954. border-bottom:1px solid {color:border};
  1955. border-top:1px solid {color:border};
  1956. margin-bottom:-1px;
  1957. text-align:left;
  1958. -moz-transition-duration:0.5s;
  1959. -webkit-transition-duration:0.5s;
  1960. -o-transition-duration:0.5s;
  1961. font-family:calibri!important;
  1962. font-size:9.4px!important;
  1963. font-weight:bold;
  1964. text-transform:uppercase;
  1965. color: {color:body text};
  1966. }
  1967.  
  1968.  
  1969. .note li a {
  1970. font-family:calibri!important;
  1971. font-size:9.4px!important;
  1972. padding-right:0px;
  1973. font-weight:bold;
  1974. text-transform:uppercase;
  1975. letter-spacing:0px;
  1976. color: {color:body text};
  1977. }
  1978.  
  1979.  
  1980.  
  1981. .note blockquote a {
  1982. padding-top:12px;
  1983. padding-bottom:12px;
  1984. padding-left:24px;
  1985. padding-right:24px;
  1986. margin-top:12px;
  1987. margin-bottom:12px;
  1988. margin-left:0px;
  1989. margin-right:0px;
  1990. color:{color:bold}!important;
  1991. }
  1992.  
  1993.  
  1994. .note img.avatar {
  1995. display:none;
  1996. width: 0px;
  1997. height: 0px;
  1998. }
  1999.  
  2000.  
  2001.  
  2002.  
  2003.  
  2004.  
  2005.  
  2006.  
  2007.  
  2008.  
  2009.  
  2010.  
  2011.  
  2012.  
  2013.  
  2014.  
  2015.  
  2016.  
  2017.  
  2018.  
  2019.  
  2020.  
  2021. /* POPUPS: GENERAL */
  2022.  
  2023.  
  2024. .popup_block {
  2025. box-sizing: border-box;
  2026. width:400px;
  2027. height:392px;
  2028. max-height:392px;
  2029. margin-top:25px!important;
  2030. margin-left:325px!important;
  2031. display:none;
  2032. background-color:{color:background}!important;
  2033. outline:1px solid {color:border};
  2034. border-bottom:24px solid {color:background};
  2035. padding-left:24px;
  2036. padding-right:24px;
  2037. position:absolute;
  2038. z-index:999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999;
  2039. opacity:1;
  2040. overflow-y:hidden;
  2041. text-align:justify;
  2042. overflow-x:hidden;
  2043. }
  2044.  
  2045.  
  2046.  
  2047.  
  2048. .popup_block h1 {
  2049. outline: 1px solid {color:border};
  2050. background-color: transparent;
  2051. height:24px;
  2052. overflow:hidden;
  2053. margin-top:1px;
  2054. margin-left:0px;
  2055. margin-right:0px;
  2056. margin-bottom:24px;
  2057. padding-left:24px;
  2058. padding-right:24px;
  2059. z-index:9999999;
  2060. text-align:left;
  2061. font-family:calibri;
  2062. font-weight:700;
  2063. font-size:11px;
  2064. line-height:24px;
  2065. color: {color:first letter};
  2066. text-transform:uppercase;
  2067. }
  2068.  
  2069.  
  2070.  
  2071.  
  2072. .popup_block a {
  2073. margin-right:0px;
  2074. vertical-align:top;
  2075. font-family: calibri, sans-serif;
  2076. font-size:9px;
  2077. color:#ffffff;
  2078. font-weight:bold!important;
  2079. position: relative;
  2080. text-decoration:none;
  2081. text-transform:uppercase;
  2082. }
  2083.  
  2084.  
  2085.  
  2086. *html #fade {
  2087. position: absolute;
  2088.  
  2089. }
  2090.  
  2091.  
  2092.  
  2093. *html .popup_block {
  2094. position: absolute;
  2095.  
  2096. }
  2097.  
  2098.  
  2099.  
  2100. #fade {
  2101. display:none;
  2102. position:fixed;
  2103. left:0px;
  2104. top:0px;
  2105. width:100%;
  2106. height:100%;
  2107. z-index:9;
  2108. background:transparent;
  2109. opacity:0;
  2110. }
  2111.  
  2112.  
  2113.  
  2114.  
  2115.  
  2116.  
  2117.  
  2118.  
  2119.  
  2120.  
  2121.  
  2122. /* POPUPS: NAVIGATION */
  2123.  
  2124.  
  2125. #nvbar {
  2126. background-color:{color:background};
  2127. }
  2128.  
  2129.  
  2130.  
  2131. .nvlinks {
  2132. margin-top:10px!important;
  2133. margin-bottom:10px!important;
  2134. margin-left:0px;
  2135. padding-top:0px;
  2136. padding-bottom:0px;
  2137. text-align:center;
  2138. }
  2139.  
  2140.  
  2141.  
  2142. .nvlinks a {
  2143. font-family: calibri, sans-serif;
  2144. font-weight:lighter!important;
  2145. text-transform:uppercase;
  2146. display:inline-block;
  2147. box-sizing: border-box;
  2148. width:178px;
  2149. height:24px!important;
  2150. padding-left:24px;
  2151. line-height:25px;
  2152. margin-left:-0px;
  2153. margin-right:4px;
  2154. margin-bottom:7.2px;
  2155. text-align:left;
  2156. border: 1px solid {color:border};
  2157. line-height:24px;
  2158. color:{color:links}!important;
  2159. font-size:8.5px;
  2160. letter-spacing:0.4px;
  2161. cursor: pointer;
  2162. z-index:2;
  2163. -moz-transition-duration:1s;
  2164. -webkit-transition-duration:1s;
  2165. -o-transition-duration:1s;
  2166. }
  2167.  
  2168.  
  2169.  
  2170.  
  2171. .nvlinks a:nth-of-type(2n) {
  2172. margin-right:0px!important;
  2173. }
  2174.  
  2175.  
  2176.  
  2177.  
  2178. .nvlinks:last-child {
  2179. margin-bottom:0px!important;
  2180. bottom:0px!important;
  2181. }
  2182.  
  2183.  
  2184.  
  2185.  
  2186. .nvlinks a:hover {
  2187. color:{color:links hover};
  2188. -moz-transition-duration:1s;
  2189. -webkit-transition-duration:1s;
  2190. -o-transition-duration:1s;
  2191. }
  2192.  
  2193.  
  2194.  
  2195.  
  2196.  
  2197.  
  2198.  
  2199.  
  2200.  
  2201.  
  2202.  
  2203.  
  2204.  
  2205.  
  2206.  
  2207.  
  2208.  
  2209. /* MUSES */
  2210.  
  2211.  
  2212. .mcontent {
  2213. position:absolute;
  2214. margin-left:50px;
  2215. margin-top:170px;
  2216. height:150px;
  2217. max-height:150px;
  2218. width:225px;
  2219. max-width:225px;
  2220. border-bottom:0px solid #000000!important;
  2221. border-top:0px solid #000000!important;
  2222. overflow-y:scroll;
  2223. padding-left:0px;
  2224. padding-right:0px;
  2225. outline:1px solid {color:border}!important;
  2226. opacity:1!important;
  2227. }
  2228.  
  2229.  
  2230.  
  2231.  
  2232. .mtitle {
  2233. position:absolute;
  2234. font-family: 'letter_1882regular';
  2235. color:{color:italic};
  2236. font-weight:100!important;
  2237. font-size:66px;
  2238. width:225px;
  2239. margin-left:0px;
  2240. margin-top:100px;
  2241. line-height:14px;
  2242. letter-spacing:-2px;
  2243. text-align:right!important;
  2244. pointer-events:none;
  2245. z-index:99999999999999999999999999999;
  2246. }
  2247.  
  2248.  
  2249.  
  2250. .mmuse {
  2251. margin-top:0px;
  2252. padding-left:0px!important;
  2253. width:275px;
  2254. background-color:{color:background};
  2255. }
  2256.  
  2257.  
  2258.  
  2259. .mmuse:active, .mmuse:focus {
  2260. background-color:{color:background}!important;
  2261. color:{color:bold};
  2262. }
  2263.  
  2264.  
  2265.  
  2266.  
  2267. .mmuse a {
  2268. float:left;
  2269. display:inline-block;
  2270. overflow:hidden;
  2271. outline:1px solid {color:border};
  2272. background-color:{color:background};
  2273. width:275px;
  2274. height:24px;
  2275. padding-left:24px;
  2276. padding-right:24px;
  2277. font-family:calibri;
  2278. text-align:left;
  2279. font-style:normal;
  2280. font-weight:bold;
  2281. margin-right:-1px;
  2282. font-size:10px;
  2283. margin-top:1px;
  2284. line-height:24px;
  2285. color: {color:bold};
  2286. text-transform:uppercase;
  2287. }
  2288.  
  2289.  
  2290.  
  2291. .mmuse a:active, .mmuse a:visited, .mmuse a:focus, .mmuse a:hover {
  2292. color:{color:Links Hover and Active}!important;
  2293. background-color:{color:background}!important;
  2294. }
  2295.  
  2296.  
  2297.  
  2298.  
  2299.  
  2300.  
  2301.  
  2302.  
  2303.  
  2304.  
  2305. /* MUSE PAGES */
  2306.  
  2307.  
  2308.  
  2309. .mimage {
  2310. margin-top:0px;
  2311. margin-left:-24px;
  2312. border-bottom:1px solid {color:border};
  2313. margin-bottom:-1px!important;
  2314. height:100px;
  2315. width:500px;
  2316. }
  2317.  
  2318.  
  2319.  
  2320. .mnavi {
  2321. margin-left:-25px!important;
  2322. margin-right:-25px!important;
  2323. margin-bottom:0px;
  2324. }
  2325.  
  2326.  
  2327.  
  2328.  
  2329. ul#tabs {
  2330. text-align: left;
  2331. margin-top:-1px!important;
  2332. Cursor:pointer;
  2333. }
  2334.  
  2335.  
  2336.  
  2337. ul#tabs li {
  2338. display:inline-block;
  2339. box-sizing: border-box;
  2340. font-size:9.5px;
  2341. text-align:center;
  2342. padding-left:24px;
  2343. padding-right:24px;
  2344. margin-bottom:-5px!important;
  2345. font-family: calibri, sans-serif;
  2346. text-transform:uppercase;
  2347. width:251px;
  2348. max-width:251px;
  2349. height:25px;
  2350. background-color:transparent;
  2351. border:1px solid {color:border};
  2352. line-height:25px;
  2353. margin-left:0px;
  2354. margin-right:-2px;
  2355. color:{color:bold};
  2356. font-weight:bold!important;
  2357. overflow:hidden; /* older browsers */
  2358. }
  2359.  
  2360.  
  2361.  
  2362. ul#tabs li.active {
  2363. display:inline-block;
  2364. box-sizing: border-box;
  2365. font-size:9.5px;
  2366. text-align:center;
  2367. padding-left:24px;
  2368. padding-right:24px;
  2369. font-family: calibri, sans-serif;
  2370. text-transform:uppercase;
  2371. width:251px;
  2372. max-width:251px;
  2373. height:25px;
  2374. background-color:transparent;
  2375. border:1px solid {color:border};
  2376. line-height:25px;
  2377. margin-left:0px;
  2378. margin-right:-2px;
  2379. color:{color:italic};
  2380. font-weight:bold!important;
  2381. overflow:hidden; /* older browsers */
  2382. }
  2383.  
  2384.  
  2385.  
  2386. ul#tab, ul#tabs{
  2387. list-style-type:none;
  2388. margin:0px;
  2389. padding:0px;
  2390. }
  2391.  
  2392. ul#tab li.active {
  2393. display: block;
  2394. }
  2395.  
  2396. ul#tab li {
  2397. display: none;
  2398. }
  2399.  
  2400.  
  2401.  
  2402.  
  2403. .mdescription {
  2404. margin-top:2px!important;
  2405. border-top:24px solid {color:background};
  2406. border-bottom:24px solid {color:background};
  2407. overflow-y:scroll!important;
  2408. height:218px;
  2409. background-color:transparent;
  2410. }
  2411.  
  2412.  
  2413.  
  2414. .mlinks {
  2415. margin-top:10px!important;
  2416. margin-bottom:10px!important;
  2417. margin-left:0px;
  2418. padding-top:0px;
  2419. padding-bottom:0px;
  2420. background-color:{color:background};
  2421. height:218px;
  2422. overflow-y:scroll!important;
  2423. }
  2424.  
  2425.  
  2426.  
  2427. .mlinks a {
  2428. font-family: calibri, sans-serif;
  2429. font-weight:lighter!important;
  2430. text-transform:uppercase;
  2431. display:inline-block;
  2432. box-sizing: border-box;
  2433. width:221px;
  2434. height:24px!important;
  2435. padding-left:24px;
  2436. line-height:24px;
  2437. margin-left:-0px;
  2438. margin-right:4px;
  2439. margin-bottom:8.4px;
  2440. text-align:left;
  2441. background:{color:background};
  2442. border: 1px solid #151515;
  2443. color:{color:links};
  2444. font-size:8.5px;
  2445. letter-spacing:0.4px;
  2446. cursor: pointer;
  2447. z-index:2;
  2448. -moz-transition-duration:1s;
  2449. -webkit-transition-duration:1s;
  2450. -o-transition-duration:1s;
  2451. }
  2452.  
  2453.  
  2454.  
  2455.  
  2456. .mlinks a:nth-of-type(2n) {
  2457. margin-right:0px!important;
  2458. }
  2459.  
  2460.  
  2461.  
  2462.  
  2463. .mlinks:last-child {
  2464. margin-bottom:0px!important;
  2465. bottom:0px!important;
  2466. }
  2467.  
  2468.  
  2469.  
  2470.  
  2471. .mlinks a:hover {
  2472. color:{links hover};
  2473. -moz-transition-duration:1s;
  2474. -webkit-transition-duration:1s;
  2475. -o-transition-duration:1s;
  2476. }
  2477.  
  2478.  
  2479. /*The header of each part of the navigation*/
  2480. .navi_linksu h3 {
  2481. font-size:22px;
  2482. margin-bottom:-5px;
  2483. border:none;
  2484. color: #a4a4a4; /*color of header*/
  2485. font-family: 'selima';
  2486. font-weight:normal;
  2487. letter-spacing:1px;
  2488. text-transform:lowercase;
  2489. background:transparent;
  2490. }
  2491.  
  2492. .navi_linksu {
  2493. text-align:center;
  2494. }
  2495.  
  2496. .navi_linksu a {
  2497. display: inline-block;
  2498. width: 120px;
  2499. padding: 5px;
  2500. margin:5px;
  2501. font-size:11px;
  2502. background-image: url('');
  2503. background:#ccc; /*color of navigation links background*/
  2504. background-repeat:repeat;
  2505. background-attachment:fixed;
  2506. border: solid 1px #7c7c7c;
  2507. color:#080808;
  2508. font-family:calibri;
  2509. text-transform:uppercase;
  2510.  
  2511.  
  2512. }
  2513.  
  2514. .navi_linksu a:hover {
  2515. -webkit-transition: all .5s ease-in-out;
  2516. -moz-transition: all .5s ease-in-out;
  2517. -ms-transition: all .5s ease-in-out;
  2518. -o-transition: all .5s ease-in-out;
  2519. transition: all .5s ease-in-out;
  2520. background:#7c7c7c; /*background color of navi links on hover*/
  2521. border: solid 1px #ccc;
  2522. color:#ccc; /*color of links on hover*/
  2523. }
  2524.  
  2525. .versu {
  2526. width:80px;
  2527. height:auto;
  2528. float:left;
  2529. padding:20px;
  2530. }
  2531.  
  2532.  
  2533. .vee {
  2534. text-align:center;
  2535. padding:10px;
  2536. margin-bottom:20px;
  2537. }
  2538.  
  2539.  
  2540.  
  2541.  
  2542.  
  2543.  
  2544. /* CREDIT */
  2545.  
  2546.  
  2547. #credit {
  2548. background-color:{color:background};
  2549. border:1px solid {color:border};
  2550. padding:6px 10px;
  2551. z-index:999;
  2552. position:absolute;
  2553. bottom:44px;
  2554. right:44px;
  2555. width:6px;
  2556. height:14px;
  2557. word-wrap:break-word;
  2558. font-family:calibri;
  2559. overflow:hidden;
  2560. -webkit-transition:all 1s ease;
  2561. -moz-transition:all 1s ease;
  2562. -o-transition:all 1s ease;
  2563. transition:all 1s ease-in-out;
  2564. }
  2565.  
  2566.  
  2567. #credit a {
  2568. color:{color:links};
  2569. text-transform:uppercase;
  2570. font-size:9.5px;
  2571. }
  2572.  
  2573.  
  2574.  
  2575. #credit:hover {
  2576. width:73px;
  2577. }
  2578.  
  2579.  
  2580.  
  2581.  
  2582. #credit span {
  2583. text-shadow:1px 1px .2px #000;
  2584. color:{color:bold};
  2585. font-family:calibri;
  2586. margin-right:10px;
  2587. font-size:10.5px;
  2588. }
  2589.  
  2590.  
  2591.  
  2592.  
  2593.  
  2594.  
  2595.  
  2596. </style>
  2597.  
  2598. </head>
  2599.  
  2600.  
  2601.  
  2602.  
  2603.  
  2604. <body>
  2605.  
  2606.  
  2607. <div id="container">
  2608.  
  2609.  
  2610.  
  2611.  
  2612. <!-- sidebarBG -->
  2613.  
  2614.  
  2615. <div class="sidebar">
  2616.  
  2617. <div class="sidebarbg">
  2618. <img src="{image:Sidebar Background}">
  2619. </div class="sidebarbg">
  2620.  
  2621.  
  2622. <div class="inner">
  2623.  
  2624.  
  2625. <div class="desctitle">
  2626. {text:Title}
  2627. </div class="desctitle">
  2628.  
  2629.  
  2630.  
  2631. <div class="sidebarimgtop"><a href="/" title="Refresh the page">
  2632. <img src="{image:Sidebar Image Top}"></a>
  2633. </div class="sidebarimgtop">
  2634.  
  2635.  
  2636. <div class="description">
  2637.  
  2638. They named her Princess Moonlight, because her body gave forth so much soft bright light, that she must have been a Daughter of the Moon God, they said...
  2639.  
  2640. </div class="description">
  2641.  
  2642.  
  2643.  
  2644. <div class="pagination">
  2645.  
  2646. {block:IndexPage}
  2647. {block:PreviousPage}
  2648.  
  2649. <a href="{PreviousPage}" title="Previous Page">LAST PAGE</a>
  2650.  
  2651. {/block:PreviousPage}
  2652. {/block:IndexPage}
  2653.  
  2654.  
  2655.  
  2656. {block:PermalinkPagination}
  2657. {block:PreviousPost}
  2658.  
  2659. <a href="{PreviousPost}" title="Previous Post">LAST POST</a>
  2660.  
  2661. {/block:PreviousPost}
  2662. {/block:PermalinkPagination}
  2663.  
  2664.  
  2665.  
  2666. {block:IndexPage}
  2667. {block:NextPage}
  2668.  
  2669. <a href="{NextPage}" title="Next Page">NEXT PAGE</a>
  2670.  
  2671. {/block:NextPage}
  2672. {/block:IndexPage}
  2673.  
  2674.  
  2675.  
  2676. {block:PermalinkPagination}
  2677. {block:NextPost}
  2678.  
  2679. <a href="{NextPost}" title="Next Post">NEXT POST</a>
  2680.  
  2681. {/block:NextPost}
  2682. {/block:PermalinkPagination}
  2683.  
  2684. </div class="pagination">
  2685.  
  2686.  
  2687.  
  2688. <div class="sidebarimgbottom">
  2689. <img src="{image:Sidebar Image Bottom}">
  2690. </div class="sidebarimgbottom">
  2691.  
  2692.  
  2693.  
  2694. </div class="inner">
  2695.  
  2696. </div class="sidebar">
  2697.  
  2698.  
  2699.  
  2700.  
  2701.  
  2702.  
  2703.  
  2704. <!-- POSTS -->
  2705.  
  2706.  
  2707. <div class="navigation">
  2708.  
  2709. <button class="w3-bar-item w3-button" onclick="openNavi('Index')" autofocus>Refresh</button>
  2710.  
  2711. <button class="w3-bar-item w3-button" onclick="openNavi('Inquiries')">Wish</button>
  2712. <button class="w3-bar-item w3-button" onclick="openNavi('Rules')">Laws</button>
  2713.  
  2714. <button class="w3-bar-item w3-button" onclick="openNavi('About')">Moon</button>
  2715.  
  2716. <button class="w3-bar-item w3-button" onclick="openNavi('Verses')">Worlds</button>
  2717.  
  2718. <button class="w3-bar-item w3-button" onclick="openNavi('Explore')">Stars</button>
  2719.  
  2720. </div class="navigation">
  2721.  
  2722.  
  2723.  
  2724.  
  2725. <div id="content">
  2726. <div id="contenttopspace"></div id="contenttopspace">
  2727.  
  2728.  
  2729.  
  2730.  
  2731.  
  2732.  
  2733. {block:Posts}
  2734. <div class="posts">
  2735.  
  2736.  
  2737.  
  2738. {block:Date}
  2739.  
  2740. {block:IndexPage}
  2741. <div class="permalinkbar">
  2742. <div class="permalinkbuttons">
  2743. <a href="{Permalink}" style="text-align:left; padding-left:26px;">{Month} {DayOfMonth}{DayOfMonthSuffix} / {12Hour}:{Minutes}{CapitalAmPm} / {NoteCountWithLabel}</a>
  2744. <a href="{ReblogURL}" target="_blank" class="details" style="text-align:right; padding-right:24px;">CLICK HERE TO REBLOG THIS POST</a>
  2745. </div class="permalinkbuttons">
  2746. </div class="permalinkbar">
  2747. {/block:IndexPage}
  2748.  
  2749.  
  2750. {block:PermaLinkPage}
  2751. <div class="permalinkbar" style="margin-top:-1px!important;">
  2752. <div class="permalinkbuttons">
  2753.  
  2754. <a href="{ReblogParentURL}" style="text-align:left; padding-left:26px;display:inline-block;">REBLOGGED FROM / VIA</a>
  2755.  
  2756. <a href="{ReblogURL}" target="_blank" class="details" style="margin-left:-1px!important; text-align:right; float:right; padding-right:24px; margin-top:-24px!important;">REBLOG THIS POST HERE</a>
  2757. </div class="permalinkbuttons">
  2758. </div class="permalinkbar">
  2759. {/block:PermaLinkPage}
  2760.  
  2761. {/block:Date}
  2762.  
  2763.  
  2764.  
  2765.  
  2766.  
  2767.  
  2768.  
  2769.  
  2770. <!-- POSTS: TEXT -->
  2771.  
  2772.  
  2773. {block:Text}
  2774. <div id="text">
  2775.  
  2776. <div id="textbody">
  2777. {block:Title}
  2778. <h1>{Title}</h1>
  2779. {/block:Title}
  2780.  
  2781. <div id="wrap">
  2782. {Body}
  2783. <div style="clear:both">
  2784. </div style="clear:both">
  2785. </div id="wrap">
  2786. </div id="textbody">
  2787.  
  2788. </div id="text">
  2789.  
  2790. {/block:Text}
  2791.  
  2792.  
  2793.  
  2794.  
  2795.  
  2796. <!-- POSTS: PHOTO/SET -->
  2797.  
  2798. {block:Photo}
  2799. <div id="psingle">
  2800. {LinkOpenTag}
  2801. <img src="{PhotoURL-HighRes}">
  2802. {LinkCloseTag}
  2803. </div id="psingle">
  2804.  
  2805. {block:Caption}
  2806. <div id="pcaption">
  2807. {Caption}
  2808. </div id="pcaption">
  2809. {/block:Caption}
  2810. {/block:Photo}
  2811.  
  2812.  
  2813. {block:Photoset}
  2814. <div id="pset">
  2815. {Photoset}
  2816. </div id="pset">
  2817.  
  2818. {block:Caption}
  2819. <div id="pcaption">
  2820. {Caption}
  2821. </div id="pcaption">
  2822. {/block:Caption}
  2823. {/block:Photoset}
  2824.  
  2825.  
  2826.  
  2827.  
  2828.  
  2829. <!-- POSTS: QUOTE -->
  2830.  
  2831. {block:Quote}
  2832. <div id="quotebox">
  2833. <div id="quote">
  2834. "{Quote}"
  2835. <div class="source">
  2836. <b>Source:</b> {Source}
  2837. </div>
  2838. </div id="quote">
  2839.  
  2840. </div>
  2841. {/block:Quote}
  2842.  
  2843.  
  2844.  
  2845.  
  2846.  
  2847. <!-- POSTS: LINK -->
  2848.  
  2849. {block:Link}
  2850. <div id="linkpost">
  2851. <div id="link">
  2852. <a href="{URL}" {Target}>{Name}&nbsp;&nbsp; ►</a>
  2853. </div id="link">
  2854. </div id="linkpost">
  2855. {/block:Link}
  2856.  
  2857.  
  2858.  
  2859.  
  2860.  
  2861. <!-- POSTS: CHAT -->
  2862.  
  2863.  
  2864. {block:Chat}
  2865.  
  2866. <div id="chatbox">
  2867. <div id="chat">
  2868. {block:Lines}
  2869. <div id="{Alt}">
  2870. {block:Label}<i>{Label}</i>{/block:Label} {Line}
  2871. </div id="{Alt}">
  2872. {/block:Lines}
  2873. </div id="chat">
  2874. </div id="chatbox">
  2875.  
  2876. {/block:Chat}
  2877.  
  2878.  
  2879.  
  2880.  
  2881.  
  2882. <!-- POSTS: AUDIO -->
  2883.  
  2884. {block:Audio}
  2885. <div id="audiobox">
  2886.  
  2887.  
  2888. <div class="player">
  2889. <div class="audioplayer">
  2890.  
  2891. {AudioPlayerBlack}
  2892.  
  2893. </div class="audioplayer">
  2894. </div class="player">
  2895.  
  2896. <div class="audioinfo">
  2897. {block:Artist}Artist: {Artist}{/block:Artist} — {block:TrackName}<i>Track name: {TrackName}</i>{/block:TrackName}
  2898. </div class="audioinfo">
  2899.  
  2900.  
  2901. {block:Caption}
  2902. <div id="acaption">
  2903. {Caption}
  2904. </div id="acaption">
  2905. {/block:Caption}
  2906.  
  2907. </div id="audiobox">
  2908. {/block:Audio}
  2909.  
  2910.  
  2911.  
  2912.  
  2913.  
  2914.  
  2915.  
  2916.  
  2917. <!-- POSTS: VIDEO -->
  2918.  
  2919. {block:Video}
  2920. <div class="video-content">
  2921. {Video-400}
  2922. {block:Caption}{Caption}{/block:Caption}
  2923. </div class="video-content">
  2924. {/block:Video}
  2925.  
  2926.  
  2927.  
  2928.  
  2929.  
  2930.  
  2931.  
  2932.  
  2933. <!-- POSTS: ASK -->
  2934.  
  2935. {block:Answer}
  2936.  
  2937. <div id="answer">
  2938.  
  2939.  
  2940. <div id="question">
  2941. <div id="ask">
  2942. <b>{Asker} is inquiring:</b> {Question}
  2943. </div id="ask">
  2944. <div class="letterask">
  2945. ?
  2946. </div class="letterask">
  2947.  
  2948. </div id="question">
  2949.  
  2950.  
  2951. <h4 style="margin-top:-5px; margin-left:-25px; padding:0px!important; margin-right:-25px!important; height:24px;"></h4>
  2952.  
  2953. <div id="response">
  2954. {Answer}
  2955. <div style="clear:both; margin-bottom:-5px;"></div>
  2956. </div id="response">
  2957.  
  2958.  
  2959. </div id="answer">
  2960.  
  2961. {/block:Answer}
  2962.  
  2963.  
  2964.  
  2965.  
  2966.  
  2967.  
  2968.  
  2969.  
  2970.  
  2971.  
  2972.  
  2973. <!-- POST INFORMATION -->
  2974.  
  2975.  
  2976. {block:Date}
  2977.  
  2978. <div class="permalinkbar" style="margin-top:24px!important;">
  2979. <div class="permalinkbuttons">
  2980. </div class="permalinkbuttons">
  2981. </div class="permalinkbar">
  2982.  
  2983.  
  2984.  
  2985.  
  2986. {block:IndexPage}
  2987. <div id="tagsbox">
  2988. <div class="tags">
  2989.  
  2990. {block:HasTags}
  2991. {block:Tags}
  2992. <a href="{TagURL}">{Tag}&nbsp;&nbsp;</a>
  2993. {/block:Tags}
  2994. {/block:HasTags}
  2995.  
  2996. </div class="tags">
  2997. </div id="tagsbox">
  2998. {/block:IndexPage}
  2999.  
  3000. {block:PermaLinkPage}
  3001. <div id="tagsbox" style="padding-top:12px!important;">
  3002. <div class="tags">
  3003. {block:HasTags}
  3004. {block:Tags}
  3005.  
  3006. <a href="{TagURL}">{Tag}&nbsp;&nbsp;</a>
  3007.  
  3008. {/block:Tags}
  3009. {/block:HasTags}
  3010.  
  3011. </div class="tags">
  3012. </div id="tagsbox">
  3013. {/block:PermaLinkPage}
  3014.  
  3015. {/block:Date}
  3016.  
  3017.  
  3018.  
  3019.  
  3020.  
  3021.  
  3022.  
  3023. <!-- NOTES -->
  3024.  
  3025. {block:PostNotes}
  3026. <div id="notes">
  3027. <div class="note">
  3028. {PostNotes}
  3029. </div class="note">
  3030. </div id="notes">
  3031. {/block:PostNotes}
  3032.  
  3033.  
  3034.  
  3035.  
  3036.  
  3037.  
  3038. <!-- HIDE VIA/SOURCE IN POSTS -->
  3039.  
  3040.  
  3041. {block:ContentSource}<!-- {SourceURL}
  3042. {block:SourceLogo}<img src="{BlackLogoURL}"width="{LogoWidth}" height="{LogoHeight}" alt="{SourceTitle}" />{/block:SourceLogo}
  3043. {block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo} -->
  3044. {/block:ContentSource}
  3045.  
  3046.  
  3047. <!-- {block:NoRebloggedFrom}
  3048. {block:RebloggedFrom}{ReblogParentName}{/block:RebloggedFrom}
  3049. {/block:NoRebloggedFrom} -->
  3050.  
  3051.  
  3052. </div class="posts">
  3053.  
  3054.  
  3055. {/block:Posts}
  3056.  
  3057.  
  3058.  
  3059. </div id="content">
  3060.  
  3061.  
  3062.  
  3063.  
  3064. <div id="Index" class="navi" style="display:block">
  3065.  
  3066. </div id="Index" class="navi">
  3067.  
  3068.  
  3069.  
  3070.  
  3071.  
  3072.  
  3073.  
  3074.  
  3075.  
  3076. <!-- POPUP: INQUIRIES -->
  3077.  
  3078.  
  3079. <div id="Inquiries" class="navi" style="display:none;">
  3080. <div id="tabcontent" style="overflow:hidden!important;">
  3081.  
  3082. <h4>The askbox</h1>
  3083.  
  3084.  
  3085. <p><iframe frameborder="0" scrolling="yes" width="160px" height="490px" src="https://www.tumblr.com/ask_form/kcguyahime.tumblr.com" style="padding:8px;margin-top:10px; 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>
  3086.  
  3087.  
  3088. </div id="tabcontent">
  3089. </div id="Inquiries" class="navi">
  3090.  
  3091.  
  3092.  
  3093.  
  3094.  
  3095.  
  3096.  
  3097.  
  3098.  
  3099.  
  3100.  
  3101.  
  3102.  
  3103.  
  3104.  
  3105. <!-- POPUP PAGE: RULES -->
  3106.  
  3107. <div id="Rules" class="navi" style="display:none;">
  3108. <div id="tabcontent">
  3109.  
  3110.  
  3111. <h4>Rules</h4>
  3112.  
  3113.  
  3114.  
  3115. <p align="center">
  3116. independent <strong>&amp;</strong> Private<br /><em>Kaguya Hime of the Bamboo Cutter Folktale</em><br /></p>
  3117. <strong>&bull;</strong>WARNNG: THIS IS AN NSFW BLOG; there will be nsfw (violence, drug ref, alcohol, smut, religion,).<br />
  3118. <strong>&bull;</strong> If you wish to contact me, you may leave me a message via ask or IM if mutual follower.<br />
  3119. <strong>&bull;</strong>&nbsp;I am open to exclusivity.<br />
  3120.  
  3121. <p>
  3122. <h4>ABOUT</h4>
  3123. <br>
  3124. <p>
  3125. <i>Disclaimer:</i>All portrayls of Kaguya written here are created by me. She is my own creation and designed through ideas and inspired by the classical japanese folktales. This is strictly my own inspired by my own creative ideas and concepts.
  3126. <br><br>
  3127. Kaguya is a princess from the classical folklore of <i>Kaguya hime</i>, only I encorporate my own ideas into the tale.
  3128. <p>
  3129. <h4>Writing & Selectivity</h4>
  3130. <br>
  3131. <p>
  3132. This blog is <u>Semi-Private</u>, for the most part I focus my role plays with <b>Mutuals</b>. Starter Calls, Open rp post, Plot Calls, etc, are for Mutuals <i>BUT</i> anyone can send me memes or ooc ask ( tbh i love being asked about the muse so you can totally go for it).</p>
  3133. <p>I don't like cluttered dashes TBQH. I will unfollow you if you spam my dash, with random OOC stuff, and chain-messages. <br>
  3134. It sometimes takes time for me to follow any blogs who followed me so don't be insulted if I don't follow back (or i didn't notice because Tumblr derped).</p>
  3135. I like to generally plot out ideas ( <i>Bring on all the AU's</i> ), though I don't mind winging it from time to time. Feel free to IM me or like a starter call/Plot call. I'm totally Multi-verse/AU friendly, totally also open to making up a new verse.</p>
  3136. <p>
  3137. The lengths of my threads can start with something as simple as dialogue/simple sentences, to novella (it's happened before ha ha). I don't need you to fully match my length, but be close, but please try to match me up in effort. I'd rather have a three para reply to my four para that was thought out then something.. well, half-assed -laughs-. Please <b>take your time with replies</b> ! I don't expect to be rushed, nor do I expect you to pressure me</p>
  3138. <p>
  3139. Please, do <b>NOT</b> reblog ask unless your saving them of course. I don't like rping through ask. If you want to continue a meme I've answered or something, just tag me ( or IM me for permission if your uncertain) and make a new post for it.</p>
  3140. <br>
  3141. <h4>SHIPPING && RELATIONSHIPS.</h4>
  3142. <br>
  3143. <p>
  3144. I don't mind being approached for a ship but please understand I prefer good <b>chemistry</b> and development when creating a ship. This is something I'm more comfortable with my mutual and exclusive partners, which im more inclinded to ship with. Please recall my muse <i> is a princess so;</i></p>
  3145. <p>
  3146. <strong>&bull;</strong>Wish to Court her? <i>Sure.</i><br>
  3147. <strong>&bull;</strong>Approach her? <i>It can be done</i>.<br>
  3148. <strong>&bull;</strong>Talk with her.<i>Fine.</i> <br>
  3149. <strong>&bull;</strong>Just don't think it'll be easy to win her.<br>
  3150. Firstly because this blog is multi-verse, each verse is <i>Single-shipped</i>.
  3151. </p><p>
  3152. However, that is not to say she can't be <i>Romanced</i>, it just may take some time and patience.
  3153. <br><br>
  3154. I am totally game for platonic ships/familial/family ships too ! I find them endearing and adorable ( and its fuzzy good development for my muse !).
  3155. <p>
  3156. <h4>Writing</h4>
  3157. <br>
  3158. <p>
  3159. I don't have any triggers and am fair about trying any sort of themes/ideas. I am certainly not shy about drifting to dark themes of various sorts. NSFW doesn't just mean sexual themes, but all themes related to dark themes; Blood, gore, death, rape, etc.
  3160. <br><br>
  3161. Now I don't mind writing smut, but I prefer writing it only for my ships and with partners that I am close to. I <i>am</i> above 18 and expect my partners to be of age for smut as well. I don't like the idea of wearing stripes ktx.
  3162. <br><br>
  3163. I generally tag triggers as, "tw : -insert trigger". If <i>you</i> have any triggers that you'd like <i>me</i> to tag, please let me know.</p>
  3164. <p>
  3165. <h4>Icons/Graphics/Themes</h4>
  3166. <br>
  3167. <p>
  3168. All icons are made and edited by me on this blog, with the exception of the theme. Link in corner~. Graphis for Kaguya muse are heavily edited by me.
  3169. <p>
  3170. <h4>OOC</h4>
  3171. <br>
  3172. <p>
  3173. Hola, name is bee~. I'm 20+, I don't mind rping with those younger then me but please don't try to rp any graphic themes with me it will make me hella uncomfortable and I really wouldn't like to be arrested. <br>
  3174. <h4>ART COMMISSIONS</h4>
  3175. <br>
  3176. <p>I tend to post my art here as well as from my main <a href="https:// /kurokitarts.tumblr.com">art blog</a>. If ever curious of my art works or wish to request something, please never hesitate to ask! I always welcome the work~!
  3177.  
  3178.  
  3179.  
  3180.  
  3181. </div id="tabcontent">
  3182. </div id="Rules" class="navi">
  3183.  
  3184.  
  3185.  
  3186. <!-- POPUP PAGE: ABOUT -->
  3187.  
  3188.  
  3189. <div id="About" class="navi" style="display:none;">
  3190.  
  3191.  
  3192. <div class="mcontent">
  3193.  
  3194.  
  3195. <div class="mmuse">
  3196.  
  3197.  
  3198. <a href="#?w=498" rel="Main" class="poplight">Main</a>
  3199.  
  3200.  
  3201. <a href="#?w=498" rel="Physical" class="poplight">Appearance</a>
  3202.  
  3203.  
  3204. <a href="#?w=498" rel="Personality" class="poplight">Personality</a>
  3205.  
  3206.  
  3207. <a href="#?w=498" rel="Relationships" class="poplight">Relationships</a>
  3208.  
  3209.  
  3210. <a href="#?w=498" rel="Abilities" class="poplight">Abilities</a>
  3211.  
  3212. <a href="#?w=498" rel="Bio" class="poplight">Biography</a>
  3213.  
  3214.  
  3215.  
  3216. </div class="mmuse">
  3217.  
  3218. </div class="mcontent">
  3219.  
  3220. </div id="Verses" class="navi">
  3221.  
  3222.  
  3223.  
  3224.  
  3225.  
  3226.  
  3227.  
  3228.  
  3229.  
  3230.  
  3231.  
  3232. <!-- POPUP PAGE: VERSES -->
  3233.  
  3234.  
  3235. <div id="Verses" class="navi" style="display:none;">
  3236.  
  3237.  
  3238. <div class="mcontent">
  3239.  
  3240.  
  3241. <div class="mmuse">
  3242.  
  3243.  
  3244. <a href="#?w=498" rel="Verse1" class="poplight">Origin</a>
  3245.  
  3246.  
  3247. <a href="#?w=498" rel="Verse2" class="poplight">Inuyasha</a>
  3248.  
  3249.  
  3250. <a href="#?w=498" rel="Verse3" class="poplight">FGO</a>
  3251.  
  3252.  
  3253. <a href="#?w=498" rel="Verse4" class="poplight">Fate (Magus)</a>
  3254.  
  3255.  
  3256. <a href="#?w=498" rel="Verse5" class="poplight">Owari no Seraph</a>
  3257.  
  3258.  
  3259. <a href="#?w=498" rel="Verse6" class="poplight">Meiji Era</a>
  3260.  
  3261. <a href="#?w=498" rel="Verse7" class="poplight">Akatsuki No Yona</a>
  3262.  
  3263. <a href="#?w=498" rel="Verse8" class="poplight">Idol</a>
  3264.  
  3265. <a href="#?w=498" rel="Verse9" class="poplight">RWBY</a>
  3266.  
  3267. <a href="#?w=498" rel="Verse10" class="poplight">Hindu AU</a>
  3268.  
  3269. <a href="#?w=498" rel="Verse11" class="poplight">Marvel</a>
  3270.  
  3271. <a href="#?w=498" rel="Verse12" class="poplight">Harry Potter</a>
  3272.  
  3273. <a href="#?w=498" rel="Verse13" class="poplight">Dragon Age</a>
  3274.  
  3275. <a href="#?w=498" rel="Verse14" class="poplight">Tenjo Tenge</a>
  3276.  
  3277. <a href="#?w=498" rel="Verse15" class="poplight">Pokemon</a>
  3278.  
  3279. <a href="#?w=498" rel="Verse16" class="poplight">Pandora Hearts</a>
  3280.  
  3281.  
  3282.  
  3283. </div class="mmuse">
  3284.  
  3285. </div class="mcontent">
  3286.  
  3287. </div id="Verses" class="navi">
  3288.  
  3289.  
  3290.  
  3291.  
  3292.  
  3293.  
  3294.  
  3295.  
  3296.  
  3297.  
  3298.  
  3299.  
  3300. <!-- POPUP PAGE: EXPLORE -->
  3301.  
  3302.  
  3303.  
  3304. <div id="Explore" class="navi" style="display:none;">
  3305. <div id="tabcontent">
  3306.  
  3307.  
  3308. <h4>Navigation / Links</h4>
  3309.  
  3310.  
  3311. <div id="nvbar" class="nvlinks">
  3312.  
  3313.  
  3314. <h2> INTRO </h2>
  3315. <p>
  3316. <p>
  3317. <p><a href="/tagged/%E2%98%BE-Behind-the-Play%28ooc%29">OOC</a>
  3318. <a href="/tagged/%E2%98%BE-Divine-Law%28psa%29">PSA</a>
  3319. <a href="/tagged/%E2%98%BE-Write-me-a-Poem%28memes%29">MEMES</a>
  3320. <a href="/tagged/%E2%98%BE-Handwritten-Letters%28answered%29">ANSWERED</a>
  3321. <a href="/tagged/%E2%98%BE-Narrator-Speaks%28update%29">UPDATES</a>
  3322. <a href="/tagged/">RESOURCES</a>
  3323. <a href="/tagged/">EDITS</a>
  3324. <a href="/tagged/%E2%98%BE-Chosen-by-her-Hand-%26%26-Worthy-of-Praise%28promo%29">PROMO</a>
  3325. <a href="/tagged/%E2%98%BE-Mortal-Studies-%26%26-Tomes-Read%28references%29">REFRENCES</a>
  3326. <a href="/tagged/%E2%98%BE-Divine-Arts-of-the-Princess%28myart%29">MY ART</a>
  3327. <a href="/tagged/%E2%98%BE-Poems-of-the-Princess%28drabbles%29">MY DRABBLES</a>
  3328. <a href="/tagged/%E2%98%BE-Plans-to-Indulge%28wishlist%29">WISHLIST</a>
  3329. <a href="/tagged/%E2%98%BE-At-her-Call-you-Answer%28starter-call%29">STARTER CALL</a>
  3330.  
  3331. <center><h2> The Goddess </h2></center>
  3332. <p>
  3333. <p>
  3334. <a href="/tagged/%E2%98%BE-The-Moon%E2%80%99s-Beauty-%26%26-Vixen%E2%80%99s-Elegance%28aesthetics%29">Aesthetics</a>
  3335. <a href="/tagged/%E2%98%BE-Of-Vulpine-%26%26-Divine-Nature-%28musings%29">Musings</a>
  3336. <a href="/tagged/%E2%98%BE-Wicked-Tongue-%26%26-Soft-as-Moonlight%28isms%29">Isms</a>
  3337. <a href="/tagged/%E2%98%BE-Delights-%26%26-Guilty-Pleasures%28likes%29">Likes</a>
  3338. <a href="/tagged/%E2%98%BE-History-of-the-Princess%28about%29">About</a>
  3339. <a href="/tagged/%E2%98%BE-Behind-the-Bamboo-Blinds%28headcannons%29">Headcannons</a>
  3340. <a href="/tagged/%E2%98%BE-Heavenly-Magic-%26%26-Alluring-Mysticism%28abilities%29">Abilities</a>
  3341. <a href="https:// /kcguyahime.tumblr.com/tagged/%E2%98%BE-Claws-%26%26-Fangs-beneath-Ivory-mask%28skills%29">Skills</a>
  3342. <a href="/tagged/%E2%98%BE-Celestial-robes-%26%26-Starry-gems%28wardrobe%29">Wardrobe</a>
  3343. <a href="/tagged/%E2%98%BE-Passionate-nights-%26%26-Wanton-desires%28explicit%29">Explicit</a>
  3344. <a href="/tagged/%E2%98%BE-Let-the-Koto-%26%26-Ehru-play-on%28music%29">Music</a>
  3345. <a href="/tagged/%E2%98%BE-Bonds-that-Cross-Time%28friendships%29">Friendships</a>
  3346. <a href="/tagged/%E2%98%BE-Beyond-the-Realms%28scenery%29">Scenery</a>
  3347.  
  3348. <center><h2>The Gallery</h2></center>
  3349. <p>
  3350. <a href="/tagged/%E2%98%BE-Ethereal-Beauty-of-the-Night-%26%26-Daughter-of-the-Moon%28Kaguya%29">Kaguya</a>
  3351. <a href="/tagged/%E2%98%BE-Fearsome-Warrior-of-Darkness-%26%26-Wicked-Son-of-the-Fox%28Kurogane%29">Kurogane</a>
  3352. <a href="/tagged/%E2%98%BE-Fierce-Mother-of-Moonlight-%26%26-Goddess-of-the-Heavens%28Tsukiyomi%29">Tsukiyomi</a>
  3353. <a href="/tagged/%E2%98%BE-Fearsome-Father-of-the-Night-%26%26-Bringer-of-Chaos%28Yamiyo%29">Yamiyo</a>
  3354. <a href="/tagged/☾-A-Free-Spirited-Child-within-A-Man-%26%26-An-Enigma-of%C2%A0the-Night%28Krishna%29">Krishna</a>
  3355. <a href="/tagged/☾-The-Suns-Light-Born-Anew-%26%26-Soft-Starlight-with-a-Smile%28Hikari%29">Hikari</a>
  3356.  
  3357. <center><h2> The Folktale </h2></center>
  3358. <p>
  3359. <p>
  3360. <a href="/tagged/">Angels</a>
  3361. <a href="/tagged/">Demons</a>
  3362. <a href="/tagged/">Humans</a>
  3363. <a href="/tagged/">Scenery</a>
  3364. <a href="/tagged/">Art</a>
  3365. <a href="/tagged/">Literature</a>
  3366.  
  3367.  
  3368. </div id="nvbar" class="nvlinks">
  3369.  
  3370.  
  3371.  
  3372. </div id="tabcontent">
  3373. </div id="Explore" class="navi">
  3374.  
  3375.  
  3376.  
  3377. <!-- ABOUT PAGE: Main -->
  3378.  
  3379.  
  3380.  
  3381. <div id="Main" class="popup_block">
  3382.  
  3383. <div class="mimage">
  3384. <img src="https://66.media.tumblr.com/235ce3e207436b0b01fa470ee0416a30/tumblr_pro917FZix1xt4xw4o8_500.png">
  3385. </div class="mimage">
  3386.  
  3387.  
  3388. <div class="mnavi">
  3389. <ul id="tabs">
  3390.  
  3391. <li class="active">General</li>
  3392. <li>Trivia</li>
  3393.  
  3394.  
  3395. </ul id="tabs">
  3396. </div class="mnavi">
  3397.  
  3398.  
  3399.  
  3400. <!-- TAB ONE -->
  3401.  
  3402.  
  3403. <ul id="tab"><li class="active">
  3404.  
  3405.  
  3406. <div class="mdescription">
  3407.  
  3408. ❝ She had something about her that made people always want to be around her, like this <i>Illuminating</i> presence that left you wondering what her <b>SOUL</b> was made of.❞
  3409.  
  3410. <h4>The Moon Princess Kaguya</h4>
  3411.  
  3412. <h3>General Information</h3>
  3413. <br>
  3414. <p>
  3415. <b>Fc:</b> Yuuko Ichihara (XXXHolic) | Alt fc Ao Yah (Ibuki Satsuki series) | Ceres ( Ayashi no Ceres ) | Protag from Norn9 | Other Alts vary. <br>
  3416. <br>
  3417. <img src="https://78.media.tumblr.com/8e32b67f5aa4e4e9ee919183433c9941/tumblr_inline_p88des7Gmw1uwjpup_540.png" style='height: 60px; z-index: 1;' >
  3418. <img src="https://78.media.tumblr.com/175545705b7987f2cd5b0973f26b8d6b/tumblr_inline_p6mdjxQrhM1uwjpup_540.png" style='height: 60px; z-index: 1;'>
  3419. <img src="https://78.media.tumblr.com/65c3c84c13621e2c9fa2596be1c13c6b/tumblr_inline_p58hwc1PJG1uwjpup_540.png" style='height: 60px; z-index: 1;'>
  3420. <img src="https://78.media.tumblr.com/9be61e1afc0751bde95b1357dee8036b/tumblr_inline_p19ugcMSgR1uwjpup_540.png" style='height: 60px; z-index: 1;'>
  3421. <hr/>
  3422. <br>
  3423. <b>Important:</b> This is all my own twist to the story of Kaguya-hime the folktale.<br>
  3424. <center><h2>General Information</h2></center>
  3425. <br>
  3426. <b>NAME:</b> Kaguya
  3427. <br>
  3428. <b>NIHONGO.</b>&nbsp; 赫映 ("Radiant Light").<br />
  3429. <b>TITLES.</b> "Goddess of Eternal Night" | "Empress of the Moon" | "Princess of the Moon" | "Goddess of the night" | "Princess of the Heavens" <br />
  3430. <b>GENDER.</b>&nbsp; female.<br />
  3431. <b> Origin</b>: Kyoto<br /><br>
  3432. <b> Era of Birth</b>: <a href="https:// /en.wikipedia.org/wiki/Heian_period#Heian_culture" title="More about Heian Period" target="_blank">Heian Period<br /></a>
  3433. <br>
  3434. <b> AGE:</b> Approximately 2,100 years of age. <br>
  3435. <b>SPECIES:</b> Kaguya was born between Tsukiyomi, the Moon Goddess, and a dark fox (Gumiho) who acended by dark means of power. Kaguya embodies both natures of light and dark, refusing to walk a simple black or white-she chooses to make her own path inbetween and live as a respectable empress of the night for her people.<br>
  3436. <b>GENDER:</b> female.
  3437. <br>
  3438. <b>NATIONALITY:</b> Lunarian/Celestial
  3439. <br>
  3440. <b>ETHNICITY:</b> 1/2 Jap & 1/2 Korean (verse dependent)
  3441. <br>
  3442. <b>HERITAGE:</b>"Goddess of Eternal Night". Kaguya is from the royal bloodline of the celestial palace, and is rightful heiress and ruler to the Moon Palace. Through Tsukuyomi, she is also divine and could claim an inheritance to the moon. Her biological father rules darker regions of the divine realm and claims Kaguya will inherit his lands, though she refuses.
  3443. <br>
  3444. <b>BIRTHDAY:</b> August 22, year xxxx.
  3445. <br>
  3446. <b>SIGN:</b> Virgo-Leo Cusp
  3447. <br>
  3448. <b>Blood Type:</b> AB
  3449. <br>
  3450. <b> RESIDENCE:</b> Generally moon palace at the capital; on earth she resides in Japan, Kyoto in a private loft. (verse dependent)
  3451. <br>
  3452. <b>SPOKEN LANGUAGE:</b> Japanese, English, Korean, Chinese(mandarin), Spanish, Russian, etc (these are languages she's pickedup on quickly) along with her native tongue.
  3453. <br>
  3454. <b> ALIGNMENT:</b> True Neutral.
  3455. <br>
  3456. <b> SEXUALITY:</b> Demisexual-A sexual orientation in which the person only experiences sexual attraction after forming a strong, emotional bond (platonic or romantic)..
  3457.  
  3458.  
  3459. </div class="mdescription">
  3460.  
  3461.  
  3462. </li>
  3463.  
  3464.  
  3465.  
  3466. <!-- TAB TWO -->
  3467.  
  3468. <li>
  3469.  
  3470.  
  3471.  
  3472.  
  3473. <div class="mlinks" style="margin-top:24px!important;">
  3474.  
  3475.  
  3476. <center><h4>Trivia</h4></center>
  3477. <br>
  3478. <b> DRINK:</b> Tea and Wine
  3479. <br>
  3480. <b> FOOD:</b> Chicken Teriyaki and Tempura
  3481. <br>
  3482. <b> DAY OR NIGHT:</b> night.
  3483. <br>
  3484. <b> SNACKS:</b> Strawberries and light salads
  3485. <br>
  3486. <b> SONG:</b> <i><a href="https://www.youtube.com/watch?v=0JFKpM0u6a8"> Yukihime's Song</a></i> <em>( From Hakkaden)</em>
  3487. <br>
  3488. <b> BOOK:</b> History & Science.
  3489. <br>
  3490. <b>LIKES:</b> Reading, tea ceremonies, collecting antique weapons and shopping for new fashion trends.
  3491. <br>
  3492. <b>DISLIKES:</b> Discrimination, Arrogance and Ignorant fools.
  3493. <br>
  3494. <b>DISPOSITION:</b> Calme and Demure
  3495. <br>
  3496. <b>PHOBIAS:</b> Claustophobia (minor)| Arachnaphobia (minor)
  3497. <br>
  3498.  
  3499. <b>CHARACTER TROPE:</b> Cool Big Sis, Damsel out of Distress, Dark Mistress, Dragon Lady, Femme Fatale, Good Bad Girl, Hello, Nurse!, Hot Witch, Lady In Red, Mysterious Waif, The Tease,& Yamato Nadeshiko
  3500. <br>
  3501. <b>TEMPERAMENT:</b> The phlegmatic temperament is fundamentally relaxed and quiet,<strong>&amp;</strong> ranging from warmly attentive to lazily sluggish. Phlegmatics tend to be content with themselves and are kind. They are accepting and affectionate. They may be receptive and shy and often prefer stability to uncertainty and change. They are consistent, relaxed, calm, rational, curious, and observant, qualities that make them good administrators. They can also be passive-aggressive.
  3502. <br>
  3503.  
  3504. <center><h4>HOBBIES.</h4></center>
  3505. <br>
  3506. Studying Humans.<br>
  3507. Cooking <br>
  3508. Gardening.<br>
  3509.  
  3510. <h4>MISC</h4>
  3511. <p>
  3512. Has a two-tailed pet cat demon named Nikita.
  3513. <br><br>
  3514.  
  3515.  
  3516. </li></ul>
  3517.  
  3518. </div id="Main" class="popup_block">
  3519.  
  3520.  
  3521. <!-- ABOUT PAGE: Physical -->
  3522.  
  3523.  
  3524.  
  3525. <div id="Physical" class="popup_block">
  3526.  
  3527. <div class="mimage">
  3528. <img src="https://66.media.tumblr.com/8fb75f337eca707f5d3f9bb4c734d0e8/tumblr_pro917FZix1xt4xw4o7_500.png">
  3529. </div class="mimage">
  3530.  
  3531.  
  3532. <div class="mnavi">
  3533. <ul id="tabs">
  3534.  
  3535. <li class="active">General</li>
  3536. <li>Misc</li>
  3537.  
  3538.  
  3539. </ul id="tabs">
  3540. </div class="mnavi">
  3541.  
  3542.  
  3543.  
  3544. <!-- TAB ONE -->
  3545.  
  3546.  
  3547. <ul id="tab"><li class="active">
  3548.  
  3549.  
  3550. <div class="mdescription">
  3551.  
  3552.  
  3553. <h4>General</h4>
  3554.  
  3555. <b>EYE COLOUR:</b> deep, mesmorizing red&nbsp;<strong>;</strong> with hints of violet specks. the most astonishing thing were her irises, though coloured beautifully shift between light scarlet to deep maroon. <strong>;</strong>&amp;</strong> framed by thick eyelashes, elongated, pitch black. they give off a light sheen, or glow. undoubtedly beautiful, regal with a heaviness, intensity within their depths.&nbsp;
  3556. <br>
  3557. <b>HAIR COLOUR:</b> &nbsp; lustrous locks, thick <strong>&amp;</strong> long. flowing past her thighs, <strong>;</strong> velvet to touch, voluminous. most commonly tied up with fanciful pins or delicate braids, with shorter strands framing a heart-shaped face.
  3558. <br>
  3559. <b>THREE SIZES:</b>B90-W60-H86cm
  3560. <br>
  3561. <b>HEIGHT:</b> 5’5" (165 cm)
  3562. <br>
  3563. <b>WEIGHT</b> 130 lbs (61 kg)
  3564. <br>
  3565. <b>FIGURE:</b>&nbsp;considerably comely, she has a prominent slender shape, with a notably cinched waist, generous bosom <strong>&amp;</strong> evidently lush curves. legs are long, gazelle like, with thick thighs <strong>;</strong>&nbsp;deliciously rounded <strong>&amp;</strong> strong.arms are lithe <strong>&amp;</strong> elegant, hands small <strong>;</strong> soft like satin.&nbsp;
  3566. <br>
  3567. <b>POSTURE.</b>&nbsp; straight, small arch in her back, regal. extremely quiet when she moves, resembling a wraith; light-footed, soundless. she is confidence and sultry in physical form, she does not back down from friend or foe, strangers are drawn by the demure smile and allure-the weight of her gaze holding many captive.&nbsp;
  3568. <br>
  3569. <b>COMPLEXION.</b>&nbsp; radiant, flesh is supple, pleasingly soft hairless across her human limbs <strong>(</strong> other than her head, eyebrows, tails <strong>&amp;</strong> ears <strong>)</strong>. a lone scar from the curve of her right shoulder down across her left hip, her skin be fairest in color, the palest of delicate creams.
  3570. <br>
  3571. <b>NOTABLE PHYSICAL TRAITS:</b> Very long and thick hair that she usually trims but regrows rather quickly within two-three weeks. Her eyes tend to have an 'eerie' glow about them when dark; appearing molten gold at times then flickering a faint flecks of red.
  3572. <br>
  3573. <strong>TRAITS.</strong>&nbsp; the fur of her ears match her hair colour, soft <strong>&amp;</strong> delicate in appearance, considerably smooth to the touch. often they move with particular motions. she has a total of three tails, though has forcibly sealed off two. Pale royal birthmarks curl around her tail (as well as her ankles and wrist when unsealed). her incisors are elongated, very sharp &amp; sometimes the tips jut out over her bottom lip depending on her mood.&nbsp;. She has a birthmark of the a crescent moon and a star on her left shoulder-a sign of being Tsukiyomi's child.
  3574. <br>
  3575.  
  3576. <strong>STYLE.</strong>&nbsp; Clothing style various with the day and her mood; Enticingly betwitcing, displaying her curves without being overly revealing <strong>&amp;</strong> When not in modern-esque clothing or traditional robes, she often pertains to her kimono that splits up the sides, cinched by a sash at the waist. <a href="https://40.media.tumblr.com/6a8ce3653e1d0ccd01150fe795aa1eb7/tumblr_o4kwe2VUVq1v007k5o1_1280.png">☾</a> <a href="https://41.media.tumblr.com/d5078ee300c20c12714fb7c952e9fa84/tumblr_o4inhlKC1D1v007k5o1_1280.png">☾</a></p>
  3577. <br>
  3578. <b>VOICE:</b> (Jap) <a href="https://www.youtube.com/watch?v=PdzVcDUs4-k"> Inoue Kikuko </a> | (eng) <a href="https://www.youtube.com/watch?v=xqV_4CG8uZY"> Laura Bailey </a>
  3579. <br>
  3580. <b>SCENT:</b> If she hasn't added a few drops of perfume, she carries the scent of her garden of various flowers (Jasmine, orchids, sakura.) and rain.
  3581. <br>
  3582.  
  3583.  
  3584. </div class="mdescription">
  3585.  
  3586.  
  3587. </li>
  3588.  
  3589.  
  3590.  
  3591. <!-- TAB TWO -->
  3592.  
  3593. <li>
  3594.  
  3595.  
  3596.  
  3597.  
  3598. <div class="mlinks" style="margin-top:24px!important;">
  3599.  
  3600.  
  3601. <a href="URL HERE">
  3602. Link title one
  3603. </a>
  3604.  
  3605. <a href="URL HERE">
  3606. Link title two
  3607. </a>
  3608.  
  3609. <a href="URL HERE">
  3610. Link title three
  3611. </a>
  3612.  
  3613. <a href="URL HERE">
  3614. Link title four
  3615. </a>
  3616.  
  3617. <a href="URL HERE">
  3618. Link title one
  3619. </a>
  3620.  
  3621. <a href="URL HERE">
  3622. Link title two
  3623. </a>
  3624.  
  3625. <a href="URL HERE">
  3626. Link title three
  3627. </a>
  3628.  
  3629. <a href="URL HERE">
  3630. Link title four
  3631. </a>
  3632.  
  3633. <a href="URL HERE">
  3634. Link title one
  3635. </a>
  3636.  
  3637. <a href="URL HERE">
  3638. Link title two
  3639. </a>
  3640.  
  3641. <a href="URL HERE">
  3642. Link title three
  3643. </a>
  3644.  
  3645. <a href="URL HERE">
  3646. Link title four
  3647. </a>
  3648.  
  3649. </div class="nvlinks">
  3650.  
  3651.  
  3652.  
  3653. </li></ul>
  3654.  
  3655. </div id="Physical" class="popup_block">
  3656.  
  3657.  
  3658. <!-- ABOUT PAGE: Personality -->
  3659.  
  3660.  
  3661.  
  3662. <div id="Personality" class="popup_block">
  3663.  
  3664. <div class="mimage">
  3665. <img src="https://66.media.tumblr.com/9ef67dd81ff61ec459535fedb3f3458a/tumblr_pro917FZix1xt4xw4o2_500.png">
  3666. </div class="mimage">
  3667.  
  3668.  
  3669. <div class="mnavi">
  3670. <ul id="tabs">
  3671.  
  3672. <li class="active">General</li>
  3673. <li>Miscs</li>
  3674.  
  3675.  
  3676. </ul id="tabs">
  3677. </div class="mnavi">
  3678.  
  3679.  
  3680.  
  3681. <!-- TAB ONE -->
  3682.  
  3683.  
  3684. <ul id="tab"><li class="active">
  3685.  
  3686.  
  3687. <div class="mdescription">
  3688.  
  3689.  
  3690. <h4>Personality</h4>
  3691.  
  3692. <p>Like the moon, she is fickle. Once she was a naive maiden who wanted for naught, she knew of hard work and peaceful time. It was only with time and cruel hardships that she grew, -<em>changed.</em> Eyes no longer shine with innocent mirth, now they pierce through the hearts of others and their intentions. Trust is not something she will give, for betrayal still scars her soul. There are times when she is kind, &amp; even <strong>M E R C I F U L</strong>. Where she will go back to her instinctive trade as a healer and mend scars and broken bones. But just as she is kind, she can also be <u>CRUEL</u>. Once her rage is invoked, it's best to run for beneath porcelain skin and a beautiful smile lies the makings of a true <strong><u>D E M O N</u></strong>, who will ravage and destroy you.
  3693.  
  3694. <p>Being two halves so opposite creates conflict in her heart. She wishes she could be more, WISHES she could tame the nature of the beast in her veins. There is no one she can voice her pain to, for who could she trust with something that would leave her so <em>vulnerable?</em> Even those rare few she calls friends, can not claim to know much of her past, for it's never been revealed. One could call her stubborn and even selfish on hand, but friendly few know that beyond her eccentric behavior lies a kind heart and tormented soul that grows weary with time.</p>
  3695.  
  3696. <p>Kaguya acts in a very refined manner, like any high-born member of the nobility, as her title would suggest. She is almost always smiling and seems to keep herself in a good mood at all times. Building on her natural refinement, Kaguya is typically very calm and calculating; thus, losing her temper would be unthinkable. Her serenity is essentially a tool to accentuate her own beauty and gracefulness. Even when facing off against enemies, Kaguya maintains her poise and graceful bearing, yet she usually treats her foes with arrogant disdain and blatant sarcasm. Kaguya is a very goal-oriented person, ruthlessly pursuing her objectives in a careful and methodical manner.
  3697. </p>
  3698. <br>
  3699. <p>For a fuller explaination of her personality <a href="" title="Full Detailed Personality">read here</a>.</p>
  3700.  
  3701.  
  3702. </div class="mdescription">
  3703.  
  3704.  
  3705. </li>
  3706.  
  3707.  
  3708.  
  3709. <!-- TAB TWO -->
  3710.  
  3711. <li>
  3712.  
  3713.  
  3714.  
  3715.  
  3716. <p><b>POSITIVE TRAITS.</b><br>
  3717. <p>intelligent, polite, demure <strong>&amp;</strong> docile. Articulate, while being reserved. highly observant. it&rsquo;s rare she that speaks her voice over others, politely waiting her turn. if a person is trusting, she can become overly affectionate &amp; dote on them, though unlikely. she&rsquo;s known for being incredibly selfish. considered to be too ruthless by <strong>&amp;</strong> some. she is attentive, enchanting & alluring.</p>
  3718. <br>
  3719. <p><b>NEGATIVE TRAITS.</b><br>
  3720. <p>Selfish, Aloof, often not disclosing her own thoughts or sharing her true thoughts. Demanding, often with high expectations, cruel and cold-hearted; manipulative for whatever she desires or schemes.</p>
  3721.  
  3722.  
  3723.  
  3724. </li></ul>
  3725.  
  3726. </div id="Personality" class="popup_block">
  3727.  
  3728.  
  3729.  
  3730. <!-- ABOUT PAGE: Relationships -->
  3731.  
  3732.  
  3733.  
  3734. <div id="Relationships" class="popup_block">
  3735.  
  3736. <div class="mimage">
  3737. <img src="https://66.media.tumblr.com/d9e69b7aa4e473d3a808e03eae0105a2/tumblr_pro917FZix1xt4xw4o9_500.png">
  3738. </div class="mimage">
  3739.  
  3740.  
  3741. <div class="mnavi">
  3742. <ul id="tabs">
  3743.  
  3744. <li class="active">Family</li>
  3745. <li>Bonds</li>
  3746.  
  3747.  
  3748. </ul id="tabs">
  3749. </div class="mnavi">
  3750.  
  3751.  
  3752.  
  3753. <!-- TAB ONE -->
  3754.  
  3755.  
  3756. <ul id="tab"><li class="active">
  3757.  
  3758.  
  3759. <div class="mdescription">
  3760.  
  3761.  
  3762. <h4>Parents</h4>
  3763.  
  3764. <b>MOTHER:</b> <u>Tsukiyomi</u>
  3765. <br>
  3766. <img src="https://78.media.tumblr.com/baf731d052a0aa5ebb62b7308c1394b2/tumblr_inline_p8nlfmaH4U1vkxsjy_540.jpg" style='height: 60px; z-index: 1;' >
  3767. <img src="https://78.media.tumblr.com/60fd65a69cce4d34bd40e7b3f4071651/tumblr_inline_p8nlfmCZqJ1vkxsjy_540.jpg" style='height: 60px; z-index: 1;'>
  3768. <img src="https://78.media.tumblr.com/e09e36e316283df65e8c55dfe29e4b6e/tumblr_inline_p8nlfnCaAe1vkxsjy_540.jpg" style='height: 60px; z-index: 1;'>
  3769. <img src="https://78.media.tumblr.com/798df9e6b2045a4f80f475e4135183a7/tumblr_inline_p8nlfnUZzJ1vkxsjy_540.jpg" style='height: 60px; z-index: 1;'>
  3770. <br><p>
  3771. Goddess of the Moon and Empress of the Celestial people, she is a warrior of the oldest kind who had once fallen in love with the Black Fox, through his disguise as her bodyguard.</p>
  3772. <br>
  3773. <hr/>
  3774. <b>FATHER:</b> <u>Yamiyo</u>
  3775. <br>
  3776. <img src="https://78.media.tumblr.com/190eee7dd50dee268eb410b57e13b289/tumblr_inline_p8nlfozRQL1vkxsjy_540.jpg" style='height: 60px; z-index: 1;' >
  3777. <img src="https://78.media.tumblr.com/028ab3cbe53248bf5c088204700f2f40/tumblr_inline_p8nlfoPQLE1vkxsjy_540.png" style='height: 60px; z-index: 1;'>
  3778. <img src="https://78.media.tumblr.com/6109d1438a9ae4841db38d8eca6b54f1/tumblr_inline_p8nlfol8tG1vkxsjy_540.png" style='height: 60px; z-index: 1;'>
  3779. <img src="https://78.media.tumblr.com/06a98f574eeff19ba85e298b80b90c4b/tumblr_inline_p8nlfo9ZH81vkxsjy_540.png" style='height: 60px; z-index: 1;'>
  3780. <p>
  3781. alt names;
  3782. <br>
  3783. SEUNG-MAN m Korean<br>
  3784. From Sino-Korean 承 “inherit, receive; succeed” and 晩 “night”.
  3785. <br>
  3786. 暗 ( an / àn ) m Chinese <br>
  3787. dark, concealed, dim, dull, hidden
  3788. <br>
  3789. <br>
  3790. Yamiyo was a notoriously wicked Gumiho, having done his share in initiating conflicts between village ( oh what a dark taste for mischief he had ) to cultivating those who would eventually begin leaving him tribute over the years and throughout generations. He used his ascension as a means to grow in power, feeding on the flesh of mortals and killings in his name. He ossessed one of Tsukiyomi's closest guards, and seduced her to impregnate her with his offspring.
  3791. <br>
  3792. Ruler of the Darker realms of the Lunar race.
  3793. <br>
  3794. <hr/>
  3795. <h4>Siblings / Other Family</h4>
  3796. <b>Kurogane</b> ( Half-Brother ):
  3797. <br>
  3798. <img src="https://78.media.tumblr.com/7e4dfc401148fffa207eb3077c107274/tumblr_inline_p8nlk5ZrLg1vkxsjy_540.png" style='height: 60px; z-index: 1;' >
  3799. <img src="https://78.media.tumblr.com/007d47ccfcd1feab81b952f636dc5cc7/tumblr_inline_p8nlk6ahSG1vkxsjy_540.png" style='height: 60px; z-index: 1;'>
  3800. <img src="https://78.media.tumblr.com/a6d8db69901af8fbd055ddddc55dc099/tumblr_inline_p8nlk6z5hL1vkxsjy_540.png" style='height: 60px; z-index: 1;'>
  3801. <img src="https://78.media.tumblr.com/7d13dc3994722c7f3f23b8199224dc3b/tumblr_inline_p8nlk6jGyY1vkxsjy_540.png" style='height: 60px; z-index: 1;'>
  3802. <p>
  3803. Kurogane was born well before Kaguya, making him her older half-brother, in a spiritual sense more so then blood. Yamiyo wanted a strong successor born of his blood–naturally, he used his harem for this. Kurogane was raised not as a son–but as a slave–or a weapon. He had to fight each of those siblings– not even seeing them as a family or of value; it was all about survival. In time he rose up the ranks to be deemed worthy of becoming a usable 'host' for Yamiyo should he be unable to travel and the leading general of his forces.
  3804. <hr/>
  3805. <br>
  3806. <b>Hikari</b> ( Cousin ):
  3807. <br>
  3808.  
  3809.  
  3810. </div class="mdescription">
  3811.  
  3812.  
  3813. </li>
  3814.  
  3815.  
  3816.  
  3817. <!-- TAB TWO -->
  3818.  
  3819. <li>
  3820.  
  3821. <div class="mdescription">
  3822. <center>
  3823. <b>Suitors who may try to win her favor && those close to her heart</b>
  3824.  
  3825. <br><br>
  3826.  
  3827. <!--start copying from here if you want more verse blocks-->
  3828. <div class="vee">
  3829.  
  3830. <a href="https://keeshava.tumblr.com/" title="Darling Krishna"><img class="versu" src="https://66.media.tumblr.com/bf529b4293f9e4d1607d2b4fafa4b12d/tumblr_inline_plnl77AP8P1w2tvds_1280.png"></a> <!--REPLACE WITH IMAGE URL-->
  3831.  
  3832. <p><a href="VERSE TAG"><b>Krishna</b></a>
  3833. <br><br><b>AGE:</b> Well over a thousand.
  3834. <br><b>SPECIE:</b> Divine
  3835. <br><b>RELATIONSHIP:</b> Close Friend / Lover(?)
  3836.  
  3837. <br><br><br>Krishna is a dear friend that Kaguya enjoys debating all manner of topics and discussions with. The two are the free-spirited sort that other's have a difficult time grasping, and perhaps that is a reason why they connect so well. She's flirted with Krishna, and while she has a genuine affection and respect for their friendship, wasn't shy to understand the attraction that lurked between them. She can admit to carrying love for this man, as to what sort of love, she's yet to settle on a name. She offers him council and on occasion scolds his recklesness when needed.
  3838. <br>
  3839. </div>
  3840.  
  3841. <!--paste here-->
  3842.  
  3843.  
  3844. <!--start copying from here if you want more verse blocks-->
  3845.  
  3846.  
  3847.  
  3848. <a href="https://ardenssolis.tumblr.com/" title="Sun King"><img class="versu" src="https://78.media.tumblr.com/38d119085af83b16570291bd5c2a0ba3/tumblr_inline_pahupm3Ioy1ujb3ww_540.png"></a> <!--REPLACE WITH IMAGE URL-->
  3849.  
  3850. <p><a href="VERSE TAG"><b>Ozymandias / Ramesis </b></a>
  3851. <br><br><b>AGE:</b> Ancient
  3852. <br><b>SPECIE:</b> Divine-born
  3853. <br><b>RELATIONSHIP:</b> Dear Friend / wine companion / Stray Cat Adopted
  3854.  
  3855. <br><br><br>She was curious of the man born from the Sun since their first coincidential meeting in a cafe. Who'd have thought he'd be so delightful to be around? That and it would seem her dear Nikita had grown overly fond of Ozy--or perhaps of his earrings. Though her brother isn't agreeable, Kaguya decides she enjoys challenging Ozymandias wit and also hearing him speak of his beloved Egypt--its something she finds fascinating, more so as a woman who loves to learn more of a culture opposite of her own. Perhaps its true what they say of opposites gravitating towards one another? Regardless, she hopes to introduce him to more sake and that hey may enjoy the loveliness of Japan.
  3856. <br>
  3857.  
  3858.  
  3859.  
  3860. <!--paste here-->
  3861.  
  3862. <!--start copying from here if you want more verse blocks-->
  3863.  
  3864.  
  3865. <a href="https://valiantbcrn.tumblr.com/" title="Alex"><img class="versu" src="https://78.media.tumblr.com/12c2e8f7b08adc96dc2a288912db1c80/tumblr_inline_pafy25iS1i1v10sho_540.gif"></a> <!--REPLACE WITH IMAGE URL-->
  3866.  
  3867. <p><a href="VERSE TAG"><b>Alexander The Great</b></a>
  3868. <br><br><b>AGE:</b> Ancient --appears mid-thirties?
  3869. <br><b>SPECIE:</b> Demi-god / Heroic Spirit
  3870. <br><b>RELATIONSHIP:</b> Servant turned Lover
  3871.  
  3872. <br><br><br>A heroic spirit she summoned to aide her in the Holy Grail War, but one that she planned on conquering with her own goals in mind. Kaguya is certainly motivated and was initially relucant in giving any voice to her true plans but Alexander's strength was more then ideal in helping her. He grows fond of her, and takes the time to display his affections--Kaguya learns a conquering king can apparently have his charm. Ah but will such a romance survive during such a cruel war?
  3873. <br>
  3874.  
  3875.  
  3876.  
  3877. <!--paste here-->
  3878.  
  3879.  
  3880. <!--start copying from here if you want more verse blocks-->
  3881.  
  3882.  
  3883.  
  3884. <a href="https:// /rubra-luscinia.tumblr.com/" title="Beloved Child"><img class="versu" src="https://78.media.tumblr.com/de778e09fb2daa7eb1f4fbcc9635a4d8/tumblr_inline_p8iwnbyENE1tb21c6_540.jpg"></a> <!--REPLACE WITH IMAGE URL-->
  3885.  
  3886. <p><a href="VERSE TAG"><b>Lacie</b></a>
  3887. <br><br><b>AGE</b>: early twenties
  3888. <br><b>TIMELINE</b>: Pandora Hearts
  3889. <br><b>RELATIONSHIP</b>: Familial / Protector
  3890.  
  3891. <br><br>Lacie is a child of misfortune, supposedly a curse on the world all for being born with red eyes--much like Kaguya herself. As a baskerville, Kaguya was insisted on guarding young lacie, teaching her and caring for her when Oswald could not. She grew overly fond of the girl and like a den mother, would carry her back when she would escape the tower to roam about the town. Yet Kaguya was never angry--no, she liked Lacie's free spirited nature and encouraged her independence... As for what would happen to her in time, Kaguya would dread that day and perhaps.. Just perhaps, would fight to keep her safe. To keep her alive... For she hardly believed Lacie was a curse.
  3892.  
  3893.  
  3894.  
  3895.  
  3896. <!--paste here-->
  3897.  
  3898. </div class="mdescription">
  3899.  
  3900. </li></ul>
  3901.  
  3902. </div id="Relationships" class="popup_block">
  3903.  
  3904.  
  3905.  
  3906. <!-- ABOUT PAGE: Abilities -->
  3907.  
  3908.  
  3909.  
  3910. <div id="Abilities" class="popup_block">
  3911.  
  3912. <div class="mimage">
  3913. <img src="https://66.media.tumblr.com/400e50f1b565a57174b30ae4790c590c/tumblr_prouguOppL1xt4xw4o1_500.png">
  3914. </div class="mimage">
  3915.  
  3916.  
  3917. <div class="mnavi">
  3918. <ul id="tabs">
  3919.  
  3920. <li class="active">Strengths</li>
  3921. <li>Weaknesses</li>
  3922.  
  3923.  
  3924. </ul id="tabs">
  3925. </div class="mnavi">
  3926.  
  3927.  
  3928.  
  3929. <!-- TAB ONE -->
  3930.  
  3931.  
  3932. <ul id="tab"><li class="active">
  3933.  
  3934.  
  3935. <div class="mdescription">
  3936.  
  3937.  
  3938. <b>IMMORTALITY:</b> Frozen into her immortality after reaching the physical peak of her age.
  3939. <br>
  3940. <b>STRENGTH:</b> She has preternatural strength and speed.
  3941. <br>
  3942. <b>TELEPORTATION:</b> Kaguya is able to transport herself to far away destinations instantaneously. This is facilitated by the moon, as Kaguya's image fades into the moon, but rematerializes in an area where its beams touches. Kaguya is also able to move quickly from place to place by transforming into a swirling gust of cherry blossoms. This process starts by Kaguya enveloping herself in cherry blossoms, then traveling as the stream of petals, finally rematerializing after the petals again swirl around the area she wishes to reappear in.
  3943. <br>
  3944. <b>BIOLOGY:</b> Physically she appears no different then other mortals with the exception of her diet being unique. She's capable of eating regular meals like other mortals however refrains from over indulgence and eats light meals and no red meat.
  3945.  
  3946. <br>
  3947. <b>TELEKINESIS:</b> The ability to lift various objects with her mind, or to be able to levitate objects and even people, though she does not do this frequently for depending how long she uses it or the amount of power used, it can be draining.
  3948. <br>
  3949. <b>TELEPATHY:</b> To communicate to another via shared mind link, often with the other unawares or with the consent of a higher being.
  3950. <br>
  3951. <b>REGENERATION:</b> Like every other immortal, she can regenerate from anything other than having her head removed or if it's a spell specific/enchantment that prevents healing. She will not scar, not even if she has had a limb removed. Healing takes time.&nbsp;
  3952. <br>
  3953. <b>HEALING:</b> Due to her knowledge of herbs and magical gifts, she is capable of healing others.
  3954. <br>
  3955. <b>FLIGHT:</b> She can levitate, but to truly 'fly' she requires her feathered celestial robe.
  3956. <br>
  3957. <b>ENERGY MANIPULATION:</b> Minor energy manipulation and capable of conjuring barriers.
  3958. <br>
  3959. <b>MAGIC/SEALS/SPELLS::</b> In the divine realm, she was taught to sing to treas and call on spirits to help her. She knows old runes taught by an ancient mentor and weaves safe-guards to protect herself. Studying extensively in magic, Kaguya has developed a vast amount of knowledge in magic, seals especially and even kekkai&rsquo;s (barriers) that could be beneficial to her during her moments of weakness.
  3960. <br>
  3961. <strong>Dark Matter</strong> Shadows sway often with her mood and can even tae on the shape of a vulpine familiar, an inherited ability from her father.
  3962. <br>
  3963. <b>ILLUSIONS</b>A kitsune's illusions is their reality. What they make, for them, and for others, is as real as anything found or crafted in nature. Anything that a kitsune builds or transforms, becomes what the kitsune desired. A kitsune can make people, animals, and objects, which can&rsquo;t be distinguished from the real thing. The more kitsune team up to make things, the more can be made. A handful of kitsune can build a city if they desired. Kuro prefer&rsquo;s to keep things as is, but when she makes a permanent stay for a few year&rsquo;s, chances are that there will be several realistic illusions created by her.
  3964. <br>
  3965. <b>SEDUCTION:</b> Maidens are also very beautiful creatures, seduction comes easily for them, the more powerful maiden can actually take over the mind of a target if they lock gazes with them. While under the control of the maiden, the victim sees, thinks, and lives in a world designed by the celestial maiden, all inside the target&rsquo;s mind.
  3966. <br>
  3967. <b>ELEMENTS/NATURE MANIPULATION</b>Kaguya has rather diverse and extensive connection with nature. She can manipulate the elements to her advantage; Able to summon flames from her palm and purify water previously tainted. When her emotions run high and are invoked with rage or sorrow, she can unintentionally summons a storm or cause temperatures to drop. Another prominent natural connection that Kaguya possesses is with that of the cherry blossom tree. When Kaguya is present, any and all cherry trees in the area will immediately blossom, regardless of season, even in the winter. They will also glow with a bright, unnatural light. She can also manipulate the tree itself, using the roots to ensnare her foe, channeling her aura through it to shock him, with an electrical-like effect. In addition to her effect on actual cherry trees, cherry blossom petals continuously and inexplicably fall from the sky whenever Kaguya is present.
  3968. <br>
  3969. <b>CLAIRVOYANCE</b> Kaguya has the ability to sense the inner-most desires of people she encounters. She often uses this ability to try and manipulate others into doing her bidding, with mixed result.
  3970. <br>
  3971. <b>FEED/DIET:</b> Like other supernatural beings, Kaguya has to occasionally feed but does not enjoy indulging her demonic nature. After suppressing it for several months, it leaves negative consequences to her strength. She feeds off the energy of others through a vampiric manner, but admits that blood has it's uses as well.
  3972. <br>
  3973. <b>OTHER DETAILS:</b> <a href="https:// powerlisting.wikia.com/wiki/Kitsune_Physiology#Applications" title="Kitsune Stereotype" target="_blank">More details to Kitsune abilities</a>
  3974.  
  3975.  
  3976.  
  3977. </div class="mdescription">
  3978.  
  3979.  
  3980. </li>
  3981.  
  3982.  
  3983.  
  3984. <!-- TAB TWO -->
  3985.  
  3986. <li>
  3987.  
  3988.  
  3989.  
  3990. <p>
  3991. <b>TAINTED GROUNDS:</b>Tainted grounds bring with them dark <em>WHISPERS</em> of temptations and greed, among many more. It spreads like a sickness, and can CORRUPT her and leave her weak and sick-to a point that darker instincts awakened and seals weaken at the force behind her demonic half.
  3992. <br>
  3993. <b>ENERGY SOURCE:</b> While capable of gaining energy through others, her main powersource is the moon and with it's phases vary her abilities and nature.<br /> <strong>Full Moon:</strong> On the night of a full moon, it's almost like being reborn. Oh at first she feels PAIN, but she reverts to a sacred form; a maiden with no traces of demonic bloodline.
  3994. <br>
  3995. <b>ENDURANCE:</b>Shes got enough energy and stamina granted to her from her immortality however there are always limits to how long she can endure without proper food.<br>
  3996. <b>INJURY:</b> She is capable of getting injured like anyone other supernatural beings.
  3997. <br>
  3998. <b>ILLNESS:</b> Capable of getting sick on nights before the full moon of when she's used too much of her power. Can also be harmed by human means, i.e; tranquilizer, sleeping gas, anesthetics, and clearly when a weapon is being used such as a sword or gun (she's not impervious to weapons, but healing takes a lot of time).
  3999. <br>
  4000. <b>EXORCISM || SUTRA's:</b>This will annoy her given she's not the type to posess someone, but sutra's will burn her skin and can also work to trap her. To tear them off hurts like hell and will weaken her.</p>
  4001. <b>Celestial Robe:</b> Without it, she loses her connection to the celetial realm of the divine and most of her celestial given powers. It is very precious to Kaguya and unfortunetly one night as she bathed, a mortal stole it from her and she has yet to find it. <br>
  4002.  
  4003.  
  4004.  
  4005. </li></ul>
  4006.  
  4007. </div id="Abilities" class="popup_block">
  4008.  
  4009.  
  4010. <!-- ABOUT PAGE: Relationships -->
  4011.  
  4012.  
  4013.  
  4014. <div id="Bio" class="popup_block">
  4015.  
  4016. <div class="mimage">
  4017. <img src="https://66.media.tumblr.com/d1f6dd4ea4b73268f32cf42c5ae8bffb/tumblr_profi8aI4H1xt4xw4o7_r1_500.png">
  4018. </div class="mimage">
  4019.  
  4020.  
  4021. <div class="mnavi">
  4022. <ul id="tabs">
  4023.  
  4024. <li class="active">Folktale</li>
  4025. <li>Epilogue</li>
  4026.  
  4027.  
  4028. </ul id="tabs">
  4029. </div class="mnavi">
  4030.  
  4031.  
  4032.  
  4033. <!-- TAB ONE -->
  4034.  
  4035.  
  4036. <ul id="tab"><li class="active">
  4037.  
  4038.  
  4039. <div class="mdescription">
  4040.  
  4041.  
  4042. <p align="center"><img src="https://31.media.tumblr.com/5c7c3244e4a61b5dde0d335ab5b12356/tumblr_inline_o5hnldx2yg1turt3p_500.gif" /></p>
  4043. <p align="center"><strong style="line-height: 19.6px; text-align: start;">TELL US YOUR TALE PRINCESS LONG LOST.</strong></p>
  4044. <i>Tennyo-</i>are unnaturally beautiful women dressed in ornate, colorful kimonos (traditionally in five colors), exquisite jewelry, and flowing scarves that wrap loosely around their bodies. They usually carry lotus blossoms as a symbol of enlightenment or play musical instruments such as the biwa, or flute. It's believed Kaguya was born in the heavenly realm, her mother Tsukuyomi, the diety of the moon whilst living in the celestial palace. It was unforseen when her father was revealed to be a dark kumiho-god.
  4045. <hr>
  4046. <i>Tsukiyomi</i>, a moon goddess who watched over the celestial heavens of the north, a regal ruler and fair empress. She was well revered for her fierce spirit and protective nature over her people and lands. One fateful night she came across a wounded warrior and offered him shelter, once cleaned up--was taken by his handsome features. Little did she realize his true nature.. He was an ancient being; a <i>nine-tailed fox</i> of dark celestial powers. He fed off of old customs, fear and sacrifice--the more died and bled in his name the stronger he became. They knew him as <b>Yamiyo</b>, a creature born of the darkness of night.
  4047. <p>
  4048. Realizing she was pregnant with his child, Tsukiyomi fought to keep her borders and lands safe, strengthening her military force. Yamiyo waited patiently up until Kaguya's birth, which started the <i>Great Celestial War</i>. Fearing the possibility of her daughter being taken and used for dark powers, Tsukiyomi sent Kaguya to eart to be raised by mortals, both away from the war and her father's reach.
  4049. <br>
  4050. <p>
  4051. Kaguya, much like the folktale known, was discovered by an elderly couple who found her and raised her as their own. Over the years they grew in wealth, providing Kaguya with her own castle and home in the village. She was well adored by her villagers and adoptive parents ; she was a daughter worth having. Her kindness and love had a way of spreading forth unto all who met her. When her parents felt tired and weary, they had only to look pon the soft glow of their daughter, and feel their pains disappear and aches fade.</p>
  4052. <p>
  4053. Kaguya had slowly learned of her powers as she grew in age, spells came naturally and she learned to safely ward her home. When she became old enough for marriage, rumors of her beauty spread far and wide ; eventually five prominent figures appearing requesting her hand. Kaguya however, had no intention to marry anyone, content with her life and family. She created five tasks, each meant for one suitor to retreave a sacred treasure that connected to its respected element.</p>
  4054. <p> Though it took each a year, some suitors perished, other's offered fakes, and or gave up on the task. Kaguya had outwitted each, humiliating the suitors and shaming them in their fraud and insincere attempts.
  4055.  
  4056. </div class="mdescription">
  4057.  
  4058.  
  4059. </li>
  4060.  
  4061.  
  4062.  
  4063. <!-- TAB TWO -->
  4064.  
  4065. <li>
  4066.  
  4067.  
  4068. <div class="mdescription">
  4069.  
  4070.  
  4071. <h4>Muse 1 name</h4>
  4072.  
  4073. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi. Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi.
  4074.  
  4075. <h4>You can use H4's for titles</h4>
  4076.  
  4077. <p>At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, At accusam aliquyam diam diam dolore dolores duo eirmod eos erat, et nonumy sed tempor et et invidunt justo labore Stet clita ea et gubergren, kasd magna no rebum. sanctus sea sed takimata ut vero voluptua. est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat.
  4078.  
  4079.  
  4080. </div class="mdescription">
  4081.  
  4082.  
  4083.  
  4084.  
  4085. </li></ul>
  4086.  
  4087. </div id="Bio" class="popup_block">
  4088.  
  4089.  
  4090.  
  4091.  
  4092. <!--VERSES START HERE -->
  4093. <!-- MUSE PAGE: VERSE 1 (Origin)-->
  4094.  
  4095.  
  4096.  
  4097. <div id="Verse1" class="popup_block">
  4098.  
  4099. <div class="mimage">
  4100. <img src="https://66.media.tumblr.com/c37f6a3c4b782a0ee8ac75089fb99ba7/tumblr_pro917FZix1xt4xw4o1_500.png">
  4101. </div class="mimage">
  4102.  
  4103.  
  4104. <div class="mnavi">
  4105. <ul id="tabs">
  4106.  
  4107. <li class="active">General</li>
  4108. <li>Modern</li>
  4109.  
  4110.  
  4111. </ul id="tabs">
  4112. </div class="mnavi">
  4113.  
  4114.  
  4115.  
  4116. <!-- TAB ONE -->
  4117.  
  4118.  
  4119. <ul id="tab"><li class="active">
  4120.  
  4121.  
  4122. <div class="mdescription">
  4123.  
  4124.  
  4125. <h4>Folktale Origins</h4>
  4126.  
  4127. <p>A young child is found within the bamboo grove by an older couple. Instantly the two fall in love with the baby girl, raising her as their own. With the aide of gold found where the young princess had been discovered, her father built high walls to protect his precious child away from the eyes of many suitors. Now of a marriageable age, the princess refuses to relinquesh her freedom--ah but at what cost? The only one who had managed to hold sway over her heart was the Emperor.
  4128.  
  4129. <p> Kaguya and Mikado, the Emperor, unfortunetly did not get together; He courted her and she accepted his letters, gifts and company… However, they did not marry despite his proposals, and though he tried to protect Kaguya from the celestial army with one thousand of his warriors;; but Tsukiyomi is a being who lets nothing stand in their way, and a thorough planner at that. From the enchanted robe that made Kaguya more amiable to leave her loved ones on earth, to leave the Emperor the rare chance of immortality that he REFUSED ( “What is the point of this elixir of immortality if I can not be with Kaguya?”) —This story IS a tragedy and the Emperor returns to focus on his people while Kaguya ascended to the heavenly moon capital and eventually govern the night sky and stars as her mother before her like a moon goddess. She reconnects with her ancestry, learning of her father and mother and discovering more of the eluded past that lead to her being sent to live amongst humans.</p>
  4130.  
  4131. <h4>Origin Alt;/h4>
  4132.  
  4133. <p>Kaguya and Mikado HAD married after he’d courted her for a few years; she’d finally accepted. She moved from her home in the mountains to the Emperors Palace in Kyoto, and in the fleeting years; they had children. Kaguya granted him twins; a boy and girl respectively whom she leaves on earth to continue the line.
  4134.  
  4135. <h4>Heavenly Alt;/h4>
  4136.  
  4137. <p>Kaguya PLEADS to her mother and divine parent, Tsukiyomi, that she will do as promised to become a proper goddess and empress of night but that she’ll have no husband or king other then Mikado. Kaguya did as she was told, and remained both dutiful and faithful, turning away from any other suitors and making it clear whom she’d rather marry. Eventually, Tsukiyomi agrees in witnessing her daughter’s both genuine love and sorrow for this one man and blesses the marriage and union as well as accepts him into the heavenly court.
  4138.  
  4139.  
  4140.  
  4141. </div class="mdescription">
  4142.  
  4143.  
  4144. </li>
  4145.  
  4146.  
  4147.  
  4148. <!-- TAB TWO -->
  4149.  
  4150. <li>
  4151.  
  4152.  
  4153. <div class="mdescription">
  4154.  
  4155.  
  4156. <h4>Modern Origins 01</h4>
  4157.  
  4158. Kaguya works as a foresnic investigator, with several doctorates on her sleeve she's become a most useful agent of the law--choosing to meddle in cases of high intrigue. She lives with her twelve year old daughter, Sakura, and is a respective widow.
  4159.  
  4160. <h4>Modern Origins 02</h4>
  4161.  
  4162. <p>At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, At accusam aliquyam diam diam dolore dolores duo eirmod eos erat, et nonumy sed tempor et et invidunt justo labore Stet clita ea et gubergren, kasd magna no rebum. sanctus sea sed takimata ut vero voluptua. est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat.
  4163.  
  4164.  
  4165. </div class="mdescription">
  4166.  
  4167.  
  4168.  
  4169. </li></ul>
  4170.  
  4171. </div id="Verse1" class="popup_block">
  4172.  
  4173.  
  4174.  
  4175.  
  4176.  
  4177.  
  4178.  
  4179.  
  4180.  
  4181.  
  4182.  
  4183.  
  4184.  
  4185.  
  4186.  
  4187.  
  4188. <!-- MUSE PAGE: Verse 2 (Inuyasha)-->
  4189.  
  4190.  
  4191.  
  4192. <div id="Verse2" class="popup_block">
  4193.  
  4194. <div class="mimage">
  4195. <img src="https://66.media.tumblr.com/c123aa34117f3e92697060d1023b4bcc/tumblr_profi8aI4H1xt4xw4o3_500.png">
  4196. </div class="mimage">
  4197.  
  4198.  
  4199. <div class="mnavi">
  4200. <ul id="tabs">
  4201.  
  4202. <li class="active">General Info</li>
  4203. <li>Stats</li>
  4204.  
  4205.  
  4206. </ul id="tabs">
  4207. </div class="mnavi">
  4208.  
  4209.  
  4210.  
  4211. <!-- TAB ONE -->
  4212.  
  4213.  
  4214. <ul id="tab"><li class="active">
  4215.  
  4216.  
  4217. <div class="mdescription">
  4218.  
  4219. <p>Kaguya was a maiden whose beauty was rumured to be ethereal, so much so, that powerful figures had sought her out for a chance in winning her hand in marraige. Little did they know that the maiden was both not of this world, and had no intention to marry, aware one night she'd return to the moon.
  4220.  
  4221. <p>One night when bathing, perhaps the same night she was meant to “return” a demon came —and since Kaguya was young still and her powers not fully mastered; had tried to devour her. The demon failed, but did manage to put Kaguya under a sleep spell and take on her appearance as well as steal her heavenly robe. The demon chose to draw on kaguyas power as she slept, sealed away within Mount Fuji.
  4222.  
  4223. <p>That’s when it was believed that Kaguya “Freezes time without remorse” etc, and was sealed in a mirror by the monk (miroku’s ancestor) and later freed when naraku was presumed dead. However after her defeat, the real Kaguya awoke from her slumber and regained her powers and missing robe. She had agreed to reward inuyasha gang, and ultimately decided to return to her village and see how it fared—learning its been well over a hundred years since her “departure”.
  4224.  
  4225. <p>Through developments she agrees to assist her friend kikyo, learning she was revived and thankful for the times she’d protected her home. She promised kikyo to grant her a true body, whenever the other wished, as well as assist in finishing off the cruel demon naraku.
  4226.  
  4227.  
  4228. </div class="mdescription">
  4229.  
  4230.  
  4231. </li>
  4232.  
  4233.  
  4234.  
  4235. <!-- TAB TWO -->
  4236.  
  4237. <li>
  4238.  
  4239.  
  4240.  
  4241.  
  4242. <div class="mlinks" style="margin-top:24px!important;">
  4243.  
  4244. <h4>General Links</h4>
  4245.  
  4246. <a href="URL HERE">
  4247. Link title one
  4248. </a>
  4249.  
  4250. <a href="URL HERE">
  4251. Link title two
  4252. </a>
  4253.  
  4254. <a href="URL HERE">
  4255. Link title three
  4256. </a>
  4257.  
  4258. <a href="URL HERE">
  4259. Link title four
  4260. </a>
  4261.  
  4262. </div class="nvlinks">
  4263.  
  4264.  
  4265.  
  4266. </li></ul>
  4267.  
  4268. </div id="Verse2" class="popup_block">
  4269.  
  4270.  
  4271.  
  4272.  
  4273.  
  4274.  
  4275.  
  4276.  
  4277.  
  4278.  
  4279.  
  4280.  
  4281.  
  4282. <!-- MUSE PAGE: Verse 3 (Fate )-->
  4283.  
  4284.  
  4285.  
  4286. <div id="Verse3" class="popup_block">
  4287.  
  4288. <div class="mimage">
  4289. <img src="https://66.media.tumblr.com/8b4ceea6b4cafeb7543607e903233968/tumblr_profi8aI4H1xt4xw4o6_r1_500.png">
  4290. </div class="mimage">
  4291.  
  4292.  
  4293. <div class="mnavi">
  4294. <ul id="tabs">
  4295.  
  4296. <li class="active">Summary</li>
  4297. <li>Stats</li>
  4298.  
  4299.  
  4300. </ul id="tabs">
  4301. </div class="mnavi">
  4302.  
  4303.  
  4304.  
  4305. <!-- TAB ONE -->
  4306.  
  4307.  
  4308. <ul id="tab"><li class="active">
  4309.  
  4310.  
  4311. <div class="mdescription">
  4312.  
  4313.  
  4314. <h4>Intro</h4>
  4315.  
  4316. <p> A legendary folktale, the princess who dissueded several suitors--her magic one tied to the moon and though a challenge, worth summoning into play. The heavens and earth alike rumble at the start of another grail war, her master finding the key to summon her from the divine thrones.
  4317.  
  4318. <h4>Kaguya Hime</h4>
  4319.  
  4320. <p>Over one thousand years ago, a tale entered the Japanese folk culture of a beautiful woman who had descended from the moon and lived among mortal humans for a period as the daughter of a bamboo cutter and his wife. In this, The Tale of the Bamboo Cutter, was described the celestial maiden’s radiant beauty; so legendary did her appearance become, that men came from all over Japan just to try and gaze at her. Eventually, the maiden, whose name was Kaguya, was asked by her father, out of politeness, to choose one of the many suitors who came to call on her daily. Unwilling to wed, Kaguya came up with five clever tasks to test each of the men. If one of her potential suitors truly loved her, she argued, then they would be both willing and able to obtain the object she requested. Each of the quests, however, was so impossible that Kaguya hoped all of her suitors would fail and she would be free. The tests prescribed that each of the men find a very specific, rare item: the begging bowl of Buddha, a jeweled sprig from Hōraijima, the Robe of the Fire-Rat, a jewel from the neck of a dragon, and a swallow’s cowrie shell. Whosoever found the requisite item she assigned would be able to marry Kaguya. Fortunately, Kaguya was correct in evaluating the difficulty of her tasks, and none of her potential suitors were able to succeed in their quests. Though some either were publicly humiliated, lost all their wealth, or even died in the process. </p>
  4321.  
  4322. <p>It was revealed Kaguya is the daughter of Tsukiyomi, a warrior moon goddess of the Shinto faith, sent away to earth to be raised by mortals and away from the Celestial Wars. Within her village, she became well known for being well-versed in practicing the arcane arts and her healing presence. She would use her magic to ward off evil, demons, and other Ayakashi and heal those in need. It was said when the Moon was full, even the fiercest of monsters were helpless before her. When the celestial emissaries came, it was to take Kaguya back to the heavens to fully master her powers, for without training, she could risk endangering her precious home. </p>
  4323.  
  4324.  
  4325. </div class="mdescription">
  4326.  
  4327.  
  4328. </li>
  4329.  
  4330.  
  4331.  
  4332. <!-- TAB TWO -->
  4333.  
  4334. <li>
  4335.  
  4336. <div class="mdescription">
  4337.  
  4338. <b>Class:</b> Caster (Alt. summoned Assassin)<br>
  4339. <b>Alignment:</b> True Neutral.<br>
  4340. <b>Region:</b> Shinto <br>
  4341. <b>Source:</b> Celestial Robe (Harogomo)<br>
  4342. <b>Hidden Attribute:</b> Heaven. <br>
  4343. <b>Armaments:</b> Decorated Fan, Hair-pin/Katana, and Harogomo (Celestial Robe) <br>
  4344. <b>Noble Phantasm:</b> A++ <br>
  4345. <b>Strength:</b> C- <br>
  4346. <b>Agility:</b> B <br>
  4347. <b>Mana:</b> B+ <br>
  4348. <b>Luck:</b> A- <br>
  4349. <b>Endurance:</b> C <br>
  4350.  
  4351. <h4>Summoning Circumstances</h4>
  4352.  
  4353. <p>In order to Summon Kaguya as a Caster, you must be in Japan, at Mount Fuji and have her Harogomo. An attempt can be made with one of the five treasures, but she will more likely be summoned Assassin Class. To successfully summon her as a Caster Class, you need all five treasures and her Harogomo. As an extension of her connection with nature in general, Kaguya’s power seems to be bound to Mount Fuji itself. The Tale of the Bamboo Cutter suggests that one of the sources of Mount Fuji’s name comes from the Elixir of Immortality that the real princess Kaguya gave to the Emperor of Japan; the latter, however, throws it into the mountain’s volcanic crater, having no wish for eternal life separated from the princess.It is ironic, therefore, assuming that this etymology is correct, that the five lakes surrounding Mount Fuji (the “Immortal Mountain”) support the powers of an immortal. Only by throwing in five specific objects connected with The Tale of the Bamboo Cutter, can Kaguya’s power be truly unleashed.
  4354.  
  4355. <h4>Powers & Ability Parameters</h4>
  4356.  
  4357. <p>
  4358. Kaguya possesses a wide range of abilities and is an extremely powerful foe for any opponent. Kaguya largely relies on various forms of magic for both her defense and offense, making it very difficult to fight her using typical means. Her spells range in strength, but some of her fiercest spells are capable of completely eradicating any opponent who faces her. However, Kaguya is not completely reliant on spells, and also demonstrates some skill with a blade. While her attacks are strong enough to chop through several feet of wood, her speed is lacking and she often leaves herself open to counterattack. Despite being able to hold her own, one is able to exploit this weakness, though Kaguya can merely teleport and attack from a different direction whenever her defenses were broken. Still, spells are where Kaguya’s true power lies, and she is able to use them to great effect. Kaguya’s powers are heavily dependent on the Celestial Robe; without it her own abilities are fairly limited. <p>
  4359.  
  4360. <h4>Class Skills:</h4>
  4361. <b>Divinity:</b> (A) <br>
  4362. <b>Item Manipulation:</b> (B) <br>
  4363. <b>High-Speed Incantation</b> (B) <br>
  4364. <b>Personal Skills:</b> <br>
  4365. <b>Clairvoyance: </b>(A) <br>
  4366. <b>Charisma: </b>(A) <br>
  4367. <b>Teleportation:</b> (B) <br>
  4368. <b>Telekinesis / Levitation:</b> passive (A) <br>
  4369. <h4> Noble Phantasm:</h4>
  4370. <b>Emissaries of the Moon:</b> (Anti-Army)
  4371. <b>Goddess of the Night:</b> (Anti-Unit)
  4372.  
  4373. </div class="mdescription">
  4374.  
  4375. </li></ul>
  4376.  
  4377. </div id="Verse3" class="popup_block">
  4378.  
  4379.  
  4380.  
  4381.  
  4382.  
  4383.  
  4384.  
  4385.  
  4386. <!-- MUSE PAGE: Verse 4 (Fate Magus) -->
  4387.  
  4388.  
  4389.  
  4390. <div id="Verse4" class="popup_block">
  4391.  
  4392. <div class="mimage">
  4393. <img src="https://66.media.tumblr.com/0f89b61d59451f81f4a2628efa2a4a0e/tumblr_pro917FZix1xt4xw4o10_500.png">
  4394. </div class="mimage">
  4395.  
  4396.  
  4397. <div class="mnavi">
  4398. <ul id="tabs">
  4399.  
  4400. <li class="active">Summary</li>
  4401. <li>Stats</li>
  4402.  
  4403.  
  4404. </ul id="tabs">
  4405. </div class="mnavi">
  4406.  
  4407.  
  4408.  
  4409. <!-- TAB ONE -->
  4410.  
  4411.  
  4412. <ul id="tab"><li class="active">
  4413.  
  4414.  
  4415. <div class="mdescription">
  4416.  
  4417.  
  4418. <h4>History</h4>
  4419.  
  4420. <p>One thousand years ago, it’s said that the maiden Kaguya-hime had left her love, the Emperor Mikado only to be caught by him as she bathed. It’s believed he stole her robe, and tore it to prevent her from leaving him again. The Takeno magus line was born from this union; the women of the Takeno line are said to take after the maiden, beautiful and mystical with powerful and potent magical circuits that granted them real magical powers all because of their divine bloodline. Yet it was this same divine blood that made them a target for other magus families, the women often pursued through the ages, the men killed off. In some cases, some Takeno women were captured alive after being hunted for sport, used as slaves, experimented on or forced to bear children for another magus family wishing for more power.
  4421.  
  4422. <p>Kaguya’s mother was one of those unlucky maidens captured, and after recently giving birth, she used her last strength to flee from captivity and return Kaguya to Mount Fuji, where she disappeared into the eerie forest and perished after returning Kaguya to the safety of the Takeno home. Kaguya was raised by the elder survivors in her family and initially in isolation, trained to use her magic as well as warned of the dangers beyond the forest (it serves as a naturally mystic barrier).
  4423.  
  4424. <h4>In the Present World</h4>
  4425.  
  4426. <p>Kaguya learned early on that there was more to her ancestry and after disciplined training, was moved to Kyoto to enroll in high school (secured by one of the other branches of the family). She presents herself as a normal girl, certainly for her own safety under the alias of “Nayo Kaguya”, a younger lineage supposedly with mixed skills of magecraft from unions kept within the bloodlines. She keeps plans to take part in the Holy Grail War, in order to locate her father–and mark revenge against the other magus families who hunted down her own.
  4427.  
  4428. <p>She doesn’t trust the Mages Association, but under her alias, presents herself as a prodigal student with great potential in studying Magecraft. In the Clocktower, there are rumors she could become the next “Grand” Like Touko Aozaki rose to the rank of Grand when she was 20 years old, while Satsuki Kurogiri of Atlas was the youngest to achieve the same feat at 15 years old. She appears as a charming, clever young woman with a proper class of her status from the noble house of “Nayo”.
  4429.  
  4430. <p>Her circuits: Kaguya’s specialty is her remarkably skilled utilization of mystic energy, which is about several times more efficient than the average magus, allowing her to perform wonders with very little energy. Her circuits have extraordinary rotational speed, structural durability, quality of output, and fuel efficiency. If she attempts to utilize advanced spell expressions, they will be no better than average, but with her proper years of practice and discipline, she can improve. Utilizing genius intuition and responsiveness, her spell executions, while not so much as powerful, are frighteningly “quick.”.</p>
  4431.  
  4432.  
  4433. </div class="mdescription">
  4434.  
  4435.  
  4436. </li>
  4437.  
  4438.  
  4439.  
  4440. <!-- TAB TWO -->
  4441.  
  4442. <li>
  4443.  
  4444.  
  4445. <div class="mdescription">
  4446.  
  4447.  
  4448. <h4>Takeno Bloodline</h4>
  4449.  
  4450. <p>Beautiful maidens said to have gifts that connected them to the land, they were said to bring balance to the natural world and desired for their foresight; For generations have Takeno women being pursued, hunted, and taken to be used to further other magi families (experiments, forced child bearing, etc). They’ve had to resort in the later generations to remain hidden, mainly in the place where their line ‘started’ ; mount fuji, a land rich of spiritual energy and its forest that serve as a natural barrier that keeps them safely hidden.
  4451.  
  4452. <h4>Because of her direct bloodline + training; </h4>
  4453.  
  4454. <b>Clairvoyance (透視能力, Tōshinōryoku?)</b> is the ability to perceive beyond what is physically possible. Generation before it was her mother with the potent ability, passed on to Kaguya upon birth. Kaguya can use this gift passively, knowing who intends her harm beforehand and when sensing danger.
  4455. <br>
  4456. <b>Spellcaster (魔術使い)</b> ( ex; chants to use abilities; also known as Aria) The name given to those who use Magecraft without following the way of the magus, who treated Magecraft as just a tool. (specialties; barriers)
  4457. <br>
  4458. <b>Familiars (使い魔, Tsukaima?)</b> are special assistants used by the magi. In Kaguya’s case; she has a cat she can call upon and use as a means of keeping contact with her family or spying.
  4459. <br>
  4460. <b>Elemental Manipulation;</b> Most clan’s can manipulate one or two elements; The Takeno bloodline, the women have proven capable of manipulating most elements, though it varies within generations. Kaguya has a connection to earth, water, and wind and because of her youth, could have a stronger affinity then she realizes, as well as her training in sacred ground.
  4461. <br>
  4462. <b>Purification:</b> The Takeno family are capable of purifying upon unique spells passed through the line. They can purify tainted areas, even corruption if skilled and focused enough. However, the drawback is usually that they can not stay in a place of ‘toxicity’ for long, or ‘tainted’ land unless they purify it.
  4463. <br>
  4464.  
  4465.  
  4466.  
  4467. </div class="mdescription">
  4468.  
  4469.  
  4470.  
  4471. </li></ul>
  4472.  
  4473. </div id="Verse4" class="popup_block">
  4474.  
  4475.  
  4476.  
  4477.  
  4478.  
  4479.  
  4480.  
  4481.  
  4482. <!-- MUSE PAGE: Verse 5 ( Owari no Seraph) -->
  4483.  
  4484.  
  4485.  
  4486. <div id="Verse5" class="popup_block">
  4487.  
  4488. <div class="mimage">
  4489. <img src="https://static.tumblr.com/ebrrv1n/agNpp7av9/dimensions---muses-header.png">
  4490. </div class="mimage">
  4491.  
  4492.  
  4493. <div class="mnavi">
  4494. <ul id="tabs">
  4495.  
  4496. <li class="active">General</li>
  4497. <li>Stats</li>
  4498.  
  4499.  
  4500. </ul id="tabs">
  4501. </div class="mnavi">
  4502.  
  4503.  
  4504.  
  4505. <!-- TAB ONE -->
  4506.  
  4507.  
  4508. <ul id="tab"><li class="active">
  4509.  
  4510.  
  4511. <div class="mdescription">
  4512.  
  4513.  
  4514. <h4>Origins</h4>
  4515.  
  4516. Kaguya was born into one of the Hiragi branch families; The Takeno clan, whose crest was that of bamboo stalks and flower. It’s a family whose ancestor presumably captured a holy maiden and had forced her to bear children–even using her flesh as a means of empowering themselves. The descendants of this clan have borne more females who often carry on the more effective abilities inherited from the maiden versus the men who bear the CURSE of the man who’d captured her.
  4517. <p>
  4518. Kaguya is the most recent incarnate and descendent of the clan; and like those before her was raised to conduct experiments and prove if she’s inherited the abilities of the maiden; Telekinesis being a key sign as well as sharper sixth sense. Kaguya, even as a child, showed sharper intellect and intuition–and strangely a serenity that made her appear as a DOCILE and OBIDIENT child. The Takeno clan keeps most of Kaguya’s abilities under wraps, save for her prowess in seals and spells.
  4519. <p>
  4520. She met Mahiru as a child, and after a few more encounters, found herself befriending the girl. Mahiru wasn’t one to find Kaguya’s abilities ‘odd’, and enjoyed the other girl approaching her as a ‘normal’ individual. The two together were often compared as ideal beauties in highschool and intellegent women. Kaguya had not openly displayed any signs of mourning when it was declared Mahiru was deceased–but she had mourned her in private, and perhaps had saw the signs of Mahiru’s change in confessing "You did so much for love Mahiru–so much that you died for it."
  4521. <p>
  4522. Kaguya had joined JIDA after graduating school, choosing to use the Takeno clan to study up on the abnormalities between humans possessed by demons and vampires–in a way, wishing to uncover the truth of the dear friend she’d lost.
  4523. <p>Her rank is Colonel, and she does possess a cursed gear from the black blade series; which can allude to her awareness and secret assistance to Mahiru in studying their creation. Her demon is called Yamiyo, and he takes on the shape of a fox-like creature who appears obsessively smitten by Kaguya’s looks and intellect. When she is possessed; her eyes turn a deeper shade of red.
  4524. <p>
  4525. She at times can be reffered to as a “Doctor” to some, having studied captured vampires and possessed humans intricately, and its thought that she could be close to a breakthrough, but all notes or truths are kept under lock and key and only a select few even within the army know of her experiments.
  4526.  
  4527.  
  4528. </div class="mdescription">
  4529.  
  4530.  
  4531. </li>
  4532.  
  4533.  
  4534.  
  4535. <!-- TAB TWO -->
  4536.  
  4537. <li>
  4538.  
  4539.  
  4540.  
  4541.  
  4542. <div class="mlinks" style="margin-top:24px!important;">
  4543.  
  4544. <h4>General Links</h4>
  4545.  
  4546. <a href="URL HERE">
  4547. Link title one
  4548. </a>
  4549.  
  4550. <a href="URL HERE">
  4551. Link title two
  4552. </a>
  4553.  
  4554. <a href="URL HERE">
  4555. Link title three
  4556. </a>
  4557.  
  4558. <a href="URL HERE">
  4559. Link title four
  4560. </a>
  4561.  
  4562. </div class="nvlinks">
  4563.  
  4564.  
  4565.  
  4566. </li></ul>
  4567.  
  4568. </div id="Verse5" class="popup_block">
  4569.  
  4570.  
  4571.  
  4572.  
  4573.  
  4574.  
  4575. <!-- MUSE PAGE: Verse 6 (Meiji Era) -->
  4576.  
  4577.  
  4578.  
  4579. <div id="Verse6" class="popup_block">
  4580.  
  4581. <div class="mimage">
  4582. <img src="https://66.media.tumblr.com/6125b41c64a6fa0116efbd8ad6ba2567/tumblr_profi8aI4H1xt4xw4o4_r1_500.png">
  4583. </div class="mimage">
  4584.  
  4585.  
  4586. <div class="mnavi">
  4587. <ul id="tabs">
  4588.  
  4589. <li class="active">General</li>
  4590. <li>Misc</li>
  4591.  
  4592.  
  4593. </ul id="tabs">
  4594. </div class="mnavi">
  4595.  
  4596.  
  4597.  
  4598. <!-- TAB ONE -->
  4599.  
  4600.  
  4601. <ul id="tab"><li class="active">
  4602.  
  4603.  
  4604. <div class="mdescription">
  4605.  
  4606.  
  4607. <h4>The Butterfly of Kyoto && Blooming in Adversity</h4>
  4608.  
  4609. <p>Kaguya’s parents were killed by revolutionary warriors when she was a child, she remembers them as loving people. Her father a supporter and aide of the Shinsengumi, believing in his time that law was needed to balance the chaos that ran rampant in Kyoto. Her mother was a woman of known beauty, born from a merchant family of humble beginnings. After their murder, Kaguya was raised by her elder Grandmother and grandfather.
  4610.  
  4611. <p> Her grandfather is a wealthy merchant businessman, managing trades with Europe. Kaguya was educated into a fine young lady of the Takeno household, growing in beauty and intelligence. However, when she was but fifteen ex-samurai warriors had attempted to kidnap her in order to bribe money from Kaguya’s Grandfather, but she was SAVED fortunately before the crime could occur by a wandering swordsman. Her grandfather refused to thank him, still spiteful to samurai warriors and swordsmen alike, yet when Kaguya was truly kidnapped and endangered—It was Kenshin ( @scarbladed ) that rescued Kaguya and returned her safe from harm.
  4612.  
  4613. <p>From his rescue, and witnessing his prowess, gathering from the fallen samurai who he was to a degree Kaguya grew to wonder if there were other men like him. Warriors who did not take up a mantle of power, and so started a program where fallen warriors and those without work could take on jobs under the Takeno business. She’s refused and turned down proposals as they came, not trusting men to have an ulterior motive for she is a wealthy heiress. As promised since her timely rescue before when Kaguya meets Kenshin again, she welcomes him along with her grandparents to her home, telling him he is welcome to stay as needed and to remember to accept kindness given.
  4614.  
  4615. </div class="mdescription">
  4616.  
  4617.  
  4618. </li>
  4619.  
  4620.  
  4621.  
  4622. <!-- TAB TWO -->
  4623.  
  4624. <li>
  4625.  
  4626.  
  4627. <div class="mdescription">
  4628.  
  4629.  
  4630. <h4>Miscs</h4>
  4631.  
  4632. She is 24 by the beginning of Ruroken storyline.<br>
  4633. She was taught archery and knife throwing as a means of self defense and does carry a Kaiken, but does not believe in encouraging violence unless defending herself.
  4634. <br>
  4635. An exceptional dancer often takes part and contributes to festivals.
  4636. <br>
  4637. She had no love of swords but through an eventual friendship with Kaoru, she respects her friend’s ideals for the new age
  4638. <br>
  4639. Is a fan of Hiko’s pottery, simply because she has a fondness for hand-made/crafted objects (bamboo a personal favorite).
  4640. <br>
  4641. Dislikes injustice, discrimination, and mistreatment of the unfortunate–she’s seen as a spirited woman, striving to use her resources for pacifist good than bad.
  4642. <br>
  4643. She’s astute of the current government events, most likely from her grandfather’s connections.
  4644. <br>
  4645.  
  4646. </div class="mdescription">
  4647.  
  4648.  
  4649.  
  4650. </li></ul>
  4651.  
  4652. </div id="Muse6" class="popup_block">
  4653.  
  4654.  
  4655. <!-- MUSE PAGE: Verse 7 ( Akatsuki no Yona ) -->
  4656.  
  4657.  
  4658.  
  4659. <div id="Verse7" class="popup_block">
  4660.  
  4661. <div class="mimage">
  4662. <img src="https://66.media.tumblr.com/c37f6a3c4b782a0ee8ac75089fb99ba7/tumblr_pro917FZix1xt4xw4o1_500.png">
  4663. </div class="mimage">
  4664.  
  4665.  
  4666. <div class="mnavi">
  4667. <ul id="tabs">
  4668.  
  4669. <li class="active">General</li>
  4670. <li>Abilities</li>
  4671.  
  4672.  
  4673. </ul id="tabs">
  4674. </div class="mnavi">
  4675.  
  4676.  
  4677.  
  4678. <!-- TAB ONE -->
  4679.  
  4680.  
  4681. <ul id="tab"><li class="active">
  4682.  
  4683.  
  4684. <div class="mdescription">
  4685.  
  4686.  
  4687. <h4>General</h4>
  4688.  
  4689. <p>There was a legend, a story passed on the generations of a maiden who first brought rain to the land of the Water tribe, enabling it to flourish and be as beautiful as we know it to be. Farther north, in the mountains was a girl, hidden away like a treasure for her gift to call rain as the maiden before her. She was told that she would always be safe–<p>
  4690.  
  4691. <p> –But during the rise of conflict, no one was safe. A dark clan of assassins wiped out the maiden’s family and whisked her away to be trained into being their weapon. She could call on storms, cause lightning to flash across the sky and let thunder roar—But Kaguya had refused to become such a weapon and for it, was punished until she became more amiable to serving them. Her wounds healed faster than any mortal, and her eyes, deeply red as they were, mesmerized one merc into attempting to flee with her. He was kind, she’d admit, offering her water and insisting that many would wish for the blessing of Rain–that it was a gift to not be locked away, but shared.
  4692.  
  4693. <p> The night they fled, they’d reached a waterfall edge and he’d made a choice–pushing Kaguya into the waterfall for her freedom. “You are not meant to be held captive–You are the moon untethered, the water that flows freely through stone and wind that can not be caught—Be free!” Those words would forever be engrained into Kaguya’s heart as she fell into the rushing water and escaped.
  4694.  
  4695. <p> Since then, Kaguya has made it her mission to travel and find places that lack water and the <i>‘blessing’</i> of the gods. She doesn’t reveal her powers openly, and tries to keep things lowkey while abroad to avoid risking catching the eye of hungry nobles or any other corrupted means of power–and even more so the clan that had originally wished her captivity.
  4696.  
  4697.  
  4698. </div class="mdescription">
  4699.  
  4700.  
  4701. </li>
  4702.  
  4703.  
  4704.  
  4705. <!-- TAB TWO -->
  4706.  
  4707. <li>
  4708.  
  4709.  
  4710.  
  4711.  
  4712. <div class="mdescription">
  4713.  
  4714.  
  4715. <h4>Stats</h4>
  4716.  
  4717. <p>
  4718. Kaguya is the the top vocalist of the Sacred Rain and thus contains the knowledge of all her country's spells and teachings.
  4719. <p>
  4720. When summoning rain, she communicates with the sky as she is able to get a general impression of the land and the people.<br>
  4721. Nike can summon rain. Although, in some regions the fire kingdom the atmosphere is unsuitable and requires positive energy from the people,
  4722. Kaguya's rain causes those to feel it be emotionally elevated.<br>
  4723. Manipulate the wind to act as a weapon e.g she has used it to cut metal bars and block swords, she can also directly cut someone or use it to propel ships.
  4724. <br>
  4725. Fog manipulation<br>
  4726. Destructive spells which are considered taboo include thunder, lightning, hurricanes and storms. According to legend there are some capable of wiping away entire countries with such power.<br>
  4727.  
  4728.  
  4729. </div class="mdescription">
  4730.  
  4731.  
  4732.  
  4733. </li></ul>
  4734.  
  4735. </div id="Verse7" class="popup_block">
  4736.  
  4737.  
  4738.  
  4739. <!-- MUSE PAGE: Verse 8 ( Idol) -->
  4740.  
  4741.  
  4742.  
  4743. <div id="Verse8" class="popup_block">
  4744.  
  4745. <div class="mimage">
  4746. <img src="https://66.media.tumblr.com/fcddefa83994969b5c0961cc92da1d2c/tumblr_profi8aI4H1xt4xw4o8_r1_500.png">
  4747. </div class="mimage">
  4748.  
  4749.  
  4750. <div class="mnavi">
  4751. <ul id="tabs">
  4752.  
  4753. <li class="active">Info</li>
  4754. <li>Songs</li>
  4755.  
  4756.  
  4757. </ul id="tabs">
  4758. </div class="mnavi">
  4759.  
  4760.  
  4761.  
  4762. <!-- TAB ONE -->
  4763.  
  4764.  
  4765. <ul id="tab"><li class="active">
  4766.  
  4767.  
  4768. <div class="mdescription">
  4769.  
  4770.  
  4771. <h4>Idol Stats</h4>
  4772.  
  4773. <b>Stage Name</b>: Heavenly Princess Kaguya / Celestial Fairy
  4774. <br>
  4775. <b>Age</b>:
  4776. <br>
  4777. <b>Residence</b>:
  4778. <br>
  4779. <b>Ethnicity</b>: 1/2 Japanese + 1/2 Korean
  4780. <br>
  4781.  
  4782. <h4>General</h4>
  4783.  
  4784. <p> ❝ She conveys in her songs what lurks in the hearts of her beloved audience, channeling their desires and hopes on stage. Think you can keep your heart a secret from her gaze, the way her voice beckons to you, the listener akin to a siren song? Let us rejoice to the princess of the moon whose returned to us! We welcome Kaguya and her songs~! ❞
  4785. <p>
  4786.  
  4787.  
  4788.  
  4789. </div class="mdescription">
  4790.  
  4791.  
  4792. </li>
  4793.  
  4794.  
  4795.  
  4796. <!-- TAB TWO -->
  4797.  
  4798. <li>
  4799.  
  4800.  
  4801.  
  4802.  
  4803. <div class="mlinks" style="margin-top:24px!important;">
  4804.  
  4805. <h4>General Links</h4>
  4806.  
  4807. <a href="URL HERE">
  4808. Link title one
  4809. </a>
  4810.  
  4811. <a href="URL HERE">
  4812. Link title two
  4813. </a>
  4814.  
  4815. <a href="URL HERE">
  4816. Link title three
  4817. </a>
  4818.  
  4819. <a href="URL HERE">
  4820. Link title four
  4821. </a>
  4822.  
  4823. </div class="nvlinks">
  4824.  
  4825.  
  4826.  
  4827. </li></ul>
  4828.  
  4829. </div id="Verse8" class="popup_block">
  4830.  
  4831.  
  4832. <!-- MUSE PAGE: Verse 9 ( RWBY) -->
  4833.  
  4834.  
  4835.  
  4836. <div id="Verse9" class="popup_block">
  4837.  
  4838. <div class="mimage">
  4839. <img src="https://66.media.tumblr.com/9ef67dd81ff61ec459535fedb3f3458a/tumblr_pro917FZix1xt4xw4o2_500.png">
  4840. </div class="mimage">
  4841.  
  4842.  
  4843. <div class="mnavi">
  4844. <ul id="tabs">
  4845.  
  4846. <li class="active">Tab one title</li>
  4847. <li>Tab two title</li>
  4848.  
  4849.  
  4850. </ul id="tabs">
  4851. </div class="mnavi">
  4852.  
  4853.  
  4854.  
  4855. <!-- TAB ONE -->
  4856.  
  4857.  
  4858. <ul id="tab"><li class="active">
  4859.  
  4860.  
  4861. <div class="mdescription">
  4862.  
  4863.  
  4864. <h4>Muse 5 name</h4>
  4865.  
  4866. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi. Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi.
  4867.  
  4868. <h4>You can use H4's for titles</h4>
  4869.  
  4870. <p>At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, At accusam aliquyam diam diam dolore dolores duo eirmod eos erat, et nonumy sed tempor et et invidunt justo labore Stet clita ea et gubergren, kasd magna no rebum. sanctus sea sed takimata ut vero voluptua. est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat.
  4871.  
  4872.  
  4873. </div class="mdescription">
  4874.  
  4875.  
  4876. </li>
  4877.  
  4878.  
  4879.  
  4880. <!-- TAB TWO -->
  4881.  
  4882. <li>
  4883.  
  4884.  
  4885.  
  4886.  
  4887. <div class="mlinks" style="margin-top:24px!important;">
  4888.  
  4889. <h4>General Links</h4>
  4890.  
  4891. <a href="URL HERE">
  4892. Link title one
  4893. </a>
  4894.  
  4895. <a href="URL HERE">
  4896. Link title two
  4897. </a>
  4898.  
  4899. <a href="URL HERE">
  4900. Link title three
  4901. </a>
  4902.  
  4903. <a href="URL HERE">
  4904. Link title four
  4905. </a>
  4906.  
  4907. </div class="nvlinks">
  4908.  
  4909.  
  4910.  
  4911. </li></ul>
  4912.  
  4913. </div id="Verse9" class="popup_block">
  4914.  
  4915.  
  4916. <!-- MUSE PAGE: Verse 10 ( Hindu) -->
  4917.  
  4918.  
  4919.  
  4920. <div id="Verse10" class="popup_block">
  4921.  
  4922. <div class="mimage">
  4923. <img src="https://66.media.tumblr.com/d1f6dd4ea4b73268f32cf42c5ae8bffb/tumblr_profi8aI4H1xt4xw4o7_r1_500.png">
  4924. </div class="mimage">
  4925.  
  4926.  
  4927. <div class="mnavi">
  4928. <ul id="tabs">
  4929.  
  4930. <li class="active">Tab one title</li>
  4931. <li>Tab two title</li>
  4932.  
  4933.  
  4934. </ul id="tabs">
  4935. </div class="mnavi">
  4936.  
  4937.  
  4938.  
  4939. <!-- TAB ONE -->
  4940.  
  4941.  
  4942. <ul id="tab"><li class="active">
  4943.  
  4944.  
  4945. <div class="mdescription">
  4946.  
  4947.  
  4948. <h4>Muse 5 name</h4>
  4949.  
  4950. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi. Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi.
  4951.  
  4952. <h4>You can use H4's for titles</h4>
  4953.  
  4954. <p>At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, At accusam aliquyam diam diam dolore dolores duo eirmod eos erat, et nonumy sed tempor et et invidunt justo labore Stet clita ea et gubergren, kasd magna no rebum. sanctus sea sed takimata ut vero voluptua. est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat.
  4955.  
  4956.  
  4957. </div class="mdescription">
  4958.  
  4959.  
  4960. </li>
  4961.  
  4962.  
  4963.  
  4964. <!-- TAB TWO -->
  4965.  
  4966. <li>
  4967.  
  4968.  
  4969.  
  4970.  
  4971. <div class="mlinks" style="margin-top:24px!important;">
  4972.  
  4973. <h4>General Links</h4>
  4974.  
  4975. <a href="URL HERE">
  4976. Link title one
  4977. </a>
  4978.  
  4979. <a href="URL HERE">
  4980. Link title two
  4981. </a>
  4982.  
  4983. <a href="URL HERE">
  4984. Link title three
  4985. </a>
  4986.  
  4987. <a href="URL HERE">
  4988. Link title four
  4989. </a>
  4990.  
  4991. </div class="nvlinks">
  4992.  
  4993.  
  4994.  
  4995. </li></ul>
  4996.  
  4997. </div id="Verse10" class="popup_block">
  4998.  
  4999.  
  5000.  
  5001. <!-- MUSE PAGE: Verse 11 ( Marvel) -->
  5002.  
  5003.  
  5004.  
  5005. <div id="Verse11" class="popup_block">
  5006.  
  5007. <div class="mimage">
  5008. <img src="https://66.media.tumblr.com/35ffbf7aeae7dff9b93f42b4d9ec1f1a/tumblr_profi8aI4H1xt4xw4o9_r1_500.png">
  5009. </div class="mimage">
  5010.  
  5011.  
  5012. <div class="mnavi">
  5013. <ul id="tabs">
  5014.  
  5015. <li class="active">Tab one title</li>
  5016. <li>Tab two title</li>
  5017.  
  5018.  
  5019. </ul id="tabs">
  5020. </div class="mnavi">
  5021.  
  5022.  
  5023.  
  5024. <!-- TAB ONE -->
  5025.  
  5026.  
  5027. <ul id="tab"><li class="active">
  5028.  
  5029.  
  5030. <div class="mdescription">
  5031.  
  5032.  
  5033. <h4>Muse 5 name</h4>
  5034.  
  5035. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi. Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi.
  5036.  
  5037. <h4>You can use H4's for titles</h4>
  5038.  
  5039. <p>At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, At accusam aliquyam diam diam dolore dolores duo eirmod eos erat, et nonumy sed tempor et et invidunt justo labore Stet clita ea et gubergren, kasd magna no rebum. sanctus sea sed takimata ut vero voluptua. est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat.
  5040.  
  5041.  
  5042. </div class="mdescription">
  5043.  
  5044.  
  5045. </li>
  5046.  
  5047.  
  5048.  
  5049. <!-- TAB TWO -->
  5050.  
  5051. <li>
  5052.  
  5053.  
  5054.  
  5055.  
  5056. <div class="mlinks" style="margin-top:24px!important;">
  5057.  
  5058. <h4>General Links</h4>
  5059.  
  5060. <a href="URL HERE">
  5061. Link title one
  5062. </a>
  5063.  
  5064. <a href="URL HERE">
  5065. Link title two
  5066. </a>
  5067.  
  5068. <a href="URL HERE">
  5069. Link title three
  5070. </a>
  5071.  
  5072. <a href="URL HERE">
  5073. Link title four
  5074. </a>
  5075.  
  5076. </div class="nvlinks">
  5077.  
  5078.  
  5079.  
  5080. </li></ul>
  5081.  
  5082. </div id="Verse11" class="popup_block">
  5083.  
  5084.  
  5085.  
  5086. <!-- MUSE PAGE: Verse 12 ( Harry Potter) -->
  5087.  
  5088.  
  5089.  
  5090. <div id="Verse12" class="popup_block">
  5091.  
  5092. <div class="mimage">
  5093. <img src="https://66.media.tumblr.com/6b93d7b5916f6c826b111d10667b137a/tumblr_profi8aI4H1xt4xw4o1_500.png">
  5094. </div class="mimage">
  5095.  
  5096.  
  5097. <div class="mnavi">
  5098. <ul id="tabs">
  5099.  
  5100. <li class="active">General</li>
  5101. <li>Miscs</li>
  5102.  
  5103.  
  5104. </ul id="tabs">
  5105. </div class="mnavi">
  5106.  
  5107.  
  5108.  
  5109. <!-- TAB ONE -->
  5110.  
  5111.  
  5112. <ul id="tab"><li class="active">
  5113.  
  5114.  
  5115. <div class="mdescription">
  5116.  
  5117. <p>Kaguya isn’t aware of it; but she IS a PUREBLOOD witch and hails from a Japanese family line that worked for the Ministry of Magic and had many influences politically across Japan. Kaguya’s real mother, Tsukiyomi, had placed Kaguya as a baby into the humble care of a muggle family who then looked after her and raised her kindly. When she showed unusual signs of magic, of course, it was no surprise she’d received a letter from Albus Dumbledore. She would have likely gone to the Palace of Mahoutokoro, had her father’s business not transfer him to London.
  5118.  
  5119. <p>She has always shown a fascination to the science as a young girl, bordering on into alchemy and with the help of her affinity to magic–at times unintentionally created a spell or two without words. In enrolling to Hogwarts, it is no surprise she was fitted into the house of RAVENCLAW. Kaguya showed little interest in the ideology of ‘purist’ who favored ‘pureblood’ or ‘halfblood’–questioning why one could be superior to the other when skills spoke of a person more.
  5120.  
  5121. <p>Kaguya is AWARE of the term Mudblood, but she SMILES in hearing the term, eyes glinting with knowledge. The word is distasteful, but she carries her chin high and believes her work speak more for herself then mere words do credit. She is seen as a bright witch despite her muggle-born parents AND a natural credit to her house in her advance lessons. She eventually becomes a PREFECT ; having charmed her professors, remained dutiful and dignified to her studies and influence over her house in her popularity–for she offers new transfers and younger years tutoring and guidance when need be.
  5122.  
  5123. <p>What is not KNOWN about Kaguya, is that she enjoys reading beneath the blossoms near the black lake, and seems to have befriended the aquatic creature that lurks beneath the waters. She shows no fear and rather a deep fascination to mermaids and underwater life. She supports QUIDDITCH for her housemates, but has no interest to play the sport. Her specialties lie with ; CHARMS, DEFENSE AGAINST THE DARK ARTS and POTIONS, and an AVID interest in ALCHEMY.
  5124.  
  5125. <p>Later, around her sixth year it is when she meets her brother and learns the truth of her LINEAGE: That she is a PUREBLOOD to a very prominent house of Japan. She meets her BROTHERS and is made to choose to RETURN to them or remain in HOGWARTS. Kaguya refuses initially, but during the WAR —she loses her parents, suspects it was no mere accident… And accepts the mantle, IF ONLY to learn the TRUTH.
  5126.  
  5127.  
  5128. </div class="mdescription">
  5129.  
  5130.  
  5131. </li>
  5132.  
  5133.  
  5134.  
  5135. <!-- TAB TWO -->
  5136.  
  5137. <li>
  5138.  
  5139.  
  5140. <div class="mdescription">
  5141.  
  5142.  
  5143. <h4>Stats</h4>
  5144.  
  5145. Kaguya has a pet <b>NEKOMATA</b> from japan; Nikita. It is her dearest companion and one she wholly treasures as a gift from her father. Nikita appears like any other cat, save that she has TWO tails and.. perhaps a keener intelligence then the average cat.<br>
  5146. Kaguya’s wand is <b>ASH</b> made with a Unicorn hair for its core; 10 inches , later in time she gains a new wand; EBONY with a Dragons heartstring for its Core : 9 inches.<br>
  5147. She has an owl, like other witches and wizards. He is a dusty grey-blue with white speckled wings, an average sized owl with sharp yellow-green eyes. She calls him Yugure, meaning Twilight/Dusk. <br>
  5148.  
  5149. <h4>Miscs</h4>
  5150.  
  5151. <p>Aside from the friends she lets in and allows herself to be close to; Kaguya tends to turn down/reject those who approach her with romantic intentions. She’s very <b>GOAL</b> oriented and focused to succeed in the Wizarding World. However, because of her beauty that has drawn the gaze of others–and fueled her popularity; she’s found herself receiving unwanted confessions and.. admirers. Her friends find it amusing, while Kaguya only sighs and says she doesn’t care for their attention when she has more IMPORTANT things that need her attention.<p>
  5152.  
  5153. <p>
  5154. Kaguya shown signs of <b>Occlumency and Legilimency</b>, its how she knew those generally approaching her with malicious or superficial intentions and how she keeps her more <i>GENUINE</i> friends. It’s a passive ability that she focuses and self-teaches herself to control with discipline and patience. This is, of course, a trait that isn’t uncommon from her PURE-BLOOD family, which she doesn’t learn until later.
  5155.  
  5156. </div class="mdescription">
  5157.  
  5158.  
  5159.  
  5160. </li></ul>
  5161.  
  5162. </div id="Verse12" class="popup_block">
  5163.  
  5164.  
  5165. <!-- MUSE PAGE: Verse 13 ( Dragon Age) -->
  5166.  
  5167. <div id="Verse13" class="popup_block">
  5168.  
  5169. <div class="mimage">
  5170. <img src="https://66.media.tumblr.com/51455e75466c10a1e339f09ca4a61fbd/tumblr_profi8aI4H1xt4xw4o2_500.png">
  5171. </div class="mimage">
  5172.  
  5173.  
  5174. <div class="mnavi">
  5175. <ul id="tabs">
  5176.  
  5177. <li class="active">General</li>
  5178. <li>Stats</li>
  5179.  
  5180.  
  5181. </ul id="tabs">
  5182. </div class="mnavi">
  5183.  
  5184.  
  5185.  
  5186. <!-- TAB ONE -->
  5187.  
  5188.  
  5189. <ul id="tab"><li class="active">
  5190.  
  5191.  
  5192. <div class="mdescription">
  5193.  
  5194.  
  5195. <p>Kaguya was born sometime after Chandra had married Rohini, whom he favored among the 27 wives. Because of the jealousy of the 26 other wives, Chandra was forced to hide Kaguya within a thicket of bamboo, to hide her from the wrath of his other wives. Worried for her, he granted her the gift that she’d be able to know deceit upon sight. She was found as a pale baby as a sign of Chandra by an elderly couple and called Kaguya was raised unaware of her relation to Chandra and Rohini. She was raised with much love by the couple, who had believed they were being blessed surely by the gods in discovering her. Each night of the full moon, Chandra would leave a barrel of coin for the family to care for his child properly. With the money they discovered, the elderly couple bought more land and a bigger home.
  5196. <p>
  5197. Kaguya revealed herself to be very smart as a child, eager to learn and clever. She was quick to learn how to read, write and excel in any subject given to her and with each day her brilliance and beauty grew. Her adoptive father, as a retired Kshatriyas, was known to be a great charioteer in his prime and served the king of Hastinapur. He wanted above all else for Kaguya to be able to protect herself and insisted she learn how to ride, as well as military combat; swordsmanship and archery. Kaguya proved to be an excellent archer, capable of firing from a fair range and her skill with a blade was just as exceptional, much to her father’s delight.
  5198. <p>
  5199. Her mother, however, wanted and wished Kaguya to learn the fair arts of dancing, music and the necessities of household duties. Kaguya found herself falling in love with dance, which she had adored learning with her instructor who believed she’d be capable of charming even Balarama. Kaguya loved to dance at night, feeling a pull to the moon’s gaze each time and seeing even how the water would shift when she danced near the lake. It was one fateful night beneath the full moon that Chandra revealed himself to her as well as reveal he was her father.
  5200. <p>
  5201. Kaguya inquired why he initially gave her away, to which Chandra apologetically admitted he did not wish her to be harmed by his other wives for his favortism to Rohini. While they missed her, they were happy to know she was happy as well. Kaguya understood but asked if necessary to return to which Chandra promised when it was time she would be welcomed. She lamented how she knew her mother would have her marry soon, and had no wish to marry–for simply being with her parents she was happy.
  5202. <p>
  5203. Chandra then explained that she would always know when someone would indent her harm or carried any malicious intent towards her, as well as gifts from Rohini and him. Chandra gave her a bow to draw on for whenever she’d find herself fighting and needed his protection. Rohini had asked Chandra to give her a shawl made by her own hands that she may wear when she dances. He promised that when the time came for her family to set up a Swayamvara that she’d be able to outwit her suitors with what she has already learned, but had her promise that should one man prove capable and honorable in successfully accomplishing her requests then she would have to marry that man. Kaguya agreed, promising that she’d marry only one such man if it proved capable.
  5204. <p>
  5205. Kaguya became rather famous for her dancing during festivities, her beauty being spread through rumors; talks of her ivory skin, her shimmering shawl, and how she must have been blessed by the gods. It was only natural that when the time came, she had many suitors appear for her Swayamvara–and Kaguya had asked for their devotion by proving themselves capable warriors and seeking out five sacred treasures. If one could return with the true gifts and remain true while on their voyage, she would marry them. Kaguya agreed to wait for the suitors, however, when each suitor came back from their voyage– Kaguya both sensed that their intentions were far from honorable and their gifts false. Because of this, she did not marry any of them, none succeeding in bringing the proper gift or remaining honorable.
  5206. <p>
  5207. As no such man proved a suitable husband, Kaguya chose to become a Kshatriyani and focus on how to best help the people she found dear instead with her skills. For her own chariot, Chandra had bestowed upon her another gift, an Antelope, to which Kaguya adores and treasures dearly.
  5208.  
  5209.  
  5210. </div class="mdescription">
  5211.  
  5212.  
  5213. </li>
  5214.  
  5215.  
  5216. <!-- TAB TWO -->
  5217.  
  5218. <li>
  5219.  
  5220.  
  5221. <div class="mdescription">
  5222.  
  5223.  
  5224. <h4>Muse 5 name</h4>
  5225.  
  5226. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi. Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi.
  5227.  
  5228. <h4>You can use H4's for titles</h4>
  5229.  
  5230. <p>At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, At accusam aliquyam diam diam dolore dolores duo eirmod eos erat, et nonumy sed tempor et et invidunt justo labore Stet clita ea et gubergren, kasd magna no rebum. sanctus sea sed takimata ut vero voluptua. est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat.
  5231.  
  5232.  
  5233. </div class="mdescription">
  5234.  
  5235.  
  5236. </li></ul>
  5237.  
  5238. </div id="Verse13" class="popup_block">
  5239.  
  5240.  
  5241.  
  5242. <!-- MUSE PAGE: Verse 14 ( Tenjou Tenge) -->
  5243.  
  5244.  
  5245.  
  5246. <div id="Verse14" class="popup_block">
  5247.  
  5248. <div class="mimage">
  5249. <img src="https://66.media.tumblr.com/78043ad1fdcedd678fd1df452b34184a/tumblr_pro917FZix1xt4xw4o4_500.png">
  5250. </div class="mimage">
  5251.  
  5252.  
  5253. <div class="mnavi">
  5254. <ul id="tabs">
  5255.  
  5256. <li class="active">Tab one title</li>
  5257. <li>Tab two title</li>
  5258.  
  5259.  
  5260. </ul id="tabs">
  5261. </div class="mnavi">
  5262.  
  5263.  
  5264.  
  5265. <!-- TAB ONE -->
  5266.  
  5267.  
  5268. <ul id="tab"><li class="active">
  5269.  
  5270.  
  5271. <div class="mdescription">
  5272.  
  5273.  
  5274. <h4>Muse 5 name</h4>
  5275.  
  5276. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi. Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi.
  5277.  
  5278. <h4>You can use H4's for titles</h4>
  5279.  
  5280. <p>At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, At accusam aliquyam diam diam dolore dolores duo eirmod eos erat, et nonumy sed tempor et et invidunt justo labore Stet clita ea et gubergren, kasd magna no rebum. sanctus sea sed takimata ut vero voluptua. est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat.
  5281.  
  5282.  
  5283. </div class="mdescription">
  5284.  
  5285.  
  5286. </li>
  5287.  
  5288.  
  5289.  
  5290. <!-- TAB TWO -->
  5291.  
  5292. <li>
  5293.  
  5294.  
  5295.  
  5296.  
  5297. <div class="mlinks" style="margin-top:24px!important;">
  5298.  
  5299. <h4>General Links</h4>
  5300.  
  5301. <a href="URL HERE">
  5302. Link title one
  5303. </a>
  5304.  
  5305. <a href="URL HERE">
  5306. Link title two
  5307. </a>
  5308.  
  5309. <a href="URL HERE">
  5310. Link title three
  5311. </a>
  5312.  
  5313. <a href="URL HERE">
  5314. Link title four
  5315. </a>
  5316.  
  5317. </div class="nvlinks">
  5318.  
  5319.  
  5320.  
  5321. </li></ul>
  5322.  
  5323. </div id="Verse14" class="popup_block">
  5324.  
  5325.  
  5326. <!-- MUSE PAGE: Verse 15 ( Pokemon ) -->
  5327.  
  5328.  
  5329.  
  5330. <div id="Verse15" class="popup_block">
  5331.  
  5332. <div class="mimage">
  5333. <img src="https://66.media.tumblr.com/0649259f7a1b40057365bbe4f7c4c429/tumblr_pro917FZix1xt4xw4o5_500.png">
  5334. </div class="mimage">
  5335.  
  5336.  
  5337. <div class="mnavi">
  5338. <ul id="tabs">
  5339.  
  5340. <li class="active">General</li>
  5341. <li>Misc</li>
  5342.  
  5343.  
  5344. </ul id="tabs">
  5345. </div class="mnavi">
  5346.  
  5347.  
  5348.  
  5349. <!-- TAB ONE -->
  5350.  
  5351.  
  5352. <ul id="tab"><li class="active">
  5353.  
  5354.  
  5355. <div class="mdescription">
  5356.  
  5357.  
  5358. <h4>Info</h4>
  5359.  
  5360. <b>Name:</b> Kaguya Takani
  5361. <br>
  5362. <b>Age:</b> 19-24
  5363. <br>
  5364. <b>Occupation:</b> Formerly Pokemon Breeder, turned Scientist.
  5365. <br>
  5366. <b>Region:</b> Johto.
  5367. <br>
  5368. <p>
  5369. Kaguya was born into a wealthy family, raised by her two parents, Yamiyo and Tsukiyomi, and her older brother Kurogane. She originally wanted to be a trainer like her older brother, and her mother had given her first pokemon; a vulpix. She came across an injured Seel and though wild, found herself trying to nurse it back to health diligently. Since that time, she found herself a new passion; nursing pokemon.
  5370. <p>
  5371. Now older, Kaguya works in a lab by the shoreline, helping treat and rehabilitate pokemon who are rescued or injured from storms, territorial battles, and what not. She’s earned a well-respected reputation for her stern, yet sincere care to each new patient given to her. While out in the ocean on a mission to rescue a wild garydos during a storm, she once caught a glimpse of the guardian of the seas: Lugia. When it vanished, the sea calmed, as did the Garydos who needed care. Kaguya hopes to one day see it again.
  5372. <p>
  5373. From her pokemon adventures of her youth, she has collected a few for herself’;
  5374.  
  5375. <blockquote>
  5376. Vulpix, now evolved into a Ninetails, named <b>Sakura</b>.<br>
  5377. Evee, turned Espeon, named <b>Tsukiko</b>. <br>
  5378. Dewgong, the same Seel she’d rescued who’d taken to her, named <b>Umi</b>. <br>
  5379.  
  5380. </blockquote>
  5381.  
  5382.  
  5383. </div class="mdescription">
  5384.  
  5385.  
  5386. </li>
  5387.  
  5388.  
  5389.  
  5390. <!-- TAB TWO -->
  5391.  
  5392. <li>
  5393.  
  5394.  
  5395.  
  5396. <div class="mdescription">
  5397.  
  5398.  
  5399. <h4>Misc</h4>
  5400.  
  5401. TBA
  5402.  
  5403.  
  5404. </div class="mdescription">
  5405.  
  5406.  
  5407.  
  5408. </li></ul>
  5409.  
  5410. </div id="Verse15" class="popup_block">
  5411.  
  5412. <!-- MUSE PAGE: Verse 16 ( Pandora Hearts ) -->
  5413.  
  5414.  
  5415.  
  5416. <div id="Verse16" class="popup_block">
  5417.  
  5418. <div class="mimage">
  5419. <img src="https://66.media.tumblr.com/78043ad1fdcedd678fd1df452b34184a/tumblr_pro917FZix1xt4xw4o4_500.png">
  5420. </div class="mimage">
  5421.  
  5422.  
  5423. <div class="mnavi">
  5424. <ul id="tabs">
  5425.  
  5426. <li class="active">General</li>
  5427. <li>Stats</li>
  5428.  
  5429.  
  5430. </ul id="tabs">
  5431. </div class="mnavi">
  5432.  
  5433.  
  5434.  
  5435. <!-- TAB ONE -->
  5436.  
  5437.  
  5438. <ul id="tab"><li class="active">
  5439.  
  5440.  
  5441. <div class="mdescription">
  5442.  
  5443.  
  5444. <h4>Cursed Child of Moonlight && Time </h4>
  5445.  
  5446. <p> Kaguya recalls little of her childhood, mostly of bamboo thickets, cold winters, and clear lake waters… But above all, there was the moon. It proved a constant companion to her over the years when she was taken away overseas–but something went remiss on the ship, a storm unlike anything she’d ever seen. Kaguya recalls the waves rocking beneath her as she clung to a bit of wood for leverage, feeling weak after the storm.
  5447.  
  5448. <p> Another ship had found the child, bringing her to shore. Kaguya remembers them discovering her red eyes–selling her soon off to a Glen Baskerville, who thought she’d be useful as a ‘spare’ child of misfortune. Yet having no sibling herself, she was never truly put to death or at the risk of it. A mask was given to her as she first settled into the Baskerville residency if only to help her avoid being noticed. She made a contract with a chain, known as ‘fox’, often hiding in her shadows. At times one could see her with a white fox as her companion, other times–black. It’s specialty implied to be tracking others, granted Kaguya’s skills of stealth.
  5449.  
  5450. <p> In time Kaguya was known as a sage-like figure, offering information from her private missions and tasks. Eventually, she was tasked with safeguarding Lacie in her tower, growing fond of her as a child and perhaps even loving her as a mother. Over the next years, Kaguya always showed an exceptionally keen talent for finding Lacie whenever she ran away and had even overseen lessons in private, reading books Lacie found difficult to attain, singing ( Lacie had wondered of the songs Kaguya hummed and so was taught ), and dancing.
  5451.  
  5452. <p> While she knew and became acquainted more with Jack, and Oswald, her primary focus was always Lacie. Kaguya had tried to avert her death–even offer herself, but Levi had stated simply, ‘you’d ruin the experiment for your love’. Upon Lacie’s death, did Kaguya become more close to Jack and tried to console him. She found some solace in the appearance of Alice. She had tried reasoning with Jack, but then the fight soon broke out and as the Baskerville dukedom fell apart–Kaguya recalled the floor giving way beneath her as she tried protecting Alice.
  5453.  
  5454. <p> Kaguya awoke to a hand brushing her face, and initially thought she saw Lacie—but it was White Alice. White Alice told Kaguya she remembered her, that the core remembered her as well, and her love for Lacie–for the songs. She told Kaguya to save her twin, to join ‘the knight’, and once more found herself swallowed by shadows, and abandoned along the edge of Sablier.
  5455.  
  5456. <p> When she awoke, her memory was fuzzy and eventually, though not easily at first, did she agreed to join the agency—if only to recall her mission, and later on as her memories gradually returned–protect Alice.
  5457.  
  5458.  
  5459. </div class="mdescription">
  5460.  
  5461.  
  5462. </li>
  5463.  
  5464.  
  5465.  
  5466. <!-- TAB TWO -->
  5467.  
  5468. <li>
  5469.  
  5470. <div class="mlinks" style="margin-top:24px!important;">
  5471.  
  5472. <h4>General Links</h4>
  5473.  
  5474. <a href="URL HERE">
  5475. Link title one
  5476. </a>
  5477.  
  5478. <a href="URL HERE">
  5479. Link title two
  5480. </a>
  5481.  
  5482. <a href="URL HERE">
  5483. Link title three
  5484. </a>
  5485.  
  5486. <a href="URL HERE">
  5487. Link title four
  5488. </a>
  5489.  
  5490. </div class="nvlinks">
  5491.  
  5492.  
  5493.  
  5494. </li></ul>
  5495.  
  5496. </div id="Verse16" class="popup_block">
  5497.  
  5498. </div id="container">
  5499.  
  5500.  
  5501. </div>
  5502.  
  5503.  
  5504.  
  5505.  
  5506.  
  5507.  
  5508.  
  5509.  
  5510.  
  5511. <!-- CREDIT -->
  5512.  
  5513. <div id="credit"><div style="width:105px;margin-right:10px;">
  5514. <a href="http://iniziare.tumblr.com/post/183826974792/base-theme-viper-preview-download-code" target="blank">
  5515. <span>S.</span>MADE BY SAE.</a>
  5516. </div></div>
  5517.  
  5518. </body>
  5519. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement