-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconferences.html
418 lines (367 loc) · 21.7 KB
/
conferences.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
<!DOCTYPE HTML>
<html>
<head>
<title>HIV SUCCESS</title>
<link rel="shortcut icon" type="image/x-icon" href="images/HIV Success Icon + Ribbon_mini.png" />
<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" />
<noscript><link rel="stylesheet" href="assets/css/noscript.css" /></noscript>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-483Y66X3X1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-483Y66X3X1');
</script>
</head>
<body class="is-preload">
<!--Menu-->
<section id="sidebar">
<div class="inner">
<nav>
<ul>
<li><a href="index.html" class="smooth-scroll-middle">Overview</a></li>
<li><a href="cohorts.html" class="smooth-scroll-middle">Cohorts</a></li>
<li><a href="data.html" class="smooth-scroll-middle">Data</a></li>
<li><a href="conferences.html" class="smooth-scroll-middle">Conferences</a></li>
<li><a href="opportunities.html" class="smooth-scroll-middle">Opportunities</a></li>
<li><a href="funding.html" class="smooth-scroll-middle">Pilot Funding</a></li>
<!--<li><a href="mentoring.html" class="smooth-scroll-middle">Mentoring</a></li>-->
<!--<li><a href="tools.html" class="smooth-scroll-middle">Tools</a></li>-->
<li><a href="publications.html" class="smooth-scroll-middle">Publications</a></li>
<li><a href="members.html" class="smooth-scroll-middle">HIV SUCCESS Members</a></li>
<li><a href="http://internal.hivsuccess.uw.edu/" class="smooth-scroll-middle">Internal</a></li>
</ul>
</nav>
</div>
</section>
<section id="hambagaMenu" role="navigation">
<div id="menuToggle">
<!-- A fake / hidden checkbox is used as click reciever, so you can use the :checked selector on it. -->
<input type="checkbox" />
<!-- Some spans to act as a hamburger. They are acting like a real hamburger, not that McDonalds stuff. -->
<span></span>
<span></span>
<span></span>
<!-- Too bad the menu has to be inside of the button but hey, it's pure CSS magic. -->
<ul id="menu">
<li><a href="index.html" class="smooth-scroll-middle" style="text-decoration: none;">Overview</a></li>
<li><a href="cohorts.html" class="smooth-scroll-middle" style="text-decoration: none;">Cohorts</a></li>
<li><a href="data.html" class="smooth-scroll-middle" style="text-decoration: none;">Data</a></li>
<li><a href="conferences.html" class="smooth-scroll-middle" style="text-decoration: none;">Conferences</a></li>
<li><a href="opportunities.html" class="smooth-scroll-middle" style="text-decoration: none;">Opportunities</a></li>
<li><a href="funding.html" class="smooth-scroll-middle" style="text-decoration: none;">Pilot Funding</a></li>
<!--<li><a href="mentoring.html" class="smooth-scroll-middle" style="text-decoration: none;">Mentoring</a></li>-->
<!--<li><a href="tools.html" class="smooth-scroll-middle" style="text-decoration: none;">Tools</a></li>-->
<li><a href="publications.html" class="smooth-scroll-middle" style="text-decoration: none;">Publications</a></li>
<li><a href="members.html" class="smooth-scroll-middle" style="text-decoration: none;">HIV SUCCESS Members</a></li>
<li><a href="http://internal.hivsuccess.uw.edu/" class="smooth-scroll-middle" style="text-decoration: none;">Internal</a></li>
</ul>
</div>
</section>
<!-- Wrapper -->
<div id="wrapper" class="divided">
<!-- One -->
<section class="wrapper style1 align-left">
<div class="inner medium" style="width: 90%;" >
<h1><img src="images/HIV Success Icon + Ribbon.png" style="height: 0.7em;"> HIV SUCCESS Conferences</h1>
<div class="index align-left">
<!-- Template
<section>
<header>
<h3>CONFERENCE</h3>
<h4>AGENCY</h4>
</header>
<div class="content">
<code style="white-space: nowrap;"><a href="URL" target="_blank">More Information</a></code>
<code style="white-space: nowrap;">Date: TBD</code>
<code style="white-space: nowrap;">Location: <em>Virtual</em></code>
<code style="white-space: nowrap;">Abstract Submission Deadline: TBD</code>
</div>
</section>
-->
<section>
<header>
<h3>CROI</h3>
<h4>Conference on Retroviruses and Opportunistic Infections</h4>
</header>
<div class="content">
<p>The Conference on Retroviruses and Opportunistic Infections (CROI) provides a forum for basic scientists and clinical investigators to present, discuss, and critique their investigations into the epidemiology and biology of human retroviruses and associated diseases.</p>
<code style="white-space: nowrap;"><a href="https://www.croiconference.org/" target="_blank">More Information</a></code>
<code style="white-space: nowrap;">Dates: March 9-12, 2025</code>
<code style="white-space: nowrap;">Venue: <em>San Francisco, CA</em></code>
<!--<code style="white-space: nowrap;">Late Breaker Submission Deadline: December 1, 2023</code>-->
</div>
<br />
</section>
<section>
<header>
<h3>SBM</h3>
<h4>Society of Behavioral Medicine</h4> </header>
<div class="content">
<p>The Society of Behavioral Medicine annual meeting brings together scientists, professionals, healthcare providers, government agencies, corporate partners, legislator, non-governmental organizational partners, and students to share cutting edge science and the latest policies and tools to support the best behavioral medicine strategies. </p>
<code style="white-space: nowrap;"><a href="https://www.sbm.org/meetings/2025" target=_blank>More Information</a></code>
<code style="white-space: nowrap;">Date: March 26-29, 2025</code>
<code style="white-space: nowrap;">Location: <em>San Francisco, CA</em></code>
<!--<code style="white-space: nowrap;">Abstract Submission Deadline: 9/13/2021</code>-->
</div>
</section>
<section>
<header>
<h3>IWHOD</h3>
<h4>International Workshop on HIV and Hepatitis Observational DatabasesIWHOD 2025</h4>
</header>
<div class="content">
<p>IWHOD brings senior and junior HIV and hepatitis observational database researchers together to advance the methodology and analysis of observational data.</p>
<code style="white-space: nowrap;"><a href="https://iwhod.org" target=_blank>More Information</a></code>
<code style="white-space: nowrap;">Date: March 27-29, 2025</code>
<code style="white-space: nowrap;">Location: <em>Toledo, Spain</em></code>
<!--<code style="white-space: nowrap;">Abstract Submission: November 3 – December 11, 2024</code>-->
</div>
</section>
<section>
<header>
<h3>ASAM</h3>
<h4>The American Society of Addiction Medicine Conference</h4> </header>
<div class="content">
<code style="white-space: nowrap;"><a href="https://annualconference.asam.org/" target=_blank >More Information</a></code>
<code style="white-space: nowrap;">Date: April 24-27, 2025</code>
<code style="white-space: nowrap;">Location: <em>Denver, CO</em></code>
<code style="white-space: nowrap;">Abstract Submission Deadline: January 22, 2025</code>
<code style="white-space: nowrap;"><a href="https://asamannual2025.eventscribe.net/aaStatic.asp?SFP=V05HWU5TQlpAMTg4MzRAQ2FsbCBmb3IgQWJzdHJhY3Rz">Abstract Submission</a></code>
</div>
</section>
<!--<section>
<header>
<h3>AATOD</h3>
<h4>The American Association for the Treatment of Opioid Dependence</h4>
</header>
<div class="content">
<p>The American Association for the Treatment of Opioid Dependence focuses on disseminating evidence-based initiatives and treatments to help support the health and well-being of people who use drugs and support policy and treatments that make a difference in their lives.</p>
<code style="white-space: nowrap;"><a href="https://aatod.eventscribe.net/" target=_blank >More Information</a></code>
<code style="white-space: nowrap;">Date: May 18-22, 2024</code>
<code style="white-space: nowrap;">Location: <em>Las Vegas, Nevada</em></code>
<code style="white-space: nowrap;">Abstract Submission Deadline: 3/6/2022</code>
</div>
</section>-->
<section>
<header>
<h3>ISAM</h3>
<h4>International Society of Addiction Medicine</h4>
</header>
<div class="content">
<p>The International Society of Addiction Medicine Annual Conference focuses on disseminating new research findings, innovative practices, sociopolitical ideas and new approaches to treatment information.</p>
<code style="white-space: nowrap;"><a href="https://isamweb.org/annual/" target=_blank>More Information</a></code>
<code style="white-space: nowrap;">Date: May 26-28, 2025</code>
<code style="white-space: nowrap;">Location: <em>Hamburg, Germany</em></code>
<!--<code style="white-space: nowrap;">Abstract Submission Deadline: 5/31/2022</code>
</div>
</section>
<section>
<header>
<h3>NCAD - EAST (East Coast Symposium)</h3>
<h4>National Conference on Alcohol and Addiction Disorders</h4>
</header>
<div class="content">
<p>The East Coast Symposium, formerly known as NCAD East, brings together like-minded individuals to discuss how to address significant challenges in addiction treatment and learn the latest, most effective strategies for addiction treatment and behavioral health. </p>
<code style="white-space: nowrap;"><a href="https://www.eastcoastsymposium.com/" target=_blank>More Information</a></code>
<code style="white-space: nowrap;">Date: November 3-5, 2023</code>
<code style="white-space: nowrap;">Location: <em>Ponte Vedra Beach, FL</em></code>-->
</div>
</section>
<section>
<header>
<h3>SPR</h3>
<h4>Society for Prevention Research</h4>
</header>
<div class="content">
<p>Prevention science conference focusing on evidence-based programs policy and science to support health and well-being of all people. The Society for Prevention Research Annual Meeting is a centrally integrated forum for the exchange of new concepts, methods, and results from prevention research. It provides opportunities for scientists, public policy leaders and practitioners to convene and discuss the best strategies for public health.</p>
<code style="white-space: nowrap;"><a href="https://preventionresearch.org/2025-annual-meeting/" target="_blank">More Information</a></code>
<code style="white-space: nowrap;">Dates: May 27-30, 2025 </code>
<code style="white-space: nowrap;">Venue: <em>Seattle, WA</em></code>
<!--code style="white-space: nowrap;"><a href="URL">Registration</a> </code
<code style="white-space: nowrap;">Abstract Submission Deadline: October 31, 2023 </code>
</div>
<br />
</section>
<section>
<header>
<h3>NCAD - WEST (Rocky Mountain Symposium)</h3>
<h4>National Conference on Alcohol and Addiction Disorders</h4>
</header>
<div class="content">
<p>The West Coast Symposium focuses on addressing significant challenges in addiction treatment. It brings together like-minded peers addiction treatment and behavioral health research and practice to share knowledge and discuss the most effective strategies for addiction treatment.</p>
<code style="white-space: nowrap;"><a href="https://www.hmpglobalevents.com/west-coast-symposium" target=_blank>More Information</a></code>
<code style="white-space: nowrap;">Date: May 30 - June 1, 2024</code>
<code style="white-space: nowrap;">Location: <em>Palm Springs, CA</em></code>-->
</div>
</section>
<section>
<header>
<h3>SER</h3>
<h4>Society for Epidemiologic Research</h4>
</header>
<div class="content">
<p>The Annual Meeting of the Society for Epidemiological Research focuses on keeping epidemiologists at the vanguard of scientific developments.</p>
<code style="white-space: nowrap;"><a href="https://epiresearch.org/annual-meeting/2025-meeting/" target=_blank>More Information</a></code>
<code style="white-space: nowrap;">Date: June 10-13, 2025</code>
<code style="white-space: nowrap;">Location: <em>Boston, MA</em></code>
<!--<code style="white-space: nowrap;">Abstract Submission Deadline: 1/14/2022</code>
<code style="white-space: nowrap;">Late Breaker Submission Deadline: 3/4/2022</code>-->
</div>
</section>
<section>
<header>
<h3>Continuum</h3>
<h4></h4>
</header>
<div class="content">
<p>International Association of Providers of AIDS Care (IAPAC) hosted conference focusing on evidence, best pratice and implementation of interventions to maximize therapeitic and preventative effects of antiretroviral treatment</p>
<code style="white-space: nowrap;"><a href="https://www.iapac.org/conferences/continuum-2025/" target="_blank">More Information</a></code>
<code style="white-space: nowrap;">Dates: June 10-12, 2025 </code>
<code style="white-space: nowrap;">Location: <em>San Juan, Puerto Rico</em></code>
<code style="white-space: nowrap;">Abstract Submission Deadline: February 14, 2025</code>
</div>
<br />
</section>
<section>
<header>
<h3>CPDD</h3>
<h4>College on Problems of Drug Dependence</h4>
</header>
<div class="content">
<p>A national and international forum for scientists of diverse backgrounds to advance the understanding of molecular-neurobiological aspects of addictive disorders.</p>
<code style="white-space: nowrap;"><a href="https://cpdd.org/meetings/current-meeting/" target=_blank>More Information</a></code>
<code style="white-space: nowrap;">Date: June 14-18, 2025</code>
<code style="white-space: nowrap;">Location: <em>New Orleans, LA</em></code>
<!--<code style="white-space: nowrap;">Abstract Submission Deadline: Open Soon</code>
<code style="white-space: nowrap;">Late Breaker Submission Deadline: 4/15/2022</code>-->
</div>
</section>
<section>
<header>
<h3>IAS/ AIDS</h3>
</header>
<div class="content">
<p>This biennial conference presents the critical advances in basic, clinical and operational HIV research that move science into policy and practice.</p>
<code style="white-space: nowrap;"><a href="https://www.iasociety.org/conferences/ias2025" target="_blank">More Information</a></code>
<code style="white-space: nowrap;">Dates: July 13-17, 2025</code>
<code style="white-space: nowrap;">Location: <em>Kigali, Rwanda</em></code>
<code style="white-space: nowrap;">Abstract Submission Deadline: January 22, 2025</code>
<!--code style="white-space: nowrap;"><a href="URL">Registration</a> </code-->
</div>
<br />
</section>
<section>
<header>
<h3>NAADAC Annual Conference</h3>
<h4>The Association for Addiction Professionals</h4>
</header>
<div class="content">
<p>Addiction specific, immersive experience focused on training sessions, education, live question and answer sessions, panel discussions, poster sessions, and more.</p>
<code style="white-space: nowrap;"><a href="https://www.naadac.org/annualconference" target=_blank>More Information</a></code>
<code style="white-space: nowrap;">Date: October 11-13, 2025</code>
<code style="white-space: nowrap;">Location: <em>Seattle, WA</em></code>
<!--<code style="white-space: nowrap;">Abstract Submission Deadline: (closed)</code>-->
</div>
<br />
</section>
<section>
<header>
<h3>IDWeek</h3>
<h4>Infectious Diseases Society of America</h4>
</header>
<div class="content">
<p>A conference to update infectious diseases professionals, bridge the gaps among clinical practice and research, provide training in skills that promote the Infectious Disease specialty.</p>
<code style="white-space: nowrap;"><a href="https://idweek.org" target=_blank>More Information</a></code>
<code style="white-space: nowrap;">Date: October 19-22, 2025</code>
<code style="white-space: nowrap;">Location: <em>Atlanta, GA</em></code>
<!--code style="white-space: nowrap;">Abstract Submission Deadline: 5/4/2022</code>
<code style="white-space: nowrap;">Late Breaker Submission Deadline: 7/27/2022</code>-->
</div>
<br />
</section>
<section>
<header>
<h3>APHA</h3>
<h4>American Public Health Association</h4>
</header>
<div class="content">
<p>The American Public Health Association’s Annual Meeting and Expo brings together public health experts and researcher to discuss the latest scientific innovations in public health research.</p>
<code style="white-space: nowrap;"><a href="https://www.apha.org/events-and-meetings/annual" target=_blank>More Information</a></code>
<code style="white-space: nowrap;">Date: Nov 2-5, 2025</code>
<code style="white-space: nowrap;">Location: <em>Washington DC</em></code>
<!--<code style="white-space: nowrap;">Abstract Submission Deadline: 4/30/2022</code> -->
</div>
<br />
</section>
<section>
<header>
<h3>AAAP</h3>
<h4>American Academy of Addiction Psychiatry</h4>
</header>
<div class="content">
<p>The American Academy of Addiction Psychiatry Annual Meeting focuses on the latest scientific developments in substance use disorders and co-occurring psychiatric disorders.</p>
<code style="white-space: nowrap;"><a href="https://www.aaap.org/training-events/annual-meeting/about-the-aaap-annual-meeting/" target=_blank>More Information</a></code>
<code style="white-space: nowrap;">Date: November 6-9, 2025</code>
<code style="white-space: nowrap;">Location: <em>San Francisco, CA</em></code>
<!--<code style="white-space: nowrap;">Abstract Submission Deadline: 6/22/2022</code>-->
</div>
</section>
<br />
<section>
<section>
<header>
<h3>ICASA 2023</h3>
<h4>22nd International Conference in AIDS and STI in Africa</h4>
</header>
<div class="content">
<p>This biennial conference is a major bilingual international AIDS science forum, which alternates between anglophone and francophone African countries.</p>
<code style="white-space: nowrap;"><a href="https://www.saafrica.org" target="_blank">More Information</a></code>
<code style="white-space: nowrap;">Dates: December 3-8, 2025 </code>
<code style="white-space: nowrap;">Location: <em>Accra, Ghana</em></code>
<!--code style="white-space: nowrap;"><a href="URL">Registration</a> </code
<code style="white-space: nowrap;">Abstract Submission: Closed</code>-->
</div>
<br />
</section>
<!--<section>
<header>
<h3>National Prevention Network</h3>
<h4>National Prevention Network</h4>
</header>
<div class="content">
<code style="white-space: nowrap;"><a href="http://npnconference.org" target=_blank>More Information</a></code>
<code style="white-space: nowrap;">Date: August 23-25, 2022</code>
<code style="white-space: nowrap;">Location: <em>Virtual Meeting</em></code>
<code style="white-space: nowrap;">Abstract Submission Deadline: 4/18/2022</code>
</div>
</section>-->
</div>
</section>
<!-- Seven -->
<section class="wrapper style1 align-center">
<div class="inner medium">
<h2>Questions? Comments? Looking to connect with researchers in Substance Use and/or HIV?</h2>
<h3><a href="mailto:[email protected]"><u><br/>contact us</u></a> at [email protected]</h3>
</div>
</section>
<!-- Footer -->
<footer class="wrapper style1 align-center" style="background: linear-gradient(90deg, #990091 7.2%, #F00 50.84%, #F6C949 96.41%); color: #ffffff;">
<div class="inner">
<p>© <script>document.write( new Date().getFullYear() );</script> CIRG.</p>
</div>
</footer>
</div>
<!-- Scripts -->
<script src="assets/js/jquery.min.js"></script>
<script src="assets/js/jquery.scrollex.min.js"></script>
<script src="assets/js/jquery.scrolly.min.js"></script>
<script src="assets/js/browser.min.js"></script>
<script src="assets/js/breakpoints.min.js"></script>
<script src="assets/js/util.js"></script>
<script src="assets/js/main.js"></script>
</body>
</html>