-
Notifications
You must be signed in to change notification settings - Fork 61
/
Circulos.xml
1785 lines (1692 loc) · 76.1 KB
/
Circulos.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html expr:dir='data:blog.languageDirection' xmlns='http://www.w3.org/1999/xhtml' xmlns:b='http://www.google.com/2005/gml/b' xmlns:data='http://www.google.com/2005/gml/data' xmlns:expr='http://www.google.com/2005/gml/expr'>
<head>
<b:include data='blog' name='all-head-content'/>
<title>
<b:if cond='data:blog.homepageUrl == data:blog.url'>
<data:blog.title/>
<b:else/>
<data:blog.pageName/> | <data:blog.title/>
</b:if>
</title>
<b:skin><![CDATA[/*
Blogger Template Style
Base: Mínima
Nombre: Círculos
Adaptación y Diseño por: compartidísimo
URL:http://compartidisimo.com
Fecha: Diciembre 2011
*/
/* Variable definitions
====================
<Variable name="crosscolbgColor"description="Color de Fondo Menú"type="color"default="#fff" value="#1d1c1c">
<Variable name="AcentosBorderColor"description="Color Borde Título Sidebar"type="color"default="#f8f2dc" value="#e1dddd"><Variable name="BorderColorEnd"description="Color Borde Inferior Footer"type="color"default="#f8f2dc" value="#0c0c0c"><Variable name="menuTextColor"description="Color Fuente Menú"type="color"default="#fff" value="#bcbfc1">
<Variable name="descriptioncolor"description="Blog Description Color"type="color"default="#777" value="#7c7b7b">
<Variable name="textcolor"description="Text Color"type="color"default="#333" value="#5d5b5a">
<Variable name="linkcolor"description="Link Color"type="color"default="#58a" value="#1057aa">
<Variable name="titlecolor"description="Post Title Color"type="color"default="#999" value="#066bd2">
<Variable name="pagetitlecolor"description="Blog Title Color"type="color"default="#ccc" value="#5d5b5a">
<Variable name="sidebarcolor"description="Sidebar Title Color"type="color"default="#999" value="#3b3838">
<Variable name="sidebartextcolor"description="Sidebar Text Color"type="color"default="#666" value="#5d5b5a">
<Variable name="visitedlinkcolor"description="Visited Link Color"type="color"default="#999" value="#066bd2">
<Variable name="bodyfont"description="Text Font"type="font"default="normal normal 100% Georgia,Serif" value="normal normal 100% Droid Sans">
<Variable name="pagetitlefont"description="Blog Title Font"type="font"default="normal bold 200% 'Trebuchet MS',Trebuchet,Verdana,Sans-serif" value="normal normal 77px Oswald">
<Variable name="postfooterfont"description="Post Footer Font"type="font"default="normal normal 78% 'Trebuchet MS',Trebuchet,Arial,Verdana,Sans-serif" value="normal normal 14px 'Trebuchet MS',Trebuchet,sans-serif">
<Variable name="posttitlefont"description="Fuente Titulo Post"type="font"default="normal normal 78% 'Trebuchet MS',Trebuchet,Arial,Verdana,Sans-serif" value="normal normal 16px Oswald">
<Variable name="posttitlesidebarfont"description="Fuente Titulo Sidebar"type="font"default="normal normal 78% 'Trebuchet MS',Trebuchet,Arial,Verdana,Sans-serif" value="normal normal 130% Molengo">
<Variable name="menuTextFont"description="Menu Fuente"type="font"default="normal normal 77% Verdana,sans-serif" value="normal normal 14px Cantarell">
*/
#navbar-iframe{height:0px; visibility:hidden; display:none}
*{margin:0; padding:0}
body{color:$textcolor; font:x-small Georgia Serif; font-size/* */:/**/small; font-size:/**/small; text-align:left; position:relative; min-width:990px}
body, .titulo-oculto a:hover span, .menu li a:hover{background:url(http://4.bp.blogspot.com/-X-gz7TDzVPk/VlgNuhVZqgI/AAAAAAAACcM/JoKBCjdaitg/s000/bgcirculos.gif) repeat}
a:link{color:$linkcolor; text-decoration:none}
a:visited{color:$visitedlinkcolor}
a:hover{color:$hovercolor}
/* Header o cabecera */
#header-wrapper{margin:0 auto; padding:0; width:990px; height:160px; position:relative; top:0; left:0}
#header{float:left; text-align:left; color:#5d5b5a; padding:0; width:400px; height:100px}
#header h1{position:relative; top:75px; left:10px; margin:0; padding:0; font:$pagetitlefont; color:$pagetitlecolor; text-transform:none; display:block; line-height:1.2em; clear:both; text-shadow:1px 1px 2px #fff; max-width:500px}
#header a{text-decoration:none}
#header h1:hover{color:#aa1057}
#header .description{position:relative; top:80px; left:8px; padding:5px 0 15px 17px; text-transform:none; letter-spacing:.2em; line-height:1.4em; font:$descriptionfont; color:$descriptioncolor; max-width:490px}
#header img{margin-left:auto; margin-right:auto}
a img{border-width:0}
/* Headings */
h1, h2, h3, h4, h5, h6{text-decoration:none}
h4{font-size:115%}
h5{font-size:105%}
h6{font-size:95%}
h2{line-height:1.4em; text-transform:none; color:$sidebarcolor}
/* Outer-Wrapper o envoltura*/
.clear{clear:both}
#outer-wrapper{position:relative; width:990px; margin:0 auto; padding:0; text-align:left; font:$bodyfont}
#content-wrapper{margin:0 auto; padding:0; background:none; width:990px; text-align:left; clear:both}
#main{width:630px; margin:20px 0 0 7px; padding:0; float:right; overflow:hidden; display:inline}
#sidebar-wrapper{margin:30px 0 0 10px; padding:0 5px 0 0; width:330px; float:left; line-height:1.2em; overflow:hidden; display:inline}
/* Sección para agregar Banners*/
#sidebar-adds{margin:16px 0 8px 0; padding:0; width:270px; line-height:100%; overflow:hidden; display:inline; float:left}
#column1{width:49%; float:left}
#column2{width:49%; float:right}
#column1 .widget, #column2 .widget{margin-bottom:10px}
.adds img{border:1px solid #fcfcfc}
.adds img:hover{border:1px solid #e6e6e6}
.comment-link{margin-left:.6em}
/* Menu top */
#crosscol-wrapper{background: $crosscolbgColor url(http://3.bp.blogspot.com/-huVbHOUekeU/VlgNvZZj-0I/AAAAAAAACcQ/HuVKOOgqTeI/s000/top-trans.png) repeat-x; margin:0 auto; width:100%; height:47px; clear:both; position:fixed; top:0; left:0; z-index:20; overflow:hidden}
.exrighttop, .circle, a.home-link, a.blog-pager-newer-link, a.blog-pager-older-link, ul#m-social li a, .titulo-oculto a, .titulo-oculto a:hover{background:url(http://1.bp.blogspot.com/-Od2_YvC_-4M/VlgNwI2rQlI/AAAAAAAACcU/DBnvmrjC8nU/s000/sprite-circles.png) no-repeat 0 0}
.exrighttop{position:absolute; top:0; right:0; width:75px; height:47px; z-index:21; background-position:0 -274px}
/* Menú páginas Estáticas */
#PageList1 h2{display:none}
#menu{width:930px; height:47px; margin:0 auto; crear:both; overflow:hidden}
.menu ul{margin:0; list-style:none}
.menu li{float:left; margin:0; padding:0}
.menu li a{float:left; display:inline-block; height:47px; text-align:center; margin:0; padding:15px 9px 0; text-decoration:none; white-space:nowrap}
.menu li a{ font:$menuTextFont; color: $menuTextColor }
.menu li a:hover{color:#414141; cursor:pointer}
.menu li.selected{font-weight:bold}
/* Contenedor Buscador */
#search-conte{width:240px; height:36px; margin:10px 0 19px 0; overflow:hidden; background:#f1f1f1; -webkit-border-radius: 20px; -moz-border-radius:20px; border-radius:20px; border:1px solid #fefefe}
.search-c h2{display:none}
input.gsc-search-button{font-size:100%; color:#a8a8a8; border:0; padding:0; height:35px; width:60px; line-height:180%; background:none; text-shadow:1px 1px 1px #fff}
input.gsc-search-button:hover{cursor:pointer}
input.gsc-search-button:active{}
input.gsc-input{width:100%; background:none; border:none !important; height:35px; padding:0 4px; line-height:35px; background:none}
.gsc-branding-text, .gsc-branding-img-noclear{display:none}
/* Estilos Entradas Populares Sidebar*/
#PopularPosts1{padding:0; margin:0 0 15px 0}
#PopularPosts1 h2,{font-size:16px}
#PopularPosts1 ul{width:100%}
#PopularPosts1 ul li{list-style:none; border-bottom:1px dotted #ccc; padding:6px 0 2px 0}
#PopularPosts1 li img{width:55px; height:55px; padding:3px; background:#fff}
a.verpopu span{position:relative; top:4px; padding:4px}
a.verpopu span:hover{text-decoration:underline}
/* Posts o estilos de las entradas */
.post{background:transparent}
.post h2{margin:3px 0 6px 0; padding:4px 4px 0 0; line-height:15px}
.post h2 a, .post h2 a:visited, .post h2 strong{font:$posttitlefont; color:$titlecolor}
.post h2 a:hover{}
.post-body{margin:0 0 .75em; line-height:1.4em}
.post-body ul li{list-style-type:square}
.post-footer{margin:10px 8px 4px 0; text-transform:none; letter-spacing:.1em; font:$postfooterfont; padding:0 4px}
.post img, table.tr-caption-container{border:1px solid #ccc; padding:4px}
.post-body img:hover{-moz-box-shadow:2px 2px 8px #777; -webkit-box-shadow:2px 2px 8px #777; box-shadow:2px 2px 8px #777}
.tr-caption-container img{border:none; padding:0}
.post blockquote{margin:1em 15px; padding:8px 5px 8px 5px; border-left:4px solid $AcentosBorderColor; overflow:auto}
.post blockquote p{margin:.75em 0}
.post-body ul{margin-left:18px}
#blog-pager-newer-link{float:right; margin-right:80px}
#blog-pager-older-link{float:left; margin-left:80px}
#blog-pager{text-align:center; margin:10px; padding:0}
.feed-links{display:none}
/* Sidebar */
.sidebar{margin:0; padding:0 10px 0 0; color:$sidebartextcolor; word-wrap:break-word; overflow:hidden; line-height:1.2em}
.sidebar ul li{padding:6px 0 2px 2px; line-height:100%}
.sidebar h2{letter-spacing:0em; text-align:left; padding:0px 2px; margin:0 0 8px 0; border-left:8px solid $AcentosBorderColor; color:$sidebarcolor; font:$posttitlesidebarfont}
main .widget{font-weight:bold}
.sidebar .widget{margin:0 4px 2px}
#sec1{margin:0 0 10px 0}
/* Profile o perfil */
.profile-img{float:left; margin:0 5px 5px 0; padding:0px; border:4px solid $bordercolor}
.profile-data{margin:0; text-transform:none; letter-spacing:.1em;font:$postfooterfont; color:$sidebarcolor; font-weight:bold; line-height:1.6em}
.profile-datablock{margin:.5em 0 .5em}
.profile-textblock{margin:0.5em 0; line-height:1.6em}
.profile-link{font:; text-transform:none; letter-spacing:.1em}
/* Footer */
#footer-wrapper{width:100%; margin:30px auto 0; padding:0}
#footer{clear:both; margin:0 auto; padding:0; line-height:1.6em; text-transform:none}
#footer-top{width:100%; height:127px; overflow:hidden; border-top:1px solid #fff; border-bottom:1px solid #fff; position:relative}
#footer-popular{height:99px; margin:14px 0 0 0; background:#fff}
#after-footer{width:980px; margin:10px auto; padding:0 0 15px 0}
#columnaf1, #columnaf2, #columnaf3{background:none; position:relative; margin:10px auto 18px; padding:8px; text-align:left; overflow:hidden; border:none; word-wrap:break-word; font-size:110%}
.columna1 ul li, .columna2 ul li, .columna3 ul li{list-style-type:square; line-height:120%; padding:6px 0 2px 2px}
#columnaf1{float:left; top:10px; left:0; padding:0 10px 0 0; width:360px}
#columnaf2{float:left; top:10px; left:20px; padding:0 10px 0 0; width:220px}
#columnaf3{float:left; top:10px; left:40px; width:220px}
.columna1 .widget, .columna2 .widget, .columna3 .widget{margin:0 0 10px 0}
.columna1 h2, .columna2 h2, .columna3 h2{margin:0; text-align:left; letter-spacing:0.1em;color:$sidebarcolor; font:$posttitlesidebarfont}
#end2{position:relative; bottom:0; left:0; width:100%; height:30px; clear:both; margin:10px auto 0; font-size:90%; border-bottom:5px solid $BorderColorEnd}
h2.date-header{display:none}
/* Secciones con gadgets*/
ul.tabs{margin:0; padding:2px 0 3px 0; float:left; list-style:none; height:22px; line-height:20px; width:100%}
ul.tabs li{float:left; margin:0 3px 0; padding:0; overflow:hidden; position:relative; font:$posttitlesidebarfont}
ul.tabs li a{text-decoration:none; display:block; padding:0 7px 0 0; color:#3b3838}
#tab1 a, #tab2 a, #tab3 a{color:#1057aa}
ul.tabs li a:hover{color:#5f9ccb}
html ul.tabs li.active{border-bottom:4px solid #d2d2d2}
.tab_container{overflow:hidden; clear:both; float:left; width:100%}
.tab_content{padding:10px 19px}
.tab_container h2{font-size:110%}
/* Galeria de Entradas Populares Horizontal*/
#PopularPosts2{margin:0 0 0 110px}
#PopularPosts2 h2{position:absolute; top:12px; z-index:5; font-size:560%; color:#ececec}
#PopularPosts2 ul{width:100%; margin:0 0 0 330px}
#PopularPosts2 .item-title{display:none}
#PopularPosts2 ul li{float:left; list-style-type:none; padding:12px 6px 0}
#PopularPosts2 li img{background:#fff; padding:4px}
.circle{background-position:-76px -274px; width:78px; height:78px; position:absolute; top:2px; left:2px; z-index:10}
.circle span{color:#fff; background:#a1a1a2; 01; padding:5px; position:absolute; z-index:11; white-space:nowrap; top:-10px; display:none; line-height:17px}
.circle:hover span{display:block; top:-32px; /*overflow:visible; */cursor:pointer}
/* Botones footer*/
#marcadores-footer{width:110px; height:32px; position:absolute; bottom:0; right:90px; margin:0 auto; background: $BorderColorEnd ; z-index:14; -webkit-border-top-left-radius:5px; -webkit-border-top-right-radius: 5px; -moz-border-radius-topleft:5px; -moz-border-radius-topright:5px; border-top-left-radius: 5px; border-top-right-radius:5px}
ul#m-social{margin:2px 0 0 8px; padding:0; width:100px; height:23px}
ul#m-social li{list-style:none; margin:0; padding:0; float:left}
ul#m-social li a{margin:0 2px 0 0; padding:0; display:block; width:21px; height:23px; overflow:hidden; color:#fff}
#m-social li a.twitter{background-position:0 -352px}
#m-social li a.facebook{background-position:-21px -352px}
#m-social li a.rss{background-position:-42px -352px}
#m-social li a.plus{background-position:-63px -352px}
#m-social a span{color:#fff; background:#a1a1a2; padding:3px; position:absolute; z-index:11; white-space:nowrap; top:0px; display:none; line-height:17px}
#m-social a:hover span{display:block; top:-32px; margin:0 30px 0 0; cursor:pointer}
/* Enlaces de Navegación */
a.home-link, a.blog-pager-newer-link, a.blog-pager-older-link{display:inline-block; overflow:hidden; margin:20px 0 0 0; height:40px; text-indent:-9999px}
a.home-link{background-position:-187px -284px; /* -157px -329px; para Inicio*/width:116px}
a.blog-pager-newer-link{background-position:-298px -284px; width:36px}
a.blog-pager-older-link{background-position:-155px -284px; width:36px}
#Feed1 ul li, #Feed2 ul li{padding:6px 0 2px 0; list-style-type:square; border-bottom:1px dotted #ccc}
#Label1 ul li{margin-left:8px; list-style:none}
#Label1 ul li a:hover{margin-left:4px}
]]></b:skin>
<!-- Estilos de las Entradas en Página Principal -->
<b:if cond='data:blog.pageType != "item"'>
<b:if cond='data:blog.pageType != "static_page"'>
<style type='text/css'>
.titulo-oculto a{display:block; width:280px; height:274px}
.titulo-oculto a{position:relative; line-height:16px; text-align:center; font-weight:bold; text-decoration:none; z-index:10}
.titulo-oculto span{ width:0; height:0; top:0; left:0; position:absolute; overflow:hidden}
.titulo-oculto a:hover{background-position:-282px 0; color:#494244}
.titulo-oculto a:hover span{width:100%; height:auto; left:3px; top:120px; margin:0; padding:6px 0; overflow:hidden; cursor:pointer}
.post{float:left; background:#fff; height:274px; width:280px; margin:0 10px 12px 0; padding:0; overflow:hidden; position:relative; top:0; left:0; z-index:1}
.post h2{display:none}
.post h2 a, .post h2 a:visited, .post h2 strong{display:none}
.post-body img{height:270px; width:280px; border:none; padding:3px; margin:0 10px 15px 0; display:block; position:absolute; top:0; left:0; z-index:2}
#blog-pager{clear:both}
</style>
</b:if>
</b:if>
<!-- Estilos Entradas individuales -->
<b:if cond='data:blog.pageType == "item"'>
<style type='text/css'>
.post {
margin: 10px 5px 10px;
padding: 4px 8px 8px;
}
.post h2 a, .post h2 a:visited, .post h2 strong{
font-size: 140%}
.comments .comments-content .comment-content{text-align:left}
.comments .comments-content .inline-thread{background:#f1f1f1; border:1px solid #fff; outline:thin solid #ddd; margin-right:2px;}
.comments .comments-content .comment{
background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAACCAYAAACZgbYnAAAAEUlEQVQIW2O8f+fOf8b/QAAAJMQHld5uA2QAAAAASUVORK5CYII=) repeat-x bottom left; padding-bottom 10px}
.comments .comments-content .comment:last-child{padding-bottom:8px}
.comments .avatar-image-container, .comments .avatar-image-container img {}
.comments .avatar-image-container{border:3px solid #fff; outline:thin solid #ebeaea; margin-left:2px}
span .secondary-text{font-size:12px}
.comments .comment .comment-actions a, .comments .thread-toggle, .comments
.continue a{display:inline-block; border:1px solid #e2e2e2; border-radius:3px; text-shadow:0 1px 1px #fff; text-decoration:none !important; font:bold 11px Sans-Serif; padding:4px 5px; white-space:nowrap; vertical-align:middle; color:#666 !important; margin:0 4px 5px 0}
.comments .comment .comment-actions a:hover, .comments .thread-toggle:hover,
.comments .continue a:hover{border-color:#999; background:-webkit-linear-gradient(top,white,#E0E0E0); background:-moz-linear-gradient(top,white,#E0E0E0); background:-ms-linear-gradient(top,white,#E0E0E0); background:-o-linear-gradient(top,white,#E0E0E0); -webkit-box-shadow:0 1px 2px rgba(0,0,0,0.25),inset 0 0 3px #fff; -moz-box-shadow:0 1px 2px rgba(0,0,0,0.25),inset 0 0 3px #fff; box-shadow:0 1px 2px rgba(0,0,0,0.25),inset 0 0 3px #fff}
.comments .comment .comment-actions a:active, .comments .thread-
toggle:active, .comments .continue a:active{border:1px solid #AAA; border-bottom-color:#CCC; border-top-color:#999; -webkit-box-shadow:inset 0 1px 2px #aaa; -moz-box-shadow:inset 0 1px 2px #aaa; box-shadow:inset 0 1px 2px #aaa; background:-webkit-linear-gradient(top,#E6E6E6,gainsboro); background:-moz-linear-gradient(top,#E6E6E6,gainsboro); background:-ms-linear-gradient(top,#E6E6E6,gainsboro); background:-o-linear-gradient(top,#E6E6E6,gainsboro)}
</style>
</b:if>
<!-- Estilos Páginas Estáticas -->
<b:if cond='data:blog.pageType == "static_page"'>
<style type='text/css'>
.post {margin: 10px 5px 10px; padding: 4px 8px 8px;}
.post h2 { padding: 8px;font-size: 18px;}
</style>
</b:if>
<script src='http://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js' type='text/javascript'/>
<script type='text/javascript'>
//<![CDATA[
$(document).ready(function() {
$(".tab_content").hide();
$("ul.tabs li:first").addClass("active").show();
$(".tab_content:first").show();
$("ul.tabs li").click(function() {
$("ul.tabs li").removeClass("active");
$(this).addClass("active");
$(".tab_content").hide();
var activeTab = $(this).find("a").attr("href");
$(activeTab).fadeIn();
return false;
});
});
//]]>
</script>
<script type='text/javascript'>
//<![CDATA[
function redimthumb(url,title,image,size){
var imagen=image;
var devolver ='<a href="'+url+'"><img src="'+imagen.replace('/s72-c/','/s'+size+'-c/')+'" title="Leer post completo" alt="'+title+'"/></a>';
if(imagen!="") return devolver; else return "";
}
//]]>
</script>
</head>
<body>
<div class='exrighttop'/>
<div id='outer-wrapper'><div id='wrap2'>
<!-- skip links for text browsers -->
<span id='skiplinks' style='display:none;'>
<a href='#main'>skip to main </a> |
<a href='#sidebar'>skip to sidebar</a>
</span>
<div id='header-wrapper'>
<b:section class='header' id='header' maxwidgets='1' showaddelement='no'>
<b:widget id='Header1' locked='true' title='Circulos (Header)' type='Header'>
<b:includable id='main'>
<b:if cond='data:useImage'>
<b:if cond='data:imagePlacement == "BEHIND"'>
<!--
Show image as background to text. You can't really calculate the width
reliably in JS because margins are not taken into account by any of
clientWidth, offsetWidth or scrollWidth, so we don't force a minimum
width if the user is using shrink to fit.
This results in a margin-width's worth of pixels being cropped. If the
user is not using shrink to fit then we expand the header.
-->
<div expr:style='"background-image: url(\"" + data:sourceUrl + "\"); " + "background-position: " + data:backgroundPositionStyleStr + "; " + data:widthStyleStr + "min-height: " + data:height + "px;" + "_height: " + data:height + "px;" + "background-repeat: no-repeat; "' id='header-inner'>
<div class='titlewrapper' style='background: transparent'>
<h1 class='title' style='background: transparent; border-width: 0px'>
<b:include name='title'/>
</h1>
</div>
<b:include name='description'/>
</div>
<b:else/>
<!--Show the image only-->
<div id='header-inner'>
<a expr:href='data:blog.homepageUrl' style='display: block'>
<img expr:alt='data:title' expr:height='data:height' expr:id='data:widget.instanceId + "_headerimg"' expr:src='data:sourceUrl' expr:width='data:width' style='display: block'/>
</a>
<!--Show the description-->
<b:if cond='data:imagePlacement == "BEFORE_DESCRIPTION"'>
<b:include name='description'/>
</b:if>
</div>
</b:if>
<b:else/>
<!--No header image -->
<div id='header-inner'>
<div class='titlewrapper'>
<h1 class='title'>
<b:include name='title'/>
</h1>
</div>
<b:include name='description'/>
</div>
</b:if>
</b:includable>
<b:includable id='description'>
<div class='descriptionwrapper'>
<p class='description'><span><data:description/></span></p>
</div>
</b:includable>
<b:includable id='title'>
<b:if cond='data:blog.url == data:blog.homepageUrl'>
<data:title/>
<b:else/>
<a expr:href='data:blog.homepageUrl'><data:title/></a>
</b:if>
</b:includable>
</b:widget>
</b:section>
<b:section class='header-2' id='header-2' maxwidgets='1' showaddelement='yes'/>
</div>
</div>
<div id='content-wrapper'>
<div id='main-wrapper'>
<b:section class='main' id='main' showaddelement='yes'>
<b:widget id='Blog1' locked='true' title='Blog Posts' type='Blog'>
<b:includable id='main' var='top'>
<!-- posts -->
<div class='blog-posts hfeed'>
<b:include data='top' name='status-message'/>
<data:defaultAdStart/>
<b:loop values='data:posts' var='post'>
<b:if cond='data:post.isDateStart'>
<b:if cond='data:post.isFirstPost == "false"'>
</div></div>
</b:if>
</b:if>
<b:if cond='data:post.isDateStart'>
<div class="date-outer">
</b:if>
<!--b:if cond='data:post.dateHeader'>
<h2 class='date-header'><data:post.dateHeader/></h2>
</b:if-->
<b:if cond='data:post.isDateStart'>
<div class="date-posts">
</b:if>
<div class='post-outer'>
<b:include data='post' name='post'/>
<b:if cond='data:blog.pageType == "static_page"'>
<b:if cond='data:post.showThreadedComments'>
<b:include data='post' name='threaded_comments'/>
<b:else/>
<b:include data='post' name='comments'/>
</b:if>
</b:if>
<b:if cond='data:blog.pageType == "item"'>
<b:if cond='data:post.showThreadedComments'>
<b:include data='post' name='threaded_comments'/>
<b:else/>
<b:include data='post' name='comments'/>
</b:if>
</b:if>
</div>
<b:if cond='data:post.includeAd'>
<b:if cond='data:post.isFirstPost'>
<data:defaultAdEnd/>
<b:else/>
<data:adEnd/>
</b:if>
<div class='inline-ad'>
<data:adCode/>
</div>
<data:adStart/>
</b:if>
<b:if cond='data:post.trackLatency'>
<data:post.latencyJs/>
</b:if>
</b:loop>
<b:if cond='data:numPosts != 0'>
</div></div>
</b:if>
<data:adEnd/>
</div>
<!-- navigation -->
<b:include name='nextprev'/>
<!-- feed links -->
<b:include name='feedLinks'/>
<b:if cond='data:top.showStars'>
<script src='//www.google.com/jsapi' type='text/javascript'/>
<script type='text/javascript'>
google.load("annotations", "1", {"locale": "<data:top.languageCode/>"});
function initialize() {
google.annotations.setApplicationId(<data:top.blogspotReviews/>);
google.annotations.createAll();
google.annotations.fetch();
}
google.setOnLoadCallback(initialize);
</script>
</b:if>
</b:includable>
<b:includable id='backlinkDeleteIcon' var='backlink'>
<span expr:class='"item-control " + data:backlink.adminClass'>
<a expr:href='data:backlink.deleteUrl' expr:title='data:top.deleteBacklinkMsg'>
<img src='//www.blogger.com/img/icon_delete13.gif'/>
</a>
</span>
</b:includable>
<b:includable id='backlinks' var='post'>
<a name='links'/><h4><data:post.backlinksLabel/></h4>
<b:if cond='data:post.numBacklinks != 0'>
<dl class='comments-block' id='comments-block'>
<b:loop values='data:post.backlinks' var='backlink'>
<div class='collapsed-backlink backlink-control'>
<dt class='comment-title'>
<span class='backlink-toggle-zippy'> </span>
<a expr:href='data:backlink.url' rel='nofollow'><data:backlink.title/></a>
<b:include data='backlink' name='backlinkDeleteIcon'/>
</dt>
<dd class='comment-body collapseable'>
<data:backlink.snippet/>
</dd>
<dd class='comment-footer collapseable'>
<span class='comment-author'><data:post.authorLabel/> <data:backlink.author/></span>
<span class='comment-timestamp'><data:post.timestampLabel/> <data:backlink.timestamp/></span>
</dd>
</div>
</b:loop>
</dl>
</b:if>
<p class='comment-footer'>
<a class='comment-link' expr:href='data:post.createLinkUrl' expr:id='data:widget.instanceId + "_backlinks-create-link"' target='_blank'><data:post.createLinkLabel/></a>
</p>
</b:includable>
<b:includable id='comment-form' var='post'>
<div class='comment-form'>
<a name='comment-form'/>
<h4 id='comment-post-message'><data:postCommentMsg/></h4>
<p><data:blogCommentMessage/></p>
<data:blogTeamBlogMessage/>
<a expr:href='data:post.commentFormIframeSrc' id='comment-editor-src'/>
<iframe allowtransparency='true' class='blogger-iframe-colorize blogger-comment-from-post' frameborder='0' height='300' id='comment-editor' name='comment-editor' width='155%'/>
<data:post.friendConnectJs/>
<data:post.cmtfpIframe/>
<script type='text/javascript'>
BLOG_CMT_createIframe('<data:post.appRpcRelayPath/>', '<data:post.communityId/>');
</script>
</div>
<div style='clear:both'/>
</b:includable>
<b:includable id='commentDeleteIcon' var='comment'>
<span expr:class='"item-control " + data:comment.adminClass'>
<b:if cond='data:showCmtPopup'>
<div class='goog-toggle-button'>
<div class='goog-inline-block comment-action-icon'/>
</div>
<b:else/>
<a class='comment-delete' expr:href='data:comment.deleteUrl' expr:title='data:top.deleteCommentMsg'>
<img src='//www.blogger.com/img/icon_delete13.gif'/>
</a>
</b:if>
</span>
</b:includable>
<b:includable id='comment_count_picker' var='post'>
<b:if cond='data:post.commentSource == 1'>
<span class='cmt_count_iframe_holder' expr:data-count='data:post.numComments' expr:data-onclick='data:post.addCommentOnclick' expr:data-post-url='data:post.url' expr:data-url='data:post.canonicalUrl'>
</span>
<b:else/>
<a class='comment-link' expr:href='data:post.addCommentUrl' expr:onclick='data:post.addCommentOnclick'>
<data:post.commentLabelFull/>:
</a>
</b:if>
</b:includable>
<b:includable id='comment_picker' var='post'>
<b:if cond='data:post.commentSource == 1'>
<b:include data='post' name='iframe_comments'/>
<b:elseif cond='data:post.showThreadedComments'/>
<b:include data='post' name='threaded_comments'/>
<b:else/>
<b:include data='post' name='comments'/>
</b:if>
</b:includable>
<b:includable id='comments' var='post'>
<div class='comments' id='comments'>
<a name='comments'/>
<b:if cond='data:post.allowComments'>
<h4>
<b:if cond='data:post.numComments == 1'>
1 <data:commentLabel/>:
<b:else/>
<data:post.numComments/> <data:commentLabelPlural/>:
</b:if>
</h4>
<b:if cond='data:post.commentPagingRequired'>
<span class='paging-control-container'>
<a expr:class='data:post.oldLinkClass' expr:href='data:post.oldestLinkUrl'><data:post.oldestLinkText/></a>
 
<a expr:class='data:post.oldLinkClass' expr:href='data:post.olderLinkUrl'><data:post.olderLinkText/></a>
 
<data:post.commentRangeText/>
 
<a expr:class='data:post.newLinkClass' expr:href='data:post.newerLinkUrl'><data:post.newerLinkText/></a>
 
<a expr:class='data:post.newLinkClass' expr:href='data:post.newestLinkUrl'><data:post.newestLinkText/></a>
</span>
</b:if>
<dl expr:class='data:post.avatarIndentClass' id='comments-block'>
<b:loop values='data:post.comments' var='comment'>
<dt expr:class='"comment-author " + data:comment.authorClass' expr:id='data:comment.anchorName'>
<b:if cond='data:comment.favicon'>
<img expr:src='data:comment.favicon' height='16px' style='margin-bottom:-2px;' width='16px'/>
</b:if>
<a expr:name='data:comment.anchorName'/>
<b:if cond='data:blog.enabledCommentProfileImages'>
<data:comment.authorAvatarImage/>
</b:if>
<b:if cond='data:comment.authorUrl'>
<a expr:href='data:comment.authorUrl' rel='nofollow'><data:comment.author/></a>
<b:else/>
<data:comment.author/>
</b:if>
</dt>
<dd class='comment-body'>
<b:if cond='data:comment.isDeleted'>
<span class='deleted-comment'><data:comment.body/></span>
<b:else/>
<p><data:comment.body/></p>
</b:if>
</dd>
<dd class='comment-footer'>
<span class='comment-timestamp'>
<a expr:href='data:comment.url' title='comment permalink'>
<data:comment.timestamp/>
</a>
<b:include data='comment' name='commentDeleteIcon'/>
</span>
</dd>
</b:loop>
</dl>
<b:if cond='data:post.commentPagingRequired'>
<span class='paging-control-container'>
<a expr:class='data:post.oldLinkClass' expr:href='data:post.oldestLinkUrl'>
<data:post.oldestLinkText/>
</a>
<a expr:class='data:post.oldLinkClass' expr:href='data:post.olderLinkUrl'>
<data:post.olderLinkText/>
</a>
 
<data:post.commentRangeText/>
 
<a expr:class='data:post.newLinkClass' expr:href='data:post.newerLinkUrl'>
<data:post.newerLinkText/>
</a>
<a expr:class='data:post.newLinkClass' expr:href='data:post.newestLinkUrl'>
<data:post.newestLinkText/>
</a>
</span>
</b:if>
<p class='comment-footer'>
<b:if cond='data:post.embedCommentForm'>
<b:if cond='data:post.allowNewComments'>
<b:include data='post' name='comment-form'/>
<b:else/>
<data:post.noNewCommentsText/>
</b:if>
<b:else/>
<b:if cond='data:post.allowComments'>
<a expr:href='data:post.addCommentUrl' expr:onclick='data:post.addCommentOnclick'><data:postCommentMsg/></a>
</b:if>
</b:if>
</p>
</b:if>
<div id='backlinks-container'>
<div expr:id='data:widget.instanceId + "_backlinks-container"'>
<b:if cond='data:post.showBacklinks'>
<b:include data='post' name='backlinks'/>
</b:if>
</div>
</div>
</div>
</b:includable>
<b:includable id='feedLinks'>
<b:if cond='data:blog.pageType != "item"'> <!-- Blog feed links -->
<b:if cond='data:feedLinks'>
<div class='blog-feeds'>
<b:include data='feedLinks' name='feedLinksBody'/>
</div>
</b:if>
<b:else/> <!--Post feed links -->
<div class='post-feeds'>
<b:loop values='data:posts' var='post'>
<b:if cond='data:post.allowComments'>
<b:if cond='data:post.feedLinks'>
<b:include data='post.feedLinks' name='feedLinksBody'/>
</b:if>
</b:if>
</b:loop>
</div>
</b:if>
</b:includable>
<b:includable id='feedLinksBody' var='links'>
<div class='feed-links'>
<data:feedLinksMsg/>
<b:loop values='data:links' var='f'>
<a class='feed-link' expr:href='data:f.url' expr:type='data:f.mimeType' target='_blank'><data:f.name/> (<data:f.feedType/>)</a>
</b:loop>
</div>
</b:includable>
<b:includable id='iframe_comments' var='post'>
<b:if cond='data:post.allowIframeComments'>
<script expr:src='data:post.iframeCommentSrc' type='text/javascript'/>
<div class='cmt_iframe_holder' expr:data-href='data:post.canonicalUrl' expr:data-viewtype='data:post.viewType'/>
<b:if cond='data:post.embedCommentForm == "false"'>
<a expr:href='data:post.addCommentUrl' expr:onclick='data:post.addCommentOnclick'><data:postCommentMsg/></a>
</b:if>
</b:if>
</b:includable>
<b:includable id='mobile-index-post' var='post'>
<div class='mobile-date-outer date-outer'>
<b:if cond='data:post.dateHeader'>
<div class='date-header'>
<span><data:post.dateHeader/></span>
</div>
</b:if>
<div class='mobile-post-outer'>
<a expr:href='data:post.url'>
<h2 class='mobile-index-title entry-title'>
<data:post.title/>
</h2>
<div class='mobile-index-arrow'>&rsaquo;</div>
<div class='mobile-index-contents'>
<b:if cond='data:post.thumbnailUrl'>
<div class='mobile-index-thumbnail'>
<div class='Image'>
<img expr:src='data:post.thumbnailUrl'/>
</div>
</div>
</b:if>
<div class='post-body'>
<b:if cond='data:post.snippet'><data:post.snippet/></b:if>
</div>
</div>
<div style='clear: both;'/>
</a>
<div class='mobile-index-comment'>
<b:if cond='data:blog.pageType != "static_page"'>
<b:if cond='data:post.allowComments'>
<b:if cond='data:post.numComments != 0'>
<a class='comment-link' expr:href='data:post.addCommentUrl' expr:onclick='data:post.addCommentOnclick'><b:if cond='data:post.numComments == 1'>1 <data:top.commentLabel/><b:else/><data:post.numComments/> <data:top.commentLabelPlural/></b:if></a>
</b:if>
</b:if>
</b:if>
</div>
</div>
<b:if cond='data:post.trackLatency'>
<data:post.latencyJs/>
</b:if>
</div>
</b:includable>
<b:includable id='mobile-main' var='top'>
<!-- posts -->
<div class='blog-posts hfeed'>
<b:include data='top' name='status-message'/>
<b:if cond='data:blog.pageType == "index"'>
<b:loop values='data:posts' var='post'>
<b:include data='post' name='mobile-index-post'/>
</b:loop>
<b:else/>
<b:loop values='data:posts' var='post'>
<b:include data='post' name='mobile-post'/>
</b:loop>
</b:if>
</div>
<b:include name='mobile-nextprev'/>
</b:includable>
<b:includable id='mobile-nextprev'>
<div class='blog-pager' id='blog-pager'>
<b:if cond='data:newerPageUrl'>
<div class='mobile-link-button' id='blog-pager-newer-link'>
<a class='blog-pager-newer-link' expr:href='data:newerPageUrl' expr:id='data:widget.instanceId + "_blog-pager-newer-link"' expr:title='data:newerPageTitle'><data:newerPageTitle/></a>
</div>
</b:if>
<b:if cond='data:olderPageUrl'>
<div class='mobile-link-button' id='blog-pager-older-link'>
<a class='blog-pager-older-link' expr:href='data:olderPageUrl' expr:id='data:widget.instanceId + "_blog-pager-older-link"' expr:title='data:olderPageTitle'><data:olderPageTitle/></a>
</div>
</b:if>
<div class='mobile-link-button' id='blog-pager-home-link'>
<a class='home-link' expr:href='data:blog.homepageUrl'><data:homeMsg/></a>
</div>
<div class='mobile-desktop-link'>
<a class='home-link' expr:href='data:desktopLinkUrl'><data:desktopLinkMsg/></a>
</div>
</div>
<div class='clear'/>
</b:includable>
<b:includable id='mobile-post' var='post'>
<div class='date-outer'>
<!-- b:if cond='data:post.dateHeader'>
<h2 class='date-header'><span><data:post.dateHeader/></span></h2>
</b:if -->
<div class='date-posts'>
<div class='post-outer'>
<div class='post hentry uncustomized-post-template'>
<a expr:name='data:post.id'/>
<b:if cond='data:post.title'>
<h2 class='post-title entry-title'>
<b:if cond='data:post.link'>
<a expr:href='data:post.link'><data:post.title/></a>
<b:else/>
<b:if cond='data:post.url'>
<b:if cond='data:blog.url != data:post.url'>
<a expr:href='data:post.url'><data:post.title/></a>
<b:else/>
<data:post.title/>
</b:if>
<b:else/>
<data:post.title/>
</b:if>
</b:if>
</h2>
</b:if>
<div class='post-header'>
<div class='post-header-line-1'/>
<a href='https://www.blogger.com/comment.g?blogID=5903211260637577956'>Comentar antiguos</a>
</div>
<div class='post-body entry-content' expr:id='"post-body-" + data:post.id'>
<data:post.body/>
<div style='clear: both;'/> <!-- clear for photos floats -->
</div>
<div class='post-footer'>
<div class='post-footer-line post-footer-line-1'>
<span class='post-author vcard'>
<b:if cond='data:top.showAuthor'>
<b:if cond='data:post.authorProfileUrl'>
<span class='fn'>
<a expr:href='data:post.authorProfileUrl' rel='author' title='author profile'>
<data:post.author/>
</a>
</span>
<b:else/>
<span class='fn'><data:post.author/></span>
</b:if>
</b:if>
</span>
<span class='post-timestamp'>
<b:if cond='data:top.showTimestamp'>
<data:top.timestampLabel/>
<b:if cond='data:post.url'>
<a class='timestamp-link' expr:href='data:post.url' rel='bookmark' title='permanent link'><abbr class='published' expr:title='data:post.timestampISO8601'><data:post.timestamp/></abbr></a>
</b:if>
</b:if>
</span>
<span class='post-comment-link'>
<b:if cond='data:blog.pageType != "item"'>
<b:if cond='data:blog.pageType != "static_page"'>
<b:if cond='data:post.allowComments'>
<a class='comment-link' expr:href='data:post.addCommentUrl' expr:onclick='data:post.addCommentOnclick'><b:if cond='data:post.numComments == 1'>1 <data:top.commentLabel/><b:else/><data:post.numComments/> <data:top.commentLabelPlural/></b:if></a>
</b:if>
</b:if>
</b:if>
</span>
</div>
<div class='post-footer-line post-footer-line-2'>
<b:if cond='data:top.showMobileShare'>
<div class='mobile-link-button goog-inline-block' id='mobile-share-button'>
<a href='javascript:void(0);'><data:shareMsg/></a>
</div>
</b:if>
<b:if cond='data:top.showDummy'>
<div class='goog-inline-block dummy-container'><data:post.dummyTag/></div>
</b:if>
</div>
</div>
</div>
<b:if cond='data:blog.pageType == "static_page"'>
<b:if cond='data:post.showThreadedComments'>
<b:include data='post' name='threaded_comments'/>
<b:else/>
<b:include data='post' name='comments'/>
</b:if>
</b:if>
<b:if cond='data:blog.pageType == "item"'>
<b:if cond='data:post.showThreadedComments'>
<b:include data='post' name='threaded_comments'/>
<b:else/>
<b:include data='post' name='comments'/>
</b:if>
</b:if>
</div>
</div>
</div>
</b:includable>
<b:includable id='nextprev'>
<div class='blog-pager' id='blog-pager'>
<b:if cond='data:newerPageUrl'>
<span id='blog-pager-newer-link'>
<a class='blog-pager-newer-link' expr:href='data:newerPageUrl' expr:id='data:widget.instanceId + "_blog-pager-newer-link"' expr:title='data:newerPageTitle'><data:newerPageTitle/></a>
</span>
</b:if>
<b:if cond='data:olderPageUrl'>
<span id='blog-pager-older-link'>
<a class='blog-pager-older-link' expr:href='data:olderPageUrl' expr:id='data:widget.instanceId + "_blog-pager-older-link"' expr:title='data:olderPageTitle'><data:olderPageTitle/></a>
</span>
</b:if>
<a class='home-link' expr:href='data:blog.homepageUrl'><data:homeMsg/></a>
</div>
<div class='clear'/>
</b:includable>
<b:includable id='post' var='post'>
<div class='post hentry uncustomized-post-template'>
<a expr:name='data:post.id'/>
<b:if cond='data:post.title'>
<h2 class='post-title entry-title'>
<b:if cond='data:post.link'>
<a expr:href='data:post.link'><data:post.title/></a>
<b:else/>
<b:if cond='data:post.url'>
<a expr:href='data:post.url'><data:post.title/></a>
<b:else/>
<data:post.title/>
</b:if>
</b:if>
</h2>
</b:if>
<div class='post-header'>
<div class='post-header-line-1'>
</div>
</div>
<div class='post-body entry-content'>
<b:if cond='data:blog.pageType == "item"'>
<data:post.body/>
<b:else/>
<b:if cond='data:blog.pageType == "static_page"'>
<data:post.body/>
<b:else/>
<div class='titulo-oculto'><a expr:href='data:post.url'><span><p style='font-size:18px;color:#373737;position:relative;float:left;left:0; display:inline-block;'>❚</p>
<p style='font-size:18px;color:#373737; margin-right:5px;position:relative;float:right;right:0;display:inline-block;'>❚</p>
<data:post.title/></span></a></div>
<b:if cond='data:post.snippet'>
<b:if cond='data:post.thumbnailUrl'>
<script type='text/javascript'>document.write(redimthumb("<data:post.url/>","<data:post.title/>","<data:post.thumbnailUrl/>",200));</script>
</b:if>
<data:post.snippet/>
<b:else/>
<data:post.body/>
</b:if>
</b:if>
</b:if>
<div style='clear: both;'/> <!-- clear for photos floats --> </div>
<b:if cond='data:blog.pageType == "item"'>
<div id='autor'><span class='post-author vcard' style=''>
<b:if cond='data:top.showAuthor'>
<data:top.authorLabel/>
<span class='fn'><data:post.author/></span>
</b:if>
</span>
<span class='post-timestamp' style=''>
<b:if cond='data:top.showTimestamp'>
<data:top.timestampLabel/>
<b:if cond='data:post.url'>
<a class='timestamp-link' expr:href='data:post.url' rel='bookmark' title='permanent link'><abbr class='published' expr:title='data:post.timestampISO8601'><data:post.timestamp/></abbr></a>
</b:if>
</b:if>
</span>
</div>
<b:if cond='data:blog.pageType == "item"'><div class='autor-line-1'>
<span class='post-labels'>
<b:if cond='data:post.labels'>
<data:postLabelsLabel/>
<b:loop values='data:post.labels' var='label'>
<a expr:href='data:label.url' rel='tag'><span class='etiquetas'><data:label.name/></span></a><b:if cond='data:label.isLast != "true"'>,</b:if>
</b:loop>
</b:if>
</span>
</div>
</b:if>
</b:if>
<div class='post-footer'>
<div class='post-footer-line post-footer-line-1'>
<b:if cond='data:blog.pageType == "item"'>
<span class='post-comment-link'>
<b:if cond='data:blog.pageType != "item"'>
<b:if cond='data:post.allowComments'>
<a class='comment-link' expr:href='data:post.addCommentUrl' expr:onclick='data:post.addCommentOnclick'><b:if cond='data:post.numComments == 1'>1 <data:top.commentLabel/><b:else/><data:post.numComments/> <data:top.commentLabelPlural/></b:if></a>
</b:if>
</b:if>
</span>
</b:if>
<b:if cond='data:blog.pageType == "item"'>
<div class='post-share-buttons'>
<b:include data='post' name='shareButtons'/>
</div>
</b:if>
<span class='reaction-buttons'>
<b:if cond='data:top.showReactions'>
<table border='0' cellpadding='0' cellspacing='0' width='100%'><tr>
<td class='reactions-label-cell' nowrap='nowrap' valign='top' width='1%'>
<span class='reactions-label'>
<data:top.reactionsLabel/></span> </td>
<td><iframe allowtransparency='true' class='reactions-iframe' expr:src='data:post.reactionsUrl' frameborder='0' name='reactions' scrolling='no'/></td>
</tr></table>
</b:if>
</span>
<!-- backlinks -->
<span class='post-backlinks post-comment-link'>
<b:if cond='data:blog.pageType != "item"'>
<b:if cond='data:post.showBacklinks'>
<a class='comment-link' expr:href='data:post.url + "#links"'><data:top.backlinkLabel/></a>
</b:if>
</b:if>
</span>
<span class='post-icons'>
<!-- quickedit pencil -->
<b:include data='post' name='postQuickEdit'/>
</span>
</div>
<div class='post-footer-line post-footer-line-2'>
<span class='star-ratings'>
<b:if cond='data:top.showStars'>
<div expr:g:text-color='data:textColor' expr:g:url='data:post.absoluteUrl' g:height='42' g:type='RatingPanel' g:width='280'/>
</b:if>
</span>
</div>
<div class='post-footer-line post-footer-line-3'>