-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
907 lines (555 loc) · 29.8 KB
/
index.html
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
<!DOCTYPE HTML>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-GB" lang="en-GB">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<base href="https://cecg.biz/"/>
<title>Crypto Economics Consulting Group</title>
<link href="/favicon.ico" rel="shortcut icon" type="image/vnd.microsoft.icon"/>
<script src="/media/system/js/mootools-core.js" type="text/javascript"></script>
<script src="/media/system/js/core.js" type="text/javascript"></script>
<script src="/media/system/js/caption.js" type="text/javascript"></script>
<script src="/media/system/js/mootools-more.js" type="text/javascript"></script>
<script type="text/javascript">
window.addEvent('load', function() { new JCaption('img.caption'); });
</script>
<script language="javascript" type="text/javascript">var s5_hidecar = "true";</script>
<script language="javascript" type="text/javascript">var s5_hidebut = "true";</script>
<script language="javascript" type="text/javascript">var s5_hidetext = "true";</script>
<script language="javascript" type="text/javascript">var s5_dropdowntext = "Open Gallery";</script>
<script src="https://cecg.biz/templates/cleanout/html/mod_s5_image_and_content_fader/js/jd.gallery.js" type="text/javascript"></script>
<script src="https://cecg.biz/templates/cleanout/html/mod_s5_image_and_content_fader/js/jd.gallery.transitions.js" type="text/javascript"></script>
<meta name="viewport" content="initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=no"/>
<script type="text/javascript">
//<![CDATA[
window.addEvent('domready', function() {
var myMenu = new MenuMatic({
effect:"slide & fade",
duration:1000,
physics: Fx.Transitions.Pow.easeOut,
hideDelay:500,
orientation:"horizontal",
tweakInitial:{x:0, y:0},
direction:{ x: 'right', y: 'down' },
opacity:100 });
});
//]]>
</script>
<!-- Css and js addons for vertex features -->
<link rel="stylesheet" type="text/css" href="//fonts.googleapis.com/css?family=Oswald"/>
<style type="text/css">
/* MAX IMAGE WIDTH */
img {
height:auto !important;
max-width:100% !important;
-webkit-box-sizing: border-box !important; /* Safari/Chrome, other WebKit */
-moz-box-sizing: border-box !important; /* Firefox, other Gecko */
box-sizing: border-box !important; /* Opera/IE 8+ */
}
.full_width {
width:100% !important;
-webkit-box-sizing: border-box !important; /* Safari/Chrome, other WebKit */
-moz-box-sizing: border-box !important; /* Firefox, other Gecko */
box-sizing: border-box !important; /* Opera/IE 8+ */
}
#s5_responsive_modile_drop_down_wrap input {
width:96% !important;
}
#s5_responsive_mobile_drop_down_search input {
width:100% !important;
}
@media screen and (max-width: 750px){
body {
height:100% !important;
position:relative !important;
padding-bottom:48px !important;
}
}
#s5_responsive_mobile_bottom_bar, #s5_responsive_mobile_top_bar {
background:#0B0B0B;
background: -moz-linear-gradient(top, #272727 0%, #0B0B0B 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#272727), color-stop(100%,#0B0B0B)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #272727 0%,#0B0B0B 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #272727 0%,#0B0B0B 100%); /* Opera11.10+ */
background: -ms-linear-gradient(top, #272727 0%,#0B0B0B 100%); /* IE10+ */
background: linear-gradient(top, #272727 0%,#0B0B0B 100%); /* W3C */
font-family: Oswald !important;
}
.s5_responsive_mobile_drop_down_inner, .s5_responsive_mobile_drop_down_inner input, .s5_responsive_mobile_drop_down_inner button, .s5_responsive_mobile_drop_down_inner .button, #s5_responsive_mobile_drop_down_search .validate {
font-family: Oswald !important;
}
.s5_responsive_mobile_drop_down_inner button:hover, .s5_responsive_mobile_drop_down_inner .button:hover {
background:#0B0B0B !important;
}
#s5_responsive_mobile_drop_down_menu, #s5_responsive_mobile_drop_down_menu a, #s5_responsive_mobile_drop_down_login a {
font-family: Oswald !important;
color:#FFFFFF !important;
}
#s5_responsive_mobile_bar_active, #s5_responsive_mobile_drop_down_menu .current a, .s5_responsive_mobile_drop_down_inner .s5_mod_h3, .s5_responsive_mobile_drop_down_inner .s5_h3_first {
color:#BBBABA !important;
}
.s5_responsive_mobile_drop_down_inner button, .s5_responsive_mobile_drop_down_inner .button {
background:#BBBABA !important;
}
#s5_responsive_mobile_drop_down_menu .active ul li, #s5_responsive_mobile_drop_down_menu .current ul li a, #s5_responsive_switch_mobile a, #s5_responsive_switch_desktop a, #s5_responsive_modile_drop_down_wrap {
color:#FFFFFF !important;
}
#s5_responsive_mobile_toggle_click_menu span {
border-right:solid 1px #272727;
}
#s5_responsive_mobile_toggle_click_menu {
border-right:solid 1px #0B0B0B;
}
#s5_responsive_mobile_toggle_click_search span, #s5_responsive_mobile_toggle_click_register span, #s5_responsive_mobile_toggle_click_login span, #s5_responsive_mobile_scroll a {
border-left:solid 1px #272727;
}
#s5_responsive_mobile_toggle_click_search, #s5_responsive_mobile_toggle_click_register, #s5_responsive_mobile_toggle_click_login, #s5_responsive_mobile_scroll {
border-left:solid 1px #0B0B0B;
}
.s5_responsive_mobile_open, .s5_responsive_mobile_closed:hover, #s5_responsive_mobile_scroll:hover {
background:#272727;
}
#s5_responsive_mobile_drop_down_menu .s5_responsive_mobile_drop_down_inner, #s5_responsive_mobile_drop_down_register .s5_responsive_mobile_drop_down_inner, #s5_responsive_mobile_drop_down_login .s5_responsive_mobile_drop_down_inner, #s5_responsive_mobile_drop_down_search .s5_responsive_mobile_drop_down_inner {
background:#272727;
}
.s5_wrap {
max-width:1000px !important;
}
@media screen and (max-width: 970px){
#s5_right_top_wrap {
width:0px !important;
}
#s5_right_inset_wrap {
width:0px !important;
}
#s5_right_wrap {
width:0px !important;
}
#s5_right_bottom_wrap {
width:0px !important;
}
#s5_left_top_wrap {
width:0px !important;
}
#s5_left_inset_wrap {
width:0px !important;
}
#s5_left_wrap {
width:0px !important;
}
#s5_left_bottom_wrap {
width:0px !important;
}
#s5_right_column_wrap {
width:0px !important;
margin-left:-0px !important;
}
#s5_left_column_wrap {
width:0px !important;
}
#s5_center_column_wrap_inner {
margin-left:0px !important;
margin-right:0px !important;
}
}
@media screen and (min-width:580px) and (max-width: 750px){
#s5_bottom_row3 #s5_pos_bottom_row3_1.s5_float_left, #s5_bottom_row3 #s5_pos_bottom_row3_2.s5_float_left, #s5_bottom_row3 #s5_pos_bottom_row3_3.s5_float_left {
float:left !important;
width:33.3% !important;
}
#s5_bottom_row3 #s5_pos_bottom_row3_4.s5_float_left, #s5_bottom_row3 #s5_pos_bottom_row3_5.s5_float_left, #s5_bottom_row3 #s5_pos_bottom_row3_6.s5_float_left {
float:left !important;
width:50% !important;
}
}
</style><script type="text/javascript">//<![CDATA[
//]]></script>
<script type="text/javascript" src="https://cecg.biz/templates/cleanout/js/s5_flex_menu.js"></script>
<link rel="stylesheet" href="https://cecg.biz/templates/cleanout/css/s5_flex_menu.css" type="text/css"/>
<link rel="stylesheet" href="https://cecg.biz/templates/system/css/system.css" type="text/css"/>
<link rel="stylesheet" href="https://cecg.biz/templates/system/css/general.css" type="text/css"/>
<link href="https://cecg.biz/templates/cleanout/css/template_default.css" rel="stylesheet" type="text/css"/>
<link href="https://cecg.biz/templates/cleanout/css/template.css" rel="stylesheet" type="text/css"/>
<link href="https://cecg.biz/templates/cleanout/css/com_content.css" rel="stylesheet" type="text/css"/>
<link href="https://cecg.biz/templates/cleanout/css/editor.css" rel="stylesheet" type="text/css"/>
<link href="https://cecg.biz/templates/cleanout/css/thirdparty.css" rel="stylesheet" type="text/css"/>
<link rel="stylesheet" type="text/css" href="//fonts.googleapis.com/css?family=Yanone+Kaffeesatz:Light+200"/>
<link href="https://cecg.biz/templates/cleanout/css/multibox/multibox.css" rel="stylesheet" type="text/css"/>
<link href="https://cecg.biz/templates/cleanout/css/multibox/ajax.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="https://cecg.biz/templates/cleanout/js/multibox/overlay.js"></script>
<script type="text/javascript" src="https://cecg.biz/templates/cleanout/js/multibox/multibox.js"></script>
<link href="https://cecg.biz/templates/cleanout/favicon.ico" rel="shortcut icon" type="image/x-icon"/>
<link rel="stylesheet" type="text/css" href="https://cecg.biz/templates/cleanout/css/s5_responsive_bars.css"/>
<link href="https://cecg.biz/templates/cleanout/css/s5_responsive_hide_classes.css" rel="stylesheet" type="text/css"/>
<link rel="stylesheet" type="text/css" href="https://cecg.biz/templates/cleanout/css/s5_responsive.css"/>
<link rel="stylesheet" type="text/css" href="https://cecg.biz/templates/cleanout/css/custom.css"/>
<!-- Info Slide Script - Called in header so css validates -->
<link href="https://cecg.biz/templates/cleanout/css/s5_info_slide.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="https://cecg.biz/templates/cleanout/js/s5_info_slide.js"></script>
<!-- File compression. Needs to be called last on this file -->
<!-- The excluded files, listed below the compressed php files, are excluded because their calls vary per device or per browser. Included compression files are only ones that have no conditions and are included on all devices and browsers. Otherwise unwanted css will compile in the compressed files. -->
<style type="text/css">
body, .button, .jdGallery .slideInfoZone h2, .MultiBoxTitle {font-family: 'Yanone Kaffeesatz',Helvetica,Arial,Sans-Serif ;}
.module_round_box-centered h3{font-family: Arial;}
/* k2 stuff */
div.itemHeader h2.itemTitle, div.catItemHeader h3.catItemTitle, h3.userItemTitle a, #comments-form p, #comments-report-form p, #comments-form span, #comments-form .counter, #comments .comment-author, #comments .author-homepage,
#comments-form p, #comments-form #comments-form-buttons, #comments-form #comments-form-error, #comments-form #comments-form-captcha-holder {font-family: 'Yanone Kaffeesatz',Helvetica,Arial,Sans-Serif ;}
.s5_wrap, .jdGallery .slideInfoZone h2, .jdGallery .slideInfoZone p{width:975px;}
.module_round_box .s5_h3_first, .s5_highlight, .s5_am_innermenu li#current a span, #s5_accordion_menu h3.s5_am_open a.mainlevel, #s5_nav li.active a, #s5_nav li.mainMenuParentBtnFocused a, #s5_nav li:hover a, #current .s5_accordion_menu_left a.mainlevel, .module_round_box ul.menu li.current a, .module_round_box-background ul.menu li.current a, .dropdown-menu li > a:hover, .dropdown-menu li > a:focus,
.dropdown-submenu:hover > a, .dropdown-menu .active > a, .dropdown-menu
.active > a:hover, .nav-list > .active > a, .nav-list > .active > a:hover,
.nav-pills > .active > a, .nav-pills > .active > a:hover, .btn-group.open
.btn-primary.dropdown-toggle, .btn-primary, .btn-link{color:#ed1c23 !important;}
.module_round_box-highlight, .module_round_box-highlightstraight {background:#ed1c23;}
#s5_register{
background: -moz-linear-gradient(top, #ed1c23 0%, #b10000 100%) !important; /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ed1c23), color-stop(100%,#c50000)) !important; /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #ed1c23 0%,#c50000 100%) !important; /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #ed1c23 0%,#c50000 100%) !important; /* Opera 11.10+ */
background: -ms-linear-gradient(top, #ed1c23 0%,#c50000 100%) !important; /* IE10+ */
background: linear-gradient(top, #ed1c23 0%,#c50000 100%) !important; /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ed1c23', endColorstr='#c50000',GradientType=0 ) !important; /* IE6-9 */}
#s5_register:hover {background:#ed1c23 !important;}
.bigbutton {
background-color: #ed1c23;
background-image: url(https://cecg.biz/templates/cleanout/images/handarrow.png), -moz-linear-gradient(top, #ed1c23 7%, #b10000 100%); /* FF3.6+ */
background-image: url(https://cecg.biz/templates/cleanout/images/handarrow.png), -webkit-gradient(linear, left top, left bottom, color-stop(7%,#ed1c23), color-stop(100%,#b10000)); /* Chrome,Safari4+ */
background-image: url(https://cecg.biz/templates/cleanout/images/handarrow.png), -webkit-linear-gradient(top, #ed1c23 7%,#b10000 100%); /* Chrome10+,Safari5.1+ */
background-image: url(https://cecg.biz/templates/cleanout/images/handarrow.png),-o-linear-gradient(top, #ed1c23 7%,#b10000 100%); /* Opera 11.10+ */
background-image: url(https://cecg.biz/templates/cleanout/images/handarrow.png), -ms-linear-gradient(top, #ed1c23 7%,#b10000 100%); /* IE10+ */
background-image: url(https://cecg.biz/templates/cleanout/images/handarrow.png), linear-gradient(to bottom, #ed1c23 7%,#b10000 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ed1c23', endColorstr='#b10000',GradientType=0 ); /* IE6-9 */ }
.bigbutton:hover { background: #ed1c23 url(https://cecg.biz/templates/cleanout/images/handarrow.png) no-repeat right 11px !important;}
#s5_socialicons {position:fixed;}
#subMenusContainer, #s5_drop_down_container {position:fixed !important;}
#s5_header_area2, #s5_header_wrap, #s5_top_row1_area1 {position:fixed;}
</style>
</head>
<body id="s5_body">
<div id="s5_scrolltotop"></div>
<!-- Top Vertex Calls -->
<!-- Call top bar for mobile devices if layout is responsive -->
<!-- s5_responsive_mobile_top_bar_spacer must be called to keep a space at the top of the page since s5_responsive_mobile_top_bar_wrap is position absolute. -->
<div id="s5_responsive_mobile_top_bar_spacer"></div>
<!-- s5_responsive_mobile_top_bar_wrap must be called off the page and not with display:none or it will cause issues with the togglers. -->
<div id="s5_responsive_mobile_top_bar_wrap" style="margin-top:-50000px;position:absolute;z-index:20;top:0px">
<div id="s5_responsive_mobile_top_bar" class="s5_responsive_mobile_bar_light">
<div id="s5_responsive_mobile_toggle_click_menu" style="display:block;float:left">
<span></span>
</div>
<div id="s5_responsive_mobile_bar_active">
<span>
Home
</span>
</div>
<div id="s5_responsive_mobile_toggle_click_login" style="display:none;float:right">
<span></span>
</div>
<div id="s5_responsive_mobile_toggle_click_register" style="display:none;float:right">
<span></span>
</div>
<div id="s5_responsive_mobile_toggle_click_search" style="display:block;float:right">
<span></span>
</div>
<div style="clear:both;height:0px"></div>
</div>
<div id="s5_responsive_modile_drop_down_wrap" class="s5_responsive_modile_drop_down_wrap_loading">
<div id="s5_responsive_mobile_drop_down_menu">
<div class="s5_responsive_mobile_drop_down_inner" style="-webkit-box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.6);-moz-box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.6);box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.6);">
<ul class="menu">
<li class="item-102 current active"><a href="/" >Home</a></li><li class="item-268"><a href="/bitcoin" >Bitcoin?</a></li><li class="item-266"><a href="/why" >Why?</a></li><li class="item-267"><a href="/how" >How?</a></li><li class="item-270"><a href="/who" >Who?</a></li><li class="item-projects"><a href="/projects">Projects</a></li></ul>
</div>
</div>
<div id="s5_responsive_mobile_drop_down_search">
<div class="s5_responsive_mobile_drop_down_inner" style="-webkit-box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.6);-moz-box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.6);box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.6);">
<form method="post" action="https://cecg.biz/">
<input type="text" onfocus="if (this.value=='Search...') this.value='';" onblur="if (this.value=='') this.value='Search...';" value="Search..." id="s5_responsive_mobile_search" name="searchword"/>
<input type="hidden" value="search" name="task"/>
<input type="hidden" value="com_search" name="option"/>
<input type="hidden" value="1" name="Itemid"/>
</form>
</div>
</div>
<div id="s5_responsive_mobile_drop_down_login">
<div class="s5_responsive_mobile_drop_down_inner" id="s5_responsive_mobile_drop_down_login_inner" style="-webkit-box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.6);-moz-box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.6);box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.6);">
</div>
</div>
<div id="s5_responsive_mobile_drop_down_register">
<div class="s5_responsive_mobile_drop_down_inner" id="s5_responsive_mobile_drop_down_register_inner" style="-webkit-box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.6);-moz-box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.6);box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.6);">
</div>
</div>
</div>
</div>
<script language="JavaScript" type="text/javascript">
var s5_responsive_login_url = "";
var s5_responsive_register_url = "";
</script>
<script type="text/javascript" language="javascript" src="https://cecg.biz/templates/cleanout/js/s5_responsive_mobile_bar.js"></script>
<!-- Fixed Tabs -->
<!-- Drop Down -->
<!-- Body Padding Div Used For Responsive Spacing -->
<div id="s5_body_padding">
<!-- Header -->
<div id="s5_header_area1"></div>
<div id="s5_header_area2"></div>
<div id="s5_header_wrap">
<div id="s5_header_area_inner" class="s5_wrap">
<img alt="logo" src="https://cecg.biz/templates/cleanout/images/s5_logo.png" id="s5_logo" onclick="window.document.location.href='https://cecg.biz/'"/>
<div id="s5_menu_wrap">
<ul id='s5_nav' class='menu'><li class='active'><span class='s5_level1_span1'><span class='s5_level1_span2'><a href="https://cecg.biz/">Home</a></span></span></li><li ><span class='s5_level1_span1'><span class='s5_level1_span2'><a href="/bitcoin">Bitcoin?</a></span></span></li><li ><span class='s5_level1_span1'><span class='s5_level1_span2'><a href="/why">Why?</a></span></span></li><li ><span class='s5_level1_span1'><span class='s5_level1_span2'><a href="/how">How?</a></span></span></li><li ><span class='s5_level1_span1'><span class='s5_level1_span2'><a href="/who">Who?</a></span></span></li><li ><span class='s5_level1_span1'><span class='s5_level1_span2'><a href="/projects">Projects</a></span></span></li></ul> </div>
<div style="clear:both; height:0px"></div>
</div>
</div>
<div id="s5_header_area0"></div>
<!-- End Header -->
<!-- Top Row1 -->
<div id="s5_top_row1_area1">
<div id="s5_top_row1_area2">
<div id="s5_top_row1_area_inner">
<div id="s5_top_row1_wrap">
<div id="s5_top_row1">
<div id="s5_top_row1_inner">
<div id="s5_pos_top_row1_1" class="s5_float_left" style="width:100%">
<div class="module_round_box_outer">
<div class="module_round_box-lines">
<div class="s5_module_box_1">
<div class="s5_module_box_2">
<script type="text/javascript">//<![CDATA[
document.write('<link href="https://cecg.biz/modules/mod_s5_image_and_content_fader/css/s5imagecontent.css" rel="stylesheet" type="text/css" media="screen"/>');
//]]></script>
<script>
function s5_icfstartGallery() {
document.getElementById("s5_iacf_content_wrap").style.display = 'block';
window.myGallery = new gallery($('myGallery'), {
timed: true,
showArrows: true,
showCarousel: true,
showInfopane: true,
delay: 11000,
defaultTransition: "fade"
});
$('myGallery').addEvent('mouseover',function(){window.myGallery.clearTimer();});
$('myGallery').addEvent('mouseout',function(){window.myGallery.prepareTimer();});
}
function s5_icfstartGalleryload() {
s5_icfstartGallery();}
window.setTimeout(s5_icfstartGalleryload,400);
</script>
<div class="content" style="position:relative;z-index:0">
<div id="myGallery" style="width:100%;">
<div id="myGallery_height">
<img id="myGallery_height_img" alt="" src="/images/slide1.jpg"/>
</div>
<div id="s5_iacf_content_wrap" style="display:none">
<div class="imageElement" style="z-index:0;">
<h3>Decentralise, thrive and prosper!</h3>
<p style="text-shadow:1px 1px #000000;"><img src="/images/slide1.png" class="s5_imagefader_position"/>
</p>
<a href="javascript:;" title="open image" class="open"></a>
<img src="/images/slide1.jpg" alt="Decentralise, thrive and prosper!" class="full"/>
<img src="/images/slide1.jpg" alt="Decentralise, thrive and prosper!" class="thumbnail"/>
</div>
<div class="imageElement" style="z-index:0;">
<h3>Creating the future </h3>
<p style="text-shadow:1px 1px #000000;"><img src="/images/slide2.png" class="s5_imagefader_position"/>
<span class="s5_darkback">is the best way to change the present. </span>
</p>
<a href="javascript:;" title="open image" class="open"></a>
<img src="/images/slide2.jpg" alt="Creating the future " class="full"/>
<img src="/images/slide2.jpg" alt="Creating the future " class="thumbnail"/>
</div>
<div class="imageElement" style="z-index:0;">
<h3>Nothing has as much strength</h3>
<p style="text-shadow:1px 1px #000000;"><img src="/images/slide3.png" class="s5_imagefader_position"/>
<span class="s5_darkback"> as a new plant growing into the future <br/>out of the dried out mud of the past. </span>
</p>
<a href="javascript:;" title="open image" class="open"></a>
<img src="/images/slide3.jpg" alt="Nothing has as much strength" class="full"/>
<img src="/images/slide3.jpg" alt="Nothing has as much strength" class="thumbnail"/>
</div>
</div>
</div>
</div>
<script type="text/javascript">//<![CDATA[
document.write('<style>.jdGallery .slideElement {background-size:100% auto;}@media screen and (max-width: 0px) {#myGallery { height:400px !important; } .jdGallery .slideElement {background-size:auto auto !important;}}</style>');
//]]></script>
<div style="clear:both; height:0px"></div>
</div>
</div>
</div>
</div>
</div>
<div style="clear:both; height:0px"></div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- End Top Row1 -->
<!-- Top Row2 -->
<div id="s5_top_row2_area1">
<div id="s5_top_row2_area2">
<div id="s5_top_row2_area_inner" class="s5_wrap">
<div id="s5_top_row2_wrap">
<div id="s5_top_row2">
<div id="s5_top_row2_inner">
<div id="s5_pos_top_row2_1" class="s5_float_left" style="width:100%">
<div class="module_round_box_outer">
<div class="module_round_box-centered">
<div class="s5_module_box_1">
<div class="s5_module_box_2">
<div class="custom-centered" >
</div>
<div style="clear:both; height:0px"></div>
</div>
</div>
</div>
</div>
</div>
<div style="clear:both; height:0px"></div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- End Top Row2 -->
<!-- Top Row3 -->
<div id="s5_top_row3_area1">
<div id="s5_top_row3_area2">
<div id="s5_top_row3_area_inner" class="s5_wrap">
<div id="s5_top_row3_wrap">
<div id="s5_top_row3">
<div id="s5_top_row3_inner">
<div id="s5_pos_top_row3_1" class="s5_float_left" style="width:100%">
<div class="module_round_box_outer">
<div class="module_round_box-centered">
<div class="s5_module_box_1">
<div class="s5_module_box_2">
<div class="custom-centered" >
</div>
<div style="clear:both; height:0px"></div>
</div>
</div>
</div>
</div>
</div>
<div style="clear:both; height:0px"></div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- End Top Row3 -->
<!-- Center area -->
<!-- End Center area -->
<!-- Bottom Row1 -->
<!-- End Bottom Row1 -->
<!-- Bottom Row2 -->
<!-- End Bottom Row2 -->
<!-- Bottom Row3 -->
<!-- End Bottom Row3 -->
<!-- Footer Area -->
<div id="s5_footer_area1">
<div id="s5_footer_area2">
<div id="s5_footer_area_inner" class="s5_wrap">
<div id="s5_footer">
<span class="footerc">
</span>
</div>
<div id="s5_bottom_menu_wrap">
</div>
<div style="clear:both; height:0px"></div>
</div>
</div>
</div>
<!-- End Footer Area -->
<!-- Bottom Vertex Calls -->
<!-- Page scroll, tooltips, multibox, and ie6 warning -->
<!-- Start compression if enabled -->
<div id="s5_scroll_wrap" class="s5_wrap">
<script type="text/javascript">
function s5_scrollit() { new SmoothScroll({ duration: 800 }); }
function s5_scrollitload() {s5_scrollit();}
window.setTimeout(s5_scrollitload,400);
</script>
<div id="s5_scrolltopvar">
<a href="#s5_scrolltotop" class="s5_scrolltotop"></a>
</div> </div>
<script type="text/javascript">
window.addEvent('domready',function(){
$$('.s5mb').each(function(z,i){if(!$(z).getAttribute('rel'))$(z).setAttribute('rel','[me]');});
});
var s5mbox = {};
window.addEvent('domready', function() {
window.s5mbox = new multiBox({
mbClass: '.s5mb',//class you need to add links that you want to trigger multiBox with (remember and update CSS files)
container: $(document.body),//where to inject multiBox
path: 'https://cecg.biz/templates/cleanout/js/multibox/',//path to mp3player and flvplayer etc
useOverlay: true,//detect overlay setting
maxSize: {w:600, h:400},//max dimensions (width,height) - set to null to disable resizing
movieSize: {w:550, h:400},
addDownload: false,//do you want the files to be downloadable?
descClassName: 's5_multibox',//the class name of the description divs
pathToDownloadScript: 'https://cecg.biz/templates/cleanout/js/multibox/forceDownload.asp',//if above is true, specify path to download script (classicASP and ASP.NET versions included)
addRollover: false,//add rollover fade to each multibox link
addOverlayIcon: false,//adds overlay icons to images within multibox links
addChain: false,//cycle through all images fading them out then in
recalcTop: true,//subtract the height of controls panel from top position
addTips: true,//adds MooTools built in 'Tips' class to each element (see: http://mootools.net/docs/Plugins/Tips)
autoOpen: 0//to auto open a multiBox element on page load change to (1, 2, or 3 etc)
});
});
Eventx.onResizend(function(){
s5mbox.resize();
});
</script>
<script type="text/javascript">//<![CDATA[
var s5_lazyload = "all";
//]]></script>
<script type="text/javascript" language="javascript" src="https://cecg.biz/templates/cleanout/js/lazy_load.js"></script>
<script type="text/javascript">//<![CDATA[
var s5_resize_columns = "main";
var s5_resize_columns_delay = "500";
var s5_resize_columns_small_tablets = "default";
//]]></script>
<script type="text/javascript" language="javascript" src="https://cecg.biz/templates/cleanout/js/s5_columns_equalizer.js"></script>
<!-- Additional scripts to load just before closing body tag -->
<!-- Info Slide script - JS and CSS called in header -->
<script type='text/javascript'>
$$('.s5_is_slide').each(function(item,index){item.wrapInner(new Element('div',{'class':'s5_is_display'}));});
var options = {wrapperId:"s5_body"};
new Slidex(options);
</script>
<!-- File compression. Needs to be called last on this file -->
<!-- Responsive Bottom Mobile Bar -->
<!-- Call bottom bar for mobile devices if layout is responsive -->
<div id="s5_responsive_mobile_bottom_bar_outer" style="display:none">
<div id="s5_responsive_mobile_bottom_bar" class="s5_responsive_mobile_bar_light">
<!-- Call mobile links if links are enabled and cookie is currently set to mobile -->
<div id="s5_responsive_switch_mobile">
<a id="s5_responsive_switch" href="/?s5_responsive_switch_cecgbiz=0">Desktop Version</a>
</div>
<div id="s5_responsive_mobile_scroll">
<a href="#s5_scrolltotop" class="s5_scrolltotop"></a>
</div>
<div style="clear:both;height:0px"></div>
</div>
</div>
<!-- Call bottom bar for all devices if user has chosen to see desktop version -->
</div>
<!-- End Body Padding -->
<script>
var s5icfheightget;
function s5icfsetit() {
s5icfheightget = document.getElementById('s5_top_row1_area1').offsetHeight;
s5icfheightget = s5icfheightget - 120;
document.getElementById('s5_top_row2_area1').style.marginTop = s5icfheightget + "px";
s5icfsetit2();}
function s5icfsetit2() {
window.setTimeout(s5icfsetit,100);}
window.setTimeout(s5icfsetit,100);
</script>
</body>
</html>