Advertisement
tiffxny21

jumbled links

Jul 26th, 2019
155
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 98.62 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2.  
  3.  
  4.  
  5. <!--
  6.  
  7. WINTER'S LADY THEMES
  8. ♛ this code was made by AGIRLINGREY@TUMBLR.
  9. ♛ do not remove credit or claim as your own.
  10.  
  11.  
  12.  
  13.  
  14.  
  15. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  16. <head>
  17.  
  18.  
  19.  
  20. <!--
  21. POP UP SCRIPT
  22. -->
  23.  
  24.  
  25. <script type="text/javascript"
  26. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  27. <script>
  28. $(document).ready(function() {
  29. //
  30. $('a.poplight[href^=#]').click(function() {
  31. var popID = $(this).attr('rel'); //Get Popup Name
  32. var popURL = $(this).attr('href'); //Get Popup href to define size
  33. var query= popURL.split('?');
  34. var dim= query[1].split('&');
  35. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  36. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"></a>');
  37. var popMargTop = ($('#' + popID).height() + 80) / 2;
  38. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  39. //Apply Margin to Popup
  40. $('#' + popID).css({
  41. 'margin-top' : -popMargTop,
  42. 'margin-left' : -popMargLeft
  43. });
  44. $('body').append('<div id="fade"></div>');
  45. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'})
  46. return false;
  47. });
  48. $('a.close, #fade').live('click', function() {
  49. $('#fade , .popup_block').fadeOut(function() {
  50. $('#fade, a.close').remove(); //fade them both out
  51. });
  52. return false;
  53. });
  54. });
  55. </script>
  56.  
  57.  
  58.  
  59. <!--
  60. VERSE TABS SCRIPT
  61. -->
  62.  
  63.  
  64. <script>
  65.  
  66. $(document).ready(function(){
  67. $("ul#tabs li").click(function(e){
  68. if (!$(this).hasClass("active")) {
  69. var tabNum = $(this).index();
  70. var nthChild = tabNum+1;
  71. $("ul#tabs li.active").removeClass("active");
  72. $(this).addClass("active");
  73. $("ul#tab li.active").removeClass("active");
  74. $("ul#tab li:nth-child("+nthChild+")").addClass("active");
  75. }
  76. });
  77. });
  78. </script>
  79.  
  80.  
  81.  
  82.  
  83. <!--
  84. TOOLTIP STYLING SCRIPT
  85. -->
  86.  
  87.  
  88. <link href="http://static.tumblr.com/5omyijl/bzrn2yg7i/style-my-tooltips.css" rel="stylesheet" type="text/css" />
  89. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  90. <script src="http://static.tumblr.com/5omyijl/RZtn2yg9v/jquery.style-my-tooltips.js"></script>
  91. <script>
  92. (function($){
  93. $(document).ready(function(){
  94. $("[title]").style_my_tooltips({
  95. tip_follows_cursor:true,
  96. tip_delay_time:200,
  97. tip_fade_speed:500
  98. });
  99. });
  100. })(jQuery);
  101. </script>
  102.  
  103.  
  104.  
  105.  
  106. <!--
  107. BLOBS IN A JAR
  108. -->
  109.  
  110.  
  111. <script type="text/javascript">
  112. // <![CDATA[
  113. var colour="#252525"; // what colour are the blobs
  114. var speed=66; // speed of animation, lower is faster
  115. var blobs=10; // how many blobs are in the jar
  116. var charc=String.fromCharCode(9876); // a blob - can be changed to charc='hello' or charc='*' for a different effect
  117.  
  118. /***************************\
  119. * Blobs in a Jar Effect *
  120. *(c)2012-13 mf2fm web-design*
  121. * http://www.mf2fm.com/rv *
  122. * DON'T EDIT BELOW THIS BOX *
  123. \***************************/
  124.  
  125. var div;
  126. var xpos=new Array();
  127. var ypos=new Array();
  128. var zpos=new Array();
  129. var dx=new Array();
  130. var dy=new Array();
  131. var dz=new Array();
  132. var blob=new Array();
  133. var swide=800;
  134. var shigh=600;
  135. var ie_version=(navigator.appVersion.indexOf("MSIE")!=-1)?parseFloat(navigator.appVersion.split("MSIE")[1]):false;
  136.  
  137. function addLoadEvent(funky) {
  138. var oldonload=window.onload;
  139. if (typeof(oldonload)!='function') window.onload=funky;
  140. else window.onload=function() {
  141. if (oldonload) oldonload();
  142. funky();
  143. }
  144. }
  145.  
  146. addLoadEvent(fill_the_jar);
  147.  
  148. function fill_the_jar() {
  149. var i, dvs;
  150. div=document.createElement('div');
  151. dvs=div.style;
  152. dvs.position='fixed';
  153. dvs.left='0px';
  154. dvs.top='0px';
  155. dvs.width='1px';
  156. dvs.height='1px';
  157. document.body.appendChild(div);
  158. set_width();
  159. for (i=0; i<blobs; i++) {
  160. add_blob(i);
  161. jamjar(i);
  162. }
  163. }
  164.  
  165. function add_blob(ref) {
  166. var dv, sy;
  167. dv=document.createElement('div');
  168. sy=dv.style;
  169. sy.position='absolute';
  170. sy.textAlign='center';
  171. if (ie_version && ie_version<10) {
  172. sy.fontSize="10px";
  173. sy.width="100px";
  174. sy.height="100px";
  175. sy.paddingTop="40px";
  176. sy.color=colour;
  177. dv.appendChild(document.createTextNode(charc));
  178. }
  179. else if (ie_version) {
  180. sy.fontSize="1px";
  181. sy.width="0px";
  182. sy.height="0px";
  183. }
  184. else {
  185. dv.appendChild(document.createTextNode(charc));
  186. sy.color='rgba(0,0,0,0)';
  187. }
  188. ypos[ref]=Math.floor(shigh*Math.random());
  189. dy[ref]=(0.5+Math.random())*(Math.random()>.5?2:-2);
  190. xpos[ref]=Math.floor(swide*Math.random());
  191. dx[ref]=(0.5+Math.random())*(Math.random()>.5?2:-2);
  192. zpos[ref]=Math.random()*20;
  193. dz[ref]=(0.5+Math.random())*(Math.random()>.5?.5:-.5);
  194. blob[ref]=dv;
  195. div.appendChild(blob[ref]);
  196. set_blob(ref);
  197. }
  198.  
  199. function rejig(ref, xy) {
  200. if (xy=='y') {
  201. dx[ref]=(0.5+Math.random())*sign(dx[ref]);
  202. dy[ref]=(0.5+Math.random())*-sign(dy[ref]);
  203. }
  204. else {
  205. dx[ref]=(0.5+Math.random())*-sign(dx[ref]);
  206. dy[ref]=(0.5+Math.random())*sign(dy[ref]);
  207. }
  208. }
  209.  
  210. function sign(a) {
  211. if (a<0) return (-2);
  212. else if (a>0) return (2);
  213. else return (0);
  214. }
  215.  
  216. function set_blob(ref) {
  217. var sy;
  218. sy=blob[ref].style;
  219. sy.top=ypos[ref]+'px';
  220. sy.left=xpos[ref]+'px';
  221. if (ie_version && ie_version<10) {
  222. sy.filter="glow(color="+colour+",strength="+zpos[ref]+")";
  223. sy.fontSize=30-zpos[ref]+"px";
  224. }
  225. else if (ie_version) {
  226. sy.boxShadow="0px 0px 40px "+zpos[ref]+"px "+colour;
  227. }
  228. else {
  229. sy.textShadow=colour+' 0px 0px '+zpos[ref]+'px';
  230. sy.fontSize=40+zpos[ref]+'px';
  231. }
  232. }
  233.  
  234. function jamjar(ref) {
  235. if (ypos[ref]+dy[ref]<-50 || ypos[ref]+dy[ref]>shigh) rejig(ref, 'y');
  236. ypos[ref]+=dy[ref];
  237. if (xpos[ref]+dx[ref]<-50 || xpos[ref]+dx[ref]>swide) rejig(ref, 'x');
  238. xpos[ref]+=dx[ref];
  239. if (zpos[ref]+dz[ref]<0 || zpos[ref]+dz[ref]>20) dz[ref]=-dz[ref];
  240. zpos[ref]+=dz[ref];
  241. set_blob(ref);
  242. setTimeout("jamjar("+ref+")", speed);
  243. }
  244.  
  245. window.onresize=set_width;
  246. function set_width() {
  247. var sw_min=999999;
  248. var sh_min=999999;
  249. if (document.documentElement && document.documentElement.clientWidth) {
  250. if (document.documentElement.clientWidth>0) sw_min=document.documentElement.clientWidth;
  251. if (document.documentElement.clientHeight>0) sh_min=document.documentElement.clientHeight;
  252. }
  253. if (typeof(self.innerWidth)!="undefined" && self.innerWidth) {
  254. if (self.innerWidth>0 && self.innerWidth<sw_min) sw_min=self.innerWidth;
  255. if (self.innerHeight>0 && self.innerHeight<sh_min) sh_min=self.innerHeight;
  256. }
  257. if (document.body.clientWidth) {
  258. if (document.body.clientWidth>0 && document.body.clientWidth<sw_min) sw_min=document.body.clientWidth;
  259. if (document.body.clientHeight>0 && document.body.clientHeight<sh_min) sh_min=document.body.clientHeight;
  260. }
  261. if (sw_min==999999 || sh_min==999999) {
  262. sw_min=800;
  263. sh_min=600;
  264. }
  265. swide=sw_min;
  266. shigh=sh_min;
  267. }
  268. // ]]>
  269. </script>
  270.  
  271.  
  272.  
  273.  
  274.  
  275. <title>{Title}</title>
  276. <link rel="shortcut icon" href="{Favicon}">
  277. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  278. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  279.  
  280. <meta name="color:background" content="#000000"/>
  281. <meta name="color:text" content="#a1a0a0"/>
  282. <meta name="color:description" content=transparent/>
  283. <meta name="color:link" content="#e0d3ed"/>
  284. <meta name="color:link hover" content="#989898" />
  285. <meta name="color:bold" content="#cdc2f0" />
  286. <meta name="color:italic" content="#ffffff" />
  287. <meta name="color:border" content="#292828" />
  288. <meta name="color:scrollbar" content="#ffffff" />
  289. <meta name="color:postbg" content=transparent />
  290. <meta name="color:blockquote" content="#121212" />
  291. <meta name="color:tags" content="#e0d3ed"/>
  292.  
  293. <meta name="image:background" content=""/>
  294.  
  295. <meta name="text:link 1" content="link 1"/>
  296. <meta name="text:link 1 url" content="/"/>
  297. <meta name="text:link 2" content="link 2"/>
  298. <meta name="text:link 2 url" content="/"/>
  299. <meta name="text:link 3" content="link 3"/>
  300. <meta name="text:link 3 url" content="/"/>
  301. <meta name="text:link 4" content="link 4"/>
  302. <meta name="text:link 4 url" content="/"/>
  303. <meta name="text:link 5" content="link 5"/>
  304. <meta name="text:link 5 url" content="/"/>
  305. <meta name="text:link 6" content="link 6"/>
  306. <meta name="text:link 6 url" content="/"/>
  307. <meta name="text:link 7" content="link 7"/>
  308. <meta name="text:link 7 url" content="/"/>
  309. <meta name="text:link 8" content="link 8"/>
  310. <meta name="text:link 8 url" content="/"/>
  311.  
  312. <meta name="if:tinycursor" content="1"/>
  313. <meta name="if:greyscale" content="0"/>
  314. <meta name="text:text size" content="12px" />
  315. <meta name="if:showsubmit" content="0"/>
  316.  
  317. <meta name="color:updates bar" content="#070707"/>
  318. <meta name="image:Updates" content=""/>
  319. <meta name="image:thekey" content=""/>
  320.  
  321.  
  322.  
  323. <!--
  324. CUSTOM FONTS
  325. -->
  326.  
  327.  
  328. <link href='https://fonts.googleapis.com/css?family=Playfair+Display' rel='stylesheet' type='text/css'>
  329.  
  330. <link href='https://fonts.googleapis.com/css?family=Montserrat' rel='stylesheet' type='text/css'>
  331.  
  332. <link href="https://fonts.googleapis.com/css?family=Monsieur+La+Doulaise|Taviraj" rel="stylesheet">
  333.  
  334. <link href='https://fonts.googleapis.com/css?family=Roboto+Condensed' rel='stylesheet' type='text/css'>
  335.  
  336. <link href='https://fonts.googleapis.com/css?family=Yellowtail' rel='stylesheet' type='text/css'>
  337.  
  338. <link href='https://fonts.googleapis.com/css?family=Calligraffitti' rel='stylesheet' type='text/css'>
  339.  
  340. <link href="https://fonts.googleapis.com/css?family=Cormorant+Upright" rel="stylesheet">
  341.  
  342. <link href="https://fonts.googleapis.com/css?family=Dancing+Script" rel="stylesheet">
  343.  
  344. <style type="text/css">
  345.  
  346.  
  347. /* the hover update thing */
  348.  
  349.  
  350.  
  351. #bite
  352. #bite a{
  353. display:block
  354. }
  355. #bite .death {
  356. margin-top:0px;filter: alpha(opacity = 1.0);
  357. opacity:1.0;-webkit-transition: all 0.5s ease-out;
  358. -moz-transition: all 0.5s ease-out;transition: all 0.5s ease-out;
  359. }
  360.  
  361. #bite:hover .death {
  362. margin-top:0px;
  363. -webkit-transition: all 0.8s ease-out;
  364. -moz-transition: all 0.8s ease-out;
  365. transition: all 0.8s ease-out;
  366. filter: alpha(opacity = 100);
  367. filter: alpha(opacity = 100);
  368. opacity:100;
  369. }
  370.  
  371.  
  372. /* selection font and background */
  373.  
  374.  
  375. ::selection {
  376. background: #444;
  377. color:#fff; }
  378.  
  379.  
  380. ::-moz-selection {
  381. background: #444;
  382. color:#fff; }
  383.  
  384.  
  385.  
  386. /* scrollbar details */
  387.  
  388.  
  389.  
  390. ::-webkit-scrollbar {
  391. height: 0px;
  392. width: 2px;
  393. background:transparent;
  394. border-left:0px solid transparent;
  395. border-right:0px solid transparent;}
  396.  
  397.  
  398. ::-webkit-scrollbar-thumb {
  399. background:transparent;}
  400.  
  401.  
  402.  
  403.  
  404.  
  405. /* the cursor */
  406.  
  407.  
  408. {block:iftinycursor}
  409. body, a, a:hover{
  410. cursor: url('http://media.tumblr.com/28e8e2c9c0a422c5fb73ea368b58b529/tumblr_inline_mv7k3cbC5e1qmxe8x.png'), progress;}
  411. {/block:iftinycursor}
  412.  
  413. iframe#tumblr_controls {
  414. right:3px !important;
  415. position: fixed !important;
  416. -webkit-transition: opacity 0.7s
  417. linear;opacity: 0.2;
  418. -webkit-transition: all 0.8s ease-out;
  419. -moz-transition: all 0.8s ease-out;
  420. transition: all 0.8s ease-out;}
  421.  
  422. iframe#tumblr_controls:hover{
  423. -webkit-transition: opacity 0.7s linear;
  424. opacity: 1;
  425. -webkit-transition: all 0.4s ease-out;
  426. -moz-transition: all 0.4s ease-out;
  427. transition: all 0.4s ease-out;}
  428.  
  429.  
  430.  
  431. /* general look & background */
  432.  
  433.  
  434. body {
  435. background:#252525;
  436. background-image:url('https://68.media.tumblr.com/b72ef32168f590e09165996617b8efbc/tumblr_oi8a1dLj8l1vbwxuvo1_1280.png');
  437. background-attachment: fixed;
  438. background-repeat: no-repeat;
  439. background-position: left top;
  440. color:#c3c3c3;
  441. font-family: 'Cormorant Upright', serif;
  442. text-align:justify;
  443. font-size: 11px;
  444. letter-spacing:1px;
  445. line-height:135%;
  446.  
  447. }
  448.  
  449.  
  450.  
  451. /* the verses tabs */
  452.  
  453.  
  454. ul#tabs {
  455. list-style-type: none;
  456. padding: 0;
  457. text-align: center;
  458. font-size:12px;
  459. letter-spacing:1px;
  460. }
  461.  
  462. ul#tabs li {
  463. display: inline-block;
  464. background-color: transparent;
  465. border: solid 0px #262626;
  466. padding: 4px 12px;
  467. margin-bottom: 4px;
  468. color: #ffeb99;
  469. cursor: pointer;
  470. }
  471.  
  472. ul#tabs li:hover {
  473. background-color: #b0b0b0;
  474. }
  475.  
  476. ul#tabs li.active {
  477. background-color: #0f0f0f;
  478. background-image:url('https://66.media.tumblr.com/76b9c9e27c698be20e2cc30e4603ba34/tumblr_ob577djZr01u2jirlo5_r1_250.gif');
  479. background-repeat:repeat;
  480. background-attachment:fixed;
  481. border: 1px solid #9b9b9b;
  482. }
  483.  
  484. ul#tab {
  485. list-style-type: none;
  486. margin: 0;
  487. padding: 0;
  488. }
  489.  
  490. ul#tab li {
  491. display: none;
  492. }
  493.  
  494. ul#tab li.active {
  495. display: block;
  496. }
  497.  
  498.  
  499.  
  500.  
  501. /* back to general look & details */
  502.  
  503.  
  504.  
  505. a:link, a:active, a:visited {
  506. text-decoration: none;
  507. color: #d1d1d1;
  508. -moz-transition-duration:.6s;
  509. -webkit-transition-duration:.6s;
  510. -o-transition-duration:.6s;
  511. -webkit-filter: blur(0px);}
  512.  
  513. a:hover {
  514. color: #8f8f8f;
  515. -moz-transition-duration:.6s;
  516. -webkit-transition-duration:.6s;
  517. -o-transition-duration:.6s;
  518. -webkit-filter: blur(1px);}
  519.  
  520.  
  521.  
  522. h1 {
  523. background-color: transparent;
  524. font-family: 'Montserrat', sans-serif;
  525. font-size: 16px;
  526. line-height: 20px;
  527. letter-spacing: 2px;
  528. text-align: center;
  529. text-transform:uppercase;
  530. color: #d1d1d1;
  531. }
  532.  
  533.  
  534. h2 {
  535. background-color: transparent;
  536. font-family: 'Montserrat', sans-serif;
  537. font-size: 15px;
  538. line-height: 16px;
  539. letter-spacing: 2px;
  540. text-align: left;
  541. text-transform:uppercase;
  542. color: #d1d1d1;
  543. }
  544.  
  545.  
  546.  
  547. h3 {
  548. background-color: transparent;
  549. background-image:url("https://67.media.tumblr.com/d8daf399368e2778b15e69e0a2395241/tumblr_ob577djZr01u2jirlo4_r1_500.gif");
  550. background-repeat:repeat;
  551. background-attachment:fixed;
  552. border:0px dotted #9b9b9b;
  553. font-family: 'Dancing Script', cursive;
  554. font-weight:bold;
  555. color: #d1d1d1;
  556. text-shadow:0px 0px 2px #2c2f34;
  557. font-size: 10px;
  558. line-height: 12px;
  559. letter-spacing: 2px;
  560. text-align: center;
  561. text-transform:uppercase;
  562. padding:1px;
  563. line-height:120%;}
  564.  
  565.  
  566.  
  567. quotetext {
  568. background-color: transparent;
  569. font-family: times;
  570. font-size: 14px;
  571. line-height: 20px;
  572. letter-spacing: 2px;
  573. text-align: center;
  574. text-transform:uppercase;
  575. color: #dadada;
  576. }
  577.  
  578.  
  579.  
  580. blockquote {
  581. word-wrap: break-word;
  582. padding:2px 7px;
  583. margin:3px 0 3px 10px;
  584. border-left:1px solid {color:border};
  585. background-color:transparent;}
  586.  
  587.  
  588. blockquote img{
  589. max-width:100%;
  590. height:auto;
  591. }
  592.  
  593. blockquote blockquote img{
  594. max-width:100%;
  595. height:auto;
  596. }
  597.  
  598.  
  599.  
  600.  
  601.  
  602.  
  603.  
  604. b, strong {
  605. font-size:17px;
  606. text-transform:lowercase;
  607. letter-spacing:1px;
  608. font-family: 'Yellowtail', cursive;
  609. color: #ffd966;
  610. text-shadow:1px 1px 0 #343434;
  611. }
  612.  
  613.  
  614. i, italic {
  615. font-size:18px;
  616. color: #e6ac00;
  617. font-family: 'Calligraffitti', cursive;
  618. text-shadow: 0px 0px 2px #5a5a5a;
  619. letter-spacing:1px;
  620. text-transform:lowercase;
  621. }
  622.  
  623.  
  624.  
  625. p {
  626. margin-top:5px;
  627. margin-bottom:5px;}
  628.  
  629.  
  630. ol {
  631. list-style:normal;}
  632.  
  633.  
  634. ul {
  635. list-style:square;}
  636.  
  637.  
  638. small {
  639. font-size:14px
  640. }
  641.  
  642.  
  643. sup,sub {
  644. font-size:14px
  645. }
  646.  
  647.  
  648. pre {
  649. font-size: 11px;
  650. letter-spacing:3px;
  651. background-color:#transparent;
  652. font-family: "Times New Roman", Times, serif;
  653. font-style: none;
  654. text-align:center;
  655. }
  656.  
  657.  
  658.  
  659. big {
  660. font-size:14px;
  661. text-transform:uppercase;
  662. letter-spacing:2px;
  663. font-family: "Times New Roman", Times, serif;
  664. color: #b8b8b8;
  665. text-shadow: 0px 0px 2px #383838;
  666. }
  667.  
  668.  
  669.  
  670. {block:IfGreyscale}
  671.  
  672. img {
  673. -webkit-filter:grayscale(100%);
  674. -webkit-transition: all 0.9s ease-in-out;
  675. -moz-transition: all 0.9s ease-in-out;
  676. -o-transition: all 0.9s ease-in-out;
  677. -ms-transition: all 0.9s ease-in-out;
  678. transition: all 0.9s ease-in-out;}
  679.  
  680. img:hover {
  681. -webkit-filter:none;}
  682.  
  683. .html_photoset {
  684. -webkit-filter: grayscale(100%);
  685. -webkit-transition: all 0.9s ease-in-out;
  686. -moz-transition: all 0.9s ease-in-out;
  687. -o-transition: all 0.9s ease-in-out;
  688. -ms-transition: all 0.9s ease-in-out;
  689. transition: all 0.9s ease-in-out;}
  690.  
  691. .html_photoset:hover {
  692. -webkit-filter: none;}
  693.  
  694. {/block:IfGreyscale}
  695.  
  696.  
  697.  
  698. #pcontainer {
  699. background-color:transparent;
  700. width:355px;
  701. height:435px;
  702. padding: 20px;
  703. top:280px;
  704. margin-left: 505px;
  705. margin-top: -296px;
  706. position:relative;
  707. overflow-y:scroll;
  708. overflow-x:hidden;
  709. -webkit-mask-image: -webkit-gradient(
  710. linear, center 75%, center bottom,
  711. from(rgba(0,0,0,20)),
  712. to(rgba(20,0,0,0)));
  713. border:1px solid #transparent;}
  714.  
  715.  
  716.  
  717. #pcontainer img {
  718. height:auto;
  719. max-width:100%;
  720. }
  721.  
  722.  
  723.  
  724. #content {
  725. margin-left:22px;
  726. width:440px;
  727. margin-top: -100px;
  728. }
  729.  
  730.  
  731. #posts {
  732. text-align:left;
  733. width:340px;
  734. padding:10px;
  735. margin-top: 85px;
  736. padding-bottom:0px;
  737. }
  738.  
  739.  
  740.  
  741. #sidebar {
  742. margin-left: 1590px;
  743. line-height:15px;
  744. width: 180px;
  745. position: fixed;
  746. top: 200px;
  747. text-align: center; }
  748.  
  749.  
  750. #sidebar img {
  751. width:150px;
  752. padding-top:10px;
  753. padding-bottom:10px;}
  754.  
  755.  
  756. #description {
  757.  
  758. margin-left: 0px;
  759. margin-top: -50px;
  760. width:180px;
  761. color:transparent;}
  762.  
  763.  
  764.  
  765. #actualnews {
  766. position:fixed;
  767. font-family: 'Cormorant Upright', serif;
  768. font-size:14px;
  769. text-align:justify;
  770. background-color:#252525;
  771. color: #fff;
  772. width:360px;
  773. height:140px;
  774. padding-top:0px;
  775. border:0px solid #fff;
  776. margin-left: 565px;
  777. margin-top: 345px;
  778. -webkit-filter: blur(0px);
  779. -webkit-transition: 0.8s ease-in;
  780. -moz-transition: 1s ease-in;
  781. transition: 1s ease-in;
  782. opacity:0.2;
  783. -webkit-transition: all 0.6s ease-in-out;
  784. -moz-transition: all 0.6s ease-in-out;
  785. -o-transition: all 0.6s ease-in-out;
  786. -ms-transition: all 0.6s ease-in-out;
  787. transition: all 0.6s ease-in-out;
  788. opacity: 0.2px;
  789. -webkit-mask-image: -webkit-gradient(
  790. linear, center 85%, center bottom,
  791. from(rgba(0,0,0,20)),
  792. to(rgba(20,0,0,0)));
  793. }
  794.  
  795.  
  796.  
  797. #actualnews:hover {
  798. -webkit-filter:none;
  799. -webkit-transition: all 0.6s ease-in-out;
  800. opacity:1;
  801. -webkit-transition: all 0.6s ease-in-out;
  802. -moz-transition: all 0.6s ease-in-out;
  803. -o-transition: all 0.6s ease-in-out;
  804. -ms-transition: all 0.6s ease-in-out;
  805. transition: all 0.6s ease-in-out;
  806. }
  807.  
  808.  
  809.  
  810. #thekey {
  811. position:fixed;
  812. color:#7c7470;
  813. text-shadow: 0px 0px 2px #fff;
  814. margin-top:175px;
  815. margin-left:57px;
  816. width:710px;
  817. padding:9px;
  818. letter-spacing:2px;
  819. word-spacing:5px; /*this defines the separation of each word of the links*/
  820. font-family: 'Cormorant Upright', serif;
  821. font-size:12px;
  822. text-align:center;
  823. background:transparent;
  824. text-transform:uppercase;
  825. -webkit-transform: rotate(-90deg);
  826. -moz-transform: rotate(-90deg);
  827. -o-transform: rotate(-90deg);
  828. }
  829.  
  830. /* ANIMATED SHIT */
  831.  
  832. .animation{
  833. position:fixed;
  834. margin-left:10px;
  835. margin-top:10px;
  836. animation: bbounce linear 2.5s;
  837. animation-iteration-count: infinite;
  838. transform-origin: 50% 50%;
  839. -webkit-animation: bbounce linear 2.5s;
  840. -webkit-animation-iteration-count: infinite;
  841. -webkit-transform-origin: 50% 50%;
  842. }
  843.  
  844. @-webkit-keyframes bbounce {
  845. 0% {-webkit-transform:translate(0px,0px);}
  846. 50% {-webkit-transform:translate(0px,10px);}
  847. 100% {-webkit-transform:translate(0px,0px);}
  848. }
  849.  
  850.  
  851. /* JUMBLED LINKS */
  852.  
  853.  
  854.  
  855. .alinks {
  856. position:fixed;
  857. z-index: 999999;
  858. text-shadow: 0px 0px 0px #000;
  859. left:550px;
  860. top:427px;
  861. transform: rotate(0deg);
  862. font-family: 'Montserrat', sans-serif;
  863. font-size: 20px;}
  864.  
  865.  
  866. .alinks a {
  867. opacity:0.7;
  868. padding:10px;
  869. color:#202020;
  870. margin-right:0px;
  871. -webkit-filter: blur(0px);
  872. -webkit-transition: 0.8s ease-in;
  873. -moz-transition: 1s ease-in;
  874. transition: 1s ease-in;
  875. }
  876.  
  877. .alinks a:hover {
  878. opacity:1;
  879. -webkit-filter: blur(3px);
  880. -webkit-transition: all 0.6s ease-in-out;
  881. -moz-transition: all 0.6s ease-in-out;
  882. -o-transition: all 0.6s ease-in-out;
  883. -ms-transition: all 0.6s ease-in-out;
  884. transition: all 0.6s ease-in-out;
  885. color: #c7c7c7;
  886. text-shadow: 3px 3px 3px #000;
  887. }
  888.  
  889.  
  890.  
  891.  
  892. .blinks {
  893. position:fixed;
  894. z-index:999999;
  895. text-shadow: 0px 0px 0px #000;
  896. left:340px;
  897. top:400px;
  898. transform: rotate(30deg);
  899. font-family: 'Montserrat', sans-serif;
  900. font-size: 15px;
  901.  
  902. }
  903.  
  904.  
  905. .blinks a {
  906. opacity:0.5;
  907. padding:10px;
  908. color:#202020;
  909. margin-right:0px;
  910. -webkit-filter: blur(0px);
  911. -webkit-transition: 0.8s ease-in;
  912. -moz-transition: 1s ease-in;
  913. transition: 1s ease-in;
  914. }
  915.  
  916. .blinks a:hover {
  917. opacity:1;
  918. -webkit-filter: blur(3px);
  919. -webkit-transition: all 0.6s ease-in-out;
  920. -moz-transition: all 0.6s ease-in-out;
  921. -o-transition: all 0.6s ease-in-out;
  922. -ms-transition: all 0.6s ease-in-out;
  923. transition: all 0.6s ease-in-out;
  924. color: #c7c7c7;
  925. text-shadow: 3px 3px 3px #000;
  926. }
  927.  
  928.  
  929.  
  930.  
  931. .clinks {
  932. position:fixed;
  933. z-index: 1;
  934. text-shadow: 0px 0px 0px #000;
  935. left:300px;
  936. top:450px;
  937. transform: rotate(30deg);
  938. font-family: 'Montserrat', sans-serif;
  939. font-size: 15px;}
  940.  
  941.  
  942. .clinks a {
  943. opacity:0.5;
  944. padding:10px;
  945. color:#202020;
  946. margin-right:0px;
  947. -webkit-filter: blur(0px);
  948. -webkit-transition: 0.8s ease-in;
  949. -moz-transition: 1s ease-in;
  950. transition: 1s ease-in;
  951. }
  952.  
  953. .clinks a:hover {
  954. opacity:1;
  955. -webkit-filter: blur(3px);
  956. -webkit-transition: all 0.6s ease-in-out;
  957. -moz-transition: all 0.6s ease-in-out;
  958. -o-transition: all 0.6s ease-in-out;
  959. -ms-transition: all 0.6s ease-in-out;
  960. transition: all 0.6s ease-in-out;
  961. color: #c7c7c7;
  962. text-shadow: 3px 3px 3px #000;
  963. }
  964.  
  965.  
  966.  
  967.  
  968. .dlinks {
  969. position:fixed;
  970. z-index: 999999;
  971. text-shadow: 0px 0px 0px #000;
  972. left:240px;
  973. top:500px;
  974. transform: rotate(40deg);
  975. font-family: 'Montserrat', sans-serif;
  976. font-size: 15px;}
  977.  
  978.  
  979. .dlinks a {
  980. opacity:0.5;
  981. padding:10px;
  982. color:#202020;
  983. margin-right:0px;
  984. -webkit-filter: blur(0px);
  985. -webkit-transition: 0.8s ease-in;
  986. -moz-transition: 1s ease-in;
  987. transition: 1s ease-in;
  988. }
  989.  
  990. .dlinks a:hover {
  991. opacity:1;
  992. -webkit-filter: blur(3px);
  993. -webkit-transition: all 0.6s ease-in-out;
  994. -moz-transition: all 0.6s ease-in-out;
  995. -o-transition: all 0.6s ease-in-out;
  996. -ms-transition: all 0.6s ease-in-out;
  997. transition: all 0.6s ease-in-out;
  998. color: #c7c7c7;
  999. text-shadow: 3px 3px 3px #000;
  1000. }
  1001.  
  1002.  
  1003.  
  1004.  
  1005. .elinks {
  1006. position:fixed;
  1007. text-shadow: 0px 0px 0px #000;
  1008. z-index: 999999;
  1009. left:150px;
  1010. top:400px;
  1011. transform: rotate(40deg);
  1012. font-family: 'Montserrat', sans-serif;
  1013. font-size: 15px;}
  1014.  
  1015.  
  1016. .elinks a {
  1017. opacity:0.5;
  1018. padding:10px;
  1019. color:#202020;
  1020. margin-right:0px;
  1021. -webkit-filter: blur(0px);
  1022. -webkit-transition: 0.8s ease-in;
  1023. -moz-transition: 1s ease-in;
  1024. transition: 1s ease-in;
  1025. }
  1026.  
  1027. .elinks a:hover {
  1028. opacity:1;
  1029. -webkit-filter: blur(3px);
  1030. -webkit-transition: all 0.6s ease-in-out;
  1031. -moz-transition: all 0.6s ease-in-out;
  1032. -o-transition: all 0.6s ease-in-out;
  1033. -ms-transition: all 0.6s ease-in-out;
  1034. transition: all 0.6s ease-in-out;
  1035. color: #c7c7c7;
  1036. text-shadow: 3px 3px 3px #000;
  1037. }
  1038.  
  1039.  
  1040.  
  1041. .flinks {
  1042. position:fixed;
  1043. z-index:1;
  1044. text-shadow: 0px 0px 0px #000;
  1045. left:180px;
  1046. top:455px;
  1047. transform: rotate(10deg);
  1048. font-family: 'Montserrat', sans-serif;
  1049. font-size: 15px;}
  1050.  
  1051.  
  1052. .flinks a {
  1053. opacity:0.5;
  1054. padding:10px;
  1055. color:#202020;
  1056. margin-right:0px;
  1057. -webkit-filter: blur(0px);
  1058. -webkit-transition: 0.8s ease-in;
  1059. -moz-transition: 1s ease-in;
  1060. transition: 1s ease-in;
  1061. }
  1062.  
  1063. .flinks a:hover {
  1064. opacity:1;
  1065. -webkit-filter: blur(3px);
  1066. -webkit-transition: all 0.6s ease-in-out;
  1067. -moz-transition: all 0.6s ease-in-out;
  1068. -o-transition: all 0.6s ease-in-out;
  1069. -ms-transition: all 0.6s ease-in-out;
  1070. transition: all 0.6s ease-in-out;
  1071. color: #c7c7c7;
  1072. text-shadow: 3px 3px 3px #000;
  1073. }
  1074.  
  1075.  
  1076. .glinks {
  1077. position:fixed;
  1078. z-index:1;
  1079. text-shadow: 0px 0px 0px #000;
  1080. left:243px;
  1081. top:440px;
  1082. transform: rotate(10deg);
  1083. font-family: 'Montserrat', sans-serif;
  1084. font-size: 15px;}
  1085.  
  1086.  
  1087. .glinks a {
  1088. opacity:0.5;
  1089. padding:10px;
  1090. color:#202020;
  1091. margin-right:0px;
  1092. -webkit-filter: blur(0px);
  1093. -webkit-transition: 0.8s ease-in;
  1094. -moz-transition: 1s ease-in;
  1095. transition: 1s ease-in;
  1096. }
  1097.  
  1098. .glinks a:hover {
  1099. opacity:1;
  1100. -webkit-filter: blur(3px);
  1101. -webkit-transition: all 0.6s ease-in-out;
  1102. -moz-transition: all 0.6s ease-in-out;
  1103. -o-transition: all 0.6s ease-in-out;
  1104. -ms-transition: all 0.6s ease-in-out;
  1105. transition: all 0.6s ease-in-out;
  1106. color: #c7c7c7;
  1107. text-shadow: 3px 3px 3px #000;
  1108. }
  1109.  
  1110. .hlinks {
  1111. position:fixed;
  1112. z-index:1;
  1113. text-shadow: 0px 0px 0px #000;
  1114. left:800px;
  1115. top:210px;
  1116. transform: rotate(-10deg);
  1117. font-family: 'Montserrat', sans-serif;
  1118. font-size: 15px;}
  1119.  
  1120.  
  1121. .hlinks a {
  1122. opacity:0.5;
  1123. padding:10px;
  1124. color:#202020;
  1125. margin-right:0px;
  1126. -webkit-filter: blur(0px);
  1127. -webkit-transition: 0.8s ease-in;
  1128. -moz-transition: 1s ease-in;
  1129. transition: 1s ease-in;
  1130. }
  1131.  
  1132. .hlinks a:hover {
  1133. opacity:1;
  1134. -webkit-filter: blur(3px);
  1135. -webkit-transition: all 0.6s ease-in-out;
  1136. -moz-transition: all 0.6s ease-in-out;
  1137. -o-transition: all 0.6s ease-in-out;
  1138. -ms-transition: all 0.6s ease-in-out;
  1139. transition: all 0.6s ease-in-out;
  1140. color: #c7c7c7;
  1141. text-shadow: 3px 3px 3px #000;
  1142. }
  1143.  
  1144.  
  1145.  
  1146. .credit {
  1147. position:fixed;
  1148. text-shadow: 0px 0px 11px #7C6868;
  1149. right:15px;
  1150. bottom:15px;
  1151. transform: rotate(0deg);
  1152. font-family: 'Cormorant Upright', serif;
  1153. font-size: 14px; }
  1154.  
  1155.  
  1156. .credit a {
  1157. padding:10px;
  1158. color:#191919;
  1159. margin-right:0px;
  1160. -webkit-filter: blur(1px);
  1161. -webkit-transition: 0.8s ease-in;
  1162. -moz-transition: 1s ease-in;
  1163. transition: 1s ease-in;
  1164. }
  1165.  
  1166. .credit a:hover {
  1167. -webkit-transition: all 0.6s ease-in-out;
  1168. -moz-transition: all 0.6s ease-in-out;
  1169. -o-transition: all 0.6s ease-in-out;
  1170. -ms-transition: all 0.6s ease-in-out;
  1171. transition: all 0.6s ease-in-out;
  1172. color: #000000;
  1173. text-shadow: 2px 2px 2px #000000;
  1174. }
  1175.  
  1176.  
  1177.  
  1178.  
  1179.  
  1180.  
  1181.  
  1182.  
  1183.  
  1184.  
  1185. /* JUMBLED LINKS ENDS */
  1186.  
  1187.  
  1188.  
  1189. #pagination {
  1190. position:fixed;
  1191. font-family:'Cormorant Upright', serif;
  1192. width:300px;
  1193. font-size:18px;
  1194. top:695px;
  1195. left:610px;
  1196. letter-spacing:3px;
  1197. text-align:center;
  1198. z-index:999999999999;
  1199. }
  1200.  
  1201. #pagination a {
  1202. text-transform:uppercase;
  1203. color:#ffdf80;
  1204. -webkit-filter: blur(1px);
  1205. -webkit-transition: 0.8s ease-in;
  1206. -moz-transition: 1s ease-in;
  1207. transition: 1s ease-in;
  1208. z-index:999999999999;
  1209. }
  1210.  
  1211. #pagination a:hover {
  1212. color:#000;
  1213. -webkit-filter: blur(0px);
  1214. -webkit-transition: 0.2s ease-in;
  1215. -moz-transition: 1s ease-in;
  1216. transition: 1s ease-in;
  1217. }
  1218.  
  1219.  
  1220. .audio{
  1221. background-color:transparent;
  1222. height:80px;
  1223. overflow:hidden;
  1224. }
  1225.  
  1226.  
  1227.  
  1228. /* QUESTIONS & ANSWERS DETAILS */
  1229.  
  1230.  
  1231. #asker {
  1232. font-family: 'Monsieur La Doulaise', cursive;
  1233. letter-spacing:2px;
  1234. text-align:center;
  1235. padding-top: 10px;
  1236. margin-left:0px;
  1237. color: #c9c9c9;
  1238. font-size:40px;
  1239. padding:5px;
  1240. letter-spacing:0px
  1241. text-shadow:0 0 2px #aeaeae;
  1242. }
  1243.  
  1244.  
  1245. #asker a{
  1246. font-family: 'Monsieur La Doulaise', cursive;
  1247. letter-spacing:2px;
  1248. margin-left:50px;
  1249. font-size:40px;
  1250. letter-spacing: 0px;
  1251. text-shadow: none;
  1252. color: #c9c9c9;
  1253. text-shadow:0 0 2px #1a1a1a;
  1254. -webkit-filter: blur(0.5px);
  1255. }
  1256.  
  1257.  
  1258. #asker a:hover {
  1259. color: #656565;
  1260. font-family: 'Monsieur La Doulaise', cursive;
  1261. letter-spacing: 0px;
  1262. text-shadow:0 0 2px #000;
  1263. -webkit-filter: blur(2px);
  1264. -webkit-transition:all .5s ease-in-out;
  1265. -moz-transition:all .5s ease-in-out;
  1266. transition:all .5s ease-in-out;
  1267. }
  1268.  
  1269.  
  1270.  
  1271. #ask {
  1272. font-family: 'Cormorant Upright', serif;
  1273. width:315px;
  1274. font-size:12px;
  1275. text-align:center;
  1276. padding-top: 5px;
  1277. margin-left:0px;
  1278. text-transform:auto;
  1279. letter-spacing:3px
  1280. margin-top:-10px;
  1281. padding:5px;
  1282. background: #000;
  1283. background: url("https://68.media.tumblr.com/d0a9c750b40901453838766ff9dbe02f/tumblr_inline_oltxrghihI1stnv89_500.gif");
  1284. background-repeat:repeat;
  1285. background-attachment:fixed;
  1286. color:#dcdcdc;
  1287. border-bottom-left-radius: 10px;
  1288. border-bottom-right-radius: 10px;
  1289. border-top-left-radius: 10px;
  1290. border-top-right-radius: 10px;
  1291. padding:10px;
  1292. letter-spacing:2px;
  1293. border-bottom:solid 1px #717171;
  1294. border-top:solid 1px #717171;
  1295. }
  1296.  
  1297.  
  1298. .ans {
  1299. padding:10px;
  1300. }
  1301.  
  1302.  
  1303. /* POST INFO DETAILS */
  1304.  
  1305.  
  1306.  
  1307. #info {
  1308. background: url("https://68.media.tumblr.com/d8daf399368e2778b15e69e0a2395241/tumblr_inline_ojv6m2QgWX1stnv89_500.gif");
  1309. background-repeat:repeat;
  1310. background-attachment:fixed;
  1311. border: 1px double #transparent;
  1312. border-bottom-left-radius: 15px;
  1313. border-top-left-radius: 15px;
  1314. width:350px;
  1315. height:25px;
  1316. text-align:center;
  1317. letter-spacing:10px;
  1318. margin-top:8px;
  1319. margin-bottom:50px;
  1320. text-transform:uppercase;
  1321. font-size:15px;
  1322. font-style:none;
  1323. }
  1324.  
  1325.  
  1326.  
  1327.  
  1328. #info a {
  1329. color:#dcdcdc;}
  1330.  
  1331. #info a:hover {
  1332. color:#000;}
  1333.  
  1334.  
  1335.  
  1336.  
  1337. #tags {
  1338. font-family: serif;
  1339. color:#cc9900;
  1340. padding-bottom:35px;
  1341. letter-spacing:2px;
  1342. text-transform:uppercase;
  1343. font-size:10px;
  1344. font-style:normal;
  1345. margin-top:10px;
  1346. text-align:center;
  1347. float:right;
  1348. }
  1349.  
  1350.  
  1351. #tags a {
  1352. display:inline-block;
  1353. padding:-3px;
  1354. opacity:0.8;
  1355. text-align:center;
  1356. color:#ffdf80;
  1357.  
  1358. }
  1359.  
  1360.  
  1361. #tags a:hover {
  1362. color:{color:text};
  1363. }
  1364.  
  1365.  
  1366.  
  1367.  
  1368.  
  1369.  
  1370. .note {
  1371. text-transform:uppercase;
  1372. font-style:normal;
  1373. letter-spacing:0px;
  1374. font-size: 10px;
  1375. text-align:left;
  1376. line-height:90%;
  1377. margin-left:-40px;}
  1378.  
  1379. .note li {
  1380. list-style-type:none;
  1381. border-bottom:0px solid {color:border};
  1382. padding:10px 25px 10px 25px;
  1383. text-align:left;
  1384. margin:0px;
  1385. -moz-transition-duration:0.5s;
  1386. -webkit-transition-duration:0.5s;
  1387. -o-transition-duration:0.5s;}
  1388.  
  1389. .note img.avatar {
  1390. margin-right: 10px;
  1391. width: 16px;
  1392. height: 16px;}
  1393.  
  1394.  
  1395.  
  1396.  
  1397. /*--BASIC POP-UP DETAILS--*/
  1398.  
  1399.  
  1400.  
  1401. .popup_block{
  1402. display:none;
  1403. background: url("");
  1404. background:#252525;
  1405. padding:37px;
  1406. font-size:14px;
  1407. font-family: 'Cormorant Upright', serif;
  1408. float:left;
  1409. width:560px;
  1410. height:435px;
  1411. top:250px;
  1412. left:754px;
  1413. position:fixed;
  1414. z-index: 99999;
  1415. -webkit-box-shadow: 1px 1px 5px #transparent;
  1416. -moz-box-shadow: 1px 1px 5px #transparent;
  1417. box-shadow: 1px 1px 5px #transparent;
  1418. }
  1419.  
  1420.  
  1421. *html #fade {position: absolute;}
  1422. *html .popup_block {position: absolute;}
  1423. #fade {
  1424. display:none;
  1425. position:fixed;
  1426. left:0px;
  1427. top:0px;
  1428. width:100%;
  1429. height:100%;
  1430. z-index:9999;
  1431. background-attachment:fixed;
  1432. background-image: url("");
  1433. background-repeat:no-repeat;
  1434. opacity:1;
  1435. }
  1436.  
  1437.  
  1438.  
  1439.  
  1440. .popupnavlinks {
  1441. padding-top:5px;
  1442. text-align:center; }
  1443.  
  1444.  
  1445. .popupnavlinks a {
  1446. display:inline-block;
  1447. width:120px; height:8px;
  1448. margin:2px; padding:6px 6px 10px;
  1449. text-align:center;
  1450. font-family:'Cormorant Upright', serif;
  1451. font-size:8px;
  1452. text-transform:uppercase;
  1453. letter-spacing:1px;
  1454. color:#dcdcdc; background:transparent;
  1455. background-image:url('https://66.media.tumblr.com/76b9c9e27c698be20e2cc30e4603ba34/tumblr_ob577djZr01u2jirlo5_r1_400.gif');
  1456. background-repeat:repeat;
  1457. background-attachment:fixed;
  1458. border:1px dotted;
  1459. border-color: #9b9b9b;
  1460. }
  1461.  
  1462.  
  1463. .popupnavlinks a:hover {
  1464. display:inline-block;
  1465. width:120px; margin:2px;
  1466. padding:6px 6px 10px;
  1467. text-align:center;
  1468. font-family:'Cormorant Upright', serif;
  1469. font-size:8px;
  1470. text-transform:uppercase;
  1471. letter-spacing:1px;
  1472. color:#2e2e2e;
  1473. background:transparent }
  1474.  
  1475.  
  1476.  
  1477. .popupclose {
  1478. float:right; top:0px; right:0px;
  1479. margin-top:-10px; margin-right:-10px;
  1480. font-family:'Scada', sans serif;
  1481. font-size:10px;
  1482. font-weight:bold }
  1483.  
  1484. .popupclose a {
  1485. color:#aaa }
  1486.  
  1487.  
  1488.  
  1489. /*--TOOLTIP DETAILS--*/
  1490.  
  1491.  
  1492.  
  1493. #s-m-t-tooltip{
  1494. max-width:400px;
  1495. margin:15px;
  1496. padding:2px 8px;
  1497. background: #dcdcdc;
  1498. background-image:url('https://68.media.tumblr.com/d8daf399368e2778b15e69e0a2395241/tumblr_inline_ojv6m2QgWX1stnv89_500.gif');
  1499. background-repeat:repeat;
  1500. background-attachment:fixed;
  1501. border:1px dotted;
  1502. border-color: #727272;
  1503. color:#9b9b9b;
  1504. z-index:99999999999999999999;
  1505. font-size:9px;
  1506. letter-spacing:2px;
  1507. font-style:bold;
  1508. letter-spacing:2px;
  1509. font-family:'Cormorant Upright', serif;
  1510. text-transform:uppercase;
  1511. box-shadow:1px 1px 3px rgba(0,0,0,.1);}
  1512.  
  1513. /*--MOOSIC--*/
  1514.  
  1515. #musicicon {
  1516. position: fixed;
  1517. top: 20px;
  1518. left: 20px;
  1519. width: 26px;
  1520. height: 26px;
  1521. -webkit-transition: all .7s ease;
  1522. -moz-transition: all .7s ease;
  1523. -o-transition: all .7s ease;
  1524. transition: all .7s ease;
  1525. }
  1526.  
  1527. .micon {
  1528. z-index: 1;
  1529. width: 15px;
  1530. background: transparent; /* music icon background */
  1531. padding: 2px;
  1532. width: 26px;
  1533. height: 30px;
  1534. border-radius: 4px;
  1535. -webkit-transition: all .7s ease;
  1536. -moz-transition: all .7s ease;
  1537. -o-transition: all .7s ease;
  1538. transition: all .7s ease;
  1539. }
  1540.  
  1541. .micon:hover{
  1542. border-top-left-radius: 4px;
  1543. border-bottom-left-radius: 4px;
  1544. border-top-right-radius: 0px;
  1545. border-bottom-right-radius: 0px;
  1546. }
  1547.  
  1548. .micon img { width: 15px; margin: 5px; }
  1549.  
  1550. .musicplayer {
  1551. z-index: -1;
  1552. position: absolute;
  1553. margin-top: -35px;
  1554. background: transparent; /* music player background */
  1555. border: 0px solid #ece4d2; /* music player border */
  1556. margin-left: 5px;
  1557. border-radius: 4px;
  1558. width: 0px;
  1559. padding: 9px;
  1560. overflow: hidden;
  1561. -webkit-transition: all .7s ease;
  1562. -moz-transition: all .7s ease;
  1563. -o-transition: all .7s ease;
  1564. transition: all .7s ease;
  1565. }
  1566.  
  1567. .mplayer { margin-left: -27px; }
  1568.  
  1569. #musicicon:hover .musicplayer {
  1570. margin-left: 29px;
  1571. width: 20px;
  1572. border-top-left-radius: 0px;
  1573. border-bottom-left-radius: 0px;
  1574. border-top-right-radius: 4px;
  1575. border-bottom-right-radius: 4px;
  1576. }
  1577.  
  1578. #musicicon:hover .micon {
  1579. border-top-left-radius: 4px;
  1580. border-bottom-left-radius: 4px;
  1581. border-top-right-radius: 0px;
  1582. border-bottom-right-radius: 0px;
  1583. }
  1584.  
  1585. </style></head><body>
  1586.  
  1587. <div id="musicicon">
  1588. <div class="micon">
  1589. <img src="http://media-minecraftforum.cursecdn.com/avatars/253/165/635357512640366735.gif">
  1590. </div>
  1591. <div class="musicplayer">
  1592. <div class="mplayer">
  1593. <embed src="http://www.sheepproductions.com/billy/billy.swf?autoplay=true&f0=http://k003.kiwi6.com/hotlink/ga8zlfsl8v/Hunter_of_the_First_Lords_-_Gehrman_the_First_Hunter_and_Gwyn_Lord_of_Cinder_Remix_.mp3
  1594. &t0=&total=1" quality="high" wmode="transparent" width="200" height="10" name="billy" align="middle" type="application/x-shockwave-flash" />
  1595. </div>
  1596. </div>
  1597. </div>
  1598.  
  1599. <div id="content">
  1600.  
  1601. <div id="sidebar">
  1602.  
  1603. <img src="{image:Sidebar}" />
  1604.  
  1605. <div id="description">{description}</div>
  1606.  
  1607. </div>
  1608.  
  1609. <div id="pagination">
  1610. {block:Pagination}{block:PreviousPage}<a href="{PreviousPage}">◄</a> • {/block:PreviousPage}{block:NextPage} <a href="{NextPage}">►</a>{/block:NextPage}{/block:Pagination}
  1611. </div>
  1612.  
  1613.  
  1614. <div id="links">
  1615.  
  1616.  
  1617. <div id="linkbar">
  1618.  
  1619.  
  1620. <div class="alinks">
  1621. <a href="/" title="wallachia"> <img src="https://68.media.tumblr.com/f73104657d510bea42bd31e4922a15cd/tumblr_ogca4wqgOT1vbwxuvo2_r2_400.png"> </a>
  1622. </div>
  1623.  
  1624.  
  1625. <div class="blinks">
  1626. <a href="#?w=310" rel="box1" class="poplight" title="courier"> <img src="http://68.media.tumblr.com/ac1159a652e5709f6c0320965fb1269d/tumblr_nzc1pr600i1u2jirlo1_r3_75sq.png"> </a>
  1627. </div>
  1628.  
  1629.  
  1630. <div class="clinks">
  1631. <a href="#?w=310" rel="box2" class="poplight" title="order of the dragon"> <img src="http://68.media.tumblr.com/ac1159a652e5709f6c0320965fb1269d/tumblr_nzc1pr600i1u2jirlo1_r3_75sq.png"> </a>
  1632. </div>
  1633.  
  1634.  
  1635. <div class="dlinks">
  1636. <a href="#?w=310" rel="box3" class="poplight" title="otherworlds"> <img src="http://68.media.tumblr.com/ac1159a652e5709f6c0320965fb1269d/tumblr_nzc1pr600i1u2jirlo1_r3_75sq.png"> </a>
  1637. </div>
  1638.  
  1639.  
  1640. <div class="glinks">
  1641. <a href="http://kaledvoul.tumblr.com/post/152073008325/alright-i-havent-done-this-until-now-but-i" title="permanent starter call"> <img src="http://68.media.tumblr.com/ac1159a652e5709f6c0320965fb1269d/tumblr_nzc1pr600i1u2jirlo1_r3_75sq.png"> </a>
  1642. </div>
  1643.  
  1644. <div class="elinks">
  1645. <a href="#?w=310" rel="box4" class="poplight" title="the dragon"> <img src="http://68.media.tumblr.com/ac1159a652e5709f6c0320965fb1269d/tumblr_nzc1pr600i1u2jirlo1_r3_75sq.png"> </a>
  1646. </div>
  1647.  
  1648.  
  1649.  
  1650. <div class="flinks">
  1651. <a href="#?w=310" rel="box5" class="poplight" title="drac tags"> <img src="http://68.media.tumblr.com/ac1159a652e5709f6c0320965fb1269d/tumblr_nzc1pr600i1u2jirlo1_r3_75sq.png"> </a>
  1652. </div>
  1653.  
  1654.  
  1655. <div class="credit">
  1656. <a href="http://agirlingrey.tumblr.com/" title="agirlingrey.">A.</a>
  1657. </div>
  1658.  
  1659.  
  1660. </div></div>
  1661.  
  1662.  
  1663. <div id="pcontainer">
  1664.  
  1665. <div id="content"><div id="posts">
  1666. {block:Posts}
  1667.  
  1668.  
  1669. {block:Quote}<quotetext>"{Quote}"</quotetext>&nbsp; <br><br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; — {Source} {/block:Quote}
  1670. {block:Title}<h1>{Title}&nbsp;</h1>{/block:Title}
  1671. {block:Text}{Body}{/block:Text}
  1672.  
  1673. {block:Link}<a href="{URL}" class="link" {Target}><h1>{Name}&nbsp;</h1></a>
  1674.  
  1675. {block:Description}<P>{Description}</p>{/block:Description}{/block:Link}
  1676.  
  1677. {block:Photo}<center>{LinkOpenTag}<img src="{PhotoURL-HighRes}" width="360px">{LinkCloseTag}</center>{block:Caption}{/block:Caption}{/block:Photo}
  1678. {block:Photoset}<center>{Photoset}</center>{block:Caption}{/block:Caption}{/block:Photoset}
  1679.  
  1680. {block:Chat}<ul class="chat"><BR>{block:Lines}<li class="user_{UserNumber}">{block:Label}<span class="label">{Label}</span>{/block:Label}&nbsp;{Line}</li><BR>{/block:Lines}</ul>{/block:Chat}
  1681.  
  1682. {block:Video}{Video-250}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  1683.  
  1684.  
  1685. {block:Answer}<div id="asker" style="width:255px; text-shadow:0 0 2px #000; ">{Asker}:<div id="ask"> <p><p><p><p><p>{Question}</div></span></div><font face="calibri"><span style="font-family:'Cormorant Upright', serif;font-size:14px; marging-left:0px;">{Answer}<div id="answer" style="font-family:Cormorant Upright', serif;"></div></span>{/block:Answer}
  1686.  
  1687. {block:Audio}{block:AlbumArt}<img src="{AlbumArtURL}" width="65px" align="left">{/block:AlbumArt}<div class="audio">{AudioPlayerGrey}<br><i>{block:TrackName}&nbsp;&nbsp;&nbsp;&nbsp; {TrackName}{/block:TrackName}</i></br>
  1688. {block:Artist} &nbsp;—&nbsp; <b>{Artist} {/block:Artist}</b></div>{block:Caption}{Caption}{/block:Caption}{/block:Audio}
  1689.  
  1690. {block:Caption}{Caption}{/block:Caption}
  1691.  
  1692.  
  1693. <div id="info">
  1694. <br>
  1695.  
  1696. &nbsp; &nbsp;
  1697.  
  1698.  
  1699. {block:Date}
  1700. <a href="{Permalink}" style="position:absolute; margin-left:-170px; margin-top:-8px;-webkit-transform: rotate(0deg);-ms-transform: rotate(0deg);transform: rotate(0deg); text-shadow: 0px 0px 5px #919191;" title=" {ShortMonth} {DayOfMonthWithZero} - {TimeAgo} "> <img src="https://66.media.tumblr.com/5cbabd80fe471b4dfb6fb8dbcc070bfe/tumblr_inline_obwquwpWK01stnv89_540.png"> </a>
  1701. {/block:Date}
  1702.  
  1703.  
  1704. {block:RebloggedFrom}
  1705. <a href="{ReblogParentURL}" style="position:absolute; margin-left:-135px; margin-top:-8px;-webkit-transform: rotate(0deg);-ms-transform: rotate(0deg);transform: rotate(0deg); text-shadow: 0px 0px 5px #919191;" title=" via. {ReblogParentName} "> ☆ </a>
  1706. {/block:RebloggedFrom}
  1707.  
  1708.  
  1709. {block:ContentSource}
  1710. <a href="{SourceURL}" style="position:absolute; margin-left:-200px; margin-top:-18px;-webkit-transform: rotate(0deg);-ms-transform: rotate(0deg);transform: rotate(0deg); text-shadow: 0px 0px 5px #919191;" title=" source. {SourceTitle} "> ✦ </a>
  1711. {/block:ContentSource}
  1712.  
  1713.  
  1714. <a href="{Permalink}" style="position:absolute; margin-left:-195px; margin-top:8px;-webkit-transform: rotate(0deg);-ms-transform: rotate(0deg);transform: rotate(0deg); text-shadow: 0px 0px 5px #919191;" title=" {NoteCount} notes "> ☆ </a>
  1715.  
  1716.  
  1717. <a href="{ReblogURL}" style="position:absolute; margin-left:-140px; margin-top:8px;-webkit-transform: rotate(0deg);-ms-transform: rotate(0deg);transform: rotate(0deg); text-shadow: 0px 0px 5px #919191;" title="reblog"> ✦ </a>
  1718.  
  1719.  
  1720. <br>
  1721.  
  1722. {block:HasTags}<div id="tags">{block:Tags} & <a href="{TagURL}">{Tag}</a> {/block:Tags}</div>{/block:HasTags}</div> &nbsp;
  1723. {/block:Posts}
  1724. <div class="note">
  1725. {block:PostNotes}{PostNotes}{/block:PostNotes}
  1726. </div>
  1727.  
  1728. {/block:Posts}</div></div>
  1729.  
  1730.  
  1731.  
  1732. </div> </div> </div> </div> </div> </div>
  1733.  
  1734.  
  1735.  
  1736. </body>
  1737.  
  1738.  
  1739.  
  1740. <div id="box1" class="popup_block">
  1741.  
  1742. <h3>
  1743. yay messages
  1744. </h3>
  1745.  
  1746. <center>
  1747.  
  1748. <i>What do you inquire?</i>
  1749.  
  1750. <p><iframe frameborder="0" height="250" id="ask_form" scrolling="yes" src="http://www.tumblr.com/ask_form/kaledvoul.tumblr.com" width="100%"></iframe></p>
  1751.  
  1752. </div>
  1753.  
  1754. </center>
  1755.  
  1756.  
  1757.  
  1758. <div id="box2" class="popup_block">
  1759.  
  1760. <div style="width:auto;height:405px;overflow:scroll;padding:5px;">
  1761.  
  1762.  
  1763. <h3>general</h3>
  1764.  
  1765. <h2>Established March 2013, rebooted August 2016</h2>
  1766. <ul>
  1767. <li>Indie fandomless Count Dracula written by <b>Gisette</b></li>
  1768. <li>Panfandom, mutually exclusive multiship, non-selective, multiverse, AU-inclusive, OC-inclusive, <strong>semi-exclusive*</strong></li>
  1769. <li>Highly NSFW, triggers are tagged, NSFW tagged, read mores used</li>
  1770. <li>Heavily incorporates Vlad the Impaler&rsquo;s history, Dracula book canon and mythos, and much original content in the form of headcanons and backstory also <a href "http://calesvoli.tumblr.com">found here.</a></li>
  1771. <li><i>*Semi-exclusive</i> = I tend not to rp with duplicates of other's muses (or FC's if original characters], and the semi-exclusivity and exclusivity of my partners will automatically be honored; the same is not demanded of my muse nor his incarnations. <i>If you force me to be exclusive with you or to break exclusivity with someone who I'm already exclusive with, I will block you without question or negotiation.</i></li>
  1772. </ul>
  1773. <h3>interactions</h3>
  1774. <ul>
  1775. <li><b>Thread length</b>: Script, para, multi-para, novella (1-3k+].</li>
  1776. <li><b>Replies</b>: Please take as long as you need and reply at your own discretion.</li>
  1777. <li><b>Genres</b>: Action, adventure, fighting, heavy plots, war, disturbing themes like horror, manipulation, gore, and the like. This blog is 18+ so things can get extremely graphic and explicit.</li>
  1778. <li><b>Godmodding &amp; metagaming</b>: This will not occur except on the basis of OOC consent for it to happen.&nbsp;</li>
  1779. <li><b>Fandoms &amp; OC's</b>: This account is extremely panfandom and OC-eager. It also needs saying that I absolutely welcome OC fledglings and children without restraint, honestly. Crossover children with Dracula somewhere related to them are accepted into my Vlad's canon, as well. Basically? Whether OC or canon, I will absolutely not shun any muse related to my muse in any capacity.</li>
  1780. </ul>
  1781. <h3>shipping && nsfw</h3>
  1782. <ul>
  1783. <li><b>Shipping</b>: Multiship, with a preference for extensively plotted ships or ones with ample interaction beforehand. Will not ship with singleship blogs or muses that are under 20 (or physically 20 if immortal]; smut is only for 18+ muns/20+ muses.</span></li>
  1784. <li><b>Mutual exclusivity</b>: I will not ship with duplicates of the same muse, and ask the same in kind. This encompasses other Vlads, Draculas, or those with either/both as incarnations of another's muse.</span></li>
  1785. <li><b>NSFW</b>: Very seldom will explicit or graphic content occur visually; though frequent in writing, regardless it will always be tagged. Smut will only occur between 18+ muns and muses who are 20+ (20+ physically & mentally with immortal muses].</span></li>
  1786. <li><b>Will not</b>: Engage in sexual triggers such as rape, bestiality, non-/dub-con, shotacon/lolicon/pedophilia, incest, or ships with fledglings.</span></li>
  1787. <li><b>Famships</b>: Famships that involve OC children, fledglings, crossover famships, and father/mentor-child/student relationships are all eagerly welcome from the outset. Typically, all are united into his canon and acknowledged as such.</span></li>
  1788. <li><b>past people</b>: There are many people in Vlad's past mentioned in both his About and in the exposition of threads that may be foreign. If you would like to see more, please to to the Drac Tags and click the Notable People link for info on many of them in their own profiles. While he does has some default relationships during past time and more recent periods, these will be rendered null in any ships played out during these times.</span></li>
  1789. </ul>
  1790. <h3>ooc--;</h3>
  1791. <ul>
  1792. <li><b>tracked tag</b>: kaledvoul</li>
  1793. <li><b>mun</b>: My name's Cat! I'm Non-Binary and don't care what pronouns you use for me, and I'm currently 21 years old. Feel free to ask me for my skype or personal if we're mutuals!</li>
  1794. <li><b>theme</b> The theme was fairly inspired by <a href="http://shieldarmed.tumblr.com">Katie's</a> own theme motifs and used with permission!</li>
  1795. <li><b>icon credits</b>: If not belonging to his comic/video game FC's, all art seen in graphics or icons was done by me or <a href="http://abz-j-harding.tumblr.com">my close friend <i>Abz</i></a>, with consent given to use. Some art was also done by <a href="http://raviollies.tumblr.com"><i>Rav</i></a>, <a href="http://faemoria.tumblr.com"><i>Mem</i></a>, <a href="http://ssanis.tumblr.com"><i>Nadz</i></a>, <a href="http://djurito.tumblr.com"><i>Jaime</i></a> & <a href="http://thecatgoddessbast.tumblr.com"><i>Mod</i></a> for me with their okay to use.</li>
  1796. <li><b>art credits</b>: Dash banner art made for me by <a href="http://raviollies.tumblr.com/">my lovely bestie, <i>Rav~</i></a></li>
  1797.  
  1798. </div>
  1799. </div>
  1800.  
  1801.  
  1802.  
  1803.  
  1804. <div id="box3" class="popup_block">
  1805.  
  1806. <h3>timeline | verses | au</h3>
  1807.  
  1808. <ul id="tabs">
  1809. <li class="active">timeline</li>
  1810. <li>verses</li>
  1811. <li>closed au's</li>
  1812. </ul>
  1813.  
  1814. <div style="width:auto;height:335px;overflow:scroll;padding:5px;">
  1815.  
  1816.  
  1817.  
  1818. <ul id="tab">
  1819. <li class="active">
  1820.  
  1821.  
  1822. <a href="/tagged/( T | the scorpion (era of the prince ]"><b>Vlad III Dracula</b></a>
  1823. <img src="https://66.media.tumblr.com/408fe5f273eb9cb69b9918645919ed1b/tumblr_inline_ob6i0xXqDM1stnv89_540.png" align="left" style="height:85px;width:85px;padding-right:5px;padding-bottom:0px;">
  1824.  
  1825.  
  1826. <br>
  1827.  
  1828. From his birth in the early winter of 1431, his turning into a dormant Dracul–first of his kind–at 27, to his awakening in 1476, this time period covers all the events within the Hospodar’s life from his childhood in Sighisoara to the betrayal and “death” at the hands of Basarab Laota.
  1829.  
  1830.  
  1831. <br><br><br>
  1832.  
  1833.  
  1834.  
  1835. <a href="/tagged/( T | the eagle (era of the count]"><b>Count Dracula</b></a>
  1836. <img src="https://66.media.tumblr.com/42a9fb9842ae79f55f0ee7939cf4d962/tumblr_inline_ob6i0yddUH1stnv89_540.png" align="left" style="height:85px;width:85px;padding-right:5px;padding-bottom:0px;">
  1837.  
  1838.  
  1839. <br>
  1840.  
  1841. The time in between his turning to before and during the events of Bran Stoker’s Dracula. Spanning approximately three centuries or more, in this time period, Dracula is a newly born Dracul soon taken within Hell to live alongside his Sire and other guardians. From there, he rebels and conspires to overthrow Lucifer, entering the Devil’s dark magic school, Scholomance, culminating with the events before and during Bram Stoker’s Dracula.
  1842.  
  1843.  
  1844. <br><br><br>
  1845.  
  1846.  
  1847. <a href="/tagged/( T | the eagle shorn (the count's fall]"><b>Post-Dracula</b></a>
  1848. <img src="https://66.media.tumblr.com/24f5b4cfcc39391d5c0dbfaabf5386f1/tumblr_inline_ob6i0ysUYw1stnv89_540.png" align="left" style="height:85px;width:85px;padding-right:5px;padding-bottom:0px;">
  1849.  
  1850.  
  1851. <br>
  1852.  
  1853. Concerning the time exactly after and leading up to the Russo-Japanese War, Dracula, dubbed Vlad, has been brutally defeated, humiliated, and believe him to have died on those snowy Carpathian slopes. However, after but a few years of regaining his strength, Vlad conspires with his niece, the Blood Countess Elizabeth Bathory, to overthrow England’s government though ultimately fails in an event known as the Blood War. He’s kept and conditioned to become a soldier until 1904.
  1854.  
  1855.  
  1856. <br><br>
  1857.  
  1858. <a href="/tagged/( T | the phoenix lit (russo japanese war]"><b>The Russo-Japanese War</b></a>
  1859. <img src="https://66.media.tumblr.com/c1ab6deaf4951faa49414b7ccc93443e/tumblr_inline_ob6i126Jsb1stnv89_540.jpg" align="left" style="height:85px;width:85px;padding-right:5px;padding-bottom:0px;">
  1860.  
  1861.  
  1862. <br>
  1863.  
  1864. Noted as being the first modern war, this was an experiment to test Vlad’s prowess in a modern war. Noted as being an overwhelming success, despite the severe consequences extolled mentally, bodily, and spiritually upon Vlad, it created a scenario that solidified his usefulness on the modern battlefield as an extremely lucrative soldier. After this war, DAIS sells him to the US government and becomes their own indentured soldier.
  1865.  
  1866.  
  1867. <br><br>
  1868.  
  1869. <a href="/tagged/( T | the phoenix flickering (world war i]"><b>WW1</b></a>
  1870. <img src="https://68.media.tumblr.com/0b66311c345924ae2180828ab53550cb/tumblr_inline_ok2xgxNcXu1urghje_540.png" align="left" style="height:85px;width:85px;padding-right:5px;padding-bottom:0px;">
  1871.  
  1872.  
  1873. <br>
  1874.  
  1875. The Great War, the first World War, one of the defining ones of the twentieth century. After the success of Vlad in the Russo-Japanese War, he’s utilized once again, but this time for years instead of slightly less than one.
  1876.  
  1877.  
  1878. <br><br>
  1879.  
  1880. <a href="/tagged/( T | the phoenix searing (the roaring twenties]"><b>The Roaring Twenties</b></a>
  1881. <img src="https://68.media.tumblr.com/76309bf427d4ee949a2408ddf29a3d66/tumblr_inline_ok2xz8PURe1urghje_540.png" align="left" style="height:85px;width:85px;padding-right:5px;padding-bottom:0px;">
  1882.  
  1883.  
  1884. <br>
  1885.  
  1886. In the year 1919, a year after the conclusion of the Great War, America is in the rebound. For over a decade, Vlad allies himself with powerful mafia heads as consul and muscle, beginning as gangsters and culminate as wealthy and affluent businessmen. By 1930, on order on the President, Vlad is discovered of his illicit activities and is forcefully seized and taken back into governmental custody, returning to NYC in time for the Second Sino-Japanese War.
  1887.  
  1888.  
  1889. <br><br>
  1890.  
  1891. <a href="/tagged/( T | the phoenix scorching (world war ii]"><b>WW2</b></a>
  1892. <img src="https://68.media.tumblr.com/bf00f9cbeab49c3cd8cf9772bc66cb30/tumblr_inline_ok2xz8nxNj1urghje_540.png" align="left" style="height:85px;width:85px;padding-right:5px;padding-bottom:0px;">
  1893.  
  1894.  
  1895. <br>
  1896.  
  1897. Neither war could’ve possibly prepared him for this. First sent to Manchuria to protect Allied interests, it then culminates to almost a whole decade of fighting within the Asian Theater alone, destroying Nazi footholds as well as general warfare. By 1940 he’s transferred to the European front, spending much time on the battlefield as well as liberating concentration camps near its end as well as sweeping clean up efforts.
  1898.  
  1899.  
  1900. <br><br>
  1901.  
  1902. <a href="/tagged/( T | the phoenix doused (the cold war]"><b>The Cold War</b></a>
  1903. <img src="https://68.media.tumblr.com/c280564e82ac12974fb726f88291e4ad/tumblr_inline_ok2xz8SllD1urghje_540.png" align="left" style="height:85px;width:85px;padding-right:5px;padding-bottom:0px;">
  1904.  
  1905.  
  1906. <br>
  1907.  
  1908. A time when Russia was gaining immense strides in power, forming a Comintern with Eastern European countries as part of the Soviet Bloc, as well as with other Communist nations emerging from the rubble of the Second World War. The earliest years are spent dealing with neo-Nazis, while it eventually culminates to Vlad fighting extensively in the Korean War, the time in-between being spent to eliminate factions of old enemy powers still present within Asia, inclusive of the Vietnam War that begins but years after the Korean War where the greatest of his focus is placed--fighting there for all twenty-five years that it's waged.
  1909.  
  1910.  
  1911. <br><br>
  1912.  
  1913. <a href="/tagged/( T | the abyss general balaur (the second cold war]"><b>The Second Cold War</b></a>
  1914. <img src="https://68.media.tumblr.com/cd5e4974eb27fad071e29002830f09b6/tumblr_inline_ok2xz8g3Sg1urghje_540.png" align="left" style="height:85px;width:85px;padding-right:5px;padding-bottom:0px;">
  1915.  
  1916.  
  1917. <br>
  1918.  
  1919. During the later period of the Cold War saw Vlad being stationed in Afghanistan for the first time under American jurisdiction, a move long held as the English saw him as a waning prospect as far as weaponization came. He fought there for another seven years, though eventually was withdrawn for fear of him being captured by the Soviets and used against them. It brought what was likely the longest spell of peace Vlad would experience in almost a century.
  1920.  
  1921.  
  1922. <br><br>
  1923.  
  1924. <a href="/tagged/( T | the abyss general kaspar (modern]"><b>Modern</b></a>
  1925. <img src="https://68.media.tumblr.com/58510f5d98efff92d3bdc1a86ba4d527/tumblr_inline_ok2xz6aeBx1urghje_540.png" align="left" style="height:85px;width:85px;padding-right:5px;padding-bottom:0px;">
  1926.  
  1927.  
  1928. <br>
  1929.  
  1930. After returning to America, this time period sees him being stationed at the United States Department of Defense where his contract is expanded to private use for whomever requires him–those predominantly being as an elite soldier part of the Marines, Navy, Military, or Air Force; or, in peacetime, living in New York City, and given limited probation and even a modest stipend. With the Seal of Solomon still holding strong, control of him is often simple, though sometimes broken. Occasionally, he abandons them to defect to the Scholomance where he’ll utilize portals to travel throughout time and even to other worlds.
  1931.  
  1932.  
  1933. <br><br>
  1934.  
  1935. <a href="/tagged/( T | the abyss general iblis (after modern]"><b>Post-Modern</b></a>
  1936. <img src="https://68.media.tumblr.com/199aa8c89de01bd7085ba84fa383fe69/tumblr_inline_oluxhpT7L21urghje_540.jpg" align="left" style="height:85px;width:85px;padding-right:5px;padding-bottom:0px;">
  1937.  
  1938.  
  1939. <br>
  1940.  
  1941. Set after an unknown period of time, Vlad has managed to wrest control from his captors and regain control of himself, seizing the Seal of Solomon--now worn upon his ring finger--and becoming a fully fledged Solomonar that has since fled into the magical wilds of the world. He often seeks to travel between realms, regaining his magic and taking on students to join the Scholomance that he teaches alongside his fellow nine Solomonari. Sometimes, he does visit his family in the city or wherever they choose to dwell, but not for long. Like the legend he grew to become, he fully indulges in his pagan & magical existence, never seeking to return to what once was, moving between the fae, forested realms of the worlds and accruing magic, even fighting demonic threats as he is able. <b>This is his main verse.</b>
  1942.  
  1943.  
  1944. <br><br>
  1945.  
  1946.  
  1947.  
  1948. </li>
  1949. <li>
  1950.  
  1951.  
  1952. <a href="/tagged/( V | kingsglaive ]"><b>Kingsglaive</b></a>
  1953. <img src="https://68.media.tumblr.com/235dcb6700c7dc56f70d3e07abe77dad/tumblr_inline_ohl6ezBjfz1urghje_540.png" align="left" style="height:85px;width:85px;padding-right:5px;padding-bottom:0px;">
  1954.  
  1955.  
  1956. <br>
  1957.  
  1958. Inclusive of Final Fantasy XV in its entirety, Vlad was once a former Lord--or Hospodar--of the distinguished House of the Dragon, of House Basarab, an ancient house that once existed in Solheim but was annhilated by Niflheim. Vlad's parents are eventually killed, and after his father breaks a peace treaty with them, and his eldest brother is killed in a secret attack against them. Vlad and Radu are taken as hostages to be experimented on. While Radu perishes, Vlad is forcibly bonded with a draconian daemon and narrowly survives. Though originally intended to be turned into a weapon, he narrowly escapes with his life and seeks asylum in Lucis--as of six hundred years ago. Joining the Kingsglaive after careful scrutiny, Vlad becomes a glaive with the self-stylized codename of the "Varangian" and becomes a bodyguard of the royal family due to his former status as a Lord.
  1959.  
  1960.  
  1961. <br><br><br>
  1962.  
  1963.  
  1964. <a href="/tagged/( V | vesuvius ]"><b>Vesuvius</b></a>
  1965. <img src="https://68.media.tumblr.com/e1e7415e692d0d34b12b67581af9ea05/tumblr_inline_ok2xo1OGCd1urghje_540.png" align="left" style="height:85px;width:85px;padding-right:5px;padding-bottom:0px;">
  1966.  
  1967.  
  1968. <br>
  1969.  
  1970. An extraordinary amalgamation and ultimately rare union of the god Scrios and the angel Codagh, Vlad is the byproduct of this rare union and from here, knew only a life of devotion and loyalty to his father, Scrios. Heading and creating several major cults, in utter defiance and condemnation of the major religions outside these. Bearing a draconian form known as Zaunigkul, Vlad swiftly rose to prominence at a young age with successive many deferring to him as Scrios’ son and yielding to his leadership in absolution. For many centuries he lived contently from his pedestal in the shadows, garnering power and acolytes until the rise of the Empress Ifritah. With the Empress rising to great prominence, his folk were threatened until the coming of the Herald of Scrios whom sought to threaten its Harbinger. With Vlad’s power precariously threatened, all the Dragon can hope to do is defend himself and what remains of his cults against the Herald and his master in the Empress. (Vesuvius is property of <i><a href ="http://jehennam.tumblr.com">Hades</a></i> and <i><a href ="http://acxlyte.tumblr.com">Blair</a></i>.]
  1971.  
  1972.  
  1973. <br><br><br>
  1974.  
  1975. <a href="/tagged/( V | elder scrolls ]"><b>Elder Scrolls</b></a>
  1976. <img src="https://66.media.tumblr.com/71bad5741c49e1494476cfd49a6aab94/tumblr_inline_ob6nu17fnO1stnv89_540.png" align="left" style="height:85px;width:85px;padding-right:5px;padding-bottom:0px;">
  1977.  
  1978.  
  1979. <br>
  1980.  
  1981. Zaunigkul, the Devil’s Son—an ancient dov one of the first of Akatosh and brother to Alduin, the World Destroyer. Son of the Devil, as he’s known, as among the cruelest of those whom ruled. He, alongside Alduin, were tyrants who ruled over the humans and mer with utmost cruelty and mercilessness. However, when the ancient nords learned the Voice, they eventually arose against their masters and rebelled in what would culminate as the great Dragon Wars. Zaunigkaul fought ferociously alongside Alduin, but after Alduin was lost to time itself, Zaunigkaul was slain by one of the heroes of old and his soul relinquished to the realms of Oblivion. However, his soul showed extreme strength and tenacity. He fed on the souls of others absorbed many for himself, soon building enough and harnessing enough magic that he could assimilate a body; not of a human or a dov; something truly twisted and trapped between the two. With a dov’s maw and eyes of burning titian, it would be believed, then, that he’d become a vampire. For in order to ascend into the realm of Nirn, Zaunigkul needed a means in which to do it. Canvassing Oblivion in his new form, the Son of the Devil and Dragon came upon Malog Bol in the procession of a ceremony which was being undertaken by a newly ordained virgin in the Daughters of Coldharbour. Interceding, Zaunigkul latched on the neck of Molag Bal and drank heavily from him, the reincarnated dov tasting it for the first time. And it would be enough, as he finally solidified his form enough that the Dracul could manifest for good into the realm of Tamriel, and with impeccable timing. For it would be the year 201 of the Fourth Era. In it, he is searching for Alduin to serve once more and to defame the Dragonborn at whatever cost.
  1982.  
  1983.  
  1984. <br><br><br>
  1985.  
  1986. <a href="/tagged/( V | assassin's creed ]"><b>Assassin's Creed</b></a>
  1987. <img src="https://68.media.tumblr.com/48c3ad13315d86dfbde9bb06144d368c/tumblr_inline_ok2ye10s4g1urghje_540.png" align="left" style="height:85px;width:85px;padding-right:5px;padding-bottom:0px;">
  1988.  
  1989.  
  1990. <br>
  1991.  
  1992. Vlad III Tepes (November or December 1431 - December 1476), also known by the title of Vlad the Impaler; his birth name, Vlad Draculesti; and the patronymic name Dracula, was a Voivode (Warlord) of Wallachia who ruled the region intermittently from 1448 to 1476. As a member of the Templar Order, Vlad Tepes played a significant role in the Order’s fight against the Ottoman Empire. For the most part, he was the one instigated and carried out the war between the Assassins and Templars and wrenched it from the shadows. He was integral in spearheading the Templar’s efforts in combating the Assassins to the point of monumental War. It is during this time, between the years 1459 to 1476. However, in 1476, Vlad was defeated by Ishak Pasha, the Ottoman Grand Vizier and, incidentally, the leader of the Ottoman Assassins; shortly thereafter, he died. Following his demise, Vlad’s decapitated head was brought back to Constantinopleas a trophy, and together with his sword, deposited in a specially made prison just outside the Constantinian Walls. The sword was eventually recovered by the Mentorof the Italian Assassins, Ezio Auditore da Firenze, in 1511. However, following his death at the hands of Ishak Pasha, Vlad is turned into a vampire and goes on to become the infamous Count Dracula. Disllusioned by the Templars, he joins the Assassins as an assassin, and with it, brings his supernatural prowess along. Aligned to the Brotherhood, Dracula works in the dark to serve the light.
  1993. <p>In 2012, his genetic memories were used as an Animi Avatar by the Templar company Abstergo Industries, for the second stage of training for the recruits in their Animi Training Program, under the title of the Count. In this day and age, Vlad has become a turncoat. For with the missing genetic information, likely taken from one of his only surviving descendants, valuable information from his past is within that databank–and frankly put, the Impaler as Vlad is highly displeased by Abstergo’s actions. Siding in this life with the Assassins, he does what he can to help them in their efforts against Abstergo, whatever it might be.
  1994.  
  1995.  
  1996. <br><br><br>
  1997.  
  1998. <a href="/tagged/( V | dragon age ]"><b>Dragon Age</b></a>
  1999. <img src="https://68.media.tumblr.com/7955f1eb43c85f04bedab94934d1d0b2/tumblr_inline_ok2yetkdaV1urghje_540.png" align="left" style="height:85px;width:85px;padding-right:5px;padding-bottom:0px;">
  2000.  
  2001.  
  2002. <br>
  2003.  
  2004. By the wiles of a portal in the Scholomance, Vlad is whisked away to another world. Thedas is this place, old bearing traces of his own past. Taking the time to travel and appreicate the place for what it is worth, learning its cultures and tailoring from them an identity that suits him, Vlad decides against leaving immediately. There is knowledge to gained and a school he wishes to restore: the Scholomance that had been derelict for centuries. Where magic is strong, he chooses to relearn what he’s known, to attain knowledge from its Circles and Apostates, and gradually become the Solomonari he hadn’t been in centuries. What sides he’ll choose to take in the sides of many conflicts, however, remains at large and to be seen.
  2005.  
  2006.  
  2007. <br><br><br>
  2008.  
  2009. <a href="/tagged/( V | bioshock infinite ]"><b>Bioshock: Infinite</b></a>
  2010. <img src="https://68.media.tumblr.com/0aa769052c7f213a7e3dd5a456eca104/tumblr_inline_ok2ybpNmQZ1urghje_540.png" align="left" style="height:85px;width:85px;padding-right:5px;padding-bottom:0px;">
  2011.  
  2012.  
  2013. <br>
  2014.  
  2015. Columbia is a world above the sinful blight of America below, removed from the perjury and sinfulness that it is. Through the sciences developed by the Luteces, Zachery Comstock whom is baptised into an awakening, founds the floating city of Columbia meant to be a holy and pure haven of Christiandom far removed and sanctified. During its earliest years, Count Dracula came to Columbia posing as a Pilgrim and sought to destroy and corrupt the city, though is ultimately stopped and narrowly destroyed. However, through the use of holy rites, Dracula is bound to Columbia to serve as its protector. A secret weapon used only in times of great need, he becomes a formidable enemy against the Vox Populi and keeps much of their antagonisms at bay and from the public eye. However, Booker’s coming to Columbia changes everything, and Dracula manages to free himself. Once that is so, he uses all abilities in his repertoire to bring his former masters into utter ruin, hoping to lead Columbia into a disgraced fall.
  2016.  
  2017.  
  2018. <br><br><br>
  2019.  
  2020. <a href="/tagged/( V | bioshock 1 & 2 ]"><b>Bioshock: 1 & 2</b></a>
  2021. <img src="https://68.media.tumblr.com/899e97efd2f590b4063bc304bc94d1c3/tumblr_inline_ok2yaxgqKr1urghje_540.png" align="left" style="height:85px;width:85px;padding-right:5px;padding-bottom:0px;">
  2022.  
  2023.  
  2024. <br>
  2025.  
  2026. Rapture is the paradise beneath the Atlantic, the underwater utopia where man only serves himself and none else. It is here that Vlad, once property of the Department of Justice, was smuggled out years ago and lives as a laboratory experiment hidden away from the Medical Pacilion. His blood is routinely experimented on and some of his powers replicated into Plasmids, as well as some infusions of ADAM. However, once disaster strikes, though he doesn't become a Splicer he unleashes an overwrought revenge and attacks those denizens of Rapture, killing splicers and taking Little Sisters under his wing for protection.
  2027.  
  2028.  
  2029. <br><br><br>
  2030.  
  2031. <a href="/tagged/( V | bloodborne ]"><b>Bloodborne</b></a>
  2032. <img src="https://68.media.tumblr.com/7cc699c82bf1771f12da77cb7be40936/tumblr_inline_ok2xokdokc1urghje_540.png" align="left" style="height:85px;width:85px;padding-right:5px;padding-bottom:0px;">
  2033.  
  2034.  
  2035. <br>
  2036.  
  2037. (<i>Build:</i> Wears the Knight’s garb, Bone Ash trousers, and Old Hunter gloves. Wields the Beast Cutter and Evelyn.]
  2038. <p>What began as in inquiry into the status of Yharnam, a private endeavor conducted by the English government, which became heavily piqued by the city plagued. The man whom was an occultist at heart was perplexed, but nonetheless intrigued. Privately did the Professor wish toinvestigate and survey the city, its threat perceived as an immanent one that could threaten the whole of Great Britain should it not be assauged and swiftly. The mission was simple: infiltrate Yharnam by any means necessary, record what was occuring, and return before further action might be taken. Yet, it didn’t exactly pan out that way. For the count still existed in Vlad, and no amount of conditioning by his superiors could change that. Upon happening on the truth of Yharnam, acclimating himself and becoming one of the hunters, an old ambition blossomed and Vlad thought, why not take control of the beasts and city and work to free those humans that did remain? To satisfy the old vengeance denied when Van Helsing and the Band of Heroes bested him but years before. To do so in a way that would not breach his master’s aim and bring a threat upon himself. And yet, in coming to know those in Yharnam, hunters and enemies and denizens alike, a rare bout of human compassion might emerge and he would seek to save them and it and end the Dream for good.
  2039.  
  2040.  
  2041. <br><br><br>
  2042.  
  2043. <a href="/tagged/( V | dark souls ]"><b>Dark Souls</b></a>
  2044. <img src="https://68.media.tumblr.com/446e38baffa0eb7fec2acb37b8fde99a/tumblr_inline_ok2xowEQqX1urghje_540.png" align="left" style="height:85px;width:85px;padding-right:5px;padding-bottom:0px;">
  2045.  
  2046.  
  2047. <br>
  2048.  
  2049. (<i>Build:</i> The Dragon Slayer leggings, the Fallen Knight armor, Black leggings, and Billed Mask. Wields the Dancer’s Enchanted Swords.]
  2050. <p>Before the complete decimation of Lothric at the failing of the Flame, there were more prosperous times once. When the king had yet to be bastardized by his own experiments and the prince yet failed of his task to become Lord of Cinder. The Scholomance was a dark magic school set within a realm otherwise, able to traverse to others at the behest of its master. During Dracula’s years as a Solomonary among his schoolfellows, there came a day when they had sought to explore Lothric. Unaware of the Abyss that had come to corrupt parts of it, they unwittingly passed through, one of their students left behind. That student was Dracula and he came corrupted to a degree, locked within Lothric. Once there, however, he did not yet squander himself. Instead, his travails led him to Lothric where he petitioned the king, Oceiros–despite enormous trepidation–to allow him in his court to serve. Thus, he was consigned to the Grand Archives to serve his purpose there. For what seemed centuries he did, until the world wasted away. Seeing that Lothric was rapidly falling into ruination, the Flame seeking a new Lord, Dracula abandoned the Archives and set out to find either a new sense of purpose, or a new means of returning home.
  2051.  
  2052.  
  2053. <br><br><br>
  2054.  
  2055.  
  2056. <a href="/tagged/( V | harry potter ]"><b>Harry Potter</b></a>
  2057. <img src="https://68.media.tumblr.com/aeba4999cb4761568fb9114c54e20f71/tumblr_inline_ok2xq2y3ac1urghje_540.jpg" align="left" style="height:85px;width:85px;padding-right:5px;padding-bottom:0px;">
  2058.  
  2059.  
  2060. <br>
  2061.  
  2062. During the many centuries in between Vlad's exacted revenge taken upon Satan for past ills, he takes the helm of the dark magic school, the Scholomance, in Sibiu of Romania where he builds a reputation for it. The school is notable for being a haven for dispossessed and refugee wizards seeking asylum and to master darker arts. A school that is beyond the jurisdiction of any magical governing power, a rogue school, it is known for producing Dark Wizards and Witches manifold as well as being an impossibly well-hidden sanctuary for criminals seeking to escape places such as Azkaban. In spite of its seemingly criminal alignment, it also serves as a haven for persecuted magic minorities or any race. The school is known for its strict neutrality and has no ceiling for entry or exiting ages, saying that all students learn what they wish and can do with their knowledge whatever they please. It spite of this, and its aloofness from the mainstream wizarding communities, the Scholomance has been extant for centuries with Vlad serving as its headmaster.
  2063.  
  2064.  
  2065. <br><br><br>
  2066.  
  2067. <a href="/tagged/( V | ouat ]"><b>Once Upon a Time</b></a>
  2068. <img src="https://66.media.tumblr.com/c728a6277a4a9a7ceedf6828c991b8f0/tumblr_inline_oewt8yUOo71urghje_540.png" align="left" style="height:85px;width:85px;padding-right:5px;padding-bottom:0px;">
  2069.  
  2070.  
  2071. <br>
  2072.  
  2073. Before the curse was lifted, Count Dracula was entrapped in the little town of Storybrooke as all of its denizens are. Mind erased, here he is known as the eccentric Doctor Vlad Aron, an anemic doctor who works in the ER and takes a graveyard shift at the General Hospital's blood bank. Once he does regain his memories and power, however, he contrives to become one of the more powerful players in Storybrooke's tapestry and tends towards siding with the more nefarious of its folk--that is, unless his heart is able to be turned around.
  2074.  
  2075.  
  2076. <br><br><br>
  2077.  
  2078. <a href="/tagged/( V | potc ]"><b>Pirates of the Caribbean</b></a>
  2079. <img src="https://68.media.tumblr.com/6c519a1c584cf84dce2e9a39f1025422/tumblr_inline_ok2yffwhKO1urghje_540.png" align="left" style="height:85px;width:85px;padding-right:5px;padding-bottom:0px;">
  2080.  
  2081.  
  2082. <br>
  2083.  
  2084. Between the years of his first reign and exile from Wallachia, Vlad lived more as an exile than a man to inherit a throne. From living with Bogdan within Moldavia with his cousin, Stephen, until the man was assassinated and both cousins were forced into exile together in Hungary under the Hunyadis. Unsatisfied, both young princes eventually fled from Romania due to pressures of the Porte. Finally reaching the coast of the Black Sea, they signed on as sailors and eventually rose into great prestige battling against Ottoman interests as pirates. Vlad, especially rose to great prestige by becoming Vlad Tepes, Vlad the Spike, for his methods of impalement used upon enemies slain by him. Vlad eventually fell under the radar of Hayreddin Barbarossa and was sent to dispatch the young Wallachian warlord of the sea. Sailing alongside his cousin, Stephen, as brothers-in-arms, together they strive to destroy Ottoman suzereinity of the seas and liberate it and their home from the clutches of the Sultan.
  2085.  
  2086.  
  2087. <br><br>
  2088.  
  2089.  
  2090. </li>
  2091. <li>
  2092.  
  2093. <a href="/tagged/( AU | we made a night for ourselves ]"><b>our night</b></a>
  2094. <img src="https://68.media.tumblr.com/8e81859d346538d6ac0b472ed143f753/tumblr_inline_ol0mxwu0Ab1urghje_540.jpg" align="left" style="height:85px;width:85px;padding-right:5px;padding-bottom:0px;">
  2095.  
  2096.  
  2097. <br>
  2098. (Closed with <a href="http://moartexinchisrosu.tumblr.com"><i>moartexinchisrosu</i></a>]
  2099.  
  2100. <p>Found within a stormy night on the Borgo Pass, the Count's meeting with Ukara was an unexpected one. Whatever begun from it spiraled into one of abject fascination, then into obsession. Dracula took the younger vampiress under his wing, and wishes to make her his own with all the dark fascination and possession the King of Vampires can bequeath.
  2101.  
  2102.  
  2103. <br><br><br>
  2104.  
  2105. <a href="/tagged/( AU | we were eye & storm ]"><b>eye & storm</b></a>
  2106. <img src="https://66.media.tumblr.com/5be8b52f97b01261916946349a8a8c1c/tumblr_inline_obab5z08AO1stnv89_540.png" align="left" style="height:85px;width:85px;padding-right:5px;padding-bottom:0px;">
  2107.  
  2108.  
  2109. <br>
  2110. (Closed with <a href="http://pirouctte.tumblr.com"><i>pirouctte</i></a>]
  2111.  
  2112. <p>It is by a chance encounter that Vlad finds and saves the life of Evie, a NYC soloist ballerina. What begins is a fledgling encounter that blooms into something deep and obssessive; a love that better befits beasts in its control. He wishes to take her, mold her, make him his other half. A woman who is the perfect, feminine complement to his masculine self.
  2113.  
  2114.  
  2115. <br><br><br>
  2116.  
  2117. <a href="/tagged/( AU | amaryllis bloom ]"><b>Amaryllis Bloom</b></a>
  2118. <img src="https://66.media.tumblr.com/8e81859d346538d6ac0b472ed143f753/tumblr_inline_obab5zQSnF1stnv89_540.jpg" align="left" style="height:85px;width:85px;padding-right:5px;padding-bottom:0px;">
  2119.  
  2120.  
  2121. <br>
  2122.  
  2123. (Closed with <a href="http://osaelligr.tumblr.com"><i>osaelligr</i></a>]
  2124.  
  2125. <p>
  2126.  
  2127. In the years precluding his attainment by the Department of Justice, Vlad met the Norse god Loki. What began as an affair escalated to them being mated and together for over thirty years and counting, residing in the newly acquired kingdom of Asgard where Loki rules as king with Vlad as his consort.
  2128.  
  2129.  
  2130. <br><br><br>
  2131.  
  2132. <a href="/tagged/( AU | we could open the gates of hell together ]"><b>the gates of hell</b></a>
  2133. <img src="https://68.media.tumblr.com/337b8e4528301de111e3d7dc47d50344/tumblr_inline_ogzpexabDT1urghje_540.png" align="left" style="height:85px;width:85px;padding-right:5px;padding-bottom:0px;">
  2134.  
  2135.  
  2136. <br>
  2137.  
  2138. (Closed with <a href="http://fractusaniima.tumblr.com"><i>fractusaniima</i></a>]
  2139.  
  2140. <p>
  2141.  
  2142. Two people who conspired against the devil and contrived to cheat their fates meet on a dark, stormy night. Vera had been intended for capture, to exploit her abilities and use her as a sacrifice. But, Vlad found her. And rescued her. Seeking to cheat the hands they'd been dealt, Vlad takes her under his protection and finds himself invariably falling in love with the woman, she in kind, and both of them living in quiet secrecy with one another and weathering the worst together.
  2143.  
  2144.  
  2145. <br><br><br>
  2146.  
  2147. <a href="/tagged/( AU | a promised land ]"><b>A Promised Land</b></a>
  2148. <img src="https://66.media.tumblr.com/af75c98d7c83f54c3b89c4bedb402aa4/tumblr_inline_obab64yvgb1stnv89_540.jpg" align="left" style="height:85px;width:85px;padding-right:5px;padding-bottom:0px;">
  2149.  
  2150.  
  2151. <br>
  2152.  
  2153. (Closed with <a href="http://warbiitch.tumblr.com"><i>warbiitch</i></a>]
  2154.  
  2155. <p>
  2156.  
  2157. In Midland, Vlad Dracula meets a mysterious woman known only to him as Casca. Though their relationship entails trepidation on the Impaler's part and healing on hers, it prolongs into her becoming empress of a newly rejuvinated Kushan Empire with him as her prince.
  2158.  
  2159.  
  2160. <br><br><br>
  2161.  
  2162. <a href="/tagged/( AU | the bridge is crossed ]"><b>stand and watch it burn</b></a>
  2163. <img src="https://68.media.tumblr.com/a5a78c30704085de1ddfe2ef093b5adf/tumblr_inline_ok2x3fVpCy1urghje_540.jpg" align="left" style="height:85px;width:85px;padding-right:5px;padding-bottom:0px;">
  2164.  
  2165.  
  2166. <br>
  2167.  
  2168. (Closed with <a href="http://sukkubxs.tumblr.com"><i>sukkubxs</i></a>]
  2169.  
  2170. <p>
  2171.  
  2172. In a Phantom of the Opera AU, Cäcilia Drachen is a promising German songress of the French Opera Populaire. Taught by an immortal teacher, when her acclaim rises higher, he cannot hide his desire nor jealously any longer and wishes to have her for his own.
  2173.  
  2174.  
  2175. <br><br><br>
  2176.  
  2177. <a href="/tagged/( AU | in the dark of the night ]"><b>the dark night</b></a>
  2178. <img src="https://68.media.tumblr.com/42a9fb9842ae79f55f0ee7939cf4d962/tumblr_inline_ok2x3fewKa1urghje_540.png" align="left" style="height:85px;width:85px;padding-right:5px;padding-bottom:0px;">
  2179.  
  2180.  
  2181. <br>
  2182.  
  2183. (Closed with <a href="http://sukkubxs.tumblr.com"><i>sukkubxs</i></a>]
  2184.  
  2185. <p>
  2186.  
  2187. In industrializing England, Count Dracula meets a fate dissimilar to the ending of Dracula. The count is almost on cordial terms with Van Helsing, the man in the early years of working out the beginnings of Seward & Godalming Ltd., the company figureheading an underground medical facility dedicating to researching the vampire with him as an experiment. Cäcilia Drachen is a young woman with a brilliant aptitude for politics who is engaged; yet, when she and the Count meet, innocuous flirtations take a turn for the darker, more sensuous. And yet, over a century later, she discovers what has occurred to him with DAIS and the DoD and wishes to unleash a vengeance that will ultimately earn him his freedom.
  2188.  
  2189.  
  2190. <br><br><br>
  2191.  
  2192. <a href="/tagged/( AU | rome didn't burn in a day ]"><b>a burning rome</b></a>
  2193. <img src="https://66.media.tumblr.com/5be8b52f97b01261916946349a8a8c1c/tumblr_inline_obab5z08AO1stnv89_540.png" align="left" style="height:85px;width:85px;padding-right:5px;padding-bottom:0px;">
  2194.  
  2195.  
  2196. <br>
  2197.  
  2198. (Closed with <a href="http://judgmentcast.tumblr.com"><i>judgmentcast</i>, other Hunchback muses</a>]
  2199.  
  2200. <p>
  2201.  
  2202. The year is 1482 in Paris, France. It is the first time Count Dracula has ventured so far west into Europe, a fledgling eager to excise his new and terrible powers. Encountering the corrupt Judge Frollo of the Notre Dame, Dracula leagues himself with Parisian Rroma in a collaborative effort to take down the corrupt judge with Dracula to savor in the chaos above all else.
  2203.  
  2204.  
  2205. <br><br><br>
  2206.  
  2207. <a href="/tagged/( AU | the dead travel fast ]"><b>dead travel fast</b></a>
  2208. <img src="https://68.media.tumblr.com/4c6681f0535f619ee7dfa2f3b961ba4d/tumblr_inline_ok2x3fkVAK1urghje_540.jpg" align="left" style="height:85px;width:85px;padding-right:5px;padding-bottom:0px;">
  2209.  
  2210.  
  2211. <br>
  2212.  
  2213. (Closed with <a href="http://retributor.tumblr.com"><i>retributor</i></a>]
  2214.  
  2215. <p>At the advent of his new beginning, Count Dracula discovers and makes a fledgling of Edmond Dantes, seeking to see where his own want to glory would take him. Turning him, they reunite many years later and forge a plan to take over France, before reuniting as fast friends again the modern day.
  2216.  
  2217.  
  2218. <br><br><br>
  2219.  
  2220. <a href="/tagged/( AU | the vegas strip ]"><b>The Vegas Strip</b></a>
  2221. <img src="https://68.media.tumblr.com/e61f49d8642e3e170df56076511eb9b0/tumblr_inline_oewt8znlWt1urghje_540.png" align="left" style="height:85px;width:85px;padding-right:5px;padding-bottom:0px;">
  2222.  
  2223.  
  2224. <br>
  2225.  
  2226. (Closed with <a href="http://rvnin.tumblr.com"><i>rvnin</i></a>]
  2227.  
  2228. <p>
  2229.  
  2230. A strange amalgamation of vampire and synth, Vlad's body was kept within one of the many vaults for over two centuries before being reanimated at the behest of the Institute. Infusing him with synth nanotechnology, he bonds extraordinarily well and becomes something unprecedented. However, in New Vegas, Vlad is under the control of the Legion and is sought as a valuable tool in their many power ploys.
  2231.  
  2232.  
  2233. <br><br><br>
  2234.  
  2235. <a href="/tagged/( AU | eye of the winter storm ]"><b>Eye of the Winter Storm</b></a>
  2236. <img src="https://68.media.tumblr.com/24f5b4cfcc39391d5c0dbfaabf5386f1/tumblr_inline_ok2x3fvkGc1urghje_540.png" align="left" style="height:85px;width:85px;padding-right:5px;padding-bottom:0px;">
  2237.  
  2238.  
  2239.  
  2240. <br>
  2241.  
  2242. (Closed with <a href="http://eyesofwater.tumblr.com"><i>eyesofwater</i></a>]
  2243.  
  2244. <p>In the mid-1400’s, Vlad barely escapes the biting consequences of a scandal involving his treason against his allegience with Matthias and was doomed to be taken prisoner in Hungary. However, it is staunched through taxing efforts of Japanese pilgrims seeking alliances to the West in order to combat the Golden Hoarde that constantly posed threat to Japan. With his abilities and intimate knowledge of fighting tactics of even the far east, Vlad is taken into asylum on the condition of loaning his expertise and serving the shogun faithfully. In return, he and his children would be able to join him whilst a local daimyo would promise marriage to his daughter, Sayuri, in order to help him better assimilate into his new life.
  2245.  
  2246.  
  2247.  
  2248. <br><br><br>
  2249.  
  2250. <a href="/tagged/( AU | a temple destroyed in your name ]"><b>a temple destroyed</b></a>
  2251. <img src="https://66.media.tumblr.com/1c4188b11689cd0cf8609f5cf441954c/tumblr_inline_obab64fIG51stnv89_540.jpg" align="left" style="height:85px;width:85px;padding-right:5px;padding-bottom:0px;">
  2252.  
  2253.  
  2254. <br>
  2255.  
  2256. (Closed with <a href="http://breniatham.tumblr.com"><i>breniatham</i></a>]
  2257.  
  2258. <p>Coming to the land of Middle Earth following a mishap with a portal in the Scholomance, the Nosferatu is unable to return and is stranded in Middle Earth. While wandering, he comes upon the Mirkwood by pure chance, this being the first locale he happens upon. While there, he meetsThranduil, the Elvenking and the two form a strange acquaintanceship. From there, he becomes aware of another threat, Sauron, whom will come to endanger them all. That is, unless Vlad can do something to stop it.
  2259.  
  2260.  
  2261. <br><br><br>
  2262.  
  2263. </li>
  2264. </ul>
  2265.  
  2266.  
  2267. </div>
  2268. </div>
  2269.  
  2270.  
  2271.  
  2272. <div id="box4" class="popup_block">
  2273.  
  2274. <div style="width:auto;height:400px;overflow:scroll;padding:5px;">
  2275.  
  2276. <h3>I. ( Basic Information. ) </h3><blockquote><p><small><b>Full Name: </b>
  2277.  
  2278. Wladislaus Dragwlya, vaivoda partium Transalpinarum | Vlad III Draculea of the Drăculeşti, Count Dracula, Vlad, Lucia (in female form]
  2279.  
  2280. </small></p><p><small><b>Titles: </b>Calesvol, the Haserot Angel, the Dragon, Prince of Darkness, Son of the Most Low, the Abyss General. the Monster of monsters, Hospodar, Basileus</small></p></small></p>
  2281.  
  2282. <p><small><b>Nicknames: </b> Vladdy, Drac, Lucille, Lucy, Lulu, Lu</small></p>
  2283.  
  2284. <p><small><b>Species: </b>Proginator of the Dracul race</small></p>
  2285.  
  2286. <p><small><b>Age: </b>586 (as of November 21st, 2016; turned at 27]
  2287.  
  2288. </small></p><p><small><b>Date of Birth:</b> November 21st, 1431</small></p>
  2289.  
  2290. <p><small><b>Ethnicity: </b>2/4 Vlach, 1/4 Moldovan, 1/4 Lom Rromani
  2291.  
  2292. </small></p><p><small><b>Nationality: </b>Romanian (has American citizenship]</small></p>
  2293.  
  2294. <p><small><b>Gender: </b><i><a href="http://vampire.monar.ch/post/148252255725/Vlad-on-the-gender-spectrum-identifies-as">Bigender</a> (male + female]</i>
  2295.  
  2296. <p><small><b>Pronouns: </b>He/Him (She/her when shapeshifted to a woman]</small></p>
  2297.  
  2298. <p><small><b>Orientation: </b>Demiromantic, Demisexual (leans more towards similar gender attraction]</small></p>
  2299.  
  2300. <p><small><b>Kinsey Scale: </b>4</small></p>
  2301.  
  2302. <p><small><b>Marital Status: </b>Windowed</small></p
  2303.  
  2304. <p><small><b>Political Affiliation: </b>Anarchist</small></p>
  2305.  
  2306. <p><small><b>Occupation: </b>Grand Master of Scholomance (currently], vagabond, indentured soldier/weapon under American jurisdiction</small></p>
  2307.  
  2308. <p><small><b>Past Occupation: </b>Prince of Wallachia, Student at the Scholomance, Count of Transylvania</small></p>
  2309.  
  2310. <p><small><b>Living Arrangements: </b>Is nomadic across the Balkans and throughout the Levant, but visits his family in NYC frequently</small></p>
  2311.  
  2312. <p><small><b>Hometown: </b>Sighișoara, Romania</p>
  2313.  
  2314. </small></p><p><small><b>Current Location: </b>Istanbul, Turkey</small></p>
  2315.  
  2316. <p><b>Financial Status: </b>Impoverished, dependent<br></small></p>
  2317.  
  2318. <p><small><b>Religion: </b>Formerly Romnaian Orthodox & Roman Catholic, currently Dacian Pagan
  2319.  
  2320. <p><small><b>Language(s) Known: </b>Romanian, Greek (Classic + Modern], Romanes (Carpathian dialect], Lomavren, Crimean, Farsi, Arabic (Classic + Modern], Osmanlica & Modern Turkish, Hebrew, English, Chinese, Japanese, Enochian, Draconian</small></p>
  2321.  
  2322. <p><small><b>Language(s) Forgotten: </b>Wallachian, Old Church Slavonic, German, Hungarian, Latin, Cyrillic</small></p>
  2323.  
  2324. <p><small><b>Instruments known: </b>Guitar (electric & acoustic], violin, Nai (Romanian panpipes], Cobza (Romanian lyre], Ney (Turkish flute], Ocarina</small></p>
  2325.  
  2326. </p><p><small><b>Battle Implements: </b>Either he will wield <a href="http://67.media.tumblr.com/tumblr_m5kfl6OFOX1rrjmgoo1_1280.jpg"><i>his sword</i></a> or <i><a href ="http://vampire.monar.ch/post/148252452305/Vlad-always-had-a-great-capacity-for-majick">his majick</a></i>, or he will utilize his various abilities listed below. He's proficient with MMA and boxing for close quarters combat. He also wears the Seal of Solomon that gives him complete control over demonkind.</small></p>
  2327.  
  2328. <p><small><b>Physical Appearance: </b>Vlad is a monster whom bears a visage fairly squared in shape, adorned with high and prominent cheekbones, large and expressive chatoyant eyes hued in an embodied forest green, though becomes an inferno when his powers are in use; a fairly normal nose, full and sensuous lips bearing a Cupid’s bow shape, though the fangs are not a pair but a whole mouth's worth, alike a dragon in appearance, sharpness and shape, and property with all being sharp but the four canines being the largest and sharpest of them. Slim brows frame eyes ringed by deep bags and shadows that add an element of exhaustion and sinister air, his expression usually enigmatic and fey or vigorously predatorial by default as well as sometimes drowsy yet seductive. He possesses rather animated tapered ears that sometimes convey expression. The vampire’s skin is a light olive, and prone to tanning. His figure is slim but muscular, without being bulky. Crowned by thickly textured and layered ebony hair, it is often parted midway with it reaching his nape and framing his face with long bangs. In terms of style, he tends to dress in the fashions reflecting his prevalent physical age, but as of the modern age, dresses in style loosely considered <a href="http://retrodrive.tumblr.com/">Casual</a> and he rarely dresses in true formality.</small></p></blockquote>
  2329.  
  2330. <h3>2. ( Physical. )</h3><blockquote>
  2331.  
  2332. <p><small><b>Hair Colour: </b>Jet Black, worn to the nape of his neck with long bangs <br></small></p>
  2333.  
  2334. <p><small><b>Eye Colour: </b>Dark hunter green when powers aren't in use; fiery opalescent when they are</small></p>
  2335.  
  2336. <p><small><b>Complexion: </b>Light olive with warm undertones</small></p>
  2337.  
  2338. <p><small><b>Height: </b>6'6"</small></p>
  2339.  
  2340. <p><small><b>Weight:</b> 200 lbs</small></p>
  2341.  
  2342. <p><small><b>Build: </b>Slim but fairly athletic &amp; toned<a href="http://www.bodybuilding.com/fun/images/2011/female-transformation-rachel-mac_asm.jpg"><br></a></small></p>
  2343.  
  2344. <p><small><b>Voice: </b><a href="https://www.youtube.com/watch?v=C5ag5H2t2Vg">Stefan Sileanu</a></small></small></p>
  2345.  
  2346. <p><small><b>Scars: </b>Vlad has several distinct scars. After his first decapitation, it caused a jagged, white band to scar at his neck. On his chest and throat are two enormous profusions: from where Harker's Kukri blade was smashed into his throat, and on his chest, the impact point where the stake and Quincey's Bowie knife were driven through. Following his capture by Van Helsing, on his back and chest have the Solomonic Seal the Band of Heroes carved and scarified into his flesh via use of the Nails of Christ, all three which he received clearance from the Vatican to use. Because of the need to restrain him, two were used by nailing them through the cusps of his hands and the tops of his feet, which eventually caused permanant scarring in the form of two blotched, Evil Eye-appearing bruises that conceal the white patches of skin where the nails were originally driven through. These affect his feet and hands into the modern days, making some motor control difficult as he sways when standing still to keep his balance and his hands tremble when writing or holding objects due to the damage caused to the tendons. </small></p><p><small><b>Piercings:</b> Though he rarely wears earrings, both his lobes are pierced once each</small></p>
  2347.  
  2348. <p><small><b>Clothing Style:</b> Casual to Semi-casual</small></p>
  2349.  
  2350. <p><small><b>Scent: </b>The cool metallic tang after a summer storm as the rain is evaporating</small></p></blockquote>
  2351.  
  2352. <h3>3. ( Health. ) </h3><blockquote>
  2353.  
  2354. <p><small><b>Physical Ailments: </b>Due to the Nails of Christ having been used to arrest his hands and feet together for years, Vlad does experience impaired mobility that manifests as difficulty standing for long periods, keeping his balance while standing still (will sway between his feet], he cannot aim with guns well and his writing is unsteady due to involuntary trembling he cannot help.</small></p>
  2355.  
  2356. <p><small><b>Neurodivergencies: </b>Borderline Personality Disorder, Major depression, PTSD</small></p>
  2357.  
  2358. <p><small><b>Allergies:</b> None</small></p>
  2359.  
  2360. <p><small><b>Addictions: </b>Alcoholism</small></p>
  2361.  
  2362. <p><small><b>Drug Use: </b>Recreational</small></p>
  2363.  
  2364. <p><small><b>Alcohol Use: </b>Frequent</small></p></blockquote>
  2365.  
  2366. <h3> 4. ( Relationships. ) </h3>
  2367.  
  2368. <blockquote><p><small><b>Grandparents: </b>Mircea I, Doamna Mara; Alexander Muşat & Anna Rymgajla; Dorothy Garai & Stephen Tvrtko II </small></p>
  2369.  
  2370. <p><small><b>Parents: </b>Vlad II Dracul & Cneajna of Moldavia</small></p>
  2371.  
  2372. <p><small><b>Sibling(s): </b>Radu cel Frumos, Mircea II, Dane II, Alexandra of Wallachia, Vlad the Monk
  2373.  
  2374. <p><small><b>In-laws: </b> John Hunyadi & Elizabeth of Luxemborg; István III Báthori de Ecsed & Tarkői Margit; Michael Szilágyi de Horogszeg & Ágota Pósa de Szer; Thomas Siegel; Casimir IV Jagiellon & Samantha of Görlitz; Norina of Bosnia; Maria Despina; Hacı I Giray</small></p>
  2375.  
  2376. <p><b>Aunts & Uncles:</b> Stefan II Muşat, Roman Muşat, Alexandru Muşat, Moldavijos Kunigaikštis Iliaş and Petru Aron III; Aldea Sándor, Radu II, Mihaly Dracul Basarab of Wallachia, Arina Celibi, Ana, Vojislav (Vlaislav) II, Aliodea Morosini</p>
  2377.  
  2378. <p><b>Nieces & Nephews:</b> Basara II Basarab, Stanicul III, Dančo Basarab, Maria Voichiţa, Radu cel Mare ІV & Vlad Cel Tanar; Hayder of Crimea & Meñli I Giray; </p>
  2379.  
  2380. <p><small><b>Relatives: </b>Anastasia Dracul (stepmother], Petru Aron, Elizabeth Bathory, Ivan the Terrible, Genghis Khan<p>
  2381.  
  2382. <p><b>Cousins:</b> Stephen the Great, Manzilla De Argyes-Olah, Anna of Moldavia, Roman al II-lea and Alexăndrel, </p>
  2383. <p><b>Spouses:</b> Elizabeta Hunyadi, Cneajna Báthory, Anastasia Maria Jagiellon, Juzstina Szilágyi</small></p>
  2384.  
  2385. <p><b>Mistress(es): </b>Katharina Siegel, Ilona Nelipic</small></p>
  2386.  
  2387. <p><b>Sires: </b>Lucifer & Gebeleizis (Dacian god of lightning & storms; Vlad's patron god]</small></p>
  2388.  
  2389. <p><b>the brides: </b>Natalya Shishkov, Viktória Lakotos, & Panna Daróczi</small></p>
  2390.  
  2391. <p><small><b>past Lovers: </b>Amanirenas (past & modern]</small></p>
  2392.  
  2393. <p><small><b>Children: </b>Mihnea III Hunyadi, Mihnea IV Hunyadi, Radu Bathory, Mihnea the Bad Hunyadi, Vasilissa Hunyadi, Vladislaus Szilágyi, Mircea the Younger Szilágyi, Zaleska & Mihail Nelipic, Radu Báthory, Vladislav Siegel, Catherine Siegel, Christian Siegel, Hanna and Sigismund Siegel <i>(deceased]</i>; Vladmir Shishkov, Mariska and Denisa Lakotos, Constantin, David, and Gavrila Daróczi, Quincey Harker <i>(living]</i></small></p>
  2394.  
  2395. <p><b>Descendents:</b> Prince Charles of Wales, Queen Elizabeth II <p><b>Pets:</b> Zalmoxis (dragon], Bersicker (turned wolf]</blockquote>
  2396.  
  2397. <h3> 5. ( Quirks, Aspirations & Others. ) </h3>
  2398.  
  2399. <blockquote><p><small><b>Goals: </b>To find freedom from his life as an indentured weapon and possibly live as a vagabond, practicing his majick and restoring the Scholomance.</small></p>
  2400.  
  2401. <p><small><b>Fears: </b>Never attaining freedom and his children being slain or worse</small></p>
  2402.  
  2403. <p><small><b>Traumas: </b>He and his brother Radu were severely beaten by their father and older men in Dracul's court, suffered severe emotional neglect from his father, being CSA victim, centuries of war trauma, being harshly conditioned by American government officials excising control on him</small></p>
  2404.  
  2405. <p><small><b>Hobbies: </b>Guitar playing, reading, independent study, travel, acting, falconry, practicing majick</small></p>
  2406.  
  2407. <p><small><b>Habits: </b>Prone to shifting imperceptibly between his feet because of the damage the stigmata caused and is known to rock when standing still in order to keep his balance; his writing is shaky and while he's an expert swordsman, he can't hold a sword perfectly still, again, because of the damage the stigmata caused. His ears are also highly expressive, being tapered and elfin in appearance, they are known to swivel to sound, perk when honing upon sound or seeing something/-one of interest, pin back when angered and droop when depressed.</small></p>
  2408.  
  2409. </blockquote><h3> 6. ( Personality and Astrological. )</h3>
  2410.  
  2411. <blockquote><p><small><b>Zodiac Sign: </b>Scorpio-Sagittarius Cusp</small></p><p><small><b>MBTI: </b><i>ESFP</i>, Outgoing, friendly, and accepting. Exuberant lovers of life, people, and material comforts. Enjoy working with others to make things happen. Bring common sense and a realistic approach to their work, and make work fun. Flexible and spontaneous, adapt readily to new people and environments. Learn best by trying a new skill with other people.
  2412.  
  2413. </small></p><p><small><b>Enneagram:</b> <i>Type 7, Wing 8,the Realist</i> - Sevens are extroverted, optimistic, versatile, and spontaneous. Playful, high-spirited, and practical, they can also misapply their many talents, becoming over- extended, scattered, and undisciplined. They constantly seek new and exciting experiences, but can become distracted and exhausted by staying on the go. They typically have problems with impatience and impulsiveness. At Their Best: they focus their talents on worthwhile goals, becoming appreciative, joyous, and satisfied.
  2414.  
  2415. </small></p><p><small><b>Temperament:</b><i> Sanguine</i>, The sanguine temperament is traditionally associated with air. People with this temperament tend to be lively, sociable, carefree, talkative, and pleasure-seeking. They may be warm-hearted and optimistic. They can make new friends easily, be imaginative and artistic, and often have many ideas. They can be flighty and changeable; thus sanguine personalities may struggle with following tasks all the way through and be chronically late or forgetful.
  2416.  
  2417. </small></p><p><small><b>Moral Alignment: </b><i>True Neutral, </i>A neutral character does what seems to be a good idea. She doesn't feel strongly one way or the other when it comes to good vs. evil or law vs. chaos. Most neutral characters exhibit a lack of conviction or bias rather than a commitment to neutrality. Such a character thinks of good as better than evil-after all, she would rather have good neighbors and rulers than evil ones. Still, she's not personally committed to upholding good in any abstract or universal way..
  2418.  
  2419. </small></p><p><small><b>Primary Vice: </b><i>Wrath, </i>Extreme anger, rage, hatred, or a need for vengance or revenge. People who suffer with Wrath issues will often resort to taking the law in their own hands if they feel the justice system has failed them.</small></p><p><small><b>Primary Virtue: </b><i>Diligence, </i>A zealous and careful nature in one’s actions and work. Decisive work ethic. Budgeting one’s time; monitoring one’s own activities to guard against laziness.</small></p><p><small><b>Element:</b> <i>Fire, </i>Fire people are enthusiastic, impulsive, inspirational, humorous, dramatic and fun. They are natural performers. While fire people easily swing from one extreme to the other, it is important to remember that fire people speak and act straight from the heart. They deliver everything with passion. And yet, fire people easily grow self-conscious when they speak before thinking (which happens fairly often). So, it is dire for fire people to learn to communicate that they are merely being pushy out of a desire to help. The fire person’s challenge is to learn to tame the “fiery beast” inside and create balance by drawing from the three other elements: water, earth and air.
  2420.  
  2421. </small></p></blockquote><h3>7. ( Abilities &amp; Powers. )</h3>
  2422.  
  2423. <blockquote><ul><li><small>Immortality</small></li><li><small>Manipulation of the elements</small></li><li><small>High magical reserves</small></li><li><small>Mastery of Solomonic Majick, Alchemy, and the Dark Arts</small></li><li><small>Necromancy</small></li><li><small>Demon Summoning & Manipulation</small></li><li><small>High Regeneration</small></li><li><small>Superhuman senses</small></li><li><small>Superhuman strength</small></li><li><small>Intangibility</small></li><li><small>Shapeshifting</small></li><li><small>Telepathy</small></li><li><small>Hypnosis</small></li><li><small>Soil Empowerment</small></li><li><small>Blood-flow Vision</small></li><li><small>Blood Empowerment</small></li><li><small>Wallcrawling</small></li><li><small>Psionics</small></li><li><small>Life-force Absorption</small></li><li><small>Night Vision</small></li><li><small>Smoke Manipulation</small></li><li><small>Animal Manipulation</small></li><li><small>Corruption Inducement</small></li><li><small>Daylight Walking</small></li><li><small>Creation of fledglings, whether human or animal</small></li><li><small>Use of powerful relics in battle</small></li><li><small>Immunity to weaker religious relics</small></li></ul></blockquote></p>
  2424.  
  2425. </div>
  2426. </div>
  2427.  
  2428.  
  2429.  
  2430. <div id="box5" class="popup_block">
  2431.  
  2432. <div style="width:auto;height:400px;overflow:scroll;padding:5px;">
  2433.  
  2434. <h3>navigation</h3>
  2435.  
  2436. <center>
  2437.  
  2438. <div class="popupnavlinks">
  2439.  
  2440.  
  2441. <a href="/tagged/( HEADCANON | major arcana ]">Headcanons</a>
  2442. <a href="/tagged/( HEADCANON | minor arcana ]">Minicanons</a>
  2443. <br>
  2444. <a href="/tagged/( HEADCANON | tarot deck ]">Askcanons</a>
  2445. <a href="/tagged/( HEADCANON | carte de trionfi ]">Important People</a>
  2446. <br>
  2447. <a href="/tagged/( MEDIA | stories otherwise ]">Drabbles</a>
  2448. <a href="/tagged/( MEDIA | my creations ]">My Art</a>
  2449. <br>
  2450. <a href="/tagged/( MEDIA | art of another ]">Art by Others</a>
  2451. <a href="/tagged/( MEDIA | of music ]">Music</a>
  2452. <br>
  2453. <a href="/tagged/( MEDIA | the reflections ]">Musings</a>
  2454. <a href="/tagged/( OOC . ]">OOC</a>
  2455. <br>
  2456. <a href="/tagged/( OOC | psa ]">PSA</a>
  2457. <a href="/tagged/( OOC | wishlist ]">Wishlist</a>
  2458. <br>
  2459.  
  2460.  
  2461. </div>
  2462. </div>
  2463. </div>
  2464.  
  2465.  
  2466.  
  2467. <div id="bite">
  2468. <div id="thekey"></div>
  2469. <div class="death">
  2470. <div id="actualnews">
  2471.  
  2472. <center>
  2473.  
  2474. <div style="width:auto;height:140px;overflow:scroll;padding:5px;">
  2475.  
  2476.  
  2477. <h3>
  2478. running in the shadows
  2479. </h3>
  2480.  
  2481. Fandomless, original interpretation of Count Dracula.
  2482.  
  2483. <h3>
  2484. down comes the night
  2485. </h3>
  2486.  
  2487. <b>Steal to Bone</b></br><b>Skin to Rust</b>
  2488. </br><b>Rhyme to Ruin</b></br><b>
  2489. Song to Dust</b>
  2490.  
  2491.  
  2492.  
  2493.  
  2494.  
  2495. </center>
  2496.  
  2497.  
  2498. </div>
  2499. </div></div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement