-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTreatment.html
More file actions
1085 lines (864 loc) · 60.6 KB
/
Treatment.html
File metadata and controls
1085 lines (864 loc) · 60.6 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
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>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
<title>Treatment & Rehab</title>
<link rel="stylesheet" href="assets/css/main.css" />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.0/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.0/js/bootstrap.min.js"></script>
<style type="">
h1{color: teal;}
h2{color: limegreen;}
h4{color: purple;}
h3{color: brown;}
/* Intro Section */
#tf-intro {
background-color: #3d4449;
padding: 5% 0;
font-size: 20px;
color: #ffffff;
text-align: center;
}
/* Service Section */
#tf-services { padding: 60px 0 }
.section-header {
padding: 40px 0;
text-align: center;
}
.section-header h2 { text-transform: uppercase }
.section-header h5 { letter-spacing: 1px }
.fancy {
line-height: 0.5;
text-align: center;
margin-bottom: 40px;
margin-top: 20px;
}
.fancy span {
display: inline-block;
position: relative;
}
.fancy span:before,
.fancy span:after {
content: "";
position: absolute;
height: 5px;
border-bottom: 1px solid #f1f1f1;
top: 15px;
width: 400px;
}
.fancy span:before {
right: 100%;
margin-right: 10px;
}
.fancy span:after {
left: 100%;
margin-left: 10px;
}
/* service lists */
.service { margin-bottom: 20px }
.service .media-right i.fa {
text-align: center;
font-size: 30px;
background-color:#f56a6a;
color: #ffffff;
padding: 25px 0;
border-radius: 50px;
border-top-left-radius: 0;
margin: 0 10px;
margin-right: 20px;
width: 82px;
height: 80px;
transition: background-color 0.5s;
}
.service .media-left i.fa {
text-align: center;
font-size: 30px;
background-color: #f56a6a;
color: #ffffff;
padding: 25px 0;
border-radius: 50px;
border-top-right-radius: 0;
margin: 0 10px;
margin-left: 20px;
width: 82px;
height: 80px;
transition: background-color 0.5s;
}
.process:hover i.fa,
.service:hover i.fa { background-color: #333333 }
h4.media-heading {
margin-top: 0;
margin-bottom: 5px;
font-size: 16px;
font-weight: 400;
text-transform: uppercase;
color: #333;
line-height: 20px;
}
/* Why Us or Features Section */
#tf-features,
#feature { padding: 60px 0 }
.features-content { padding: 0 30px 0 }
.features-content h4 {
text-transform: uppercase;
margin-bottom: 20px;
color: #333333;
}
.nav.nav-pills > li > a {
position: relative;
display: block;
background-color: #ffffff;
padding: 25px;
border-bottom: 3px solid #cccccc;
text-transform: uppercase;
margin-bottom: 5px;
}
.nav.nav-pills > li > a small {
text-transform: lowercase;
font-style: italic;
}
.nav.nav-pills > li > a:hover,
.nav-pills > li.active > a,
.nav-pills > li.active > a:hover,
.nav-pills > li.active > a:focus {
color: #fff;
background-color: #f56a6a;
padding: 25px;
border-bottom: 3px solid #996600;
}
.nav-pills > li > a { border-radius: 4px }
ul.features li span.fa {
font-size: 35px;
vertical-align: middle;
margin-right: 20px;
float: left;
clear: both;
margin-top: 5px;
}
/* Process Section */
#tf-process { padding: 60px 0 }
.process i.fa {
text-align: center;
font-size: 30px;
background-color: #f56a6a;
color: #ffffff;
padding: 25px 0;
border: 4px solid #ffffff;
border-radius: 50px;
border-top-left-radius: 0;
margin: 0 10px;
margin-right: 20px;
width: 92px;
height: 90px;
transition: background-color 0.5s;
}
#tf-process .gray-bg { position: relative }
.gray-bg .vline {
position: absolute;
height: 100%;
padding: 5px;
border-left: 3px solid #ffffff;
left: 20%;
}
#process { padding: 60px 0 20px 0 }
.process { margin-bottom: 40px }
/* Contact Section */
/*********************************
**********************************/
#tf-contact { padding: 60px 0 }
.contact-detail {
text-align: center;
margin: 60px 0;
}
.contact-detail i.fa {
text-align: center;
font-size: 30px;
background-color: #f56a6a;
color: #ffffff;
padding: 25px 0;
border-radius: 50px;
border-top-left-radius: 0;
margin: 0 10px;
margin-right: 20px;
width: 82px;
height: 80px;
transition: background-color 0.5s;
}
.contact-detail:hover i.fa { background-color: #333333 }
form#contact-form { padding: 40px 0 }
.contact form#contact-form {padding: 0}
.form-control:focus {
border-color: #f56a6a;
outline: 0;
-webkit-box-shadow: none;
box-shadow: none;
}
.form-control {
display: block;
width: 100%;
height: 44px;
padding: 10px 12px;
font-size: 14px;
line-height: 1.42857143;
color: #555;
background-color: #fff;
background-image: none;
border: 1px solid #ccc;
border-radius: 4px;
-webkit-box-shadow: none;
box-shadow: none;
-webkit-transition: none;
-o-transition: none;
transition: none;
}
p.help-block.text-danger ul li {
display: block;
margin-left: -20px;
color: #FFCC33;
}
#success .alert-danger {
color: #FFCC33;
background-color: #FDFDFD;
border-color: #FFCC33;
margin-bottom: 10px;
}
</style>
</head>
<body class="is-preload">
<div id="wrapper">
<!-- Main -->
<div id="main">
<div class="inner">
<!-- Header -->
<header id="header" style="background-image: url(imgs/1.png)">
<a href="index.html" class="logo"><img src="imgs/logo2.png" alt="logo" style="max-width: 200px"></a>
<ul class="icons">
<li><a href="#" class="icon fa-twitter"><span class="label">Twitter</span></a></li>
<li><a href="#" class="icon fa-facebook"><span class="label">Facebook</span></a></li>
<li><a href="#" class="icon fa-snapchat-ghost"><span class="label">Snapchat</span></a></li>
<li><a href="#" class="icon fa-instagram"><span class="label">Instagram</span></a></li>
<li><a href="#" class="icon fa-medium"><span class="label">Medium</span></a></li>
</ul>
</header>
<!-- Intro Section
================================================== -->
<div id="tf-intro">
<div class="container"> <!-- container -->
<div class="row"> <!-- row -->
<div class="col-md-8 col-md-offset-2">
<p>"Drug abuse treatment plans not only help addicts detoxify in a safe environment but also assist them through all stages of the recovery process".</p>
</div>
</div><!-- end row -->
</div><!-- end container -->
</div>
<!-- Service Section
================================================== -->
<div id="tf-services">
<div class="container"> <!-- container -->
<div class= "box" style="background: mintcream">
<div class="section-header">
<h2>Treatment <span class="highlight"><strong>Choices</strong></span></h2>
<h5><em>Treatment options for addiction depend on several factors, including what type of substance it is and how it affects the patients. Typically, treatment includes a combination of inpatient and outpatient programs, counseling (psychotherapy), self-help groups, pairing with individual sponsors, and medication.</em></h5>
<div class="fancy"></div>
</div>
<div class="row"> <!-- row -->
<div class="col-md-6 text-right"> <!-- Left Content Col 6 -->
<div class="media service"> <!-- Service #1 -->
<div class="media-body">
<h4 class="media-heading">INPATIENT</h4>
<p>Inpatient programs offer the highest level of treatment care, with medically supervised detoxification and around-the-clock care and support.</p>
</div>
<div class="media-right media-middle">
<!-- Trigger the modal with a button -->
<button type="button" class="btn btn-link" data-toggle="modal" data-target="#myModal1"><i class="fa fa-user-md">
</i></button>
<!-- Modal -->
<div class="modal fade" id="myModal1" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-dialog modal-lg">
<!-- Modal content-->
<div class="modal-content">
<div class="modal-header">
<h1 class="modal-title"><h1>Inpatient Treatment </h1>
<button type="button" class="close" data-dismiss="modal">×</button>
</div>
<div class="modal-body">
<section>
<span class="image main"><img src="imgs/inpatient1.jpg" alt="" height="350px" /></span>
<hr class="major" />
<h2 style="margin-right: 50%;"><u>What is an inparient Drug Treatment?</u></h2>
<p style="width: 85%;margin-right: 50%;">Inpatient treatment, also referred to as residential treatment, provides the highest level of services for patients diagnosed with alcohol or other drug addiction. Typically, inpatient drug programs include medical detox services.Many who struggle with alcoholism find the most success with inpatient rehab treatment. Clients in this program typically begin with inpatient alcohol detox to rid their bodies of any harmful toxins from the drugs or alcohol. If necessary, they may also be prescribed medications to help reduce alcohol cravings or reduce withdrawal symptoms.
<hr class="major" />
<h2 style="margin-right: 50%;"><u>How Does Detox Work?</u></h2>
<p style="width: 85%;margin-right: 50%;">Detox is the first step in helping your brain and body heal from substance abuse. The detox process begins with evaluations by medical doctors and nurses to determine which, if any, medical interventions are needed. Detox is primarily a time to flush the chemicals from your body, which can be an uncomfortable experience without the right medical care to help ease discomfort and/or drug cravings. Hazelden Betty Ford medical staff will work with you to evaluate your level of discomfort and provide you with medications, if needed, to address any discomfort or cravings.
During the detox process, you will be medically monitored 24/7 until medical staff determine you are stable enough to take part in rehab programming and activities.</p>
<hr class="major" />
<h2 style="margin-right: 50%;"><u>How This Type Of Care Fits Into Rehabitalitation?</u></h2>
<p style="width: 85%;margin-right: 50%;">At an inpatient rehabilitation facility (IRF), clinical teams coordinate medical treatment, specialized services, rehabilitation treatments, and patient-assistance services, all while providing the emotional support and encouragement that patient need to make great strides in recovery. Patients must be able to participate in a minimum of three hours of therapy per day.
Inpatient rehabilitation care is also known as hospital-level, or acute, rehabilitation care. This sophisticated level of care is not available in other settings, such as nursing homes, skilled nursing facilities, assisted living centers or extended care centers.
At Spaulding, the expertise and resources at our IRFs enable our staff to provide a high level of coordinated rehabilitation and medical care.</p>
</section>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
</div>
</div><!-- End Service #1 -->
<div class="media service"> <!-- Service #2 -->
<div class="media-body">
<h4 class="media-heading">MEDICATIONS</h4>
<p>Certain medications can mimic the effects of addictive drugs, which relieves withdrawal symptoms and cravings.</p>
</div>
<div class="media-right media-middle">
<!-- Trigger the modal with a button -->
<button type="button" class="btn btn-link" data-toggle="modal" data-target="#myModal2"><i class="fa fa-medkit">
</i></button>
<!-- Modal -->
<div class="modal fade" id="myModal2" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-dialog modal-lg">
<!-- Modal content-->
<div class="modal-content">
<div class="modal-header">
<h1 class="modal-title"><h1>3 Medication For Alcoholism Treatment </h1>
<button type="button" class="close" data-dismiss="modal">×</button>
</div>
<div class="modal-body">
<section>
<span class="image main"><img src="imgs/medication.jpg" alt="" height="350px" /></span>
<hr class="major" />
<h2 style="margin-right: 50%;"><u>Antabuse (Disulfiram) as a Drinking Deterrent</u></h2>
<p style="width: 85%;margin-right: 50%;">Antabuse (disulfiram) was the first medicine approved for the treatment of alcohol abuse and alcohol dependence. It works by causing a severe adverse reaction when someone taking the medication consumes alcohol. Most people who take it will vomit after a drink of alcohol. This, in turn, is thought to create a deterrent to drinking.
Initially, disulfiram was given in larger dosages to produce aversion conditioning to alcohol by making the patients very sick if they drank. Later, after many reported severe reactions (including some deaths), Antabuse was administered in smaller dosages to support alcohol abstinence.</p>
<hr class="major" />
<h2 style="margin-right: 50%;"><u>Naltrexone for Alcohol Cravings</u></h2>
<p style="width: 85%;margin-right: 50%;">It works by blocking in the brain the "high" that people experience when they drink alcohol or take opioids like heroin and cocaine.
In the 1980s, animal studies discovered that naltrexone also reduced alcohol consumption. Human clinical trials followed in the late 80s and early 90s. These showed that when combined with psychosocial therapy, naltrexone could reduce alcohol cravings and decrease relapse rates in alcoholics.</p>
<hr class="major" />
<h2 style="margin-right: 50%;"><u>Campral (Acamprosate) for Discomfort</u></h2>
<p style="width: 85%;margin-right: 50%;">It works by reducing the physical distress and emotional discomfort people usually experience when they quit drinking.</p>
<hr class="major" />
<h2 style="margin-right: 50%;"><u>Medication Gave Patients an Advantage</u></h2>
<p style="width: 85%;margin-right: 50%;">According to research, medications seem to be a positive part of the winning combination for alcohol use disorders. And, it is underused as a method for treating alcoholism.
"The most robust finding in the study is that those receiving any medication did much better than those who received no pills at all," says Professor Barbara Mason, Scripps Research Institute, and an author of the study.</p>
</section>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
</div>
</div><!-- End Service #2 -->
<div class="media service"> <!-- Service #3 -->
<div class="media-body">
<h4 class="media-heading">MOTIVATION</h4>
<p>Motivational Enhancement Therapy (MET) works by helping addicted people learn how to change their own thoughts and behaviors.</p>
</div>
<div class="media-right media-middle">
<!-- Trigger the modal with a button -->
<button type="button" class="btn btn-link" data-toggle="modal" data-target="#myModal3"><i class="fa fa-hand-paper-o">
</i></button>
<!-- Modal -->
<div class="modal fade" id="myModal3" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-dialog modal-lg">
<!-- Modal content-->
<div class="modal-content">
<div class="modal-header">
<h1 class="modal-title"><h1>Motivational Enhencement </h1>
<button type="button" class="close" data-dismiss="modal">×</button>
</div>
<div class="modal-body">
<section>
<span class="image main"><img src="imgs/motiv.jpg" alt="" height="350px" /></span>
<hr class="major" />
<p style="width: 85%;margin-right: 50%;">Motivational Enhancement Therapy (MET) is an intervention and counseling approach specifically designed to evoke internally motivated change. MET is often combined with other forms of counseling for addicted people, such as the 12-Step treatment method.
<hr class="major" />
<h2 style="margin-right: 50%;"><u>MET Techniques</u></h2>
<p style="width: 85%;"><span style="color: #f56a6a;">Accepting resistance as part of the process</span> - Therapists engage recovering addicts on a personal level, helping them realize how their behaviors are impacting their goals and relationships.</p>
<p style="width: 85%;"><Span style="color: #f56a6a;">Avoiding arguments</Span> - Therapists won’t argue with their patients about the degree of their drug or alcohol abuse. Patients are encouraged to have a positive response and outlook on MET.</p>
<p style="width: 85%;"><span style="color: #f56a6a;">Supporting a recovering addict’s self-efficacy</span> - Recovering addicts must believe in their ability to achieve their goals. Therapists encourage positive thoughts and behaviors that reinforce the concept of self-efficacy.</p>
<p style="width: 85%;"><span style="color: #f56a6a;">Developing and expressing empathy</span> - Patients are encouraged to learn and develop empathy to learn how their actions affect others. This can be used as a motivational factor for change.</p>
</section>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
</div>
</div> <!-- End Service #3 -->
</div> <!-- End Left Content Col 6 -->
<div class="col-md-6"> <!-- Right Content Col 6 -->
<div class="media service"> <!-- Service #4 -->
<div class="media-left media-middle">
<!-- Trigger the modal with a button -->
<button type="button" class="btn btn-link" data-toggle="modal" data-target="#myModal4"><i class="fa fa-user-md">
</i></button>
<!-- Modal -->
<div class="modal fade" id="myModal4" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-dialog modal-lg">
<!-- Modal content-->
<div class="modal-content">
<div class="modal-header">
<h1 class="modal-title"><h1>Outpatient Treatment </h1>
<button type="button" class="close" data-dismiss="modal">×</button>
</div>
<div class="modal-body">
<section>
<header class="main">
<!-- <h1>10 MOST COMMON ADDTICTIONS</h1> -->
</header>
<span class="image main"><img src="imgs/outpatient.jpg" alt="" height="350px" /></span>
<hr class="major" />
<h2 style="margin-right: 50%;"><u>What is an Outpatient Drug Treatment?</u></h2>
<p style="width: 85%;margin-right: 50%;">Inpatient treatment, also referred to as residential treatment, provides the highest level of services for patients diagnosed with alcohol or other drug addiction. Typically, inpatient drug programs include medical detox services.Many who struggle with alcoholism find the most success with inpatient rehab treatment. Clients in this program typically begin with inpatient alcohol detox to rid their bodies of any harmful toxins from the drugs or alcohol. If necessary, they may also be prescribed medications to help reduce alcohol cravings or reduce withdrawal symptoms.
<hr class="major" />
<h2 style="margin-right: 50%;"><u>Benefits of Outpatient Treatment</u></h2>
<p style="width: 85%;margin-right: 50%;">Outpatient substance abuse treatment provides those recovering from addiction with much-needed support as they transition back into their everyday lives. It’s important to remember that relapse is most common right after an individual exits residential treatment.
The extra encouragement and treatment provided by outpatient care plays an essential role in helping individuals achieve long-term sobriety and addiction recovery.
Some key benefits of outpatient substance abuse treatment include:
<ul>
<li>Life Skill Development</li>
<li>Direct Access to Friends and Family</li>
<li>Flexibility to Work or Attend School</li>
</ul>
</p>
<hr class="major" />
<h2 style="margin-right: 50%;"><u>Is an Outpatient Substance Abuse Treatment Program the Right Option for You?
</u></h2>
<p style="width: 85%;margin-right: 50%;">Outpatient rehab is ideal for those who are familiar with the strategies and tools necessary to live life free of addiction but would still like extra support in staying sober. Additionally, outpatient treatment allows those in recovery to return to, or keep up with, work or school obligations while they receive ongoing care.</p>
<hr class="major" />
<h2 style="margin-right: 50%;"><u>Why Outpatient Addiction Treatment May Not Be Right at This Time?
</u></h2>
<p style="width: 85%;margin-right: 50%;">For many patients, especially those in need of medically guided detox, outpatient treatment is not an appropriate first step. That’s why it is helpful for those struggling with addiction and their families to work with addiction treatment specialists when searching for care.</p>
</section>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
</div>
<div class="media-body">
<h4 class="media-heading">Outpatient</h4>
<p>Outpatient treatment is an ideal option for people who are motivated to stop using their substance of choice, but require the flexibility of a program that will work around their schedules.</p>
</div>
</div><!-- end Service #4 -->
<div class="media service"> <!-- Service #5 -->
<div class="media-left media-middle">
<!-- Trigger the modal with a button -->
<button type="button" class="btn btn-link" data-toggle="modal" data-target="#myModal5"><i class="fa fa-check-square">
</i></button>
<!-- Modal -->
<div class="modal fade" id="myModal5" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-dialog modal-lg">
<!-- Modal content-->
<div class="modal-content">
<div class="modal-header">
<h1 class="modal-title"><h1>New To The 12 Steps? That's Ok! </h1>
<button type="button" class="close" data-dismiss="modal">×</button>
</div>
<div class="modal-body">
<section>
<span class="image main"><img src="imgs/step.jpg" alt="" height="350px" /></span>
<hr class="major" />
<h2 ><u>The 12 steps to recovery is an effective approach to drug or alcohol addiction treatment we fully embrace.</u></h2>
<p style="width: 85%;margin-right: 50%;">The 12 Steps were created by the founders of Alcoholics Anonymous to establish guidelines for the best way to overcome an addiction to alcohol. The program gained enough success in its early years for other addiction support groups to adapt the steps to their own needs.</p>
<hr class="major" />
<h2 style="margin-right: 50%;"><u>Applying the steps</u></h2>
<p style="width: 85%;margin-right: 50%;">The 12-step approach to rehabilitation treatment is embraced throughout the world, so it’s always easy to find support where you are or wherever you go. Accordingly, we advise patients to keep in contact with ‘sober supports’ they make during treatment at one of our locations. We also encourage them to continue attending 12-step groups on a regular basis after discharge. Being able to discuss mistakes or relapses, as needed, in a supportive environment helps to keep patients accountable for their actions.</p>
<hr class="major" />
<h2 style="margin-right: 50%;"><u>The 12-Step Fellowship</u></h2>
<p style="width: 85%;margin-right: 50%;">
<ol style="color: tomato;" type="decimal">
<li>We admitted we were powerless over alcohol—that our lives had become unmanageable.</li>
<li>Came to believe that a Power greater than ourselves could restore us to sanity.</li>
<li>Made a decision to turn our will and our lives over to the care of God as we understood Him.</li>
<li>Made a searching and fearless moral inventory of ourselves.</li>
<li>Admitted to God, to ourselves and to another human being the exact nature of our wrongs.</li>
<li>Were entirely ready to have God remove all these defects of character</li>
<li>Humbly asked Him to remove our shortcomings</li>
<li>Made a list of persons we had harmed, and became willing to make amends to them all.</li>
<li>Made direct amends to such people wherever possible, except when to do so would injure them or others.</li>
<li>Continued to take personal inventory and when we were wrong promptly admitted it.</li>
<li>Sought through prayer and meditation to improve our conscious contact with God as we understood Him, praying only for knowledge of His will for us and the power to carry that out.</li>
<li>Having had a spiritual awakening as the result of these steps, we tried to carry this message to alcoholics [addicts] and to practice these principles in all our affairs.</li>
</ol></p>
</section>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
</div>
<div class="media-body">
<h4 class="media-heading">12-step</h4>
<p>The basic premise of the 12-Step model in addiction treatment is that people can help one another achieve and maintain abstinence from drugs or alcohol.</p>
</div>
</div> <!-- end Service #5 -->
<div class="media service"> <!-- Service #6 -->
<div class="media-left media-middle">
<!-- Trigger the modal with a button -->
<button type="button" class="btn btn-link" data-toggle="modal" data-target="#myModal6"><i class="fa fa-user-circle-o">
</i></button>
<!-- Modal -->
<div class="modal fade" id="myModal6" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-dialog modal-lg">
<!-- Modal content-->
<div class="modal-content">
<div class="modal-header">
<h1 class="modal-title"><h1>Psychaiatric Treatment</h1>
<button type="button" class="close" data-dismiss="modal">×</button>
</div>
<div class="modal-body">
<section>
<span class="image main"><img src="imgs/phy.jpg" alt="" height="350px" /></span>
<hr class="major" />
<h2 style="margin-right: 50%;"><u>Do Psychiatrists Provide Addiction Treatment?</u></h2>
<p style="width: 85%;margin-right: 50%;">When it comes to addiction treatment, it’s not just psychologists, therapists, and drug and alcohol counselors who work to help you in recovery. Psychiatrists, who are physicians that specialize in the diagnosis and treatment of psychiatric disorders, are just as likely to be part of your addiction treatment.</p>
<hr class="major" />
<h2 style="margin-right: 50%;"><u>Understanding Mental Illness</u></h2>
<p style="width: 85%;margin-right: 50%;">Mental illnesses can take many forms, just as physical illnesses do. Major mental illnesses such as schizophrenia or bipolar disorder rarely appear “out of the blue.” Most often family, friends, teachers, or individuals themselves recognize that “something is not quite right” about their thinking, feelings, or behavior before one of these illnesses appears in its full-blown form. Being informed about developing symptoms, or early warning signs, can lead to intervention that can help reduce the severity of an illness. It may even be possible to delay or prevent a major mental illness altogether.</p>
<hr class="major" />
<h2 style="margin-right: 50%;"><u>Modern Understanding of Co-occurring Disorders</u></h2>
<p style="width: 85%;margin-right: 50%;">Most modern psychiatrists view addiction not as a temporary or one-time occurrence, but instead as a chronic disease that must be acknowledged and managed throughout a person’s entire life. Additionally, the field of psychiatry have recently begun exploring the relationships between this disease and other mental health issues that people struggle with. When a person is dealing with both an addiction and one or more mental health concerns simultaneously, he is said to have co-occurring disorders. <a href="https://www.samhsa.gov/medication-assisted-treatment">SAMHSA</a> lists the following most common types of mental health conditions that occur alongside addictions:
<ul>
<li>Anxiety</li>
<li>Attention deficit disorder</li>
<li>Bipolar disorder</li>
<li>Borderline personality disorder</li>
<li>Eating disorders</li>
<li>Major depression</li>
<li>Mood disorders</li>
<li>Post-traumatic stress disorder</li>
</ul></p>
<hr class="major" />
<h2 style="margin-right: 50%;"><u>Violence</u></h2>
<p style="width: 85%;margin-right: 50%;">In today’s media reports about mental illness, there is a tendency to emphasize a supposed link between violence and mental illness. News stories regularly suggest that there is a strong connection between mental illness and crime. But the majority of people who are violent do not suffer from mental illnesses. In fact, people with a mental illness are more likely to be the victims, rather than the perpetrators of violence.
<img style="width: 118%;" src="imgs/v.jpg"></p>
</section>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
</div>
<div class="media-body">
<h4 class="media-heading">PSYCHIATRIC</h4>
<p>Just as with other medical illnesses, early intervention can make a crucial difference in preventing what could become a lifelong and potentially disabling psychiatric disorder.</p>
</div>
</div> <!-- end Service #6 -->
</div><!-- end Right Content Col 6 -->
</div><!-- end row -->
</div>
</div><!-- end container -->
</div>
<!-- Features Section
================================================== -->
<div id="tf-features">
<div class="box" style="background: mintcream">
<div class="container">
<div class="section-header">
<h2>Treatment & <span class="highlight"><strong>Rehab</strong></span></h2>
<h5><em>Recovery is possible</em></h5>
<div class="fancy"></div>
</div>
</div>
<div id="feature" class="gray-bg"> <!-- fullwidth gray background -->
<div class="container"> <!-- container -->
<div class="row" role="tabpanel"> <!-- row -->
<div class="col-md-4 col-md-offset-1"> <!-- tab menu col 4 -->
<ul class="features nav nav-pills nav-stacked" role="tablist">
<li role="presentation" class="active"> <!-- feature tab menu #1 -->
<a href="#f1" aria-controls="f1" role="tab" data-toggle="tab">
<span class="fa fa-plus-square"></span>
What's<h6>Rehab?</h6>
</a>
</li>
<li role="presentation"> <!-- feature tab menu #2 -->
<a href="#f2" aria-controls="f2" role="tab" data-toggle="tab">
<span class="fa fa-plus-square"></span>
Before<h6>Rehab?</h6>
</a>
</li>
<li role="presentation"> <!-- feature tab menu #3 -->
<a href="#f3" aria-controls="f3" role="tab" data-toggle="tab">
<span class="fa fa-plus-square"></span>
During<h6>Rehab?</h6>
</a>
</li>
<li role="presentation"> <!-- feature tab menu #4 -->
<a href="#f4" aria-controls="f4" role="tab" data-toggle="tab">
<span class="fa fa-plus-square"></span>
After<h6>Rehab?</h6>
</a>
</li>
</ul>
</div><!-- end tab menu col 4 -->
<div class="col-md-6"> <!-- right content col 6 -->
<!-- Tab panes -->
<div class="tab-content features-content"> <!-- tab content wrapper -->
<div role="tabpanel" class="tab-pane fade in active" id="f1"> <!-- feature #1 content open -->
<h4>Rehab</h4>
<p>A drug rehabilitation program may officially last for only a few months, but rehab is much more than just a 90-day fix. Recovery is a process that evolves through a series of stages, and your growth in sobriety can continue for the rest of your life.</p>
<img src="imgs/reb.jpg" class="img-responsive" alt="..." height="300px" width="500px">
</div>
<div role="tabpanel" class="tab-pane fade" id="f2"> <!-- feature #2 content -->
<h4>Some Things You Should Know Before Going to Drug Rehab</h4>
<p><ul>
<li>90-Day rehab is hard work, but you’ll have a lot of support.</li>
<li>Rehab isn’t a magic cure, but it’s an effective treatment for addiction.</li>
<li>Treatment continues after rehab.</li>
<li>Take care of work and family obligations.</li>
<li>Tie up any financial or legal loose ends.</li>
<li>There is very little communucation with the outside world.</li>
<li>Your life will never be the same.</li>
</li></ul></p>
<img src="imgs/in2.jpg" class="img-responsive" alt="..." height="300px" width="500px">
</div>
<div role="tabpanel" class="tab-pane fade" id="f3"> <!-- feature #3 content -->
<h4>Why Can’t I Get Sober On My Own?</h4>
<p>There are two big reasons to get professional help when quitting drugs or alcohol: ensuring safety during detox and setting the groundwork for lasting recovery.
Rehab centers are designed to help you through every step of the process. Once they’ve determined your individual needs, they’ll create a customized treatment plan that is right for you.
Some of the factors that go into your customized plan include:
<ol>
<li>The severity of your addiction</li>
<li>The type of substance you were addicted to</li>
<li>The presence of co-occurring disorders</li>
<li>Family environments and social circles</li>
</ol>
</p>
<img src="imgs/alcohol.jpg" class="img-responsive" alt="..." height="300px" width="500px">
</div>
<div role="tabpanel" class="tab-pane fade" id="f4"> <!-- feature #4 content -->
<h4>Life After Rehab</h4>
<p>
<ul>
<li>After completing detoxification and inpatient rehabilitation, a recovering addict will return to normal life. </li>
<li>Ones can pick up some drug-free hobbies recovering include:
- Playing sports
- Taking a class
- Volunteering</li>
<li>Listing goals and specific steps on how to achieve each one.</li>
<li>Joining local support group meetings.</li>
</ul>
</p>
<img src="imgs/after.jpg" class="img-responsive" alt="..." height="300px" width="500px">
</div>
</div> <!-- end tab content wrapper -->
</div><!-- end right content col 6 -->
</div> <!-- end row -->
</div> <!-- end container -->
</div><!-- end fullwidth gray background -->
</div>
</div>
<div class="container"> <!-- container -->
<div class="box" style="background: mintcream">
<div class="section-header">
<h2>Know More About<span class="highlight"><strong>Rehab</strong></span></h2>
<video width="500" height="300" controls>
<source src="imgs/rehab.mp4" type="video/mp4">
</video>
<div class="fancy"></div>
</div>
</div>
</div><!-- end container -->
<!-- Process Section
================================================== -->
<div id="tf-process">
<div class="box" style="background: mintcream">
<div class="container"> <!-- container -->
<div class="section-header">
<h2>Support<span class="highlight"><strong>Groups</strong></span></h2>
<h5><em>Choose your reliable group</em></h5>
<div class="fancy"></div>
</div>
</div><!-- end container -->
<div class="gray-bg"> <!-- fullwidth gray background -->
<div class="container"><!-- container -->
<div class="vline"></div> <!-- Vertical Line -->
<div id="process" class="row"> <!-- row -->
<div class="col-md-10 col-md-offset-1">
<div class="media process"> <!-- Process #1 -->
<div class="media-right media-middle">
<i class="fa fa-search-plus"></i>
</div>
<div class="media-body">
<h4 class="media-heading">Research</h4>
<p>Support groups can provide emotional guidance and support for addicted people when cravings strike.So find those people who also want a sober life.Have those people who can be with you!</p>
</div>
</div><!-- Process #1 -->
<div class="media process"> <!-- Process #2 -->
<div class="media-right media-middle">
<i class="fa fa-undo"></i>
</div>
<div class="media-body">
<h4 class="media-heading">Self-Help Group</h4>
<p>In a self-help group, the members share a common problem, often a common disease or addiction. Self-help groups can occur in a wide variety of forms, from two individuals sharing experience and coping strategies, to small groups gathering in community meeting rooms, to large, incorporated organizations offering information, support and advocacy services.</p>
</div>
</div><!-- Process #2 -->
<div class="media process"> <!-- Process #3 -->
<div class="media-right media-middle">
<i class="fa fa-address-book-o"></i>
</div>
<div class="media-body">
<h4 class="media-heading">Meeting</h4>
<p>There are several prominent support groups for addiction, including Alcoholics Anonymous, Narcotics Anonymous,Cocaine Anonymous etc.Many people have become sober with the help of addiction support groups. However, support groups are only one part of addiction treatment.Members of these groups are of all races and religions and all that is necessary is to admit that there is a problem, that it is out of control and that you want help and/or support. Meetings are free and there are no membership requirements beyond a desire to recover, though for some groups, meetings can be “open” (anyone can attend) or “closed” (attendance is limited to people who want to stop drinking, using drugs, or engaging in the behavior the group is focused on).</p>
</div>
</div><!-- Process #3 -->
</div>
</div> <!-- end row -->
</div><!-- end container -->
</div>
</div> <!-- end fullwidth gray background -->
</div>
<!-- Contact Section
================================================== -->
<div id="tf-contact">
<div class="container"> <!-- container -->
<div class="section-header">
<h2>Leave A <span class="highlight"><strong>Reply</strong></span></h2>
<div class="fancy"></div>
</div>
</div><!-- end container -->
<div class="container"><!-- container -->
<div class="box" style="background: darkcyan"><br>
<div class="row text-center"> <!-- contact form outer row with centered text-->
<div class="col-md-10 col-md-offset-1"> <!-- col 10 with offset 1 to centered -->
<form id="contact-form" class="form" name="sentMessage" novalidate> <!-- form wrapper -->
<div class="row"> <!-- nested inner row -->
<!-- Input your name -->
<div class="col-md-4">
<div class="form-group"> <!-- Your name input -->
<input type="text" autocomplete="off" class="form-control" placeholder="Your Name *" id="name" required data-validation-required-message="Please enter your name.">
<p class="help-block text-danger"></p>
</div>
</div>
<!-- Input your email -->
<div class="col-md-4">
<div class="form-group"> <!-- Your email input -->
<input type="email" autocomplete="off" class="form-control" placeholder="Your Email *" id="email" required data-validation-required-message="Please enter your email address.">
<p class="help-block text-danger"></p>
</div>
</div>
<!-- Input your Phone no. -->
<div class="col-md-4">
<div class="form-group"> <!-- Your email input -->
<input type="text" autocomplete="off" class="form-control" placeholder="Your Phone No. *" id="phone" required data-validation-required-message="Please enter your phone no.">
<p class="help-block text-danger"></p>
</div>
</div>
</div><!-- end nested inner row -->
<!-- Message Text area -->
<div class="form-group"> <!-- Your email input -->
<textarea class="form-control" rows="7" placeholder="Tell Us Something..." id="message" required data-validation-required-message="Please enter a message."></textarea>
<p class="help-block text-danger"></p>
<div id="success"></div>
</div>
<button type="submit" class="btn btn-primary tf-btn color">Send Message</button> <!-- Send button -->
</form><!-- end form wrapper -->
</div><!-- end col 10 with offset 1 to centered -->
</div> <!-- end contact form outer row with centered text-->
</div><!-- end container -->
</div>
</div>
</div>
</div>
<!-- Sidebar -->
<div id="sidebar">
<div class="inner">
<!-- Search -->
<section id="search" class="alt">
<form method="post" action="#">
<input type="text" name="query" id="query" placeholder="Search" />
</form>
</section>
<!-- Menu -->
<nav id="menu">
<header class="major">
<h2>Menu</h2>
</header>
<ul>
<li><a href="index.html">Home</a></li>
<li><span class="opener">Addiction Info</span>
<ul>