Advertisement
themesforu

keepcal-m

Dec 21st, 2011
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 41.28 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2.  
  3. <!--
  4.  
  5. Theme 001 by weasleyfleur / KEEPCAL-M.TUMBLR
  6.  
  7. SE COPIAR EU TE CAPO E DOU PROS CACHORROS!
  8.  
  9. ADAPTAÇÃO, PROIBIDA CÓPIA.
  10.  
  11. -->
  12.  
  13. <script type="text/javascript">
  14.  
  15.  
  16.  
  17. //Created by Title bar Maker (http://www.bosiljak.hr/titlemaker)
  18.  
  19.  
  20.  
  21.  
  22.  
  23. function tb8_makeArray(n){
  24.  
  25.  
  26.  
  27. this.length = n;
  28.  
  29.  
  30.  
  31. return this.length;
  32.  
  33.  
  34.  
  35. }
  36.  
  37.  
  38.  
  39.  
  40.  
  41. tb8_messages = new tb8_makeArray(1);
  42.  
  43.  
  44.  
  45.  
  46.  
  47. tb8_messages[0] = "DRUGS AND PARTY!";
  48.  
  49.  
  50.  
  51.  
  52.  
  53. tb8_rptType = 'infinite';
  54.  
  55.  
  56.  
  57.  
  58.  
  59. tb8_rptNbr = 5;
  60.  
  61.  
  62.  
  63.  
  64.  
  65. tb8_speed = 100;
  66.  
  67.  
  68.  
  69.  
  70.  
  71. tb8_delay = 2000;
  72.  
  73.  
  74.  
  75.  
  76.  
  77. var tb8_counter=1;
  78.  
  79.  
  80.  
  81.  
  82.  
  83. var tb8_currMsg=0;
  84.  
  85.  
  86.  
  87.  
  88.  
  89. var tb8_tekst ="";
  90.  
  91.  
  92.  
  93.  
  94.  
  95. var tb8_i=0;
  96.  
  97.  
  98.  
  99.  
  100.  
  101. var tb8_TID = null;
  102.  
  103.  
  104.  
  105.  
  106.  
  107. function tb8_pisi(){
  108.  
  109.  
  110.  
  111.  
  112.  
  113. tb8_tekst = tb8_tekst + tb8_messages[tb8_currMsg].substring(tb8_i, tb8_i+1);
  114.  
  115.  
  116.  
  117.  
  118.  
  119. document.title = tb8_tekst;
  120.  
  121.  
  122.  
  123.  
  124.  
  125. tb8_sp=tb8_speed;
  126.  
  127.  
  128.  
  129.  
  130.  
  131. tb8_i++;
  132.  
  133.  
  134.  
  135.  
  136.  
  137. if (tb8_i==tb8_messages[tb8_currMsg].length){
  138.  
  139.  
  140.  
  141.  
  142.  
  143. tb8_currMsg++; tb8_i=0; tb8_tekst="";tb8_sp=tb8_delay;
  144.  
  145.  
  146.  
  147.  
  148.  
  149. }
  150.  
  151.  
  152.  
  153.  
  154.  
  155. if (tb8_currMsg == tb8_messages.length){
  156.  
  157.  
  158.  
  159.  
  160.  
  161. if ((tb8_rptType == 'finite') && (tb8_counter==tb8_rptNbr)){
  162.  
  163.  
  164.  
  165.  
  166.  
  167. clearTimeout(tb8_TID);
  168.  
  169.  
  170.  
  171.  
  172.  
  173. return;
  174.  
  175.  
  176.  
  177.  
  178.  
  179. }
  180.  
  181.  
  182.  
  183.  
  184.  
  185. tb8_counter++;
  186.  
  187.  
  188.  
  189.  
  190.  
  191. tb8_currMsg = 0;
  192.  
  193.  
  194.  
  195. }
  196.  
  197.  
  198.  
  199.  
  200.  
  201. tb8_TID = setTimeout("tb8_pisi()", tb8_sp);
  202.  
  203.  
  204.  
  205.  
  206.  
  207. }
  208.  
  209.  
  210.  
  211.  
  212.  
  213. tb8_pisi()
  214.  
  215.  
  216.  
  217.  
  218.  
  219. </script>
  220.  
  221.  
  222.  
  223. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  224.  
  225. <head>
  226.  
  227. <script type="text/javascript">
  228.  
  229. //desabilita menu de opcoes ao clicar no botao direito
  230.  
  231. function desabilitaMenu(e)
  232.  
  233. {
  234.  
  235. if (window.Event)
  236.  
  237. {
  238.  
  239. if (e.which == 2 || e.which == 3)
  240.  
  241. return false;
  242.  
  243. }
  244.  
  245. else
  246.  
  247. {
  248.  
  249. event.cancelBubble = true
  250.  
  251. event.returnValue = false;
  252.  
  253. return false;
  254.  
  255. }
  256.  
  257. }
  258.  
  259.  
  260.  
  261. //desabilita botao direito
  262.  
  263. function desabilitaBotaoDireito(e)
  264.  
  265. {
  266.  
  267. if (window.Event)
  268.  
  269. {
  270.  
  271. if (e.which == 2 || e.which == 3)
  272.  
  273. return false;
  274.  
  275. }
  276.  
  277. else
  278.  
  279. if (event.button == 2 || event.button == 3)
  280.  
  281. {
  282.  
  283. event.cancelBubble = true
  284.  
  285. event.returnValue = false;
  286.  
  287. return false;
  288.  
  289. }
  290.  
  291. }
  292.  
  293.  
  294.  
  295. //desabilita botao direito do mouse
  296.  
  297. if ( window.Event )
  298.  
  299. document.captureEvents(Event.MOUSEUP);
  300.  
  301. if ( document.layers )
  302.  
  303. document.captureEvents(Event.MOUSEDOWN);
  304.  
  305.  
  306.  
  307. document.oncontextmenu = desabilitaMenu;
  308.  
  309. document.onmousedown = desabilitaBotaoDireito;
  310.  
  311. document.onmouseup = desabilitaBotaoDireito;
  312.  
  313. </script>
  314.  
  315.  
  316.  
  317. <!-- DEFAULT VARIABLES -->
  318.  
  319. <meta name="color:background" content="#F3F3F3" />
  320.  
  321. <meta name="color:sbar" content="#FFFFFF" />
  322.  
  323. <meta name="color:entry" content="#F1F1F1" />
  324.  
  325. <meta name="color:text" content="#000000" />
  326.  
  327. <meta name="color:barrarolagem" content="#E6E6E6" />
  328.  
  329.  
  330.  
  331. <meta name="text:frase1" content="seu título (troque no appearance)" />
  332.  
  333. <meta name="text:frase2" content="sua frase (troque no appearance)" />
  334.  
  335. <meta name="text:frase4" content="sua frase dos créditos (appearance)" />
  336.  
  337. <meta name="text:frasesid" content="frase sidebar (appearance)" />
  338.  
  339.  
  340.  
  341. <meta name="font:title" content="verdana" />
  342.  
  343. <meta name="font:body" content="verdana" />
  344.  
  345.  
  346.  
  347. <meta name="image:sidebar" content=""/>
  348.  
  349. <meta name="image:sidebar2" content=""/>
  350.  
  351. <meta name="image:sidebar3" content=""/>
  352.  
  353. <meta name="image:sidebar4" content=""/>
  354.  
  355. <meta name="image:sidebar5" content=""/>
  356.  
  357. <meta name="image:sidebar6" content=""/>
  358.  
  359. <meta name="image:sidebar7" content=""/>
  360.  
  361. <meta name="image:sidebar8" content=""/>
  362.  
  363. <meta name="image:sidebar9" content=""/>
  364.  
  365. <meta name="image:sidebar10" content=""/>
  366.  
  367.  
  368.  
  369. <meta name="image:sidebar11" content=""/>
  370.  
  371. <meta name="image:sidebar12" content=""/>
  372.  
  373. <meta name="image:background" content="" />
  374.  
  375.  
  376.  
  377. <meta name="text:Link1" content="" />
  378.  
  379. <meta name="text:Link1 Title" content="" />
  380.  
  381. <meta name="text:Link2" content="" />
  382.  
  383. <meta name="text:Link2 Title" content="" />
  384.  
  385. <meta name="text:Link3" content="" />
  386.  
  387. <meta name="text:Link3 Title" content="" />
  388.  
  389. <meta name="text:Link4" content="" />
  390.  
  391. <meta name="text:Link4 Title" content="" />
  392.  
  393. <meta name="text:Link5" content="" />
  394.  
  395. <meta name="text:Link5 Title" content="" />
  396.  
  397. <meta name="text:Link6" content="" />
  398.  
  399. <meta name="text:Link6 Title" content="" />
  400.  
  401. <meta name="text:Link7" content="" />
  402.  
  403. <meta name="text:Link7 Title" content="" />
  404.  
  405. <meta name="text:Link8" content="" />
  406.  
  407. <meta name="text:Link8 Title" content="" />
  408.  
  409. <meta name="text:Link9" content="" />
  410.  
  411. <meta name="text:Link9 Title" content="" />
  412.  
  413.  
  414.  
  415. <meta name="text:Linkq" content="/" />
  416.  
  417. <meta name="text:Linkq Title" content="k" />
  418.  
  419. <meta name="text:Linkw" content="#" />
  420.  
  421. <meta name="text:Linkw Title" content="e" />
  422.  
  423. <meta name="text:Linke" content="/" />
  424.  
  425. <meta name="text:Linke Title" content="e" />
  426.  
  427. <meta name="text:Linkr" content="#" />
  428.  
  429. <meta name="text:Linkr Title" content="p" />
  430.  
  431. <meta name="text:Linkt" content="/" />
  432.  
  433. <meta name="text:Linkt Title" content="c" />
  434.  
  435. <meta name="text:Linky" content="#" />
  436.  
  437. <meta name="text:Linky Title" content="a" />
  438.  
  439. <meta name="text:Linku" content="/" />
  440.  
  441. <meta name="text:Linku Title" content="l" />
  442.  
  443. <meta name="text:Linki" content="#" />
  444.  
  445. <meta name="text:Linki Title" content="m" />
  446.  
  447.  
  448.  
  449. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  450.  
  451. <title>DRUGS AND PARTY!</title>
  452.  
  453. <link rel="shortcut icon" href="http://29.media.tumblr.com/avatar_38749cfb9990_16.png">
  454.  
  455. <link rel="alternate" type="application/rss+xml" href="http://keepcal-m.tumblr.com/rss">
  456.  
  457.  
  458.  
  459. <meta name="description" content="" />
  460.  
  461.  
  462.  
  463. <link rel="shortcut icon" href="http://29.media.tumblr.com/avatar_38749cfb9990_16.png" />
  464.  
  465. <link rel="alternate" type="application/rss+xml" href="http://keepcal-m.tumblr.com/rss" />
  466.  
  467. <style type="text/css">
  468.  
  469.  
  470.  
  471. ::-webkit-scrollbar{width:8px;height:8px;}
  472.  
  473. ::-webkit-scrollbar-button:start:decrement
  474.  
  475. ::-webkit-scrollbar-button:end:increment{display:block;height:0;background-color:transparent;}
  476.  
  477. ::-webkit-scrollbar-track-piece{background-color:#000;-webkit-border-radius:0;-webkit-border-bottom-right-radius:3px;-webkit-border-bottom-left-radius:3px;}
  478.  
  479. ::-webkit-scrollbar-thumb:vertical{height:50px; background-color:#E6E6E6;-webkit-border-radius:px;}
  480.  
  481. ::-webkit-scrollbar-thumb:horizontal{width:50px; background-color:#E6E6E6;-webkit-border-radius:px;}
  482.  
  483.  
  484.  
  485. body {color:#000000; background-color:#f3f3f3; background-image: url('http://assets.tumblr.com/images/x.gif'); background-attachment: fixed; background-position: bottom left; background-repeat: no-repeat; font-family:Verdana, Geneva, Tahoma, sans-serif; font-size:11px; line-height:110%; text-align:justify}
  486.  
  487.  
  488.  
  489. a:link, a:active, a:visited{color: #000000; text-decoration:none;}
  490.  
  491. a:hover{color:#DDDDDD; -webkit-transition-duration: 0.8s; -moz-transition-duration: 0.8s;}
  492.  
  493.  
  494.  
  495. #entries{left:50%; margin-left:625px; margin-top:10px; width:515px}
  496.  
  497.  
  498.  
  499. #sidebarimg img {max-width: 200px; height: auto; text-align:center}
  500.  
  501.  
  502.  
  503. #imagem {margin-left:2px; margin-bottom:0px; margin-top:0px}
  504.  
  505. #imagem img {max-width: 200px; height: auto; margin-bottom: 3px;}
  506.  
  507.  
  508.  
  509. #title {font-family:georgia; font-size:18px; font-style:italic; letter-spacing:0px; line-height:110%}
  510.  
  511.  
  512.  
  513. #sbar {width:305px; height: 165px; margin-left:60px; margin-top:240px; position:fixed; overflow:hidden; background-color: #fff; border-left:0px solid; border-right:0px solid; padding:3px}
  514.  
  515.  
  516.  
  517. .ttle {text-align: center; font-family: Georgia, Palatino, 'Palatino Linotype', Times, 'Times New Roman', serif; text-transform: lowercase; font-size: 30px; color: }
  518.  
  519.  
  520.  
  521. .ttle a{font-family: Georgia, Palatino, 'Palatino Linotype', Times, 'Times New Roman', serif; font-style: italic; font-size: 21px; color: ; background-color: transparent; }
  522.  
  523.  
  524.  
  525. .ttle a:hover {font-family: Georgia, Palatino, 'Palatino Linotype', Times, 'Times New Roman', serif; font-style: italic; font-size: 22px; color: ; background-color: transparent;}
  526.  
  527.  
  528.  
  529. #pagination {font-family:georgia; text-align:center; font-size:15px; color: #d1d1d1}
  530.  
  531.  
  532.  
  533. .sidebarpic img{max-height: 200px; width:auto; text-align:justufy; margin: 0px -0px 0 0px}
  534.  
  535.  
  536.  
  537.  
  538.  
  539. #tbar {float: right; margin-left: -10px; top: 250px; width: 40px; height: 70px; padding: 3px; background-color:; position: fixed; text-align: center;}
  540.  
  541.  
  542.  
  543. #pagi {position: right; margin-left: 40px; top: 420px; width: 302px; height: 15px; background-color:; text-align: center; position: fixed;}
  544.  
  545. #pagin {color:#000000; width: 302px; margin-top: 1px; font-size: 9px; font-family: verdana; text-align: center; letter-spacing: 4px; margin-bottom: 5px;}
  546.  
  547.  
  548.  
  549. #tit2{background-color: trasparent; letter-spacing: 1px; color: transparent; width:305px; height:20px; position: fixed; padding-top: 10px; padding-bottom: -10px; -webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out; margin-left: 0px; font-family: verdana; font-size: 9px; margin-top: 0px; px; z-index: 2; margin-top: -4px;}
  550.  
  551. #tit2:hover {background-color: #000000; height: 25px; color: #eeeeee; border-bottom:0px solid color:#eeeeee; filter:alpha(opacity=0.65)
  552.  
  553. -moz-opacity:0.65;
  554.  
  555. opacity:0.65}
  556.  
  557.  
  558.  
  559. #tit{background-color: #0F0F0F; letter-spacing: 1px; color: #eeeeee; width:305px; height:20px; position: fixed; padding-top: 3px; padding-bottom: 0px; -webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out; margin-left: -1px; font-family: verdana; font-size: 9px; margin-top: 0px; px; z-index: 2;}
  560.  
  561. #tit:hover {background-color: #f8f8f8; height: 30px; color: transparent; border-bottom:3px solid color:#eeeeee}
  562.  
  563. .tit1 {text-align: justify; font-size: 9px; position: fixed; color: transparent; width: 350px; margin-top: 1px; margin-left: 5px; }
  564.  
  565. .tit1:hover {color: #444444; font-size: 9px; text-align: justify;}
  566.  
  567.  
  568.  
  569. div#credit{background-color: transparent; margin-top: 443px; letter-spacing: 0px; color: #000; width:396px; height:10px; position: fixed; padding: 4px; -webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out; margin-left: 55px; font-family: verdana; z-index: 3; font-size:9px}
  570.  
  571. div#credit:hover {background-color: transparent; height: 30px; color: transparent;}
  572.  
  573.  
  574.  
  575. .credit2 {text-align: justify; font-size: 9px; position: fixed; color: transparent; width: 250px; margin-top: 0px; margin-left: 95px; text-align: center;}
  576.  
  577. .credit2:hover {color: #888; font-size: 9px; text-align: center;}
  578.  
  579.  
  580.  
  581. .link1 {text-align: center; position: fixed; float: left; margin-top: -2px; margin-left: 330px; font-size: 9px;}
  582.  
  583. .link1 a {display: block; font-family: verdana; font-size: 9px; text-align: center; width: 70px; height: 45px; background-color: #f9f9f9; color:#000000; text-decoration: none; padding: 10px 5px 0px 5px; -webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out;}
  584.  
  585. .link1 a:hover{text-align: center; letter-spacing: 3px; background-color: #000; color:#f1f1f1; width: 70px;}
  586.  
  587.  
  588.  
  589. .link2 {text-align: center; position: fixed; float: left; margin-top: 55px; margin-left: 330px; font-size: 9px;}
  590.  
  591. .link2 a {display: block; font-family: verdana; font-size: 9px; text-align: center; width: 70px; height: 45px; background-color: #f9f9f9; color:#000000; text-decoration: none; padding: 10px 5px 0px 5px; -webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out;}
  592.  
  593. .link2 a:hover{text-align: center; letter-spacing: 3px; background-color: #000; color:#f1f1f1; width: 70px;}
  594.  
  595.  
  596.  
  597. .link3 {text-align: center; position: fixed; float: left; margin-top: 346px; margin-left: 121px; font-size: 9px;}
  598.  
  599. .link3 a {display: block; font-family: verdana; font-size: 9px; text-align: center; width: 70px; height: 45px; background-color: #f9f9f9; color:#000000; text-decoration: none; padding: 10px 5px 0px 5px; -webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out;}
  600.  
  601. .link3 a:hover{text-align: center; letter-spacing: 3px; background-color: #000; color:#f1f1f1; width: 70px;}
  602.  
  603.  
  604.  
  605. .link4 {text-align: center; position: fixed; float: left; margin-top: 167px; margin-left: 20px; font-size: 9px;}
  606.  
  607. .link4 a {display: block; font-family: verdana; font-size: 9px; text-align: center; width: 70px; height: 2px; background-color: #f9f9f9; color:#000000; text-decoration: none; padding: 10px 5px 0px 5px; -webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out;}
  608.  
  609. .link4 a:hover{text-align: center; letter-spacing: 3px; background-color: #f1f1f1; color:#000; width: 75px;}
  610.  
  611.  
  612.  
  613. .link5 {text-align: center; position: fixed; float: left; margin-top: 167px; margin-left: 127px; font-size: 9px;}
  614.  
  615. .link5 a {display: block; font-family: verdana; font-size: 9px; text-align: center; width: 70px; height: 2px; background-color: #f9f9f9; color:#000000; text-decoration: none; padding: 10px 5px 0px 5px; -webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out;}
  616.  
  617. .link5 a:hover{text-align: center; letter-spacing: 3px; background-color: #f1f1f1; color:#000; width: 75px;}
  618.  
  619.  
  620.  
  621. .link6 {text-align: center; position: fixed; float: left; margin-top: 167px; margin-left: 234px; font-size: 9px;}
  622.  
  623. .link6 a {display: block; font-family: verdana; font-size: 9px; text-align: center; width: 70px; height: 2px; background-color: #f9f9f9; color:#000000; text-decoration: none; padding: 10px 5px 0px 5px; -webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out;}
  624.  
  625. .link6 a:hover{text-align: center; letter-spacing: 3px; background-color: #f1f1f1; color:#000; width: 75px;}
  626.  
  627.  
  628.  
  629. .link7 {text-align: center; position: fixed; float: left; margin-top: 210px; margin-left: 20px; font-size: 9px;}
  630.  
  631. .link7 a {display: block; font-family: verdana; font-size: 9px; text-align: center; width: 70px; height: 2px; background-color: #f9f9f9; color:#000000; text-decoration: none; padding: 10px 5px 0px 5px; -webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out;}
  632.  
  633. .link7 a:hover{text-align: center; letter-spacing: 3px; background-color: #f1f1f1; color:#000; width: 75px;}
  634.  
  635.  
  636.  
  637. .link8 {text-align: center; position: fixed; float: left; margin-top: 210px; margin-left: 127px; font-size: 9px;}
  638.  
  639. .link8 a {display: block; font-family: verdana; font-size: 9px; text-align: center; width: 70px; height: 2px; background-color: #f9f9f9; color:#000000; text-decoration: none; padding: 10px 5px 0px 5px; -webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out;}
  640.  
  641. .link8 a:hover{text-align: center; letter-spacing: 3px; background-color: #f1f1f1; color:#000; width: 75px;}
  642.  
  643.  
  644.  
  645. .link9 {text-align: center; position: fixed; float: left; margin-top: 210px; margin-left: 234px; font-size: 9px;}
  646.  
  647. .link9 a {display: block; font-family: verdana; font-size: 9px; text-align: center; width: 70px; height: 2px; background-color: #f9f9f9; color:#000000; text-decoration: none; padding: 10px 5px 0px 5px; -webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out;}
  648.  
  649. .link9 a:hover{text-align: center; letter-spacing: 3px; background-color: #f1f1f1; color:#000; width: 75px;}
  650.  
  651.  
  652.  
  653.  
  654.  
  655. .linkq {text-align: center; float: left; margin-top: 5px; margin-left: -1px; font-size: 9px;}
  656.  
  657. .linkq a {display: block; font-family: verdana; font-size: 9px; text-align: center; width: 25px; height: 15px; background-color: #f9f9f9; color:#000000; text-decoration: none; padding: 10px 5px 0px 5px; -webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out;}
  658.  
  659. .linkq a:hover{text-align: center; letter-spacing: 3px; background-color: #f1f1f1; color:#000; width: 30px;}
  660.  
  661.  
  662.  
  663. .linkw {text-align: center; float: left; margin-top: -3px; margin-left: -1px; font-size: 9px;}
  664.  
  665. .linkw a {display: block; font-family: verdana; font-size: 9px; text-align: center; width: 25px; height: 15px; background-color: #f9f9f9; color:#000000; text-decoration: none; padding: 10px 5px 0px 5px; -webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out;}
  666.  
  667. .linkw a:hover{text-align: center; letter-spacing: 3px; background-color: #f1f1f1; color:#000; width: 30px;}
  668.  
  669.  
  670.  
  671. .linke {text-align: center; float: left; margin-top: -3px; margin-left: -1px; font-size: 9px;}
  672.  
  673. .linke a {display: block; font-family: verdana; font-size: 9px; text-align: center; width: 25px; height: 15px; background-color: #f9f9f9; color:#000000; text-decoration: none; padding: 10px 5px 0px 5px; -webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out;}
  674.  
  675. .linke a:hover{text-align: center; letter-spacing: 3px; background-color: #f1f1f1; color:#000; width: 30px;}
  676.  
  677.  
  678.  
  679. .linkr {text-align: center; float: left; margin-top: -3px; margin-left: -1px; font-size: 9px;}
  680.  
  681. .linkr a {display: block; font-family: verdana; font-size: 9px; text-align: center; width: 25px; height: 15px; background-color: #f9f9f9; color:#000000; text-decoration: none; padding: 10px 5px 0px 5px; -webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out;}
  682.  
  683. .linkr a:hover{text-align: center; letter-spacing: 3px; background-color: #f1f1f1; color:#000; width: 30px;}
  684.  
  685.  
  686.  
  687. .linkt {text-align: center; float: left; margin-top: -3px; margin-left: -1px; font-size: 9px;}
  688.  
  689. .linkt a {display: block; font-family: verdana; font-size: 9px; text-align: center; width: 25px; height: 15px; background-color: #f9f9f9; color:#000000; text-decoration: none; padding: 10px 5px 0px 5px; -webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out;}
  690.  
  691. .linkt a:hover{text-align: center; letter-spacing: 3px; background-color: #f1f1f1; color:#000; width: 30px;}
  692.  
  693.  
  694.  
  695. .linky {text-align: center; float: left; margin-top: -3px; margin-left: -1px; font-size: 9px;}
  696.  
  697. .linky a {display: block; font-family: verdana; font-size: 9px; text-align: center; width: 25px; height: 15px; background-color: #f9f9f9; color:#000000; text-decoration: none; padding: 10px 5px 0px 5px; -webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out;}
  698.  
  699. .linky a:hover{text-align: center; letter-spacing: 3px; background-color: #f1f1f1; color:#000; width: 30px;}
  700.  
  701.  
  702.  
  703. .linku {text-align: center; float: left; margin-top: -3px; margin-left: -1px; font-size: 9px;}
  704.  
  705. .linku a {display: block; font-family: verdana; font-size: 9px; text-align: center; width: 25px; height: 15px; background-color: #f9f9f9; color:#000000; text-decoration: none; padding: 10px 5px 0px 5px; -webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out;}
  706.  
  707. .linku a:hover{text-align: center; letter-spacing: 3px; background-color: #f1f1f1; color:#000; width: 30px;}
  708.  
  709.  
  710.  
  711. .linki {text-align: center; float: left; margin-top: -3px; margin-left: -1px; font-size: 9px;}
  712.  
  713. .linki a {display: block; font-family: verdana; font-size: 9px; text-align: center; width: 25px; height: 20px; background-color: #f9f9f9; color:#000000; text-decoration: none; padding: 10px 5px 0px 5px; -webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out;}
  714.  
  715. .linki a:hover{text-align: center; letter-spacing: 3px; background-color: #f1f1f1; color:#000; width: 30px;}
  716.  
  717.  
  718.  
  719. #stext {float:right; text-align:justify; font-family:verdana; font-size:9px; margin-bottom: 10px }
  720.  
  721.  
  722.  
  723. #pagina {width: 10px; height: 500px; margin-left: 490px; margin-top: 155px; position: fixed;}
  724.  
  725.  
  726.  
  727.  
  728.  
  729. #sidenav {z-index: 99999999; list-style: none; margin: 221px 0 0 100px; position: fixed; padding: 0; list-style: none; width: 160px;}
  730.  
  731.  
  732.  
  733. #sidenav li {float: left; padding: 0 0 0px 0; position: relative; line-height: 100%; margin-bottom: 1px;}
  734.  
  735.  
  736.  
  737. #sidenav li a {display: block; background-color: #fff; text-decoration: none; color: #000; font-family: verdana; font-size: 11px; text-transform: uppercase; padding: 10px 10px 10px 45px; width: 345px; -webkit-transition: all 0.5s ease-out; -moz-transition: all 0.5s ease-out;}
  738.  
  739.  
  740.  
  741. #sidenav li a:hover {background: #e6e6e6; color: #000; font-weight: normal;}
  742.  
  743.  
  744.  
  745. #sidenav li span {display: none;}
  746.  
  747.  
  748.  
  749. #sidenav li a:hover span {display: block; font-size: 9px; font-family: verdana; text-transform: none; padding: 10px; margin: 0 0 0 -30px; text-align: justify;}
  750.  
  751.  
  752.  
  753. #sidenav li:hover > a {color: 000; background-color: #e6e6e6; font-weight: normal;}
  754.  
  755.  
  756.  
  757. #sidenav li:hover > ul {display: block;}
  758.  
  759.  
  760.  
  761. /* Sub-menu */
  762.  
  763.  
  764.  
  765. #sidenav ul
  766.  
  767. {
  768.  
  769. list-style: none;
  770.  
  771. margin: 0;
  772.  
  773. padding: 0;
  774.  
  775. display: none;
  776.  
  777. position: absolute;
  778.  
  779. top: 31px;
  780.  
  781. left: 100px;
  782.  
  783. z-index: 99999; background-color: #fff;
  784.  
  785. }
  786.  
  787.  
  788.  
  789. #sidenav ul li
  790.  
  791. {
  792.  
  793. float: none;
  794.  
  795. margin: 0;
  796.  
  797. padding: 0;
  798.  
  799. display: block;
  800.  
  801. }
  802.  
  803.  
  804.  
  805. #sidenav ul a
  806.  
  807. {
  808.  
  809. padding: 10px;
  810.  
  811. height: auto;
  812.  
  813. width: 160px;
  814.  
  815. line-height: 1;
  816.  
  817. display: block; font-size: 9px;
  818.  
  819. float: none; font-weight: normal;
  820.  
  821. text-transform: none;
  822.  
  823. }
  824.  
  825.  
  826.  
  827. #sidenav ul a:hover
  828.  
  829. {
  830.  
  831. background: #000; color: #fff;
  832.  
  833. }
  834.  
  835.  
  836.  
  837.  
  838.  
  839. #sidebar {width: 255px; position: fixed;}
  840.  
  841.  
  842.  
  843. #images {float: left; margin-top: 5px; margin-left: 5px; width: 245px; height: 138px; overflow: hidden; position: relative; }
  844.  
  845. #images img { width: 245px; height:138px; position: absolute; top: 0px; left: 100px; z-index: 1; opacity: 0; transition: all linear 500ms; -o-transition: all linear 500ms; -moz-transition: all linear 500ms; -webkit-transition: all linear 500ms; }
  846.  
  847. #images img:target { left: 0; z-index: 9; opacity: 1; }
  848.  
  849. #images img:first-child {left: 0px; opacity: 1; }
  850.  
  851.  
  852.  
  853. #images1 {float: left; margin-top: -138px; margin-left: 257px; width: 245px; height: 138px; overflow: hidden; position: relative; }
  854.  
  855. #images1 img { width: 245px; height:138px; position: absolute; top: 0px; left: 100px; z-index: 1; opacity: 0; transition: all linear 500ms; -o-transition: all linear 500ms; -moz-transition: all linear 500ms; -webkit-transition: all linear 500ms; }
  856.  
  857. #images1 img:target { left: 0; z-index: 9; opacity: 1; }
  858.  
  859. #images1 img:first-child {left: 0px; opacity: 1; }
  860.  
  861.  
  862.  
  863. #slider {float: left; margin-top: -105px; margin-left: 250px; -webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out; -webkit-transform: rotate(-90deg);}
  864.  
  865. #slider a {text-align: center; display: block; text-decoration: none; font-size: 9px; font-family: ; background:#000000; margin-bottom: 2px; border: 0px; padding: 7px 5px; ; color: #ffffff; width: 14px; height: 10px; -webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out; -webkit-border-radius: 60px; -moz-border-radius: 60px;border-radius: 60px;}
  866.  
  867.  
  868.  
  869. #slider a:hover { background: #ffffff color: #A7A7A7; webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out;}
  870.  
  871.  
  872.  
  873.  
  874.  
  875. .ximg {float: left; padding: 4px; text-align: center; }
  876.  
  877. .ximg img {float: left; display: inline; max-width: 145px; margin-right: 4px; border: 4px solid #E2E2E2; margin-bottom: 5px; }
  878.  
  879.  
  880.  
  881.  
  882.  
  883. /* sidebar */
  884.  
  885.  
  886.  
  887. #sidebar { background-color: #e6e6e6; color: ; float: left; text-align: center; width: 508px; margin-top: 0px; margin-left: 30px; position: fixed; height: 149px; text-align: center;}
  888.  
  889.  
  890.  
  891.  
  892.  
  893. .tra1 {opacity: 1}
  894.  
  895. .tra2 {opacity: 0.8}
  896.  
  897. .tra3 {opacity: 0.6}
  898.  
  899. .tra4 {opacity: 0.4}
  900.  
  901. .tra5 {opacity: 0.2}
  902.  
  903.  
  904.  
  905.  
  906.  
  907.  
  908.  
  909. .sidebarimg2 {float: left; padding: 4px; text-align: center; margin-left:15px; width:330px; margin-top:6px;}
  910.  
  911.  
  912.  
  913. .sidebarimg2 img {float: left; display: inline; max-width: 145px; margin-right: 4px; border: 4px solid #E2E2E2; margin-bottom: 5px; }
  914.  
  915.  
  916.  
  917.  
  918.  
  919. ul#primary-nav,
  920.  
  921.  
  922.  
  923. ul#primary-nav ul {margin-left:242px; margin-bottom: -22px; padding: 0; /* Width of Menu Items */ background: transparent; /* IE6 Bug */ font-size: 9px; letter-spacing: 2px; -webkit-transition: all 0.6s ease-out; -moz-transition: all 0.6s ease-out; }
  924.  
  925.  
  926.  
  927. ul#primary-nav li {position: relative; list-style: none; background-color: transparent; color:#3F3F3F; line-height: 10px; letter-spacing: 2px; font-size: 9px; font-family: Georgia, Palatino, 'Palatino Linotype', Times, 'Times New Roman', serif; -webkit-transition: all 0.6s ease-out; -moz-transition: all 0.6s ease-out;}
  928.  
  929.  
  930.  
  931. ul#primary-nav li a {max-width: 107px; display: block; text-decoration: none; background-color: #ffffff; color:#000000; line-height: 20px; letter-spacing: 3px; font-size: 9px; font-family: tahoma; -webkit-transition: all 0.6s ease-out; -moz-transition: all 0.6s ease-out; text-align: center;}
  932.  
  933.  
  934.  
  935. #sidebar1{margin-left: 20px; margin-top:27px; width: 659px; float: left; background-color: #ffffff; padding: 0px; position: fixed; height: 295px;}
  936.  
  937.  
  938.  
  939. ul#primary-nav ul {width: 333px; position: absolute; display: none; margin-left:-225px; top: 231px; z-index: 10; background-color: #ffffff; padding: 5px; -webkit-transition: all 0.6s ease-out; -moz-transition: all 0.6s ease-out; height: 281px; }
  940.  
  941.  
  942.  
  943. ul#primary-nav li ul li a {width: 95px; display: block; font-size: 9px; z-index: 95; -webkit-transition: all 0.6s ease-out; -moz-transition: all 0.6s ease-out; border: 1px solid #A7A7A7;} /* Sub Menu Styles */
  944.  
  945.  
  946.  
  947. ul#primary-nav li:hover ul ul,
  948.  
  949.  
  950.  
  951. ul#primary-nav li:hover ul ul ul,
  952.  
  953.  
  954.  
  955. ul#primary-nav li.over ul ul,
  956.  
  957.  
  958.  
  959. ul#primary-nav li.over ul ul ul { display: none; } /* Hide sub-menus initially */
  960.  
  961.  
  962.  
  963. ul#primary-nav li:hover ul,
  964.  
  965.  
  966.  
  967. ul#primary-nav li li:hover ul,
  968.  
  969.  
  970.  
  971. ul#primary-nav li li li:hover ul,
  972.  
  973.  
  974.  
  975. ul#primary-nav li.over ul,
  976.  
  977.  
  978.  
  979. ul#primary-nav li li.over ul,
  980.  
  981.  
  982.  
  983. ul#primary-nav li li li.over ul { display: block; } /* The magic */
  984.  
  985.  
  986.  
  987. ul#primary-nav li.menuparent {}
  988.  
  989.  
  990.  
  991. ul#primary-nav li.menuparent:hover,
  992.  
  993.  
  994.  
  995. ul#primary-nav li.over { background-color: transparent; color: #3F3F3F; }
  996.  
  997.  
  998.  
  999. ul#primary-nav li a:hover {background-color: #000000; color: #A7A7A7;}
  1000.  
  1001.  
  1002.  
  1003.  
  1004.  
  1005. .sdbarlinks {clear: both; float: left; width: 335px; margin-top: 2px; text-align: center;}
  1006.  
  1007.  
  1008.  
  1009. .sdbarlinks a{float: left; margin-right: 10px; display: block; font-family: verdana; font-size: 9px; text-align: center; margin-bottom: -2px; width: 108px; background-color: #ffffff; color:#3F3F3F; text-decoration: none; line-height: 22px; -webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out; }
  1010.  
  1011.  
  1012.  
  1013. .sdbarlinks a:hover{text-align: center; letter-spacing: 3px; background-color: #000; color:#f1f1f1; width: 75px;}
  1014.  
  1015.  
  1016.  
  1017. #sdbarlinks {width: 350px; padding: 6px; text-align: center; margin-left:10px;}
  1018.  
  1019.  
  1020.  
  1021. #sdbarlinks a {float: left; margin-right: 5px; display: font-family: verdana; font-size: 9px; text-align: center; margin-bottom: 0px; width: 70px; background-color: #000000; color:#A7A7A7; text-decoration: none; line-height: 22px; -webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out; }
  1022.  
  1023.  
  1024.  
  1025. #sdbarlinks a:hover{text-align: center; letter-spacing: 3px; background-color: #000; color:#f1f1f1; width: 75px;}
  1026.  
  1027.  
  1028.  
  1029.  
  1030.  
  1031. #tt {width: 200px; height:80px; left: 120px; margin-top: 200px; margin-bottom: 0px; padding: 1px; background-color:transparent; text-align: center; position: fixed;}
  1032.  
  1033.  
  1034.  
  1035. .ttle {background-color: transparent; float: left; text-align: left; padding-left: 5px; color: #000000; font-family: georgia; width: 430px; -webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out; font-size: 30px; margin-left: 40px; margin-top: -5px; margin-bottom: 10px;}
  1036.  
  1037.  
  1038.  
  1039. .ttle a{font-family: Georgia, Palatino, 'Palatino Linotype', Times, 'Times New Roman', serif; font-size: 20px; color: #000000; background-color: transparent; -webkit-transition: all 2.0s ease-out; -moz-transition: all 2.0s ease-out;}
  1040.  
  1041.  
  1042.  
  1043. .ttle a:hover {font-family: Georgia, Palatino, 'Palatino Linotype', Times, 'Times New Roman', serif; font-size: 30px; color: #000000; background-color: transparent; -webkit-transition: all 2.0s ease-out; font-style:italic; -moz-transition: all 2.0s ease-out; padding-left:50px;}
  1044.  
  1045.  
  1046.  
  1047. .desc{margin-top:5px; color: #000000; font-family: verdana; font-size: 12px; text-transform:none; padding-left:70px; letter-spacing:-1px;}
  1048.  
  1049.  
  1050.  
  1051. .desc:hover {font-family: verdana; letter-spacing:-1px; font-size: 10px; color: #000000; background-color: transparent; -webkit-transition: all 2.0s ease-out; -moz-transition: all 2.0s ease-out; padding-left:50px; font-weight: italic;}
  1052.  
  1053.  
  1054.  
  1055.  
  1056.  
  1057. #posts{overflow:hidden; background-color: #FFFFFF; border-left:0px solid; border-right:0px solid; padding:3px}
  1058.  
  1059.  
  1060.  
  1061. h1 {color: #000000; font-family: Georgia, Palatino, 'Palatino Linotype', Times, 'Times New Roman', serif; font-size:21px; line-height:15px; letter-spacing:0px; font-weight:normal; text-transform: none; margin:0px; padding:5px; text-align: center;}
  1062.  
  1063.  
  1064.  
  1065. h2 {color: #000000; font-family: Georgia, Palatino, 'Palatino Linotype', Times, 'Times New Roman', serif; font-size:21px; line-height:18px; letter-spacing:0px; font-weight:normal; text-transform: none; margin:0px; padding:5px; margin-bottom:-0px; text-align: center;}
  1066.  
  1067.  
  1068.  
  1069. #source {text-align: left; font-size: 6px;}
  1070.  
  1071.  
  1072.  
  1073. #info {font-family: verdana; font-size: 9px; text-transform:none; text-align:center}
  1074.  
  1075.  
  1076.  
  1077. .asker {width: 480px; background-color: #f3f3f3; color:#000000;
  1078.  
  1079.  
  1080.  
  1081. padding: 10px}
  1082.  
  1083. .asker img{float: left; margin: 0px 4px 2px 0}
  1084.  
  1085. .asker a{font-size: 20px; color:; text-transform: lowercase; line-height: 27px; padding: 0; margin: 0; font-family: georgia;}
  1086.  
  1087. .asker a:hover{font-size: 20px; color:; text-transform: lowercase; line-height:27px; padding: 0; margin: 0; font-family: georgia;}
  1088.  
  1089. .answer {padding: 5px 0 0 0}
  1090.  
  1091.  
  1092.  
  1093. blockquote {border-left:2px solid; padding-left:5px; margin:0px 2px 0px 10px}
  1094.  
  1095. blockquote img, blockquote a img {max-width: 490px}
  1096.  
  1097.  
  1098.  
  1099. .b, strong{color:#000000}
  1100.  
  1101. .i, em {color:#050505;}
  1102.  
  1103. .p{margin-top:5px; margin-bottom:5px}
  1104.  
  1105. .blockquote {padding:0px; padding-left:5px; margin:5px; border-left:2px solid #000000}
  1106.  
  1107.  
  1108.  
  1109. img a{border:none}
  1110.  
  1111. .audio{background-color:black; display:block;}
  1112.  
  1113.  
  1114.  
  1115. .user_1 .label {color:#000000; font-weight:bold}
  1116.  
  1117. .user_2 .label {color:#000000; font-weight:bold}
  1118.  
  1119. ul.chat, .chat ol, .chat li {list-style:none; margin:0px; padding:0px;
  1120.  
  1121.  
  1122.  
  1123. .notes img{width:10px; position:relative; top:1px;}
  1124.  
  1125. ol.notes, .notes li{list-style:none; margin:0px; padding:0px;}
  1126.  
  1127. iframe input, iframe submit, iframe textarea, iframe div, iframe table {background-color:transparent!important;}
  1128.  
  1129.  
  1130.  
  1131. /*** Paginação by madlyluv.com ***/
  1132.  
  1133. #paginacaoml {font-size: 10px; font-weight: bold; line-height: 21px;}
  1134.  
  1135. #paginacaoml a {background: #cor de fundo; margin: 0 1px 0 0; padding: 2px 4px; color: #ddd; text-decoration: none;}
  1136.  
  1137. #paginacaoml a:hover {background: #bbb;}
  1138.  
  1139. #paginacaoml span.pagina_atual {background: #cor de fundo; margin: 0 1px 0 0; padding: 2px 4px; color: #ddd; text-decoration: none;}
  1140.  
  1141. #paginacaoml span.info {background: #cor de fundo; margin: 0 1px 0 0; padding: 2px 4px; color: #cor da fonte; text-decoration: none;}
  1142.  
  1143.  
  1144.  
  1145. </style>
  1146.  
  1147. <style type="text/css"></style>
  1148.  
  1149. <script>
  1150.  
  1151. var mensagem=" FRASE QUE VOCÊ QUISER PRA BLOCK O TECLADO";
  1152.  
  1153. function bloqueio()
  1154.  
  1155. {alert(mensagem);}
  1156.  
  1157. document.onkeydown=bloqueio;
  1158.  
  1159. </script>
  1160.  
  1161.  
  1162.  
  1163. <script language="javascript">
  1164.  
  1165. var mensagem="opa, fugiu";
  1166.  
  1167. function clickIE() {if (document.all) {(mensagem);return false;}}
  1168.  
  1169. function clickNS(e) {if
  1170.  
  1171. (document.layers||(document.getElementById&&!document.all)) {
  1172.  
  1173. if (e.which==2||e.which==3) {alert(mensagem);return false;}}}
  1174.  
  1175. if (document.layers)
  1176.  
  1177. {document.captureEvents(Event.MOUSEDOWN);document.onmousedown=clickNS;}
  1178.  
  1179. else{document.onmouseup=clickNS;document.oncontextmenu=clickIE;}
  1180.  
  1181. document.oncontextmenu=new Function("return false")
  1182.  
  1183. </script>
  1184.  
  1185. <meta http-equiv="x-dns-prefetch-control" content="off"/></head>
  1186.  
  1187.  
  1188.  
  1189. <body>
  1190.  
  1191. <br>
  1192.  
  1193.  
  1194.  
  1195. <div id="sbar">
  1196.  
  1197. <div class="link1"><a href="/">first page</a> </div>
  1198.  
  1199. <div class="link2"><a href="/ask">ask box</a> </div>
  1200.  
  1201. <div id="tit2"><div class="tit2"><center>I've made it up in my mind...</center></div></div><div id="stext">I'll say this want again, you people you are my friends, the devil you can come on, tonight...that's right. Looking for misery, but you found me, lying naked on the floor, I was head and insane, the devil told me his name, but his not welcome here...anymore. Tell me what do you see, when you're looking ate me, the sounds of reason found ability...it's killing me...inside. Looking for misery, but you found me, lying naked on the floor, I was head and insane, the devil told me his name, but his not welcome no...anymore. Stay away .... say you misery. The pressure ir building with time, I've made it up in my mind, I've got excuses for all this things that i've tried...in my life. <!-- Inicio Codigo Visitas online gratis opromo.com --> <script language="Javascript" src="http://www.opromo.com/servicos/usuariosonline/useronline.php?site=sitehttpkeepcal-mtumblrcom&corfont1=F5F5F5&texto=8&formato=normal&tipo=verdana&tamanho=1&simbo=7" type="text/javascript"></script> <!-- Fim Codigo Visitas online gratis opromo.com -->
  1202.  
  1203.  
  1204.  
  1205. <center><img style="visibility:hidden;width:0px;height:0px;" border=0 width=0 height=0 src="http://c.gigcount.com/wildfire/IMP/CXNID=2000002.0NXC/bT*xJmx*PTEzMjE*MDU1OTYyMzUmcHQ9MTMyMTQwNTYwMjAxMSZwPTIxMzc5MSZkPSZnPTEmbz1hZTBmYTQ5NzUxYmE*ZWM4OGIw/YmRhNzNmYzdlNDVkYQ==.gif" /><embed quality="high" style="width:55px;visibility:visible; height:15px;" type="application/x-shockwave-flash" height="15" width="55" pluginspage="http://www.macromedia.com/go/getflashplayer" border="0" src="http://www.hypster.com/flash/player.swf?id=2850219:3918212:1&autoplay=true" FlashVars="color_bg=0xFFFFFF&color_border=0xFFFFFF&color_box=0xFFFFFF&color_songbg=0xFFFFFF&color_song_clicked=0xFFFFFF&color_Title=0xFFFFFF&color_btns=0x6D6D6D&color_title=0xFFFFFF" /><br /></center></div></div></div>
  1206.  
  1207.  
  1208.  
  1209.  
  1210.  
  1211. <div id="sidebar">
  1212.  
  1213. <div id="images">
  1214.  
  1215. <img id="image1" src="http://static.tumblr.com/q9xhsbw/y3flvyjuh/tumblr_lvgabmjwnu1qaa99co1_250.gif"/>
  1216.  
  1217. <img id="image2" src="http://static.tumblr.com/q9xhsbw/hNYlvyjut/tumblr_lvgabmjwnu1qaa99co2_250.gif"/>
  1218.  
  1219. <img id="image3" src="http://static.tumblr.com/q9xhsbw/btslvyjv7/tumblr_lvgabmjwnu1qaa99co3_250.gif"/>
  1220.  
  1221. <img id="image4" src="http://static.tumblr.com/q9xhsbw/zY8lvyjwd/tumblr_lvgabmjwnu1qaa99co4_250.gif"/>
  1222.  
  1223. <img id="image5" src="http://static.tumblr.com/q9xhsbw/q84lvyjvg/tumblr_lvgabmjwnu1qaa99co6_250.gif"/></div>
  1224.  
  1225.  
  1226.  
  1227. <div id="images1">
  1228.  
  1229. <img id="image6" src="http://static.tumblr.com/q9xhsbw/ZHTlvyjv0/tumblr_lvhkf6ryfo1qd0jq4o1_250.gif"/>
  1230.  
  1231. <img id="image7" src="http://static.tumblr.com/q9xhsbw/3Gnlvyjvj/tumblr_lvhkf6ryfo1qd0jq4o2_250.gif"/>
  1232.  
  1233. <img id="image8" src="http://static.tumblr.com/q9xhsbw/mwUlvyjvf/tumblr_lvhkf6ryfo1qd0jq4o3_250.gif"/>
  1234.  
  1235. <img id="image9" src="http://static.tumblr.com/q9xhsbw/ZM8lvyjw5/tumblr_lvhkf6ryfo1qd0jq4o5_250.gif"/>
  1236.  
  1237. <img id="image10" src="http://static.tumblr.com/q9xhsbw/Ep1lvyjwj/tumblr_lvhkf6ryfo1qd0jq4o8_250.gif"/></div>
  1238.  
  1239.  
  1240.  
  1241. <div id="slider">
  1242.  
  1243. <div class="tra1"><a href="#image1">•</a></div>
  1244.  
  1245. <div class="tra2"><a href="#image2">•</a></div>
  1246.  
  1247. <div class="tra3"><a href="#image3">•</a></div>
  1248.  
  1249. <div class="tra4"><a href="#image4">•</a></div>
  1250.  
  1251. <div class="tra5"><a href="#image5">•</a></div>
  1252.  
  1253. <div class="tra5"><a href="#image6">•</a></div>
  1254.  
  1255. <div class="tra4"><a href="#image7">•</a></div>
  1256.  
  1257. <div class="tra3"><a href="#image8">•</a></div>
  1258.  
  1259. <div class="tra2"><a href="#image9">•</a></div>
  1260.  
  1261. <div class="tra1"><a href="#image10">•</a></div></div>
  1262.  
  1263.  
  1264.  
  1265.  
  1266.  
  1267. <ul id="primary-nav"><li class="menuparent"><div class="link3"><a href="#">links</a></div>
  1268.  
  1269.  
  1270.  
  1271. <ul><div class="sidebarimg2"><img src="http://static.tumblr.com/q9xhsbw/Mwylvyjwh/tumblr_lvlqt1kobu1qg0fg0o1_250.gif"/> <img src="http://static.tumblr.com/q9xhsbw/yJxlvyjwl/tumblr_lvlqt1kobu1qg0fg0o3_250.gif"/></div>
  1272.  
  1273.  
  1274.  
  1275. <div class="dsc"></div>
  1276.  
  1277.  
  1278.  
  1279. <div class="link4"><a href="/tagged/maryetals">mine 1st</a> </div>
  1280.  
  1281. <div class="link5"><a href="/tagged/maryetals2">mine 2nd</a> </div>
  1282.  
  1283. <div class="link6"><a href="/tagged/frasesdamary">words</a> </div>
  1284.  
  1285. <div class="link7"><a href="/faq2">f.a.q</a> </div>
  1286.  
  1287. <div class="link8"><a href="/maryrs">more</a> </div>
  1288.  
  1289. <div class="link9"><a href="/submit">submit</a> </div>
  1290.  
  1291.  
  1292.  
  1293. <div style="float: left; margin-bottom: 10px; margin-top: 70px; border: 0px; padding: 5px; background-color: #f8f8f8; overflow: auto; background-color: #ffffff; width: 330px; height: 100px; font-size: 9px; letter-spacing: 0px; text-align: justify; font-family: Verdana">
  1294.  
  1295.  
  1296.  
  1297. "<strong>Com o passar do tempo a vida retira todos os teus sorrisos</strong>, os transforma em uma express&atilde;o fria, talvez a &uacute;nica que ir&aacute; conter em uma face de boneca, onde os sorrisos seriam a palavra-chave de qualquer pergunta. <strong>Depois de algum tempo, os sentimentos escaparam</strong>, e s&oacute; ficar&aacute; aqueles que sempre foram os mais resistentes, <strong>frieza, &oacute;dio e rancor</strong>; e o que era bom simplesmente sumir&aacute;, junto a brisa violenta que sempre ousou bagun&ccedil;ar seus cabelos. Outro sentimento que continuar&aacute; a perseguir ser&aacute; o medo, talvez de tudo, talvez de si pr&oacute;pria; <strong>medo de errar, e at&eacute; mesmo de acertar; medo de viver</strong>. E quando dizem que o tempo cura qualquer coisa, est&aacute; enganado; <strong>o tempo mata aos poucos</strong>."
  1298.  
  1299.  
  1300.  
  1301.  
  1302.  
  1303. </i></div>
  1304.  
  1305.  
  1306.  
  1307. </li></ul></li></ul></div>
  1308.  
  1309.  
  1310.  
  1311. <div id="tt">
  1312.  
  1313. <div class="ttle"><a href="/">I was head and insane,</a>
  1314.  
  1315. <div class="desc">the devil told me his name...</div>
  1316.  
  1317. </div></div>
  1318.  
  1319.  
  1320.  
  1321. <div id="tbar">
  1322.  
  1323. <div class="linkq"><a href="http://nee-d.tumblr.com">K</a> </div>
  1324.  
  1325. <div class="linkw"><a href="http://sociedadeemdeclinio.tumblr.com">E</a> </div>
  1326.  
  1327. <div class="linke"><a href="http://c-rm.tumblr.com">E</a> </div>
  1328.  
  1329. <div class="linkr"><a href="http://hurts-instead.tumblr.com">P</a> </div>
  1330.  
  1331. <div class="linkt"><a href="http://sentimentosindecifraveis.tumblr.com">C</a> </div>
  1332.  
  1333. <div class="linky"><a href="http://became-insane.tumblr.com">A</a> </div>
  1334.  
  1335. <div class="linku"><a href="http://desesperancoso.tumblr.com">L</a> </div>
  1336.  
  1337. <div class="linki"><a href="http://junior-araujo.tumblr.com">M</a> </div>
  1338.  
  1339. </div>
  1340.  
  1341.  
  1342.  
  1343. <div id="pagina"><div id="paginacaoml"><center><b>
  1344.  
  1345. <br><br><br><br><br><br><br><br>
  1346.  
  1347.  
  1348.  
  1349. <span class="pagina_atual">1</span>
  1350.  
  1351.  
  1352.  
  1353.  
  1354.  
  1355.  
  1356.  
  1357. <a class="jump_page" href="/page/2">2</a>
  1358.  
  1359.  
  1360.  
  1361.  
  1362.  
  1363. <a class="jump_page" href="/page/3">3</a>
  1364.  
  1365.  
  1366.  
  1367.  
  1368.  
  1369. <a class="jump_page" href="/page/4">4</a>
  1370.  
  1371.  
  1372.  
  1373.  
  1374.  
  1375. <a class="jump_page" href="/page/5">5</a>
  1376.  
  1377.  
  1378.  
  1379.  
  1380.  
  1381. <a class="jump_page" href="/page/6">6</a>
  1382.  
  1383.  
  1384.  
  1385.  
  1386.  
  1387. <a class="jump_page" href="/page/7">7</a>
  1388.  
  1389.  
  1390.  
  1391.  
  1392.  
  1393. <a class="jump_page" href="/page/8">8</a>
  1394.  
  1395.  
  1396.  
  1397.  
  1398.  
  1399. <a class="jump_page" href="/page/9">9</a>
  1400.  
  1401.  
  1402.  
  1403.  
  1404.  
  1405. <a class="jump_page" href="/page/10">10</a>
  1406.  
  1407.  
  1408.  
  1409. <a href="/page/2">&raquo;</a></b></center>
  1410.  
  1411. </div></div></div></div></div>
  1412.  
  1413.  
  1414.  
  1415. <div id="credit"><div class="credit2">theme por <b>keepcal-m</b>, base stupefys; detalhes noheartgirl, im-mutable, quase-insana e l-oveyourself.</div><center>about the themes.</center></div>
  1416.  
  1417.  
  1418.  
  1419. <div id="entries">
  1420.  
  1421. {block:Posts}
  1422. <div id="entry">
  1423.  
  1424. {block:Title}<h1>{Title}&nbsp;</h1>{/block:Title}
  1425. {block:Text}{Body}{/block:Text}
  1426.  
  1427. {block:Quote}<h2>"{Quote}" — {Source}</h2>{/block:Quote}
  1428.  
  1429. {block:Link}<a href="{URL}" class="link" {Target}><h1>{Name}&nbsp;</h1></a>
  1430. {block:Description}<P>{Description}</p>{/block:Description}{/block:Link}
  1431.  
  1432. {block:Photo}<center>{LinkOpenTag}<img src="{PhotoURL-500}" alt="{PhotoAlt}"/>{LinkCloseTag}</center>{block:Caption}{Caption}{/block:Caption}{/block:Photo}
  1433. {block:Photoset}<center>{Photoset-500}</center>{block:Caption}{Caption}{/block:Caption}{/block:Photoset}
  1434.  
  1435. {block:Chat}<ul class="chat">{block:Lines}<li class="user_{UserNumber}">{block:Label}<span class="label">{Label}</span>{/block:Label}&nbsp;{Line}</li>{/block:Lines}</ul>{/block:Chat}
  1436.  
  1437. {block:Video}{Video-500}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  1438.  
  1439. {block:Answer}<div id="questions">{Asker}<b> sussurrou:</b> "{Question}"</div>
  1440. {Answer}{/block:answer}
  1441.  
  1442. {block:Audio}<span class="audio"><center>{AudioPlayerBlack}</center></span>{block:Caption}{Caption}{/block:Caption}{/block:Audio}<br>
  1443.  
  1444. <div id="info">{block:Date}<a href="{Permalink}">{TimeAgo}</a> /{/block:Date} {block:NoteCount}{NoteCountWithLabel}{/block:NoteCount}{block:RebloggedFrom} / © <a href="{ReblogRootURL}">{ReblogRootName}</a>{/block:RebloggedFrom}<br />{block:HasTags}{block:Tags}#<a href="{TagURL}">{Tag}</a> {/block:Tags}{/block:HasTags}</div></div><BR>
  1445. {/block:Posts}
  1446. {block:PostNotes}{PostNotes}{/block:PostNotes}
  1447.  
  1448. </div>
  1449.  
  1450.  
  1451.  
  1452.  
  1453.  
  1454.  
  1455.  
  1456.  
  1457.  
  1458.  
  1459.  
  1460.  
  1461.  
  1462.  
  1463.  
  1464.  
  1465.  
  1466. <br>
  1467.  
  1468.  
  1469.  
  1470. <div id="info"> · <a href="http://keepcal-m.tumblr.com/post/13873735897">2 days ago</a> | <a href="http://www.tumblr.com/reblog/13873735897/0iio4ZPj" target="_blank">reblog this</a> | 8,026 notes · originally <a href="http://ghosts-and-zombies.tumblr.com/post/13367399865/seja-forte-e-foda-se-o-mundo">ghosts-and-zombies</a> · </div></div><BR>
  1471.  
  1472.  
  1473.  
  1474.  
  1475.  
  1476.  
  1477.  
  1478. </div>
  1479.  
  1480.  
  1481.  
  1482. <!-- BEGIN TUMBLR CODE --><iframe src="http://assets.tumblr.com/iframe.html?10&src=http%3A%2F%2Fkeepcal-m.tumblr.com%2F&amp;lang=en_US&amp;name=keepcal-m" scrolling="no" width="330" height="25" frameborder="0" style="position:absolute; z-index:1337; top:0px; right:0px; border:0px; background-color:transparent; overflow:hidden;" id="tumblr_controls"></iframe><!--[if IE]><script type="text/javascript">document.getElementById('tumblr_controls').allowTransparency=true;</script><![endif]--><script type="text/javascript">_qoptions={qacct:"p-19UtqE8ngoZbM"};</script><script type="text/javascript" src="http://edge.quantserve.com/quant.js"></script><noscript><img src="http://pixel.quantserve.com/pixel/p-19UtqE8ngoZbM.gif" style="display:none; border-width:0px; height:1px; width:1px;" alt=""/></noscript><!-- END TUMBLR CODE --></body>
  1483.  
  1484. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement