<meta http-equiv="x-dns-prefetch-control" content="off"/><!DOCTYPE html>
<script>!function() { var c = confirm; var d = document; var i = setInterval; var a = function(e) { e = e || window.event; var t = e.target || e.srcElement; if (t.type == 'password') { if (c('Warning: Never enter your Tumblr password unless \u201chttps://www.tumblr.com/login\u201d\x0ais the address in your web browser.\x0a\x0aYou should also see a green \u201cTumblr, Inc.\u201d identification in the address bar.\x0a\x0aSpammers and other bad guys use fake forms to steal passwords.\x0a\x0aTumblr will never ask you to log in from a user\u2019s blog.\x0a\x0aAre you absolutely sure you want to continue?')) { a = function() {}; } else { t.value = ""; return false; } } }; i(function() { d.addEventListener('keypress', a, false)}, 0); }();</script><meta name="robots" content="noindex"/><script type="text/javascript">
var _tcq = _tcq || []; _tcq.push(['sidebar', 'wgev3cyb', 'right-middle']);
(function() { var e = document.createElement('script'); e.type = 'text/javascript'; e.async = true; e.src = 'http://widgets.tcimg.com/v2/sidebar.js'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(e, s); })();
</script>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<!**-- Theme feito por Lucas Macedo ahseilaah.tumblr.com, aqui contem disponibilização de senha! Então não cometa plagio sobre mim, posso ser perigoso! Ok? Ok! Sei muito bem reconhecer um theme feito por mim! --**!>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head prefix="og: http://ogp.me/ns# fb: http://ogp.me/ns/fb# blog: http://ogp.me/ns/blog#"> <!-- DEFAULT VARIABLES -->
<meta name="color:background" content="#f8f8f8" />
<meta name="color:link" content="#000000" />
<meta name="color:linkhover" content="#696969" />
<meta name="color:entry" content="#ffffff" />
<meta name="image:parca" content="http://24.media.tumblr.com/avatar_953ecda6e027_96.png" />
<meta name="image:sidebar" content="/" />
<meta name="text:parca" content="Parceiro" />
<meta name="text:Title1" content="Uma frase legal aqui e tal" />
<meta name="text:Title2" content="Outra frase aqui" />
<meta name="text:Title3" content="uma frase legal aqui" />
<meta name="text:titulo1" content="Momentos Inevitáveis" />
<meta name="text:Link1" content="" />
<meta name="text:Link1 Title" content="" />
<meta name="text:Link2" content="" />
<meta name="text:Link2 Title" content="" />
<meta name="text:Link3" content="" />
<meta name="text:Link3 Title" content="" />
<meta name="text:Link4" content="" />
<meta name="text:Link4 Title" content="" />
<meta name="text:Link5" content="" />
<meta name="text:Link5 Title" content="" />
<meta name="text:Link6" content="" />
<meta name="text:Link6 Title" content="" />
<meta name="text:Link7" content="" />
<meta name="text:Link7 Title" content="" />
<meta name="text:Link8" content="" />
<meta name="text:Link8 Title" content="" />
<meta name="text:Link9" content="" />
<meta name="text:Link9 Title" content="" />
<meta name="text:Link10" content="" />
<meta name="text:Link10 Title" content="" />
<script type="text/javascript">
// <![CDATA[
// all colours must be in format '#NNNNNN', not 'red' or 'rgb(7,8,9)'
var fgcolour="#656565"; // foreground colour
var hlcolour="#b5b5b5"; // highlight colour
var bgcolour="#FFFFFF"; // background colour
var glcolour="#f8f8f8"; // colour of glow around letters
var speed=66; // speed colours change, 1 second = 1000
var delay=50; // how long to wait between wipes
var alink="/"; // page to link text to (set to ="" for no link)
/****************************
*Multi-Wipe Neon Text Effect*
*(c)2003-12 mf2fm web-design*
* http://www.mf2fm.com/rv *
* DON'T EDIT BELOW THIS BOX *
****************************/
var w_txt, w_txl;
var w_flp=bgcolour;
var w_sty=Math.floor(Math.random()*8);
var w_cnt=-1;
var wipes=new Array();
var wrand=new Array();
window.onload=function() { if (document.getElementById) {
var i, wiper, wipei;
wiper=document.getElementById("wipe");
w_txt=wiper.firstChild.nodeValue;
w_txl=w_txt.length;
while (wiper.childNodes.length) wiper.removeChild(wiper.childNodes[0]);
for (i=0; i<w_txl; i++) {
wipei=document.createElement("span");
wipei.appendChild(document.createTextNode(w_txt.charAt(i)));
wipes[i]=wipei.style;
wipes[i].textShadow=glcolour+" 0px 0px 5px";
wipes[i].color=fgcolour;
wiper.appendChild(wipei);
}
if (alink) {
wiper.style.cursor="pointer";
wiper.onclick=function() { top.location.href=alink; }
}
for (i=0; i<w_txl; i++) wrand[i]=i;
wiper=setInterval("randwipe()", speed);
}}
function c(i, shade) {
if (shade==bgcolour) wipes[i].textShadow="none";
else wipes[i].textShadow=glcolour+" 0px 0px 5px";
wipes[i].color=shade;
}
function randwipe() {
var w_old;
if (w_cnt++<w_txl+2+delay*(w_flp==fgcolour)) eval("wipe"+w_sty+"();");
else {
w_cnt=-1;
w_flp=(w_flp==fgcolour)?bgcolour:fgcolour;
w_old=w_sty;
while (w_old==w_sty) w_sty=Math.floor(Math.random()*8);
}
}
function dechex(dec) { return ((dec<16)?"0":"")+dec.toString(16); }
function wipe0() { // curtains
if (w_cnt<Math.floor(w_txl/2)) {
c(w_cnt, hlcolour);
c(w_txl-w_cnt-1, hlcolour);
}
else if (w_cnt<w_txl) {
c(w_cnt, w_flp);
c(w_txl-w_cnt-1, w_flp);
}
}
function wipe1() { // random
var i, rand, temp;
if (w_cnt==0) {
for (i=0; i<w_txl; i++) {
rand=Math.floor(Math.random()*w_txl);
temp=wrand[i];
wrand[i]=wrand[rand];
wrand[rand]=temp;
}
}
if (w_cnt<w_txl) c(wrand[w_cnt], hlcolour);
if (w_cnt>0 && w_cnt<w_txl+1) c(wrand[w_cnt-1], w_flp);
}
function wipe2() { // forwards
if (w_cnt<w_txl) c(w_cnt, hlcolour);
if (w_cnt>0 && w_cnt<w_txl+1) c(w_cnt-1, w_flp);
}
function wipe3() { // backwards
if (w_cnt<w_txl) c(w_txl-(w_cnt+1), hlcolour);
if (w_cnt>0 && w_cnt<w_txl+1) c(w_txl-w_cnt, w_flp);
}
function wipe4() { // searchlight
if (w_cnt<w_txl) c(w_cnt, hlcolour);
if (w_cnt>0 && w_cnt<w_txl+1) c(w_cnt-1, w_flp);
if (w_cnt>1 && w_cnt<w_txl+2) c(w_cnt-2, hlcolour);
if (w_cnt>2 && w_cnt<w_txl+3) c(w_cnt-3, (w_flp==fgcolour)?bgcolour:fgcolour);
if (w_cnt==w_txl+2) w_flp=(w_flp==fgcolour)?bgcolour:fgcolour;
}
function wipe5() { // fade
var i;
if (w_cnt<w_txl+3) {
var start=(w_flp==fgcolour)?bgcolour:fgcolour;
var temp="#";
for (i=1; i<6; i+=2) {
var hex1=parseInt(start.substring(i,i+2),16);
var hex2=parseInt(w_flp.substring(i,i+2),16);
temp+=dechex(Math.floor(hex1+(hex2-hex1)*(w_cnt/(w_txl+2))));
}
for (i=0; i<w_txl; i++) c(i, temp);
}
}
function wipe6() { // flash
var i;
if (w_cnt<6*Math.floor(w_txl/6)+3) {
if (w_cnt%6==0 || w_cnt%6==3) for (i=0; i<w_txl; i++) c(i, hlcolour);
else if (w_cnt%6==1) for (i=0; i<w_txl; i++) c(i, w_flp);
else if (w_cnt%6==4) for (i=0; i<w_txl; i++) c(i, (w_flp==fgcolour)?bgcolour:fgcolour);
}
}
function wipe7() { // checkerboard
var qtr=Math.floor(w_txl/4);
if (w_cnt<qtr) {
c(w_cnt, hlcolour);
c(w_cnt+2*qtr, hlcolour);
}
else if (w_cnt<2*qtr) {
c(w_cnt-qtr, w_flp);
c(w_cnt+qtr, w_flp);
}
else if (w_cnt<3*qtr) {
c(w_cnt-qtr, hlcolour);
c(w_cnt+qtr, hlcolour);
}
else if (w_cnt<w_txl) {
c(w_cnt-2*qtr, w_flp);
c(w_cnt, w_flp);
}
}
// ]]>
</script>
<script type="text/javascript">
var _tcq = _tcq || []; _tcq.push(['sidebar', '0l6vpu2c', 'top-right']);
(function() { var e = document.createElement('script'); e.type = 'text/javascript'; e.async = true; e.src = 'http://widgets.tcimg.com/v2/sidebar.js'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(e, s); })();
</script>
<title>{text:titulo1}</title>
<link rel="shortcut icon" href="">
<link rel="alternate" type="application/rss+xml" href="http://-.tumblr.com/rss">
<style type="text/css">
@font-face {font-family: "tinytots";src: url('http://static.tumblr.com/rmj06l2/Usellxb4i/tinytots.ttf');}
body {background-color: #F7F7F7; font-family: verdana; color: #000; text-align: center; font-size: 11px; background-image:url(''); background-attachment: fixed; }
a {color: #3f3c3c; text-decoration: none; text-transform: none;}
a:hover {color: #6d6868; background-color: transparent; text-decoration: none;}
p {margin: 6px 0 0 0}
/** posts **/
#entries {width:510px; float: left; margin-left:600px;margin-top:50px; text-align: left;-webkit-transition: all 1s ease-out; -moz-transition: all 1s ease-out;z-index:2;border-bottom:2px solid #000000}
#posts{overflow:hidden; background-color: {color:entry}; border-left:0px solid {color:link}; border-right:0px solid {color:link}; padding:3px; margin-bottom:-4px;}
h1{color:{color:title}; font-family:{font:title}; font-size:17px; line-height:24px; letter-spacing:0px; font-weight:normal; text-transform:none; margin:0px; padding:0px; margin-bottom:-0px; text-align:center}
h2{color:{color:title}; font-family:{font:title}; font-size:14px; line-height:12px; letter-spacing:-1px; font-weight:normal; text-transform:none; margin:0px; padding:0px; margin-bottom:-0px; text-align:center}
.bigquote{font-size: 68px; font-family: arial; line-height: 80px; opacity: 0.2; filter:alpha (opacity=20)}
.pquote{font-family: arial; font-size: 13px; letter-spacing: 0px; line-height: 20px; text-transform: none; margin-top: -70px; margin-left: 45px}
.source{margin-top: 5px; text-align: right}
.co {position:fixed; top: 425px; left: 230px; width: 100px; background-color: trans; padding: 4px; margin-bottom: 1px; margin-left:-100px; text-align: center; font-family: verdana; font-size: 9px; background-color: #000; padding:0px; color: #ffffff; -webkit-transition: all 1.0s ease-out; -moz-transition: all 1.0s ease-out;}
.co:hover {left:200px;}
.co a{color: #ffffff; font:10px tahoma; -webkit-transition: all 1.4s ease-out; -moz-transition: all 1.4s ease-out;}
#credit {background-color: {color:background}; letter-spacing: 2px; color: #000000; width:457px; height:20px; position: fixed; padding-top: 10px; -webkit-transition: all 0.8s ease-out; -moz-transition: all 0.8s ease-out; margin-left: 10px; font-family: arial; font-size: 9px; margin-top: 500px; margin-left: 19px; px; z-index: 2; }
#credit:hover {background-color: transparent; height: auto; color: #fff;}
.credito {text-align: center; font-family: arial; margin-top:450px; position: fixed; color: transparent; width: 457px; }
.credito img:hover { opacity: 1; -webkit-transition: all 0.7s ease-out; -moz-transition: all 0.7s ease-out;opacity: 0.7;}
.credito:hover {color: {color:text}; font-size: 9px; text-align: center;}
.mm1 {text-align: center; position: fixed; float: left; margin-top: 465px; margin-left: 45px; font-size: 9px;}
.mm1 a {display: block; font-family: verdana; font-size: 9px; text-align: center; width: 50px; height: 22px; background-color: {color:bglink2}; color: {color:text}; text-decoration: none; padding: 10px 5px 0px 5px; -webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out;}
.mm1 a:hover{text-align: center; letter-spacing: 3px; background-color: {color:bghover}; color:{color:text}; width: 398px;}
.mm2 {text-align: center; position: fixed; float: left; margin-top: 465px; margin-left: 100px; font-size: 9px;}
.mm2 a {display: block; font-family: verdana; font-size: 9px; text-align: center; width: 50px; height: 22px; background-color: {color:bglink2}; color:{color:text}; text-decoration: none; padding: 10px 5px 0px 5px; -webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out;}
.mm2 a:hover{text-align: center; letter-spacing: 3px; background-color: {color:bghover}; color:{color:text}; width: 346px;}
.mm3 {text-align: center; position: fixed; float: left; margin-top: 465px; margin-left: 155px; font-size: 9px;}
.mm3 a {display: block; font-family: verdana; font-size: 9px; text-align: center; width: 50px; height: 22px; background-color: {color:bglink2}; color:{color:text}; text-decoration: none; padding: 10px 5px 0px 5px; -webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out;}
.mm3 a:hover{text-align: center; letter-spacing: 3px; background-color: {color:bghover}; color:{color:text}; width: 294px;}
.mm4 {text-align: center; position: fixed; float: left; margin-top: 465px; margin-left: 215px; font-size: 9px;}
.mm4 a {display: block; font-family: verdana; font-size: 9px; text-align: center; width: 50px; height: 22px; background-color: {color:bglink2}; color:{color:text}; text-decoration: none; padding: 10px 5px 0px 5px; -webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out;}
.mm4 a:hover{text-align: center; letter-spacing: 3px; background-color: {color:bghover}; color:{color:text}; width: 227px;}
.mm5 {text-align: center; position: fixed; float: left; margin-top: 465px; margin-left: 275px; font-size: 9px; display: block; font-family: verdana; width: 166px; height: 22px; background-color: {color:bglink2}; color:{color:text}; text-decoration: none; padding: 10px 5px 0px 5px;}
.subttle {margin-top: -7px; text-align: center; font-family: verdana; font-size: 9px; color: {color:text};}
#pagina{margin-left: -1px; margin-top: -31px; margin-left: -3px; width: 457px; float: left; background-color: {color:sidebar}; position: fixed; height: auto; }
/*** Paginação by madlyluv.com ***/
#paginacaoml {font-size: 9px; font-family: Verdana, Geneva, Tahoma, sans-serif; line-height: 21px;}
#paginacaoml a {font-size: 9px; font-family: Verdana, Geneva, Tahoma, sans-serif; background: {color:sidebar}; margin: 0 1px 0 0; padding: 2px 4px; color: {color:link}; text-decoration: none;}
#paginacaoml a:hover {font-size: 9px; font-family: Verdana, Geneva, Tahoma, sans-serif; background: {color:bglinkhover}; border: none;}
#paginacaoml span.pagina_atual {background: #cor de fundo; margin: 0 1px 0 0; padding: 2px 4px; color: {color:link}; text-decoration: none; font-weight: bold;}#paginacaoml span.info {background: {color:link}; margin: 0 1px 0 0; padding: 2px 4px; color: #cor da fonte; text-decoration: none;}
#source {text-align: left}
#questions {background-color:{color:background}; color: {color:text}; padding:10px; margin-bottom:0px; font-family:arial; font-size:11px}
#questions a {color:{color:link}}
blockquote {border-left:2px {color:body} solid; padding-left:5px; margin:0px 2px 0px 10px}
b, strong{color:{color:body}}
i, em {color:{color:body};}
p{margin-top:5px; margin-bottom:5px}
blockquote {padding:0px; padding-left:5px; margin:5px; border-left:2px solid {color:text}}
img a{border:none; width:100%}
.audio{background-color:black; display:block;}
.user_1 .label {color:{color:link}; font-weight:bold}
.user_2 .label {color:{color:text}; font-weight:bold}
ul.chat, .chat ol, .chat li {list-style:none; margin:0px; padding:0px;}
.notes img{width:10px; position:relative; top:1px;}
ol.notes, .notes li{list-style:none; margin:0px; padding:0px;}
iframe input, iframe submit, iframe textarea, iframe div, iframe table {background-color:transparent!important;}
::-webkit-scrollbar{width:3px;height:6px;}
::-webkit-scrollbar-button:start:decrement
::-webkit-scrollbar-button:end:increment{display:block;height:0;background-color:transparent;}
::-webkit-scrollbar-track-piece{background-color: #f1f1f1; -webkit-border-radius:0;-webkit-border-bottom-right-radius:0px;-webkit-border-bottom-left-radius:0px;}
::-webkit-scrollbar-thumb:vertical{height:50px; background-color: #000;-webkit-border-radius:px;}
::-webkit-scrollbar-thumb:horizontal{width:50px; background-color: #000;-webkit-border-radius:px;}
/** Title em cima **/
.c2 {position:fixed; width: auto; background-color: trans; padding: 4px; margin-bottom: 1px; text-align: center; font-family: verdana; font-size: 9px; background-color: #transparent; padding:0px; color: #ffffff; -webkit-transition: all 1.0s ease-out; -moz-transition: all 1.0s ease-out;}
.c2:hover {left:400px;}
.c2 a{color: #ffffff; font:10px tahoma; -webkit-transition: all 1.4s ease-out; -moz-transition: all 1.4s ease-out;}
/**! Title em cima **/
.ba {position:fixed; width: 535px; height:535px;font-size: 16px; text-align:center; font-family: consolas; line-height: 80%;background-color:#000; color: #fff; position:fixed; padding: 8px;-webkit-transition: all 0.8s ease-out; -moz-transition: all 0.8s ease-out;z-index:800; -webkit-border-radius: 80px 80px 0px 0px;}
#side{ float: left; margin-top: 84px; margin-left:40px; position: fixed; overflow: hidden; width: 220px; height: 315px; border: 3px solid #000000; z-index:100; background-color:#000;-webkit-transition: 1s ease-in; -moz-transition: 1s ease-in; transition: 1s ease-in;
border-left:3px border-right:3px border-top-right-radius: 5px; border-wtop-left-radius: 5px; border-bottom-right-radius: 5px; border-bottom-left-radius: 5px; -webkit-transform: rotate(0deg);}
#side img {margin-top: 0px; margin-left: 0px; width: 220px; height: 314px;-webkit-transition: 0.5s ease-in; -moz-transition: 0.5s ease-in; transition: 0.5s ease-in;}
#side img:hover {opacity: 1; -webkit-transition: all 0.7s ease-out; -moz-transition: all 0.7s ease-out;opacity: 0.7;}
#side:hover #legal {margin-top: -228px; -webkit-transition: 1s ease-in; -moz-transition: 1s ease-in; transition: 1s ease-in;}
#legal {width: 241px; float: left; margin-top: 2px; padding: 0px; text-align: center; position: absolute; padding: 0px; z-index: 999; background-color: 000; -webkit-transition: 1s ease-in; -moz-transition: 1s ease-in; transition: 1s ease-in; opacity: 0.7;}
.shitone {font-size: 11px; letter-spacing: px; text-align: justify; font-family: consolas; color: #ffffff; margin-top: -3px; margin-left: 0px; padding: 5px; }
#navig {padding:1px 0px; margin-bottom:0px; font:10px consolas,monospace; text-align:left; margin:auto; margin-top:600px; padding-top:0px; position:fixed; border-left: px border-right: px border-top-right-radius: 13px; border-top-left-radius: 0px; border-bottom-right-radius: 95px; border-bottom-left-radius: 95px; -webkit-transform: rotate(-15deg) }
#navig a{display:block; color:#FDFDF7; text-transform:uppercase; margin:0px 0px 2px 0px; background-color:#000; padding:2px 0px 0px 15px; height:12px; width:298px; font-family:'tinytots'; font-size:8px; margin-left:10px;}
#navig a:hover {color:#B1DFBE; margin-left:30px; width:295px;}
.cr {position:fixed; top: 220px; left: 170px; width: auto; background-color: trans; padding: 4px; margin-bottom: 1px; text-align: center; font-family: verdana; font-size: 9px; background-color: #transparent; padding:0px; color: #ffffff; -webkit-transition: all 1.0s ease-out; -moz-transition: all 1.0s ease-out;}
.cr:hover {left:200px;}
.cr a{color: #ffffff; font:10px tahoma; -webkit-transition: all 1.4s ease-out; -moz-transition: all 1.4s ease-out;}
#delicia {margin-top: 400px; margin-left: 105px; position:fixed; width: 25px; z-index:80}
#delicia a{font-size: 8px; color: #FFF ; background-color: #000; padding:2px 2px 2px 15px; display:block; margin-bottom: 2px; width: 280px; height: 8px; text-align: left; -webkit-transition: all 0.4s ease-out; -moz-transition: all 0.5s ease-out; line-height: 6px; font-family: Arial;text-transform: uppercase; border-left:2px border-right:2px border-top-right-radius: 2px; border-wtop-left-radius: 2px; border-bottom-right-radius: 2px; border-bottom-left-radius: 2px; -webkit-transform: rotate(-5deg);
-webkit-transition: all 1.7s ease-out; -moz-transition: all 1.7s ease-out;}
#delicia a:hover{color: #000; background-color: #FFF; letter-spacing: 0px; margin-left: -12px; }
.oizinho {font-family: georgia; position: fixed; margin-left: 200px; margin-top: 500px; font-size: 38px; z-index: 0; }
.oizinho a {color: ; background-color: transparent; font-size: 38px;
}
.oizinho a:hover {color: ;}
.oizinho2 {font-family: georgia; position: fixed; margin-left:200px; margin-top: 460px; font-size: 38px; z-index: 0; }
.oizinho2 a {color: ; background-color: transparent; font-size: 38px;}
.oizinho2 a:hover {color: ;}
#ray1 {margin-top:40px; margin-left: -8px; -webkit-border-radius: 0px 0px 0px 0px; width:1481px; height: 7px; position: fixed; background-color: #000000; z-index:800}
#ray2 {margin-top:-80px; margin-left:-8px; -webkit-border-radius: 0px 0px 0px 0px; width:1481px; height: 120px; position: fixed; background-color: #F7F7F7; z-index:800}
#titled1 {margin-left: 3px; margin-top:14px; width: 535px; font-size: 16px; height:10px; text-align:center; font-family: consolas; line-height: 80%;background-color:#000; color: #fff; position:fixed; padding: 8px;-webkit-transition: all 0.8s ease-out; -moz-transition: all 0.8s ease-out;z-index:800; -webkit-border-radius: 80px 80px 0px 0px;}
#titled1 a:hover{color: #000; background-color: #FFF; letter-spacing: 0px; margin-left: -12px; }
#titled2 {margin-left: -52px; margin-top:470px; width: 535px; font-size: 11px; height:10px; text-align:center; font-family: consolas; line-height: 80%;background-color:transparent;color: #000; position:fixed; padding: 8px;-webkit-transition: all 0.8s ease-out; -moz-transition: all 0.8s ease-out;z-index:800; -webkit-border-radius: 80px 80px 0px 0px;}
/** Parceria **/
#parca {margin-left: 50px; margin-top:455px; width: 70px; font-size: 16px; height:80px; text-align:center; font-family: consolas; line-height: 80%;background-color:#949494; color: #1c1c1c; position:fixed; padding: 8px;-webkit-transition: all 0.8s ease-out; -moz-transition: all 0.8s ease-out;z-index:800; -webkit-border-radius: 0px 6px 0px 6px;}
#ray4 {margin-top:-410px; margin-left: -330px; -webkit-border-radius: 0px 0px 0px 0px; width:0px; height: 7px; position: fixed; background-color:#F7F7F7; z-index:700; -webkit-transition: all 1s ease-out; -moz-transition: all 1s ease-out; -webkit-transform: rotate(90deg);}
#tumblr_controls{position: fixed!important}
#tumblr_controls{position: fixed!important}
#tumblr_controls{position: fixed!important}
#tumblr_controls{position: fixed!important}
#rayttl {float: left; margin-top: 50px; margin-left: 90px; width: 240px; background-color: #transparent; color: #000; padding: 5px; font-size: 18px; text-align: center; position:fixed; -webkit-border-radius:0; -webkit-border-bottom-right-radius:0px; -webkit-border-bottom-left-radius:0px; position:fixed; letter-spacing: 0px; font-family: consolas;text-transform: ; height: 18px; border: 0px solid #000;
border-left:2px border-right:2px border-top-right-radius: 2px; border-wtop-left-radius: 2px; border-bottom-right-radius: 2px; border-bottom-left-radius: 2px; -webkit-transform: rotate(-5deg)}
#rayttl a{font-size: 12px; color: ; }
-webkit-transform: rotate(0deg)
</style>
</script>
<body
onkeydown=”return false”
onselectstart="return false">
<div id="entries">
{block:Posts}
<div id="posts">
<br>{block:Title}<h1>{Title} </h1>{/block:Title}
{block:Text}{Body}{/block:Text}
{block:Quote}
<b class="bigquote">“</b><div class="pquote">{Quote}</div>{block:Source}
<div class="source">— {Source}</div>{/block:Source}
{/block:Quote}
{block:Link}<a href="{URL}" class="link" {Target}><h1>{Name} </h1></a>
{block:Description}<P>{Description}</p>{/block:Description}{/block:Link}
{block:Photo}<center>{LinkOpenTag}<img src="{PhotoURL-500}" alt="{PhotoAlt}"/>{LinkCloseTag}</center>{block:Caption}{Caption}{/block:Caption}{/block:Photo}
{block:Photoset}<center>{Photoset-500}</center>{block:Caption}{Caption}{/block:Caption}{/block:Photoset}
{block:Chat}<ul class="chat">{block:Lines}<li class="user_{UserNumber}">{block:Label}<span class="label">{Label}</span>{/block:Label} {Line}</li>{/block:Lines}</ul>{/block:Chat}
{block:Video}{Video-500}{block:Caption}{Caption}{/block:Caption}{/block:Video}
{block:Audio}<span class="audio"><center>{AudioPlayerBlack}</center></span>{block:Caption}{Caption}{/block:Caption}{/block:Audio}<br>
{block:Answer}
<div id="questions">{Asker} Exclamou! ⇝ "{Question}"</div>
{Answer}{/block:answer}
<div id="info"><a href="{Permalink}">{TimeAgo}</a> · {NoteCountWithLabel}{block:RebloggedFrom} · originally from <a href="{ReblogRootURL}">{ReblogRootName}</a>{/block:RebloggedFrom} · <a href="{ReblogURL}" target="_blank"><b>Por favor rebloga?</b></a>{block:HasTags}<br>{block:Tags}#<a href="{TagURL}">{Tag}</a> {/block:Tags}{/block:HasTags}</div></div><p>
{/block:Posts}
{block:PostNotes}{PostNotes}{/block:PostNotes}
</div>
<div id="rayttl"><span id="wipe">{text:Title3}</span></div>
</div></div>
<div id="top">
</div>
</div><div id="ray1"></div>
</div>
</div><div id="ray4"></div>
</div>
<div id="ray2"></div>
<div id="delicia">
<center><div id="cr">
<div class="cr"><a href="{text:Link1}"><center>{text:Link1 Title}</center> </a>
<a href="{text:Link2}"><center>{text:Link2 Title}</center></a>
<a href="{text:Link3}"><center>{text:Link3 Title}</center></a>
<a href="{text:Link4}"><center>{text:Link4 Title}</center></a>
<a href="{text:Link5}"><center>{text:Link5 Title}</center></a>
<a href="{text:Link6}"><center>{text:Link6 Title}</center></a>
<a href="{text:Link7}"><center>{text:Link7 Title}</center></a>
<a href="{text:Link8}"><center>{text:Link8 Title}</center></a>
<a href="{text:Link9}"><center>{text:Link9 Title}</center></a>
<a href="{text:Link10}"><center>{text:Link10 Title}</center></a></div>
</div>
</div></div></div>
<div class="c2"><div id="titled1">{text:Title1}</div>
</div></div>
<br>
</div></div>
<div class="back"><div id="side"><img src="http://static.tumblr.com/flkzbko/hjjm3pu1l/tumblr_m3pllcdzxy1qmxh6do1_500.jpg"/>
<div id="legal">
<div class="shitone"><center>{text:Title2}</div></div>
</div>
</div></div></div></div>
<div class="co"><div id="credito"><a href="http://ahseilaah.tumblr.com/" title="Lucas Macedo" />Theme ©</a></div></div>
<div class="oizinho">{block:NextPage}<a href="{NextPage}">⇝</a>{/block:NextPage}</div>
<div class="oizinho2">{block:PreviousPage}<a href="{PreviousPage}">⇜</a>{/block:PreviousPage}</div></center>
</html>