Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Aug 3rd, 2012  |  syntax: None  |  size: 78.37 KB  |  hits: 30  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3.  
  4.  
  5. <head>
  6.  
  7.  
  8. <script type="text/javascript">
  9. // <![CDATA[
  10. // all colours must be in format '#NNNNNN', not 'red' or 'rgb(7,8,9)'
  11. var fgcolour="#9100ff"; // foreground colour
  12. var hlcolour="#3349f8"; // highlight colour
  13. var bgcolour="#006eff"; // background colour
  14. var glcolour="#696969"; // colour of glow around letters
  15. var speed=66; // speed colours change, 1 second = 1000
  16. var delay=50; // how long to wait between wipes
  17. var alink="http://themecloud.co/themes/narnia/"; // page to link text to (set to ="" for no link)
  18.  
  19. /****************************
  20. *Multi-Wipe Neon Text Effect*
  21. *(c)2003-12 mf2fm web-design*
  22. *  http://www.mf2fm.com/rv  *
  23. * DON'T EDIT BELOW THIS BOX *
  24. ****************************/
  25. var w_txt, w_txl;
  26. var w_flp=bgcolour;
  27. var w_sty=Math.floor(Math.random()*8);
  28. var w_cnt=-1;
  29. var wipes=new Array();
  30. var wrand=new Array();
  31. window.onload=function() { if (document.getElementById) {
  32.   var i, wiper, wipei;
  33.   wiper=document.getElementById("wipe");
  34.   w_txt=wiper.firstChild.nodeValue;
  35.   w_txl=w_txt.length;
  36.   while (wiper.childNodes.length) wiper.removeChild(wiper.childNodes[0]);
  37.   for (i=0; i<w_txl; i++) {
  38.     wipei=document.createElement("span");
  39.     wipei.appendChild(document.createTextNode(w_txt.charAt(i)));
  40.     wipes[i]=wipei.style;
  41.     wipes[i].textShadow=glcolour+" 0px 0px 5px";
  42.     wipes[i].color=fgcolour;
  43.     wiper.appendChild(wipei);
  44.   }
  45.   if (alink) {
  46.     wiper.style.cursor="pointer";
  47.     wiper.onclick=function() { top.location.href=alink; }
  48.   }
  49.   for (i=0; i<w_txl; i++) wrand[i]=i;
  50.   wiper=setInterval("randwipe()", speed);
  51. }}
  52.  
  53. function c(i, shade) {
  54.   if (shade==bgcolour) wipes[i].textShadow="none";
  55.   else wipes[i].textShadow=glcolour+" 0px 0px 5px";
  56.   wipes[i].color=shade;
  57. }
  58.  
  59. function randwipe() {
  60.   var w_old;
  61.   if (w_cnt++<w_txl+2+delay*(w_flp==fgcolour)) eval("wipe"+w_sty+"();");
  62.   else {
  63.     w_cnt=-1;
  64.     w_flp=(w_flp==fgcolour)?bgcolour:fgcolour;
  65.     w_old=w_sty;
  66.     while (w_old==w_sty) w_sty=Math.floor(Math.random()*9);
  67.   }
  68. }
  69.  
  70. function dechex(dec) { return ((dec<16)?"0":"")+dec.toString(16); }
  71.  
  72. function wipe0() { // full curtains
  73.   var half=Math.floor(w_txl/2);
  74.   if (w_cnt<w_txl) {
  75.     c(w_cnt, (w_cnt<half)?hlcolour:w_flp);
  76.     c(w_txl-w_cnt-1, (w_cnt<half)?hlcolour:w_flp);
  77.   }
  78. }
  79.  
  80. function wipe1() { // random
  81.   var i, rand, temp;
  82.   if (w_cnt==0) {
  83.     for (i=0; i<w_txl; i++) {
  84.       rand=Math.floor(Math.random()*w_txl);
  85.       temp=wrand[i];
  86.       wrand[i]=wrand[rand];
  87.       wrand[rand]=temp;
  88.     }
  89.   }
  90.   if (w_cnt<w_txl) c(wrand[w_cnt], hlcolour);
  91.   if (w_cnt>0 && w_cnt<w_txl+1) c(wrand[w_cnt-1], w_flp);
  92. }
  93.  
  94. function wipe2() { // forwards
  95.   if (w_cnt<w_txl) c(w_cnt, hlcolour);
  96.   if (w_cnt>0 && w_cnt<w_txl+1) c(w_cnt-1, w_flp);
  97. }
  98.  
  99. function wipe3() { // backwards
  100.   if (w_cnt<w_txl) c(w_txl-(w_cnt+1), hlcolour);
  101.   if (w_cnt>0 && w_cnt<w_txl+1) c(w_txl-w_cnt, w_flp);
  102. }
  103.  
  104. function wipe4() { // searchlight
  105.   if (w_cnt<w_txl) c(w_cnt, hlcolour);
  106.   if (w_cnt>0 && w_cnt<w_txl+1) c(w_cnt-1, w_flp);
  107.   if (w_cnt>1 && w_cnt<w_txl+2) c(w_cnt-2, hlcolour);
  108.   if (w_cnt>2 && w_cnt<w_txl+3) c(w_cnt-3, (w_flp==fgcolour)?bgcolour:fgcolour);
  109.   if (w_cnt==w_txl+2) w_flp=(w_flp==fgcolour)?bgcolour:fgcolour;
  110. }
  111.  
  112. function wipe5() { // fade
  113.   var i;
  114.   if (w_cnt<w_txl+3) {
  115.     var start=(w_flp==fgcolour)?bgcolour:fgcolour;
  116.     var temp="#";
  117.     for (i=1; i<6; i+=2) {
  118.       var hex1=parseInt(start.substring(i,i+2),16);
  119.       var hex2=parseInt(w_flp.substring(i,i+2),16);
  120.       temp+=dechex(Math.floor(hex1+(hex2-hex1)*(w_cnt/(w_txl+2))));
  121.     }
  122.     for (i=0; i<w_txl; i++) c(i, temp);
  123.   }
  124. }
  125.  
  126. function wipe6() { // flash
  127.   var i;
  128.   if (w_cnt<6*Math.floor(w_txl/6)+3) {
  129.     if (w_cnt%6==0 || w_cnt%6==3) for (i=0; i<w_txl; i++) c(i, hlcolour);
  130.     else if (w_cnt%6==1) for (i=0; i<w_txl; i++) c(i, w_flp);
  131.     else if (w_cnt%6==4) for (i=0; i<w_txl; i++) c(i, (w_flp==fgcolour)?bgcolour:fgcolour);
  132.   }
  133. }
  134.  
  135. function wipe7() { // checkerboard
  136.   var qtr=Math.floor(w_txl/4);
  137.   if (w_cnt<qtr) {
  138.     c(w_cnt, hlcolour);
  139.     c(w_cnt+2*qtr, hlcolour);
  140.   }
  141.   else if (w_cnt<2*qtr) {
  142.     c(w_cnt-qtr, w_flp);
  143.     c(w_cnt+qtr, w_flp);
  144.   }
  145.   else if (w_cnt<3*qtr) {
  146.     c(w_cnt-qtr, hlcolour);
  147.     c(w_cnt+qtr, hlcolour);
  148.   }
  149.   else if (w_cnt<w_txl) {
  150.     c(w_cnt-2*qtr, w_flp);
  151.     c(w_cnt, w_flp);
  152.   }
  153. }
  154.  
  155. function wipe8() { // half curtains
  156.   var half=Math.floor(w_txl/2);
  157.   if (w_cnt<half) {
  158.     c(w_cnt, hlcolour);
  159.     c(w_txl-w_cnt-1, hlcolour);
  160.   }
  161.   else if (w_cnt<w_txl) {
  162.     c(w_cnt-half, w_flp);
  163.     c(w_txl+half-w_cnt-1, w_flp);
  164.   }
  165. }
  166. // ]]>
  167. </script>
  168.  
  169. <script type="text/javascript"
  170. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  171. <script>
  172. $(document).ready(function() {
  173. //
  174. $('a.poplight[href^=#]').click(function() {
  175. var popID = $(this).attr('rel'); //Get Popup Name
  176. var popURL = $(this).attr('href'); //Get Popup href to define size
  177. var query= popURL.split('?');
  178. var dim= query[1].split('&');
  179. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  180. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"><img src="http://i1185.photobucket.com/albums/z347/Glennda_Balderas/th9c290fe5.gif" class="btn_close" title="Close" alt="Close" /></a>');
  181. var popMargTop = ($('#' + popID).height() + 80) / 2;
  182. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  183. //Apply Margin to Popup
  184. $('#' + popID).css({
  185. 'margin-top' : -popMargTop,
  186. 'margin-left' : -popMargLeft
  187. });
  188. $('body').append('<div id="fade"></div>');
  189. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'})
  190. return false;
  191. });
  192. $('a.close, #fade').live('click', function() {
  193. $('#fade , .popup_block').fadeOut(function() {
  194. $('#fade, a.close').remove(); //fade them both out
  195. });
  196. return false;
  197. });
  198. });
  199. </script>
  200.  
  201. <link href='http://static.tumblr.com/blpgwiz/sUbm3n2y0/changing_colors_css.css' rel='stylesheet' type='text/css'>
  202.  
  203. <link href='http://fonts.googleapis.com/css?family=Short+Stack' rel='stylesheet' type='text/css'>
  204.  
  205. <script type="text/javascript">
  206.   WebFontConfig = {
  207.     google: { families: [ 'Short+Stack::latin' ] }
  208.   };
  209.   (function() {
  210.     var wf = document.createElement('script');
  211.     wf.src = ('https:' == document.location.protocol ? 'https' : 'http') +
  212.       '://ajax.googleapis.com/ajax/libs/webfont/1/webfont.js';
  213.     wf.type = 'text/javascript';
  214.     wf.async = 'true';
  215.     var s = document.getElementsByTagName('script')[0];
  216.     s.parentNode.insertBefore(wf, s);
  217.   })(); </script>
  218.  
  219.  
  220.  
  221. <meta property=”og:title” content=”{block:PostTitle}
  222. {PostTitle}
  223. {/block:PostTitle}”>
  224. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  225. <meta name="image:Background" content=""/>
  226. <meta name="color:Main Text" content="#333333"/>
  227. <meta name="color:Links" content="#558386"/>
  228. <meta name="color:Header Links" content="#4083a9"/>
  229. <meta name="text:Number of columns" content="5"/>
  230. <meta name="color:Background" content="#f0efeb"/>
  231. <meta name="if:Fade in posts" content="0"/>
  232. <meta name="color:Post Title" content="#000000"/>
  233. <meta name="color:Description" content="#4083a9"/>
  234. <meta name="text:Post padding" content="10"/>
  235. <meta name="color:Scroll Bar" content="#000"/>
  236. <meta name="if:Fix tumblr controls" content="1"/>
  237. <meta name="if:Lightbox" content="1"/>
  238. <meta name="if:Header Style A" content="1"/>
  239. <meta name="if:Header Style B" content="0"/>
  240. <meta name="if:Fix Header" content="1"/>
  241. <meta name="if:Transparent Header" content="1"/>
  242. <meta name="if:Blog Title Style A" content="0"/>
  243. <meta name="if:Blog Title Style B" content="1"/>
  244. <meta name="if:Blog Title Style C" content="0"/>
  245. <meta name="if:Show Portrait" content="0"/>
  246. <meta name="image:Logo" content=""/>
  247. <meta name="if:RSS link" content="0">
  248. <meta name="if:Archive link" content="0">
  249. <meta name="color:Header" content="#ffffff"/>
  250. <meta name="color:Links" content="#558386"/>
  251. <meta name="color:Links Hover" content="#ea0d36"/>
  252. <meta name="color:Blog Hover" content="#000000"/>
  253. <meta name="color:Blog" content="#333333"/>
  254. <meta name="if:Text Background" content="1">
  255. <meta name="color:Text background" content="#fff"/>
  256.  
  257.  
  258.  
  259. <title>{Title}{block:PostTitle} - {PostTitle}{/block:PostTitle}</title>
  260. <link rel="shortcut icon" href="{Favicon}">
  261. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  262. {block:Description}
  263.  <meta name="description" content="{MetaDescription}" />
  264. {/block:Description}
  265.  
  266. <script src="http://platform.twitter.com/widgets.js" type="text/javascript"></script>
  267.  
  268.  
  269. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.5/jquery.min.js"></script>
  270. <script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/jquery-ui.min.js"></script>
  271. <script src="http://www.themecloud.co/themes/narnia/easing.js"></script>
  272.  
  273. <script src="http://www.themecloud.co/themes/narnia/jquery.tipsy.js"></script>
  274. <script src="http://static.tumblr.com/ssdtkch/5cRls2m3o/jquery.lazyload.js" type="text/javascript" charset="utf-8"></script>
  275.     <link rel="stylesheet" href="http://static.tumblr.com/2w7y46r/tpCltl37a/pictos_base.css">
  276.    
  277.  
  278.  
  279. <link href='http://fonts.googleapis.com/css?family=Open+Sans:700italic' rel='stylesheet' type='text/css'>
  280.  
  281.  
  282.  
  283.  
  284.  
  285. {block:IndexPage}
  286. <script src="http://www.themecloud.co/themes/narnia/getjs.asp?id=278656"></script>
  287. {/block:IndexPage}
  288.  
  289. <script src="http://www.themecloud.co/themes/narnia/common.js"></script>
  290. <script src="http://cdn.jquerytools.org/1.2.5/jquery.tools.min.js"></script>
  291. <link  href="http://www.themecloud.co/themes/narnia/core.css" rel="stylesheet" type="text/css" >
  292. <script src="http://www.themecloud.co/themes/narnia/jquery.tipsy.js"></script>
  293.  
  294.  
  295.  
  296. <script type="text/javascript" src="http://static.tumblr.com/ssdtkch/AhIlqr0kb/jquery.easing-1.3.pack.js"></script>
  297. <script type="text/javascript" src="http://static.tumblr.com/ssdtkch/YP9ls3323/untitled.js"></script>
  298. <link rel="stylesheet" type="text/css" href="http://static.tumblr.com/ssdtkch/EUjlqtc4s/jquery.fancybox-1.3.4.css" media="screen" />
  299.  
  300. <link href="http://fonts.googleapis.com/css?family=Open+Sans:400italic,600italic,700italic,800italic,400,600,700,800&v2" rel='stylesheet' type='text/css'>
  301. <link href='http://fonts.googleapis.com/css?family=Terminal+Dosis:800' rel='stylesheet' type='text/css'>
  302. <link href='http://fonts.googleapis.com/css?family=Stardos+Stencil:700' rel='stylesheet' type='text/css'>
  303. <script type="text/javascript" src="http://static.tumblr.com/ts2nqrf/Msal8du92/cufon.js"></script>
  304. <script type="text/javascript" src="http://static.tumblr.com/ts2nqrf/mNQl8du9p/bebas.js"></script> <script type="text/javascript"> Cufon.DOM.ready(function() { Cufon.replace('.bebas', { fontFamily: 'bebas', hover:true }); $('.bebas').css('visibility','visible'); }); </script>
  305. <script>
  306. $(window).load(function() {
  307.     {block:iffixheader}
  308.     {block:ifheaderstyleB}
  309.         $("#posts").css("margin-top",($("#header_menu2").height() + 20) + "px");
  310.         {/block:ifheaderstyleB}
  311.         {/block:iffixheader}
  312.          });
  313. </script>
  314. {block:IndexPage}
  315.  
  316. <script type="text/javascript" src="https://apis.google.com/js/plusone.js">{lang: 'en-GB'}
  317. </script>
  318.  
  319. <script>
  320.  
  321. $(document).ready(function() {
  322. GetPosts({block:IfNumberofcolumns}{text:Number of columns}{/block:IfNumberofcolumns},"600");
  323.  
  324. });
  325. </script>
  326.  
  327.  
  328. <script>
  329. var ScrollTopNumber;
  330. $(window).scroll(function(){
  331. ScrollTopNumber = $(document).height() / 4 - $(window).height();
  332. if ($(window).scrollTop() > ScrollTopNumber)
  333. {
  334.  return GetMorePosts();
  335. }
  336. })
  337. </script>
  338.  
  339. <style type="text/css">
  340.  
  341.  
  342. #link{
  343.   margin-left: 0px;
  344. position:absolute;
  345.  padding-top:12px;
  346. padding-bottom:12px;
  347. text-align:center;
  348. color: #ff00c9;
  349. height:30px;
  350. width:200px;
  351. overflow:hidden;
  352. -webkit-transition: opacity 0.7s linear;
  353. -webkit-transition: all 0.7s ease-in-out;
  354. -moz-transition: all 0.7s ease-in-out;
  355. -o-transition: all 0.7s ease-in-out;
  356. background:transparent;
  357. z-index:9999;
  358. border-radius:10px;
  359. font-family: 'Short Stack', cursive
  360. }
  361.  
  362.  
  363.  
  364. #link:hover{
  365. border:3px dashed #000000;
  366. -webkit-box-shadow: 0px 0px 20px #00bfff;
  367. -moz-box-shadow: 0px 0px 20px #00bfff;
  368. box-shadow: 0px 0px 20px #00bfff;
  369. padding:5px;
  370. height:400px;
  371. overflow:hidden;
  372. width:400px;
  373. opacity:1.0;
  374. background: #e9c5f7;
  375. z-index:999999999;
  376. }
  377.  
  378. #ext{
  379. height: 500px;
  380. overflow-y:hidden;
  381. overflow-x:hidden;
  382. background: transparent;
  383. opacity:1.0;
  384. text-align:center;
  385. z-index:999999999;
  386.  
  387. }
  388.  
  389.  
  390.  
  391. #link2{
  392.   margin-left: 300px;
  393. position:absolute;
  394.  padding-top:12px;
  395. padding-bottom:12px;
  396. text-align:center;
  397. color: #ff00c9;
  398. height:10px;
  399. width:120px;
  400. overflow:hidden;
  401. -webkit-transition: opacity 0.7s linear;
  402. -webkit-transition: all 0.7s ease-in-out;
  403. -moz-transition: all 0.7s ease-in-out;
  404. -o-transition: all 0.7s ease-in-out;
  405. background:transparent;
  406. z-index:9999;
  407. border-radius:10px;
  408. font-family: 'Short Stack', cursive
  409. }
  410.  
  411.  
  412.  
  413. #link2:hover{
  414. border:3px dashed #000000;
  415. -webkit-box-shadow: 0px 0px 20px #00bfff;
  416. -moz-box-shadow: 0px 0px 20px #00bfff;
  417. box-shadow: 0px 0px 20px #00bfff;
  418. padding:5px;
  419. height:700px;
  420. overflow:hidden;
  421. width:520px;
  422. opacity:1.0;
  423. background: #e9c5f7;
  424. z-index:999999999;
  425. }
  426.  
  427.  
  428.  
  429. #ext2{
  430.  
  431. height: 700px;
  432. overflow-y:hidden;
  433. overflow-x:hidden;
  434. background: transparent;
  435. opacity:1.0;
  436. text-align:center;
  437. z-index:999999999;
  438. }
  439.  
  440.  
  441.  
  442. #link3{
  443.  
  444.     margin-left: 500px;
  445. position:absolute;
  446.  padding-top:12px;
  447. padding-bottom:12px;
  448. text-align:center;
  449. color: #ff00c9;
  450. height:10px;
  451. width:100px;
  452. overflow:hidden;
  453. -webkit-transition: opacity 0.7s linear;
  454. -webkit-transition: all 0.7s ease-in-out;
  455. -moz-transition: all 0.7s ease-in-out;
  456. -o-transition: all 0.7s ease-in-out;
  457. background:transparent;
  458. z-index:9999;
  459. border-radius:10px;
  460.   font-family: 'Short Stack', cursive
  461. }
  462.  
  463.  
  464.  
  465. #link3:hover{
  466.  
  467. border:3px dashed #000000;
  468. -webkit-box-shadow: 0px 0px 20px #56b1f0;
  469. -moz-box-shadow: 0px 0px 20px #56b1f0;
  470. box-shadow: 0px 0px 20px #56b1f0;
  471. padding:5px;
  472. height:430px;
  473. overflow:hidden;
  474. width:520px;
  475. opacity:1.0;
  476. background: #b46de2;
  477. z-index:999999999;
  478.  
  479.  
  480. }
  481.  
  482.  
  483.  
  484. #ext3{
  485.  
  486. height: 440px;
  487.  
  488. overflow: hidden;
  489.  
  490.  
  491.  
  492. background:transparent;
  493.  
  494. opacity:1.0;
  495.  
  496. text-align:center;
  497.  
  498. z-index:999999999;
  499.  
  500. }
  501.  
  502.  
  503.  
  504. #link4{
  505.  
  506.         margin-left: 650px;
  507.  
  508. position:absolute;
  509.  
  510. padding-top:12px;
  511.  
  512. padding-bottom:12px;
  513.  
  514. text-align:center;
  515.  
  516. color: #ff00c9;
  517.  
  518.  
  519. height:10px;
  520.  
  521. width:75px;
  522.  
  523. overflow:hidden;
  524.  
  525. -webkit-transition: opacity 0.7s linear;
  526.  
  527. -webkit-transition: all 0.7s ease-in-out;
  528.  
  529. -moz-transition: all 0.7s ease-in-out;
  530.  
  531. -o-transition: all 0.7s ease-in-out;
  532.  
  533. background:transparent;
  534.  
  535. z-index:9999;
  536.  
  537. border-radius:10px;
  538.   font-family: 'Short Stack', cursive
  539. }
  540.  
  541.  
  542.  
  543. #link4:hover{
  544.  
  545. border:3px dashed #000000;
  546.  
  547. -webkit-box-shadow: 0px 0px 20px #56b1f0;
  548.  
  549. -moz-box-shadow: 0px 0px 20px #56b1f0;
  550.  
  551. box-shadow: 0px 0px 20px #56b1f0;
  552.  
  553. padding:5px;
  554.  
  555. height:280px;
  556.  
  557. overflow:hidden;
  558.  
  559. width:250px;
  560.  
  561. opacity:1.0;
  562.  
  563. background: #b46de2;
  564. z-index:999999999;
  565.  
  566.  
  567.  
  568. }
  569.  
  570.  
  571.  
  572. #ext4{
  573.  
  574. height: 500px;
  575.  
  576. overflow-y:hidden;
  577.  
  578. overflow-x:hidden;
  579.  
  580. background:transparent;
  581.  
  582. opacity:1.0;
  583.  
  584. text-align:center;
  585.  
  586. z-index:999999999;
  587.  
  588. }
  589.  
  590.  
  591. #link5{
  592.  
  593.     margin-left: 800px;
  594.  
  595. position:absolute;
  596.  
  597. padding-top:12px;
  598.  
  599. padding-bottom:12px;
  600.  
  601. text-align:center;
  602.  
  603. color: #ff00c9;
  604.  
  605. height:40px;
  606.  
  607. width:85px;
  608.  
  609. overflow:hidden;
  610.  
  611. -webkit-transition: opacity 0.7s linear;
  612.  
  613. -webkit-transition: all 0.7s ease-in-out;
  614.  
  615. -moz-transition: all 0.7s ease-in-out;
  616.  
  617. -o-transition: all 0.7s ease-in-out;
  618.  
  619. background:transparent;
  620.  
  621. z-index:9999;
  622.  
  623. border-radius:10px;
  624.  
  625. }
  626.  
  627.  
  628. #link5:hover{
  629.  
  630. border:3px dashed #000000;
  631.  
  632. -webkit-box-shadow: 0px 0px 20px #56b1f0;
  633.  
  634. -moz-box-shadow: 0px 0px 20px #56b1f0;
  635.  
  636. box-shadow: 0px 0px 20px #56b1f0;
  637.  
  638. padding:5px;
  639.  
  640. height:520px;
  641.  
  642. overflow:hidden;
  643.  
  644. width:510px;
  645.  
  646. opacity:1.0;
  647.  
  648. background: #b46de2;
  649.  
  650. z-index:999999999;
  651.  
  652.  
  653.  
  654. }
  655.  
  656.  
  657.  
  658. #ext5{
  659.  
  660. height: 500px;
  661.  
  662. overflow-y:hidden;
  663.  
  664. overflow-x:hidden;
  665.  
  666. background:transparent;
  667.  
  668. opacity:1.0;
  669.  
  670. text-align:center;
  671.  
  672. z-index:999999999;
  673.  
  674. }
  675.  
  676.  
  677. {/block:IndexPage}
  678.  
  679.  
  680. <style>
  681.  
  682.  
  683. .bqstart,
  684. .bqend { font-size: 300%; }
  685.  
  686. .bqstart {
  687.     text-indent: 0;
  688.     position: absolute;
  689.     top: -0.2em;
  690.     left: 0;
  691. }
  692.  
  693. .bqend {
  694.     position: absolute;
  695.     margin-top: -0.2em;
  696.     right: 0;
  697.     text-indent: 0;
  698. }
  699. .post{
  700. overflow:hidden;       
  701. }
  702.  
  703. body{
  704. background-color:{color:Background};
  705. {block:ifbackgroundimage}background-image:url('{image:background}');{/block:ifbackgroundimage}
  706. font-family: 'Short Stack';
  707. color:{color:main text};
  708. margin:0;
  709. background-repeat:repeat;
  710. background-attachment:fixed;
  711. }
  712.  
  713. {block:ifFixtumblrcontrols}
  714.  
  715. #tumblr_controls{
  716. position:fixed !important;
  717. right:7px !important;
  718. top:5px !important;
  719. }
  720.  
  721. #purchase_theme{
  722. position:fixed !important; {block:headerstyleA}top:3px !important; z-index:1000 !important; {/block:headerstyleA}
  723. }
  724.  
  725. {/block:ifFixtumblrcontrols}
  726.  
  727. iframe#tumblr_controls{
  728. z-index:600 !important;
  729. position:fixed !important;
  730. }
  731.  
  732.  
  733. ::-webkit-scrollbar-thumb:vertical {background-color: {color:scroll bar}; height:100px;}
  734.  
  735. ::-webkit-scrollbar-thumb:horizontal {background-color: {color:scroll bar}; height:10px !important;}
  736.  
  737. ::-webkit-scrollbar { height:10px; width:7px; background-color:{color:Background};}
  738.  
  739. a{
  740. text-decoration:none;
  741. color:{color:Links};
  742. }
  743.  
  744. a:hover{
  745. color:{color:Links Hover};
  746. text-shadow: 0px 0px 20px
  747. font-size: 28px
  748. -moz-transition: all .2s;
  749. -webkit-transition: all .2s;
  750. -o-transition: all .2s;
  751. transition: all .2;
  752. }
  753.  
  754. a:hover{-webkit-animation-name: pulse;
  755.        -webkit-animation-duration: 4s;
  756.        -webkit-animation-iteration-count: infinite;
  757.        -webkit-animation-timing-function: ease-in-out;
  758. }
  759.  
  760. .column{
  761. float:left;
  762. width:300px;
  763. margin:0;
  764. padding:0;
  765. }
  766.  
  767. .column img{
  768. width:100%;    
  769. margin-bottom:0px;
  770. height:auto;
  771. }
  772.  
  773. .post img{
  774. width:100%;
  775. height:auto;           
  776. }
  777.  
  778. .post{
  779. font-size:18px;
  780. position: relative;
  781. text-align:left;
  782.  
  783.  
  784.  
  785. {block:iffadeinposts}
  786. opacity:0.8;
  787. filter:alpha(opacity=80);
  788. {/block:iffadeinposts}
  789. }
  790.  
  791. .post:hover {
  792.  
  793.    -webkit-box-shadow: 0px 0px 25px #FFFFFF;
  794. -moz-box-shadow: 0px 0px 25px #FFFFFF;
  795. box-shadow: 0px 0px 25px #FFFFFF;
  796. border: dashed 5px #A020F0;
  797. -moz-border-radius: 10px;
  798. border-radius: 10px
  799. }
  800.  
  801.  
  802. {block:PermalinkPage}
  803. .notes{float:left;
  804. }
  805. .reblog_etc{
  806. display:none;
  807. z-index:400;   
  808. }
  809.  
  810. .post{ width:600px;
  811.  
  812. }
  813.  
  814. {/block:PermalinkPage}
  815.  
  816.  
  817. #outer_container{
  818. width:100%;
  819. margin-top:0px;
  820. }
  821.  
  822. #container{
  823. margin-left:auto;
  824. margin-right:auto;     
  825. {block:PermalinkPage}
  826. margin-top:30px;
  827. {/block:PermalinkPage}
  828. }
  829.  
  830. .captions{
  831. width:100%;
  832. overflow:hidden;
  833.  
  834. {block:IndexPage}
  835. padding-top:10px;
  836. margin-left:auto;
  837. margin-right:auto;     
  838. {/block:IndexPage}
  839.  
  840. text-align:left;
  841. font-size:18px;
  842. color:{color:Caption Text};
  843. }
  844.  
  845. .captions p{
  846. margin:0;
  847. margin-top:5px;
  848. padding:0;
  849. }
  850.  
  851. .captions a{
  852. color:{color:Links};   
  853. }
  854.  
  855. .note_count{
  856. text-align:left;
  857. }
  858.  
  859. .audio_player embed{
  860. margin-left:0;
  861. font-size:11px;
  862. z-index:300 !important;
  863. color:#FF0000; 
  864. opacity:1;
  865. filter:alpha(opacity=100);
  866. }
  867.  
  868. .audio{
  869. opacity:1;
  870. filter:alpha(opacity=100);
  871. }
  872.  
  873. .audio_player{
  874. margin-left:0;
  875. font-size:11px;
  876. color:#FF0000; 
  877. background-color:#000000;
  878. opacity:1;
  879. filter:alpha(opacity=100);
  880. }
  881.  
  882. .audio_player a{
  883. font-size:11px;
  884. color:#FF0000; 
  885. text-decoration:none;
  886. }
  887.  
  888. .chat{
  889. {block:iftextbackground}background-color:{color:text background};{/block:iftextbackground}
  890. color:{color:main text};
  891. text-align:left;       
  892. font-family: 'Open Sans';
  893. {block:indexpage}padding:10px 5px 5px 5px;{/block:indexpage}
  894. {block:ifnottextbackground}{block:permalinkpage}padding:0px 5px 5px 5px;{/block:permalinkpage}{block:ifnottextbackground}
  895. {block:iftextbackground}{block:permalinkpage}padding:10px 5px 5px 5px;{/block:permalinkpage}{block:iftextbackground}
  896. }
  897.  
  898.  
  899. .chat_line_odd{
  900. margin-left:2%;
  901. font-size:13px;
  902. margin-top:5px;
  903. min-height:15px;
  904. color:{color:links hover};
  905. }
  906.  
  907. .chat_line_even{
  908. font-size:13px;
  909. margin-left:2%;
  910. min-height:15px;
  911. margin-top:5px;
  912. color:{color:links};
  913. }
  914.  
  915. .chat_title a{
  916. font-weight:normal;
  917. font-size:16px;
  918. padding:5px;
  919. color:{color:post title};
  920. }
  921.  
  922. .chat_chat{
  923. color:{color:main text};
  924.  
  925. }
  926.  
  927. .video embed{
  928.         width:100%;
  929. z-index:500 !important;
  930. {block:PermalinkPage}
  931. height:350px !important;;
  932. {/block:PermalinkPage}
  933. }
  934.  
  935. .video iframe{
  936.                 width:100%;
  937. z-index:500 !important;
  938. {block:PermalinkPage}
  939. height:350px !important;;
  940. {/block:PermalinkPage}
  941.  
  942. }
  943.  
  944. facebook_like iframe{
  945. width:90%;
  946. height:21px;   
  947. }
  948.  
  949. .text_title a{
  950. font-weight:normal;
  951. font-size:16px;
  952. font-family:'Short Stack';
  953. color:{color:post title};
  954.  
  955. }
  956.  
  957. .text_title a:hover{
  958. color:{color:Links hover};
  959. -moz-transition: all .2s;
  960. -webkit-transition: all .2s;
  961. -o-transition: all .2s;
  962. transition: all .2;
  963. }
  964.  
  965. .text{
  966. overflow:hidden;
  967. text-align:left;
  968. font-size:18px;
  969. color:{color:main text};
  970. font-family:'Short Stack';
  971. {block:indexpage}padding:10px 10px 10px 10px;{/block:indexpage}
  972. {block:ifnottextbackground}{block:permalinkpage}padding:0px 10px 10px 10px;{/block:permalinkpage}{block:ifnottextbackground}
  973. {block:iftextbackground}{block:permalinkpage}padding:10px 10px 10px 10px;{/block:permalinkpage}{block:iftextbackground}
  974. {block:iftextbackground}background-color:{color:text background};{/block:iftextbackground}
  975.  
  976. }
  977.  
  978. .quote{
  979. overflow:hidden;
  980. text-align:left;
  981. font-size:12px;
  982. color:{color:main text};
  983. font-family:'Open Sans';
  984. {block:indexpage}padding:10px 10px 10px 10px;{/block:indexpage}
  985. {block:ifnottextbackground}{block:permalinkpage}padding:0px 10px 10px 10px;{/block:permalinkpage}{block:ifnottextbackground}
  986. {block:iftextbackground}{block:permalinkpage}padding:10px 10px 10px 10px;{/block:permalinkpage}{block:iftextbackground}
  987. {block:iftextbackground}background-color:{color:text background};{/block:iftextbackground}
  988. }
  989.  
  990. .quote_title a{
  991. font-weight:normal;
  992. font-size:16px;
  993. font-family:'Open Sans';
  994. color:{color:post title};
  995. margin-bottom:10px;
  996.  
  997. }
  998. .quote_title{
  999. font-weight:normal;
  1000. font-size:16px;
  1001. font-family:'Open Sans';
  1002. color:{color:post title};
  1003. margin-bottom:10px;
  1004.  
  1005. }
  1006.  
  1007. .quote_title a:hover{
  1008. color:{color:Links hover};
  1009. -moz-transition: all .2s;
  1010. -webkit-transition: all .2s;
  1011. -o-transition: all .2s;
  1012. transition: all .2;
  1013. }
  1014.  
  1015. blockquote {
  1016. margin-left: 5px;
  1017. padding-left:10px;
  1018. border-left: 3px solid {color:Links};
  1019. }
  1020.  
  1021. .link{
  1022. overflow:hidden;
  1023. text-align:left;
  1024. font-size:18px;
  1025. color:{color:main text};
  1026. font-family:'Short Stacj';
  1027. {block:indexpage}padding:10px 10px 10px 10px;{/block:indexpage}
  1028. {block:ifnottextbackground}{block:permalinkpage}padding:0px 10px 10px 10px;{/block:permalinkpage}{block:ifnottextbackground}
  1029. {block:iftextbackground}{block:permalinkpage}padding:10px 10px 10px 10px;{/block:permalinkpage}{block:iftextbackground}
  1030. text-indent: 0;
  1031. {block:iftextbackground}background-color:{color:text background};{/block:iftextbackground}
  1032.  
  1033. }
  1034.  
  1035. .link_title a{
  1036. font-weight:normal;
  1037. font-size:18px;
  1038. border-bottom:2px solid {color:post title};
  1039. line-height:20px;
  1040. font-family:'Short Stack';
  1041. color:{color:post title};
  1042. }
  1043.  
  1044. .link_title a:hover{
  1045. color:{color:Links Hover};
  1046. border-bottom:2px solid {color:Links Hover};
  1047. -moz-transition: all .2s;
  1048. -webkit-transition: all .2s;
  1049. -o-transition: all .2s;
  1050. transition: all .2s;
  1051. }
  1052.  
  1053. #tags{
  1054. font-weight:normal;
  1055. font-size:11px;
  1056. font-family:'Short Stack';
  1057. color:{color:main text};
  1058. padding-left:20px;
  1059. width:350px;
  1060. padding-bottom:5px;
  1061. }
  1062.  
  1063. #tags a{
  1064. color:{color:main text};
  1065. }
  1066.  
  1067. #time{
  1068. width:350px;
  1069. font-weight:normal;
  1070. font-size:11px;
  1071. font-family:'Open Sans';
  1072. color:{color:main text};
  1073. padding-left:20px;
  1074. overflow:ellipsis;
  1075. padding-bottom:5px;
  1076. }
  1077.  
  1078. #time a{
  1079. color:{color:main text};
  1080. }
  1081.  
  1082. #time a:hover{color:{color:links hover};}
  1083.  
  1084. #likes{
  1085. width:350px;
  1086. font-weight:normal;
  1087. font-size:11px;
  1088. font-family:'Short Stack';
  1089. color:{color:main text};
  1090. padding-left:20px;
  1091.  
  1092. padding-bottom:5px;}
  1093.  
  1094. /*Booleans */
  1095.  
  1096. {block:IndexPage}
  1097. .captions{
  1098. display:none;
  1099. visibility:hidden;
  1100. height:0px;    
  1101. margin:0;
  1102. padding:0;
  1103. }
  1104. {/block:IndexPage}
  1105.  
  1106. .captions{
  1107. display:none;
  1108. visibility:hidden;
  1109. height:0px;    
  1110. margin:0;
  1111. padding:0;
  1112. }
  1113.  
  1114.  
  1115. .notes2{
  1116. position:absolute;
  1117. bottom:3px;
  1118. left:8px;
  1119. padding:0;
  1120. z-index:499;
  1121. display:none;
  1122. }
  1123. .notes3{
  1124. position:relative;
  1125. bottom:3px;
  1126. left:0px;
  1127. padding:0;
  1128. z-index:499;
  1129. display:none;
  1130. }
  1131.  
  1132. .page_title{
  1133. font-family:{font:Page Title}; 
  1134. color:{color:Page Title};      
  1135. font-size:24px;
  1136. }
  1137.  
  1138. .page_title a{
  1139. font-family:{font:Page Title}; 
  1140. color:{color:Page Title};      
  1141. font-size:24px;
  1142. text-decoration:none;
  1143. }
  1144.  
  1145.  
  1146.  
  1147. .photoset:hover .notes2{
  1148. display:block;
  1149. }
  1150. .photo:hover .notes2{
  1151. display:block;
  1152. }
  1153. .text:hover .notes3{
  1154. display:block;
  1155. }
  1156. .link:hover .notes3{
  1157. display:block;
  1158. }
  1159. .quote:hover .notes3{
  1160. display:block;
  1161. }
  1162. .chat:hover .notes3{
  1163. display:block;
  1164. }
  1165. .video embed:hover .notes3{
  1166. display:block;
  1167. }
  1168. .video iframe:hover .notes3{
  1169. display:block;
  1170. }
  1171. .video:hover .notes3{
  1172. display:block;
  1173. }
  1174.  
  1175.  
  1176. .blog_title7 {
  1177. font-size:22px;
  1178. position: absolute;
  1179. float:left;
  1180. font-weight:500;
  1181. font-style:italic;
  1182. font-family: Helvetica, sans-serif;
  1183. color: #B4B4BC;
  1184. text-transform: uppercase;
  1185. margin:0px;
  1186. float:left;
  1187. z-index:483;
  1188. padding:21px 15px 0px 31px;
  1189. {block:iflogoImage}display:none{/block:iflogoImage}
  1190. }
  1191. .blog_title6 {
  1192. font-size:22px;
  1193. position: absolute;
  1194. float:left;
  1195. font-weight:500;
  1196. font-style:italic;
  1197. font-family: Helvetica, sans-serif;
  1198. color: #F46429;
  1199. text-transform: uppercase;
  1200. margin:0px;
  1201. float:left;
  1202. z-index:484;
  1203. padding:20px 0px 0px 30px;
  1204. {block:iflogoImage}display:none{/block:iflogoImage}
  1205. }
  1206. .blog_title5 {
  1207. font-size:22px;
  1208. position: absolute;
  1209. float:left;
  1210. font-weight:500;
  1211. font-style:italic;
  1212. font-family: Helvetica, sans-serif;
  1213. color:#B41639;
  1214. text-transform: uppercase;
  1215. margin:0px;
  1216. float:left;
  1217. z-index:485;
  1218. padding:19px 0px 0px 29px;
  1219. {block:iflogoImage}display:none{/block:iflogoImage}
  1220. }
  1221. .blog_title4 {
  1222. font-size:22px;
  1223. position: absolute;
  1224. float:left;
  1225. font-weight:500;
  1226. font-style:italic;
  1227. font-family: Helvetica, sans-serif;
  1228. color:#644697;
  1229. text-transform: uppercase;
  1230. margin:0px;
  1231. float:left;
  1232. z-index:486;
  1233. padding:18px 0px 0px 28px;
  1234. {block:iflogoImage}display:none{/block:iflogoImage}
  1235. }
  1236. .blog_title3 {
  1237. font-size:22px;
  1238. position: absolute;
  1239. float:left;
  1240. font-weight:500;
  1241. font-style:italic;
  1242. font-family: Helvetica, sans-serif;
  1243. color:#124B99;
  1244. text-transform: uppercase;
  1245. margin:0px;
  1246. float:left;
  1247. z-index:487;
  1248. padding:17px 0px 0px 27px;
  1249. {block:iflogoImage}display:none{/block:iflogoImage}
  1250. }
  1251. .blog_title2 {
  1252. font-size:22px;
  1253. position: absolute;
  1254. float:left;
  1255. font-weight:500;
  1256. font-style:italic;
  1257. font-family: Helvetica, sans-serif;
  1258. color:#086AA6;
  1259. text-transform: uppercase;
  1260. margin:0px;
  1261. float:left;
  1262. z-index:488;
  1263. padding:16px 0px 0px 26px;
  1264. {block:iflogoImage}display:none{/block:iflogoImage}
  1265. }
  1266. .blog_title_version_a a
  1267. {
  1268. z-index:489;
  1269. position: relative;
  1270. font-weight:500;
  1271. color:{color:blog};
  1272. text-transform: uppercase;
  1273. margin:0px;
  1274. float:left;
  1275. padding:15px 0px 0px 25px;
  1276. {block:iflogoImage}display:none{/block:iflogoImage}
  1277. }
  1278. .terminal
  1279. {
  1280.         font-size:22px;
  1281.         font-family: 'Terminal Dosis', sans-serif;
  1282. }
  1283. .stardos
  1284. {
  1285.         font-size:26px;
  1286.         font-family: 'Stardos Stencil', cursive;
  1287. }
  1288. .blog_title a{
  1289. font-size:22px;
  1290. z-index:489;
  1291. position: relative;
  1292. font-weight:500;
  1293. font-style:italic;
  1294. font-family: Helvetica, sans-serif;
  1295. color:{color:blog};
  1296. text-transform: uppercase;
  1297. margin:0px;
  1298. float:left;
  1299. padding:15px 0px 0px 25px;
  1300. {block:iflogoImage}display:none{/block:iflogoImage}
  1301. }
  1302.  
  1303. .blog_title_2
  1304. {
  1305. z-index:489;
  1306. margin-left:auto;
  1307. margin-right:auto;
  1308. width:100%;    
  1309. text-align:center;
  1310. font-weight: normal; font-size:60px;
  1311. color:{color:blog};
  1312. }
  1313.  
  1314. .blog_title_2 a
  1315. {
  1316. color:{color:blog};
  1317. text-transform: uppercase;     
  1318. font-weight: normal; font-size:60px;
  1319. text-decoration:none;
  1320. }
  1321. .logo2_image
  1322. {
  1323. margin-bottom:20px;    
  1324.  
  1325. }
  1326. #logo2
  1327. {
  1328. z-index:489;
  1329. margin-left:auto;
  1330. margin-right:auto;
  1331. text-align:center;
  1332. width:auto;    
  1333. }
  1334.  
  1335. .blog_title a:hover{
  1336. color:{color:bloghover};
  1337. }
  1338.  
  1339. header_title{
  1340. padding:10px 0px 0px 20px;
  1341. border:1px solid red;
  1342. top:0px;
  1343. position:fixed;
  1344. }
  1345. #posts{
  1346.  
  1347.         {block:ifheaderstyleA}
  1348.        
  1349.         {block:iffixheader}
  1350.         padding-top:50px;
  1351.         {/block:iffixheader}
  1352.  
  1353.         {/block:ifheaderstyleA}
  1354.        
  1355.        
  1356.        
  1357. }
  1358.  
  1359.  
  1360.  
  1361. #header_menu{
  1362.        
  1363.         {block:ifnotheaderstyleA}
  1364.         display:none;
  1365.         {/block:ifnotheaderstyleA}
  1366. width:100%;
  1367. height:60px;
  1368. z-index:503;
  1369. {block:ifnottransparentheader}
  1370. background-color:{color:header};
  1371. {/block:ifnottransparentheader}
  1372.  
  1373. {block:iftransparentheader}
  1374. background-color:{color:Background};
  1375. {block:ifbackgroundimage}background-image:url('{image:background}');
  1376. background-repeat:repeat;
  1377. {/block:ifbackgroundimage}
  1378. {/block:iftransparentheader}
  1379.  
  1380.  
  1381. {block:iffixheader}
  1382. position:fixed;
  1383. margin-bottom:80px;
  1384. {/block:iffixheader}
  1385. top:0px;
  1386. left:0px;
  1387. }
  1388. #header_menu2{
  1389.         {block:ifnotheaderstyleB}
  1390.         display:none;
  1391.         {/block:ifnotheaderstyleB}
  1392. width:100%;
  1393. height:auto;
  1394. z-index:503;
  1395. padding-top:20px;
  1396. {block:ifnottransparentheader}
  1397. background-color:{color:header};
  1398. {/block:ifnottransparentheader}
  1399.  
  1400. {block:iftransparentheader}
  1401. background-color:{color:Background};
  1402. {block:ifbackgroundimage}background-image:url('{image:background}');
  1403. background-repeat:repeat;
  1404. {/block:ifbackgroundimage}
  1405. {/block:iftransparentheader}
  1406.  
  1407.  
  1408.  
  1409.  
  1410. {block:iffixheader}
  1411. position:fixed;
  1412. {/block:iffixheader}
  1413. top:0px;
  1414. left:0px;
  1415. }
  1416.  
  1417. #page_menu{
  1418. display:none;
  1419. width:100%;
  1420. height:auto;
  1421. z-index:501;
  1422. margin-top:60px;
  1423. {block:ifnottransparentheader}
  1424. background-color:{color:header};
  1425. {/block:ifnottransparentheader}
  1426. {block:iftransparentheader}
  1427. background-color:{color:Background};
  1428. {block:ifbackgroundimage}background-image:url('{image:background}');
  1429. background-repeat:repeat;
  1430. {/block:ifbackgroundimage}
  1431. {/block:iftransparentheader}
  1432. position:absolute;
  1433. {block:iffixheader}
  1434. position:fixed;
  1435. {/block:iffixheader}
  1436. color:{color:description};
  1437. top:0px;
  1438. left:0px;
  1439. }
  1440. #page_content{
  1441. display:none;
  1442. visibility:hidden;
  1443. width:100%;
  1444. height:140px;
  1445. z-index:508;
  1446. position:fixed;
  1447. top:60px;
  1448. left:0px;
  1449. }
  1450. #page_curl{
  1451. margin-top:0px;
  1452. margin-left:20px;
  1453. z-index:16000000;
  1454. float:left;
  1455. }
  1456. #page_plus{
  1457. margin-top:8px;
  1458. margin-left:15px;
  1459. z-index:16000000;
  1460. font-size:30px;
  1461. color:{color:description};
  1462. font-family:'Short Stack';
  1463. float:left;
  1464. }
  1465. #nav{
  1466. float:left;
  1467. font-size:20px;
  1468. text-transform:uppercase;
  1469. margin-top:20px;
  1470. margin-left:25px;
  1471. }
  1472.  
  1473. #nav a{
  1474. display:block;
  1475. float:left;
  1476. margin-right:30px;
  1477. color:{color:Header Links};
  1478. border-top:0px solid {color:Header Links};
  1479. text-decoration:none;
  1480. -moz-transition: all .2s;
  1481. -webkit-transition: all .2s;
  1482. -o-transition: all .2s;
  1483. transition: all .2;
  1484. line-height:20px;
  1485. }
  1486.  
  1487. #nav a:hover{
  1488. color:{color:Links Hover};
  1489. border-top:3px solid {color:Header Links};
  1490. -moz-transition: all .2s;
  1491. -webkit-transition: all .2s;
  1492. -o-transition: all .2s;
  1493. transition: all .2s;}
  1494.  
  1495. #nav2{
  1496.         text-align:center;
  1497. font-size:24px;
  1498. text-transform:uppercase;
  1499. margin-bottom:20px;
  1500. margin-left:auto;
  1501. margin-right:auto;
  1502. }
  1503.  
  1504. #nav2 a{
  1505. color:{color:Header Links};
  1506. margin-right:15px;
  1507. margin-left:15px;
  1508. border-top:0px solid {color:Header Links};
  1509. text-decoration:none;
  1510. -moz-transition: all .2s;
  1511. -webkit-transition: all .2s;
  1512. -o-transition: all .2s;
  1513. transition: all .2;
  1514. line-height:20px;
  1515. }
  1516.  
  1517. #nav2 a:hover{
  1518. color:{color:Links Hover};
  1519. border-top:3px solid {color:Header Links};
  1520. -moz-transition: all .2s;
  1521. -webkit-transition: all .2s;
  1522. -o-transition: all .2s;
  1523. transition: all .2s;}
  1524.  
  1525.  
  1526. #description{
  1527. font-family:'Short Stack';
  1528. width:400px;
  1529. margin-left:25px;
  1530. height:auto;
  1531. float:left;
  1532. font-size:20px;
  1533. margin-bottom:20px;
  1534. color:{color:description};
  1535. }
  1536.  
  1537. #description2{
  1538. font-family:'Short Stack';
  1539. text-align:center;
  1540. margin-left:auto;
  1541. margin-right:auto;
  1542. width:50%;
  1543. height:auto;
  1544. font-size:20px;
  1545. padding-bottom:20px;
  1546. color:{color:description};
  1547. }
  1548. #profile_picture
  1549. {
  1550. font-family:'Open Sans';
  1551. width:70px;
  1552. margin-left:25px;
  1553. height:auto;
  1554. float:left;
  1555. font-size:12px;
  1556. margin-bottom:20px;
  1557. }
  1558. #my_likes
  1559. {
  1560. font-family:'Open Sans';
  1561. width:auto;
  1562. margin-left:25px;
  1563. height:auto;
  1564. float:left;
  1565. font-size:12px;
  1566.  
  1567. margin-bottom:20px;
  1568. color:{color:description} !important;
  1569. }
  1570.  
  1571. ul#likes {
  1572.                 list-style-type: none;
  1573.                 margin: 0 0 0 0;
  1574.                 padding: 0 0 0 0;
  1575.             }
  1576. li.like_post img
  1577. {
  1578. border:3px solid {color:links};
  1579. }
  1580.                 li.like_post {
  1581.                     /* Should match the width specified in the Likes tag */
  1582.                     width: 100px;
  1583.                     padding:0;
  1584.                     float: left;
  1585.                 }
  1586. li.like_caption
  1587. {
  1588. display:none;
  1589. }
  1590.                  
  1591.  
  1592.                   li.like_post blockquote {
  1593.                       display:none;
  1594.                   }
  1595.  
  1596.                   li.like_post ol,
  1597.                   li.like_post ul {
  1598.                       margin: 0 0 0 0;
  1599.                       padding: 0;
  1600.                   }
  1601.  
  1602.                   li.like_post .like_link a {
  1603.                       font-weight: bold;
  1604.                   }
  1605.  
  1606.                   li.like_post .like_title {
  1607.                       font-weight: bold;
  1608.                   }
  1609.  
  1610.                   li.like_post .post_info_bottom {
  1611.                       margin: 0 0 0 0;
  1612.                       display: block !important;
  1613.                   }
  1614.  
  1615.  
  1616. #profile_picture img
  1617. {
  1618. border:3px solid {color:links};
  1619. }
  1620. #toTop{
  1621. position:fixed;
  1622. right:5px;
  1623. bottom:5px;
  1624. padding:10px;
  1625. border:0px;
  1626. z-index:500;
  1627.  
  1628. }
  1629.  
  1630. .perma_notes {
  1631.  width:100%;;
  1632. }
  1633. .perma_notes .clear {
  1634.  margin:0;
  1635.  padding:0;
  1636.  height:0px;
  1637. }
  1638.  
  1639. .perma_notes .avatar {
  1640.  border:none;
  1641.  margin:0;
  1642.  padding:0;
  1643. }
  1644. .perma_notes ol {
  1645.  margin:0;
  1646.  padding:0;
  1647. }
  1648. .perma_notes li {
  1649.  margin:0;
  1650.  padding:0;
  1651.  width:30px;
  1652.  list-style:none;
  1653.  border:none;
  1654.  float:left;
  1655.  margin-right:4px;
  1656. margin-bottom:4px;
  1657. }
  1658. .perma_notes .note .action {
  1659.  display:none;
  1660.  visibility:hidden;
  1661.  margin:0;
  1662.  padding:0;
  1663. }
  1664.  .more_box{
  1665. width:30px;
  1666. height:30px;
  1667. color:red;
  1668.  margin:0;
  1669.  padding:0;
  1670. float:left;
  1671. }
  1672. .more_notes_link
  1673. {
  1674.  width:30px;
  1675. height:30px;
  1676. font-size:16px;
  1677. background-color:{color:header};
  1678. color:{color:header links};
  1679. }
  1680. .more_notes_link_container
  1681. {
  1682.  margin:0;
  1683.  padding:0;
  1684.  width:30px;
  1685. height:30px;
  1686.  list-style:none;
  1687.  border:none;
  1688.  float:left;
  1689.  margin-right:4px;
  1690. margin-bottom:4px;
  1691. background-color:{color:header};
  1692. color:{color:header links};
  1693. }
  1694.  
  1695. .note more_notes_link_container li a
  1696. {
  1697. color:{color:header links};
  1698. }
  1699.  
  1700. .perma_notes blockquote
  1701. {
  1702. display:none;  
  1703. }
  1704.  
  1705. .post
  1706. {
  1707. margin-top:{block:ifpostpadding}{text:Post padding}px;{/block:ifpostpadding}
  1708. margin-bottom:{block:ifpostpadding}{text:Post padding}px;{/block:ifpostpadding}
  1709. margin-left:0;
  1710. margin-right:0;
  1711.  
  1712. }
  1713. .column
  1714. {
  1715. margin-left:{block:ifpostpadding}{text:Post padding}px;{/block:ifpostpadding}  
  1716. margin-right:0px;      
  1717. }
  1718. .column0
  1719. {
  1720. margin-left:{block:ifpostpadding}{text:Post padding}px;{/block:ifpostpadding}  
  1721. margin-right:0px;
  1722. }
  1723. .columnlast
  1724. {
  1725. margin-right:{block:ifpostpadding}{text:Post padding}px;{/block:ifpostpadding} 
  1726. {
  1727. margin-left:{block:ifpostpadding}{text:Post padding}px;{/block:ifpostpadding}
  1728. }
  1729.  
  1730. #toTop {
  1731.         display:none;
  1732.         text-decoration:none;
  1733.         position:fixed;
  1734.         bottom:10px;
  1735.         right:10px;
  1736.         overflow:hidden;
  1737.         width:51px;
  1738.         height:51px;
  1739.         border:none;
  1740.         text-indent:-999px;
  1741.         background-image:url(http://lab.mattvarone.com/projects/jquery/totop/img/ui.totop.png);
  1742. }
  1743.  
  1744. #totop_image
  1745. {
  1746. background-image:url(http://www.themecloud.co/themes/narnia/totop_1.png);
  1747. width:51px;
  1748. height:51px
  1749. }
  1750.  
  1751. #toTopHover {
  1752.         background-image:url(http://lab.mattvarone.com/projects/jquery/totop/img/ui.totop.png);
  1753.         width:51px;
  1754.         height:51px;
  1755.         display:block;
  1756.         overflow:hidden;
  1757.         float:left;
  1758.         opacity: 0;
  1759.         -moz-opacity: 0;
  1760.         filter:alpha(opacity=0);
  1761. }
  1762.  
  1763. #toTop:active, #toTop:focus {
  1764.         outline:none;
  1765. }
  1766.  
  1767. .corner
  1768. {
  1769. position:fixed;z-index:60000;color:red;
  1770. display: block;  
  1771.     width: 200px;  
  1772.     height: 200px;  
  1773.      
  1774.     top: -25px;  
  1775.     right: -25px;  
  1776.     -webkit-transform: rotate(45deg);  
  1777.     -moz-transform: rotate(45deg);  
  1778.     -o-transform: rotate(45deg);  
  1779.  
  1780. }
  1781. .bebas
  1782. {
  1783. font-size:36px;
  1784. font-family: 'BebasNeueRegular', sans-serif;
  1785. }
  1786. </style>
  1787.  
  1788. <script>
  1789. var IsOpen = "no";
  1790. function ShowMenu()
  1791. {
  1792. if (IsOpen == "no")
  1793. {
  1794. $("#page_menu").slideDown("slow");
  1795. document.getElementById('page_plus').innerHTML = ' - ';
  1796. IsOpen="yes";
  1797. }else
  1798. {
  1799. $("#page_menu").slideUp("slow");
  1800. document.getElementById('page_plus').innerHTML = '+ ';
  1801. IsOpen="no";
  1802. }
  1803. }
  1804. </script>
  1805. <script>
  1806. var IsOpen2 = "no";
  1807. function ShowMenu2()
  1808. {
  1809. if (IsOpen2 == "no")
  1810. {
  1811.        
  1812. $("#header_menu").slideDown("slow");
  1813. $("#page_menu").slideDown("slow");
  1814.  
  1815. document.getElementById('page_plus').innerHTML = '';
  1816. IsOpen2="yes";
  1817. }else
  1818. {
  1819.         $("#header_menu").slideUp("slow");
  1820. $("#page_menu").slideUp("slow");
  1821. document.getElementById('page_plus').innerHTML = '';
  1822. IsOpen2="no";
  1823. }
  1824. }
  1825. </script>
  1826. <script type="text/javascript">
  1827. function changeText(){
  1828.        
  1829. }
  1830. </script>
  1831.  
  1832.  
  1833.  
  1834.  
  1835.  
  1836. {block:iflightbox}
  1837. <script>
  1838. $(document).ready(function() {
  1839. /* This is basic - uses default settings */
  1840. $("a#single_image").fancybox();
  1841. /* Using custom settings */
  1842. $("a#inline").fancybox({
  1843. 'hideOnContentClick': true
  1844. });
  1845.  
  1846.  
  1847. $(".various3").fancybox({
  1848.                                 'width'                         : '50%',
  1849.                                 'height'                        : '30%',
  1850.                                 'autoScale'                     : false,
  1851.                                 'transitionIn'          : 'none',
  1852.                                 'transitionOut'         : 'none',
  1853.                                 'type'                          : 'iframe'
  1854.                         });
  1855. });
  1856. </script>
  1857.  
  1858. {/block:iflightbox}
  1859.  
  1860.  
  1861.         <script src="http://www.themecloud.co/themes/narnia/totop.js" type="text/javascript"></script> 
  1862.         <script type="text/javascript">
  1863.                 $(document).ready(function() {
  1864.                         /*
  1865.                         var defaults = {
  1866.                                 containerID: 'moccaUItoTop', // fading element id
  1867.                                 containerHoverClass: 'moccaUIhover', // fading element hover class
  1868.                                 scrollSpeed: 1200,
  1869.                                 easingType: 'linear'
  1870.                         };
  1871.                         */
  1872.                        
  1873.                         {block:ifheaderstyleB}
  1874.        
  1875.        
  1876.  
  1877.         {/block:ifheaderstyleB}
  1878.                        
  1879.                         $().UItoTop({ easingType: 'easeOutQuart' });
  1880.                        
  1881.                 });
  1882.         </script>
  1883. </head>
  1884.  
  1885.  
  1886. <div id="link">
  1887. <font size=5>STATS+NETWORKS
  1888. <div id="ext">
  1889. <center><p>FREEHOSTEDSCRIPTS CODE HERE</script>
  1890. <p> NETWORKS <br>
  1891. NETWORKS CODES
  1892. <br />
  1893. <br />
  1894. <Center></Center>
  1895. </div>
  1896. </div>
  1897.  
  1898. <script type="text/javascript">
  1899.   window.___gcfg = {lang: 'en-GB'};
  1900.  
  1901.   (function() {
  1902.     var po = document.createElement('script'); po.type = 'text/javascript'; po.async = true;
  1903.     po.src = 'https://apis.google.com/js/plusone.js';
  1904.     var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(po, s);
  1905.   })();
  1906. </script>
  1907.  
  1908. {block:ifnotheaderstyleA}
  1909. {block:ifnotheaderstyleB}
  1910.  
  1911. <div class="corner" onclick="ShowMenu2()" style="cursor:pointer; position:fixed;z-index:60000;background-color:{color:header}; border:1px solid {color:header links}; display: block; width: 60px; height: 60px; top:-35px; left:-35px; -webkit-transform: rotate(45deg);-moz-transform: rotate(45deg); -o-transform: rotate(45deg); ">
  1912. </div>
  1913. {/block:ifnotheaderstyleB}
  1914. {/block:ifnotheaderstyleA}
  1915.  
  1916. <div id="header_menu">
  1917.  
  1918.  
  1919. <div id="header_title">
  1920.  
  1921. {block:IfLogoImage}<a href="/"><img border="0" style="max-height:40px; float:left; margin:10px 0px 0px 20px;" src="{image:Logo}"/></a>{/block:IfLogoImage}
  1922.  
  1923. {block:IfNotLogoImage}
  1924. {block:ifBlogTitleStyleA}
  1925. <div class="blog_title_version_a"><a class="terminal" href="/">{Title}</a></div>
  1926. {/block:ifBlogTitleStyleA}
  1927. {block:ifBlogTitleStyleB}
  1928. <div class="blog_title_version_a"><a style="font-size:36px;" class="bebas" href="/">{Title}</a></div>
  1929. {block:ifBlogTitleStyleB}
  1930. {block:ifBlogTitleStyleC}
  1931. <div class="blog_title_version_a"><a class="stardos" href="/">{Title}</a></div>
  1932. {block:ifBlogTitleStyleC}
  1933. {/block:IfNotLogoImage}
  1934.  
  1935. {block:ifflag}<div id="page_curl"><img onclick="ShowMenu();"  style="cursor:pointer;" src="http://24.media.tumblr.com/tumblr_lqv3wxBZyu1r0kskpo1_100.png" border="0" /></div>{/block:ifflag}
  1936.  
  1937. <div id="page_plus" onclick="ShowMenu();changeText();"  style="{block:headerstyleA}width:20px;{/block:headerstyleA}cursor:pointer; margin-left:20px;">+</div>
  1938.  
  1939.  
  1940.  
  1941. <div id="nav">
  1942.  
  1943.  
  1944. </div>
  1945.  
  1946.  
  1947. </div></div>
  1948.  
  1949.  
  1950.  
  1951. <div id="header_menu2">
  1952.         <div id="logo2">
  1953.         {block:IfLogoImage}<a href="/"><img class="logo2_image" border="0" src="{image:Logo}"/></a>{/block:IfLogoImage}
  1954.  
  1955. {block:IfNotLogoImage}
  1956.  
  1957. {block:ifBlogTitleStyleA}
  1958. <div class="blog_title_2"><a class="terminal" href="/">{Title}</a></div>
  1959. {/block:ifBlogTitleStyleA}
  1960. {block:ifBlogTitleStyleB}
  1961. <div class="blog_title_2"><a  class="bebas" href="/">{Title}</a></div>
  1962. {block:ifBlogTitleStyleB}
  1963. {block:ifBlogTitleStyleC}
  1964. <div class="blog_title_2"><a class="stardos" href="/">{Title}</a></div>
  1965. {block:ifBlogTitleStyleC}
  1966.  
  1967.  
  1968. {/block:IfNotLogoImage}
  1969. </div>
  1970.  
  1971. <div id="nav2">
  1972.  
  1973. <div id="link2">
  1974. message
  1975. <div id="ext2">
  1976. <p>FAQ AND ETC GOES HERE<iframe frameborder="0" scrolling="no" width="100%" height="150" src="http://www.tumblr.com/ask_form/bikinis-in-the-sun.tumblr.com" style="background-color:transparent; overflow:hidden;" id="ask_form"></iframe>
  1977. </iframe>
  1978. </div>
  1979. </div>
  1980.  
  1981. <div id="link3">
  1982. SUBMIT
  1983. <div id="ext3">
  1984. <iframe frameborder="0" scrolling="no" width="100%" height="750" src="http://www.tumblr.com/submit_form/bikinis-in-the-sun.tumblr.com" style="background-color:transparent; overflow:hidden;"></iframe>
  1985.  
  1986. </div>
  1987. </div>
  1988.  
  1989. <div id="link4">
  1990. Links
  1991. <div id="ext4">
  1992. <p>CONTENT GOES HERE</p>
  1993. </div>
  1994. </div>
  1995.  
  1996. <div id="link5">
  1997. LINK
  1998. <div id="ext5">
  1999. <p>CONTENT GOES HERE</p>
  2000. </div>
  2001.  
  2002. <p>
  2003. {block:Description}
  2004. <div id="description2">{description}
  2005. </div></div>{/block:Description}
  2006. </div>
  2007.  
  2008. <div id="page_menu">      
  2009. {block:ifshowportrait}
  2010. <div id="profile_picture">
  2011. <img src="{PortraitURL-64}" />
  2012. </div>
  2013. {/block:ifshowportrait}
  2014. {block:Description}
  2015. <div id="description">{Description}</div>{/block:Description}
  2016.  
  2017. {block:Likes}
  2018. <div id="my_likes">
  2019.             <div id="likes_container">
  2020.                 <a href="http://www.tumblr.com/liked/by/{Name}">I Like</a>
  2021.  
  2022.                {Likes limit="1"}
  2023.  
  2024.             </div>
  2025.            
  2026.                
  2027.                
  2028.                 </div>
  2029.         {/block:Likes}
  2030.        
  2031. </div>
  2032.  
  2033.  
  2034.  
  2035. {block:IndexPage}
  2036. <div id="posts_hidden" style="display:none;visibility:hidden;">
  2037.  
  2038. <POSTS>
  2039.  
  2040.  
  2041.  
  2042.  
  2043.  
  2044.  
  2045. {block:Posts}
  2046.  
  2047.  
  2048. {block:Link}
  2049. <divabc class="post link">
  2050. <divabc class="link_title"><a href="{URL}" {Target}>{Name}</a></divabc>
  2051.  
  2052. {block:Description}
  2053. <divabc class="link_description">{Description}</divabc>
  2054. {/block:Description}
  2055.  
  2056.        <divabc class="notes3" style=" float:right;width:100%;text-align:right;">
  2057.  
  2058. <divabc class="reblog_etc" style="float:left;text-align:right;"><a href="{ReblogURL}" target="_blank"><img src="http://www.themecloud.co/themes/narnia/reblog.png" style="height:20px;cursor:pointer;" alt="reblog" title="reblog" border="0" />
  2059. </a></divabc>
  2060.  
  2061.  
  2062. <divabc class="reblog_etc" style="float:left;text-align:left;margin-left:3px;height:20px;">
  2063. <img height="20" style="height:20px;cursor:pointer;" src="http://www.themecloud.co/themes/narnia/like.png" id="like_image_{PostID}" onclick="LikePost('{PostID}','{ReblogURL}',this)" border="0" alt="like" title="like"/>
  2064. </divabc>
  2065.  
  2066. <divabc class="reblog_etc" style="width:4px;background-image:url(http://www.themecloud.co/themes/narnia/left.png);background-repeat:no-repeat;height:20px;float:left;margin-left:3px;"></divabc>
  2067.  
  2068. <divabc class="reblog_etc" style="font-size:10px;height:20px;margin-top:0px;margin-left:0px;margin-right:0px;float:left;background-image:url(http://www.themecloud.co/themes/narnia/middle.png);background-repeat:repeat-x;color:#FFF;opacity:1;filter:alpha(opacity=100);padding-top:4px;" ><a href="{Permalink}"style="color:white;"><span id="<x>note_count_{PostID}">{NoteCount}</span></a></divabc>
  2069.  
  2070. <divabc class="reblog_etc" style="width:4px;background-image:url(http://www.themecloud.co/themes/narnia/right.png);background-repeat:no-repeat;height:20px;float:left;"></divabc>
  2071. </divabc>
  2072.  
  2073. <divabc class="captions">{Caption}</divabc>
  2074. </divabc><SPLITTER>
  2075. {/block:Link}
  2076.  
  2077.  
  2078.  
  2079.  
  2080.  
  2081. {block:Quote}
  2082. <divabc class="post quote">
  2083.         <divabc class="quote_title"><a href="{Permalink}" {Target}>"{Quote}"</a></divabc>
  2084. {block:Source}
  2085. <divabc class="quote_source" style="text-align:right; padding-top:10px;">- {Source}</divabc>
  2086. {/block:Source}
  2087.  
  2088.  
  2089.    <divabc class="notes3" style=" padding-top:10px; float:right;width:100%;text-align:right;">
  2090.  
  2091. <divabc class="reblog_etc" style="float:left;text-align:right;"><a href="{ReblogURL}" target="_blank"><img src="http://www.themecloud.co/themes/narnia/reblog.png" style="height:20px;cursor:pointer;" alt="reblog" title="reblog" border="0" />
  2092. </a></divabc>
  2093.  
  2094.  
  2095. <divabc class="reblog_etc" style="float:left;text-align:left;margin-left:3px;height:20px;">
  2096. <img height="20" style="height:20px;cursor:pointer;" src="http://www.themecloud.co/themes/narnia/like.png" id="like_image_{PostID}" onclick="LikePost('{PostID}','{ReblogURL}',this)" border="0" alt="like" title="like"/>
  2097. </divabc>
  2098.  
  2099. <divabc class="reblog_etc" style="width:4px;background-image:url(http://www.themecloud.co/themes/narnia/left.png);background-repeat:no-repeat;height:20px;float:left;margin-left:3px;"></divabc>
  2100.  
  2101. <divabc class="reblog_etc" style="font-size:10px;height:20px;margin-top:0px;margin-left:0px;margin-right:0px;float:left;background-image:url(http://www.themecloud.co/themes/narnia/middle.png);background-repeat:repeat-x;color:#FFF;opacity:1;filter:alpha(opacity=100);padding-top:4px;" ><a href="{Permalink}"style="color:white;"><span id="<x>note_count_{PostID}">{NoteCount}</span></a></divabc>
  2102.  
  2103. <divabc class="reblog_etc" style="width:4px;background-image:url(http://www.themecloud.co/themes/narnia/right.png);background-repeat:no-repeat;height:20px;float:left;"></divabc>
  2104. </divabc>
  2105.  
  2106. <divabc class="captions">{Caption}</divabc>
  2107. </divabc><SPLITTER>
  2108. {/block:Quote}
  2109.  
  2110.  
  2111.  
  2112.  
  2113.  
  2114. {block:Photoset}
  2115. <divabc class="post photoset">
  2116. {block:Photos}
  2117. <a href="{permalink}"><img src="{PhotoURL-500}" border="0" /></a>
  2118. {/block:Photos}
  2119. <divabc class="notes2" style="float:right;width:100%;text-align:right;">
  2120. <divabc class="reblog_etc" style="float:left;text-align:right;"><a href="{ReblogURL}" target="_blank"><img src="http://www.themecloud.co/themes/narnia/reblog.png" style="height:20px;cursor:pointer;" alt="reblog" title="reblog" border="0" />
  2121. </a></divabc>
  2122. <divabc class="reblog_etc" style="float:left;text-align:left;margin-left:3px;height:20px;">
  2123. <img height="20" style="height:20px;cursor:pointer;" src="http://www.themecloud.co/themes/narnia/like.png" id="like_image_{PostID}" onclick="LikePost('{PostID}','{ReblogURL}',this)" border="0" alt="like" title="like"/>
  2124. </divabc>
  2125.  
  2126. <divabc class="reblog_etc" style="width:4px;background-image:url(http://www.themecloud.co/themes/narnia/left.png);background-repeat:no-repeat;height:20px;float:left;margin-left:3px;"></divabc>
  2127.  
  2128. <divabc class="reblog_etc" style="font-size:10px;height:20px;margin-top:0px;margin-left:0px;margin-right:0px;float:left;background-image:url(http://www.themecloud.co/themes/narnia/middle.png);background-repeat:repeat-x;color:#FFF;opacity:1;filter:alpha(opacity=100);padding-top:4px;" ><a href="{Permalink}"style="color:white;"><span id="<x>note_count_{PostID}">{NoteCount}</span></a></divabc>
  2129.  
  2130. <divabc class="reblog_etc" style="width:4px;background-image:url(http://www.themecloud.co/themes/narnia/right.png);background-repeat:no-repeat;height:20px;float:left;"></divabc>
  2131. </divabc>
  2132.  
  2133.  
  2134. <divabc class="captions">{Caption}</divabc>
  2135. </divabc><SPLITTER>
  2136. {/block:Photoset}
  2137.  
  2138.  
  2139.  
  2140.  
  2141.  
  2142. {block:Text}
  2143. <divabc class="post text">
  2144.     {block:Title}
  2145.         <divabc class="text_title"><a href="{Permalink}">{Title}</a></divabc>
  2146.     {/block:Title}
  2147.  
  2148.     <divabc class="text_body">{Body}</divabc>
  2149.  
  2150.  
  2151.  
  2152.     <divabc class="notes3" style=" float:right;width:100%;text-align:right;">
  2153.  
  2154. <divabc class="reblog_etc" style="float:left;text-align:right;"><a href="{ReblogURL}" target="_blank"><img src="http://www.themecloud.co/themes/narnia/reblog.png" style="height:20px;cursor:pointer;" alt="reblog" title="reblog" border="0" />
  2155. </a></divabc>
  2156.  
  2157.  
  2158. <divabc class="reblog_etc" style="float:left;text-align:left;margin-left:3px;height:20px;">
  2159. <img height="20" style="height:20px;cursor:pointer;" src="http://www.themecloud.co/themes/narnia/like.png" id="like_image_{PostID}" onclick="LikePost('{PostID}','{ReblogURL}',this)" border="0" alt="like" title="like"/>
  2160. </divabc>
  2161.  
  2162. <divabc class="reblog_etc" style="width:4px;background-image:url(http://www.themecloud.co/themes/narnia/left.png);background-repeat:no-repeat;height:20px;float:left;margin-left:3px;"></divabc>
  2163.  
  2164. <divabc class="reblog_etc" style="font-size:10px;height:20px;margin-top:0px;margin-left:0px;margin-right:0px;float:left;background-image:url(http://www.themecloud.co/themes/narnia/middle.png);background-repeat:repeat-x;color:#FFF;opacity:1;filter:alpha(opacity=100);padding-top:4px;" ><a href="{Permalink}"style="color:white;"><span id="<x>note_count_{PostID}">{NoteCount}</span></a></divabc>
  2165.  
  2166. <divabc class="reblog_etc" style="width:4px;background-image:url(http://www.themecloud.co/themes/narnia/right.png);background-repeat:no-repeat;height:20px;float:left;"></divabc>
  2167. </divabc>
  2168.  
  2169. {block:Caption}{Caption}{/block:Caption}
  2170. </divabc><SPLITTER>
  2171. {/block:Text}
  2172.  
  2173.  
  2174.  
  2175. {block:Video}
  2176. <divabc class="post video">
  2177. {Video-500}
  2178.  
  2179.  <divabc class="notes3" style=" float:right;width:100%;text-align:right;">
  2180.  
  2181. <divabc class="reblog_etc" style="float:left;text-align:right;"><a href="{ReblogURL}" target="_blank"><img src="http://www.themecloud.co/themes/narnia/reblog.png" style="height:20px;cursor:pointer;" alt="reblog" title="reblog" border="0" />
  2182. </a></divabc>
  2183.  
  2184.  
  2185. <divabc class="reblog_etc" style="float:left;text-align:left;margin-left:3px;height:20px;">
  2186. <img height="20" style="height:20px;cursor:pointer;" src="http://www.themecloud.co/themes/narnia/like.png" id="like_image_{PostID}" onclick="LikePost('{PostID}','{ReblogURL}',this)" border="0" alt="like" title="like"/>
  2187. </divabc>
  2188.  
  2189. <divabc class="reblog_etc" style="width:4px;background-image:url(http://www.themecloud.co/themes/narnia/left.png);background-repeat:no-repeat;height:20px;float:left;margin-left:3px;"></divabc>
  2190.  
  2191. <divabc class="reblog_etc" style="font-size:10px;height:20px;margin-top:0px;margin-left:0px;margin-right:0px;float:left;background-image:url(http://www.themecloud.co/themes/narnia/middle.png);background-repeat:repeat-x;color:#FFF;opacity:1;filter:alpha(opacity=100);padding-top:4px;" ><a href="{Permalink}"style="color:white;"><span id="<x>note_count_{PostID}">{NoteCount}</span></a></divabc>
  2192.  
  2193. <divabc class="reblog_etc" style="width:4px;background-image:url(http://www.themecloud.co/themes/narnia/right.png);background-repeat:no-repeat;height:20px;float:left;"></divabc>
  2194. </divabc>
  2195.  
  2196. <divabc class="captions">{Caption}</divabc>
  2197. </divabc><SPLITTER>
  2198. {/block:Video}
  2199.  
  2200.  
  2201.  
  2202.  
  2203. {block:Photo}
  2204. <divabc class="post photo"><a href="{Permalink}"><img src="{PhotoURL-500}" border="0" /></a>
  2205. <divabc class="notes2" style="float:right;width:100%;text-align:right;">
  2206.  
  2207. <divabc class="reblog_etc" style="float:left;text-align:right;"><a href="{ReblogURL}" target="_blank"><img src="http://www.themecloud.co/themes/narnia/reblog.png" style="height:20px;cursor:pointer;" alt="reblog" title="reblog" border="0" />
  2208. </a></divabc>
  2209. <divabc class="reblog_etc" style="float:left;text-align:left;margin-left:3px;height:20px;">
  2210. <img height="20" style="height:20px;cursor:pointer;" src="http://www.themecloud.co/themes/narnia/like.png" id="like_image_{PostID}" onclick="LikePost('{PostID}','{ReblogURL}',this)" border="0" alt="like" title="like"/>
  2211. </divabc>
  2212.  
  2213. <divabc class="reblog_etc" style="width:4px;background-image:url(http://www.themecloud.co/themes/narnia/left.png);background-repeat:no-repeat;height:20px;float:left;margin-left:3px;"></divabc>
  2214.  
  2215. <divabc class="reblog_etc" style="font-size:10px;height:20px;margin-top:0px;margin-left:0px;margin-right:0px;float:left;background-image:url(http://www.themecloud.co/themes/narnia/middle.png);background-repeat:repeat-x;color:#FFF;opacity:1;filter:alpha(opacity=100);padding-top:4px;" ><a href="{Permalink}"style="color:white;"><span id="<x>note_count_{PostID}">{NoteCount}</span></a></divabc>
  2216.  
  2217. <divabc class="reblog_etc" style="width:4px;background-image:url(http://www.themecloud.co/themes/narnia/right.png);background-repeat:no-repeat;height:20px;float:left;"></divabc>
  2218.  
  2219.  
  2220. {block:iflightbox}
  2221. <a id="single_image" href="{PhotoURL-500}" ><img src="http://27.media.tumblr.com/tumblr_lqr0e7QyrS1r0kskpo1_100.png" style="margin-left:3px; border:0px; width:24px; height:20px;cursor:pointer; float:left;" class="reblog_etc" alt=""/></a>
  2222.  
  2223.  
  2224. {/block:iflightbox}
  2225. </divabc>
  2226. </divabc>
  2227.  
  2228. <SPLITTER>
  2229. {/block:Photo}
  2230.  
  2231.  
  2232. {block:Audio}
  2233. <divabc class="post audio">
  2234. {block:AlbumArt}
  2235. <a href="{Permalink}">
  2236. <divabc class="album_art">
  2237. <img style="width:100%; margin-left:auto; margin-right:auto;" src="{AlbumArtURL}" border="0" />
  2238. </divabc>
  2239. </a>
  2240. {/block:AlbumArt}
  2241. <divabc class="audio_player">{AudioPlayerBlack}</divabc>
  2242. <divabc class="notes2" style="float:right;width:100%;text-align:right;">
  2243. <divabc class="reblog_etc" style="float:left;text-align:right;"><a href="{ReblogURL}" target="_blank"><img src="http://www.themecloud.co/themes/narnia/reblog.png" style="height:20px;cursor:pointer;" alt="reblog" title="reblog" border="0" />
  2244. </a></divabc>
  2245. <divabc class="reblog_etc" style="float:left;text-align:left;margin-left:3px;height:20px;">
  2246. <img height="20" style="height:20px;cursor:pointer;" src="http://www.themecloud.co/themes/narnia/like.png" id="like_image_{PostID}" onclick="LikePost('{PostID}','{ReblogURL}',this)" border="0" alt="like" title="like"/>
  2247. </divabc>
  2248.  
  2249. <divabc class="reblog_etc" style="width:4px;background-image:url(http://www.themecloud.co/themes/narnia/left.png);background-repeat:no-repeat;height:20px;float:left;margin-left:3px;"></divabc>
  2250.  
  2251. <divabc class="reblog_etc" style="font-size:10px;height:20px;margin-top:0px;margin-left:0px;margin-right:0px;float:left;background-image:url(http://www.themecloud.co/themes/narnia/middle.png);background-repeat:repeat-x;color:#FFF;opacity:1;filter:alpha(opacity=100);padding-top:4px;" ><a href="{Permalink}"style="color:white;"><span id="<x>note_count_{PostID}">{NoteCount}</span></a></divabc>
  2252.  
  2253. <divabc class="reblog_etc" style="width:4px;background-image:url(http://www.themecloud.co/themes/narnia/right.png);background-repeat:no-repeat;height:20px;float:left;"></divabc>
  2254. </divabc>
  2255.  
  2256. <divabc class="captions">{Caption}</divabc>
  2257. </divabc>
  2258. <SPLITTER>
  2259. {/block:Audio}
  2260.  
  2261.  
  2262.  
  2263. {block:Chat}
  2264. <divabc class="post chat">
  2265.  
  2266. <divabc class="chat_box">
  2267. {block:Title}
  2268. <divabc class="chat_title"><a href="{Permalink}">{Title}</a></divabc>
  2269. {/block:Title}
  2270. {block:Lines}
  2271. <divabc class="chat_line_{Alt}">
  2272. {block:Label}
  2273. <span class="chat_label">{Label}</span>
  2274. {/block:Label}
  2275. <span style="color:{color:main text};">{Line}</span>
  2276. </divabc>
  2277. {/block:Lines}
  2278.  
  2279.    <divabc class="notes3" style=" padding-top:10px; float:right;width:100%;text-align:right;">
  2280.  
  2281. <divabc class="reblog_etc" style="float:left;text-align:right;"><a href="{ReblogURL}" target="_blank"><img src="http://www.themecloud.co/themes/narnia/reblog.png" style="height:20px;cursor:pointer;" alt="reblog" title="reblog" border="0" />
  2282. </a></divabc>
  2283.  
  2284.  
  2285. <divabc class="reblog_etc" style="float:left;text-align:left;margin-left:3px;height:20px;">
  2286. <img height="20" style="height:20px;cursor:pointer;" src="http://www.themecloud.co/themes/narnia/like.png" id="like_image_{PostID}" onclick="LikePost('{PostID}','{ReblogURL}',this)" border="0" alt="like" title="like"/>
  2287. </divabc>
  2288.  
  2289. <divabc class="reblog_etc" style="width:4px;background-image:url(http://www.themecloud.co/themes/narnia/left.png);background-repeat:no-repeat;height:20px;float:left;margin-left:3px;"></divabc>
  2290.  
  2291. <divabc class="reblog_etc" style="font-size:10px;height:20px;margin-top:0px;margin-left:0px;margin-right:0px;float:left;background-image:url(http://www.themecloud.co/themes/narnia/middle.png);background-repeat:repeat-x;color:#FFF;opacity:1;filter:alpha(opacity=100);padding-top:4px;" ><a href="{Permalink}"style="color:white;"><span id="<x>note_count_{PostID}">{NoteCount}</span></a></divabc>
  2292.  
  2293. <divabc class="reblog_etc" style="width:4px;background-image:url(http://www.themecloud.co/themes/narnia/right.png);background-repeat:no-repeat;height:20px;float:left;"></divabc>
  2294. </divabc>
  2295.  
  2296.  
  2297. <divabc class="captions">{Caption}</divabc>
  2298. </divabc>
  2299.  
  2300. </divabc>
  2301.  
  2302. <SPLITTER>
  2303. {/block:Chat}
  2304.  
  2305.  
  2306. {/block:Posts}<POSTS>
  2307.  
  2308. </div>
  2309. {/block:IndexPage}
  2310.  
  2311.  
  2312.  
  2313. <div id="outer_container">
  2314.  
  2315.         {block:IndexPage}
  2316.     <div id="container" style="width:100%;">
  2317.         {block:IndexPage}  
  2318.     {block:PermalinkPage}
  2319.     <div id="container" style="width:1000px;">
  2320.  
  2321.  
  2322.     {/block:PermalinkPage}
  2323.     <div id="posts" style="margin-left:auto; margin-right:auto;">
  2324.  
  2325.  
  2326.  
  2327.  
  2328.  
  2329.  
  2330.  
  2331.  
  2332.  
  2333.  
  2334.  
  2335.  
  2336.  
  2337.  
  2338.     {block:PermalinkPage}
  2339.  
  2340.     {block:Posts}
  2341.  
  2342.  
  2343. {block:Link}
  2344. <div class="post" style="width:1000px;">
  2345.  
  2346. <div style="width:590px;float:left; " class="link">
  2347.  <div class="link_title"><a href="{URL}" {Target}>{Name}</a></div>
  2348.  {block:Description}
  2349. <div class="link_description">{Description}</div>
  2350.  {/block:Description}
  2351. </div>
  2352.  
  2353. <div style="width:370px; float:left; overflow:hidden;">
  2354.  
  2355. {block:NoteCount}<span id="likes"><span style="padding-right:10px; font-size:15px; color:{color:Links}; font-family:'PictosRegular';">k</span>This post has {NoteCountWithLabel}</span> </br>
  2356. <div style="height:5px; width:370px;"> </div>{/block:NoteCount}
  2357.  
  2358. {block:Date} <span id="time"><span style="padding-right:10px; font-size:15px; color:{color:Links}; font-family:'PictosRegular';">t</span>This was posted {TimeAgo}</span></br>
  2359. <div style="height:5px; width:370px;"> </div>{/block:Date}    
  2360.  
  2361. {block:RebloggedFrom}<span id="time"><span style="padding-right:10px; font-size:15px; color:{color:Links}; font-family:'PictosRegular';">r</span>This was reblogged from <a href="{ReblogParentURL}">{ReblogParentName}</a></span></br>
  2362. <div style="height:5px; width:370px;"> </div>{/block:RebloggedFrom}
  2363.  
  2364. {block:HasTags}<span id="tags"><span style="padding-right:13px; font-size:15px; color:{color:Links}; font-family:'PictosRegular';">z</span>This has been tagged with {block:Tags}<a style="color:{color:Links}" href="{TagURL}">{Tag},</a> {/block:Tags}</span></br>
  2365. <div style="height:5px; width:370px;"> </div>{/block:HasTags}
  2366.  
  2367. {block:ContentSource}<span id="time"><span style="padding-right:10px; ; font-size:15px; color:{color:Links}; font-family:'PictosRegular';">R</span><a href="{SourceURL}"><script>TrimURL(50,'{SourceURL}')</script></a></span> </br>
  2368. <div style="height:5px; width:370px;"> </div>{/block:ContentSource}
  2369.  
  2370.  
  2371.  
  2372. <div style="margin-left:20px; margin-top:10px; float:left;">
  2373. <a href="https://twitter.com/share" class="twitter-share-button" data-count="horizontal" data-url=”{permalink}” data-text=”{Title}”>Tweet</a><script type="text/javascript" src="//platform.twitter.com/widgets.js"></script>
  2374. </div>
  2375.  
  2376. <div style="float:left; margin-left:5px; margin-top:10px; height:20px;"><g:plusone size="medium"></g:plusone></div>
  2377.  
  2378.  
  2379. <iframe src="//www.facebook.com/plugins/like.php?href={Permalink}&send=false&layout=button_count&width=60&show_faces=true&action=like&colorscheme=light&font=arial&height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; float:left; margin-left:-10px; margin-top:10px; width:90px; height:21px;" allowTransparency="true"></iframe>
  2380.  
  2381.  
  2382.  
  2383. {block:PostNotes}
  2384. <div class="perma_notes" style="width:370px; margin-top:20px; margin-left:20px;float:left;">{PostNotes}</div>
  2385. {/block:PostNotes}
  2386. </div>
  2387.  
  2388.  
  2389. {/block:Link}
  2390.  
  2391.  
  2392.  
  2393.  
  2394. {block:Quote}<div class="post" style="width:1000px;">
  2395.  
  2396. <div style="width:590px;float:left; " class="quote">
  2397.  <div class="quote_title">"{Quote}"</div>
  2398. {block:Source}
  2399. <div class="quote_source">{Source}</div>
  2400. {/block:Source}
  2401. </div>
  2402.  
  2403.  
  2404.  
  2405. <div style="width:370px; float:left; overflow:hidden;">
  2406.  
  2407. {block:NoteCount}<span id="likes"><span style="padding-right:10px; font-size:15px; color:{color:Links}; font-family:'PictosRegular';">k</span>This post has {NoteCountWithLabel}</span> </br>
  2408. <div style="height:5px; width:370px;"> </div>{/block:NoteCount}
  2409.  
  2410. {block:Date} <span id="time"><span style="padding-right:10px; font-size:15px; color:{color:Links}; font-family:'PictosRegular';">t</span>This was posted {TimeAgo}</span></br>
  2411. <div style="height:5px; width:370px;"> </div>{/block:Date}    
  2412.  
  2413. {block:RebloggedFrom}<span id="time"><span style="padding-right:10px; font-size:15px; color:{color:Links}; font-family:'PictosRegular';">r</span>This was reblogged from <a href="{ReblogParentURL}">{ReblogParentName}</a></span></br>
  2414. <div style="height:5px; width:370px;"> </div>{/block:RebloggedFrom}
  2415.  
  2416. {block:HasTags}
  2417.  
  2418. <div id="tags" style="float:left;">
  2419.  
  2420. <div style="padding-right:1px;width:10px;float:left; padding-right:13px; font-size:15px; color:{color:Links}; font-family:'PictosRegular';">z</div>
  2421.  
  2422. <div style="width:325px;float:left;">This has been tagged with {block:Tags}<a style="color:{color:Links}" href="{TagURL}">#{Tag}</a> {/block:Tags}
  2423. </div>
  2424.  
  2425. </div>
  2426.  
  2427.  
  2428. </br>
  2429.  
  2430.  
  2431.  
  2432. <div style="height:5px; width:370px;"> </div>{/block:HasTags}
  2433.  
  2434.  
  2435.  
  2436.  
  2437. {block:ContentSource}<span id="time"><span style="padding-right:10px; ; font-size:15px; color:{color:Links}; font-family:'PictosRegular';">R</span><a href="{SourceURL}"><script>TrimURL(50,'{SourceURL}')</script></a></span> </br>
  2438. <div style="height:5px; width:370px;"> </div>{/block:ContentSource}
  2439.  
  2440.  
  2441.  
  2442. <div style="margin-left:20px; margin-top:10px; float:left;">
  2443. <a href="https://twitter.com/share" class="twitter-share-button" data-count="horizontal" data-url=”{permalink}” data-text=”{Title}”>Tweet</a><script type="text/javascript" src="//platform.twitter.com/widgets.js"></script>
  2444. </div>
  2445.  
  2446. <div style="float:left; margin-left:5px; margin-top:10px; height:20px;"><g:plusone size="medium"></g:plusone></div>
  2447.  
  2448.  
  2449. <iframe src="//www.facebook.com/plugins/like.php?href={Permalink}&send=false&layout=button_count&width=60&show_faces=true&action=like&colorscheme=light&font=arial&height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; float:left; margin-left:-10px; margin-top:10px; width:90px; height:21px;" allowTransparency="true"></iframe>
  2450.  
  2451.  
  2452.  
  2453. {block:PostNotes}
  2454. <div class="perma_notes" style="width:370px; margin-top:20px; margin-left:20px;float:left;">{PostNotes}</div>
  2455. {/block:PostNotes}
  2456. </div>
  2457. {/block:Quote}
  2458.  
  2459.  
  2460.  
  2461. {block:Photoset}<div class="post" style="width:1000px;">
  2462.  
  2463. <div style="width:590px;float:left; " class="photoset">
  2464. {Photoset-500}
  2465.  
  2466. {block:Caption}<div style="float:left: padding-top:10px;">{Caption}</div>{/block:Caption}
  2467.  
  2468. </div>
  2469.  
  2470.  
  2471.  
  2472. <div style="width:370px; float:left; overflow:hidden;">
  2473.  
  2474. {block:NoteCount}<span id="likes"><span style="padding-right:10px; font-size:15px; color:{color:Links}; font-family:'PictosRegular';">k</span>This post has {NoteCountWithLabel}</span> </br>
  2475. <div style="height:5px; width:370px;"> </div>{/block:NoteCount}
  2476.  
  2477. {block:Date} <span id="time"><span style="padding-right:10px; font-size:15px; color:{color:Links}; font-family:'PictosRegular';">t</span>This was posted {TimeAgo}</span></br>
  2478. <div style="height:5px; width:370px;"> </div>{/block:Date}    
  2479.  
  2480. {block:RebloggedFrom}<span id="time"><span style="padding-right:10px; font-size:15px; color:{color:Links}; font-family:'PictosRegular';">r</span>This was reblogged from <a href="{ReblogParentURL}">{ReblogParentName}</a></span></br>
  2481. <div style="height:5px; width:370px;"> </div>{/block:RebloggedFrom}
  2482.  
  2483. {block:HasTags}<span id="tags"><span style="padding-right:13px; font-size:15px; color:{color:Links}; font-family:'PictosRegular';">z</span>This has been tagged with {block:Tags}<a style="color:{color:Links}" href="{TagURL}">{Tag},</a> {/block:Tags}</span></br>
  2484. <div style="height:5px; width:370px;"> </div>{/block:HasTags}
  2485.  
  2486. {block:ContentSource}<span id="time"><span style="padding-right:10px; ; font-size:15px; color:{color:Links}; font-family:'PictosRegular';">R</span><a href="{SourceURL}"><script>TrimURL(50,'{SourceURL}')</script></a></span> </br>
  2487. <div style="height:5px; width:370px;"> </div>{/block:ContentSource}
  2488.  
  2489.  
  2490.  
  2491. <div style="margin-left:20px; margin-top:10px; float:left;">
  2492. <a href="https://twitter.com/share" class="twitter-share-button" data-count="horizontal" data-url=”{permalink}” data-text=”{Title}”>Tweet</a><script type="text/javascript" src="//platform.twitter.com/widgets.js"></script>
  2493. </div>
  2494.  
  2495. <div style="float:left; margin-left:5px; margin-top:10px; height:20px;"><g:plusone size="medium"></g:plusone></div>
  2496.  
  2497.  
  2498. <iframe src="//www.facebook.com/plugins/like.php?href={Permalink}&send=false&layout=button_count&width=60&show_faces=true&action=like&colorscheme=light&font=arial&height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; float:left; margin-left:-10px; margin-top:10px; width:90px; height:21px;" allowTransparency="true"></iframe>
  2499.  
  2500.  
  2501.  
  2502. {block:PostNotes}
  2503. <div class="perma_notes" style="width:370px; margin-top:20px; margin-left:20px;float:left;">{PostNotes}</div>
  2504. {/block:PostNotes}
  2505. </div>
  2506. {/block:Photoset}
  2507.  
  2508.  
  2509.  
  2510.  
  2511.  
  2512. {block:Text}
  2513. <div class="post" style="width:1000px;">
  2514.  
  2515. <div style="width:590px;float:left; " class="text">
  2516. {block:Title}
  2517.         <div class="text_title"><a href="{Permalink}">{Title}</a></div>
  2518.     {/block:Title}
  2519.  
  2520.     {Body}
  2521. </div>
  2522.  
  2523. <div style="width:370px; float:left; overflow:hidden;">
  2524.  
  2525. {block:NoteCount}<span id="likes"><span style="padding-right:10px; font-size:15px; color:{color:Links}; font-family:'PictosRegular';">k</span>This post has {NoteCountWithLabel}</span> </br>
  2526. <div style="height:5px; width:370px;"> </div>{/block:NoteCount}
  2527.  
  2528. {block:Date} <span id="time"><span style="padding-right:10px; font-size:15px; color:{color:Links}; font-family:'PictosRegular';">t</span>This was posted {TimeAgo}</span></br>
  2529. <div style="height:5px; width:370px;"> </div>{/block:Date}    
  2530.  
  2531. {block:RebloggedFrom}<span id="time"><span style="padding-right:10px; font-size:15px; color:{color:Links}; font-family:'PictosRegular';">r</span>This was reblogged from <a href="{ReblogParentURL}">{ReblogParentName}</a></span></br>
  2532. <div style="height:5px; width:370px;"> </div>{/block:RebloggedFrom}
  2533.  
  2534. {block:HasTags}<span id="tags"><span style="padding-right:13px; font-size:15px; color:{color:Links}; font-family:'PictosRegular';">z</span>This has been tagged with {block:Tags}<a style="color:{color:Links}" href="{TagURL}">{Tag},</a> {/block:Tags}</span></br>
  2535. <div style="height:5px; width:370px;"> </div>{/block:HasTags}
  2536.  
  2537. {block:ContentSource}<span id="time"><span style="padding-right:10px; ; font-size:15px; color:{color:Links}; font-family:'PictosRegular';">R</span><a href="{SourceURL}"><script>TrimURL(50,'{SourceURL}')</script></a></span> </br>
  2538. <div style="height:5px; width:370px;"> </div>{/block:ContentSource}
  2539.  
  2540.  
  2541.  
  2542. <div style="margin-left:20px; margin-top:10px; float:left;">
  2543. <a href="https://twitter.com/share" class="twitter-share-button" data-count="horizontal" data-url=”{permalink}” data-text=”{Title}”>Tweet</a><script type="text/javascript" src="//platform.twitter.com/widgets.js"></script>
  2544. </div>
  2545.  
  2546. <div style="float:left; margin-left:5px; margin-top:10px; height:20px;"><g:plusone size="medium"></g:plusone></div>
  2547.  
  2548.  
  2549. <iframe src="//www.facebook.com/plugins/like.php?href={Permalink}&send=false&layout=button_count&width=60&show_faces=true&action=like&colorscheme=light&font=arial&height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; float:left; margin-left:-10px; margin-top:10px; width:90px; height:21px;" allowTransparency="true"></iframe>
  2550.  
  2551.  
  2552.  
  2553. {block:PostNotes}
  2554. <div class="perma_notes" style="width:370px; margin-top:20px; margin-left:20px;float:left;">{PostNotes}</div>
  2555. {/block:PostNotes}
  2556. </div>
  2557. {/block:Text}
  2558.  
  2559.  
  2560.  
  2561.  
  2562.  
  2563. {block:Video}
  2564. <div class="post" style="width:1000px;">
  2565.  
  2566. <div style="width:590px;float:left; " class="video">
  2567.  
  2568.  
  2569. {Video-500}
  2570.  
  2571. {block:Caption}<div style="float:left: padding-top:10px;">{Caption}</div>{/block:Caption}
  2572.  
  2573.  
  2574. </div>
  2575. <div style="width:370px; float:left; overflow:hidden;">
  2576.  
  2577. {block:NoteCount}<span id="likes"><span style="padding-right:10px; font-size:15px; color:{color:Links}; font-family:'PictosRegular';">k</span>This post has {NoteCountWithLabel}</span> </br>
  2578. <div style="height:5px; width:370px;"> </div>{/block:NoteCount}
  2579.  
  2580. {block:Date} <span id="time"><span style="padding-right:10px; font-size:15px; color:{color:Links}; font-family:'PictosRegular';">t</span>This was posted {TimeAgo}</span></br>
  2581. <div style="height:5px; width:370px;"> </div>{/block:Date}    
  2582.  
  2583. {block:RebloggedFrom}<span id="time"><span style="padding-right:10px; font-size:15px; color:{color:Links}; font-family:'PictosRegular';">r</span>This was reblogged from <a href="{ReblogParentURL}">{ReblogParentName}</a></span></br>
  2584. <div style="height:5px; width:370px;"> </div>{/block:RebloggedFrom}
  2585.  
  2586. {block:HasTags}<span id="tags"><span style="padding-right:13px; font-size:15px; color:{color:Links}; font-family:'PictosRegular';">z</span>This has been tagged with {block:Tags}<a style="color:{color:Links}" href="{TagURL}">{Tag},</a> {/block:Tags}</span></br>
  2587. <div style="height:5px; width:370px;"> </div>{/block:HasTags}
  2588.  
  2589. {block:ContentSource}<span id="time"><span style="padding-right:10px; ; font-size:15px; color:{color:Links}; font-family:'PictosRegular';">R</span><a href="{SourceURL}"><script>TrimURL(50,'{SourceURL}')</script></a></span> </br>
  2590. <div style="height:5px; width:370px;"> </div>{/block:ContentSource}
  2591.  
  2592.  
  2593.  
  2594. <div style="margin-left:20px; margin-top:10px; float:left;">
  2595. <a href="https://twitter.com/share" class="twitter-share-button" data-count="horizontal" data-url=”{permalink}” data-text=”{Title}”>Tweet</a><script type="text/javascript" src="//platform.twitter.com/widgets.js"></script>
  2596. </div>
  2597.  
  2598. <div style="float:left; margin-left:5px; margin-top:10px; height:20px;"><g:plusone size="medium"></g:plusone></div>
  2599.  
  2600.  
  2601. <iframe src="//www.facebook.com/plugins/like.php?href={Permalink}&send=false&layout=button_count&width=60&show_faces=true&action=like&colorscheme=light&font=arial&height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; float:left; margin-left:-10px; margin-top:10px; width:90px; height:21px;" allowTransparency="true"></iframe>
  2602.  
  2603.  
  2604.  
  2605. {block:PostNotes}
  2606. <div class="perma_notes" style="width:370px; margin-top:20px; margin-left:20px;float:left;">{PostNotes}</div>
  2607. {/block:PostNotes}
  2608. </div>
  2609. {/block:Video}
  2610.  
  2611.  
  2612.  
  2613.  
  2614.  
  2615.  
  2616. {block:Photo}
  2617. <div class="post photo" style="width:1000px;">
  2618.  
  2619. <div style="width:590px;float:left; ">{LinkOpenTag}<img src="{PhotoURL-HighRes}" border="0" style="float:left; margin-bottom:10px;"/>{LinkCloseTag}
  2620.  
  2621. {block:Caption}{Caption}{/block:Caption}
  2622.  
  2623. </div>
  2624.  
  2625. <div style="width:370px; margin-left:30px; overflow:hidden;">
  2626.  
  2627. {block:NoteCount}<span id="likes"><span style="padding-right:10px; font-size:15px; color:{color:Links}; font-family:'PictosRegular';">k</span>This post has {NoteCountWithLabel}</span> </br>
  2628. <div style="height:5px; width:370px;"> </div>{/block:NoteCount}
  2629.  
  2630. {block:Date} <span id="time"><span style="padding-right:10px; font-size:15px; color:{color:Links}; font-family:'PictosRegular';">t</span>This was posted {TimeAgo}</span></br>
  2631. <div style="height:5px; width:370px;"> </div>{/block:Date}    
  2632.  
  2633. {block:RebloggedFrom}<span id="time"><span style="padding-right:10px; font-size:15px; color:{color:Links}; font-family:'PictosRegular';">r</span>This was reblogged from <a href="{ReblogParentURL}">{ReblogParentName}</a></span></br>
  2634. <div style="height:5px; width:370px;"> </div>{/block:RebloggedFrom}
  2635.  
  2636. {block:HasTags}<span id="tags"><span style="padding-right:13px; font-size:15px; #olor:{color:Links}; font-family:'PictosRegular';">z</span>This has been tagged with {block:Tags}<a style="color:{color:Links}" href="{TagURL}">{Tag},</a> {/block:Tags}</span></br>
  2637. <div style="height:5px; width:370px;"> </div>{/block:HasTags}
  2638.  
  2639. {block:ContentSource}<span id="time"><span style="padding-right:10px; ; font-size:15px; color:{color:Links}; font-family:'PictosRegular';">R</span><a href="{SourceURL}"><script>TrimURL(50,'{SourceURL}')</script></a></span> </br>
  2640. <div style="height:upx; width:370px;"> </div>{/block:ContentSource}
  2641.  
  2642. </div>
  2643.  
  2644. <div style="margin-left:20px; margin-top:10px; float:left;">
  2645. <a href="https://twitter.com/share" class="twitter-share-button" data-count="horizontal" data-url=”{permalink}” data-text=”{Title}”>Tweet</a><script type="text/javascript" src="//platform.twitter.com/widgets.js"></script>
  2646. </div>
  2647.  
  2648. <div style="float:left; margin-left:5px; mar'in-top:10px; height:20px;"><g:plusone size="medium"></g:plusone></div>
  2649.  
  2650.  
  2651. <iframe src="//www.facebook.com/plugins/like.php?href={Permalink}&send=false&layout=button_count&width=60&show_faces=true&action=like&colorscheme=light&font=arial&height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; float:left; margin-left:-10px; margin-top:10px; width:90px; height:21px;" allowTransparency="true"></iframe>
  2652.  
  2653.  
  2654.  
  2655. {block:PostNotes}
  2656. <div class="perma_notes" style="float:left; width:370px;margin-left:20px; margin-top:20px;">{PostNotes}</div>
  2657. {/block:PostNotes}
  2658. </div>
  2659.  
  2660. {/block:Photo}
  2661.  
  2662.  
  2663.  
  2664.  
  2665.  
  2666. {block:Audio}
  2667. <div class="post"`style="width:1000px; ">
  2668.  
  2669. <div style="width:590px;float:left; " class="audio">
  2670. {block:AlbumArt}
  2671. <a href="{Permalink}">
  2672. <div class="album_art">
  2673. <img style="width:400px; margin-left:auto; margin-right:auto;" src="{AlbumArtURL}" border="0" />
  2674. </div>
  2675. </a>
  2676. {/block:AlbumArt}
  2677. <div class="audio_player" style="width:400px;">{AudioPlayerBlack}</div>
  2678.  
  2679.  
  2680. {block:Caption}<div style="float:left: padding-top:10px;">{Caption}</div>{/block:Caption}
  2681.  
  2682. </div>
  2683.  
  2684. <div style="width:370px; float:left; overflow:hidden;">
  2685.  
  2686. {block:NoteCount}<span id="likes"><span style="padding-right:10px; font-size:15px; color:{color:Links}; font-family:'PictosRegular';">k</span>This post has {NoteCountWithLabel}</span> </br>
  2687. <div style="height:5px; width:370px;"> </div>{/block:NoteCount}
  2688.  
  2689. {block:Date} <span id="time"><span style="padding-right:10px; font-size:15px; color:{color:Links}; font-family:'PictosRegular';">t</span>This was posted {TimeAgo}</span></br>
  2690. <div style="height:5px; width:370px;"> </div>{/block:Date}    
  2691.  
  2692. {block:RebloggedFrom}<span id="time"><span style="padding-right:10px; font-size:15px; color:{color:Links}; font-family:'PictosRegular';">r</span>This was reblogged from <a href="{ReblogParentURL}">{ReblogParentName}</a></span></br>
  2693. <div style="height:5px; width:370px;"> </div>{/block:RebloggedFrom}
  2694.  
  2695. {block:HasTags}<span id="tags"><span style="padding-right:13px; font-size:15px; color:{color:Links}; font-family:'PictosRegular';">z</span>This has been tagged with {block:Tags}<a style="color:{color:Links}" href="{TagURL}">{Tag},</a> {/block:Tags}</span></br>
  2696. <div style="height:5px; width:370px;"> </div>{/block:HasTags}
  2697.  
  2698. {block:ContentSource}<span id="time"><span style="padding-right:10px; ; font-size:15px; color:{color:Links}; font-family:'PictosRegular';">R</span><a href="{SourceURL}"><script>TrimURL(50,'{SourceURL}')</script></a></span> </br>
  2699. <div style="height:5px; width:370px;"> </div>{/block:ContentSource}
  2700.  
  2701.  
  2702.  
  2703. <div style="margin-left:20px; margin-top:10px; float:left;">
  2704. <a href="https://twitter.com/share" class="twitter-share-button" data-count="horizontal" data-url=”{permalink}” data-text=”{Title}”>Tweet</a><script type="text/javascript" src="//platform.twitter.com/widgets.js"></script>
  2705. </div>
  2706.  
  2707. <div style="float:left; margin-left:5px; margin-top:10px; height:20px;"><g:plusone size="medium"></g:plusone></div>
  2708.  
  2709.  
  2710. <iframe src="//www.facebook.com/plugins/like.php?href={Permalink}&send=false&layout=button_count&width=60&show_faces=true&action=like&colorscheme=light&font=arial&height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; float:left; margin-left:-10px; margin-top:10px; width:90px; height:21px;" allowTransparency="true"></iframe>
  2711.  
  2712.  
  2713.  
  2714. {block:PostNotes}
  2715. <div class="perma_notes" style="width:370px; margin-top:20px; margin-left:20px;float:left;">{PostNotes}</div>
  2716. {/block:PostNotes}
  2717. </div>
  2718.  
  2719. {/block:Audio}
  2720.  
  2721.  
  2722.  
  2723.  
  2724. {block:Chat}
  2725. <div class="post" style="width:1000px;">
  2726.  
  2727. <div style="width:590px;float:left; " class="chat">
  2728.  
  2729. <div class="chat_box">
  2730. {block:Title}
  2731. <div class="chat_title"><a href="{Permalink}">{Title}</a></div>
  2732. {/block:Title}
  2733. {block:Lines}
  2734. <div class="chat_line_{Alt}">
  2735. {block:Label}
  2736. <span class="chat_label">{Label}</span>
  2737. {/block:Label}
  2738. {Line}
  2739. </div>
  2740. {/block:Lines}
  2741.  
  2742. </div>
  2743.  
  2744. </div>
  2745.  
  2746. <div style="width:370px; float:left; overflow:hidden;">
  2747.  
  2748. {block:NoteCount}<span id="likes"><span style="padding-right:10px; font-size:15px; color:{color:Links}; font-family:'PictosRegular';">k</span>This post has {NoteCountWithLabel}</span> </br>
  2749. <div style="height:5px; width:370px;"> </div>{/block:NoteCount}
  2750.  
  2751. {block:Date} <span id="time"><span style="padding-right:10px; font-size:15px; color:{color:Links}; font-family:'PictosRegular';">t</span>This was posted {TimeAgo}</span></br>
  2752. <div style="height:5px; width:370px;"> </div>{/block:Date}    
  2753.  
  2754. {block:RebloggedFrom}<span id="time"><span style="padding-right:10px; font-size:15px; color:{color:Links}; font-family:'PictosRegular';">r</span>This was reblogged from <a href="{ReblogParentURL}">{ReblogParentName}</a></span></br>
  2755. <div style="height:5px; width:370px;"> </div>{/block:RebloggedFrom}    
  2756.  
  2757. {block:HasTags}<span id="tags"><span style="padding-right:13px; font-size:15px; color:{color:Links}; font-family:'PictosRegular';">z</span>This has been tagged with {block:Tags}<a style="color:{color:Links}" href="{TagURL}">{Tag},</a> {/block:Tags}</span></br>
  2758. <div style="height:5px; width:370px;"> </div>{/block:HasTags}
  2759.  
  2760. {block:ContentSource}<span id="time"><span style="padding-right:10px; ; font-size:15px; color:{color:Links}; font-family:'PictosRegular';">R</span><a href="{SourceURL}"><script>TrimURL(50,'{SourceURL}')</script></a></span> </br>
  2761. <div style="height:5px; width:370px;"> </div>{/block:ContentSource}
  2762.  
  2763.  
  2764.  
  2765. <div style="margin-left:20px; margin-top:10px; float:left;">
  2766. <a href="https://twitter.com/share" class="twitter-share-button" data-count="horizontal" data-url=”{permalink}” data-text=”{Title}”>Tweet</a><script type="text/javascript" src="//platform.twitter.com/widgets.js"></script>
  2767. </div>
  2768.  
  2769. <div style="float:left; margin-left:5px; margin-top:10px; height:20px;"><g:plusone size="medium"></g:plusone></div>
  2770.  
  2771.  
  2772. <iframe src="//www.facebook.com/plugins/like.php?href={Permalink}&send=false&layout=button_count&width=60&show_faces=true&action=like&colorscheme=light&font=arial&height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; float:left; margin-left:-10px; margin-top:10px; width:90px; height:21px;" allowTransparency="true"></iframe>
  2773.  
  2774.  
  2775.  
  2776. {block:PostNotes}
  2777. <div class="perma_notes" style="width:370px; margin-top:20px; margin-left:20px;float:left;">{PostNotes}</div>
  2778. {/block:PostNotes}
  2779. </div>
  2780. {/block:Chat}
  2781.  
  2782.  
  2783.  
  2784.  
  2785. {/block:Posts}</div>
  2786.     {/block:PermalinkPage}
  2787.  
  2788.  
  2789.  
  2790.  
  2791.  
  2792.     </div>
  2793.     </div>
  2794.  
  2795. </div>
  2796.  
  2797. <div style="display:none;visibility:hidden;" id="audio_player_color">#FFFFFF</div>
  2798. <div style="display:none;visibility:hidden;" id="post_padding">{text:Post padding}</div>
  2799. <div style="display:none;visibility:hidden;" id="tag_page">{block:TagPage}{Tag}{/block:TagPage}</div>