-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1992 lines (1875 loc) · 111 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>A Quo Co. transcription services, experts in court transcription, Seattle, Washington</title>
<link href="css/index.css" rel="stylesheet">
<link href="css/carousel.css" rel="stylesheet">
<script src="js/jquery.min.js"></script>
<script src="js/jquery-ui.min.js"></script>
<script src="js/index.js"></script>
<script src="./js/Carousel.js" async></script>
<link rel="canonical" href="index.html" />
<!-- favicons -->
<link rel="icon" href="img/SQUARELOGO.webp" sizes="32x32" />
<link rel="icon" href="img/SQUARELOGO.webp" sizes="192x192" />
<link rel="apple-touch-icon-precomposed" href="img/SQUARELOGO.webp" sizes="180x180" />
<meta name="keywords"
content="Transcription, Seattle, WA, Seattle, Washington, Seattle Transcription, Washington Transcription, Transcription Services, Transcription Services Seattle, Erica Ingram, court transcription, Seattle court transcription, King County court transcription, King County court transcriber, King County court approved transcription, King County court approved transcriber, King County court-approved transcription, King County court-approved transcriber, court-approved transcription, court-approved transcriber, bankruptcy transcription, US bankruptcy court transcription, US bankruptcy court transcriber, U.S. Bankruptcy Court transcription, U.S. Bankruptcy court transcriber, King County transcription, King County court transcription, Seattle court transcription, legal transcription, legal transcriber, court transcription, court transcriber, court transcription providers, Snohomish County transcription, Pierce County transcription, Tacoma transcription, Tacoma court transcription, Tacoma transcription services, Everett court transcription, Everett transcription services, court approved transcribers, court approved transcriptionists, legal transcription, court transcripts, court transcription, trial transcripts, recording transcripts, transcription, A Quo Co., Washington Transcription Services, Erica Van Ostrand, Verbatim Transcription, Court Record, Digital Recording, Electronic Recording, Digital Transcription, Interview Transcription, Audio Video Transcription, Sony BM 246, FTR, FTR Gold, CourtSmart, VIQ" />
<meta name="description"
content="Rates start @ $2.50/pg; Seattle based, AAERT certified, MOS Master, court transcription services; includes free indexes, hyperlinked authority/headers, tables of content & authority.">
<!--product json-->
<script type="application/ld+json">
{
"@context": "http://schema.org/",
"@type": "Service",
"areaServed": "nationwide",
"name": "A Quo Co. court transcription services",
"image": "https://www.aquoco.co/img/SQUARELOGO.webp",
"description": "Rates start at $2.50 per page. Seattle based, AAERT certified, MOS-Master, specializing in court transcription services since 2009, approved in over 40 jurisdictions. Ask us about transcripts with indexes, hyperlinked case law, rules, headers, tables of content, and tables of authority at no extra charge.",
"provider": "Erica L. Ingram",
"hoursAvailable": "Mo,Tu,We,Th,Fr 04:00-17:00",
"logo": "https://www.aquoco.co/img/SQUARELOGO.webp",
"serviceOutput": "transcription",
"serviceType": "court transcription",
"termsOfService": "https://www.aquoco.co/ServiceA.html",
"url": "https://www.aquoco.co",
"sameAs": ["https://www.facebook.com/aquocotrans",
"https://www.twitter.com/aquocotrans"],
"brand": {
"@type": "Service",
"name": "A Quo Co."
},
"offers": {
"@type": "AggregateOffer",
"highPrice": "$5.25",
"lowPrice": "$2.50",
"offerCount": "9",
"offers": [
{
"@type": "Offer",
"priceCurrency": "USD",
"availability": "InStock",
"price": "5.25",
"url": "www.aquoco.co/Court-Transcription.html",
"description": "1 calendar-day turnaround, rate per page. Our transcripts include word indexes, hyperlinked case law, rules, headers, tables of content, and tables of authority at no extra charge."
},
{
"@type": "Offer",
"priceCurrency": "USD",
"availability": "InStock",
"price": "2.50",
"url": "www.aquoco.co/Court-Transcription.html",
"description": "45 calendar-day turnaround, rate per page, electronic delivery only. Our transcripts include word indexes, hyperlinked case law, rules, headers, tables of content, and tables of authority at no extra charge."
},
{
"@type": "Offer",
"priceCurrency": "USD",
"availability": "InStock",
"price": "2.65",
"url": "www.aquoco.co/Court-Transcription.html",
"description": "30 calendar-day turnaround, rate per page, electronic delivery only. Our transcripts include word indexes, hyperlinked case law, rules, headers, tables of content, and tables of authority at no extra charge."
},
{
"@type": "Offer",
"priceCurrency": "USD",
"availability": "InStock",
"price": "3.25",
"url": "www.aquoco.co/Court-Transcription.html",
"description": "14 calendar-day turnaround, rate per page, electronic delivery only. Our transcripts include word indexes, hyperlinked case law, rules, headers, tables of content, and tables of authority at no extra charge."
},
{
"@type": "Offer",
"priceCurrency": "USD",
"availability": "InStock",
"price": "3.75",
"url": "www.aquoco.co/Court-Transcription.html",
"description": "7 calendar-day turnaround, rate per page, electronic delivery only. Our transcripts include word indexes, hyperlinked case law, rules, headers, tables of content, and tables of authority at no extra charge."
},
{
"@type": "Offer",
"priceCurrency": "USD",
"availability": "InStock",
"price": "4.25",
"url": "www.aquoco.co/Court-Transcription.html",
"description": "3 calendar-day turnaround, rate per page, electronic delivery only. Our transcripts include word indexes, hyperlinked case law, rules, headers, tables of content, and tables of authority at no extra charge."
}
]
}
}
</script>
<!--google analytics-->
<script>
(function (i, s, o, g, r, a, m) {
i['GoogleAnalyticsObject'] = r; i[r] = i[r] || function () {
(i[r].q = i[r].q || []).push(arguments)
}, i[r].l = 1 * new Date(); a = s.createElement(o),
m = s.getElementsByTagName(o)[0]; a.async = 1; a.src = g; m.parentNode.insertBefore(a, m)
}
)
(window, document, 'script', 'https://www.google-analytics.com/analytics.js', 'ga');
ga('create', 'UA-76190959-1', 'auto');
ga('require', 'displayfeatures');
ga('send', 'pageview');
</script>
<!--facebook verify-->
<meta property="fb:admins" content="1523316217" />
<!--bing verify-->
<meta name="msvalidate.01" content="CB92119ADE7D55FC1089353F4CB0D372" />
<!--yandex verify-->
<meta name="yandex-verification" content="390c20ccf474ad0b" />
<meta name="yandex-verification" content="5ed4907b3bee51eb" />
</head>
<body>
<header>
<nav class="navigation">
<div class="navLinkContainer">
<a href="index.html" class="navLink">Home</a>
</div>
<div class="navLinkContainer">
<a href="#about" class="navLink">About</a>
</div>
<div class="navLinkContainer">
<a href="#rates" class="navLink">Rates</a>
</div>
<div class="navLinkContainer">
<a href="#courtTranscription" class="navLink">Court Transcription</a>
</div>
<div class="navLinkContainer">
<a href="#softwareDevelopment" class="navLink">Development</a>
</div>
<div class="navLinkContainer">
<a href="#contact" class="navLink">Contact</a>
</div>
<div class="navLinkContainer"><a id="loginLinkHeader" href="https://www.aquoco.co/Files/" class="navLink"
target="_blank" rel="noopener noreferrer">Files</a>
</div>
</nav>
<section class="stackedRows bsShowcase">
<section id="headerImgoverlay" class="showcase">
<section class="content">
<section id="showcaseRow1" class="stackedRows aqcLogo vignette">
<h1>A QUO CO.</h1>
<!--<img src="https://www.aquoco.co/img/RectLogo.webp" class="logo" alt="A Quo Co.">-->
</section>
<section id="showcaseRow2" class="stackedRows frontWords">
<p>A Quo Co. Transcripts<br>Seattle, Washington</p>
</section>
<section id="showcaseRow3" class="stackedRows frontWords">
<h1>court transcription services<br>since 2009 in <br>Seattle, Washington</h1>
</section>
</section>
</section>
</section>
</header>
<section id="bodyContent" class="bodyContent">
<section id="courtTranscription" class="row row1 pageRow">
<section class="stackedRows">
<h2>A Quo Co. Court Transcription Services</h2>
</section>
<br><br>
<section id="halfhalf-container" class="stackedRows mainSection">
<section id="msLeftHalf" class="quarter">
<div class="carousel-container"></div>
</section>
<br><br>
<section id="msRightHalf" class="quarter">
<h3>Unique Transcript Features</h3><br>
<ul>
<li>Certified, both PDF and protected Word versions</li>
<li>Word indexes</li>
<li>Table of authorities</li>
<li>Case law and rule hyperlinks via Google Scholar and .gov websites</li>
<li>Condensed versions, two and four per page</li>
<li>Hyperlinked table of contents & headers where applicable</li>
<li><a href="https://www.ned.uscourts.gov/internetDocs/cmecf/LinkBuilderforMSWord.pdf"
target="_blank" rel="noopener noreferrer">USBC's Linkbuilder where
possible</a></li>
<li>A "working copy" of your court transcript, an
uncertified copy that makes normal Microsoft Word features usable.</li>
<li>Certified PDF comes with linked bookmarks to reflect tables of contents and authorities.
</li>
<li>Delivery via e-mail & repository</li>
<li>Audio formats including but not limited to FTR, JAVS, VIQ Player, Courtsmart, Liberty, BIS
Player, & standard audio formats.</li>
</ul>
</section>
</section>
<section class="stackedRows">
<p>Rates start as low as $2.50 per page. A deposit of 100 percent of the quote is required up front for
court & any balance/refund due upon completion of the
transcript prior to delivery.<br><a href="#requestAudio" onclick="openForm('requestAudio')">We can
request your audio
at no or for an additional charge depending on the circumstance.</a><br>
We currently accept check, money order, Zelle, or PayPal (no account necessary to pay by credit card
via PayPal).<br> We provide terms to government
agencies and approved businesses. <a href="Application-Template.pdf">You may apply here.</a><br>
For an extensive list of jurisdictions where we are approved,<a href="#jurisdictions"
onclick="openForm('jurisdictions')">please click here.</a>
</p>
</section>
</section>
<section id="rates" class="row row2 pageRow">
<section class="stackedRows">
<h1>Rates</h1>
</section>
<section class="stackedRows">
<p><br>Looking to log in to upload files?<a href="https://www.aquoco.co/Files/" class="navLink"
target="_blank" rel="noopener noreferrer">Log in
here.</a></p>
</section>
<section class="stackedRows">
<p><a href="#tos" onclick="openForm('tos')">By ordering, you are agreeing to the linked terms of
service here.</a></p>
</section>
<section class="stackedRows">
<p>If you do not agree, do not order.</p>
</section>
<section class="stackedRows">
<p><a href="#tos" onclick="openForm('priceQuote')">Click here to
get a
price quote.</a></p>
</section>
<section class="stackedRows">
<p><a
href="mailto:inquiries@aquoco.co?subject=Transcript%20Order&body=%0AHello%20there%2C%0A%0AI%20would%20like%20to%20order%20a%20transcript%3A%0A%0AIs%20this%20for%20an%20appeal%3F%20%20Yes%2FNo%0ATurnaround%3A%20%203%2F7%2F14%2F30%2F45%20calendar%20days%0ANeed%20a%20statement%20of%20arrangements%20template%20pre-filled%20out%20with%20our%20info%3F%20%20Yes%2Fno%0AExact%20case%20caption%20as%20should%20appear%20on%20transcript%3A%0AExact%20case%20number(s)%20as%20appears%20on%20transcript%3A%0AAdversary%20or%20COA%20number%20if%20applicable%3A%0AJurisdiction%3A%0AChapter%20if%20applicable%3A%0AJudge%2FHearing%20Officer%E2%80%99s%20Name%3A%0AAppearances%20(only%20need%20names%20of%20attorneys%20or%20parties%20%0Aappearing%20on%20their%20behalf%20at%20the%20hearing%3B%20can%20look%20up%20rest%20%0Aof%20contact%20info%20as%20necessary)%3A%0AAny%20other%20information%20you%20feel%20is%20relevant%3A%0A%0A%0AIt's%20helpful%20though%20not%20necessary%20to%20include%20the%20reporter's%20log%20notes%2C%20statement%20of%20arrangements%2C%20%0Aor%20minute%2Fdocket%20entry%20related%20to%20the%20transcribed%20audio.%20%20Payment%20arrangements%20will%20not%20be%20%0Aconsidered%20made%20until%20you%20either%20request%20to%20be%20billed%20(business%2Fgovernment%20agencies%20only)%20and%20%0Aare%20approved%20or%20pay%20the%20required%20deposit%20amount.%0A%0ALet%20me%20know%20if%20you%20have%20any%20questions.%20%20Thank%20you%20very%20much%20and%20have%20a%20great%20day.%0A%0ASincerely%2C%0A%0A%20%0AErica%20L%20Ingram%0ACERT**D-521%20%20%20%7C%20%20%20Notary%20Public%20%20%20%20%7C%20%20%20Microsoft%20Office%20Master%202016%0AOwner%2C%20A%20Quo%20Co.%0A320%20W%20Republican%2C%20Suite%20207%20%7C%20Seattle%2C%20WA%2098119%0Ap%20206%20478%205028%20%7C%20f%20866%20220%200887%0AMSN%2FSkype%20inquiries%40aquoco.co%0AFacebook%20http%3A%2F%2Fwww.facebook.com%2Faquocotranscripts%0ATwitter%20http%3A%2F%2Fwww.twitter.com%2Faquocotrans%0A%0A%0A%0A%0A">Click
here to
order a transcript.</a>
<!--onclick="openForm('priceQuote')"-->
</p>
</section>
<section class="stackedRows">
<p>Please be aware we are experiencing higher than normal order
volume and
our current availability for turnarounds are either 30 or 45 calendar days. Once this changes, we
will keep you updated here. Thank you for your patience.
<!--onclick="openForm('priceQuote')"-->
</p>
</section>
<section class="stackedRows">
<img src="img/BannerRate.webp" alt="" id="ratesi">
</section>
<section class="stackedRows">
<h2>Some Fine Print:</h2>
</section>
<section class="stackedRows">
<font size="4">
<p>We will transcribe excerpts, but the cover will be marked that it is an excerpt. There is a $50
minimum order.
</section>
<section class="stackedRows"><a href="Application-Template.pdf">We offer credit
terms for
approved businesses.</a>
</section>
<br><br>
<section class="stackedRows">
<h3>Payment Arrangements:</h3>
</section>
<section class="stackedRows">Payment
arrangements will not
be considered made until you either request to be billed (business/government agencies only) AND
are approved OR
until you pay the required deposit amount. If you are already approved for terms, we have
already made
arrangements and merely stating that billing arrangements have been made in the SOA will be
sufficient.</p>
<br>
</section><br><br>
<section class="stackedRows">
<h3>Government Agencies:</h3>
</section>
<section class="stackedRows">Orders on behalf of government agencies may not be
required to put
down a deposit. We honor the Office of Public Defense rate at a 10 calendar-day turnaround for
any work we bill
to them under 40 audio hours in length. If you have more than 40, you should contact us prior to
filing your SOA
just to make sure we can turn it around in the desired time. An order of indigency and statement
of arrangements
are required for us to bill OPD. </section>
<section class="stackedRows"><a href="AQC-SOA.dotx">Click here for a statement of
arrangements Word template pre-filled out with our info. </a></section>
</font>
<section class="stackedRows">
<h2>Alternative Ordering Method:</h2>
</section>
<section class="stackedRows">
<p><a
href="mailto:inquiries@aquoco.co?subject=Transcript%20Order&body=%0AHello%20there%2C%0A%0AI%20would%20like%20to%20order%20a%20transcript%3A%0A%0AIs%20this%20for%20an%20appeal%3F%20%20Yes%2FNo%0ATurnaround%3A%20%203%2F7%2F14%2F30%2F45%20calendar%20days%0ANeed%20a%20statement%20of%20arrangements%20template%20pre-filled%20out%20with%20our%20info%3F%20%20Yes%2Fno%0AExact%20case%20caption%20as%20should%20appear%20on%20transcript%3A%0AExact%20case%20number(s)%20as%20appears%20on%20transcript%3A%0AAdversary%20or%20COA%20number%20if%20applicable%3A%0AJurisdiction%3A%0AChapter%20if%20applicable%3A%0AJudge%2FHearing%20Officer%E2%80%99s%20Name%3A%0AAppearances%20(only%20need%20names%20of%20attorneys%20or%20parties%20%0Aappearing%20on%20their%20behalf%20at%20the%20hearing%3B%20can%20look%20up%20rest%20%0Aof%20contact%20info%20as%20necessary)%3A%0AAny%20other%20information%20you%20feel%20is%20relevant%3A%0A%0A%0AIt's%20helpful%20though%20not%20necessary%20to%20include%20the%20reporter's%20log%20notes%2C%20statement%20of%20arrangements%2C%20%0Aor%20minute%2Fdocket%20entry%20related%20to%20the%20transcribed%20audio.%20%20Payment%20arrangements%20will%20not%20be%20%0Aconsidered%20made%20until%20you%20either%20request%20to%20be%20billed%20(business%2Fgovernment%20agencies%20only)%20and%20%0Aare%20approved%20or%20pay%20the%20required%20deposit%20amount.%0A%0ALet%20me%20know%20if%20you%20have%20any%20questions.%20%20Thank%20you%20very%20much%20and%20have%20a%20great%20day.%0A%0ASincerely%2C%0A%0A%20%0AErica%20L%20Ingram%0ACERT**D-521%20%20%20%7C%20%20%20Notary%20Public%20%20%20%20%7C%20%20%20Microsoft%20Office%20Master%202016%0AOwner%2C%20A%20Quo%20Co.%0A320%20W%20Republican%2C%20Suite%20207%20%7C%20Seattle%2C%20WA%2098119%0Ap%20206%20478%205028%20%7C%20f%20866%20220%200887%0AMSN%2FSkype%20inquiries%40aquoco.co%0AFacebook%20http%3A%2F%2Fwww.facebook.com%2Faquocotranscripts%0ATwitter%20http%3A%2F%2Fwww.twitter.com%2Faquocotrans%0A%0A%0A%0A%0A">You
may order
via e-mail here.</a> Just fill out the form that pops up.</p>
</section>
</section>
<section id="softwareDevelopment" class="row row3 pageRow">
<section class="stackedRows">
<h2>Software Development by Erica Ingram</h2>
</section>
<section class="stackedRows mainSection">
<section id="sdLeftHalf" class="quarter">
<br><br>
<p><a href="http://www.ericaingram.com" target="_blank" rel="noopener noreferrer">Check out my work
samples in my
portfolio.</a> <br>If you like what you see,<br><a
href="mailto:evoingram@aquoco.onmicrosoft.com?subject=development inquiry">contact
me</a><br>and let me help you create amazing software solutions.</p><br>
<ul>
<li><a href="https://www.github.com/evoingram" target="_blank" rel="noopener noreferrer">GitHub
profile</a></li>
<li><a href="https://www.youracclaim.com/badges/6e7740dd-ee50-43fe-b1af-124a8f4f872b"
target="_blank" rel="noopener noreferrer">Microsoft Office Master 2016</a></li>
</ul>
</section>
<section id="sdRightHalf" class="quarter">
<img src="img/AQC Square Ad 04.webp"
alt="aaert certified, established 2009, over 15 years of experience, native English speakers, Microsoft Office Master"
id="softwareDevelopmenti" class="quarterImgs">
</section>
</section>
</section>
<section id="about" class="row row4 pageRow">
<section id="abouth" class="row stackedRows">
<p><br> </p>
<h2>About A Quo Co.</h2>
</section>
<section class="stackedRows mainSection">
<section id="leftHalf" class="quarter">
<img src="img/AQC Square Ad 01.webp" alt="rates as low as $2.50 per page" id="abouti"
class="quarterImgs">
</section>
<section id="rightHalf" class="quarter">
<h3>What are you looking for?</h3><br>
<ul>
<li><a href="#aboutAQC" onclick="openForm('aboutAQC')">About A Quo
Co.</a></li>
<li><a href="#aboutELI" onclick="openForm('aboutELI')">About Erica L.
Ingram</a></li>
<li><a href="Application-Template.pdf">Businesses, apply for terms
here.</a>
</li>
<li><a href="#faq" onclick="openForm('faq')">Frequently Asked
Questions</a></li>
<li><a href="#priceQuote" onclick="openForm('priceQuote')">Get a price
quote
here.</a></li>
<li><a href="#tos" onclick="openForm('tos')">Terms of Service here.</a>
</li>
<li><a href="#difference" onclick="openForm('difference')">What's the
difference between a transcriber and a
stenographer?</a>
</li>
<li><a href="#security" onclick="openForm('security')">See our security
policy here.</a></li>
<li><a href="https://transcription.aquoco.co/" target="_blank" rel="noopener noreferrer">Erica's
blog</a>
</li>
</ul>
</section>
</section>
</section>
<section id="contact" class="row row5 pageRow">
<section class="stackedRows">
<h2>Contact</h2>
</section>
<section class="stackedRows mainSection">
<section id="cLeftHalf" class="quarter"><br><br><br>
<p>Our telephone hours are from 4:00 a.m. PST to 5:00 p.m. PST Monday to Friday, office hours by
appointment only.
Emergency services are available, same-day and overnight, and weekend turnarounds. After hours,
leave a message. We will
get back to you ASAP.</p><br>
<h3> Contact Info:</h3><br>
<ul>
<li>A Quo Co.</li>
<li>320 W Republican, Suite 207</li>
<li>Seattle, Washington 98119</li>
<li>(206) 478-5028</li>
<li><a href="mailto:inquiries@aquoco.co">inquiries at aquoco dot co</a></li>
</ul><br><br>
<h4>
<div class="devDetails">
<div class="codeItem">
<a href="https://www.linkedin.com/in/aquocotrans" target="_blank"
rel="noopener noreferrer">LinkedIn</a>
</div>
<div class="codeItem">
<a href="https://www.twitter.com/aquocotrans" target="_blank"
rel="noopener noreferrer">Twitter</a>
</div>
</div>
<div class="devDetails">
<div class="codeItem">
<a href="https://transcription.aquoco.co" target="_blank"
rel="noopener noreferrer">VBA/Office
Blog</a>
</div>
<div class="codeItem"><a href="https://www.aquoco.co/Files/" target="_blank"
rel="noopener noreferrer">File
Repository</a>
</div>
</div>
</h4>
</section>
<section id="cRightHalf" class="quarter">
<br>
<img src="img/AQC Square Ad 05.webp"
alt="AQC has expertise and experience with the personal service of a small business."
id="contacti" class="quarterImgs">
</section>
</section>
<section class="stackedRows">
</section>
</section>
</section>
<footer>
<div class="copyright">
<p>copyright A Quo Co. 2019, <br>Created by Erica Ingram, photography by Adam Ingram except
Seattle skylines</p>
</div>
<nav class="navigation">
<div id="navLinkContainerHome" class="navLinkContainer"><a href="index.html" class="navLink">Home</a>
</div>
<div class="navLinkContainer"><a href="#about" class="navLink">About</a></div>
<div class="navLinkContainer"><a href="#rates" class="navLink">Rates</a></div>
<div class="navLinkContainer"><a href="#courtTranscription" class="navLink">Court Transcription</a>
</div>
<div class="navLinkContainer"><a href="#softwareDevelopment" class="navLink">Development</a></div>
<div class="navLinkContainer"><a href="#contact" class="navLink">Contact</a></div>
<div class="navLinkContainer"><a id="loginLink" href="https://www.aquoco.co/Files/" class="navLink"
target="_blank" rel="noopener noreferrer">Files</a></div>
</nav>
</footer>
<div id="requestAudio" class="form-popup">
<div class="form-container">
<section class="stackedRows">
<button type="button" class="btn cancel" onclick="closeForm('requestAudio')">Close</button>
</section>
<section class="stackedRows">
<img src="img/RectLogo.webp" class="logo" alt="A Quo Co.">
</section>
<section id="formHeading1" class="stackedRows">
<h1>Requesting Audio</h1>
</section><br><br>
<section class="stackedRows">
<h2>Superior Courts located in Washington State</h2>
</section>
<section class="stackedRows">
<p>There is a $25.00 charge per CD (holds up to about two days of trial) as well as an overall
handling/administrative fee
of $15.00. Where allowed, you will receive a copy of this audio. If a case is sealed, you MUST
request
and order audio
yourself.</p><br><br>
</section>
<section class="stackedRows">
<h2>Bankruptcy Court</h2>
</section>
<section class="stackedRows">
<p>Generally, there are no extra charges for us requesting audio from the court for a particular
hearing.
Where allowed,
you will receive a copy of this audio.</p><br><br>
</section>
<section class="stackedRows">
<h2>Everywhere Else</h2>
</section>
<section class="stackedRows">
<p>There may or may not be charges associated with requesting audio on your behalf and you will be
apprised
of them before
your transcript order goes forward. Where allowed, you will receive a copy of this audio.</p>
<br><br>
</section>
<button type="button" class="btn cancel" onclick="closeForm('requestAudio')">Close</button>
</div>
</div>
<div id="jurisdictions" class="form-popup">
<div class="form-container">
<section class="stackedRows">
<button type="button" class="btn cancel" onclick="closeForm('jurisdictions')">Close</button>
</section>
<section class="stackedRows">
<img src="img/RectLogo.webp" class="logo" alt="A Quo Co.">
</section>
<section class="stackedRows" id="formHeading2">
<h1>Approved Jurisdictions</h1>
</section><br><br>
<section class="stackedRows">
<h2>Non-Bankruptcy Court:</h2>
</section>
<section class="stackedRows">
<ul>
<li class="jurisListItem"><a
href="https://www.jud12.flcourts.org/Portals/0/PDF/DCR/Transcriptionists_20140109.pdf"
target="_blank" rel="noopener noreferrer">12th Judicial Circuit of Florida</a></li>
<li class="jurisListItem">Appellate Services Division, Oregon Judicial Department</li>
<li class="jurisListItem"><a href="https://www.co.benton.wa.us/docview.aspx?docid=11306"
target="_blank" rel="noopener noreferrer">Benton
County, WA</a></li>
<li class="jurisListItem">Franklin County, WA</li>
<li class="jurisListItem">Klickitat County, WA</li>
<li class="jurisListItem"><a
href="https://www.kingcounty.gov/courts/clerk/programs/transcriptionists.aspx"
target="_blank" rel="noopener noreferrer">King
County, WA</a></li>
<li class="jurisListItem"><a href="https://www.kitsapgov.com/sc/transcripts.htm" target="_blank"
rel="noopener noreferrer">Kitsap
County,
WA</a></li>
<li class="jurisListItem">Snohomish County, WA</li>
<li class="jurisListItem">Spokane County, WA</li>
<li class="jurisListItem">Walla Walla, Washington</li>
<li class="jurisListItem">Whitman County, WA</li>
<li class="jurisListItem"><a
href="https://www.co.yakima.wa.us/SuperiorCourt/TransciptionistList.pdf" target="_blank"
rel="noopener noreferrer">Yakima
County, WA</a></li>
<li class="jurisListItem">U.S. District Court, Southern District of Illinois</li>
<li class="jurisListItem">U.S. District Court, Southern District of Iowa</li>
<li class="jurisListItem">U.S. District Court, Western District of Pennsylvania</li>
<li class="jurisListItem">U.S. District Court, Western District of Washington</li>
</ul>
</section><br><bR>
<section class="stackedRows">
<p>
Some districts, such as Seattle Municipal Court, do not require a provider to be on an approved
list,
so this list is not exhaustive.
</p>
</section>
<section class="stackedRows">
<br><br>
<h2>Bankruptcy Court</h2>
</section><br><bR>
<section class="stackedRows">
<p>
Here are the U.S. Bankruptcy Court districts in which AQC is approved to complete transcripts:
</p>
</section>
<section class="stackedRows">
<ul>
<li class="jurisListItem"><a href="https://www.alnb.uscourts.gov/transcribers" target="_blank"
rel="noopener noreferrer">Northern
District
of Alabama</a></li>
<li class="jurisListItem"><a href="https://www.alsb.uscourts.gov/audio-and-transcript-request"
target="_blank" rel="noopener noreferrer">Southern
District
of Alabama</a></li>
<li class="jurisListItem"><a
href="https://www.arb.uscourts.gov/transcripts/ApprovedTranscribers.pdf" target="_blank"
rel="noopener noreferrer">Eastern
District of Arkansas</a></li>
<li class="jurisListItem"><a
href="https://www.arb.uscourts.gov/transcripts/ApprovedTranscribers.pdf" target="_blank"
rel="noopener noreferrer">Western
District of Arkansas</a></li>
<li class="jurisListItem">Eastern District of California</li>
<li class="jurisListItem">Southern District of California</li>
<li class="jurisListItem"><a href="https://www.cob.uscourts.gov/geninfo.asp#Transcript"
target="_blank" rel="noopener noreferrer">District
of Colorado</a></li>
<li class="jurisListItem">District of Connecticut</li>
<li class="jurisListItem">District of Hawaii</li>
<li class="jurisListItem"><a href="https://www.ilcb.uscourts.gov/forms" target="_blank"
rel="noopener noreferrer">Central
District of
Illinois</a></li>
<li class="jurisListItem">Southern District of Illinois</li>
<li class="jurisListItem">Northern District of Indiana</li>
<li class="jurisListItem"><a
href="https://www.ianb.uscourts.gov/content/index.php?q=services-provided-transcribers"
target="_blank" rel="noopener noreferrer">Northern District of Iowa</a></li>
<li class="jurisListItem">District of Kansas</li>
<li class="jurisListItem">Eastern District of Kentucky</li>
<li class="jurisListItem"><a href="https://www.lawb.uscourts.gov/">Western District of Louisiana</a>
</li>
<li class="jurisListItem"><a href="https://www.lamb.uscourts.gov/forms/transcript-order-form"
target="_blank" rel="noopener noreferrer">Middle
District of
Louisiana</a></li>
<li class="jurisListItem"><a
href="https://www.mnb.uscourts.gov/Newsite/General_Info/transcriptinfo.html" target="_blank"
rel="noopener noreferrer">District
of Minnesota</a></li>
<li class="jurisListItem">Southern District of Mississippi</li>
<li class="jurisListItem">District of Nebraska</li>
<li class="jurisListItem"><a
href="https://www.nmb.uscourts.gov/transcripts-and-audio-recordings-proceedings"
target="_blank" rel="noopener noreferrer">District of New Mexico</a></li>
<li class="jurisListItem"><a
href="https://www.nynb.uscourts.gov/sites/default/files/approvedtranscribers.pdf"
target="_blank" rel="noopener noreferrer">Northern District of New York</a></li>
<li class="jurisListItem"><a href="https://www.ncmb.uscourts.gov/procedures-obtaining-transcript"
target="_blank" rel="noopener noreferrer">Middle
District
of North Carolina</a></li>
<li class="jurisListItem"><a href="https://www.ndb.uscourts.gov/transcribers.html" target="_blank"
rel="noopener noreferrer">District of
North Dakota</a></li>
<li class="jurisListItem"><a
href="https://www.orb.uscourts.gov/Rules_Form/file_attachment/335_220508_153645.pdf"
target="_blank" rel="noopener noreferrer">District of Oregon</a></li>
<li class="jurisListItem">Eastern District of Pennsylvania</li>
<li class="jurisListItem"><a href="https://www.rib.uscourts.gov/?q=transcripts-hearings"
target="_blank" rel="noopener noreferrer">District
of Rhode Island</a></li>
<li class="jurisListItem"><a href="https://www.sdb.uscourts.gov/transcript%20requests.pdf"
target="_blank" rel="noopener noreferrer">District of
South
Dakota</a></li>
<li class="jurisListItem"><a href="https://www.vtb.uscourts.gov/transcripts" target="_blank"
rel="noopener noreferrer">District of
Vermont</a></li>
<li class="jurisListItem"><a href="https://www.wawb.uscourts.gov/order-transcript" target="_blank"
rel="noopener noreferrer">Western
District of Washington</a></li>
<li class="jurisListItem"><a href="https://www.waeb.uscourts.gov/content/request_transcripts"
target="_blank" rel="noopener noreferrer">Eastern
District of
Washington</a></li>
<li class="jurisListItem">Northern District of West Virginia</li>
<li class="jurisListItem"><a href="https://www.wiwb.uscourts.gov/request-transcript" target="_blank"
rel="noopener noreferrer">Western
District of Wisconsin</a></li>
<li class="jurisListItem"><a
href="https://www.wieb.uscourts.gov/index.php/forms14/filing-fees/35-transcripts/general/56-ordering-transcripts"
target="_blank" rel="noopener noreferrer">Eastern District of Wisconsin</a></li>
</ul>
<br><br>
</section><br><bR>
<button type="button" class="btn cancel" onclick="closeForm('jurisdictions')">Close</button>
</div>
</div>
<div id="priceQuote" class="form-popup">
<div class="form-container">
<section class="stackedRows">
<button type="button" class="btn cancel" onclick="closeForm('priceQuote')">Close</button>
</section>
<section class="stackedRows">
<img src="img/RectLogo.webp" class="logo" alt="A Quo Co.">
</section>
<h1>
<section id="pqChange1" class="stackedRows" id="formHeading3">
Price Quote Calculator:
</section>
</h1><br><br>
<h3>
<section id="pqChange2" class="stackedRows">
Get a price quote on your transcript:
</section>
</h3>
<section class="stackedRows">
<form id="orderForm" name="OrderForm" action="test-email.php" method="post"
onsubmit="window.location ='#six'">
<div class="startOF" width="50%">
<a href="#one"></a>
<fieldset id="one1">
<legend>Screen 1 of 4</legend>
<!-- old jurisdiction location -->
<div class="pqQuestion">
<div class="left">
<label for="p1i2" id="p1i2Label" class="labelPQ">Are we ordering audio?</label>
</div>
<div class="right">
<input title="No, we are not ordering audio" id="p1i2n" type="radio" name="p1i2"
value="No" checked required>No
<input title="Yes, we are ordering audio" id="p1i2y" type="radio" name="p1i2"
value="Yes" required>Yes
</div>
</div>
<br><br><br>
<div class="pqQuestion pq1">
<div class="left"><label for="p1i3">Hard copy (extra charge, $0.25/page +
$5/CD)?</label>
</div>
<div class="right"><input title="No hard copy" id="p1i3n" type="radio" name="p1i3"
value="No" checked required>No
<input title="Yes, hard copy" id="p1i3y" type="radio" name="p1i3" value="Yes"
required>Yes
</div>
</div>
<br><br><br><br>
<div class="pqQuestion pq1">
<div class="left"><label for="p1i4">How long is your audio in minutes?</label></div>
<div class="right"> <input title="audio length in minutes" id="p1i4" name="p1i4"
onChange="calculatePrice()" required /></div>
</div>
<br><br><br>
<div id="turnaroundDiv" class="pqQuestion pq1">
<div id="insideTAD" class="left">
<label for="turnaround">What turnaround? 24-hour turnaround or less
accepted
on a
case-by-case
basis.</label>
<SELECT NAME="turnaround" onChange="calculatePrice()" id="turnaround" required>
<Option value="45">45 calendar days</Option>
<Option value="30">30 calendar days</Option>
<Option value="14">14 calendar days</Option>
<Option value="7">7 calendar days</Option>
<Option value="3">3 calendar days</Option>
<Option value="1">1 calendar day</Option>
</SELECT>
</div>
</div>
<br><br><br><br>
<div class="pqQuestion pq1" style="visibility: hidden; display: none;">
</div>
<br><br><br><br>
<div id="priceQuoteBox" class="pqQuestion pq1">
<input title="price estimate" id="tPrice2" size='8' name="tPrice2">
</div>
<br><br><br>
<div id="jurisdictionDiv" class="pqQuestion pqTextField pq1" style="visibility: hidden; display: none;">
</div>
<div class="pqQuestion pq1 buttonsBN">
<div class="left"><br><br><br></div>
<div class="right">
</div>
</div>
</fieldset>
</div>
<!--<a href="#one">Screen 2 of 5</a>-->
<fieldset id="two">
<legend>Screen 2 of 4</legend>
<div class="pqQuestion pq2">
<p>If you are not a business, you will not be considered regardless of your answer.
<br><br>
If you are a government agency, we will bill according to your jurisdiction's
procedures.
<br><br>
A deposit of 100 percent of the price estimate is
required
prior to the
turnaround beginning unless you have made arrangements with us.</p>
</div>
<div class="pqQuestion pq2">
<div class="left">
<label for="p3i2">
If you are a business, do you wish to be considered for <br><a
href="Application-Template.pdf" target="_blank"
rel="noopener noreferrer">billing terms</a>? We do not run
a credit check that results in an inquiry on your
report.
<br><br>
</label>
</div>
<div class="right">
<input title="no billing terms" id="p3i2" type="radio" name="p3i2n" value="No" checked>No
<input title="Yes, we would like to be considered for billing terms" id="p3i2y"
type="radio" name="p3i2" value="Yes">Yes
</div>
</div>
<div class="pqQuestion pq2">
<div class="left">
<label for="p3i3">Do you agree to the <a href="ServiceA.html" target="_blank"
rel="noopener noreferrer">terms of
service</a>?
</label>
</div>
<div class="right">
<input title="No, I do not agree to the terms." id="p3i3n" type="radio" name="p3i3"
value="No" checked required>No
<input title="Yes, I agree to the terms." id="p3i3y" type="radio" name="p3i3" value="Yes"
required>Yes
</div>
</div>
<div class="pqQuestion pq2 buttonsBN">
<div class="left">
<input title="Go to previous screen." type="button" value="back"
onclick="backClicked('two');" class="backButton">
</div>
<div class="right">
<input title="Go to next screen." type="button" value="next" onclick="return Allow2();"
class="nextButton"><br><br>
</div>
</div>
</fieldset>
<!--<a href="#three">Screen 3 of 5</a>-->
<fieldset id="three">
<!--<legend>Screen 3 of 5</legend><br><br>
If you have paperwork related to your transcript order which shows the case caption, number(s), date, judge's/hearing officer's name, chapter of bankruptcy, or other case info we need, upload it here and we can skip the case info questions. You may upload either one PDF or one TXT file.<br><Br>Upload here: <br><br>
<label for="p4i1"></label>
<input title="" id="p4i1" type="file" name="SkipCaseInfo" accept="application/pdf,text/plain" /><br><Br>
<center>
<button type="button" onclick="ClearFields('p4i1');">Clear File Submission</button>
<input class="backButton" type="button" value="back" onclick="window.location.href='#two';">
<input type="button" value="next" onclick="return Allow3();"class="nextButton">
</center>-->
</fieldset>
<!--<a href="#four">Screen 4 of 5</a>-->
<fieldset id="four">
<legend>Screen 3 of 4</legend>
<div class="pqQuestion pqTextField pq4">
<label for="p5i1">Exact case caption as it should appear on the transcript:</label>
<input title="Exact case caption as it should appear on the transcript" id="p5i1"
name="p5i1" />
</div>
<div class="pqQuestion pqTextField pq4">
<label for="p5i2">Case Number: </label>
<input title="Case Number 1" id="p5i2" name="p5i2" />
</div>
<div class="pqQuestion pqTextField pq4">
<label for="p5i3">Second Case Number <br>(Adversary, Court of Appeals, etc.):</label>
<input title="Second Case Number (Adversary, Court of Appeals, etc.)" id="p5i3"
name="p5i3" />
</div>
<div class="pqQuestion pqTextField pq4">
<label for="p5i5">Hearing Date: </label>
<input title="Hearing Date MM/DD/YYYY" id="p5i5" name="p5i5" />
</div>
<div class="pqQuestion pqTextField pq4">
<label for="p5i6">Judge/Hearing Officer's Name: </label>
<input title="Judge/Hearing Officer's Name" id="p5i6" name="p5i6" />
</div>
<div class="pqQuestion pqTextField pq4">
<label for="p5i7">Speaker Names: </label>
<input title="Speaker Names" id="p5i7" name="p5i7" />
</div>
<div class="pqQuestion pqTextField pq4">
<label for="p5i8">Relevant Spellings: </label>
<input title="Relevant Spellings" id="p5i8" name="p5i8" />
</div>
<div class="pqQuestion pqTextField pq4">
<label for="p5i9">Other Relevant Info: </label>
<input title="Other Relevant Info" id="p5i9" name="p5i9" />
</div>
<div class="pqQuestion pq4">
<div class="left">
<label for="p5i10">Bankruptcy Chapter, If Applicable: </label>
</div>
<div class="right">
<input title="Bankruptcy chapter, if applicable" id="p5i10" name="p5i10" />
</div>
</div>
<div class="pqQuestion pq4">
<div class="left">
<label for="p5i11">For appeal y/n: </label>
</div>
<div class="right">
<input title="No, this is not for an appeal." id="p5i11n" type="radio" name="ForAppeal"
value="No" checked>No
<input title="Yes. This is for an appeal." id="p5i11y" type="radio" name="ForAppeal"
value="Yes">Yes
</div>
</div>
<div class="pqQuestion buttonsBN">
<div class="left">
<input class="backButton" title="Go to previous screen." type="button" value="back"
onclick="backClicked('three')">
</div>
<div class="right">
<input title="Go to next screen." type="button" value="next" onclick="return Allow4();"
class="nextButton">
</div>
</div>
</fieldset>
<!--<a href="#five">Screen 5 of 5</a>-->
<fieldset id="five">
<legend>Screen 4 of 4</legend>
<div class="pqQuestion pqTextField pq5">
<label for="p6i1">Your Name: </label>
<input title="your full name" id="p6i1" name="p6i1" required />
</div>
<div class="pqQuestion pqTextField pq5">
<label for="p6i2">Attorney's Name: </label>
<input title="attorney's name if applicable" id="p6i2" name="p6i2" required />
</div>
<div class="pqQuestion pqTextField pq5">
<label for="p6i3">Company/Firm: </label>
<input title="company/firm" id="p6i3" name="p6i3" required />
</div>
<div class="pqQuestion pqTextField pq5">
<label for="p6i4">Address1: </label>
<input title="address line 1" id="p6i4" name="p6i4" required />
</div>
<div class="pqQuestion pqTextField pq5">
<label for="p6i5">Address2: </label>
<input title="address line 2" id="p6i5" name="p6i5" />
</div>
<div class="pqQuestion pqTextField pq5">
<label for="p6i6">City: </label>
<input title="city" id="p6i6" name="p6i6" pattern="[a-zA-Z]+" required />
</div>
<div class="pqQuestion pqTextField pq5">
<label for="p6i7">State: </label>
<input title="state" id="p6i7" pattern="[A-Za-z]+" name="p6i7" required />
</div>
<div class="pqQuestion pqTextField pq5">
<label for="p6i8">ZIP Code</label>
<input title="ZIP code" id="p6i8" name="p6i8" pattern="^[0-9], {4, 4}$" required /></div>
<div class="pqQuestion pqTextField pq5">
<label for="p6i9">Email: </label>
<input
title="e-mail address only used for contact regarding this job. We do not sign you up for any newsletters, send sales-emails, or sell it to third parties."
id="p6i9" name="p6i9" required />
</div>
<center>
<!-- START CAPTCHA -->
<br>
<div class="capbox">
<div id="CaptchaDiv"></div>
<div class="capbox-inner">Type the above number in the right-hand box below:<br>
<div class="pqQuestion buttonsBN">
<div class="left">
<input type="hidden" id="txtCaptcha"></div>
<div class="right">
<input title="captcha box" type="text" name="captchaInput" id="captchaInput"
size="15"><br>
</div>
</div>
</div>
<br><br>