-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathmystady.com--template.xml
1860 lines (1724 loc) · 69.7 KB
/
mystady.com--template.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 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html expr:dir='data:blog.languageDirection' lang='en' xml:lang='en' 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' xmlns:fb='http://www.facebook.com/2008/fbml' xmlns:og='http://ogp.me/ns#'>
<head profile='http://a9.com/-/spec/opensearch/1.1/'>
<b:switch var='data:blog.pageType'>
<b:case value='archive' />
<!--Archive-->
<title><data:blog.pageName/> | <data:blog.title/> Archives</title>
<meta property='og:title' expr:content='data:blog.pageName + " | Archives"'/>
<meta property='og:description' expr:content='"Everything we posted in " + data:blog.pageName + " can be found on this page. Well, except expired events which get routinely purged."'/>
<meta name='robots' content='noindex,follow'/>
<b:case value='error_page' />
<!--Error-->
<title>404 Not Found (Our Bad...) | <data:blog.title/></title>
<meta property='og:title' content='404 Page Not Found (Our Bad...)'/>
<meta property='og:description' content='This is the page you see when something goes wrong. Your typical 404 Error Page.'/>
<meta name='robots' content='noindex,follow'/>
<b:case value='item' />
<!--Item-->
<title><data:blog.pageName/> | <data:blog.title/></title>
<b:case value='static_page' />
<!--Static-->
<title><data:blog.pageName/> | <data:blog.title/></title>
<b:default />
<b:if cond='data:blog.url == data:blog.homepageUrl'>
<!--Home-->
<title><data:blog.title/></title>
<meta property='og:title' expr:content='data:blog.title'/>
<b:if cond='data:blog.metaDescription'>
<meta property='og:description' expr:content='data:blog.metaDescription'/>
</b:if>
<b:elseif cond='data:blog.searchQuery == "" and data:blog.searchLabel == ""'/>
<!--Index-->
<title><data:blog.title/></title>
<meta property='og:title' expr:content='data:blog.title'/>
<b:if cond='data:blog.metaDescription'>
<meta property='og:description' expr:content='data:blog.metaDescription'/>
</b:if>
<meta name='robots' content='noindex,follow'/>
</b:if>
<b:if cond='data:blog.searchQuery'>
<!--Search-->
<title><data:blog.searchQuery/> | <data:blog.title/> Search Results</title>
<meta property='og:title' expr:content='data:blog.searchQuery + " | Search Results"'/>
<meta property='og:description' expr:content='"Search results for query: " + data:blog.searchQuery'/>
<meta name='robots' content='noindex,follow'/>
</b:if>
<b:if cond='data:blog.searchLabel'>
<!--Label-->
<title><data:blog.searchLabel/> Articles | <data:blog.title/></title>
<meta property='og:title' expr:content='data:blog.searchLabel + " Articles"'/>
<meta property='og:description' expr:content='"A listing of all our posts tagged: " + data:blog.searchLabel'/>
</b:if>
</b:switch>
<b:if cond='data:blog.pageType in {"static_page","item"}'>
<!--Item,Static-->
<meta property='og:type' content='article'/>
<meta property='og:title' expr:content='data:blog.pageName'/>
<b:else/>
<!--Archive,Error,Home,Index,Search,Label-->
<meta property='og:type' content='website'/>
<meta name='twitter:creator' content='@alainchristian'/>
<meta name='twitter:card' content='summary'/>
<meta property='og:image' content='https://lh3.googleusercontent.com/-AEn4W4hdlqM/VgH3CLywrrI/AAAAAAAALq4/j2ZFV1Z_FJM/s128-Ic42/MY_STADY_720x720.png'/>
</b:if>
<meta property='og:url' expr:content='data:blog.canonicalUrl'/>
<meta property='fb:app_id' content='198892600172252'/>
<meta property='fb:admins' content='1411361561'/>
<meta property='og:site_name' expr:content='data:blog.title'/>
<meta property='article:publisher' content='https://www.facebook.com/mystady'/>
<meta name='twitter:site' content='@mystady'/>
<meta name='msvalidate.01' content='6A3E67DD8722BD0093FF89E63F7536D8'/>
<meta name='bitly-verification' content='60c070985bba'/>
<link href='http://dl.mystady.com/browser/opensearch-MY-STADY-mystady.com.xml' rel='search' title='MY STADY' type='application/opensearchdescription+xml'/>
<b:include data='blog' name='all-head-content'/>
<b:if cond='data:blog.pageType == "item"'>
<!--Item-->
<script src='http://www.google.com/jsapi' type='text/javascript'/>
<script type='text/javascript'>google.load("swfobject", "2.2");</script>
<script type='text/javascript'>swfobject.registerObject("video1", "9.0.124");</script>
</b:if>
<b:skin><![CDATA[/*
-----------------------------------------------
Blogger Template Style
Name: MY STADY (Minima was used as a starting point)
Designer: Alain-Christian
URL: mystady.com
Started: 07:41 1/3/2009
Last Update: 5.11.2011
----------------------------------------------- */
/*
<Variable name="keycolor" description="Main Color" type="color" default="#C3D9FF" value="#C3D9FF"/>
<Variable name="bodyBackColr" description="Body Background Color" type="color" default="#C3D9FF" value="#FFFFFF"/>
<Variable name="body.background" description="Body Background" type="background" color="$(bodyBackColr)" default="$(color) none repeat scroll top left" value="$(color) none repeat scroll top left"/>
<Variable name="startSide" description="Side where text starts in blog language" type="automatic" default="left" value="left"/>
<Variable name="endSide" description="Side where text ends in blog language" type="automatic" default="right" value="right"/>
<Variable name="DefaultLink__C" description="Default Link Color" type="color" default="#5588AA" value="#5588AA"/>
<Variable name="DefaultLinkHvC" description="Default Link Hover Color" type="color" default="#FF0000" value="#FF0000"/>
<Variable name="GlobalCodePreF" description="Global Code, Pre Font" type="font" default="normal normal 110% 'Courier New', Courier, FreeMono, monospace" value="normal normal 110% 'Courier New', Courier, FreeMono, monospace"/>
<Variable name="GlobalCode___C" description="Global Code Color" type="color" default="#007000" value="#007000"/>
<Variable name="GlobalCodPrBgC" description="Global Code, Pre Background Color" type="color" default="#EEEEEE" value="#EEEEEE"/>
<Variable name="WidgetBlog1BgC" description="Widget: #Blog1 Background Color" type="color" default="#FFFFFF" value="#FFFFFF"/>
<Variable name="ArticleBackgrC" description="Article Background Color" type="color" default="#FFFFFF" value="#FFFFFF"/>
<Variable name="ArticleHeadLnF" description="Article Headline Font" type="font" default="normal bold 155% Arial, sans-serif" value="normal bold 155% Arial, sans-serif"/>
<Variable name="ArticleHeadLnC" description="Article Headline Color" type="color" default="#32527A" value="#32527A"/>
<Variable name="ArticleHeadBgC" description="Article Headline Background Color" type="color" default="#FFFFFF" value="#FFFFFF"/>
<Variable name="ArticleBylineF" description="Article Byline, Comment Header Font" type="font" default="normal normal 70% Verdana, sans-serif" value="normal normal 70% Verdana, sans-serif"/>
<Variable name="ArticleBylnBdC" description="Article Byline Border Color" type="color" default="#0066CC" value="#0066CC"/>
<Variable name="SearchRBylineC" description="Search Result Byline Color" type="color" default="#AAAAAA" value="#AAAAAA"/>
<Variable name="ArticleContntF" description="Article, Comment Content Font" type="font" default="normal normal 84% Verdana, sans-serif" value="normal normal 84% Verdana, sans-serif"/>
<Variable name="ArticleContntC" description="Article Content Color" type="color" default="#333333" value="#333333"/>
<Variable name="ArticleH3__BgC" description="Article h3 Background Color" type="color" default="#E1ECFF" value="#E1ECFF"/>
<Variable name="ArticleJumpLkF" description="Article JumpLink Font" type="font" default="normal bold 193% Arial, sans-serif" value="normal bold 193% Arial, sans-serif"/>
<Variable name="ArticleJumpBgC" description="Article JumpLink Background Color" type="color" default="#E1ECFF" value="#E1ECFF"/>
<Variable name="RelatedPostBgC" description="Related Posts Background Color" type="color" default="#F8F8FE" value="#F8F8FE"/>
<Variable name="UserCommentAuF" description="User Comment Author Font" type="font" default="normal bold 111% Verdana, sans-serif" value="normal bold 111% Verdana, sans-serif"/>
<Variable name="UserCommentBgC" description="User Comment Background Color" type="color" default="#F5F5F5" value="#F5F5F5"/>
<Variable name="UserCommentBdC" description="User Comment Border Color" type="color" default="#DEDEDE" value="#DEDEDE"/>
<Variable name="CommentFormBgC" description="Comment Form Background Color" type="color" default="#F5F5F5" value="#F5F5F5"/>
<Variable name="CommentFormBdC" description="Comment Form Border Color" type="color" default="#DEDEDE" value="#DEDEDE"/>
<Variable name="PageNavigatorF" description="Page Navigator Font" type="font" default="normal bold 230% Arial, sans-serif" value="normal bold 230% Arial, sans-serif"/>
<Variable name="PageNavigatBdC" description="Page Navigator Border Color" type="Color" default="#0066CC" value="#0066CC"/>
<Variable name="SidebarWidgBgC" description="Sidebar Widget Background Color" type="color" default="#FFFFFF" value="#FFFFFF"/>
<Variable name="SidebarWidgBdC" description="Sidebar Widget Border Color" type="color" default="#DEDEDE" value="#DEDEDE"/>
<Variable name="SidebarWidgTiF" description="Sidebar Widget Title Font" type="font" default="normal bold 81% Verdana, sans-serif" value="normal bold 81% Verdana, sans-serif"/>
<Variable name="SidebarContntF" description="Sidebar Content Font" type="font" default="normal normal 80% Verdana, sans-serif" value="normal normal 80% Verdana, sans-serif"/>
<Variable name="SidebarContntC" description="Sidebar Content Color" type="color" default="#000000" value="#000000"/>
<Variable name="FooterBlogLisF" description="Footer Blog List Font" type="font" default="normal normal 70% Verdana, sans-serif" value="normal normal 70% Verdana, sans-serif"/>
<Variable name="FooterBlogLBdC" description="Footer Blog List Border Color" type="color" default="#666666" value="#666666"/>
*/
/* http://meyerweb.com/eric/tools/css/reset/ v2.0 | 20110126 License: none (public domain) */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p,
blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img,
ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center,
dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody,
tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure,
figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
border:0;
font:inherit;
font-size:100%;
margin:0;
padding:0;
vertical-align:baseline;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav,
section {
display:block;
}
html, body {
height: 100%;
}
body {
line-height:1;
}
ol, ul {
list-style:none;
}
blockquote {
quotes:none;
}
blockquote:before, blockquote:after {
content:'';
content:none;
}
a {
text-decoration:none;
}
table {
border-collapse:collapse;
border-spacing:0;
}
/*------------------------------------------------------------------- Globals */
a:hover {
color:$DefaultLinkHvC !important;
cursor:pointer;
}
a:link, a:visited {
color:$DefaultLink__C;
cursor:pointer;
}
abbr {
cursor:help;
}
b {
font-weight:bold;
}
body {
background:$(body.background);
}
code, pre {
background:$GlobalCodPrBgC;
color:$GlobalCode___C;
font:$GlobalCodePreF;
}
pre {
padding:.5em;
}
/*-------------------------------------------------------------------- Navbar */
#navbar-iframe {height:0px;visibility:hidden;display:none}
/*------------------------------------------------------------ Header Widgets */
#header {
background:$SidebarContntC;
}
#header #LinkList4 p, #header #LinkList4 h1 {
color:$SidebarWidgBgC;
font:$FooterBlogLisF;
padding:1em 0 1em 0;
text-align:center;
}
#header .PageList li {
display:inline;
padding:.5em;
}
#header .PageList ul {
font:$FooterBlogLisF;
padding:1em;
text-align:$endSide;
}
#header .Header img {
display:block;
margin:0 auto 0 auto;
}
#header a {
color:$SidebarWidgBgC;
}
/*----------------------------------------------- Article & Sidebar Structure */
#main-wrapper {
background:$WidgetBlog1BgC;
float:$startSide;
overflow:hidden; /* fix for long non-text content breaking IE sidebar float */
width:728px;
word-wrap:break-word; /* fix for long text breaking sidebar float in IE */
}
#outer-wrapper {
margin:0 auto 0 auto;
width:1000px;
}
#sidebar-wrapper {
float:$endSide;
overflow:hidden; /* fix for long non-text content breaking IE sidebar float */
width:262px;
word-wrap:break-word; /* fix for long text breaking sidebar float in IE */
}
/*----------------------------------------------------------------- Slideshow */
.slideshow-teaser {
margin:2.5em 0 -2.5em 0;
overflow:hidden;
}
.slideshow-teaser a img {
background:$SidebarContntC;
border:1px solid #ddd;
display:block;
margin:0 auto 0 auto;
padding:10px;
}
.slideshow-teaser h2 a {
color:$bodyBackColr;
display:block;
font:$ArticleHeadLnF;
margin:11px 0 0 196px;
padding:10px;
position:absolute;
text-align:justify;
text-shadow:3px 3px 4px $SidebarContntC;
width:396px;
}
.slideshow-teaser .content-type a {
background:$SidebarContntC;
color:$bodyBackColr;
display:block;
font:$ArticleHeadLnF;
margin:11px 0 0 36px;
padding:10px;
position:absolute;
text-align:center;
width:140px;
}
.slideshow-teaser .snippet {
background:#111;
bottom:71px;
color:#fff;
font:$ArticleContntF;
display:block;
height:40px;
margin:0 auto 0 auto;
padding:10px;
position:relative;
width:620px;
filter:alpha(opacity = 70);
-ms-filter:alpha(opacity = 70);
opacity:.7;
}
/*--------------------------------------------------------------------- Video */
.video-teaser {
margin:2.5em 0 -2.5em 0;
overflow:hidden;
}
.video-teaser a img {
background:$SidebarContntC;
border:1px solid #ddd;
display:block;
margin:0 auto 0 auto;
padding:10px;
width:512px;
}
.video-teaser h2 a {
color:$bodyBackColr;
display:block;
font:$ArticleHeadLnF;
margin:11px 0 0 196px;
padding:10px;
position:absolute;
text-align:justify;
text-shadow:3px 3px 4px $SidebarContntC;
width:396px;
}
.video-teaser .content-type a {
background:$SidebarContntC;
color:$bodyBackColr;
display:block;
font:$ArticleHeadLnF;
margin:11px 0 0 100px;
padding:10px;
position:absolute;
text-align:center;
width:76px;
}
.video-teaser .play {
background:url(http://v.mystady.com/play-arrow.png);
display:block;
height:50px;
margin:-25% auto 18% auto;
position:relative;
width:50px;
filter: alpha(opacity = 70);
-ms-filter: alpha(opacity = 70);
opacity: .7;
}
.video-teaser .snippet {
background:#111;
color:#FFFFFF;
font:$ArticleContntF;
height:40px;
margin:0 auto 0 auto;
padding:8px;
position:relative;
top:-67px;
width:496px;
filter:alpha(opacity = 70);
-ms-filter:alpha(opacity = 70);
opacity:.7;
}
/*-------------------------------------------------------------- Blog Widgets */
#Blog1 {
background:$WidgetBlog1BgC;
padding:0 .5em 0 .5em;
}
.search-result {
clear:both;
font:$ArticleContntF;
height:120px;
padding:1em 0em 0em 0em;
}
.search-result .byline {
color:$SearchRBylineC;
margin:.5em 0 .5em 0;
}
.search-result .thumbnail {
float:$startSide;
margin:0 1.5em 0 0;
overflow:hidden;
width:100px;
}
.search-result .thumbnail img {
height:100px;
}
.article {
background:$ArticleBackgrC;
margin:1em 0 0 0;
}
.article h1 a, .article h2 a, .error, .search-result h2 a {
background:$ArticleHeadBgC;
color:$ArticleHeadLnC;
font:$ArticleHeadLnF;
}
.article .byline {
border-bottom:1px dashed $ArticleBylnBdC;
font:$ArticleBylineF;
margin:0 0 1em 0;
padding:0 0 1em 0;
}
.article .byline a {
text-decoration:underline;
}
.article .byline-opposite, .comment-block .content .header .comlinks, .page-navigator .newer {
float:$endSide;
}
.article .content {
color:$ArticleContntC;
font:$ArticleContntF;
line-height:1.5em;
margin:0 0 1.2em 0;
text-align:justify;
}
.article .content p {
margin:0 0 2em 0;
}
.article .thumbnail {
display:block;
margin:1.5em auto 1em auto;
}
.article object,
.article div > a:first-child > img:first-child[width="400"],
.article div a[title~="Flickr"] img[width="500"],
.article div > a:first-child > img:first-child[width="512"],
.article div > a:first-child > img:first-child[alt~="screenshot:"] {
display:block;
margin:0 auto 0 auto;
}
.article div > img:first-child[width="288"][height="288"],
.article div > img:first-child[width="300"][height="300"] {
float:left;
margin:0 .5em 0 .5em;
}
.article .content h2, .article h3 {
background:$ArticleH3__BgC;
display:inline-block;
margin:0 0 0 -1em;
padding:.2em 1em .2em 2em;
}
.article ul {
list-style:square;
padding:0 0 0 3em;
}
.article .jumplink {
background:$ArticleJumpBgC;
font:$ArticleJumpLkF;
margin:0 0 0 -.4em;
padding:0 1em 0 1em;
text-align:$endSide;
}
.comments h4 {
padding:1em 0 0 0;
}
.comments .comment-block {
background:$UserCommentBgC;
border:1px solid $UserCommentBdC;
margin:.5em 0em .5em 0em;
padding:.5em;
}
.comment-block .vcard, .page-navigator .older {
float:$startSide;
}
.comment-block .content {
padding:0 0 0 3em;
}
.comment-block .content .header {
float:$startSide;
font:$ArticleBylineF;
width:100%;
}
.comment-block .content .header .author {
font:$UserCommentAuF;
}
.comment-block .content .body {
border-top:1px solid $UserCommentBdC;
font:$ArticleContntF;
padding:.5em 0 0 0;
text-align:justify;
}
.comments .e-comment-form {
background:$CommentFormBgC;
border:1px solid $CommentFormBdC;
margin:.5em 0 .5em 0;
padding:.5em;
}
.comments .e-comment-form h4 {
padding:0;
}
#comment-editor {
margin:0 0 -2.5em .5em;
}
.page-navigator {
border-top:1px dotted $PageNavigatBdC;
font:$PageNavigatorF;
padding:1.5em 0 2.5em 0;
}
/*----------------------------------------------------------- Sidebar Widgets */
#main .Label {
background:$SidebarWidgBgC;
color:$SidebarContntC;
font:$SidebarWidgTiF;
padding:.4em 0 0 0;
}
#main .Label h3 {
margin:0 0 -.5em 0;
padding:0 0 0 .5em;
}
#main .Label li {
display:inline-block;
}
#main .Label ul {
font:$ArticleContntF;
}
#sidebar .BlogArchive ul, #sidebar .Label ul, #sidebar .PopularPosts ul, #sidebar .Subscribe ul {
font:$SidebarContntF;
}
#sidebar .Feed li {
color:$ArticleContntC;
padding:3px 0 2px 0;
}
#sidebar .Feed ul, #sidebar .LinkList ul, #sidebar .Profile ul {
font:$SidebarContntF;
list-style:square;
padding:0 0 0 1.5em;
}
#sidebar .Feed .icons {
margin:0 0 0 80%;
}
#sidebar .Label li b {
border-bottom:1px solid $SidebarContntC;
}
#sidebar .Label li img {
vertical-align:top;
visibility:hidden;
}
#sidebar .PopularPosts li {
padding:.5em 0 0 0;
}
#sidebar .PopularPosts li:hover {
background:$RelatedPostBgC;
}
#sidebar .PopularPosts ul {
font:$ArticleBylineF;
}
#sidebar .PopularPosts .thumbnail {
border:1px solid $SidebarWidgBgC;
float:$startSide;
margin:0 .5em 0 0;
outline:1px solid $SidebarContntC;
overflow:hidden;
width:72px;
}
#sidebar .PopularPosts .thumbnail img {
height:72px;
}
#sidebar .Subscribe img, #sidebar .Subscribe input[type="image"] {
vertical-align:middle;
}
#sidebar .widget, #main .Label ul {
background:$SidebarWidgBgC;
border-bottom:1px dashed $SidebarWidgBdC;
padding:6px;
}
#sidebar h3 {
color:$SidebarContntC;
font:$SidebarWidgTiF;
}
#sidebar input[type="text"] {
border:2px solid $SidebarContntC;
width:70%;
}
/*-------------------------------------------------- Printer-Friendly Version */
@media print {
#header, #sidebar-wrapper, .e-comment-form, .jumplink, .page-navigator {
display:none;
}
#main-wrapper {
width:100%;
}
.article, .article .byline {
border:none;
}
}
]]></b:skin>
</head>
<body>
<b:section id='header' showaddelement='no'>
<b:widget id='PageList1' locked='true' title='Pages' type='PageList'>
<b:includable id='main'>
<ul>
<b:loop values='data:links' var='link'>
<b:if cond='data:link.isCurrentPage'>
<li class='selected'><a expr:href='data:link.href' expr:title='data:link.title'><data:link.title/></a></li>
<b:else/>
<li><a expr:href='data:link.href' expr:title='data:link.title'><data:link.title/></a></li>
</b:if>
</b:loop>
</ul>
</b:includable>
</b:widget>
<b:widget id='Header1' locked='true' title='MY STADY (Header)' type='Header'>
<b:includable id='main'>
<b:if cond='data:useImage'>
<b:if cond='data:imagePlacement == "REPLACE"'>
<!--Image Only-->
<a expr:href='data:blog.homepageUrl'>
<img expr:alt='data:title + " Logo"' expr:src='data:sourceUrl' expr:title='data:title'/>
</a>
</b:if>
</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:widget id='LinkList4' locked='true' title='blotter:off' type='LinkList'>
<b:includable id='main'>
<b:loop values='data:links' var='link'>
<b:if cond='data:title == "blotter:on"'>
<b:if cond='data:link.target == "http://./blotter"'>
<!--Blotter Msg-->
<p><data:link.name/></p>
</b:if>
<b:else/>
<b:if cond='data:link.target == "http://./" + data:blog.searchLabel'>
<!--Label Page Msg-->
<p><data:link.name/></p>
</b:if>
</b:if>
</b:loop>
<b:if cond='data:blog.searchQuery'>
<!--Search Page Msg-->
<h1>Search Results for: <data:blog.searchQuery/></h1>
</b:if>
</b:includable>
</b:widget>
<b:widget id='Navbar1' locked='true' title='Navbar' type='Navbar'>
<b:includable id='main'><script type="text/javascript">
function setAttributeOnload(object, attribute, val) {
if(window.addEventListener) {
window.addEventListener('load',
function(){ object[attribute] = val; }, false);
} else {
window.attachEvent('onload', function(){ object[attribute] = val; });
}
}
</script>
<div id="navbar-iframe-container"></div>
<script type="text/javascript" src="https://apis.google.com/js/plusone.js"></script>
<script type="text/javascript">
gapi.load("gapi.iframes:gapi.iframes.style.bubble", function() {
if (gapi.iframes && gapi.iframes.getContext) {
gapi.iframes.getContext().openChild({
url: 'https://www.blogger.com/navbar.g?targetBlogID\0754529442105479101205\46blogName\75MY+STADY\46publishMode\75PUBLISH_MODE_HOSTED\46navbarType\75LIGHT\46layoutType\75LAYOUTS\46searchRoot\75http://mystady.com/search\46blogLocale\75en\46v\0752\46homepageUrl\75http://mystady.com/\46vt\758656821758164948359',
where: document.getElementById("navbar-iframe-container"),
id: "navbar-iframe"
});
}
});
</script><script type="text/javascript">
(function() {
var script = document.createElement('script');
script.type = 'text/javascript';
script.src = '//pagead2.googlesyndication.com/pagead/js/google_top_exp.js';
var head = document.getElementsByTagName('head')[0];
if (head) {
head.appendChild(script);
}})();
</script>
</b:includable>
</b:widget>
</b:section>
<div id='outer-wrapper'>
<div id='content-wrapper'>
<div id='main-wrapper'>
<b:section class='main' id='main' showaddelement='yes'>
<b:widget id='Label2' locked='true' title='Additional Anime Topics' type='Label'>
<b:includable id='main'>
<b:if cond='data:blog.searchLabel == "Anime"'>
<b:if cond='data:title'><h3><data:title/></h3></b:if>
<ul>
<b:loop values='data:labels' var='label'>
<li>» <a expr:href='data:label.url' expr:title='"View all " + data:label.count + " posts filed under " + data:label.name' rel='category tag'><data:label.name/></a></li>
</b:loop>
</ul>
</b:if>
</b:includable>
</b:widget>
<b:widget id='Blog1' locked='true' title='Blog Posts' type='Blog'>
<b:includable id='main' var='top'>
<b:include data='top' name='status-search-fail'/>
<b:loop index='i' values='data:posts' var='post'>
<b:if cond='data:blog.pageType != "item"'>
<b:if cond='data:blog.searchQuery == ""'>
<b:if cond='data:post.labels'>
<b:loop values='data:post.labels' var='label'>
<b:if cond='data:label.isLast == "true"'>
<b:if cond='data:label.name != "~type-video"'>
<b:if cond='data:label.name != "slideshow"'>
<!--Archive List-->
<b:include data='post' name='search-results'/>
<b:else/>
<b:if cond='data:label.name == "slideshow"'>
<!--Slideshow Teaser-->
<b:include data='post' name='slideshow-teaser'/>
</b:if>
</b:if>
<b:else/>
<b:if cond='data:label.name == "~type-video"'>
<!--Video Teaser-->
<b:loop values='data:post.enclosures' var='enclosure'>
<b:if cond='data:enclosure.mimeType in {"image/jpeg","image/png"}'>
<b:include data='post' name='video-teaser'/>
</b:if>
</b:loop>
</b:if>
</b:if>
</b:if>
</b:loop>
<b:else/>
<!--Article without Labels -->
<b:include data='post' name='post'/>
</b:if>
<b:else/>
<!--Search Listing-->
<b:include data='post' name='search-results'/>
</b:if>
<b:else/>
<!--Item Pages-->
<b:include data='post' name='post'/>
<b:include data='post' name='comments'/>
</b:if>
</b:loop>
<b:include name='page_navigation'/>
</b:includable>
<b:includable id='status-search-fail'>
<b:if cond='data:navMessage == "No posts matching the query: <b>" + data:blog.searchQuery + "</b>. <a href=\"" + data:blog.canonicalHomepageUrl + "\">Show all posts</a>"'>
<div class='article'>
<div class='content'>
<blockquote>
<p>Winners are not afraid of losing. But losers are. Failure is part of the process of success. People who avoid failure also avoid success.</p><footer>Robert T. Kiyosaki writer of <cite title="Rich Dad, Poor Dad">Rich Dad, Poor Dad</cite></footer>
</blockquote>
<p></p><p>All is not lost. Blogger's built-in search engine tries, it really does. But it doesn't cache eveything. You might want to <a expr:href='"http://www.google.com/search?sitesearch=mystady.com&q=" + data:blog.searchQuery'>try your search again on the Google</a>. It has more of our pages indexed. If that doesn't work, gosh, <a href='http://mystady.com/p/contact-us.html'>send us an email or something</a>. We'll look into it!</p><p>Other Suggestions:</p>
<ul>
<li>Did ya spell "<data:blog.searchQuery/>" correctly?</li><li>Try different keywords.</li><li>Try more general keywords; broaden your focus.</li><li>Try fewer keywords.</li><li>Or you could just, you know, <a expr:href='"http://www.google.com/search?sitesearch=mystady.com&q=" + data:blog.searchQuery'>Google it</a> like I told you earlier!</li>
</ul>
</div>
</div>
</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'/>
<b:if cond='data:mobile'>
<h4 id='comment-post-message'>
<a expr:id='data:widget.instanceId + "_comment-editor-toggle-link"' href='javascript:void(0)'><data:postCommentMsg/></a></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='410' id='comment-editor' name='comment-editor' src='' style='display: none' width='100%'/>
<b:else/>
<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='410' id='comment-editor' name='comment-editor' src='' width='100%'/>
</b:if>
<data:post.friendConnectJs/>
<data:post.cmtfpIframe/>
<script type='text/javascript'>
BLOG_CMT_createIframe('<data:post.appRpcRelayPath/>');
</script>
</div>
</b:includable>
<b:includable id='commentDeleteIcon' var='comment'>
<!--Delete Comment-->
<span expr:class='"item-control " + data:comment.adminClass'>
<a expr:href='data:comment.deleteUrl' expr:title='data:top.deleteCommentMsg'>-</a>
</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'>
<b:if cond='data:post.allowComments'>
<div class='comments' id='comments'>
<b:if cond='data:post.numComments == 0'/>
<b:if cond='data:post.numComments == 1'><h4>First Post</h4></b:if>
<b:if cond='data:post.numComments > 1'><h4><data:post.numComments/> <data:commentLabelPlural/></h4><b:if cond='data:post.commentPagingRequired'><data:post.commentRangeText/></b:if></b:if>
<b:loop values='data:post.comments' var='comment'>
<div class='comment-block'>
<a expr:name='data:comment.anchorName'/>
<!--Comment Avatar-->
<b:if cond='data:comment.authorAvatarImage'>
<data:comment.authorAvatarImage/>
</b:if>
<div class='content'>
<!--Comment Header-->
<div class='header'>
<b:if cond='data:comment.authorUrl == "http://www.blogger.com/profile/17782443978544199362"'>
<span class='author'><a href='http://mystady.com/p/about.html#Alain-Christian'><data:comment.author/></a></span>
<b:else/>
<b:if cond='data:comment.authorUrl == "http://www.blogger.com/profile/04384568305404214594"'>
<span class='author'><a href='http://mystady.com/p/about.html#Fallenduality'><data:comment.author/></a></span>
<b:else/>
<b:if cond='data:comment.authorUrl'>
<span class='author'><a expr:href='data:comment.authorUrl' rel='nofollow'><data:comment.author/></a></span>
<b:else/>
<span class='author'><data:comment.author/></span>
</b:if>
</b:if>
</b:if>
<span class='comlinks'><b:include data='comment' name='commentDeleteIcon'/><a expr:href='data:comment.url' title='comment permalink'>#</a></span>
<div class='clear'/>
<data:comment.timestamp/>
</div>
<!--Comment Body-->
<div class='clear'/>
<div class='body'><data:comment.body/></div>
</div>
</div>
</b:loop>
<b:if cond='data:post.embedCommentForm'>
<!--Comment Form-->
<div class='e-comment-form' id='comment-form'>
<h4>Add a Comment</h4>
<iframe allowtransparency='true' expr:src='data:post.commentFormIframeSrc + "#%7B%22color%22%3A%22rgb%280%2C%200%2C%200%29%22%2C%22backgroundColor%22%3A%22rgb%28245%2C%20245%2C%20245%29%22%2C%22unvisitedLinkColor%22%3A%22rgb%2885%2C%20136%2C%20170%29%22%2C%22fontFamily%22%3A%22Verdana%2Csans-serif%22%7D"' frameborder='0' height='275' id='comment-editor' scrolling='no' width='100%'/>
</div>
<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>
</div>
</b:if>
</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:include cond='data:post.allowComments and data:post.feedLinks' data='post.feedLinks' name='feedLinksBody'/>
</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'>
<h3 class='mobile-index-title entry-title' itemprop='name'>
<data:post.title/>
</h3>
<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:include cond='data:blog.pageType != "static_page" and data:post.allowComments and data:post.numComments != 0' data='post' name='comment_count_picker'/>
</div>
</div>
</div>
</b:includable>