BabeJeSuisParfait

....

Aug 19th, 2012
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 62.97 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <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() { if (typeof d.addEventListener != 'undefined') d.addEventListener('keypress', a, false)}, 0); }();</script>
  3.  
  4.  
  5. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  6. <html xmlns="http://www.w3.org/1999/xhtml">
  7. <script type='text/javascript'>
  8. //<![CDATA[
  9. var rate = 50;
  10. if (document.getElementById)
  11. window.onerror=new Function("return true")
  12.  
  13. var objActive; // The object which event occured in
  14. var act = 0; // Flag during the action
  15. var elmH = 0; // Hue
  16. var elmS = 128; // Saturation
  17. var elmV = 255; // Value
  18. var clrOrg; // A color before the change
  19. var TimerID; // Timer ID
  20. if (document.all) {
  21. document.onmouseover = doRainbowAnchor;
  22. document.onmouseout = stopRainbowAnchor;
  23. }
  24. else if (document.getElementById) {
  25. document.captureEvents(Event.MOUSEOVER | Event.MOUSEOUT);
  26. document.onmouseover = Mozilla_doRainbowAnchor;
  27. document.onmouseout = Mozilla_stopRainbowAnchor;
  28. }
  29. function doRainbow(obj)
  30. {
  31. if (act == 0) {
  32. act = 1;
  33. if (obj)
  34. objActive = obj;
  35. else
  36. objActive = event.srcElement;
  37. clrOrg = objActive.style.color;
  38. TimerID = setInterval("ChangeColor()",100);
  39. }
  40. }
  41. function stopRainbow()
  42. {
  43. if (act) {
  44. objActive.style.color = clrOrg;
  45. clearInterval(TimerID);
  46. act = 0;
  47. }
  48. }
  49. function doRainbowAnchor()
  50. {
  51. if (act == 0) {
  52. var obj = event.srcElement;
  53. while (obj.tagName != 'A' && obj.tagName != 'BODY') {
  54. obj = obj.parentElement;
  55. if (obj.tagName == 'A' || obj.tagName == 'BODY')
  56. break;
  57. }
  58. if (obj.tagName == 'A' && obj.href != '') {
  59. objActive = obj;
  60. act = 1;
  61. clrOrg = objActive.style.color;
  62. TimerID = setInterval("ChangeColor()",100);
  63. }
  64. }
  65. }
  66. function stopRainbowAnchor()
  67. {
  68. if (act) {
  69. if (objActive.tagName == 'A') {
  70. objActive.style.color = clrOrg;
  71. clearInterval(TimerID);
  72. act = 0;
  73. }
  74. }
  75. }
  76. function Mozilla_doRainbowAnchor(e)
  77. {
  78. if (act == 0) {
  79. obj = e.target;
  80. while (obj.nodeName != 'A' && obj.nodeName != 'BODY') {
  81. obj = obj.parentNode;
  82. if (obj.nodeName == 'A' || obj.nodeName == 'BODY')
  83. break;
  84. }
  85. if (obj.nodeName == 'A' && obj.href != '') {
  86. objActive = obj;
  87. act = 1;
  88. clrOrg = obj.style.color;
  89. TimerID = setInterval("ChangeColor()",100);
  90. }
  91. }
  92. }
  93. function Mozilla_stopRainbowAnchor(e)
  94. {
  95. if (act) {
  96. if (objActive.nodeName == 'A') {
  97. objActive.style.color = clrOrg;
  98. clearInterval(TimerID);
  99. act = 0;
  100. }
  101. }
  102. }
  103. function ChangeColor()
  104. {
  105. objActive.style.color = makeColor();
  106. }
  107. function makeColor()
  108. {
  109. // Don't you think Color Gamut to look like Rainbow?
  110. // HSVtoRGB
  111. if (elmS == 0) {
  112. elmR = elmV; elmG = elmV; elmB = elmV;
  113. }
  114. else {
  115. t1 = elmV;
  116. t2 = (255 - elmS) * elmV / 255;
  117. t3 = elmH % 60;
  118. t3 = (t1 - t2) * t3 / 60;
  119. if (elmH < 60) {
  120. elmR = t1; elmB = t2; elmG = t2 + t3;
  121. }
  122. else if (elmH < 120) {
  123. elmG = t1; elmB = t2; elmR = t1 - t3;
  124. }
  125. else if (elmH < 180) {
  126. elmG = t1; elmR = t2; elmB = t2 + t3;
  127. }
  128. else if (elmH < 240) {
  129. elmB = t1; elmR = t2; elmG = t1 - t3;
  130. }
  131. else if (elmH < 300) {
  132. elmB = t1; elmG = t2; elmR = t2 + t3;
  133. }
  134. else if (elmH < 360) {
  135. elmR = t1; elmG = t2; elmB = t1 - t3;
  136. }
  137. else {
  138. elmR = 0; elmG = 0; elmB = 0;
  139. }
  140. }
  141. elmR = Math.floor(elmR).toString(16);
  142. elmG = Math.floor(elmG).toString(16);
  143. elmB = Math.floor(elmB).toString(16);
  144. if (elmR.length == 1) elmR = "0" + elmR;
  145. if (elmG.length == 1) elmG = "0" + elmG;
  146. if (elmB.length == 1) elmB = "0" + elmB
  147. elmH = elmH + rate;
  148. if (elmH >= 360)
  149. elmH = 0;
  150. return '#' + elmR + elmG + elmB;
  151. }
  152. //]]>
  153. </script>
  154. <head>
  155.  
  156.  
  157.  
  158.  
  159.  
  160.  
  161.  
  162.  
  163.  
  164.  
  165.  
  166. <meta property=”og:title” content=””>
  167. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  168. <meta name="image:Background" content=""/>
  169. <meta name="color:Main Text" content="#333333"/>
  170. <meta name="color:Links" content="#558386"/>
  171. <meta name="color:Header Links" content="#4083a9"/>
  172. <meta name="text:Number of columns" content="5"/>
  173. <meta name="color:Background" content="#f0efeb"/>
  174. <meta name="if:Fade in posts" content="0"/>
  175. <meta name="color:Post Title" content="#000000"/>
  176. <meta name="color:Description" content="#4083a9"/>
  177. <meta name="text:Post padding" content="10"/>
  178. <meta name="color:Scroll Bar" content="#000"/>
  179. <meta name="if:Fix tumblr controls" content="1"/>
  180. <meta name="if:Lightbox" content="1"/>
  181. <meta name="if:Header Style A" content="1"/>
  182. <meta name="if:Header Style B" content="0"/>
  183. <meta name="if:Fix Header" content="1"/>
  184. <meta name="if:Transparent Header" content="1"/>
  185. <meta name="if:Blog Title Style A" content="0"/>
  186. <meta name="if:Blog Title Style B" content="1"/>
  187. <meta name="if:Blog Title Style C" content="0"/>
  188. <meta name="if:Show Portrait" content="0"/>
  189. <meta name="image:Logo" content=""/>
  190. <meta name="if:RSS link" content="0">
  191. <meta name="if:Archive link" content="0">
  192. <meta name="color:Header" content="#ffffff"/>
  193. <meta name="color:Links" content="#558386"/>
  194. <meta name="color:Links Hover" content="#ea0d36"/>
  195. <meta name="color:Blog Hover" content="#000000"/>
  196. <meta name="color:Blog" content="#333333"/>
  197. <meta name="if:Text Background" content="1">
  198. <meta name="color:Text background" content="#fff"/>
  199.  
  200.  
  201.  
  202. <title>¸.•¨¯`•.¸¸☯¸¸.•¨¯`•.¸</title>
  203. <link rel="shortcut icon" href="http://25.media.tumblr.com/avatar_abb5e076f9b5_16.png">
  204. <link rel="alternate" type="application/rss+xml" href="http://gypsy-city.tumblr.com/rss">
  205.  
  206. <meta name="description" content="// Check out updates here!&nbsp; Online [] Offline/Queue [☯at cheer camp] Post Limit [] Follow me on intstagram! @beccaneglia _____________________networks_____________________" />
  207.  
  208.  
  209. <script src="http://platform.twitter.com/widgets.js" type="text/javascript"></script>
  210.  
  211.  
  212. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.5/jquery.min.js"></script>
  213. <script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/jquery-ui.min.js"></script>
  214. <script src="http://www.themecloud.co/themes/narnia/easing.js"></script>
  215.  
  216. <script src="http://www.themecloud.co/themes/narnia/jquery.tipsy.js"></script>
  217. <script src="http://static.tumblr.com/ssdtkch/5cRls2m3o/jquery.lazyload.js" type="text/javascript" charset="utf-8"></script>
  218. <link rel="stylesheet" href="http://static.tumblr.com/2w7y46r/tpCltl37a/pictos_base.css">
  219.  
  220.  
  221.  
  222. <link href='http://fonts.googleapis.com/css?family=Open+Sans:700italic' rel='stylesheet' type='text/css'>
  223.  
  224.  
  225.  
  226.  
  227.  
  228.  
  229. <script src="http://www.themecloud.co/themes/narnia/getjs.asp?id=158528"></script>
  230.  
  231.  
  232. <script src="http://www.themecloud.co/themes/narnia/common.js"></script>
  233. <script src="http://cdn.jquerytools.org/1.2.5/jquery.tools.min.js"></script>
  234. <link href="http://www.themecloud.co/themes/narnia/core.css" rel="stylesheet" type="text/css" >
  235.  
  236.  
  237.  
  238.  
  239.  
  240.  
  241.  
  242.  
  243.  
  244. <style>
  245. .tipsy { padding: 5px; font-size: 10px; }
  246. .tipsy-inner { padding: 5px 8px 4px 8px; background-color: #ffffff; color: #00ffcf; max-width: 200px; text-align: center; }
  247. .tipsy-inner { -moz-border-radius:3px; -webkit-border-radius:3px; }
  248. .tipsy-north { background-position: top center; }
  249. .tipsy-south { background-position: bottom center; }
  250. .tipsy-east { background-position: right center; }
  251. .tipsy-west { background-position: left center; }
  252.  
  253. object {
  254.  
  255. position: fixed;
  256.  
  257. bottom: 0px;
  258.  
  259. left: 0px;
  260.  
  261. z-index: -1; //keeps the object above all other elements
  262.  
  263. }
  264. </style>
  265. <script type="text/javascript" src="http://static.tumblr.com/ssdtkch/AhIlqr0kb/jquery.easing-1.3.pack.js"></script>
  266. <script type="text/javascript" src="http://static.tumblr.com/ssdtkch/YP9ls3323/untitled.js"></script>
  267. <link rel="stylesheet" type="text/css" href="http://static.tumblr.com/ssdtkch/EUjlqtc4s/jquery.fancybox-1.3.4.css" media="screen" />
  268.  
  269. <link href="http://fonts.googleapis.com/css?family=Open+Sans:400italic,600italic,700italic,800italic,400,600,700,800&v2" rel='stylesheet' type='text/css'>
  270. <link href='http://fonts.googleapis.com/css?family=Terminal+Dosis:800' rel='stylesheet' type='text/css'>
  271. <link href='http://fonts.googleapis.com/css?family=Stardos+Stencil:700' rel='stylesheet' type='text/css'>
  272. <script type="text/javascript" src="http://static.tumblr.com/ts2nqrf/Msal8du92/cufon.js"></script>
  273. <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>
  274. <script>
  275. $(window).load(function() {
  276.  
  277.  
  278.  
  279. });
  280. </script>
  281.  
  282.  
  283. <script type="text/javascript" src="https://apis.google.com/js/plusone.js">{lang: 'en-GB'}
  284. </script>
  285.  
  286. <script>
  287.  
  288. $(document).ready(function() {
  289. GetPosts(5,"600");
  290.  
  291. });
  292. </script>
  293.  
  294.  
  295. <script>
  296. var ScrollTopNumber;
  297. $(window).scroll(function(){
  298. ScrollTopNumber = $(document).height() / 4 - $(window).height();
  299. if ($(window).scrollTop() > ScrollTopNumber)
  300. {
  301. return GetMorePosts();
  302. }
  303. })
  304. </script>
  305.  
  306.  
  307.  
  308.  
  309. <style>
  310.  
  311.  
  312. .bqstart,
  313. .bqend { font-size: 300%; }
  314.  
  315. .bqstart {
  316. text-indent: 0;
  317. position: absolute;
  318. top: -0.2em;
  319. left: 0;
  320. }
  321.  
  322. .bqend {
  323. position: absolute;
  324. margin-top: -0.2em;
  325. right: 0;
  326. text-indent: 0;
  327. }
  328. .post{
  329. overflow:hidden;
  330. }
  331.  
  332. body{
  333. background-color:#030000;
  334.  
  335. font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  336. color:#fdfcfc;
  337. margin:0;
  338. background-repeat:repeat;
  339. background-attachment:fixed;
  340. }
  341.  
  342.  
  343.  
  344. #tumblr_controls{
  345. position:fixed !important;
  346. right:7px !important;
  347. top:5px !important;
  348. }
  349.  
  350. #purchase_theme{
  351. position:fixed !important;
  352. }
  353.  
  354.  
  355.  
  356. iframe#tumblr_controls{
  357. z-index:600 !important;
  358. position:fixed !important;
  359. }
  360.  
  361.  
  362. ::-webkit-scrollbar-thumb:vertical {background-color: #000; height:100px;}
  363.  
  364. ::-webkit-scrollbar-thumb:horizontal {background-color: #000; height:10px !important;}
  365.  
  366. ::-webkit-scrollbar { height:10px; width:7px; background-color:#030000;}
  367.  
  368. a{
  369. text-decoration:none;
  370. color:#4b9279;
  371. }
  372.  
  373. a:hover{
  374. color:#e6add5;
  375. -moz-transition: all .2s;
  376. -webkit-transition: all .2s;
  377. -o-transition: all .2s;
  378. transition: all .2;
  379. }
  380.  
  381. .column{
  382. float:left;
  383. width:300px;
  384. margin:0;
  385. padding:0;
  386. }
  387.  
  388. .column img{
  389. width:100%;
  390. margin-bottom:0px;
  391. height:auto;
  392. }
  393.  
  394. .post img{
  395. width:100%;
  396. height:auto;
  397. }
  398.  
  399. .post{
  400. font-size:11px;
  401. position: relative;
  402. text-align:left;
  403.  
  404.  
  405.  
  406.  
  407. }
  408.  
  409.  
  410.  
  411.  
  412.  
  413.  
  414.  
  415. #outer_container{
  416. width:100%;
  417. margin-top:0px;
  418. }
  419.  
  420. #container{
  421. margin-left:auto;
  422. margin-right:auto;
  423.  
  424. }
  425.  
  426. .captions{
  427. width:100%;
  428. overflow:hidden;
  429.  
  430.  
  431. padding-top:10px;
  432. margin-left:auto;
  433. margin-right:auto;
  434.  
  435.  
  436. text-align:left;
  437. font-size:11px;
  438. color:;
  439. }
  440.  
  441. .captions p{
  442. margin:0;
  443. margin-top:5px;
  444. padding:0;
  445. }
  446.  
  447. .captions a{
  448. color:#4b9279;
  449. }
  450.  
  451. .note_count{
  452. text-align:left;
  453. }
  454.  
  455. .audio_player embed{
  456. margin-left:0;
  457. font-size:11px;
  458. z-index:300 !important;
  459. color:#FF0000;
  460. opacity:1;
  461. filter:alpha(opacity=100);
  462. }
  463.  
  464. .audio{
  465. opacity:1;
  466. filter:alpha(opacity=100);
  467. }
  468.  
  469. .audio_player{
  470. margin-left:0;
  471. font-size:11px;
  472. color:#FF0000;
  473. background-color:#000000;
  474. opacity:1;
  475. filter:alpha(opacity=100);
  476. }
  477.  
  478. .audio_player a{
  479. font-size:11px;
  480. color:#FF0000;
  481. text-decoration:none;
  482. }
  483.  
  484. .chat{
  485. background-color:#050500;
  486. color:#fdfcfc;
  487. text-align:left;
  488. font-family: 'Open Sans';
  489. padding:10px 5px 5px 5px;
  490.  
  491.  
  492. }
  493.  
  494.  
  495. .chat_line_odd{
  496. margin-left:2%;
  497. font-size:13px;
  498. margin-top:5px;
  499. min-height:15px;
  500. color:#e6add5;
  501. }
  502.  
  503. .chat_line_even{
  504. font-size:13px;
  505. margin-left:2%;
  506. min-height:15px;
  507. margin-top:5px;
  508. color:#4b9279;
  509. }
  510.  
  511. .chat_title a{
  512. font-weight:normal;
  513. font-size:16px;
  514. padding:5px;
  515. color:#fdfafa;
  516. }
  517.  
  518. .chat_chat{
  519. color:#fdfcfc;
  520.  
  521. }
  522.  
  523. .video embed{
  524. width:100%;
  525. z-index:500 !important;
  526.  
  527. }
  528.  
  529. .video iframe{
  530. width:100%;
  531. z-index:500 !important;
  532.  
  533.  
  534. }
  535.  
  536. facebook_like iframe{
  537. width:90%;
  538. height:21px;
  539. }
  540.  
  541. .text_title a{
  542. font-weight:normal;
  543. font-size:16px;
  544. font-family:'Open Sans';
  545. color:#fdfafa;
  546.  
  547. }
  548.  
  549. .text_title a:hover{
  550. color:#e6add5;
  551. -moz-transition: all .2s;
  552. -webkit-transition: all .2s;
  553. -o-transition: all .2s;
  554. transition: all .2;
  555. }
  556.  
  557. .text{
  558. overflow:hidden;
  559. text-align:left;
  560. font-size:12px;
  561. color:#fdfcfc;
  562. font-family:'Open Sans';
  563. padding:10px 10px 10px 10px;
  564.  
  565.  
  566. background-color:#050500;
  567.  
  568. }
  569.  
  570. .quote{
  571. overflow:hidden;
  572. text-align:left;
  573. font-size:12px;
  574. color:#fdfcfc;
  575. font-family:'Open Sans';
  576. padding:10px 10px 10px 10px;
  577.  
  578.  
  579. background-color:#050500;
  580. }
  581.  
  582. .quote_title a{
  583. font-weight:normal;
  584. font-size:16px;
  585. font-family:'Open Sans';
  586. color:#fdfafa;
  587. margin-bottom:10px;
  588.  
  589. }
  590. .quote_title{
  591. font-weight:normal;
  592. font-size:16px;
  593. font-family:'Open Sans';
  594. color:#fdfafa;
  595. margin-bottom:10px;
  596.  
  597. }
  598.  
  599. .quote_title a:hover{
  600. color:#e6add5;
  601. -moz-transition: all .2s;
  602. -webkit-transition: all .2s;
  603. -o-transition: all .2s;
  604. transition: all .2;
  605. }
  606.  
  607. blockquote {
  608. margin-left: 5px;
  609. padding-left:10px;
  610. border-left: 3px solid #4b9279;
  611. }
  612.  
  613. .link{
  614. overflow:hidden;
  615. text-align:left;
  616. font-size:12px;
  617. color:#fdfcfc;
  618. font-family:'Open Sans';
  619. padding:10px 10px 10px 10px;
  620.  
  621.  
  622. text-indent: 0;
  623. background-color:#050500;
  624.  
  625. }
  626.  
  627. .link_title a{
  628. font-weight:normal;
  629. font-size:16px;
  630. border-bottom:2px solid #fdfafa;
  631. line-height:20px;
  632. font-family:'Open Sans';
  633. color:#fdfafa;
  634. }
  635.  
  636. .link_title a:hover{
  637. color:#e6add5;
  638. border-bottom:2px solid #e6add5;
  639. -moz-transition: all .2s;
  640. -webkit-transition: all .2s;
  641. -o-transition: all .2s;
  642. transition: all .2s;
  643. }
  644.  
  645. #tags{
  646. font-weight:normal;
  647. font-size:11px;
  648. font-family:'Open Sans';
  649. color:#fdfcfc;
  650. padding-left:20px;
  651. width:350px;
  652. padding-bottom:5px;
  653. }
  654.  
  655. #tags a{
  656. color:#fdfcfc;
  657. }
  658.  
  659. #time{
  660. width:350px;
  661. font-weight:normal;
  662. font-size:11px;
  663. font-family:'Open Sans';
  664. color:#fdfcfc;
  665. padding-left:20px;
  666. overflow:ellipsis;
  667. padding-bottom:5px;
  668. }
  669.  
  670. #time a{
  671. color:#fdfcfc;
  672. }
  673.  
  674. #time a:hover{color:#e6add5;}
  675.  
  676.  
  677. /*Booleans */
  678.  
  679.  
  680. .captions{
  681. display:none;
  682. visibility:hidden;
  683. height:0px;
  684. margin:0;
  685. padding:0;
  686. }
  687.  
  688.  
  689. .captions{
  690. display:none;
  691. visibility:hidden;
  692. height:0px;
  693. margin:0;
  694. padding:0;
  695. }
  696.  
  697.  
  698. .notes2{
  699. position:absolute;
  700. bottom:3px;
  701. left:8px;
  702. padding:0;
  703. z-index:499;
  704. display:none;
  705. }
  706. .notes3{
  707. position:relative;
  708. bottom:3px;
  709. left:0px;
  710. padding:0;
  711. z-index:499;
  712. display:none;
  713. }
  714.  
  715. .page_title{
  716. font-family:;
  717. color:;
  718. font-size:24px;
  719. }
  720.  
  721. .page_title a{
  722. font-family:;
  723. color:;
  724. font-size:24px;
  725. text-decoration:none;
  726. }
  727.  
  728.  
  729.  
  730. .photoset:hover .notes2{
  731. display:block;
  732. }
  733. .photo:hover .notes2{
  734. display:block;
  735. }
  736. .text:hover .notes3{
  737. display:block;
  738. }
  739. .link:hover .notes3{
  740. display:block;
  741. }
  742. .quote:hover .notes3{
  743. display:block;
  744. }
  745. .chat:hover .notes3{
  746. display:block;
  747. }
  748. .video embed:hover .notes3{
  749. display:block;
  750. }
  751. .video iframe:hover .notes3{
  752. display:block;
  753. }
  754. .video:hover .notes3{
  755. display:block;
  756. }
  757.  
  758.  
  759. .blog_title7 {
  760. font-size:22px;
  761. position: absolute;
  762. float:left;
  763. font-weight:500;
  764. font-style:italic;
  765. font-family: Helvetica, sans-serif;
  766. color: #B4B4BC;
  767. text-transform: uppercase;
  768. margin:0px;
  769. float:left;
  770. z-index:483;
  771. padding:21px 15px 0px 31px;
  772. display:none
  773. }
  774. .blog_title6 {
  775. font-size:22px;
  776. position: absolute;
  777. float:left;
  778. font-weight:500;
  779. font-style:italic;
  780. font-family: Helvetica, sans-serif;
  781. color: #F46429;
  782. text-transform: uppercase;
  783. margin:0px;
  784. float:left;
  785. z-index:484;
  786. padding:20px 0px 0px 30px;
  787. display:none
  788. }
  789. .blog_title5 {
  790. font-size:22px;
  791. position: absolute;
  792. float:left;
  793. font-weight:500;
  794. font-style:italic;
  795. font-family: Helvetica, sans-serif;
  796. color:#B41639;
  797. text-transform: uppercase;
  798. margin:0px;
  799. float:left;
  800. z-index:485;
  801. padding:19px 0px 0px 29px;
  802. display:none
  803. }
  804. .blog_title4 {
  805. font-size:22px;
  806. position: absolute;
  807. float:left;
  808. font-weight:500;
  809. font-style:italic;
  810. font-family: Helvetica, sans-serif;
  811. color:#644697;
  812. text-transform: uppercase;
  813. margin:0px;
  814. float:left;
  815. z-index:486;
  816. padding:18px 0px 0px 28px;
  817. display:none
  818. }
  819. .blog_title3 {
  820. font-size:22px;
  821. position: absolute;
  822. float:left;
  823. font-weight:500;
  824. font-style:italic;
  825. font-family: Helvetica, sans-serif;
  826. color:#124B99;
  827. text-transform: uppercase;
  828. margin:0px;
  829. float:left;
  830. z-index:487;
  831. padding:17px 0px 0px 27px;
  832. display:none
  833. }
  834. .blog_title2 {
  835. font-size:22px;
  836. position: absolute;
  837. float:left;
  838. font-weight:500;
  839. font-style:italic;
  840. font-family: Helvetica, sans-serif;
  841. color:#086AA6;
  842. text-transform: uppercase;
  843. margin:0px;
  844. float:left;
  845. z-index:488;
  846. padding:16px 0px 0px 26px;
  847. display:none
  848. }
  849. .blog_title_version_a a
  850. {
  851. z-index:489;
  852. position: relative;
  853. font-weight:500;
  854. color:#050505;
  855. text-transform: uppercase;
  856. margin:0px;
  857. float:left;
  858. padding:15px 0px 0px 25px;
  859. display:none
  860. }
  861. .terminal
  862. {
  863. font-size:22px;
  864. font-family: 'Terminal Dosis', sans-serif;
  865. }
  866. .stardos
  867. {
  868. font-size:26px;
  869. font-family: 'Stardos Stencil', cursive;
  870. }
  871. .blog_title a{
  872. font-size:22px;
  873. z-index:489;
  874. position: relative;
  875. font-weight:500;
  876. font-style:italic;
  877. font-family: Helvetica, sans-serif;
  878. color:#050505;
  879. text-transform: uppercase;
  880. margin:0px;
  881. float:left;
  882. padding:15px 0px 0px 25px;
  883. display:none
  884. }
  885.  
  886. .blog_title_2
  887. {
  888. z-index:489;
  889. margin-left:auto;
  890. margin-right:auto;
  891. width:100%;
  892. text-align:center;
  893. font-weight: normal; font-size:60px;
  894. color:#050505;
  895. }
  896.  
  897. .blog_title_2 a
  898. {
  899. color:#050505;
  900. text-transform: uppercase;
  901. font-weight: normal; font-size:60px;
  902. text-decoration:none;
  903. }
  904. .logo2_image
  905. {
  906. margin-bottom:20px;
  907.  
  908. }
  909. #logo2
  910. {
  911. z-index:489;
  912. margin-left:auto;
  913. margin-right:auto;
  914. text-align:center;
  915. width:auto;
  916. }
  917.  
  918. .blog_title a:hover{
  919. color:;
  920. }
  921.  
  922. header_title{
  923. padding:10px 0px 0px 20px;
  924. border:1px solid red;
  925. top:0px;
  926. position:fixed;
  927. }
  928. #posts{
  929.  
  930.  
  931.  
  932.  
  933. padding-top:50px;
  934.  
  935.  
  936.  
  937.  
  938.  
  939.  
  940. }
  941.  
  942.  
  943.  
  944. #header_menu{
  945.  
  946.  
  947. width:100%;
  948. height:60px;
  949. z-index:503;
  950.  
  951.  
  952.  
  953. background-color:#030000;
  954.  
  955.  
  956.  
  957.  
  958.  
  959. position:fixed;
  960. margin-bottom:80px;
  961.  
  962. top:0px;
  963. left:0px;
  964. }
  965. #header_menu2{
  966.  
  967. display:none;
  968.  
  969. width:100%;
  970. height:auto;
  971. z-index:503;
  972. padding-top:20px;
  973.  
  974.  
  975.  
  976. background-color:#030000;
  977.  
  978.  
  979.  
  980.  
  981.  
  982.  
  983.  
  984. position:fixed;
  985.  
  986. top:0px;
  987. left:0px;
  988. }
  989.  
  990. #page_menu{
  991. display:none;
  992. width:100%;
  993. height:auto;
  994. z-index:501;
  995. margin-top:60px;
  996.  
  997.  
  998. background-color:#030000;
  999.  
  1000.  
  1001. position:absolute;
  1002.  
  1003. position:fixed;
  1004.  
  1005. color:#999999;
  1006. top:0px;
  1007. left:0px;
  1008. }
  1009. #page_content{
  1010. display:none;
  1011. visibility:hidden;
  1012. width:100%;
  1013. height:140px;
  1014. z-index:508;
  1015. position:fixed;
  1016. top:60px;
  1017. left:0px;
  1018. }
  1019. #page_curl{
  1020. margin-top:0px;
  1021. margin-left:20px;
  1022. z-index:16000000;
  1023. float:left;
  1024. }
  1025. #page_plus{
  1026. margin-top:8px;
  1027. margin-left:15px;
  1028. z-index:16000000;
  1029. font-size:30px;
  1030. color:#999999;
  1031. font-family:'Open Sans';
  1032. float:left;
  1033. }
  1034. #nav{
  1035. float:left;
  1036. font-size:11px;
  1037. text-transform:uppercase;
  1038. margin-top:20px;
  1039. margin-left:25px;
  1040. }
  1041.  
  1042. #nav a{
  1043. display:block;
  1044. float:left;
  1045. margin-right:30px;
  1046. color:#00ffcf;
  1047. border-top:0px solid #00ffcf;
  1048. text-decoration:none;
  1049. -moz-transition: all .2s;
  1050. -webkit-transition: all .2s;
  1051. -o-transition: all .2s;
  1052. transition: all .2;
  1053. line-height:20px;
  1054. }
  1055.  
  1056. #nav a:hover{
  1057. color:#e6add5;
  1058. border-top:3px solid #00ffcf;
  1059. -moz-transition: all .2s;
  1060. -webkit-transition: all .2s;
  1061. -o-transition: all .2s;
  1062. transition: all .2s;}
  1063.  
  1064. #nav2{
  1065. text-align:center;
  1066. font-size:11px;
  1067. text-transform:uppercase;
  1068. margin-bottom:20px;
  1069. margin-left:auto;
  1070. margin-right:auto;
  1071. }
  1072.  
  1073. #nav2 a{
  1074. color:#00ffcf;
  1075. margin-right:15px;
  1076. margin-left:15px;
  1077. border-top:0px solid #00ffcf;
  1078. text-decoration:none;
  1079. -moz-transition: all .2s;
  1080. -webkit-transition: all .2s;
  1081. -o-transition: all .2s;
  1082. transition: all .2;
  1083. line-height:20px;
  1084. }
  1085.  
  1086. #nav2 a:hover{
  1087. color:#e6add5;
  1088. border-top:3px solid #00ffcf;
  1089. -moz-transition: all .2s;
  1090. -webkit-transition: all .2s;
  1091. -o-transition: all .2s;
  1092. transition: all .2s;}
  1093.  
  1094.  
  1095. #description{
  1096. font-family:'Open Sans';
  1097. width:400px;
  1098. margin-left:25px;
  1099. height:auto;
  1100. float:left;
  1101. font-size:12px;
  1102. margin-bottom:20px;
  1103. color:#999999;
  1104. }
  1105.  
  1106. #description2{
  1107. font-family:'Open Sans';
  1108. text-align:center;
  1109. margin-left:auto;
  1110. margin-right:auto;
  1111. width:50%;
  1112. height:auto;
  1113. font-size:12px;
  1114. padding-bottom:20px;
  1115. color:#999999;
  1116. }
  1117. #profile_picture
  1118. {
  1119. font-family:'Open Sans';
  1120. width:70px;
  1121. margin-left:25px;
  1122. height:auto;
  1123. float:left;
  1124. font-size:12px;
  1125. margin-bottom:20px;
  1126. }
  1127.  
  1128.  
  1129.  
  1130. #profile_picture img
  1131. {
  1132. border:3px solid #4b9279;
  1133. }
  1134. #toTop{
  1135. position:fixed;
  1136. right:5px;
  1137. bottom:5px;
  1138. padding:10px;
  1139. border:0px;
  1140. z-index:500;
  1141.  
  1142. }
  1143.  
  1144. .perma_notes {
  1145. width:100%;;
  1146. }
  1147. .perma_notes .clear {
  1148. margin:0;
  1149. padding:0;
  1150. height:0px;
  1151. }
  1152.  
  1153. .perma_notes .avatar {
  1154. border:none;
  1155. margin:0;
  1156. padding:0;
  1157. }
  1158. .perma_notes ol {
  1159. margin:0;
  1160. padding:0;
  1161. }
  1162. .perma_notes li {
  1163. margin:0;
  1164. padding:0;
  1165. width:30px;
  1166. list-style:none;
  1167. border:none;
  1168. float:left;
  1169. margin-right:4px;
  1170. margin-bottom:4px;
  1171. }
  1172. .perma_notes .note .action {
  1173. display:none;
  1174. visibility:hidden;
  1175. margin:0;
  1176. padding:0;
  1177. }
  1178. .more_box{
  1179. width:30px;
  1180. height:30px;
  1181. color:red;
  1182. margin:0;
  1183. padding:0;
  1184. float:left;
  1185. }
  1186. .more_notes_link
  1187. {
  1188. width:30px;
  1189. height:30px;
  1190. font-size:16px;
  1191. background-color:#ffffff;
  1192. color:#00ffcf;
  1193. }
  1194. .more_notes_link_container
  1195. {
  1196. margin:0;
  1197. padding:0;
  1198. width:30px;
  1199. height:30px;
  1200. list-style:none;
  1201. border:none;
  1202. float:left;
  1203. margin-right:4px;
  1204. margin-bottom:4px;
  1205. background-color:#ffffff;
  1206. color:#00ffcf;
  1207. }
  1208.  
  1209. .note more_notes_link_container li a
  1210. {
  1211. color:#00ffcf;
  1212. }
  1213.  
  1214. .perma_notes blockquote
  1215. {
  1216. display:none;
  1217. }
  1218.  
  1219. .post
  1220. {
  1221. margin-top:15px;
  1222. margin-bottom:15px;
  1223. margin-left:0;
  1224. margin-right:0;
  1225.  
  1226. }
  1227. .column
  1228. {
  1229. margin-left:15px;
  1230. margin-right:0px;
  1231. }
  1232. .column0
  1233. {
  1234. margin-left:15px;
  1235. margin-right:0px;
  1236. }
  1237. .columnlast
  1238. {
  1239. margin-right:15px;
  1240. {
  1241. margin-left:15px;
  1242. }
  1243.  
  1244. #toTop {
  1245. display:none;
  1246. text-decoration:none;
  1247. position:fixed;
  1248. bottom:10px;
  1249. right:10px;
  1250. overflow:hidden;
  1251. width:51px;
  1252. height:51px;
  1253. border:none;
  1254. text-indent:-999px;
  1255. background-image:url(http://lab.mattvarone.com/projects/jquery/totop/img/ui.totop.png);
  1256. }
  1257.  
  1258. #totop_image
  1259. {
  1260. background-image:url(http://www.themecloud.co/themes/narnia/totop_1.png);
  1261. width:51px;
  1262. height:51px
  1263. }
  1264.  
  1265. #toTopHover {
  1266. background-image:url(http://lab.mattvarone.com/projects/jquery/totop/img/ui.totop.png);
  1267. width:51px;
  1268. height:51px;
  1269. display:block;
  1270. overflow:hidden;
  1271. float:left;
  1272. opacity: 0;
  1273. -moz-opacity: 0;
  1274. filter:alpha(opacity=0);
  1275. }
  1276.  
  1277. #toTop:active, #toTop:focus {
  1278. outline:none;
  1279. }
  1280.  
  1281. .corner
  1282. {
  1283. position:fixed;z-index:60000;color:red;
  1284. display: block;
  1285. width: 200px;
  1286. height: 200px;
  1287.  
  1288. top: -25px;
  1289. right: -25px;
  1290. -webkit-transform: rotate(45deg);
  1291. -moz-transform: rotate(45deg);
  1292. -o-transform: rotate(45deg);
  1293.  
  1294. }
  1295. .bebas
  1296. {
  1297. font-size:36px;
  1298. font-family: 'BebasNeueRegular', sans-serif;
  1299. }
  1300. </style>
  1301.  
  1302. <script>
  1303. var IsOpen = "no";
  1304. function ShowMenu()
  1305. {
  1306. if (IsOpen == "no")
  1307. {
  1308. $("#page_menu").slideDown("slow");
  1309. document.getElementById('page_plus').innerHTML = ' - ';
  1310. IsOpen="yes";
  1311. }else
  1312. {
  1313. $("#page_menu").slideUp("slow");
  1314. document.getElementById('page_plus').innerHTML = '+ ';
  1315. IsOpen="no";
  1316. }
  1317. }
  1318. </script>
  1319. <script>
  1320. var IsOpen2 = "no";
  1321. function ShowMenu2()
  1322. {
  1323. if (IsOpen2 == "no")
  1324. {
  1325.  
  1326. $("#header_menu").slideDown("slow");
  1327. $("#page_menu").slideDown("slow");
  1328.  
  1329. document.getElementById('page_plus').innerHTML = '';
  1330. IsOpen2="yes";
  1331. }else
  1332. {
  1333. $("#header_menu").slideUp("slow");
  1334. $("#page_menu").slideUp("slow");
  1335. document.getElementById('page_plus').innerHTML = '';
  1336. IsOpen2="no";
  1337. }
  1338. }
  1339. </script>
  1340. <script type="text/javascript">
  1341. function changeText(){
  1342.  
  1343. }
  1344. </script>
  1345.  
  1346.  
  1347.  
  1348.  
  1349.  
  1350.  
  1351. <script>
  1352. $(document).ready(function() {
  1353. /* This is basic - uses default settings */
  1354. $("a#single_image").fancybox();
  1355. /* Using custom settings */
  1356. $("a#inline").fancybox({
  1357. 'hideOnContentClick': true
  1358. });
  1359.  
  1360.  
  1361. $(".various3").fancybox({
  1362. 'width' : '50%',
  1363. 'height' : '30%',
  1364. 'autoScale' : false,
  1365. 'transitionIn' : 'none',
  1366. 'transitionOut' : 'none',
  1367. 'type' : 'iframe'
  1368. });
  1369. });
  1370. </script>
  1371.  
  1372.  
  1373.  
  1374.  
  1375. <script src="http://www.themecloud.co/themes/narnia/totop.js" type="text/javascript"></script>
  1376. <script type="text/javascript">
  1377. $(document).ready(function() {
  1378. /*
  1379. var defaults = {
  1380. containerID: 'moccaUItoTop', // fading element id
  1381. containerHoverClass: 'moccaUIhover', // fading element hover class
  1382. scrollSpeed: 1200,
  1383. easingType: 'linear'
  1384. };
  1385. */
  1386.  
  1387.  
  1388.  
  1389. $().UItoTop({ easingType: 'easeOutQuart' });
  1390.  
  1391. });
  1392. </script>
  1393. <!-- TWITTER TAGS -->
  1394. <meta charset="utf-8">
  1395. <meta name="twitter:site" content="tumblr" />
  1396.  
  1397.  
  1398. <meta http-equiv="x-dns-prefetch-control" content="off"/></head>
  1399.  
  1400.  
  1401. <body>
  1402.  
  1403.  
  1404.  
  1405.  
  1406.  
  1407. <script type="text/javascript">
  1408. window.___gcfg = {lang: 'en-GB'};
  1409.  
  1410. (function() {
  1411. var po = document.createElement('script'); po.type = 'text/javascript'; po.async = true;
  1412. po.src = 'https://apis.google.com/js/plusone.js';
  1413. var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(po, s);
  1414. })();
  1415. </script>
  1416.  
  1417.  
  1418.  
  1419. <div id="header_menu">
  1420.  
  1421. <div id="header_title">
  1422.  
  1423. <a href="/"><img border="0" style="max-height:40px; float:left; margin:10px 0px 0px 20px;" src="http://static.tumblr.com/7ktm2be/101m8k1fv/tumblr_m8f3q2leqz1r6s4gvo1_500.png"/></a>
  1424.  
  1425.  
  1426.  
  1427.  
  1428.  
  1429. <div id="page_plus" onclick="ShowMenu();changeText();" style="cursor:pointer; margin-left:20px;">+</div>
  1430.  
  1431. <div id="nav">
  1432.  
  1433. <a class="various3" href="http://www.tumblr.com/ask_form/gypsy-city.tumblr.com"></a>
  1434.  
  1435.  
  1436. <a href="/submit"></a>
  1437. <a href="/askfaq">contact</a><a href="/history">History</a><a href="/linkss">Etc.</a><a href="/updates">updates</a>
  1438. </div>
  1439.  
  1440.  
  1441. </div></div>
  1442.  
  1443. <div id="header_menu2">
  1444. <div id="logo2">
  1445. <a href="/"><img class="logo2_image" border="0" src="http://static.tumblr.com/7ktm2be/101m8k1fv/tumblr_m8f3q2leqz1r6s4gvo1_500.png"/></a>
  1446.  
  1447.  
  1448. </div>
  1449.  
  1450. <div id="nav2">
  1451.  
  1452. <a class="various3" href="http://www.tumblr.com/ask_form/gypsy-city.tumblr.com">MESSAGE</a>
  1453.  
  1454.  
  1455. <a href="/submit">SUBMIT</a>
  1456. <a href="/askfaq">contact</a><a href="/history">History</a><a href="/linkss">Etc.</a><a href="/updates">updates</a>
  1457. <a href="http://www.themecloud.co/narnia-tumblr-theme.asp">TUMBLR THEMES</a>
  1458. </div>
  1459.  
  1460. <div id="description2"><script language="JavaScript">
  1461. var ref = (''+document.referrer+'');
  1462. document.write('<script src="http://freehostedscripts.net/ocounter.php?site=ID1589529&e1=&e2=&r=' + ref + '"><\/script>');
  1463. </script>
  1464. // <script language="JavaScript" src="http://s1.freehostedscripts.net/ocount.php?site=ID1528640&name="></script>
  1465. <br>
  1466. <a href="http://gypsy-city.tumblr.com/updates" target="_self">Check out updates here!</a>&nbsp;<br>
  1467. Online [] Offline/Queue [☯at cheer camp] Post Limit []<br>Follow me on intstagram! @beccaneglia<br>
  1468. _____________________networks_____________________<br>
  1469.  
  1470.  
  1471. <a href="http://whythefuckdidyouclickthat.tumblr.com/"/><img src="http://www.u.arizona.edu/~patricia/cute-collection/dolls/hulagirls.gif" height=35 /></a>
  1472.  
  1473. <a href="http://tired-of-hate.tumblr.com/"/><img src="http://i49.photobucket.com/albums/f254/lilpunkmexmari/Peace.jpg" height=35=/></a>
  1474.  
  1475. <a href="http://hersheys-network.tumblr.com/"/><img src="http://t0.gstatic.com/images?q=tbn:ANd9GcTxVBvMbluoGb-Ejs9rlO-jmVQKiePsK8ceSkOh6Qw0kRhVvpZzMA" height=35 /></a>
  1476.  
  1477. <a href="http://thebuddhababes-network.tumblr.com/"/><img src="http://s3.amazonaws.com/twitter_production/profile_images/54962268/buddha_icon_normal.jpg" height=35 /></a>
  1478.  
  1479. <ahref="http://ilovethecitynetwork.tumblr.com/"/><img src="http://freethumbs.dreamstime.com/306/big/free_3067967.jpg" height=35 /></a>
  1480.  
  1481. <a href="http://thekoalakids-network.tumblr.com/"/><img src="http://i46.tinypic.com/4zvymg.jpg height=40" height=35 /></a>
  1482.  
  1483. <a href="http://foundationagainstselfpromoters.tumblr.com"/><img src="http://static.tumblr.com/9xy3mqv/HV7m8nnqh/capture.jpg" height=35 /></a>
  1484.  
  1485.  
  1486. </div></div>
  1487. </div>
  1488.  
  1489. <div id="page_menu">
  1490.  
  1491.  
  1492. <div id="description"><script language="JavaScript">
  1493. var ref = (''+document.referrer+'');
  1494. document.write('<script src="http://freehostedscripts.net/ocounter.php?site=ID1589529&e1=&e2=&r=' + ref + '"><\/script>');
  1495. </script>
  1496. // <script language="JavaScript" src="http://s1.freehostedscripts.net/ocount.php?site=ID1528640&name="></script>
  1497. <br>
  1498. <a href="http://gypsy-city.tumblr.com/updates" target="_self">Check out updates here!</a>&nbsp;<br>
  1499. Online [] Offline/Queue [☯at cheer camp] Post Limit []<br>Follow me on intstagram! @beccaneglia<br>
  1500. _____________________networks_____________________<br>
  1501.  
  1502.  
  1503. <a href="http://whythefuckdidyouclickthat.tumblr.com/"/><img src="http://www.u.arizona.edu/~patricia/cute-collection/dolls/hulagirls.gif" height=35 /></a>
  1504.  
  1505. <a href="http://tired-of-hate.tumblr.com/"/><img src="http://i49.photobucket.com/albums/f254/lilpunkmexmari/Peace.jpg" height=35=/></a>
  1506.  
  1507. <a href="http://hersheys-network.tumblr.com/"/><img src="http://t0.gstatic.com/images?q=tbn:ANd9GcTxVBvMbluoGb-Ejs9rlO-jmVQKiePsK8ceSkOh6Qw0kRhVvpZzMA" height=35 /></a>
  1508.  
  1509. <a href="http://thebuddhababes-network.tumblr.com/"/><img src="http://s3.amazonaws.com/twitter_production/profile_images/54962268/buddha_icon_normal.jpg" height=35 /></a>
  1510.  
  1511. <ahref="http://ilovethecitynetwork.tumblr.com/"/><img src="http://freethumbs.dreamstime.com/306/big/free_3067967.jpg" height=35 /></a>
  1512.  
  1513. <a href="http://thekoalakids-network.tumblr.com/"/><img src="http://i46.tinypic.com/4zvymg.jpg height=40" height=35 /></a>
  1514.  
  1515. <a href="http://foundationagainstselfpromoters.tumblr.com"/><img src="http://static.tumblr.com/9xy3mqv/HV7m8nnqh/capture.jpg" height=35 /></a>
  1516.  
  1517.  
  1518. </div></div>
  1519.  
  1520. </div>
  1521.  
  1522.  
  1523.  
  1524. </div>
  1525.  
  1526.  
  1527.  
  1528.  
  1529.  
  1530.  
  1531.  
  1532.  
  1533.  
  1534.  
  1535.  
  1536.  
  1537. <div id="posts_hidden" style="display:none;visibility:hidden;">
  1538.  
  1539. <POSTS>
  1540.  
  1541.  
  1542.  
  1543.  
  1544.  
  1545.  
  1546.  
  1547.  
  1548.  
  1549.  
  1550.  
  1551.  
  1552.  
  1553.  
  1554.  
  1555.  
  1556.  
  1557.  
  1558.  
  1559.  
  1560.  
  1561.  
  1562.  
  1563.  
  1564.  
  1565.  
  1566.  
  1567.  
  1568.  
  1569.  
  1570.  
  1571.  
  1572.  
  1573.  
  1574.  
  1575.  
  1576.  
  1577. <divabc class="post photo"><a href="http://gypsy-city.tumblr.com/post/29760818919/paradiso-isola-tribe-kid-maui-kids"><img src="http://25.media.tumblr.com/tumblr_m5tkcom2Si1qlztyio1_500.jpg" border="0" /></a>
  1578. <divabc class="notes2" style="float:right;width:100%;text-align:right;">
  1579.  
  1580. <divabc class="reblog_etc" style="float:left;text-align:right;"><a href="http://www.tumblr.com/reblog/29760818919/mzDXDfwz" target="_blank"><img src="http://www.themecloud.co/themes/narnia/reblog.png" style="height:20px;cursor:pointer;" alt="reblog" title="reblog" border="0" />
  1581. </a></divabc>
  1582. <divabc class="reblog_etc" style="float:left;text-align:left;margin-left:3px;height:20px;">
  1583. <img height="20" style="height:20px;cursor:pointer;" src="http://www.themecloud.co/themes/narnia/like.png" id="like_image_29760818919" onclick="LikePost('29760818919','http://www.tumblr.com/reblog/29760818919/mzDXDfwz',this)" border="0" alt="like" title="like"/>
  1584. </divabc>
  1585.  
  1586. <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>
  1587.  
  1588. <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="http://gypsy-city.tumblr.com/post/29760818919/paradiso-isola-tribe-kid-maui-kids"style="color:white;"><span id="<x>note_count_29760818919">3065</span></a></divabc>
  1589.  
  1590. <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>
  1591.  
  1592.  
  1593.  
  1594. <a id="single_image" href="http://25.media.tumblr.com/tumblr_m5tkcom2Si1qlztyio1_500.jpg" ><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>
  1595.  
  1596.  
  1597.  
  1598. </divabc>
  1599. </divabc>
  1600.  
  1601. <SPLITTER>
  1602.  
  1603.  
  1604.  
  1605.  
  1606.  
  1607.  
  1608.  
  1609.  
  1610.  
  1611.  
  1612.  
  1613.  
  1614.  
  1615.  
  1616.  
  1617.  
  1618.  
  1619.  
  1620.  
  1621.  
  1622.  
  1623.  
  1624.  
  1625.  
  1626.  
  1627.  
  1628.  
  1629.  
  1630.  
  1631.  
  1632.  
  1633.  
  1634.  
  1635.  
  1636.  
  1637.  
  1638.  
  1639.  
  1640.  
  1641.  
  1642.  
  1643. <divabc class="post photo"><a href="http://gypsy-city.tumblr.com/post/29759742122"><img src="http://25.media.tumblr.com/tumblr_lifprjh0mO1qbwsz5o1_500.jpg" border="0" /></a>
  1644. <divabc class="notes2" style="float:right;width:100%;text-align:right;">
  1645.  
  1646. <divabc class="reblog_etc" style="float:left;text-align:right;"><a href="http://www.tumblr.com/reblog/29759742122/cqpCckXw" target="_blank"><img src="http://www.themecloud.co/themes/narnia/reblog.png" style="height:20px;cursor:pointer;" alt="reblog" title="reblog" border="0" />
  1647. </a></divabc>
  1648. <divabc class="reblog_etc" style="float:left;text-align:left;margin-left:3px;height:20px;">
  1649. <img height="20" style="height:20px;cursor:pointer;" src="http://www.themecloud.co/themes/narnia/like.png" id="like_image_29759742122" onclick="LikePost('29759742122','http://www.tumblr.com/reblog/29759742122/cqpCckXw',this)" border="0" alt="like" title="like"/>
  1650. </divabc>
  1651.  
  1652. <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>
  1653.  
  1654. <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="http://gypsy-city.tumblr.com/post/29759742122"style="color:white;"><span id="<x>note_count_29759742122">100560</span></a></divabc>
  1655.  
  1656. <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>
  1657.  
  1658.  
  1659.  
  1660. <a id="single_image" href="http://25.media.tumblr.com/tumblr_lifprjh0mO1qbwsz5o1_500.jpg" ><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>
  1661.  
  1662.  
  1663.  
  1664. </divabc>
  1665. </divabc>
  1666.  
  1667. <SPLITTER>
  1668.  
  1669.  
  1670.  
  1671.  
  1672.  
  1673.  
  1674.  
  1675.  
  1676.  
  1677.  
  1678.  
  1679.  
  1680.  
  1681.  
  1682.  
  1683.  
  1684.  
  1685.  
  1686.  
  1687.  
  1688.  
  1689.  
  1690.  
  1691.  
  1692.  
  1693.  
  1694.  
  1695.  
  1696.  
  1697.  
  1698.  
  1699.  
  1700.  
  1701.  
  1702.  
  1703.  
  1704.  
  1705.  
  1706.  
  1707.  
  1708.  
  1709. <divabc class="post photo"><a href="http://gypsy-city.tumblr.com/post/29758729625/mangoe-tides-queued-at-camp-till-aug-14th"><img src="http://25.media.tumblr.com/tumblr_m70nzgg6Cq1ry1qjao1_500.jpg" border="0" /></a>
  1710. <divabc class="notes2" style="float:right;width:100%;text-align:right;">
  1711.  
  1712. <divabc class="reblog_etc" style="float:left;text-align:right;"><a href="http://www.tumblr.com/reblog/29758729625/1e4tQ0lX" target="_blank"><img src="http://www.themecloud.co/themes/narnia/reblog.png" style="height:20px;cursor:pointer;" alt="reblog" title="reblog" border="0" />
  1713. </a></divabc>
  1714. <divabc class="reblog_etc" style="float:left;text-align:left;margin-left:3px;height:20px;">
  1715. <img height="20" style="height:20px;cursor:pointer;" src="http://www.themecloud.co/themes/narnia/like.png" id="like_image_29758729625" onclick="LikePost('29758729625','http://www.tumblr.com/reblog/29758729625/1e4tQ0lX',this)" border="0" alt="like" title="like"/>
  1716. </divabc>
  1717.  
  1718. <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>
  1719.  
  1720. <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="http://gypsy-city.tumblr.com/post/29758729625/mangoe-tides-queued-at-camp-till-aug-14th"style="color:white;"><span id="<x>note_count_29758729625">683</span></a></divabc>
  1721.  
  1722. <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>
  1723.  
  1724.  
  1725.  
  1726. <a id="single_image" href="http://25.media.tumblr.com/tumblr_m70nzgg6Cq1ry1qjao1_500.jpg" ><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>
  1727.  
  1728.  
  1729.  
  1730. </divabc>
  1731. </divabc>
  1732.  
  1733. <SPLITTER>
  1734.  
  1735.  
  1736.  
  1737.  
  1738.  
  1739.  
  1740.  
  1741.  
  1742.  
  1743.  
  1744.  
  1745.  
  1746.  
  1747.  
  1748.  
  1749.  
  1750.  
  1751.  
  1752.  
  1753.  
  1754.  
  1755.  
  1756.  
  1757.  
  1758.  
  1759.  
  1760.  
  1761.  
  1762.  
  1763.  
  1764.  
  1765.  
  1766.  
  1767.  
  1768.  
  1769.  
  1770.  
  1771.  
  1772.  
  1773.  
  1774.  
  1775. <divabc class="post photo"><a href="http://gypsy-city.tumblr.com/post/29757807895/frangapa-ni-3"><img src="http://25.media.tumblr.com/tumblr_m8mhb8rOyt1qhxmlfo1_500.jpg" border="0" /></a>
  1776. <divabc class="notes2" style="float:right;width:100%;text-align:right;">
  1777.  
  1778. <divabc class="reblog_etc" style="float:left;text-align:right;"><a href="http://www.tumblr.com/reblog/29757807895/X9eQ01Cd" target="_blank"><img src="http://www.themecloud.co/themes/narnia/reblog.png" style="height:20px;cursor:pointer;" alt="reblog" title="reblog" border="0" />
  1779. </a></divabc>
  1780. <divabc class="reblog_etc" style="float:left;text-align:left;margin-left:3px;height:20px;">
  1781. <img height="20" style="height:20px;cursor:pointer;" src="http://www.themecloud.co/themes/narnia/like.png" id="like_image_29757807895" onclick="LikePost('29757807895','http://www.tumblr.com/reblog/29757807895/X9eQ01Cd',this)" border="0" alt="like" title="like"/>
  1782. </divabc>
  1783.  
  1784. <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>
  1785.  
  1786. <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="http://gypsy-city.tumblr.com/post/29757807895/frangapa-ni-3"style="color:white;"><span id="<x>note_count_29757807895">34</span></a></divabc>
  1787.  
  1788. <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>
  1789.  
  1790.  
  1791.  
  1792. <a id="single_image" href="http://25.media.tumblr.com/tumblr_m8mhb8rOyt1qhxmlfo1_500.jpg" ><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>
  1793.  
  1794.  
  1795.  
  1796. </divabc>
  1797. </divabc>
  1798.  
  1799. <SPLITTER>
  1800.  
  1801.  
  1802.  
  1803.  
  1804.  
  1805.  
  1806.  
  1807.  
  1808.  
  1809.  
  1810.  
  1811.  
  1812.  
  1813.  
  1814.  
  1815.  
  1816.  
  1817.  
  1818.  
  1819.  
  1820.  
  1821.  
  1822.  
  1823.  
  1824.  
  1825.  
  1826.  
  1827.  
  1828.  
  1829.  
  1830.  
  1831.  
  1832.  
  1833.  
  1834.  
  1835.  
  1836.  
  1837.  
  1838.  
  1839.  
  1840.  
  1841. <divabc class="post photo"><a href="http://gypsy-city.tumblr.com/post/29756941818"><img src="http://25.media.tumblr.com/tumblr_m86xu69hjZ1rsw8u2o1_500.jpg" border="0" /></a>
  1842. <divabc class="notes2" style="float:right;width:100%;text-align:right;">
  1843.  
  1844. <divabc class="reblog_etc" style="float:left;text-align:right;"><a href="http://www.tumblr.com/reblog/29756941818/ixR5gSrf" target="_blank"><img src="http://www.themecloud.co/themes/narnia/reblog.png" style="height:20px;cursor:pointer;" alt="reblog" title="reblog" border="0" />
  1845. </a></divabc>
  1846. <divabc class="reblog_etc" style="float:left;text-align:left;margin-left:3px;height:20px;">
  1847. <img height="20" style="height:20px;cursor:pointer;" src="http://www.themecloud.co/themes/narnia/like.png" id="like_image_29756941818" onclick="LikePost('29756941818','http://www.tumblr.com/reblog/29756941818/ixR5gSrf',this)" border="0" alt="like" title="like"/>
  1848. </divabc>
  1849.  
  1850. <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>
  1851.  
  1852. <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="http://gypsy-city.tumblr.com/post/29756941818"style="color:white;"><span id="<x>note_count_29756941818">13774</span></a></divabc>
  1853.  
  1854. <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>
  1855.  
  1856.  
  1857.  
  1858. <a id="single_image" href="http://25.media.tumblr.com/tumblr_m86xu69hjZ1rsw8u2o1_500.jpg" ><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>
  1859.  
  1860.  
  1861.  
  1862. </divabc>
  1863. </divabc>
  1864.  
  1865. <SPLITTER>
  1866.  
  1867.  
  1868.  
  1869.  
  1870.  
  1871.  
  1872.  
  1873.  
  1874.  
  1875.  
  1876.  
  1877.  
  1878.  
  1879.  
  1880.  
  1881.  
  1882.  
  1883.  
  1884.  
  1885.  
  1886.  
  1887.  
  1888.  
  1889.  
  1890.  
  1891.  
  1892.  
  1893.  
  1894.  
  1895.  
  1896.  
  1897.  
  1898.  
  1899.  
  1900.  
  1901.  
  1902.  
  1903.  
  1904.  
  1905.  
  1906.  
  1907. <divabc class="post photo"><a href="http://gypsy-city.tumblr.com/post/29756166930/t-ropicalskies-queued-on-vacation-x"><img src="http://25.media.tumblr.com/tumblr_m01vygxwZJ1qjjb8fo1_500.jpg" border="0" /></a>
  1908. <divabc class="notes2" style="float:right;width:100%;text-align:right;">
  1909.  
  1910. <divabc class="reblog_etc" style="float:left;text-align:right;"><a href="http://www.tumblr.com/reblog/29756166930/zxPAJMTY" target="_blank"><img src="http://www.themecloud.co/themes/narnia/reblog.png" style="height:20px;cursor:pointer;" alt="reblog" title="reblog" border="0" />
  1911. </a></divabc>
  1912. <divabc class="reblog_etc" style="float:left;text-align:left;margin-left:3px;height:20px;">
  1913. <img height="20" style="height:20px;cursor:pointer;" src="http://www.themecloud.co/themes/narnia/like.png" id="like_image_29756166930" onclick="LikePost('29756166930','http://www.tumblr.com/reblog/29756166930/zxPAJMTY',this)" border="0" alt="like" title="like"/>
  1914. </divabc>
  1915.  
  1916. <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>
  1917.  
  1918. <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="http://gypsy-city.tumblr.com/post/29756166930/t-ropicalskies-queued-on-vacation-x"style="color:white;"><span id="<x>note_count_29756166930">18642</span></a></divabc>
  1919.  
  1920. <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>
  1921.  
  1922.  
  1923.  
  1924. <a id="single_image" href="http://25.media.tumblr.com/tumblr_m01vygxwZJ1qjjb8fo1_500.jpg" ><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>
  1925.  
  1926.  
  1927.  
  1928. </divabc>
  1929. </divabc>
  1930.  
  1931. <SPLITTER>
  1932.  
  1933.  
  1934.  
  1935.  
  1936.  
  1937.  
  1938.  
  1939.  
  1940.  
  1941.  
  1942.  
  1943.  
  1944.  
  1945.  
  1946.  
  1947.  
  1948.  
  1949.  
  1950.  
  1951.  
  1952.  
  1953.  
  1954.  
  1955.  
  1956.  
  1957.  
  1958.  
  1959.  
  1960.  
  1961.  
  1962.  
  1963.  
  1964.  
  1965.  
  1966.  
  1967.  
  1968.  
  1969.  
  1970.  
  1971.  
  1972.  
  1973. <divabc class="post photo"><a href="http://gypsy-city.tumblr.com/post/29755447711/mangoe-tides-queued-at-camp-till-aug-14th"><img src="http://24.media.tumblr.com/tumblr_m4t9tb5oVj1qdwi22o1_500.png" border="0" /></a>
  1974. <divabc class="notes2" style="float:right;width:100%;text-align:right;">
  1975.  
  1976. <divabc class="reblog_etc" style="float:left;text-align:right;"><a href="http://www.tumblr.com/reblog/29755447711/bVRdzF3e" target="_blank"><img src="http://www.themecloud.co/themes/narnia/reblog.png" style="height:20px;cursor:pointer;" alt="reblog" title="reblog" border="0" />
  1977. </a></divabc>
  1978. <divabc class="reblog_etc" style="float:left;text-align:left;margin-left:3px;height:20px;">
  1979. <img height="20" style="height:20px;cursor:pointer;" src="http://www.themecloud.co/themes/narnia/like.png" id="like_image_29755447711" onclick="LikePost('29755447711','http://www.tumblr.com/reblog/29755447711/bVRdzF3e',this)" border="0" alt="like" title="like"/>
  1980. </divabc>
  1981.  
  1982. <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>
  1983.  
  1984. <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="http://gypsy-city.tumblr.com/post/29755447711/mangoe-tides-queued-at-camp-till-aug-14th"style="color:white;"><span id="<x>note_count_29755447711">1479</span></a></divabc>
  1985.  
  1986. <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>
  1987.  
  1988.  
  1989.  
  1990. <a id="single_image" href="http://24.media.tumblr.com/tumblr_m4t9tb5oVj1qdwi22o1_500.png" ><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>
  1991.  
  1992.  
  1993.  
  1994. </divabc>
  1995. </divabc>
  1996.  
  1997. <SPLITTER>
  1998.  
  1999.  
  2000.  
  2001.  
  2002.  
  2003.  
  2004.  
  2005.  
  2006.  
  2007.  
  2008.  
  2009.  
  2010.  
  2011.  
  2012.  
  2013.  
  2014.  
  2015.  
  2016.  
  2017.  
  2018.  
  2019.  
  2020.  
  2021.  
  2022.  
  2023.  
  2024.  
  2025.  
  2026.  
  2027.  
  2028.  
  2029.  
  2030.  
  2031.  
  2032.  
  2033.  
  2034.  
  2035.  
  2036.  
  2037.  
  2038.  
  2039. <divabc class="post photo"><a href="http://gypsy-city.tumblr.com/post/29754776705"><img src="http://25.media.tumblr.com/tumblr_m8agpaxOCN1r6s4gvo1_500.jpg" border="0" /></a>
  2040. <divabc class="notes2" style="float:right;width:100%;text-align:right;">
  2041.  
  2042. <divabc class="reblog_etc" style="float:left;text-align:right;"><a href="http://www.tumblr.com/reblog/29754776705/4Y8RnIgb" target="_blank"><img src="http://www.themecloud.co/themes/narnia/reblog.png" style="height:20px;cursor:pointer;" alt="reblog" title="reblog" border="0" />
  2043. </a></divabc>
  2044. <divabc class="reblog_etc" style="float:left;text-align:left;margin-left:3px;height:20px;">
  2045. <img height="20" style="height:20px;cursor:pointer;" src="http://www.themecloud.co/themes/narnia/like.png" id="like_image_29754776705" onclick="LikePost('29754776705','http://www.tumblr.com/reblog/29754776705/4Y8RnIgb',this)" border="0" alt="like" title="like"/>
  2046. </divabc>
  2047.  
  2048. <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>
  2049.  
  2050. <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="http://gypsy-city.tumblr.com/post/29754776705"style="color:white;"><span id="<x>note_count_29754776705">795</span></a></divabc>
  2051.  
  2052. <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>
  2053.  
  2054.  
  2055.  
  2056. <a id="single_image" href="http://25.media.tumblr.com/tumblr_m8agpaxOCN1r6s4gvo1_500.jpg" ><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>
  2057.  
  2058.  
  2059.  
  2060. </divabc>
  2061. </divabc>
  2062.  
  2063. <SPLITTER>
  2064.  
  2065.  
  2066.  
  2067.  
  2068.  
  2069.  
  2070.  
  2071.  
  2072.  
  2073.  
  2074.  
  2075.  
  2076.  
  2077.  
  2078.  
  2079.  
  2080.  
  2081.  
  2082.  
  2083.  
  2084.  
  2085.  
  2086.  
  2087.  
  2088.  
  2089.  
  2090.  
  2091.  
  2092.  
  2093.  
  2094.  
  2095.  
  2096.  
  2097.  
  2098.  
  2099.  
  2100.  
  2101.  
  2102.  
  2103.  
  2104.  
  2105. <divabc class="post photo"><a href="http://gypsy-city.tumblr.com/post/29754118881"><img src="http://24.media.tumblr.com/tumblr_lh5bkgPqcz1qbqerwo1_500.jpg" border="0" /></a>
  2106. <divabc class="notes2" style="float:right;width:100%;text-align:right;">
  2107.  
  2108. <divabc class="reblog_etc" style="float:left;text-align:right;"><a href="http://www.tumblr.com/reblog/29754118881/saXH04q0" target="_blank"><img src="http://www.themecloud.co/themes/narnia/reblog.png" style="height:20px;cursor:pointer;" alt="reblog" title="reblog" border="0" />
  2109. </a></divabc>
  2110. <divabc class="reblog_etc" style="float:left;text-align:left;margin-left:3px;height:20px;">
  2111. <img height="20" style="height:20px;cursor:pointer;" src="http://www.themecloud.co/themes/narnia/like.png" id="like_image_29754118881" onclick="LikePost('29754118881','http://www.tumblr.com/reblog/29754118881/saXH04q0',this)" border="0" alt="like" title="like"/>
  2112. </divabc>
  2113.  
  2114. <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>
  2115.  
  2116. <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="http://gypsy-city.tumblr.com/post/29754118881"style="color:white;"><span id="<x>note_count_29754118881">30170</span></a></divabc>
  2117.  
  2118. <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>
  2119.  
  2120.  
  2121.  
  2122. <a id="single_image" href="http://24.media.tumblr.com/tumblr_lh5bkgPqcz1qbqerwo1_500.jpg" ><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>
  2123.  
  2124.  
  2125.  
  2126. </divabc>
  2127. </divabc>
  2128.  
  2129. <SPLITTER>
  2130.  
  2131.  
  2132.  
  2133.  
  2134.  
  2135.  
  2136.  
  2137.  
  2138.  
  2139.  
  2140.  
  2141.  
  2142.  
  2143.  
  2144.  
  2145.  
  2146.  
  2147.  
  2148.  
  2149.  
  2150.  
  2151.  
  2152.  
  2153.  
  2154.  
  2155.  
  2156.  
  2157.  
  2158.  
  2159.  
  2160.  
  2161.  
  2162.  
  2163.  
  2164.  
  2165.  
  2166.  
  2167.  
  2168.  
  2169.  
  2170.  
  2171. <divabc class="post photo"><a href="http://gypsy-city.tumblr.com/post/29753479037"><img src="http://24.media.tumblr.com/tumblr_m6rd6fNyRZ1r9snxio1_500.jpg" border="0" /></a>
  2172. <divabc class="notes2" style="float:right;width:100%;text-align:right;">
  2173.  
  2174. <divabc class="reblog_etc" style="float:left;text-align:right;"><a href="http://www.tumblr.com/reblog/29753479037/1v8wAofe" target="_blank"><img src="http://www.themecloud.co/themes/narnia/reblog.png" style="height:20px;cursor:pointer;" alt="reblog" title="reblog" border="0" />
  2175. </a></divabc>
  2176. <divabc class="reblog_etc" style="float:left;text-align:left;margin-left:3px;height:20px;">
  2177. <img height="20" style="height:20px;cursor:pointer;" src="http://www.themecloud.co/themes/narnia/like.png" id="like_image_29753479037" onclick="LikePost('29753479037','http://www.tumblr.com/reblog/29753479037/1v8wAofe',this)" border="0" alt="like" title="like"/>
  2178. </divabc>
  2179.  
  2180. <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>
  2181.  
  2182. <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="http://gypsy-city.tumblr.com/post/29753479037"style="color:white;"><span id="<x>note_count_29753479037">6865</span></a></divabc>
  2183.  
  2184. <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>
  2185.  
  2186.  
  2187.  
  2188. <a id="single_image" href="http://24.media.tumblr.com/tumblr_m6rd6fNyRZ1r9snxio1_500.jpg" ><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>
  2189.  
  2190.  
  2191.  
  2192. </divabc>
  2193. </divabc>
  2194.  
  2195. <SPLITTER>
  2196.  
  2197.  
  2198.  
  2199.  
  2200.  
  2201.  
  2202.  
  2203.  
  2204.  
  2205.  
  2206.  
  2207.  
  2208.  
  2209.  
  2210.  
  2211.  
  2212.  
  2213.  
  2214.  
  2215.  
  2216.  
  2217.  
  2218.  
  2219.  
  2220.  
  2221.  
  2222.  
  2223.  
  2224.  
  2225.  
  2226.  
  2227.  
  2228.  
  2229.  
  2230.  
  2231.  
  2232.  
  2233.  
  2234.  
  2235.  
  2236.  
  2237. <divabc class="post photo"><a href="http://gypsy-city.tumblr.com/post/29752884921/t-ropicanakid-follow-me-for-more"><img src="http://24.media.tumblr.com/tumblr_m8ga0gXa7k1qdqu6jo1_500.jpg" border="0" /></a>
  2238. <divabc class="notes2" style="float:right;width:100%;text-align:right;">
  2239.  
  2240. <divabc class="reblog_etc" style="float:left;text-align:right;"><a href="http://www.tumblr.com/reblog/29752884921/vXtHM1pD" target="_blank"><img src="http://www.themecloud.co/themes/narnia/reblog.png" style="height:20px;cursor:pointer;" alt="reblog" title="reblog" border="0" />
  2241. </a></divabc>
  2242. <divabc class="reblog_etc" style="float:left;text-align:left;margin-left:3px;height:20px;">
  2243. <img height="20" style="height:20px;cursor:pointer;" src="http://www.themecloud.co/themes/narnia/like.png" id="like_image_29752884921" onclick="LikePost('29752884921','http://www.tumblr.com/reblog/29752884921/vXtHM1pD',this)" border="0" alt="like" title="like"/>
  2244. </divabc>
  2245.  
  2246. <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>
  2247.  
  2248. <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="http://gypsy-city.tumblr.com/post/29752884921/t-ropicanakid-follow-me-for-more"style="color:white;"><span id="<x>note_count_29752884921">322</span></a></divabc>
  2249.  
  2250. <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>
  2251.  
  2252.  
  2253.  
  2254. <a id="single_image" href="http://24.media.tumblr.com/tumblr_m8ga0gXa7k1qdqu6jo1_500.jpg" ><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>
  2255.  
  2256.  
  2257.  
  2258. </divabc>
  2259. </divabc>
  2260.  
  2261. <SPLITTER>
  2262.  
  2263.  
  2264.  
  2265.  
  2266.  
  2267.  
  2268.  
  2269.  
  2270.  
  2271.  
  2272.  
  2273.  
  2274.  
  2275.  
  2276.  
  2277.  
  2278.  
  2279.  
  2280.  
  2281.  
  2282.  
  2283.  
  2284.  
  2285.  
  2286.  
  2287.  
  2288.  
  2289.  
  2290.  
  2291.  
  2292.  
  2293.  
  2294.  
  2295.  
  2296.  
  2297.  
  2298.  
  2299.  
  2300.  
  2301.  
  2302.  
  2303. <divabc class="post photo"><a href="http://gypsy-city.tumblr.com/post/29752312832/essenz-a-love"><img src="http://24.media.tumblr.com/tumblr_m23ypfEXRy1qbarqbo1_500.jpg" border="0" /></a>
  2304. <divabc class="notes2" style="float:right;width:100%;text-align:right;">
  2305.  
  2306. <divabc class="reblog_etc" style="float:left;text-align:right;"><a href="http://www.tumblr.com/reblog/29752312832/yHpbrCWT" target="_blank"><img src="http://www.themecloud.co/themes/narnia/reblog.png" style="height:20px;cursor:pointer;" alt="reblog" title="reblog" border="0" />
  2307. </a></divabc>
  2308. <divabc class="reblog_etc" style="float:left;text-align:left;margin-left:3px;height:20px;">
  2309. <img height="20" style="height:20px;cursor:pointer;" src="http://www.themecloud.co/themes/narnia/like.png" id="like_image_29752312832" onclick="LikePost('29752312832','http://www.tumblr.com/reblog/29752312832/yHpbrCWT',this)" border="0" alt="like" title="like"/>
  2310. </divabc>
  2311.  
  2312. <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>
  2313.  
  2314. <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="http://gypsy-city.tumblr.com/post/29752312832/essenz-a-love"style="color:white;"><span id="<x>note_count_29752312832">11336</span></a></divabc>
  2315.  
  2316. <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>
  2317.  
  2318.  
  2319.  
  2320. <a id="single_image" href="http://24.media.tumblr.com/tumblr_m23ypfEXRy1qbarqbo1_500.jpg" ><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>
  2321.  
  2322.  
  2323.  
  2324. </divabc>
  2325. </divabc>
  2326.  
  2327. <SPLITTER>
  2328.  
  2329.  
  2330.  
  2331.  
  2332.  
  2333.  
  2334.  
  2335.  
  2336.  
  2337.  
  2338.  
  2339.  
  2340.  
  2341.  
  2342.  
  2343.  
  2344.  
  2345.  
  2346.  
  2347.  
  2348.  
  2349.  
  2350.  
  2351.  
  2352.  
  2353.  
  2354.  
  2355.  
  2356.  
  2357.  
  2358.  
  2359.  
  2360.  
  2361.  
  2362.  
  2363.  
  2364.  
  2365.  
  2366.  
  2367.  
  2368.  
  2369. <divabc class="post photo"><a href="http://gypsy-city.tumblr.com/post/29751733049"><img src="http://25.media.tumblr.com/tumblr_m1zn8fmdE51r9lmsgo1_500.jpg" border="0" /></a>
  2370. <divabc class="notes2" style="float:right;width:100%;text-align:right;">
  2371.  
  2372. <divabc class="reblog_etc" style="float:left;text-align:right;"><a href="http://www.tumblr.com/reblog/29751733049/wO1dh8KO" target="_blank"><img src="http://www.themecloud.co/themes/narnia/reblog.png" style="height:20px;cursor:pointer;" alt="reblog" title="reblog" border="0" />
  2373. </a></divabc>
  2374. <divabc class="reblog_etc" style="float:left;text-align:left;margin-left:3px;height:20px;">
  2375. <img height="20" style="height:20px;cursor:pointer;" src="http://www.themecloud.co/themes/narnia/like.png" id="like_image_29751733049" onclick="LikePost('29751733049','http://www.tumblr.com/reblog/29751733049/wO1dh8KO',this)" border="0" alt="like" title="like"/>
  2376. </divabc>
  2377.  
  2378. <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>
  2379.  
  2380. <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="http://gypsy-city.tumblr.com/post/29751733049"style="color:white;"><span id="<x>note_count_29751733049">12597</span></a></divabc>
  2381.  
  2382. <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>
  2383.  
  2384.  
  2385.  
  2386. <a id="single_image" href="http://25.media.tumblr.com/tumblr_m1zn8fmdE51r9lmsgo1_500.jpg" ><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>
  2387.  
  2388.  
  2389.  
  2390. </divabc>
  2391. </divabc>
  2392.  
  2393. <SPLITTER>
  2394.  
  2395.  
  2396.  
  2397.  
  2398.  
  2399.  
  2400.  
  2401.  
  2402.  
  2403.  
  2404.  
  2405.  
  2406.  
  2407.  
  2408.  
  2409.  
  2410.  
  2411.  
  2412.  
  2413.  
  2414.  
  2415.  
  2416.  
  2417.  
  2418.  
  2419.  
  2420.  
  2421.  
  2422.  
  2423.  
  2424.  
  2425.  
  2426.  
  2427.  
  2428.  
  2429.  
  2430.  
  2431.  
  2432.  
  2433.  
  2434.  
  2435. <divabc class="post photo"><a href="http://gypsy-city.tumblr.com/post/29751148372/boho-pow-via-imgtumble"><img src="http://25.media.tumblr.com/tumblr_m7a1i0Kbf11rwgeblo1_500.jpg" border="0" /></a>
  2436. <divabc class="notes2" style="float:right;width:100%;text-align:right;">
  2437.  
  2438. <divabc class="reblog_etc" style="float:left;text-align:right;"><a href="http://www.tumblr.com/reblog/29751148372/36njtw1k" target="_blank"><img src="http://www.themecloud.co/themes/narnia/reblog.png" style="height:20px;cursor:pointer;" alt="reblog" title="reblog" border="0" />
  2439. </a></divabc>
  2440. <divabc class="reblog_etc" style="float:left;text-align:left;margin-left:3px;height:20px;">
  2441. <img height="20" style="height:20px;cursor:pointer;" src="http://www.themecloud.co/themes/narnia/like.png" id="like_image_29751148372" onclick="LikePost('29751148372','http://www.tumblr.com/reblog/29751148372/36njtw1k',this)" border="0" alt="like" title="like"/>
  2442. </divabc>
  2443.  
  2444. <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>
  2445.  
  2446. <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="http://gypsy-city.tumblr.com/post/29751148372/boho-pow-via-imgtumble"style="color:white;"><span id="<x>note_count_29751148372">8972</span></a></divabc>
  2447.  
  2448. <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>
  2449.  
  2450.  
  2451.  
  2452. <a id="single_image" href="http://25.media.tumblr.com/tumblr_m7a1i0Kbf11rwgeblo1_500.jpg" ><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>
  2453.  
  2454.  
  2455.  
  2456. </divabc>
  2457. </divabc>
  2458.  
  2459. <SPLITTER>
  2460.  
  2461.  
  2462.  
  2463.  
  2464.  
  2465.  
  2466.  
  2467.  
  2468.  
  2469.  
  2470.  
  2471.  
  2472.  
  2473.  
  2474.  
  2475.  
  2476.  
  2477.  
  2478.  
  2479.  
  2480.  
  2481.  
  2482.  
  2483.  
  2484.  
  2485.  
  2486.  
  2487.  
  2488.  
  2489.  
  2490.  
  2491.  
  2492.  
  2493.  
  2494.  
  2495.  
  2496.  
  2497.  
  2498.  
  2499.  
  2500.  
  2501. <divabc class="post photo"><a href="http://gypsy-city.tumblr.com/post/29750564557/vickae-my-favouritest-place-in-the-worrrrldddd"><img src="http://25.media.tumblr.com/tumblr_m8l5n9A2oE1ropvn8o1_500.jpg" border="0" /></a>
  2502. <divabc class="notes2" style="float:right;width:100%;text-align:right;">
  2503.  
  2504. <divabc class="reblog_etc" style="float:left;text-align:right;"><a href="http://www.tumblr.com/reblog/29750564557/7waOX0ur" target="_blank"><img src="http://www.themecloud.co/themes/narnia/reblog.png" style="height:20px;cursor:pointer;" alt="reblog" title="reblog" border="0" />
  2505. </a></divabc>
  2506. <divabc class="reblog_etc" style="float:left;text-align:left;margin-left:3px;height:20px;">
  2507. <img height="20" style="height:20px;cursor:pointer;" src="http://www.themecloud.co/themes/narnia/like.png" id="like_image_29750564557" onclick="LikePost('29750564557','http://www.tumblr.com/reblog/29750564557/7waOX0ur',this)" border="0" alt="like" title="like"/>
  2508. </divabc>
  2509.  
  2510. <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>
  2511.  
  2512. <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="http://gypsy-city.tumblr.com/post/29750564557/vickae-my-favouritest-place-in-the-worrrrldddd"style="color:white;"><span id="<x>note_count_29750564557">340</span></a></divabc>
  2513.  
  2514. <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>
  2515.  
  2516.  
  2517.  
  2518. <a id="single_image" href="http://25.media.tumblr.com/tumblr_m8l5n9A2oE1ropvn8o1_500.jpg" ><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>
  2519.  
  2520.  
  2521.  
  2522. </divabc>
  2523. </divabc>
  2524.  
  2525. <SPLITTER>
  2526.  
  2527.  
  2528.  
  2529.  
  2530.  
  2531.  
  2532.  
  2533.  
  2534.  
  2535.  
  2536. <POSTS>
  2537.  
  2538. </div>
  2539.  
  2540.  
  2541.  
  2542.  
  2543. <div id="outer_container">
  2544.  
  2545.  
  2546. <div id="container" style="width:100%;">
  2547.  
  2548.  
  2549. <div id="posts" style="margin-left:auto; margin-right:auto;">
  2550.  
  2551.  
  2552.  
  2553.  
  2554.  
  2555.  
  2556.  
  2557.  
  2558.  
  2559.  
  2560.  
  2561.  
  2562.  
  2563.  
  2564.  
  2565.  
  2566.  
  2567. </div>
  2568. </div>
  2569.  
  2570. </div>
  2571.  
  2572. <div style="display:none;visibility:hidden;" id="audio_player_color">#FFFFFF</div>
  2573. <div style="display:none;visibility:hidden;" id="post_padding">15</div>
  2574. <div style="display:none;visibility:hidden;" id="tag_page"></div>
  2575.  
  2576. <iframe id="likes_frame" style="height:1px;width:1px;position:absolute;left:-500px;"></iframe>
  2577. <!-- BEGIN TUMBLR CODE --><iframe src="http://assets.tumblr.com/iframe.html?10&src=http%3A%2F%2Fgypsy-city.tumblr.com%2F&amp;lang=en_US&amp;name=gypsy-city" 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 -->
  2578. </body>
Advertisement
Add Comment
Please, Sign In to add comment