forked from TheSkyentist/CUWiP24
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1039 lines (1024 loc) · 45.5 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
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
<!DOCTYPE html>
<!--
Escape Velocity by HTML5 UP
html5up.net | @ajlkn
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
Authored for CUWiP 2022 @ UArizona by Raphael Erik Hviding
-->
<html>
<head>
<title>APS CUWiP @ Arizona</title>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, user-scalable=no"
/>
<link rel="stylesheet" href="assets/css/main.css" />
<link
rel="shortcut icon"
href="https://profiles.arizona.edu/sites/default/themes/custom/profiles_ua_zen/favicon.ico"
type="image/vnd.microsoft.icon"
/>
</head>
<body class="homepage is-preload">
<div id="page-wrapper">
<!-- Header -->
<!-- Nav -->
<nav id="nav">
<ul>
<li><a href="index.html">Home</a></li>
<li>
<a>UArizona</a>
<ul>
<li>
<a>Physics</a>
<ul>
<li>
<a target="_blank" href="https://w3.physics.arizona.edu/"
>Physics @ UArizona</a
>
</li>
<li>
<a target="_blank" href="https://www.azwip.com/"
>Women in Physics</a
>
</li>
<li>
<a
target="_blank"
href="https://w3.physics.arizona.edu/diversity-equity-inclusion"
>DEI in Physics</a
>
</li>
</ul>
</li>
<li>
<a>Astronomy</a>
<ul>
<li>
<a target="_blank" href="https://www.as.arizona.edu/"
>Astronomy @ UArizona</a
>
</li>
<li>
<a
target="_blank"
href="https://www.as.arizona.edu/gems-group"
>GEMS</a
>
</li>
<li>
<a
target="_blank"
href="https://www.as.arizona.edu/diversity-inclusion"
>D&I in Astronomy</a
>
</li>
</ul>
</li>
<li>
<a>NOIRLab</a>
<ul>
<li>
<a target="_blank" href="https://noirlab.edu/public/"
>NOIRLab</a
>
</li>
<li>
<a
target="_blank"
href="https://www.aura-astronomy.org/diversity/"
>D&I at AURA
</a>
</li>
</ul>
</li>
<li>
<a target="_blank" href="https://www.arizona.edu/">UArizona</a>
</li>
</ul>
</li>
<li>
<a href="application.html">Registration</a>
<ul>
<li><a href="application.html#dates">Important Dates</a></li>
<li>
<a href="application.html#fees">Fees, Costs, & Waivers</a>
</li>
<li>
<a href="application.html#registration">Registration Info</a>
</li>
</ul>
</li>
<li>
<a>Conference</a>
<ul>
<!-- <li><a href="covid.html">COVID-19 Disclaimer</a></li> -->
<li>
<a href="schedule.html">Schedule</a>
<ul>
<li><a href="schedule.html#fri">Friday</a></li>
<li><a href="schedule.html#sat">Saturday</a></li>
<li><a href="schedule.html#sun">Sunday</a></li>
</ul>
</li>
<li><a href="sessions.html">Session Descriptions</a></li>
<li><a href="speakers.html">Speakers & Panelists</a></li>
<li><a href="posters.html">Poster & Talk Guidelines</a></li>
<!-- <li><a href="#">Student Presentations</a></li>
<li><a href="#">Venue Maps</a></li> -->
</ul>
</li>
<li>
<a href="travel.html">Travel</a>
<ul>
<li><a href="travel.html#travel">Travel & Support</a></li>
<li><a href="travel.html#transport">Transportion</a></li>
<li><a href="travel.html#lodging">Lodging</a></li>
<li><a href="travel.html#weather">Weather</a></li>
<li>
<a href="travel.html#cell">Cell-Phone & Internet Access</a>
</li>
<li>
<a href="travel.html#activities">Attractions & Activities</a>
</li>
<li><a href="travel.html#maps">Maps</a></li>
</ul>
</li>
<li><a href="sponsors.html">Sponsors</a></li>
<li>
<a href="faq.html">FAQ</a>
<ul>
<li><a href="faq.html#about">About</a></li>
<li><a href="faq.html#eligibility">Eligibility</a></li>
<li>
<a href="faq.html#application">Applying & Registration</a>
</li>
<li><a href="faq.html#cost">Cost & Funding</a></li>
<li><a href="faq.html#travel">Travel & Accomodations</a></li>
<li><a href="faq.html#miscellaneous">Miscellaneous</a></li>
</ul>
</li>
<li><a href="codeofconduct.html">Code of Conduct</a></li>
<li><a href="photos.html">Photos</a></li>
<li>
<a>Contact Us</a>
<ul>
<li><a href="#footer">Get in Touch</a></li>
<li><a href="loc.html">Local Organizing Committee</a></li>
</ul>
</li>
</ul>
</nav>
<!-- Nav -->
<section id="header" class="wrapper">
<!-- Logo -->
<div id="logo">
<h1>APS CUWiP 2024 @ UARIZONA</h1>
<p>
The American Physical Society Conferences for Undergraduate Women in
Physics
</p>
</div>
</section>
<!-- Header -->
<!-- Intro -->
<section id="intro" class="wrapper style1">
<div class="title">Welcome!</div>
<div class="container">
<p class="style1">
The University of Arizona thanks all participants for making CUWiP
2024 a success. We hope you enjoyed the conference held from Friday,
January 19th to Sunday, January 21st, 2024, at the iconic
<a href="https://biosphere2.org/" target="_blank">Biosphere 2</a>
</p>
<p class="style1">
To see the highlights from the conference, please visit the
<a href="photos.html" target="_blank">Photo Gallery</a>
</p>
<!-- <p class="style1">The University of Arizona is excited to host a CUWiP 2024 in the Southwest. CUWiP @ UArizona will be held from Friday, January 19th to Sunday, January 21st, 2024 at the iconic <a href="https://biosphere2.org/" target="_blank">Biosphere 2</a></p> -->
<!-- <p class="style2">CUWiP 2024 @ UArizona <a href="https://www.facebook.com/groups/625200048670153" target="_blank"><u>Facebook Group</u></a>!</p> -->
<!-- <p class="style2">CUWiP 2024 @ UArizona <a href="images/Welcome.pdf" target="_blank"><u>Welcome Announcement!</u></a>!</p> -->
<!-- <p class="style2"><a href="images/APSCovid.pdf" target="_blank"><u>APS Updated CUWiP Covid Protocol</u></a>!</p> -->
<!-- <p class="style1">The deadline for undergraduate students to apply to CUWiP at APS website has passed.</p> -->
<!-- <p class="style1">Registration closed for the first round accepted students on November 12, for the second round accepted students on December 3.</p> -->
<!-- <p class="style1">For other participants, please register before November 12 using the link below. If you miss the registration deadline, please contact the organizer <a href="mailto:cuwip@arizona.edu">cuwip@arizona.edu</a>.</p> -->
<!-- <p class="style1">The deadline for undergraduate students to apply to CUWiP at APS website has passed.</p> -->
<!-- <ul class="actions">
<li><a target="_blank" href="https://forms.gle/AvsQqgUSKJrutdfv6" class="button style1 large">Register</a></li>
</ul> -->
<!-- <p class="style1">The APS application period is now closed.</p> -->
<!-- <p class="style1" >CUWiP registration is now closed. <br>Arizona local site registration is now closed.</p> -->
<p class="style1">
We look forward to seeing you at future CUWiP events!
</p>
<!-- <p class="style1"><a target="_blank" href="https://www.aps.org/">The American Physical Society</a> (APS) <a target="_blank" href="https://www.aps.org/programs/women/cuwip/index.cfm">Conferences for Undergraduate Women in Physics</a> (CUWiP) are three-day regional conferences held simultaneously throughout the United States and Canada for undergraduate physics and astronomy majors. <a href="#content">Click here</a> for more information about other CUWiP 2024 site locations. </p>
<p class="style3">The goal of APS CUWiP is to help undergraduate women continue in physics by providing them with the opportunity to experience a professional conference, information about graduate school and professions in physics, and access to other women in physics of all ages with whom they can share experiences, advice, and ideas. The national and local organizing committees of APS CUWiP strive to create a welcoming environment for all, including undergraduate women and gender minorities.</p> -->
<!-- <p> -->
<!-- <ul class="actions"> -->
<!-- <li><a href="https://www.aps.org/programs/women/cuwip/" target="_blank" class="button style1 large">Apply Now</a></li> -->
<!-- <li><a href="application.html" target="_blank" class="button style1 large">Application Information</a></li> -->
<!-- <li><a href="photos.html" target="_blank" class="button style1 large">Photo Gallery</a></li> -->
<!-- <li><a href="application.html#registration" target="_blank" class="button style1 large">Registration Information</a></li>
<li><a href="https://info.aps.org/cuwip" target="_blank" class="button style1 large">Sign Up For Reminders</a></li> -->
<!-- </ul>
</p> -->
</div>
</section>
<!-- Main -->
<section id="main" class="wrapper style2">
<div class="title">The Details</div>
<div class="container">
<div class="row gtr-150">
<div class="col-4 col-12-medium">
<!-- Sidebar -->
<div id="sidebar">
<!-- <section class="box">
<header>
<h2>Ipsum nullam luctus</h2>
</header>
<p>Malesuada quis eget eros. Nullam sodales cursus sapien, id consequat
leo suscipit ut. Praesent id turpis vitae turpis pretium ultricies. Vestibulum sit
amet risus elit.</p>
<a href="#" class="button style1">Learn More</a>
</section> -->
<section class="box">
<header>
<h2>News</h2>
</header>
<ul class="style2">
<!-- <li>
<article class="box">
<h3>Registration Closed</h3>
<p> Registration closed on November 12 for first round accepted students, and on December 3 for second round students. Welcome emails were sent out to all registered participants.</p>
</article>
</li> -->
<!-- <li>
<article class="box">
<h3>New Facebook Group</h3>
<p>If you are attending CUWiP 2024 @ UArizoa, join our <a href="https://www.facebook.com/groups/625200048670153" target="_blank">Facebook group</a>! Here you can connect with other attendees ahead of the event!</p>
</article>
</li> -->
<li>
<article class="box">
<h3>CUWiP @AZ</h3>
<p>
CUWiP @AZ is taking place this coming Friday, January
19th-Sunday Jan 21st.
</p>
<!-- <p>Registration is now open. Please follow the registration instructions <a href="application.html#registration">here</a>.</p>
<p>CUWiP registration will close at 5pm ET on December 15.</p> -->
<!-- <p>Arizona local site registration will close at 5pm ET on December 31.</p> -->
</article>
</li>
<!-- <li>
<article class="box">
<h3>Registration Opens</h3>
<p>Registration is now open. Please follow the registration instructions <a href="application.html#registration">here</a>. CUWiP registration will close at 5pm ET on December 13. Arizona local site registration will close at 5pm ET on December 31.</p>
</article>
</li> -->
<li>
<article class="box">
<h3>Applications Closed</h3>
<p>
The applications for CUWiP 2024 closed on October
23rd.
</p>
</article>
</li>
<!-- <li>
<article class="box">
<h3><a href="application.html">The APS application period is now closed</a></h3>
<p>The applications for CUWiP 2024 are now open and will close at 5pm ET on October 23.</p>
</article>
</li> -->
</ul>
<!-- <a href="#" class="button style1">Archives</a> -->
<a
href="images/CUWiP_Poster.png"
target="_blank"
class="image main"
>
<img src="images/CUWiP_Poster.png" alt="" />
</a>
</section>
<section class="box"></section>
</div>
</div>
<div class="col-8 col-12-medium imp-medium">
<!-- Content -->
<div id="content">
<article class="box post">
<header class="style1">
<h2>About CUWiP</h2>
<br />
<a target="_blank" href="https://www.aps.org/"
>The American Physical Society</a
>
(APS)
<a
target="_blank"
href="https://www.aps.org/programs/women/cuwip/index.cfm"
>Conferences for Undergraduate Women in Physics</a
>
(CUWiP) are three-day regional conferences held
simultaneously throughout the United States and Canada for
undergraduate physics and astronomy majors. The goal of APS
CUWiP is to help undergraduate women continue in physics by
providing them with the opportunity to experience a
professional conference, information about graduate school
and professions in physics, and access to other women in
physics of all ages with whom they can share experiences,
advice, and ideas. The national and local organizing
committees of APS CUWiP strive to create a welcoming
environment for all, including undergraduate women and
gender minorities.
<br />
<!-- <h2>COVID-19 Disclaimer</h2>
A link to the full COVID-19 conference policies can be found <a href="covid.html">here</a>. We encourage you to read through the entire disclaimer and note that our measures are subject to change as the situation evolves. A few takeaways are:
<ul>
<li>APS requires all conference attendees to be fully vaccinated and negative tested prior to attending CUWiP. You will be required to submit proof of vaccination and negative testing results prior to the conference.</li>
<li>During the conference time, complete daily health attestation.
</li>
<li>Masks are required indoors and strongly encouraged in outdoor gatherings.</li>
<li>Social distancing is strongly encouraged.</li>
</ul> -->
</header>
<h1>
CUWiP has become incredibly popular. In order to maximize
the number of CUWiP participants we can accommodate, we will
allocate participants to sites based on travel logistics and
site capacity. Please do not purchase travel or plan to be
at a specific site until you receive an email confirming you
have been accepted to a specific CUWiP site.
</h1>
<br />
<p>
In total, there are 14 CUWiP 2024 sites, including UArizona.
Below are the <b>other sites</b> located in the US and the
Canada site.
</p>
<table style="width: 100%">
<tr>
<!-- <th><a href="https://sites.brown.edu/cuwip/" target="_blank">Brown University</a></th> -->
<th>
<a href="https://sites.bc.edu/cuwip/" target="_blank"
>Boston College & Wellesley College</a
>
</th>
<th>
<a
href="https://scienceweb.clemson.edu/cuwipClemson/"
target="_blank"
>Clemson University</a
>
</th>
</tr>
<tr>
<th>
<a
href="https://sites.google.com/view/cuny-cuwip2024/"
target="_blank"
>City University of New York, Graduate Center</a
>
</th>
<th>
<a
href="https://sites.gatech.edu/cuwip/"
target="_blank"
>Georgia Institute of Technology</a
>
</th>
</tr>
<tr>
<th>
<a href="https://sites.mst.edu/cuwip/" target="_blank"
>Missouri University of Science & Technology</a
>
</th>
<th>
<a href="https://www.montana.edu/cuwip/" target="_blank"
>Montana State University</a
>
</th>
</tr>
<tr>
<th>
<a
href="https://sites.google.com/stanford.edu/cuwip2024"
target="_blank"
>Stanford University & SLAC National Accelerator
Laboratory</a
>
</th>
<th>
<a href="http://apscuwipattulane.com/" target="_blank"
>Tulane University</a
>
</th>
</tr>
<tr>
<th>
<a
href="https://www.westpoint.edu/conference-for-undergraduate-women-in-physics"
target="_blank"
>United State Military Academy, West Point</a
>
</th>
<th>
<a
href="https://sites.google.com/umich.edu/cuwip2024"
target="_blank"
>University of Michigan, Ann Arbor</a
>
</th>
</tr>
<tr>
<th>
<a
href="https://web.sas.upenn.edu/cuwip-2024/"
target="_blank"
>University of Pennsylvania</a
>
</th>
<th>
<a
href="https://sites.google.com/view/usdcuwip2024/home"
target="_blank"
>University of San Diego</a
>
</th>
</tr>
<tr>
<th>
<a
href="https://cuwip.sandbox.wvu.edu/home"
target="_blank"
>West Virginia University</a
>
</th>
</tr>
</table>
</article>
<!-- <div class="row gtr-150">
<div class="col-6 col-12-small">
<section class="box">
<header>
<h2>Magna pulvinar tempus</h2>
</header>
<a href="#" class="image featured"><img src="images/pic05.jpg" alt="" /></a>
<p>Rutrum bibendum. Proin pellentesque diam non ligula commodo tempor. Vivamus
eget urna nibh. Curabitur non fringilla nisl. Donec accumsan interdum nisi, quis
tempus.</p>
<a href="#" class="button style1">More</a>
</section>
</div>
<div class="col-6 col-12-small">
<section class="box">
<header>
<h2>Magna pulvinar tempus</h2>
</header>
<a href="#" class="image featured"><img src="images/pic06.jpg" alt="" /></a>
<p>Rutrum bibendum. Proin pellentesque diam non ligula commodo tempor. Vivamus
eget urna nibh. Curabitur non fringilla nisl. Donec accumsan interdum nisi, quis
tempus.</p>
<a href="#" class="button style1">More</a>
</section>
</div> -->
</div>
</div>
<!-- <a href="#" class="image featured">
Map Goes here:
<img src="images/pic01.jpg" alt="" />
</a> -->
</div>
<!-- Features -->
<!-- <section id="features">
<header class="style1">
<h2>Dolor consequat feugiat amet veroeros</h2>
<p>Feugiat dolor nullam orci pretium phasellus justo</p>
</header>
<div class="feature-list">
<div class="row">
<div class="col-6 col-12-medium">
<section>
<h3 class="icon fa-comment">Mattis velit diam vulputate</h3>
<p>Eget mattis at, laoreet vel et velit aliquam diam ante, aliquet sit amet vulputate et magna feugiat laoreet vel velit lorem.</p>
</section>
</div>
<div class="col-6 col-12-medium">
<section>
<h3 class="icon solid fa-sync">Lorem ipsum dolor sit veroeros</h3>
<p>Eget mattis at, laoreet vel et velit aliquam diam ante, aliquet sit amet vulputate et magna feugiat laoreet vel velit lorem.</p>
</section>
</div>
<div class="col-6 col-12-medium">
<section>
<h3 class="icon fa-image">Pretium phasellus justo lorem</h3>
<p>Eget mattis at, laoreet vel et velit aliquam diam ante, aliquet sit amet vulputate et magna feugiat laoreet vel velit lorem.</p>
</section>
</div>
<div class="col-6 col-12-medium">
<section>
<h3 class="icon solid fa-cog">Tempus sed pretium orci</h3>
<p>Eget mattis at, laoreet vel et velit aliquam diam ante, aliquet sit amet vulputate et magna feugiat laoreet vel velit lorem.</p>
</section>
</div>
<div class="col-6 col-12-medium">
<section>
<h3 class="icon solid fa-wrench">Aliquam consequat et feugiat</h3>
<p>Eget mattis at, laoreet vel et velit aliquam diam ante, aliquet sit amet vulputate et magna feugiat laoreet vel velit lorem.</p>
</section>
</div>
<div class="col-6 col-12-medium">
<section>
<h3 class="icon solid fa-check">Dolore laoreet aliquam mattis</h3>
<p>Eget mattis at, laoreet vel et velit aliquam diam ante, aliquet sit amet vulputate et magna feugiat laoreet vel velit lorem.</p>
</section>
</div>
</div>
</div> -->
<!-- <ul class="actions special">
<li><a href="#" class="button style1 large">Get Started</a></li>
<li><a href="#" class="button style2 large">More Info</a></li>
</ul>
</section> -->
</div>
</section>
<!-- Sponsors -->
<section id="highlights" class="wrapper style3">
<div class="title">Sponsors</div>
<div class="container">
<p>
These conferences are supported in part by the National Science
Foundation (PHY-1346627, PHY-1622510, and PHY-2012033) and by the
Department of Energy (DE-SC0011076). Any opinions, findings, and
conclusions or recommendations expressed are those of the author(s)
and do not necessarily reflect the views of the National Science
Foundation or the Department of Energy. Further details are
available on
<a
target="_blank"
href="https://www.aps.org/programs/women/cuwip/index.cfm"
>the APS conference website</a
>.
</p>
<!-- <p>These conferences are supported in part by the National Science Foundation (PHY-1346627and PHY-1622510) and by the Department of Energy Office of Science (DE-SC0011076). Further details are available on <a target="_blank" href="https://www.aps.org/programs/women/cuwip/index.cfm">the APS conference website</a>. A list of the sponsors for CUWiP @ UArizona 2024 are listed below.</p> -->
<div class="row aln-center">
<div class="col-2 col-4-medium">
<section class="highlight">
<a
target="_blank"
href="https://www.nsf.gov/"
class="image featured"
><img src="images/NSF.jpg" alt=""
/></a>
<h3>
<a target="_blank" href="https://www.nsf.gov/"
>National Science Foundation</a
>
</h3>
<!-- <p>Eget mattis at, laoreet vel amet sed velit aliquam diam ante, dolor aliquet sit amet vulputate mattis amet laoreet lorem.</p> -->
<!-- <ul class="actions">
<li><a href="#" class="button style1">Learn More</a></li>
</ul> -->
</section>
</div>
<div class="col-2 col-4-medium">
<section class="highlight">
<a
target="_blank"
href="https://www.energy.gov/"
class="image featured"
><img src="images/DOE.jpg" alt=""
/></a>
<h3>
<a target="_blank" href="https://www.energy.gov/"
>Dept. of Energy</a
>
</h3>
<!-- <p>Eget mattis at, laoreet vel amet sed velit aliquam diam ante, dolor aliquet sit amet vulputate mattis amet laoreet lorem.</p> -->
<!-- <ul class="actions">
<li><a href="#" class="button style1">Learn More</a></li>
</ul> -->
</section>
</div>
<div class="col-2 col-4-medium">
<section class="highlight">
<a
target="_blank"
href="https://www.aps.org/"
class="image featured"
><img src="images/APS.jpg" alt=""
/></a>
<h3>
<a target="_blank" href="https://www.aps.org/"
>American Physical Society</a
>
</h3>
<!-- <p>Eget mattis at, laoreet vel amet sed velit aliquam diam ante, dolor aliquet sit amet vulputate mattis amet laoreet lorem.</p> -->
<!-- <ul class="actions">
<li><a href="#" class="button style1">Learn More</a></li>
</ul> -->
</section>
</div>
<div class="col-2 col-4-medium">
<section class="highlight">
<a
target="_blank"
href="https://w3.physics.arizona.edu/"
class="image featured"
><img src="images/Physics.jpg" alt=""
/></a>
<h3>
<a target="_blank" href="https://w3.physics.arizona.edu/"
>Dept. of Physics</a
>
</h3>
<!-- <p>Eget mattis at, laoreet vel amet sed velit aliquam diam ante, dolor aliquet sit amet vulputate mattis amet laoreet lorem.</p> -->
<!-- <ul class="actions">
<li><a href="#" class="button style1">Learn More</a></li>
</ul> -->
</section>
</div>
<div class="col-2 col-4-medium">
<section class="highlight">
<a
target="_blank"
href="https://www.as.arizona.edu/"
class="image featured"
><img src="images/Steward.jpg" alt=""
/></a>
<h3>
<a target="_blank" href="https://www.as.arizona.edu/"
>Dept. of Astronomy</a
>
</h3>
<!-- <p>Eget mattis at, laoreet vel amet sed velit aliquam diam ante, dolor aliquet sit amet vulputate mattis amet laoreet lorem.</p> -->
<!-- <ul class="actions">
<li><a href="#" class="button style1">Learn More</a></li>
</ul> -->
</section>
</div>
</div>
<div class="row aln-center">
<div class="col-2 col-4-medium">
<section class="highlight">
<a
target="_blank"
href="https://noirlab.edu/public/"
class="image featured"
><img src="images/NOIRLab.jpg" alt=""
/></a>
<h3>
<a target="_blank" href="https://noirlab.edu/public/"
>NOIRLab</a
>
</h3>
<!-- <p>Eget mattis at, laoreet vel amet sed velit aliquam diam ante, dolor aliquet sit amet vulputate mattis amet laoreet lorem.</p> -->
<!-- <ul class="actions">
<li><a href="#" class="button style1">Learn More</a></li>
</ul> -->
</section>
</div>
<div class="col-2 col-4-medium">
<section class="highlight">
<a
target="_blank"
href="https://www.lpl.arizona.edu/"
class="image featured"
><img src="images/LPL.jpg" alt=""
/></a>
<h3>
<a target="_blank" href="https://www.lpl.arizona.edu/"
>Lunar & Planetary Lab.</a
>
</h3>
<!-- <p>Eget mattis at, laoreet vel amet sed velit aliquam diam ante, dolor aliquet sit amet vulputate mattis amet laoreet lorem.</p> -->
<!-- <ul class="actions">
<li><a href="#" class="button style1">Learn More</a></li>
</ul> -->
</section>
</div>
<!-- <div class="col-2 col-4-medium">
<section class="highlight">
<a target="_blank" href="https://www.math.arizona.edu/" class="image featured"><img src="images/Math.jpg" alt="" /></a>
<h3><a target="_blank" href="https://www.math.arizona.edu/">Dept. of Mathematics</a></h3> -->
<!-- <p>Eget mattis at, laoreet vel amet sed velit aliquam diam ante, dolor aliquet sit amet vulputate mattis amet laoreet lorem.</p> -->
<!-- <ul class="actions">
<li><a href="#" class="button style1">Learn More</a></li>
</ul> -->
<!-- </section>
</div> -->
<div class="col-2 col-4-medium">
<section class="highlight">
<a
target="_blank"
href="https://provost.arizona.edu/"
class="image featured"
><img src="images/Provost.jpg" alt=""
/></a>
<h3>
<a target="_blank" href="https://provost.arizona.edu/"
>Office of the Provost</a
>
</h3>
<!-- <p>Eget mattis at, laoreet vel amet sed velit aliquam diam ante, dolor aliquet sit amet vulputate mattis amet laoreet lorem.</p> -->
<!-- <ul class="actions">
<li><a href="#" class="button style1">Learn More</a></li>
</ul> -->
</section>
</div>
<div class="col-2 col-4-medium">
<section class="highlight">
<a
target="_blank"
href="https://www.hsfoundation.org/"
class="image featured"
><img src="images/HeisingSimons.png" alt=""
/></a>
<h3>
<a target="_blank" href="https://www.hsfoundation.org/"
>Heising-Simons Foundation</a
>
</h3>
<!-- <p>Eget mattis at, laoreet vel amet sed velit aliquam diam ante, dolor aliquet sit amet vulputate mattis amet laoreet lorem.</p> -->
<!-- <ul class="actions">
<li><a href="#" class="button style1">Learn More</a></li>
</ul> -->
</section>
</div>
<div class="col-2 col-4-medium">
<section class="highlight">
<a
target="_blank"
href="https://rescorp.org/"
class="image featured"
><img src="images/ResearchCorp.jpg" alt=""
/></a>
<h3>
<a target="_blank" href="https://rescorp.org/"
>Research Corporation</a
>
</h3>
<!-- <p>Eget mattis at, laoreet vel amet sed velit aliquam diam ante, dolor aliquet sit amet vulputate mattis amet laoreet lorem.</p> -->
<!-- <ul class="actions">
<li><a href="#" class="button style1">Learn More</a></li>
</ul> -->
</section>
</div>
</div>
<div class="row aln-center">
<div class="col-2 col-4-medium">
<section class="highlight">
<a
target="_blank"
href="https://physics.asu.edu/"
class="image featured"
><img src="images/ASUphys.jpg" alt=""
/></a>
<h3>
<a target="_blank" href="https://physics.asu.edu/"
>Dept. of Physics, Arizona State Univ.</a
>
</h3>
<!-- <p>Eget mattis at, laoreet vel amet sed velit aliquam diam ante, dolor aliquet sit amet vulputate mattis amet laoreet lorem.</p> -->
<!-- <ul class="actions">
<li><a href="#" class="button style1">Learn More</a></li>
</ul> -->
</section>
</div>
<div class="col-2 col-4-medium">
<section class="highlight">
<a
target="_blank"
href="https://www.kinetx.com/"
class="image featured"
><img src="images/KinetX.jpg" alt=""
/></a>
<h3>
<a target="_blank" href="https://www.kinetx.com/"
>KinetX Aerospace</a
>
</h3>
<!-- <p>Eget mattis at, laoreet vel amet sed velit aliquam diam ante, dolor aliquet sit amet vulputate mattis amet laoreet lorem.</p> -->
<!-- <ul class="actions">
<li><a href="#" class="button style1">Learn More</a></li>
</ul> -->
</section>
</div>
<!-- <div class="col-2 col-4-medium">
<section class="highlight">
<a target="_blank" href="https://research.arizona.edu/" class="image featured"><img src="images/Research.jpg" alt="" /></a>
<h3><a target="_blank" href="https://research.arizona.edu/">Research, Innovation & Impact</a></h3> -->
<!-- <p>Eget mattis at, laoreet vel amet sed velit aliquam diam ante, dolor aliquet sit amet vulputate mattis amet laoreet lorem.</p> -->
<!-- <ul class="actions">
<li><a href="#" class="button style1">Learn More</a></li>
</ul> -->
<!-- </section>
</div> -->
<div class="col-2 col-4-medium">
<section class="highlight">
<a
target="_blank"
href="https://science.arizona.edu/"
class="image featured"
><img src="images/Science.jpg" alt=""
/></a>
<h3>
<a target="_blank" href="https://science.arizona.edu/"
>College of Science</a
>
</h3>
<!-- <p>Eget mattis at, laoreet vel amet sed velit aliquam diam ante, dolor aliquet sit amet vulputate mattis amet laoreet lorem.</p> -->
<!-- <ul class="actions">
<li><a href="#" class="button style1">Learn More</a></li>
</ul> -->
</section>
</div>
<!-- <div class="col-2 col-4-medium">
<section class="highlight">
<a target="_blank" href="https://diversity.arizona.edu/" class="image featured"><img src="images/Diversity.jpg" alt="" /></a>
<h3><a target="_blank" href="https://diversity.arizona.edu/">Diversity & Inclusion</a></h3> -->
<!-- <p>Eget mattis at, laoreet vel amet sed velit aliquam diam ante, dolor aliquet sit amet vulputate mattis amet laoreet lorem.</p> -->
<!-- <ul class="actions">
<li><a href="#" class="button style1">Learn More</a></li>
</ul> -->
<!-- </section>
</div> -->
<div class="col-2 col-4-medium">
<section class="highlight">
<a
target="_blank"
href="https://grad.arizona.edu/"
class="image featured"
><img src="images/UA_GRAD.jpg" alt=""
/></a>
<h3>
<a target="_blank" href="https://grad.arizona.edu/"
>Graduate College</a
>
</h3>
<!-- <p>Eget mattis at, laoreet vel amet sed velit aliquam diam ante, dolor aliquet sit amet vulputate mattis amet laoreet lorem.</p> -->
<!-- <ul class="actions">
<li><a href="#" class="button style1">Learn More</a></li>
</ul> -->
</section>
</div>
</div>
</div>
</section>
<!-- Sponsors -->
<!-- Footer -->
<section id="footer" class="wrapper">
<div class="title">Get In Touch</div>
<div class="container">
<!-- <header class="style1">
<h2>Need to get in touch?</h2>
<p>
Reach out <br />
Nam pharetra laoreet imperdiet volutpat etiam feugiat.
</p>
</header> -->
<div class="row">
<!-- <div class="col-6 col-12-medium">
<section>
<form method="post" action="https://formspree.io/f/xnqlbyqa">
<div class="row gtr-50">
<div class="col-6 col-12-small">
<input type="text" name="name" id="contact-name" placeholder="Name" />
</div>
<div class="col-6 col-12-small">
<input type="email" name="email" id="contact-email" placeholder="Email" />
</div>
<div class="col-12">
<textarea name="message" id="contact-message" placeholder="Message" rows="4"></textarea>
</div>
<div class="col-12">
<ul class="actions">
<li><input type="submit" class="style1" value="Send" /></li>
<li><input type="reset" class="style2" value="Reset" /></li>
</ul>
</div>
</div>
</form>
</section>
</div> -->
<div class="col-12 col-12-medium">
<!-- Contact -->
<section class="feature-list small">
<div class="row">
<div class="col-3 col-12-small">
<section>
<h3 class="icon solid fa-envelope">Main Contact</h3>
<p>
Vasileios Paschalidis
<a target="_blank" href="mailto:cuwip@arizona.edu"
>cuwip@arizona.edu</a
>
</p>
</section>
</div>
<div class="col-3 col-12-small">
<section>
<h3 class="icon solid fa-comment">Social</h3>
<p>
CUWiP:<br />
<a
href="https://twitter.com/CUWiP_AZ_2024"
target="_blank"
>twitter</a
>,
<a
href="https://www.facebook.com/groups/625200048670153"
target="_blank"
>facebook</a
><br />
Physics:<br />
<a
href="https://facebook.com/ArizonaWiP/"
target="_blank"
>WiP facebook</a
><br />
Astronomy:<br />
<a href="https://twitter.com/azstewobs" target="_blank"
>twitter</a
>,
<a
href="https://www.facebook.com/azstewobs/"
target="_blank"
>facebook</a
><br />
NOIRLab:<br />
<a
href="https://twitter.com/NOIRLabAstro"
target="_blank"
>twitter</a
>,
<a
href="https://www.facebook.com/NOIRLabAstro/"
target="_blank"
>facebook</a
>,
<a
href="https://www.instagram.com/noirlabastro/"
target="_blank"
>instagram</a
>
</p>
</section>
</div>
<!-- <div class="col-3 col-12-small">
<section>
<h3 class="icon solid fa-envelope">Email</h3>
<p>
<a target="_blank" href="mailto:cuwip@arizona.edu">cuwip@arizona.edu</a>
</p>
</section>
</div> -->
<div class="col-3 col-12-small">
<section>
<h3 class="icon solid fa-home">Street Address</h3>
<p>
Department of Physics<br />
Physics-Atmospheric Sciences (PAS)<br />
1118 E. Fourth Street<br />
Tucson, AZ