This repository has been archived by the owner on Jan 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
board.html
516 lines (384 loc) · 18.1 KB
/
board.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta charset="utf-8">
<title>Zone Health</title>
<!-- <meta name="viewport" content="width=device-width, initial-scale=1.0"> -->
<meta name="description" content="">
<meta name="author" content="">
<!-- Le styles -->
<link id="colors" href="assets/css/bootstrap.css" rel="stylesheet" >
<link href="assets/css/custom.css" rel="stylesheet" >
<link href="assets/css/non-responsive.css" rel="stylesheet">
<!-- <link href="assets/css/bootstrap-responsive.css" rel="stylesheet"> -->
<link href="assets/css/jquery.mCustomScrollbar.css" rel="stylesheet">
<!-- SOME THEMES FIX -->
<!-- GOOGLE FONT-->
<link href='http://fonts.googleapis.com/css?family=Roboto:400,300,700italic,700,500&subset=latin,latin-ext' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Source+Sans+Pro' rel='stylesheet' type='text/css'>
<!-- /GOOGLE FONT-->
<style type="text/css">
body {
padding-top: 0px;
padding-bottom: 40px;
padding-top: 0px;
padding-bottom: 0px;
/* font-family: 'Roboto', sans-serif; */
font-family: 'Source Sans Pro', sans-serif;
}
h1,h2,h3,h4,h5,h6{
font-weight:200;
}
.navbar-inverse .navbar-inner{
-webkit-border-radius: 0px;
-moz-border-radius: 0px;
border-radius: 0px;
background:#282828;
border:none;
}
.navbar-inner{
-webkit-border-radius: 0px;
-moz-border-radius: 0px;
border-radius: 0px;
}
.brand{
margin-left:20px;
font-weight:700;
text-decoration:none;
}
.thumbnail{
border:none;
padding:0px;
-webkit-border-radius: 0px;
-moz-border-radius: 0px;
border-radius: 0px;
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
}
/*
.well {
min-height: 20px;
padding: 19px;
margin-bottom: 20px;
*/
/*border: 1px solid #e3e3e3;*/
/*
-webkit-border-radius: 0px;
-moz-border-radius: 0px;
border-radius: 0px;
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
}
*/
.nav-tabs > li > a {
-webkit-border-radius: 0px;
-moz-border-radius: 0px;
border-radius: 0px;
}
p{
text-align:left;
margin-right:10px;
}
.row-fluid.articles-grid .span6:nth-child(2n+1){
margin-left:0px;
} /* fixed bs margin when row-fluid grid*/
.fixed-top{
position:fixed;
top:0px;
bottom:0px;
display:inline-block;
max-width:370px;
background:e0e0e0;
barder:1px solid #dfdfdf;
z-index:1030;
}
.tab-content .tab-pane{
max-height:600px;
position:relative;
overflow:auto;
}
footer{
padding-top:40px;
margin-top:40px;
border-top:1px solid #dedede;
}
.related-projects{
padding-top:40px;
margin-top:40px;
}
/*************** @media ******************/
/*
@media (max-width: 940px){
.brand {
display:block;
text-align:center;
font-size:26px;
}
}
@media (max-width: 1200px) and (min-width: 940px){
.fixed-top{
max-width:300px;
}
}
@media (max-width: 940px) and (min-width: 768px){
.fixed-top{
max-width:225px;
}
}
*/
</style>
<link href="assets/css/font-awesome.min.css" rel="stylesheet">
<!-- USE PREFIX fa- e.g (<i class="fa-icon-home"></i> -->
<!--[if lt IE 7]>
<link href="assets/css/font-awesome-ie7.min.css" rel="stylesheet">
<![endif]-->
<!-- Fav and touch icons -->
<!-- Le HTML5 shim, for IE6-8 support of HTML5 elements -->
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script>
<![endif]-->
<!-- Le fav and touch icons -->
<link rel="shortcut icon" href="assets/ico/favicon.ico">
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="assets/ico/apple-touch-icon-144-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="assets/ico/apple-touch-icon-114-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="assets/ico/apple-touch-icon-72-precomposed.png">
<link rel="apple-touch-icon-precomposed" href="assets/ico/apple-touch-icon-57-precomposed.png">
<body>
<!-- SKYBAR -->
<div class="container skybar">
<div class="alert alert-success" style="text-transform:uppercase; display:inline-block; box-sizing:border-box; -moz-box-sizing:border-box;width:100%; background-color: #545454; border-color: #545454;">
<div class="skybarcenter">
<div class="span4 helpphone">Need Help? Call 1-855-456-ZONE (9663)</div>
<!-- <div class="span3 offset4"><img src="assets/images/spacer.gif" style="margin-left: 62px;" />My Zone My Cart</div> -->
</div>
</div>
</div>
<!-- END SKYBAR -->
<!-- SEARCH BAR -->
<!-- <div class="span3 offset9"> -->
<!-- <div class="search"> -->
<form action="/search_results" method="get" class="form-horizontal" id="custom-search-form">
<div class="input-append">
<input type="search" tabindex="1" placeholder="Search" autocomplete="off" name="q" class="search-query">
<span class="add-on" onclick="document.getElementById('headerSearch').submit();" style="cursor:pointer;">
<i class="icon-search icon-large"></i>
</span>
</div>
</form>
<!-- </div> --><!--end container for search -->
<!-- </div> -->
<!-- PAGE-HEADER-->
<div class="page-header" id="zone-page-header">
<div class="container">
<!-- <div class="row"> -->
<div class="span3" style="margin-left:0px;">
<h1><a class="brand" href="index.html"><img src="assets/images/logo.png" width="200"></a></h1>
</div>
<div class="span9">
<div class="navbar">
<div class="navbar-inner">
<div class="container navbarposition">
<button type="button" class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<div class="nav-collapse collapse">
<ul class="nav">
<li class="dropdown active">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">About Us <b class="caret"></b></a>
<ul class="dropdown-menu">
<li><a href="drsears.html">Dr. Sears</a></li>
<li class="active"><a href="staff.html">Corporate Staff</a></li>
<li><a href="#">Science Advisory Board</a></li>
<li><a href="#">Inflammation Research Foundation</a></li>
</ul>
</li>
<!-- <li class="active"><a href="#">About Us</a></li> -->
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Request a Coach <b class="caret"></b></a>
<ul class="dropdown-menu">
<li><a href="whycoach.html">Why a ZoneHealth Coach</a></li>
<li><a href="requestcoach.html">Request a Coach</a></li>
</ul>
</li>
<!-- <li><a href="requestcoach.html">Request a Coach</a></li> -->
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Become a Coach <b class="caret"></b></a>
<ul class="dropdown-menu">
<li><a href="becomeacoach.html">Become a Coach</a></li>
<li><a href="takethetest.html">Order the Test</a></li>
</ul>
</li>
<!-- <li><a href="becomeacoach.html">Become a Coach</a></li> -->
<li class="dropdown">
<a href="opportunity.html" class="dropdown-toggle" data-toggle="dropdown">Opportunity <b class="caret"></b></a>
<ul class="dropdown-menu">
<li><a href="opportunity.html">Opportunity</a></li>
<li><a href="FAQ.html">FAQ</a></li>
</ul>
</li>
<li><a href="#">Testimonials</a></li>
<li><a href="#">Resources</a></li>
</ul>
</div><!--/.nav-collapse -->
</div><!-- container -->
</div><!-- navbar-inner -->
</div><!-- navbar -->
</div><!-- span9 -->
<!-- </div> --><!-- row -->
</div><!-- container -->
</div><!-- page-header -->
<!-- PAGE-HEADER-->
<div><img src="assets/images/spacer.gif" style="margin-bottom:25px;" /></div>
<div class="container">
<div class="row">
<!-- BRIAN --> <div id="aboutussidebar" class="span2 aboutussidebar">
<div class="well sidebar-nav">
<ul class="nav nav-list">
<li><a href="drsears.html">Dr. Sears</a></li>
<li><a href="corporate_staff.html">Corporate Staff</a></li>
<li class="active"><a href="#">› Science Advisory Board</a></li>
<li><a href="inflammation_research.html">Inflammation Research Foundation</a></li>
</ul>
</div>
</div><!-- aboutussidebar end -->
<!-- BRIAN --> <div class="span8">
<h3 class="clear-left testtitle"><strong>Scientific Advisory Board</strong></h3>
<p>Although Dr. Sears heads our research, we make extensive use of our Scientific Advisory Board to provide additional insight on the latest breakthroughs in biotechnology from a diverse number of fields.</p>
<p><span style="font-weight: bold;">Carol Johnston, PhD</span></p>
<p><img alt="Carol Johnston, PhD" height="87" src="/assets/images/CarolJohnstonPhD.jpg" style="float: left; margin-left: 10px; margin-right: 10px;" title="Carol Johnston, PhD" width="57"></p>
<p>Carol Johnston, PhD, is professor of Nutrition at Arizona State University and director of the Nutrition Program. She received the Grace Goldsmith Award for significant achievements in the field of nutrition by a scientist under the age of 50 years sponsored by the American College of Nutrition in 2004 and the Mark Bieber Professional Award sponsored by the American College of Nutrition for academic accomplishments in 2008. Her research areas include vitamin C and dietary interventions in obesity and diabetes. She has more than 75 scientific publications. </p>
<p><span style="font-weight: bold;">Camillo Ricordi, MD</span></p>
<p><img alt="Camillo Ricordi, MD" height="87" src="/assets/images/CamilloRicordiMD.jpg" style="margin-left: 10px; margin-right: 10px; float: left;" title="Camillo Ricordi, MD" width="57"></p>
<p>Camillo Ricordi, MD, is one of the world’s leaders in cell transplantation for the treatment of diabetes. He is the Stacy Joy Goodman Professor of Surgery, distinguished professor of Medicine, professor of Biomedical Engineering, and Microbiology and Immunology, and serves as scientific director and chief academic officer of the University of Miami Diabetes Research Institute. He has authored more than 600 scientific publications and has been awarded 11 patents.</p>
<p><span style="font-weight: bold;">Charles Serhan, Ph.D.</span></p>
<p><img alt="Charles Serhan, Ph.D." height="87" src="/assets/images/Charles-Serhan.png" style="margin-left: 10px; margin-right: 10px; float: left;" title="Charles Serhan, Ph.D." width="57"></p>
<p>Charles Serhan is one of the world’s leaders in eicosanoid biochemistry and discovered the role of resolvins in the resolution of inflammation. He is the Simon Gelman Professor of Anesthesia at the Harvard Medical School and Director of the Center of Experimental Therapeutics and Reperfusion Injury at the Brigham and Women’s Hospital. He has authored more than 400 scientific publications, written five books, and has been awarded more than 200 patents.</p>
</div><!-- END MIDDLE TEXT-->
<div class="span3">
<img src="assets/images/whycoachsidebar.png" style="border:1px solid #CECECE;" />
</div>
</div>
</div>
<!-- FOOTER -->
<div class="container">
<hr>
<footer class="footer" style=" font-size:12px;">
<div class="row-fluid footer-text">
<div class="span1"> </div>
<div class="span2">
<ul>
<li><strong style=" color: #777777; text-decoration: none;">MEDIA</strong></li>
<li><a href="/press_room">Press Room</a></li>
</ul>
</div>
<div class="span2">
<ul>
<li><strong><a href="/customer_service" style=" color: #777777; text-decoration: none;">NEED HELP?</a></strong></li>
<li><a href="/customer_service">Customer Service</a></li>
<li><a href="/shipping_information">Shipping Information</a></li>
<li><a href="/privacy_policy">Privacy Policy</a></li>
<li><a href="/terms_and_conditions">Terms & Conditions</a></li>
<li><a href="/return_policy">Return Policy</a></li>
</ul>
</div>
<div class="span2">
<ul>
<li><strong><a href="/shipping_intl" style=" color: #777777; text-decoration: none;">INTERNATIONAL CUSTOMERS</a></strong></li>
<li><strong>978-539-0100</strong></li>
<li><a href="mailto:[email protected]">Send Email</a></li>
</ul>
</div>
<div class="span2">
<ul>
<li><strong style=" color: #777777; text-decoration: none;">CONTACT US</strong></li>
<li><strong>855-463-ZONE (9663)</strong></li>
<li><a href="mailto:[email protected]">Send Email</a></li>
</ul>
</div>
<div class="span2">
<a href="http://www.youtube.com/zoneadmin/"><img src="assets/images/youtube.png"></a><img src="assets/images/spacer.gif" style="width:5px;height:1px;">
<a href="http://www.facebook.com/TheZoneDiet"><img src="assets/images/facebook.png"></a><img src="assets/images/spacer.gif" style="width:5px;height:5px;">
<a href="https://twitter.com/thezonediet/"><img src="assets/images/twitter.png"></a>
</div>
<div class="span1"> </div>
</div>
</footer><br>
<p class="pull-right"><a href="#">Back to top</a></p>
<p>© 2013 Zone Labs Inc., All Rights Reserved</p>
</div>
<!-- FOOTER-->
<!--***********STYLE SWITCHER ****************-->
<!--
<link href="assets/css/switcher.css" rel="stylesheet">
<div id="style-switcher" style="right: 0px;">
<h2>Color Switcher Options<a href="#"><i class="fa-icon-cogs main-color"></i> Styles</a></h2>
<div>
<h3>Default Colors (includes Menu Hover)</h3>
<div class="well">
<ul>
<li><a class="cyborg">cyborg</a></li>
<li><a class="readable">readable</a></li>
<li><a class="united">united</a></li>
<li><a class="journal">journal</a></li>
<li><a class="spruce">spruce</a></li>
<li><a class="spacelab">spacelab</a></li>
<li><a class="simplex">simplex</a></li>
<li><a class="slate">slate</a></li>
<li><a class="superhero">superhero</a></li>
<li><a class="flatly">flatly</a></li>
</ul>
</div>
</div>
<div id="reset"><a href="#" class="btn btn-info">Reset</a></div>
</div>
-->
<!--*******************************-->
<!--*****[End] style switcher *****-->
<!--*******************************-->
<!-- Le javascript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="assets/js/jquery.js" type="text/javascript"></script>
<script src="assets/js/bootstrap-transition.js" type="text/javascript"></script>
<script src="assets/js/bootstrap-alert.js" type="text/javascript"></script>
<script src="assets/js/bootstrap-modal.js" type="text/javascript"></script>
<script src="assets/js/bootstrap-dropdown.js" type="text/javascript"></script>
<script src="assets/js/bootstrap-scrollspy.js" type="text/javascript"></script>
<script src="assets/js/bootstrap-tab.js" type="text/javascript"></script>
<script src="assets/js/bootstrap-tooltip.js" type="text/javascript"></script>
<script src="assets/js/bootstrap-popover.js" type="text/javascript"></script>
<script src="assets/js/bootstrap-button.js" type="text/javascript"></script>
<script src="assets/js/bootstrap-collapse.js" type="text/javascript"></script>
<script src="assets/js/bootstrap-carousel.js" type="text/javascript"></script>
<script src="assets/js/bootstrap-typeahead.js" type="text/javascript"></script>
<script src="assets/js/bootstrap-affix.js" type="text/javascript"></script>
<script src="assets/js/jquery.localscroll-1.2.7-min.js" type="text/javascript"></script>
<script src="assets/js/jquery.scrollTo-1.4.2-min.js" type="text/javascript"></script>
<script src="assets/js/jquery.mousewheel.js" type="text/javascript"></script>
<script src="assets/js/jquery.mCustomScrollbar.js" type="text/javascript"></script>
<!-- STYLE SWITCHER-->
<script type="text/javascript" src="assets/js/switcher.js"></script>
<script>
var nav = jQuery('#left-side-menu');
jQuery(window).scroll(function () {
if (jQuery(this).scrollTop() > 197) {
nav.addClass("fixed-top");
} else {
nav.removeClass("fixed-top");
}
});
</script>
<!--<script>
(function($){
$(window).load(function(){
$(".tab-pane").mCustomScrollbar();
});
})(jQuery);
</script>-->
</body>
</html>