-
Notifications
You must be signed in to change notification settings - Fork 0
/
cpap-bipap.html
1327 lines (1266 loc) · 49.9 KB
/
cpap-bipap.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>
<html data-oe-company-name="Respirando - Venda e Aluguel de CPAP" lang="pt-BR" data-website-id="1">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
<title>CPAP | Respirando - Aluguel e Venda de CPAP</title>
<link type="image/x-icon" rel="shortcut icon"
href="/static/images/website/1/favicon/fav.ico" />
<script type="text/javascript">
var odoo = {
csrf_token: "7e22ebe0b2f4997624baa937aadc68e07baf3d26o",
};
</script>
<meta name="generator" content="Odoo" />
<meta property="og:title" content="CPAP" />
<meta property="og:site_name" content="Respirando - Venda e Aluguel de CPAP" />
<link rel="alternate" hreflang="pt" href="cpap-bipap" />
<script type="text/javascript">
odoo.session_info = {
is_superuser: false,
is_system: false,
is_frontend: true,
translationURL: '/website/translations',
is_website_user: true,
user_id: 4
};
</script>
<link type="text/css" rel="stylesheet"
href="/static/css/web.assets_common.0.css" />
<link type="text/css" rel="stylesheet"
href="/static/css/web.assets_frontend.0.css" />
<link type="text/css" rel="stylesheet"
href="/static/css/web.assets_frontend.1.css" />
<script type="text/javascript"
src="/static/js/web.assets_common.js"></script>
<script type="text/javascript"
src="/static/js/web.assets_frontend.js"></script>
</head>
<body>
<div id="wrapwrap" class>
<header>
<div class="navbar navbar-default navbar-static-top">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse"
data-target=".navbar-top-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a href="/"
class="navbar-brand logo">
<span alt="Logo of Respirando - Venda e Aluguel de CPAP"
title="Respirando - Venda e Aluguel de CPAP"><img
src="/static/images/res.company/1/logo.png"
class="img img-responsive" /></span>
</a>
</div>
<div class="collapse navbar-collapse navbar-top-collapse">
<ul class="nav navbar-nav navbar-right" id="top_menu">
<li>
<a href="/">
<span>Home</span>
</a>
</li>
<li>
<a
href="/quem-somos.html">
<span>Quem somos</span>
</a>
</li>
<li class="dropdown active">
<a class="dropdown-toggle" data-toggle="dropdown" href="cpap-bipap#">
<span>Produtos</span> <span class="caret"></span>
</a>
<ul class="dropdown-menu" role="menu">
<li class="active">
<a href="cpap-bipap">
<span>CPAP e BIPAP</span>
</a>
</li>
<li>
<a
href="/mascaras.html">
<span>Máscaras</span>
</a>
</li>
<li>
<a
href="/oxigenoterapia.html">
<span>Oxigenoterapia</span>
</a>
</li>
<li>
<a
href="/acessorios.html">
<span>Acessórios</span>
</a>
</li>
<li>
<a
href="/terapia-respiratoria">
<span>Terapia respiratória</span>
</a>
</li>
</ul>
</li>
<li>
<a href="/aluguel.html">
<span>Aluguel</span>
</a>
</li>
<li>
<a
href="/blog/blog-respirando-3.html">
<span>Blog</span>
</a>
</li>
<li>
<a href="/contacus.html">
<span>Contato</span>
</a>
</li>
<li id="my_cart" class="hidden">
<a
href="/shop/cart.html">
<i class="fa fa-shopping-cart"></i>
My Cart <sup class="my_cart_quantity label label-primary"></sup>
</a>
</li>
</ul>
</div>
</div>
</div>
</header>
<main>
<div id="wrap" class="oe_structure oe_empty">
<section class="parallax s_parallax_slider oe_custom_bg oe_img_bg" style="background-image: none;"
data-scroll-background-ratio="1.6">
<span class="s_parallax_bg oe_img_bg oe_custom_bg"
style="background-image: url(/static/images/873/pulmo%CC%83es.jpg); background-position: 0% 16.54%; top: -104.64px; bottom: -104.64px; transform: translateY(-102px);"></span>
<div>
<div>
<div class="oe_structure">
<div id="myCarousel1575597654110" class="carousel quotecarousel slide mb0 mt32"
data-interval="5000">
<ol class="carousel-indicators mb0">
<li data-target="#myCarousel1575597654110" data-slide-to="0"></li>
<li data-target="#myCarousel1575597654110" data-slide-to="1" class="active">
</li>
</ol>
<div class="carousel-inner">
<div class="item text_only">
<div class="container">
<div class="content">
<div class="row">
<blockquote class="col-md-8 col-md-offset-2 mt0 mb16">
<h1 style="text-align: center; ">
<font class="bg-black-50 text-white" style>Conheça nossa
linha de Máquinas CPAP e BiPAP</font>
</h1>
</blockquote>
</div>
</div>
</div>
</div>
<div class="item text_only active">
<div class="container">
<div class="content">
<div class="row">
<blockquote class="col-md-offset-2 col-md-9 mt0 mb16">
<h1 style="text-align: center; ">
<font class="bg-black-50 text-white" style>Trabalhamos
com os melhores fornecedores do mercado</font>
</h1>
</blockquote>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="s_text_block bg-primary">
<div class="container">
<div class="row">
<div class="col-md-12 mb16 mt16">
<h4 class="MsoListParagraph" style="text-align: center; ">Problemas para dormir? Você
pode ter apneia do sono! A Respirando pode te oferecer as soluções e mais qualidade
de vida e saúde. Temos uma linha completa de equipamentos de pressão positiva
contínua nas vias aéreas, o famoso CPAP (sigla em inglês para <i
style>Continuous Positive Airway Pressure</i>). Trabalhamos também com
equipamentos para <a
href="/oxigenoterapia.html"
style data-original-title title>
<font class="text-white" style>oxigenoterapia</font>
</a>, além todos os <a
href="/acessorios.html"
style>
<font class="text-white" style>acessórios</font>
</a> que você precisa para ter uma noite tranquila de sono!</h4>
<p></p>
</div>
</div>
</div>
</section>
<section class="s_image_text bg-gray-lighter mb0">
<div class="container">
<div class="row">
<div class="mb32 col-md-4 col-md-offset-1 mt48">
<img class="img img-responsive center-block mb16"
src="/static/images/539/DreamStation%20CPAP.png"
alt="Imagem e bloco de texto Odoo" data-original-title title
style="transform: translateX(1.6%) translateY(-11%) scaleX(1.04) scaleY(1.08);" />
</div>
<div class="mt32 col-md-5 mb4">
<h3>
<font class="text-beta" style>DreamStation CPAP Pro<br /></font>
<font style="font-size: 18px;" class="text-beta">Philips Respironics</font>
</h3>
<p style="text-align: left;">
<span
style="border: 0px; font-family: centrale_sans, tahoma, arial, helvetica, sans-serif; font-size: 18px; font-stretch: inherit; font-variant-east-asian: inherit; font-variant-numeric: inherit; line-height: inherit; margin: 0px; padding: 0px; vertical-align: baseline;"
class="text-beta">O DreamStation CPAP Pro oferece recursos completos de
relatórios, bem como pressão fixa e modos de verificaçnao de CPAP. O recurso
SmartRamp permite que o DreamStation Pro aumente automaticamente o valor se
necessário, mesmo no modo rampa. </span>
</p>
</div>
</div>
</div>
</section>
<section class="s_image_text bg-gray-lighter mb0">
<div class="container">
<div class="row">
<div class="mb32 col-md-4 col-md-offset-1 mt48">
<img class="img img-responsive center-block mb16"
src="/static/images/538/DreamStation%20BiPAP%20AVAPS.png"
alt="Imagem e bloco de texto Odoo" data-original-title title
style="transform: translateX(0.3%) translateY(11%) scaleX(0.89) scaleY(0.99);" />
</div>
<div class="mt32 col-md-5 mb0">
<h3>
<font class="text-beta" style>DreamStation BiPAP AVAPS <br /></font>
<font style="font-size: 18px;" class="text-beta">Philips Respironics</font>
</h3>
<p style="text-align: left;">
<span
style="color: rgb(7, 110, 168); font-family: centrale_sans, tahoma, arial, helvetica, sans-serif; font-size: 17px;">Os
pacientes que sofrem de doença respiratória crônica apresentam diferentes
necessidades terapêuticas. Com as soluções de ventilação não invasiva
DreamStation BiPAP AVAPS, terá a capacidade de tratar cada um deles dessa forma.
Utilizando soluções terapêuticas clinicamente comprovadas, os ventiladores não
invasivos DreamStation adaptam-se a estas diferentes necessidades dos pacientes,
ajudando-o a normalizar a ventilação.</span>
</p>
</div>
</div>
</div>
</section>
<section class="s_image_text bg-gray-lighter mb0">
<div class="container">
<div class="row">
<div class="col-md-4 col-md-offset-1 mt92 mb0">
<img class="img img-responsive center-block mb16"
src="/static/images/1108.png"
alt="Imagem e bloco de texto Odoo" data-original-title title
style="transform: translateX(1.6%) translateY(-11%) scaleX(1.04) scaleY(1.08);" />
</div>
<div class="mb32 mt32 col-md-5">
<h3>
<font class="text-beta" style>DreamStation CPAP Auto<br /></font>
<font style="font-size: 18px;" class="text-beta">Philips Respironics</font>
</h3>
<p style="text-align: left;"><span
style="border: 0px; font-family: centrale_sans, tahoma, arial, helvetica, sans-serif; font-size: 18px; font-stretch: inherit; font-variant-east-asian: inherit; font-variant-numeric: inherit; line-height: inherit; margin: 0px; padding: 0px; vertical-align: baseline;"
class="text-beta">O DreamStation CPAP Auto é um equipamento desenhado APAP
elegante e fácil de usar da Philips Respironics. Esta máquina possui vários
recursos avançados incorporados, como conectividade bluetouth, SmartRamp e
OptiSart. </span> </p>
</div>
</div>
</div>
</section>
<section class="s_image_text bg-gray-lighter mb0">
<div class="container">
<div class="row">
<div class="mb32 col-md-4 col-md-offset-1 mt48">
<img class="img img-responsive center-block mb16"
src="/static/images/1109/dream-bipap-auto.jpg"
alt="Imagem e bloco de texto Odoo" data-original-title title
style="transform: translateX(0.3%) translateY(11%) scaleX(0.89) scaleY(0.99);" />
</div>
<div class="mb32 mt32 col-md-5">
<h3>
<font class="text-beta" style>DreamStation BiPAP autoSV<br /></font>
<font style="font-size: 18px;" class="text-beta">Philips Respironics</font>
</h3>
<p style="text-align: left;">
<span
style="font-family: centrale_sans, tahoma, arial, helvetica, sans-serif; font-size: 18px;"
class="text-beta">O DreamStation BiPAP autoSV foi concebido para o fornecimento
de uma ventilação ideal com intervenção mínima a pacientes com apneia do sono
central, apneia do sono complexa e respiração periódica. O seu algoritmo
clinicamente comprovado fornece suporte sempre que necessário e trabalha com os
padrões de respiração do paciente de forma a minimizar a pressão aplicada, o
apoio de pressão e as respirações da máquina para que os seus pacientes tenham
uma experiência de sono confortável e tranquila.</span>
<font style="font-size: 18px;" class="text-beta"> </font>
</p>
</div>
</div>
</div>
</section>
<section class="s_image_text bg-gray-lighter mt0">
<div class="container">
<div class="row">
<div class="mb32 col-md-offset-1 mt48 col-md-4">
<img class="img img-responsive center-block mb16"
src="/static/images/962.png"
alt="Imagem e bloco de texto Odoo" data-original-title title
style="transform: translateX(-2.8%) translateY(-2.3%) scaleX(1.34) scaleY(1.36);" />
</div>
<div class="mt16 col-md-5 mb64">
<h3>
<font class="text-beta" style>CPAP DreamStation GO <br /></font>
<font style="font-size: 18px;" class="text-beta">Phillips Respironics</font>
</h3>
<h4>
<style>
<font class="text-beta" style=""><
font class="text-gray-dark" style="" >
&
lt;
!--
/* Font Definitions */
@font-face {
font-family: "Cambria Math";
panose-1: 2 4 5 3 5 4 6 3 2 4;
mso-font-charset: 0;
mso-generic-font-family: roman;
mso-font-pitch: variable;
mso-font-signature: -536870145 1107305727 0 0 415 0;
}
@font-face {
font-family: Calibri;
panose-1: 2 15 5 2 2 2 4 3 2 4;
mso-font-charset: 0;
mso-generic-font-family: swiss;
mso-font-pitch: variable;
mso-font-signature: -536859905 -1073732485 9 0 511 0;
}
@font-face {
font-family: Tahoma;
panose-1: 2 11 6 4 3 5 4 4 2 4;
mso-font-charset: 0;
mso-generic-font-family: swiss;
mso-font-pitch: variable;
mso-font-signature: -520081665 -1073717157 41 0 66047 0;
}
/* Style Definitions */
p.MsoNormal,
li.MsoNormal,
div.MsoNormal {
mso-style-unhide: no;
mso-style-qformat: yes;
mso-style-parent: "";
margin: 0cm;
margin-bottom: .0001pt;
mso-pagination: widow-orphan;
font-size: 12.0pt;
font-family: "Calibri", sans-serif;
mso-ascii-font-family: Calibri;
mso-ascii-theme-font: minor-latin;
mso-fareast-font-family: Calibri;
mso-fareast-theme-font: minor-latin;
mso-hansi-font-family: Calibri;
mso-hansi-theme-font: minor-latin;
mso-bidi-font-family: "Times New Roman";
mso-bidi-theme-font: minor-bidi;
mso-fareast-language: EN-US;
}
.MsoChpDefault {
mso-style-type: export-only;
mso-default-props: yes;
font-family: "Calibri", sans-serif;
mso-ascii-font-family: Calibri;
mso-ascii-theme-font: minor-latin;
mso-fareast-font-family: Calibri;
mso-fareast-theme-font: minor-latin;
mso-hansi-font-family: Calibri;
mso-hansi-theme-font: minor-latin;
mso-bidi-font-family: "Times New Roman";
mso-bidi-theme-font: minor-bidi;
mso-fareast-language: EN-US;
}
@page WordSection1 {
size: 612.0pt 792.0pt;
margin: 70.85pt 3.0cm 70.85pt 3.0cm;
mso-header-margin: 36.0pt;
mso-footer-margin: 36.0pt;
mso-paper-source: 0;
}
div.WordSection1 {
page: WordSection1;
}
--&
gt;
</font>
</font>
</style>
</h4>
<p class="MsoNormal"
style="margin-top: 8.25pt; margin-bottom: 8.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;">
<span class="text-beta"
style="border: 0px; font-family: centrale_sans, tahoma, arial, helvetica, sans-serif; font-size: 18px; font-stretch: inherit; font-variant-east-asian: inherit; font-variant-numeric: inherit; line-height: inherit; margin: 0px; padding: 0px; vertical-align: baseline;">Dispositivos
de pressão positiva (CPAP e BiPAP) DreamStation são desenhados para serem tão
confortáveis e fáceis de experimentar como o sono deve ser. Conectando pacientes
e provedores de saúde, os dispositivos DreamStation permitem aos pacientes
cuidar da sua saúde com confiança, e aos profissinais de saúde a gerenciar a
terapia de seus pacientes de forma eficiente e eficaz.</span>
<span
style="font-family: Georgia, "Times New Roman", Times, serif;"> </span>
</p>
</div>
</div>
</div>
</section>
<section class="s_image_text bg-gray-lighter mt0">
<div class="container">
<div class="row">
<div class="col-md-offset-1 col-md-4 mt32 mb0">
<img class="img img-responsive center-block mb16"
src="/static/images/963.png"
alt="Imagem e bloco de texto Odoo" data-original-title title
style="transform: translateX(-2.1%) translateY(-18.6%) scaleX(0.78) scaleY(0.92);" />
</div>
<div class="col-md-5 mt0 mb32">
<h3>
<font class="text-beta" style>Ventilador Trilogy 202<br /></font>
<font style="font-size: 18px;" class="text-beta">Phillips Respironics</font>
</h3>
<h4>
<style>
<font class="text-beta" style=""><
font class="text-gray-dark" style="" >
&
lt;
!--
/* Font Definitions */
@font-face {
font-family: "Cambria Math";
panose-1: 2 4 5 3 5 4 6 3 2 4;
mso-font-charset: 0;
mso-generic-font-family: roman;
mso-font-pitch: variable;
mso-font-signature: -536870145 1107305727 0 0 415 0;
}
@font-face {
font-family: Calibri;
panose-1: 2 15 5 2 2 2 4 3 2 4;
mso-font-charset: 0;
mso-generic-font-family: swiss;
mso-font-pitch: variable;
mso-font-signature: -536859905 -1073732485 9 0 511 0;
}
@font-face {
font-family: Tahoma;
panose-1: 2 11 6 4 3 5 4 4 2 4;
mso-font-charset: 0;
mso-generic-font-family: swiss;
mso-font-pitch: variable;
mso-font-signature: -520081665 -1073717157 41 0 66047 0;
}
/* Style Definitions */
p.MsoNormal,
li.MsoNormal,
div.MsoNormal {
mso-style-unhide: no;
mso-style-qformat: yes;
mso-style-parent: "";
margin: 0cm;
margin-bottom: .0001pt;
mso-pagination: widow-orphan;
font-size: 12.0pt;
font-family: "Calibri", sans-serif;
mso-ascii-font-family: Calibri;
mso-ascii-theme-font: minor-latin;
mso-fareast-font-family: Calibri;
mso-fareast-theme-font: minor-latin;
mso-hansi-font-family: Calibri;
mso-hansi-theme-font: minor-latin;
mso-bidi-font-family: "Times New Roman";
mso-bidi-theme-font: minor-bidi;
mso-fareast-language: EN-US;
}
.MsoChpDefault {
mso-style-type: export-only;
mso-default-props: yes;
font-family: "Calibri", sans-serif;
mso-ascii-font-family: Calibri;
mso-ascii-theme-font: minor-latin;
mso-fareast-font-family: Calibri;
mso-fareast-theme-font: minor-latin;
mso-hansi-font-family: Calibri;
mso-hansi-theme-font: minor-latin;
mso-bidi-font-family: "Times New Roman";
mso-bidi-theme-font: minor-bidi;
mso-fareast-language: EN-US;
}
@page WordSection1 {
size: 612.0pt 792.0pt;
margin: 70.85pt 3.0cm 70.85pt 3.0cm;
mso-header-margin: 36.0pt;
mso-footer-margin: 36.0pt;
mso-paper-source: 0;
}
div.WordSection1 {
page: WordSection1;
}
--&
gt;
</font>
</font>
</style>
</h4>
<p class="MsoNormal"
style="margin-top: 8.25pt; margin-bottom: 8.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;">
<span class="text-beta"
style="border: 0px; font-family: centrale_sans, tahoma, arial, helvetica, sans-serif; font-size: 18px; font-stretch: inherit; font-variant-east-asian: inherit; font-variant-numeric: inherit; line-height: inherit; margin: 0px; padding: 0px; vertical-align: baseline;">O
Trilogy 202 é um aparelho tanto para ventilação volume-controlada como
pressão-controlada, para ventilação invasiva e não-invasiva. A versatilidade do
fornecimento de ar e das opções de configuração garantem maior continuidade do
tratamento.</span>
</p>
</div>
</div>
</div>
</section>
<section class="s_image_text bg-gray-lighter mt0">
<div class="container">
<div class="row">
<div class="mb32 col-md-offset-1 mt48 col-md-4">
<img class="img img-responsive center-block mb16"
src="/static/images/964/A30_BIPAP.jpg"
alt="Imagem e bloco de texto Odoo" data-original-title title
style="transform: translateX(-2.1%) translateY(-4.7%) scaleX(1.26) scaleY(1.35);" />
</div>
<div class="col-md-5 mt0 mb92">
<h3>
<font class="text-beta" style>BIPAP A30<br /></font>
<font style="font-size: 18px;" class="text-beta">Phillips Respironics</font>
</h3>
<h4>
<style>
<font class="text-beta" style=""><
font class="text-gray-dark" style="" >
&
lt;
!--
/* Font Definitions */
@font-face {
font-family: "Cambria Math";
panose-1: 2 4 5 3 5 4 6 3 2 4;
mso-font-charset: 0;
mso-generic-font-family: roman;
mso-font-pitch: variable;
mso-font-signature: -536870145 1107305727 0 0 415 0;
}
@font-face {
font-family: Calibri;
panose-1: 2 15 5 2 2 2 4 3 2 4;
mso-font-charset: 0;
mso-generic-font-family: swiss;
mso-font-pitch: variable;
mso-font-signature: -536859905 -1073732485 9 0 511 0;
}
@font-face {
font-family: Tahoma;
panose-1: 2 11 6 4 3 5 4 4 2 4;
mso-font-charset: 0;
mso-generic-font-family: swiss;
mso-font-pitch: variable;
mso-font-signature: -520081665 -1073717157 41 0 66047 0;
}
/* Style Definitions */
p.MsoNormal,
li.MsoNormal,
div.MsoNormal {
mso-style-unhide: no;
mso-style-qformat: yes;
mso-style-parent: "";
margin: 0cm;
margin-bottom: .0001pt;
mso-pagination: widow-orphan;
font-size: 12.0pt;
font-family: "Calibri", sans-serif;
mso-ascii-font-family: Calibri;
mso-ascii-theme-font: minor-latin;
mso-fareast-font-family: Calibri;
mso-fareast-theme-font: minor-latin;
mso-hansi-font-family: Calibri;
mso-hansi-theme-font: minor-latin;
mso-bidi-font-family: "Times New Roman";
mso-bidi-theme-font: minor-bidi;
mso-fareast-language: EN-US;
}
.MsoChpDefault {
mso-style-type: export-only;
mso-default-props: yes;
font-family: "Calibri", sans-serif;
mso-ascii-font-family: Calibri;
mso-ascii-theme-font: minor-latin;
mso-fareast-font-family: Calibri;
mso-fareast-theme-font: minor-latin;
mso-hansi-font-family: Calibri;
mso-hansi-theme-font: minor-latin;
mso-bidi-font-family: "Times New Roman";
mso-bidi-theme-font: minor-bidi;
mso-fareast-language: EN-US;
}
@page WordSection1 {
size: 612.0pt 792.0pt;
margin: 70.85pt 3.0cm 70.85pt 3.0cm;
mso-header-margin: 36.0pt;
mso-footer-margin: 36.0pt;
mso-paper-source: 0;
}
div.WordSection1 {
page: WordSection1;
}
--&
gt;
</font>
</font>
</style>
</h4>
<p class="MsoNormal"
style="margin-top: 8.25pt; margin-bottom: 8.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;">
<span class="text-beta"
style="border: 0px; font-family: centrale_sans, tahoma, arial, helvetica, sans-serif; font-size: 18px; font-stretch: inherit; font-variant-east-asian: inherit; font-variant-numeric: inherit; line-height: inherit; margin: 0px; padding: 0px; vertical-align: baseline;">O
ventilador bi-nível BIPAP A30 foi desenhado para combinar facilidade de uso com
avanços tecnológicos que se adaptam às condições de seus pacientes, entregando
uma terapia adequada. </span>
</p>
</div>
</div>
</div>
</section>
<section class="s_image_text bg-gray-lighter">
<div class="container">
<div class="row">
<div class="mb32 col-md-4 col-md-offset-1 mt48">
<img class="img img-responsive center-block mb16"
src="/static/images/544.png"
alt="Imagem e bloco de texto Odoo" data-original-title title
style="transform: translateX(4.6%) translateY(1.8%) scaleX(1.24) scaleY(1.39); animation-play-state: paused; transition: none 0s ease 0s;" />
</div>
<div class="mt16 col-md-5 mb92">
<h3>
<font class="text-beta" style>CPAP AirMini (portátil) </font>
<font class="text-beta" style> <br /></font>
<font style="font-size: 18px;" class="text-beta">ResMed</font>
</h3>
<h4>
<style>
<font class="text-beta" style=""><
font class="text-gray-dark" style="" >
&
lt;
!--
/* Font Definitions */
@font-face {
font-family: "Cambria Math";
panose-1: 2 4 5 3 5 4 6 3 2 4;
mso-font-charset: 0;
mso-generic-font-family: roman;
mso-font-pitch: variable;
mso-font-signature: -536870145 1107305727 0 0 415 0;
}
@font-face {
font-family: Calibri;
panose-1: 2 15 5 2 2 2 4 3 2 4;
mso-font-charset: 0;
mso-generic-font-family: swiss;
mso-font-pitch: variable;
mso-font-signature: -536859905 -1073732485 9 0 511 0;
}
@font-face {
font-family: Tahoma;
panose-1: 2 11 6 4 3 5 4 4 2 4;
mso-font-charset: 0;
mso-generic-font-family: swiss;
mso-font-pitch: variable;
mso-font-signature: -520081665 -1073717157 41 0 66047 0;
}
/* Style Definitions */
p.MsoNormal,
li.MsoNormal,
div.MsoNormal {
mso-style-unhide: no;
mso-style-qformat: yes;
mso-style-parent: "";
margin: 0cm;
margin-bottom: .0001pt;
mso-pagination: widow-orphan;
font-size: 12.0pt;
font-family: "Calibri", sans-serif;
mso-ascii-font-family: Calibri;
mso-ascii-theme-font: minor-latin;
mso-fareast-font-family: Calibri;
mso-fareast-theme-font: minor-latin;
mso-hansi-font-family: Calibri;
mso-hansi-theme-font: minor-latin;
mso-bidi-font-family: "Times New Roman";
mso-bidi-theme-font: minor-bidi;
mso-fareast-language: EN-US;
}
.MsoChpDefault {
mso-style-type: export-only;
mso-default-props: yes;
font-family: "Calibri", sans-serif;
mso-ascii-font-family: Calibri;
mso-ascii-theme-font: minor-latin;
mso-fareast-font-family: Calibri;
mso-fareast-theme-font: minor-latin;
mso-hansi-font-family: Calibri;
mso-hansi-theme-font: minor-latin;
mso-bidi-font-family: "Times New Roman";
mso-bidi-theme-font: minor-bidi;
mso-fareast-language: EN-US;
}
@page WordSection1 {
size: 612.0pt 792.0pt;
margin: 70.85pt 3.0cm 70.85pt 3.0cm;
mso-header-margin: 36.0pt;
mso-footer-margin: 36.0pt;
mso-paper-source: 0;
}
div.WordSection1 {
page: WordSection1;
}
--&
gt;
</font>
</font>
</style>
</h4>
<p class="MsoNormal"
style="margin-top: 8.25pt; margin-bottom: 8.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;">
<span style="font-family: Tahoma, sans-serif; font-size: 13pt; font-weight: normal;"
class="text-beta">O AirMini proporciona a qualidade que os usuários da terapia
com CPAP da ResMed se acostumaram e confiaram nos últimos 25 anos, destacando os
mesmos modos de terapia comprovados usados no AirSense™ 10.</span>
<b><span style="font-family: Tahoma, sans-serif; font-size: 13pt;"
class="text-beta"> </span>
</b>
</p>
</div>
</div>
</div>
</section>
<section class="s_image_text bg-gray-lighter mt0">
<div class="container">
<div class="row">
<div class="mb32 col-md-offset-1 mt48 col-md-4">
<img class="img img-responsive center-block mb16"
src="/stati/images/939.png"
alt="Imagem e bloco de texto Odoo" data-original-title title
style="transform: translateX(2.1%) translateY(-5.2%) scaleX(0.87) scaleY(0.95); animation-play-state: paused; transition: none 0s ease 0s;" />
</div>
<div class="mt16 col-md-5 mb92">
<h3>
<font class="text-beta" style>CPAP </font>
<font class="text-beta" style>AirSense 10 <br /></font>
<font style="font-size: 18px;" class="text-beta">ResMed</font>
</h3>
<h4>
<style>
<font class="text-beta" style=""><
font class="text-gray-dark" style="" >
&
lt;
!--
/* Font Definitions */
@font-face {
font-family: "Cambria Math";
panose-1: 2 4 5 3 5 4 6 3 2 4;
mso-font-charset: 0;
mso-generic-font-family: roman;
mso-font-pitch: variable;
mso-font-signature: -536870145 1107305727 0 0 415 0;
}
@font-face {
font-family: Calibri;
panose-1: 2 15 5 2 2 2 4 3 2 4;
mso-font-charset: 0;
mso-generic-font-family: swiss;
mso-font-pitch: variable;
mso-font-signature: -536859905 -1073732485 9 0 511 0;
}
@font-face {
font-family: Tahoma;
panose-1: 2 11 6 4 3 5 4 4 2 4;
mso-font-charset: 0;
mso-generic-font-family: swiss;
mso-font-pitch: variable;
mso-font-signature: -520081665 -1073717157 41 0 66047 0;
}
/* Style Definitions */
p.MsoNormal,
li.MsoNormal,
div.MsoNormal {
mso-style-unhide: no;
mso-style-qformat: yes;
mso-style-parent: "";
margin: 0cm;
margin-bottom: .0001pt;
mso-pagination: widow-orphan;
font-size: 12.0pt;
font-family: "Calibri", sans-serif;
mso-ascii-font-family: Calibri;
mso-ascii-theme-font: minor-latin;
mso-fareast-font-family: Calibri;
mso-fareast-theme-font: minor-latin;
mso-hansi-font-family: Calibri;
mso-hansi-theme-font: minor-latin;
mso-bidi-font-family: "Times New Roman";
mso-bidi-theme-font: minor-bidi;
mso-fareast-language: EN-US;
}
.MsoChpDefault {
mso-style-type: export-only;
mso-default-props: yes;
font-family: "Calibri", sans-serif;
mso-ascii-font-family: Calibri;
mso-ascii-theme-font: minor-latin;
mso-fareast-font-family: Calibri;
mso-fareast-theme-font: minor-latin;
mso-hansi-font-family: Calibri;
mso-hansi-theme-font: minor-latin;
mso-bidi-font-family: "Times New Roman";
mso-bidi-theme-font: minor-bidi;
mso-fareast-language: EN-US;
}
@page WordSection1 {
size: 612.0pt 792.0pt;
margin: 70.85pt 3.0cm 70.85pt 3.0cm;
mso-header-margin: 36.0pt;
mso-footer-margin: 36.0pt;
mso-paper-source: 0;
}
div.WordSection1 {
page: WordSection1;
}
--&
gt;
</font>
</font>
</style>
</h4>
<p class="MsoNormal"
style="margin-top: 8.25pt; margin-bottom: 8.25pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;">
<span
style="color: rgb(7, 110, 168); font-family: centrale_sans, tahoma, arial, helvetica, sans-serif; font-size: 17px;">O
ResMed AirSense 10 CPAP vem de fábrica com umidificador integrado e recursos de
comunicação sem fio que fornecem dados da terapia noturno do paciente.</span>
</p>
</div>
</div>
</div>
</section>
<section class="s_image_text bg-gray-lighter mt0">
<div class="container">
<div class="row">
<div class="mb32 col-md-offset-1 mt48 col-md-4">
<img class="img img-responsive center-block mb16"
src="/static/images/958/stellar_150_web.png"
alt="Imagem e bloco de texto Odoo" data-original-title title
style="transform: translateX(-2.8%) translateY(-2.3%) scaleX(1.34) scaleY(1.36);" />
</div>
<div class="mt16 col-md-5 mb92">
<h3>
<font class="text-beta" style>CPAP Stellar 150 <br /></font>
<font style="font-size: 18px;" class="text-beta">ResMed </font>
</h3>
<h4>
<style>
<font class="text-beta" style=""><
font class="text-gray-dark" style="" >
&
lt;
!--
/* Font Definitions */
@font-face {
font-family: "Cambria Math";
panose-1: 2 4 5 3 5 4 6 3 2 4;
mso-font-charset: 0;
mso-generic-font-family: roman;
mso-font-pitch: variable;
mso-font-signature: -536870145 1107305727 0 0 415 0;
}
@font-face {
font-family: Calibri;
panose-1: 2 15 5 2 2 2 4 3 2 4;
mso-font-charset: 0;
mso-generic-font-family: swiss;
mso-font-pitch: variable;
mso-font-signature: -536859905 -1073732485 9 0 511 0;
}
@font-face {
font-family: Tahoma;
panose-1: 2 11 6 4 3 5 4 4 2 4;
mso-font-charset: 0;
mso-generic-font-family: swiss;
mso-font-pitch: variable;
mso-font-signature: -520081665 -1073717157 41 0 66047 0;
}
/* Style Definitions */
p.MsoNormal,
li.MsoNormal,
div.MsoNormal {
mso-style-unhide: no;
mso-style-qformat: yes;
mso-style-parent: "";
margin: 0cm;
margin-bottom: .0001pt;
mso-pagination: widow-orphan;
font-size: 12.0pt;
font-family: "Calibri", sans-serif;
mso-ascii-font-family: Calibri;
mso-ascii-theme-font: minor-latin;
mso-fareast-font-family: Calibri;
mso-fareast-theme-font: minor-latin;
mso-hansi-font-family: Calibri;
mso-hansi-theme-font: minor-latin;
mso-bidi-font-family: "Times New Roman";
mso-bidi-theme-font: minor-bidi;
mso-fareast-language: EN-US;
}
.MsoChpDefault {
mso-style-type: export-only;
mso-default-props: yes;
font-family: "Calibri", sans-serif;
mso-ascii-font-family: Calibri;
mso-ascii-theme-font: minor-latin;