-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathccsc16.html
More file actions
640 lines (555 loc) · 45.2 KB
/
ccsc16.html
File metadata and controls
640 lines (555 loc) · 45.2 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<title>CSSA</title>
<link href="css/bootstrap.css" rel="stylesheet">
<link href="css/font-awesome.min.css" rel="stylesheet">
<link href="css/prettyPhoto.css" rel="stylesheet">
<link href="css/animate.css" rel="stylesheet">
<link href="css/main.css" rel="stylesheet">
<!--[if lt IE 9]>
<script src="js/html5shiv.js"></script>
<script src="js/respond.min.js"></script>
<![endif]-->
<link rel="shortcut icon" href="images/ico/favicon.ico">
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="images/ico/apple-touch-icon-144-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="images/ico/apple-touch-icon-114-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="images/ico/apple-touch-icon-72-precomposed.png">
<link rel="apple-touch-icon-precomposed" href="images/ico/apple-touch-icon-57-precomposed.png">
<!-- Google Analystics -->
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-28945871-1', 'auto');
ga('send', 'pageview');
</script>
<script src="//code.jquery.com/jquery.min.js"></script>
<script>
$.get("assets/header.html", function(data){
$("#header-placeholder").replaceWith(data);
});
</script>
<script>
$.get("assets/ccsc-navbar.html", function(data){
$("#ccsc-nav-placeholder").replaceWith(data);
});
</script>
<script>
$.get("assets/footer.html", function(data){
$("#footer-placeholder").replaceWith(data);
});
</script>
</head>
<body>
<div class="container">
<div id="header-placeholder"></div>
<div id='ccsc-nav-placeholder'></div>
<section id="about" style="background-color:#0C2549; background-image: url(images/conference/ccsc16/banner.png); background-size: 100% 100%; height: 700px">
<div class="row" style="height: 100%">
<div class="col-sm-3 ccsc15-header-mobile" style="height: 100%; margin-left: 2%">
<!-- <a href="http://ccsc2016.eventbrite.com" class="center" style="position: absolute; bottom: 2%"><button type="button" class="btn btn-primary btn-lg ccsc15-register">Register Now!</button></a> -->
</div>
</div>
<!-- <div class="col-sm-6 center" style="height: 100%">
<ul class="ccsc15-navlinks" style="position: absolute; bottom: 7%">
<br>
<li> <a class="gotooffset1 ccsc15-link" href=".offset1"> <u> Information </u> </a> </li>
<li> <a class="gotooffset2 ccsc15-link" href=".offset2"> <u> Speakers (Videos of talks coming soon) </u> </a> </li>
<li> <a class="gotooffset3 ccsc15-link" href=".offset3"> <u> Schedule </u> </a> </li>
<li> <a class="gotooffset4 ccsc15-link" href=".offset4"> <u> Sponsors</u> </a> </li>
</ul>
</div> -->
<!-- <div class="col-sm-3"></div>
--><!-- <div class="row">
<img src="./images/ccsc15/ccsc15banner.png" style="height:110px; width:100%">
<div class="col-sm-5">
<img src="./images/ccsc15/ccsc15logo.jpg" style="height:100%; width: 100%">
</div>
<div class="col-sm-7" style="margin-top: 20px">
<h1 id="ccsc15-title-top"> Communication: </h1>
<h1 id="ccsc15-title-bottom"> The Connected Mind </h1>
<h1 class = "center ccsc15-location"> Saturday, May 2nd </h1>
<h1 class = "center ccsc15-location"> University of California, Berkeley</h1>
<br>
<div class="col-sm-6 center" style="margin-top: -2%">
<br>
<br>
<a href="http://ccsc15.eventbrite.com" class="center"><button type="button" class="btn btn-primary btn-lg ccsc15-register">Register Now!</button></a>
</div>
<div class="col-sm-6" style="margin-top: -2%">
<ul class="ccsc15-navlinks">
<br>
<li> <a id="gotoinfo" class="gotoinfo ccsc15-link" href="#info"> <u> Information </u> </a> </li>
<li> <a id="gotospeakers" class="gotospeakers ccsc15-link" href="#speakers"> <u> Speakers </u> </a> </li>
<li> <a id="gotoposter" class="gotoposter ccsc15-link" href="#poster"> <u> Poster Session </u> </a> </li>
<li> <a id="gotoschedule" class="gotoschedule ccsc15-link" href="#schedule"> <u> Schedule </u> </a> </li>
</ul>
</div>
</div>
<br>
</div> -->
</section>
<div id="buffer"></div>
<section id="info">
<!-- <div class="row ccsc15-section">
<a id="gototop" class="gototop" href="#" style="float:right; padding-right: 20px"> Back to Top <i class="icon-chevron-up"></i> </a>
</div> -->
<div class="row">
<div class="col-md-6">
<h1 class="center" style="font-family: Palatino Linotype;"> Our Eighth Annual Conference </h1>
<p> The Cognitive Science Student Association is pleased to host the eighth annual California Cognitive Science Conference (CCSC) held on Saturday April 30, 2016 at UC Berkeley's Stanley Hall. The theme for CCSC 2016 is <i>Decision Making</i>. We will be exploring this exciting topic through the lenses of psychology, neuroscience, linguistics, anthropology, computer science, philosophy and more.
</p>
<p> The CCSC is an annual all-day symposium bringing together hundreds of students, researchers, and members of the general public from around the world who are passionate about the interdisciplinary field of Cognitive Science. We feature talks given by prominent scientists and thinkers from a wide variety of disciplines. Our acclaimed poster session provides undergraduates with the opportunity to present their own original research alongside graduate students and professional researchers. We sell out every year, so purchase your ticket sooner rather than later!</p>
<div class="center" style="margin-top: 40px">
<!-- <a href="http://ccsc2016.eventbrite.com" class="center"><button type="button" class="btn btn-primary btn-lg ccsc15-register">Register Now!</button></a> -->
</div>
</div>
<div id="scroller-1" class="col-md-6" style="margin-top: 30px">
<div class="carousel slide wet-asphalt">
<ol class="carousel-indicators">
<li data-target="#scroller-1" data-slide-to="0" class="active"></li>
<li data-target="#scroller-1" data-slide-to="1"></li>
<li data-target="#scroller-1" data-slide-to="2"></li>
<li data-target="#scroller-1" data-slide-to="3"></li>
<li data-target="#scroller-1" data-slide-to="4"></li>
<li data-target="#scroller-1" data-slide-to="5"></li>
</ol>
<div>
<div class="carousel-inner">
<div class="item active">
<img src="images/conference/ccsc15/ccsc15-1.jpg" style="width:100%; height:100%">
</div>
<div class="item">
<img src="images/conference/ccsc15/ccsc15-2.jpg" style="width:100%; height:100%">
</div>
<div class="item">
<img src="images/conference/ccsc15/ccsc15-3.jpg" style="width:100%; height:100%">
</div>
<div class="item">
<img src="images/conference/ccsc15/ccsc15-4.jpg" style="width:100%; height:100%">
</div>
<div class="item">
<img src="images/conference/ccsc15/ccsc15-5.jpg" style="width:100%; height:100%">
</div>
<div class="item">
<img src="images/conference/ccsc15/ccsc15-6.jpg" style="width:100%; height:100%">
</div>
</div>
<a class="prev hidden-xs" href="#scroller-1" data-slide="prev">
<i class="icon-angle-left"></i>
</a>
<a class="next hidden-xs" href="#scroller-1" data-slide="next">
<i class="icon-angle-right"></i>
</a>
</div>
</div>
<p class="center"c style="margin-top: 5px"> Photos from the 2015 CCSC </p>
</div>
</div>
</section>
<!-- CHARITY -->
<div style="padding-bottom:30px; margin-bottom: 2px; border-bottom: 2px solid"></div>
<div style="padding-bottom:30px; border-top: 2px solid"></div>
<section id="speakers" class = "offset2">
<div class="row ccsc15-section">
<a id="gototop" class="gototop" href="#" style="float:right; padding-right: 20px"> Back To Top <i class="icon-chevron-up"></i> </a>
</div>
<div class="row center" style="margin-bottom: 30px;">
<h1 style="font-size: 40px; font-family: Palatino linotype"> Northern California/East Bay Learning Disabilities Association </h1>
</div>
<div class="row">
<!-- <div class="col-md-3 col-sm-4 center" >
<img src="./images/conference/ccsc16/speakers/Montague.jpg" style="height:70%; width:70%; border: 1px solid">
</div> -->
<!-- <div class="col-md-9 col-sm-8" style="margin-left: -3%">
--> <!-- <h4 style="margin-top:0; color: #92ceb8; font-family: Palatino Linotype;"> The Neurobiology of Language: Insights from Direct Cortical Recordings </h4> -->
<div class="left" >
<p class="ccsc15-p"> The CSSA is dedicated not only to fostering interdisciplinary dialogue, but also to giving back to our community. </p>
<p class="ccsc15-p"> This year, the California Cognitive Science Conference is proud to be donating a portion to our proceeds to the Northern California/East Bay Learning Disabilities Association. 10% of every ticket will be donated, plus the Cognitive Science Student Association will match that amount in donation. </p>
<p class="ccsc15-p"> The Northern California/East Bay Learning Disabilities Association (NCEB LDA) is a non-profit organization of volunteers including individuals with learning disabilities, their families, and professionals formed in 1960. It is an affiliate of the Learning Disabilities Association of California. NCEB LDA is dedicated to identifying causes and promoting prevention of learning and attentional disabilities, and to enhancing the quality of life for all individuals with learning disabilites and their families by encouraging effective identification and intervention, fostering research, and protecting their rights under the law. NCEB LDA seeks to accomplish this through awareness, advocacy, empowerment, education, service, and collaborative efforts. </p>
<p class="ccsc15-p"> The California Cognitive Science Conference is proud to be supporting this organization. </p>
</div>
</div>
</section>
<section id="info" class="offset1">
<!-- <div class="row ccsc15-section">
<a id="gototop" class="gototop" href="#" style="float:right; padding-right: 20px"> Back to Top <i class="icon-chevron-up"></i> </a>
</div> -->
<div class="row">
<div class="col-md-6">
<!-- <h1 class="center" style="font-family: Palatino Linotype;"> Thank You to All Who Attended! </h1>
<p> Thank you to all who attended the seventh annual California Cognitive Science Conference (CCSC) held on Saturday May 2, 2015 at UC Berkeley's Stanley Hall. The theme for CCSC 2015 was <i>Communication: The Connected Mind</i>. We hope you enjoyed the excellent presentations from our speakers and poster presenters (we know we did!).
</p>
<p> For those of you who missed it, the CCSC is an annual all-day symposium bringing together hundreds of students, researchers, and members of the general public from around the world who are passionate about the interdisciplinary field of Cognitive Science. We feature talks given by prominent scientists and thinkers from a wide variety of disciplines. Our acclaimed poster session provides undergraduates with the opportunity to present their own original research alongside graduate students and professional researchers.</p>
<p> Be sure to like our <u><a href="https://www.facebook.com/cogscicon?fref=ts">facebook page</a></u> for the conference. Also, if you would like to receive information about future conferences join our <u><a href="form.html">conference mailing list</a></u>. Videos of the talks can be found below (coming soon).</p> -->
<!-- <div class="center" style="margin-top: 40px">
<a href="http://ccsc15.eventbrite.com" class="center"><button type="button" class="btn btn-primary btn-lg ccsc15-register">Register Now!</button></a>
</div> -->
</div>
<!-- <div id="scroller-1" class="col-md-6" style="margin-top: 30px">
<div class="carousel slide wet-asphalt">
<ol class="carousel-indicators">
<li data-target="#scroller-1" data-slide-to="0" class="active"></li>
<li data-target="#scroller-1" data-slide-to="1"></li>
<li data-target="#scroller-1" data-slide-to="2"></li>
<li data-target="#scroller-1" data-slide-to="3"></li>
<li data-target="#scroller-1" data-slide-to="4"></li>
<li data-target="#scroller-1" data-slide-to="5"></li>
</ol>
<div>
<div class="carousel-inner">
<div class="item active">
<img src="images/conference/ccsc15/ccsc15-1.jpg" style="width:100%; height:100%">
</div>
<div class="item">
<img src="images/conference/ccsc15/ccsc15-2.jpg" style="width:100%; height:100%">
</div>
<div class="item">
<img src="images/conference/ccsc15/ccsc15-3.jpg" style="width:100%; height:100%">
</div>
<div class="item">
<img src="images/conference/ccsc15/ccsc15-4.jpg" style="width:100%; height:100%">
</div>
<div class="item">
<img src="images/conference/ccsc15/ccsc15-5.jpg" style="width:100%; height:100%">
</div>
<div class="item">
<img src="images/conference/ccsc15/ccsc15-6.jpg" style="width:100%; height:100%">
</div>
</div>
<a class="prev hidden-xs" href="#scroller-1" data-slide="prev">
<i class="icon-angle-left"></i>
</a>
<a class="next hidden-xs" href="#scroller-1" data-slide="next">
<i class="icon-angle-right"></i>
</a>
</div>
</div>
<p class="center"c style="margin-top: 5px"> Photos from the 2015 CCSC </p>
</div> -->
</div>
</section>
<div style="padding-bottom:30px; margin-bottom: 2px; border-bottom: 2px solid"></div>
<div style="padding-bottom:30px; border-top: 2px solid"></div>
<section id="speakers" class="offset2">
<div class="row ccsc15-section">
<a id="gototop" class="gototop" href="#" style="float:right; padding-right: 20px"> Back To Top <i class="icon-chevron-up"></i> </a>
</div>
<div class="row center" style="margin-bottom: 30px;">
<h1 style="font-size: 40px; font-family: Palatino linotype"> Keynote Speaker </h1>
</div>
<div class="row">
<div class="col-md-3 col-sm-4 center" >
<img src="./images/conference/ccsc16/speakers/Montague.jpg" style="height:70%; width:70%; border: 1px solid">
</div>
<div class="col-md-9 col-sm-8" style="margin-left: -3%">
<h1 class="ccsc15-speaker-name"> Read Montague </h1>
<!-- <h4 style="margin-top:0; color: #92ceb8; font-family: Palatino Linotype;"> The Neurobiology of Language: Insights from Direct Cortical Recordings </h4> -->
<p class="ccsc15-p"> Read Montague is a professor at the Virginia Tech Carilion Research Institute (VTCRI), where he serves as the Director of the Human NeuroImaging Laboratory and the Computational Psychiatry Unit. His work has centered on human decision-making, social cognition, and willful choice, with the overall goal of understanding the neurobiology of these cognitive tasks in health and disease. He has authored two books on the subject of decision-making, <i>Why Choose this Book?</i> and <i>Your Brain is (Almost) Perfect </i>. He has received the Michael E. DeBakey Excellence in Research Award twice in his career for his work on the neural substrates that underlie aspects of decision-making and social cognition. Professor Montague also directs the Roanoke Brain Study, a project that aims to understand human decision-making throughout the lifespan and connect it to brain development, function, and diseases. In addition to his work at the VTCRI, Professor Montague serves as a Professor of Psychiatry and Behavioral Medicine at the Virginia Tech Carilion School of Medicine and as a Wellcome Trust Principal Research Fellow at the Wellcome Trust Centre for Neuroimaging at University College, London. </p>
</div>
</div>
<!-- <div class="row">
<div class="col-md-3 col-sm-4 center" >
<img src="./images/conference/ccsc15/speakers/norman.jpg" style="height:70%; width:70%; border: 1px solid">
</div>
<div class="col-md-9 col-sm-8" style="margin-left: -3%">
<h1 class="ccsc15-speaker-name"> Don Norman </h1>
<h4 style="margin-top:0; color: #92ceb8; font-family: Palatino Linotype;"> Design: Applying Cognitive Science </h4>
<p class="ccsc15-p"> Dr. Don Norman is a leader in the application of human-centered design. He studies the communication process between the object and the user to produce products and services that satisfy human and societal needs, both practical and emotional. He brings a unique mix of the social sciences and engineering to bear on everyday products. Dr. Norman was a cognitive science professor at UC San Diego (founding chair of the department) and Northwestern University, as well as cofounder of the Nielsen Norman Group and former Vice President of Apple Computer’s Advanced Technology Group. Dr. Norman is the director of The Design Lab at UC San Diego and author of 20 books. He is best known for his books “The Design of Everyday Things,” "”Emotional Designs" and “Living in Complexity." He was awarded the Benjamin Franklin medal in Computer and Cognitive Science, and was listed as “one of the world’s most influential designers” by BusinessWeek.</p>
</div>
</div> -->
<div class="row center">
<h1 style="font-size: 40px; margin: 30px; font-family: Palatino linotype"> Focus Talk Speakers </h1>
</div>
<div class="row">
<div class="col-md-3 col-sm-4 center">
<img src="./images/conference/ccsc16/speakers/barbey.jpg" style="height:70%; width:70%; border: 1px solid">
</div>
<div class="col-md-9 col-sm-8" style="margin-left: -3%">
<h1 class="ccsc15-speaker-name"> Aron Barbey </h1>
<!-- <h4 style="margin-top:0; color: #92ceb8; font-family: Palatino Linotype;"> Of Digits and Things </h4> -->
<p class="ccsc15-p"> Dr. Aron Barbey is Director of the Decision Neuroscience Laboratory at the Beckman Institute for Advanced Science and Technology at the University of Illinois. He is also an associate editor of <i>Frontiers in Human Neuroscience</i> and on the editorial board of <i>Collabra, Intelligence, and Thinking & Reasoning</i>. He is the principal investigator at Insight, a comprehensive, multidisciplinary brain training system. The main objective of his research is to improve higher cognitive functions, investigating the beneficial effects of cognitive, fitness, and nutritional interventions on executive control, reasoning, and decision making. He holds a Ph.D. in Psychology from Emory University. Dr. Barbey has lead several of the largest and most comprehensive human lesion studies of high-level cognitive functions. He and his team have mapped the architecture of executive, social, and emotional brain systems, revealed molecular genetic markers that predict general intelligence following traumatic brain injury, and are developing and testing nutraceuticals to enhance the performance of United States Air Force Battlefield Airmen. </p>
</div>
</div>
<div class="row">
<div class="col-md-3 col-sm-4 center">
<img src="./images/conference/ccsc16/speakers/critcher_2.jpg" style="height:70%; width:70%; border: 1px solid">
</div>
<div class="col-md-9 col-sm-8" style="margin-left: -3%">
<h1 class="ccsc15-speaker-name">Clayton Critcher</h1>
<!-- <h4 style="margin-top:0; color: #92ceb8; font-family: Palatino Linotype;"> Three Mysteries of Explanation </h4> -->
<p class="ccsc15-p">
Clayton Critcher is an Assistant Professor of Marketing at UC Berkeley's Haas School of Business. As well as being a Cognitive Science faculty member, he is affiliated with the Psychology department. His research spans a variety of fields including judgement and decision-making, social psychology, and consumer behavior. He focuses on understanding how people perceive themselves, make judgements of others, and make economic and moral decisions. He strives to make contributions with clear applications to both business and public policy. He is currently on the editorial boards of the Journal of Personality and Social Psychology: Attitudes & Social Cognition and Social Psychological and Personality Science. In 2015, the Foundation for Personality and Social Psychology honored him with the Sage Young Scholar Award. </p>
</div>
</div>
<div class="row">
<div class="col-md-3 col-sm-4 center">
<img src="./images/conference/ccsc16/speakers/rosati.jpg" style="height:70%; width:70%; border: 1px solid">
</div>
<div class="col-md-9 col-sm-8" style="margin-left: -3%">
<h1 class="ccsc15-speaker-name"> Alexandra Rosati </h1>
<!-- <h4 style="margin-top:0; color: #92ceb8; font-family: Palatino Linotype;"> Social Cognition: Intelligence Within and About Networks </h4> -->
<p> Professor Alexandra Rosati is the director of the Cognitive Evolution Group at Harvard University, where she is also an Assistant Professor in the Department of Human Evolutionary Biology. Her current research is on individual and interspecies variance in cognition, including social cognition and the extent of executive control’s influence on decision-making. She received her AB in Psychology with a certificate in Mind, Brain, and Behavior from Harvard University, and her PhD in Evolutionary Anthropology from Duke University where she was part of the Cognitive Neuroscience Admitting Program, and she conducted postdoctoral research as part of the Department of Psychology at Yale University. </p>
<p class="ccsc15-p"> </p>
</div>
</div>
<div class="row">
<div class="col-md-3 col-sm-4 center">
<img src="./images/conference/ccsc16/speakers/griffiths.jpg" style="height:70%; width:70%; border: 1px solid">
</div>
<div class="col-md-9 col-sm-8" style="margin-left: -3%">
<h1 class="ccsc15-speaker-name"> Tom Griffiths </h1>
<!-- <h4 style="margin-top:0; color: #92ceb8; font-family: Palatino Linotype;"> Deixis, Accessibility, and Joint Attention </h4> -->
<p> Prof. Tom Griffiths is a professor of Cognitive Science and Psychology and the Director of the Computational Cognitive Science Lab at UC Berkeley. His work focuses on using mathematical principals to model cognition and formalizing computational problems that humans face. His current work focuses on inductive thought processes such as language acquisition and decision making. He is also the director of the Institute of Cognitive and Brain Sciences on campus, and recently co-wrote <i> Algorithms to Live By: The Computer Science of Human Decision </i> with Brian Christian. Griffiths has also published many papers, and has multiple received awards from the National Science Foundation, the Sloan Foundation, and the American Psychology Assocation. </p>
<p class="ccsc15-p"> </p>
</div>
</div>
<div class="row">
<div class="col-md-3 col-sm-4 center">
<img src="./images/conference/ccsc16/speakers/ruth.jpg" style="height:70%; width:70%; border: 1px solid">
</div>
<div class="col-md-9 col-sm-8" style="margin-left: -3%">
<h1 class="ccsc15-speaker-name"> Ruth Chang </h1>
<!-- <h4 style="margin-top:0; color: #92ceb8; font-family: Palatino Linotype;"> What Freud Got Right About Speech Errors </h4> -->
<p> Ruth Chang is a professor of philosophy at Rutgers University, known for her research on the incommensurability of values and on practical reason and normativity, as well as her work on 'hard choices' and decision-making. Before arriving at Rutgers, she was a Junior Research Fellow at Balliol College, Oxford and has held visiting positions in the philosophy departments at the University of California, Los Angeles and the University of Chicago Law School. She obtained her J.D. from Harvard Law School and her A.B. from Dartmouth College. She is the author of <i>Making Comparisons Count</i>, and the editor of the first volume on the topic of incommensurability of values in the Anglo-American world, <i>Incommensurability, Incomparability, and Practical Reason</i>, and has authored numerous articles and book chapters.</p>
<p class="ccsc15-p"> </p>
</div>
</div>
<div class="row">
<div class="col-md-3 col-sm-4 center">
<img src="./images/conference/ccsc16/speakers/lakoff.jpg" style="height:70%; width:70%; border: 1px solid">
</div>
<div class="col-md-9 col-sm-8" style="margin-left: -3%">
<h1 class="ccsc15-speaker-name"> George Lakoff </h1>
<!-- <h4 style="margin-top:0; color: #92ceb8; font-family: Palatino Linotype;"> Enacting Multiple Viewpoints Simultaneously in Language and Co-speech Gesture: How to be Yourself, Your Past Self, and Someone Else All At Once </h4> -->
<p> George Lakoff is a Richard and Rhoda Goldman Distinguished Professor of Linguistics and Cognitive Science at the University of California, Berkeley. His research focuses on cognitive linguistics, particularly the neural theory of thought and language. His recent projects have included work on conceptual metaphor, the nature of human conceptual systems, embodied construction grammar, and the practical applications of cognitive linguistics to social and political contexts. His writings include <i> Metaphors We Live By </i>, <i> Women, Fire, and Dangerous Things </i>, and <i>Don't Think of an Elephant</i>. His most recent book, in collaboration with Elisabeth Wehling, is <i>The Little Blue Book: The Essential Guide to Thinking and Talking Democratic</i>. </p>
<p class="ccsc15-p"> </p>
</div>
</div>
</section>
<div style="padding-bottom:30px; margin-bottom: 2px; border-bottom: 2px solid"></div>
<div style="padding-bottom:30px; border-top: 2px solid"></div>
<section id="poster">
<div class="row ccsc15-section">
<a id="gototop" class="gototop" href="#" style="float:right; padding-right: 20px"> Back To Top <i class="icon-chevron-up"></i> </a>
</div>
<div class="row center" style="margin-bottom: 20px;">
<h1 style="font-size: 40px; font-family: palation linotype"> Poster Session </h1>
</div>
<div class="row">
<div class="col-md-6">
<p>
The California Cognitive Science Conference is a great opportunity for researchers (especially undergraduates) to exhibit original work in any field within the study of Cognitive Science. Poster presenters at the conference will have the opportunity to interact with and receive feedback from both world-renowned scientists and our broad audience. Submitted abstracts will be evaluated based on interest and appeal to a wide audience; scientific and professional merit; contribution to knowledge, practices, and policies; and clarity. Please submit a 300 word abstract by April 15th, 2016 at 11:59pm to be considered.
</p>
<p>
This year, we will once again be awarding a prize to the top poster. This will be selected based on a holistic review by the organizing committee and professors as well as a popular vote by attendees. <b>Please limit your abstracts to 300 words or less.</b> You will be notified about the status of your submission no later than April 22nd, 2016. If your submission is accepted, you will be able to purchase a discounted poster presenter ticket ($17), which will be available starting April 22nd.
</p>
<!-- <div class="center">
<a href="https://docs.google.com/forms/d/1vz8PasQYLM7F9ZqilPtSJwtY9qS1xS7kuIkDTm6x9eU/viewform?c=0&w=1" class="center"><button type="button" class="btn btn-primary btn-lg " style="height: 70px; width: 250px; font-size: 30px; background-color: #b51e00">Submit Abstract</button></a>
</div> -->
<h2 class="center" style="font-family: Palatino Linotype"> Deadline to Submit: <b>April 15th, 2016</b> </h2>
</div>
<div class="col-md-6">
<img src="./images/conference/ccsc15/ccsc15-poster1.jpg" style="height:100%; width:100%">
</div>
</div>
<h1 class="center" style="margin-top: 50px; font-family: Palatino Linotype"> More Information for Poster Presenters </h1>
<br>
<ul class="faq">
<li>
<span class="number">01</span>
<div class="drop-content">
<a data-toggle="collapse" href="#q1">
<h3 style="font-family: Palatino Linotype">How will poster presenters be selected?</h3>
<i class="icon-chevron-down"></i>
</a>
<div id="q1" class="collapse">
<p> An interdisciplinary committee will read and evaluate the abstracts in a blind-review process. The criteria of selection will be: 1) quality of presented research, 2) comprehensibility of the theoretical or practical stakes, 3) originality, 4) relevance to the field of cognitive science </p>
</div>
</div>
</li>
<li>
<span class="number">02</span>
<div class="drop-content">
<a data-toggle="collapse" href="#q2">
<h3 style="font-family: Palatino Linotype">Do I have to register?</h3>
<i class="icon-chevron-down"></i>
</a>
<div id="q2" class="collapse">
<p> Yes, all attending poster presenters must register for the conference. If your abstract is accepted, you will be able to purchase the discounted $17 poster presenter ticket. Acceptance notices will be distributed by April 22nd. </p>
</div>
</div>
</li>
<li>
<span class="number">03</span>
<div class="drop-content">
<a data-toggle="collapse" href="#q3">
<h3 style="font-family: Palatino Linotype">When will I know whether my abstract is accepted?</h3>
<i class="icon-chevron-down"></i>
</a>
<div id="q3" class="collapse">
<p> Acceptance notices will be distributed by April 22nd. </p>
</div>
</div>
</li>
<li>
<span class="number">04</span>
<div class="drop-content">
<a data-toggle="collapse" href="#q4">
<h3 style="font-family: Palatino Linotype">Can I submit more than one abstract?</h3>
<i class="icon-chevron-down"></i>
</a>
<div id="q4" class="collapse">
<p> We are limiting submissions to one per presenter. Please select the one you think is the most appropriate. </p>
</div>
</div>
</li>
<li>
<span class="number">05</span>
<div class="drop-content">
<a data-toggle="collapse" href="#q5">
<h3 style="font-family: Palatino Linotype">Can I make changes to my abstract once I’ve submitted it?</h3>
<i class="icon-chevron-down"></i>
</a>
<div id="q5" class="collapse">
<p> Yes. To change your submission, please go back to the google form where you submitted and make your changes there. Changes will not be accepted after April 15th. </p>
</div>
</div>
</li>
<li>
<span class="number">06</span>
<div class="drop-content">
<a data-toggle="collapse" href="#q6">
<h3 style="font-family: Palatino Linotype">What materials will be provided for displaying my poster?</h3>
<i class="icon-chevron-down"></i>
</a>
<div id="q6" class="collapse">
<p> Please limit your poster to no larger than 4’ x 3’4” (size of provided foam backings). We will provide easels, foam backings, and clips so all you need to bring is your poster. </p>
</div>
</div>
</li>
<li>
<span class="number">07</span>
<div class="drop-content">
<a data-toggle="collapse" href="#q7">
<h3 style="font-family: Palatino Linotype">Does my research have to be related to the theme?</h3>
<i class="icon-chevron-down"></i>
</a>
<div id="q7" class="collapse">
<p> Nope! It just needs to be related to any of the disciplines in cognitive science.</p>
</div>
</div>
</li>
</ul>
</section>
<div style="padding-bottom:30px; margin-bottom: 2px; border-bottom: 2px solid"></div>
<div style="padding-bottom:30px; border-top: 2px solid"></div>
<section id="schedule" class="offset3" style="background-image:url(images/conference/ccsc16/schedule.png); width: 100%; background-size: cover">
<div class="row ccsc15-section">
<a id="gototop" class="gototop" href="#" style="float:right; padding-right: 20px"> Back to Top <i class="icon-chevron-up"></i> </a>
</div>
<!-- <div class="row center">
<h1 style="font-family: Palatino Linotype; color: #92ceb8;"> Schedule </h1>
</div> -->
<!-- <div class="row" style="padding-right:0">
<div class="col-sm-3 col-md-2">
<h3 class="ccsc15-times"> 8:00-9:00 am </h3>
<h3 class="ccsc15-times"> 9:00-9:30 am </h3>
<h3 class="ccsc15-times"> 9:30-10:45 am </h3>
<h3 class="ccsc15-times"> 10:45-11:00 am </h3>
<h3 class="ccsc15-times"> 11:00-12:00 pm </h3>
<h3 class="ccsc15-times"> 12:00-12:30 pm </h3>
<h3 class="ccsc15-times"> 12:30-1:15 pm </h3>
<h3 class="ccsc15-times"> 1:15-2:15 pm </h3>
<h3 class="ccsc15-times"> 2:15-2:30 pm </h3>
<h3 class="ccsc15-times"> 2:30-3:30 pm </h3>
<h3 class="ccsc15-times"> 3:30-3:45 pm </h3>
<h3 class="ccsc15-times"> 3:45-5:00 pm </h3>
<h3 class="ccsc15-times"> 5:00-5:15 pm </h3>
</div> -->
<!-- <div class="col-sm-5 col-md-5">
<h3 class="ccsc15-times"> Check-in & Breakfast </h3>
<h3 class="ccsc15-times"> Welcome Address </h3>
<h3 class="ccsc15-times"> First Keynote: Don Norman</h3>
<h3 class="ccsc15-times"> Coffee Break </h3>
<h3 class="ccsc15-times"> Focus Talks: Tania Lombrozo, Briankle Chang </h3>
<h3 class="ccsc15-times"> Lunch </h3>
<h3 class="ccsc15-times"> Poster Session and Exhibits </h3>
<h3 class="ccsc15-times"> Focus Talks: Kathleen Carley, William Hanks </h3>
<h3 class="ccsc15-times"> Intermission </h3>
<h3 class="ccsc15-times"> Focus Talks: Gary Dell, Eve Sweetser</h3>
<h3 class="ccsc15-times"> Intermission </h3>
<h3 class="ccsc15-times"> Second Keynote: Robert Knight</h3>
<h3 class="ccsc15-times"> Closing Remarks </h3> -->
<!-- </div>
<div class="col-sm-4 col-md-5">
<a href="http://ccsc15.eventbrite.com" class="center schedbutton"><button type="button" class="btn btn-primary btn-lg ccsc15-register" style="margin-top:20%">Register Now!</button></a>
<! <img src="./images/ccsc15/faces.jpg" style="height:90%; width: 90%;">
</div> -->
</section>
<div style="padding-bottom:30px; margin-bottom: 2px; border-bottom: 2px solid"></div>
<div style="padding-bottom:30px; border-top: 2px solid"></div>
<section id="poster" class="offset4">
<div class="row ccsc15-section">
<a id="gototop" class="gototop" href="#" style="float:right; padding-right: 20px"> Back to Top <i class="icon-chevron-up"></i> </a>
</div>
<div class="row">
<div class="col-md-2" style="margin-top: 30px">
<!-- <img src="images/conference/ccsc14-7.jpg" style="height:100%; width:100%"> -->
</div>
<div class="col-md-8">
<h1 class="center" style="font-family: Palatino Linotype;"> Previous Conference Sponsors </h1>
<p> CSSA would like to thank the following sponsors for their generous contributions to past conferences. If your business would like to donate to CCSC 2016 and be featured in our conference program and website, please email us at <b>cssa.berkeley@gmail.com</b></p>
</div>
<div class="col-md-2" style="margin-top: 30px">
<!-- <img src="images/conference/ccsc14-7.jpg" style="height:100%; width:100%"> -->
</div>
<div class = "col-md-4" class="center">
<img src="images/conference/ccsc15/sponsors/citris.png" style="height:80%; width:80%; margin-left:auto; margin-right:auto; display:block">
<br>
<br>
<img src="images/conference/ccsc15/sponsors/psychology.png" style="height:80%; width:80%; margin-left:auto; margin-right:auto; display:block">
<br>
<br>
<img src="images/conference/ccsc15/sponsors/pacific_cookie.png" class="center" style="height:50%; width:50%; margin-left:auto; margin-right:auto; display:block">
</div>
<div class = "col-md-4" class="center">
<img src="images/conference/ccsc15/sponsors/helen_wills.png" style="height:90%; width:90%; margin-left:auto; margin-right:auto; display:block">
<br>
<br>
<h3 class="center"> University of California Berkeley Social Sciences Division </h3>
<br>
<br>
<img src="images/conference/ccsc15/sponsors/icbs.png" style="height:80%; width:80%; margin-left:auto; margin-right:auto; display:block">
<br>
<br>
<img src="images/conference/ccsc15/sponsors/cheeseboard.png" style="height:80%; width:80%; margin-left:auto; margin-right:auto; display:block">
</div>
<div class = "col-md-4" class="center">
<img src="images/conference/ccsc15/sponsors/cogsci.png" style="height:80%; width:80%; margin-left:auto; margin-right:auto; display:block">
<br>
<br>
<br>
<img src="images/conference/ccsc15/sponsors/bear_basics.png" style="height:80%; width:80%; margin-left:auto; margin-right:auto; display:block">
<br>
<br>
<img src="images/conference/ccsc15/sponsors/berkeley_bowl.png" style="height:50%; width:50%; margin-left:auto; margin-right:auto; display:block">
</div>
</div>
</section>
<div id="buffer"></div>
<div id=footer-placeholder></div>
</div>
<script src="js/jquery.js"></script>
<script src="js/bootstrap.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/jquery.prettyPhoto.js"></script>
<script src="js/main.js"></script>
</body>
</html>