-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
1431 lines (1017 loc) · 113 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>
<!--[if lt IE 7]> <html class="no-js ie6 oldie" lang="en"> <![endif]-->
<!--[if IE 7]> <html class="no-js ie7 oldie" lang="en"> <![endif]-->
<!--[if IE 8]> <html class="no-js ie8 oldie" lang="en"> <![endif]-->
<!--[if IE 9]> <html class="no-js ie9 oldie" lang="en"> <![endif]-->
<!--[if (gt IE 9)]><!-->
<html class="js flexbox gr__ca_gov" style="font-size: 1rem; height: 100%;" lang="en"><!--<![endif]-->
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8"><script async="" src="www.ca.gov%20|%20California%20State%20Portal_files/widgets_002.js"></script>
<script src="https://cdn.botframework.com/botframework-webchat/latest/webchat.js"></script>
<style>
html,
body {
height: 100%;
}
body {
margin: 0;
}
#webchat {
height: 100%;
width: 100%;
}
</style>
<meta charset="utf-8">
<meta name="Author" content="State of California">
<meta name="Description" content="State of California">
<meta name="Keywords" content="California, government">
<!-- http://t.co/dKP3o1e -->
<meta name="HandheldFriendly" content="True">
<!-- for Blackberry, AvantGo -->
<meta name="MobileOptimized" content="320">
<!-- for Windows mobile -->
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0">
<!-- Google Meta-->
<meta name="google-site-verification" content="bRFDXA-cid_97DBDaGOhPN88_XY8mUGyaqXD4myBB68">
<!-- Google Fonts -->
<link href="www.ca.gov%20|%20California%20State%20Portal_files/css.css" rel="stylesheet">
<!-- selectivizr.com, emulates CSS3 pseudo-classes and attribute selectors in Internet Explorer 6-8 -->
<link rel="apple-touch-icon-precomposed" sizes="100x100" href="https://california.azureedge.net/cdt/statetemplate/5.5.8/images/apple-touch-icon-precomposed.png"><link rel="icon" sizes="192x192" href="https://california.azureedge.net/cdt/statetemplate/5.5.8/images/apple-touch-icon-192x192.png"><link rel="apple-touch-icon-precomposed" sizes="180x180" href="https://california.azureedge.net/cdt/statetemplate/5.5.8/images/apple-touch-icon-180x180.png"><link rel="apple-touch-icon-precomposed" sizes="152x152" href="https://california.azureedge.net/cdt/statetemplate/5.5.8/images/apple-touch-icon-152x152.png"><link rel="apple-touch-icon-precomposed" sizes="144x144" href="https://california.azureedge.net/cdt/statetemplate/5.5.8/images/apple-touch-icon-144x144.png"><link rel="apple-touch-icon-precomposed" sizes="120x120" href="https://california.azureedge.net/cdt/statetemplate/5.5.8/images/apple-touch-icon-120x120.png"><link rel="apple-touch-icon-precomposed" sizes="114x114" href="https://california.azureedge.net/cdt/statetemplate/5.5.8/images/apple-touch-icon-114x114.png"><link rel="apple-touch-icon-precomposed" sizes="72x72" href="https://california.azureedge.net/cdt/statetemplate/5.5.8/images/apple-touch-icon-72x72.png"><link rel="apple-touch-icon-precomposed" href="https://california.azureedge.net/cdt/statetemplate/5.5.8/images/apple-touch-icon-57x57.png"><link rel="apple-touch-icon" href="https://california.azureedge.net/cdt/statetemplate/5.5.8/images/apple-touch-icon.png"><script async="" src="www.ca.gov%20|%20California%20State%20Portal_files/ga.js"></script><script>var et_site_url='https://www.ca.gov';var et_post_id='2';function et_core_page_resource_fallback(a,b){"undefined"===typeof b&&(b=a.sheet.cssRules&&0===a.sheet.cssRules.length);b&&(a.onerror=null,a.onload=null,a.href?a.href=et_site_url+"/?et_core_page_resource="+a.id+et_post_id:a.src&&(a.src=et_site_url+"/?et_core_page_resource="+a.id+et_post_id))}
</script><title>www.ca.gov | California State Portal</title>
<link rel="dns-prefetch" href="https://fonts.googleapis.com/">
<link rel="dns-prefetch" href="https://california.azureedge.net/">
<link rel="dns-prefetch" href="https://s.w.org/">
<link rel="alternate" type="application/rss+xml" title="www.ca.gov » Feed" href="https://www.ca.gov/feed/">
<link rel="alternate" type="application/rss+xml" title="www.ca.gov » Comments Feed" href="https://www.ca.gov/comments/feed/">
<link rel="alternate" type="application/rss+xml" title="www.ca.gov » Welcome to the California State Web Portal Comments Feed" href="https://www.ca.gov/sample-page/feed/">
<script type="text/javascript">
window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/12.0.0-1\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/12.0.0-1\/svg\/","svgExt":".svg","source":{"concatemoji":"https:\/\/www.ca.gov\/wp-includes\/js\/wp-emoji-release.min.js?ver=5.3.2"}};
!function(e,a,t){var r,n,o,i,p=a.createElement("canvas"),s=p.getContext&&p.getContext("2d");function c(e,t){var a=String.fromCharCode;s.clearRect(0,0,p.width,p.height),s.fillText(a.apply(this,e),0,0);var r=p.toDataURL();return s.clearRect(0,0,p.width,p.height),s.fillText(a.apply(this,t),0,0),r===p.toDataURL()}function l(e){if(!s||!s.fillText)return!1;switch(s.textBaseline="top",s.font="600 32px Arial",e){case"flag":return!c([127987,65039,8205,9895,65039],[127987,65039,8203,9895,65039])&&(!c([55356,56826,55356,56819],[55356,56826,8203,55356,56819])&&!c([55356,57332,56128,56423,56128,56418,56128,56421,56128,56430,56128,56423,56128,56447],[55356,57332,8203,56128,56423,8203,56128,56418,8203,56128,56421,8203,56128,56430,8203,56128,56423,8203,56128,56447]));case"emoji":return!c([55357,56424,55356,57342,8205,55358,56605,8205,55357,56424,55356,57340],[55357,56424,55356,57342,8203,55358,56605,8203,55357,56424,55356,57340])}return!1}function d(e){var t=a.createElement("script");t.src=e,t.defer=t.type="text/javascript",a.getElementsByTagName("head")[0].appendChild(t)}for(i=Array("flag","emoji"),t.supports={everything:!0,everythingExceptFlag:!0},o=0;o<i.length;o++)t.supports[i[o]]=l(i[o]),t.supports.everything=t.supports.everything&&t.supports[i[o]],"flag"!==i[o]&&(t.supports.everythingExceptFlag=t.supports.everythingExceptFlag&&t.supports[i[o]]);t.supports.everythingExceptFlag=t.supports.everythingExceptFlag&&!t.supports.flag,t.DOMReady=!1,t.readyCallback=function(){t.DOMReady=!0},t.supports.everything||(n=function(){t.readyCallback()},a.addEventListener?(a.addEventListener("DOMContentLoaded",n,!1),e.addEventListener("load",n,!1)):(e.attachEvent("onload",n),a.attachEvent("onreadystatechange",function(){"complete"===a.readyState&&t.readyCallback()})),(r=t.source||{}).concatemoji?d(r.concatemoji):r.wpemoji&&r.twemoji&&(d(r.twemoji),d(r.wpemoji)))}(window,document,window._wpemojiSettings);
</script><script src="www.ca.gov%20|%20California%20State%20Portal_files/wp-emoji-release.js" type="text/javascript" defer="defer"></script>
<meta content="CAWeb v.1.4.20a" name="generator"><style type="text/css">
img.wp-smiley,
img.emoji {
display: inline !important;
border: none !important;
box-shadow: none !important;
height: 1em !important;
width: 1em !important;
margin: 0 .07em !important;
vertical-align: -0.1em !important;
background: none !important;
padding: 0 !important;
}
</style>
<link rel="stylesheet" id="dashicons-css" href="www.ca.gov%20|%20California%20State%20Portal_files/dashicons.css" type="text/css" media="all">
<link rel="stylesheet" id="thickbox-css" href="www.ca.gov%20|%20California%20State%20Portal_files/thickbox.css" type="text/css" media="all">
<link rel="stylesheet" id="wp-block-library-css" href="www.ca.gov%20|%20California%20State%20Portal_files/style_002.css" type="text/css" media="all">
<link rel="stylesheet" id="parent-style-css" href="www.ca.gov%20|%20California%20State%20Portal_files/style.css" type="text/css" media="all">
<link rel="stylesheet" id="divi-style-css" href="www.ca.gov%20|%20California%20State%20Portal_files/style_003.css" type="text/css" media="all">
<link rel="stylesheet" id="et-builder-googlefonts-cached-css" href="www.ca.gov%20|%20California%20State%20Portal_files/css_002.css" type="text/css" media="all">
<link rel="stylesheet" id="caweb-core-style-css" href="www.ca.gov%20|%20California%20State%20Portal_files/cagov.css" type="text/css" media="all">
<link rel="stylesheet" id="caweb-color-style-css" href="www.ca.gov%20|%20California%20State%20Portal_files/colorscheme-oceanside.css" type="text/css" media="all">
<link rel="stylesheet" id="caweb-module-style-css" href="www.ca.gov%20|%20California%20State%20Portal_files/modules.css" type="text/css" media="all">
<link rel="stylesheet" id="caweb-font-style-css" href="www.ca.gov%20|%20California%20State%20Portal_files/cagov_002.css" type="text/css" media="all">
<link rel="stylesheet" id="caweb-custom-style-css" href="www.ca.gov%20|%20California%20State%20Portal_files/custom.css" type="text/css" media="all">
<link rel="stylesheet" id="caweb-external-custom-1-styles-css" href="www.ca.gov%20|%20California%20State%20Portal_files/dialog_cagov-final.css" type="text/css" media="all">
<script type="text/javascript" src="www.ca.gov%20|%20California%20State%20Portal_files/jquery.js"></script>
<script type="text/javascript" src="www.ca.gov%20|%20California%20State%20Portal_files/jquery-migrate.js"></script>
<link rel="https://api.w.org/" href="https://www.ca.gov/wp-json/">
<link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://www.ca.gov/xmlrpc.php?rsd">
<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="https://www.ca.gov/wp-includes/wlwmanifest.xml">
<meta name="generator" content="WordPress 5.3.2">
<link rel="canonical" href="https://www.ca.gov/">
<link rel="shortlink" href="https://www.ca.gov/">
<link rel="alternate" type="application/json+oembed" href="https://www.ca.gov/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fwww.ca.gov%2F">
<link rel="alternate" type="text/xml+oembed" href="https://www.ca.gov/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fwww.ca.gov%2F&format=xml">
<script>
(function($) {
$(window).bind("load", function() {
$('.fluid-width-video-wrapper').each(function() {
var src = $(this).find('iframe').attr('src');
$(this).find('iframe').attr('src', src + '&rel=0');
});
});
})(jQuery)
</script>
<link title="Fav Icon" rel="icon" href="https://www.ca.gov/wp-content/uploads/2018/04/favicon.ico"><link rel="shortcut icon" href="https://www.ca.gov/wp-content/uploads/2018/04/favicon.ico"><style id="ca_custom_css">footer .copyright span {display: none;}
/*----- v5.5.4 Adjustments ------- */
@media (max-width: 992px) and (min-width: 768px) {
.first-level-link {padding-right: 5px !important; padding-left: 0px !important;}
}
/*----- v5.5.3 Adjustments ------- */
.utility-header .container .group .settings-links {padding-left: 0px;}
/*Logo Adjustments*/
.branding .header-organization-banner img {max-width: 200px !important;}
.fixed.compact .header-organization-banner img {max-width: 155px; max-height: 55px;}
.et_pb_slider .et-pb-arrow-prev:focus {margin-left:0 !important;opacity: 1 !important;left:0 !important; }
.et_pb_slider .et-pb-arrow-next:focus {margin-right:0 !important;opacity: 1 !important;right:0 !important;}
.et_pb_slider:hover .et-pb-arrow-prev:focus {left: 22px !important;opacity: 1 !important;}
.et_pb_slider:hover .et-pb-arrow-next:focus {right: 22px !important;opacity: 1 !important;}
/*divi icon adjustments*/
.et-pb-arrow-prev:before, .et-pb-arrow-next:before {font-family: 'CaGov'!important;}
.et_pb_slider_container_inner .et_pb_button_wrapper .et_pb_more_button:after {font-family: 'CaGov'!important;}
.list-unstyled details-page-social-icons a, .details-page-social-icons a {background-image:none !important;}
/*----- v5.5.2 Adjustments ------- */
@media (max-width: 992px ) and (min-width: 768px) {
.branding {width:100%;}
.main-navigation { width: 100%; padding-left: 180px;}
.branding .header-organization-banner img {max-width: 155px;}
/*Search adjustment*/
.featured-search.active {top:90px;}
}
@media (min-width: 992px ) {
.main-navigation {padding-left: 250px;}
}
@media (min-width: 1200px) {
.main-navigation {padding-left: 250px;}
/*Search adjustment*/
}
.sub-nav.open {overflow: hidden;}
/*Service Tiles adjustments*/
.service-tile .teaser .title {color:#fff;}
/* Underline adjustments */
.et_pb_slides a {background-image:none !important;}
.et-pb-slider-arrows a {background-image:none !important;}
/*Custom Search adjustments */
.gsc-search-button {background: transparent; }
.gsc-search-button span.ca-gov-icon-search {
color: #777;
}
/* End of 5.5.2 adjustments */
.nav-media img {
height: auto;
max-width: 100%!important;
}
li.utility-geo-locator {
display: none!important;
}
.card.card-default a.lead {
font-size: 1.3em!important;
}
.gssb_c .gsc-completion-container {
margin-top: -.1%
}
.card {
margin-bottom: 1.5rem;
}
ol.breadcrumb {
list-style: none;
margin-left: 0;
}
.btn-more.inverse {
background-color: #0d1013;
}
ul.list-inline.list-unstyled.details-page-social-icons {
padding: 0;
line-height: 0;
list-style-type: none;
display: flex;
margin-left: -10px;
}
.panel-group .panel-heading .panel-title {
margin-bottom: -10px;
}
ul.utility-links.social-media-links {
margin-left: 0 !important;
}
iframe.survey-body#patas {
background-color: white !important;
overflow: hidden !important;
}
a[title="CA.gov"] {
display:none;
}
.wpforms-confirmation-container-full {
background: #fff;
border: none;
}
#ssb-container {
top: 70%;
margin-right: -8px;
}
#ssb-btn-0 {
background: rgba(0,0,0,.4);
border-top-left-radius: 5px;
border-bottom-left-radius: 5px;
}
#ssb-container ul li span {
padding-right: 10px;
}
.search-container .search-textfield {
background-color: rgba(255, 255, 255, 0.9);
}
/*---------------------------------767--max------------------------------------------*/
@media (max-width: 767px) {
.card, .panel {
margin-bottom: 5px;
}
#photoAttributes {
display: none;
}
.ask-group {
display: none;
}
.pagename {
visibility: hidden;
}
.et_pb_fullwidth_slider_0.et_pb_slider {
height:auto!important;
}
}
/*---------------------------------100--max------------------------------------------*/
@media (min-width: 769px) and (max-width: 1000px) {
.ask-group {
display: none;
}
}
/*---------------------------------------------------------768----min------------------*/
@media (min-width: 768px) {
ul.utility-links.social-media-links {
margin-left: 0px;
}
#ssb-container ul li span {
font-size: 20px;
}
.details-page-social-icons a {
padding: 10px;
}
}
.service-tile-empty {
background-color: rgba(97, 68, 26, 0.15);
background-blend-mode: overlay;
}
.spinner > div {
width: 16px;
height: 16px;
background-color: #046B99;
border-radius: 100%;
display: inline-block;
-webkit-animation: sk-bouncedelay 1.7s infinite ease-in-out both;
animation: sk-bouncedelay 1.7s infinite ease-in-out both;
margin-right: 5px;
}
.spinner .spinner__item1 {
-webkit-animation-delay: -0.60s;
animation-delay: -0.60s;
}
.spinner .spinner__item2 {
-webkit-animation-delay: -0.40s;
animation-delay: -0.40s;
}
.spinner .spinner__item3 {
-webkit-animation-delay: -0.20s;
animation-delay: -0.20s;
}
@-webkit-keyframes sk-bouncedelay {
0%, 80%, 100% {
-webkit-transform: scale(0);
transform: scale(0);
opacity: 0;
filter: alpha(opacity=0);
}
40% {
-webkit-transform: scale(1);
transform: scale(1);
opacity: 1;
filter: alpha(opacity=100);
}
}
@keyframes sk-bouncedelay {
0%, 80%, 100% {
-webkit-transform: scale(0);
transform: scale(0);
opacity: 0;
filter: alpha(opacity=0);
}
40% {
-webkit-transform: scale(1);
transform: scale(1);
opacity: 1;
filter: alpha(opacity=100);
}
}</style><meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0"><link rel="stylesheet" id="et-core-unified-2-cached-inline-styles" href="www.ca.gov%20|%20California%20State%20Portal_files/et-core-unified-2-15817207556953.css" onerror="et_core_page_resource_fallback(this, true)" onload="et_core_page_resource_fallback(this)">
<!--[if (lt IE 9) & (!IEMobile)]>
<script src="https://california.azureedge.net/cdt/statetemplate/5.5.8/js/libs/selectivizr-min.js"></script>
<![endif]-->
<!-- Activate ClearType for Mobile IE -->
<!--[if IE]>
<meta http-equiv="cleartype" content="on">
<![endif]-->
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 8]>
<script src="https://california.azureedge.net/cdt/statetemplate/5.5.8/js/libs/html5shiv.min.js"></script>
<script src="https://california.azureedge.net/cdt/statetemplate/5.5.8/js/libs/respond.min.js"></script>
<![endif]-->
<style>[data-columns]::before{visibility:hidden;position:absolute;font-size:1px;}</style><style id="fit-vids-style">.fluid-width-video-wrapper{width:100%;position:relative;padding:0;}.fluid-width-video-wrapper iframe,.fluid-width-video-wrapper object,.fluid-width-video-wrapper embed {position:absolute;top:0;left:0;width:100%;height:100%;}</style><style type="text/css">.fancybox-margin{margin-right:0px;}</style><link type="text/css" rel="stylesheet" charset="UTF-8" href="www.ca.gov%20|%20California%20State%20Portal_files/translateelement.css"><script type="text/javascript" charset="UTF-8" src="www.ca.gov%20|%20California%20State%20Portal_files/main_ru.js"></script><script src="www.ca.gov%20|%20California%20State%20Portal_files/cse_element__en.js" type="text/javascript"></script><link type="text/css" rel="stylesheet" href="www.ca.gov%20|%20California%20State%20Portal_files/defaulten.css"><link type="text/css" rel="stylesheet" href="www.ca.gov%20|%20California%20State%20Portal_files/default.css"><script type="text/javascript" charset="UTF-8" src="www.ca.gov%20|%20California%20State%20Portal_files/element_main.js"></script><style type="text/css">.gsc-control-cse{font-family:arial, sans-serif}.gsc-control-cse .gsc-table-result{font-family:arial, sans-serif}.gsc-refinementsGradient{background:linear-gradient(to left,rgba(255,255,255,1),rgba(255,255,255,0))}.gsc-control-cse{border-color:#FFFFFF;background-color:#FFFFFF}input.gsc-input,.gsc-input-box,.gsc-input-box-hover,.gsc-input-box-focus{border-color:#BCCDF0}.gsc-search-button-v2,.gsc-search-button-v2:hover,.gsc-search-button-v2:focus{border-color:#666666;background-color:#CECECE;background-image:none;filter:none}.gsc-search-button-v2 svg{fill:#FFFFFF}.gsc-tabHeader.gsc-tabhActive,.gsc-refinementHeader.gsc-refinementhActive{color:#CCCCCC;border-color:#CCCCCC;background-color:#FFFFFF}.gsc-tabHeader.gsc-tabhInactive,.gsc-refinementHeader.gsc-refinementhInactive{color:#CCCCCC;border-color:#CCCCCC;background-color:#FFFFFF}.gsc-webResult.gsc-result,.gsc-results .gsc-imageResult{border-color:#FFFFFF;background-color:#FFFFFF}.gsc-webResult.gsc-result:hover,.gsc-imageResult:hover{border-color:#FFFFFF;background-color:#FFFFFF}.gs-webResult.gs-result a.gs-title:link,.gs-webResult.gs-result a.gs-title:link b,.gs-imageResult a.gs-title:link,.gs-imageResult a.gs-title:link b{color:#0000CC}.gs-webResult.gs-result a.gs-title:visited,.gs-webResult.gs-result a.gs-title:visited b,.gs-imageResult a.gs-title:visited,.gs-imageResult a.gs-title:visited b{color:#0000CC}.gs-webResult.gs-result a.gs-title:hover,.gs-webResult.gs-result a.gs-title:hover b,.gs-imageResult a.gs-title:hover,.gs-imageResult a.gs-title:hover b{color:#0000CC}.gs-webResult.gs-result a.gs-title:active,.gs-webResult.gs-result a.gs-title:active b,.gs-imageResult a.gs-title:active,.gs-imageResult a.gs-title:active b{color:#0000CC}.gsc-cursor-page{color:#0000CC}a.gsc-trailing-more-results:link{color:#0000CC}.gs-webResult .gs-snippet,.gs-imageResult .gs-snippet,.gs-fileFormatType{color:#000000}.gs-webResult div.gs-visibleUrl,.gs-imageResult div.gs-visibleUrl{color:#008000}.gs-webResult div.gs-visibleUrl-short{color:#008000}.gs-webResult div.gs-visibleUrl-short{display:none}.gs-webResult div.gs-visibleUrl-long{display:block}.gs-promotion div.gs-visibleUrl-short{display:none}.gs-promotion div.gs-visibleUrl-long{display:block}.gsc-cursor-box{border-color:#FFFFFF}.gsc-results .gsc-cursor-box .gsc-cursor-page{border-color:#CCCCCC;background-color:#FFFFFF;color:#CCCCCC}.gsc-results .gsc-cursor-box .gsc-cursor-current-page{border-color:#CCCCCC;background-color:#FFFFFF;color:#CCCCCC}.gsc-webResult.gsc-result.gsc-promotion{border-color:#336699;background-color:#FFFFFF}.gsc-completion-title{color:#0000CC}.gsc-completion-snippet{color:#000000}.gs-promotion a.gs-title:link,.gs-promotion a.gs-title:link *,.gs-promotion .gs-snippet a:link{color:#0000CC}.gs-promotion a.gs-title:visited,.gs-promotion a.gs-title:visited *,.gs-promotion .gs-snippet a:visited{color:#0000CC}.gs-promotion a.gs-title:hover,.gs-promotion a.gs-title:hover *,.gs-promotion .gs-snippet a:hover{color:#0000CC}.gs-promotion a.gs-title:active,.gs-promotion a.gs-title:active *,.gs-promotion .gs-snippet a:active{color:#0000CC}.gs-promotion .gs-snippet,.gs-promotion .gs-title .gs-promotion-title-right,.gs-promotion .gs-title .gs-promotion-title-right *{color:#000000}.gs-promotion .gs-visibleUrl,.gs-promotion .gs-visibleUrl-short{color:#008000}.gcsc-find-more-on-google{color:#0000CC}.gcsc-find-more-on-google-magnifier{fill:#0000CC}</style></head>
<body class="home page-template-default page page-id-2 et_pb_button_helper_class et_header_style_left et_pb_footer_columns4 et_cover_background et_pb_gutter osx et_pb_gutters3 et_pb_pagebuilder_layout et_no_sidebar et_divi_theme et-db et_minified_js et_minified_css divi_builder title_not_displayed v5 sidebar_not_displayed sticky_nav gecko" style="opacity: 1; position: relative; min-height: 100%; top: 0px; overflow-x: hidden;" data-gr-c-s-loaded="true">
<header id="header" class="global-header fixed">
<div id="skip-to-content"><a href="#main-content">Skip to Main Content</a></div><div class="section collapse collapsed show" style="border-top: 0px; border-bottom: 0px; padding-top: 30px; padding-bottom: 30px; background-color: #f1f1f1;" id="surveySection"><div class="container"> <button type="button" class="close" data-toggle="collapse" data-target="#surveySection" aria-expanded="false" aria-controls="surveySection" aria-label="Close"> <span aria-hidden="true">×</span> </button> <span>We're working to improve your experience with government by learning from people like you. Please take <a href="javascript:externalConfirmation('redirectConfirm','https://www.surveymonkey.com/r/general916', 'externalLocation1');" style="text-decoration: underline; color: #000000;" onmousedown="_gaq.push(['_trackEvent', 'Outbound Links', 'Click', 'surveymonkey.com/r/general916', 0, 0]); _gaq.push(['b._trackEvent', 'Outbound Links', 'Click', 'surveymonkey.com/r/general916', 0, 0]);" id="externalLocation1" target="_self"><strong>this quick survey</strong></a> to help us get better.</span></div></div>
<!-- Alert Banners --><!-- Utility Header -->
<div class="utility-header hidden-print">
<div class="container">
<div class="group flex-row">
<div class="social-media-links">
<!--<div class="header-cagov-logo">
<a href="https://www.ca.gov/" title="CA.gov website">
<span class="sr-only">CA.gov</span>
<img style="height: 31px;" src="https://www.ca.gov/wp-content/themes/CAWeb/images/system/logo.svg" class="pos-rel" alt="CA.gov website" aria-hidden="true" />
</a>
</div>-->
<a href="https://www.ca.gov/" title="Home" class="utility-home-icon ca-gov-icon-home"><span class="sr-only">Home</span></a><a class="utility-social-facebook ca-gov-icon-facebook fbc-has-badge fbc-UID_1" href="https://www.facebook.com/sharer/sharer.php?u=https%3A%2F%2Fwww.ca.gov%2F&display=popup" title="Share via Facebook" target="_blank" onmousedown="_gaq.push(['_trackEvent', 'Outbound Links', 'Click', 'facebook.com/sharer/sharer.php?u=https%3a%2f%2fwww.ca.gov%2f&display=popup', 0, 0]); _gaq.push(['b._trackEvent', 'Outbound Links', 'Click', 'facebook.com/sharer/sharer.php?u=https%3a%2f%2fwww.ca.gov%2f&display=popup', 0, 0]);"><span class="sr-only">Facebook</span></a><a class="utility-social-twitter ca-gov-icon-twitter" href="https://twitter.com/intent/tweet?text=CA.Gov%20:%20Services&url=https%3A%2F%2Fwww.ca.gov%2FServices" title="Share via Twitter" target="_blank" onmousedown="_gaq.push(['_trackEvent', 'Outbound Links', 'Click', 'twitter.com/intent/tweet?text=ca.gov%20:%20services&url=https%3a%2f%2fca.gov%2fservices', 0, 0]); _gaq.push(['b._trackEvent', 'Outbound Links', 'Click', 'twitter.com/intent/tweet?text=ca.gov%20:%20services&url=https%3a%2f%2fca.gov%2fservices', 0, 0]);"><span class="sr-only">Twitter</span></a><a class="utility-social-google-plus ca-gov-icon-google-plus" href="https://plus.google.com/share?url=https%3A%2F%2Fwww.ca.gov%2FServices" title="Share via Google-plus" target="_blank" onmousedown="_gaq.push(['_trackEvent', 'Outbound Links', 'Click', 'plus.google.com/share?url=https%3a%2f%2fca.gov%2fservices', 0, 0]); _gaq.push(['b._trackEvent', 'Outbound Links', 'Click', 'plus.google.com/share?url=https%3a%2f%2fca.gov%2fservices', 0, 0]);"><span class="sr-only">Google-plus</span></a> </div>
<div class="settings-links">
<a class="utility-custom-1" href="https://www.ca.gov/agencysearch/">State Agencies</a><div id="setLocation"><a data-toggle="collapse" href="#locationSettings" onclick="showAddLocation()" aria-expanded="false" aria-controls="locationSettings" class="geo-lookup" aria-selected="false" id="ui-collapse-649"><span class="ca-gov-icon-compass" aria-hidden="true"></span> <span class="located-city-name">Set Location</span></a></div> <a class="utility-contact-us" href="https://www.ca.gov/contact/">Contact Us</a>
<a id="caweb-gtrans-custom" target="_blank" href="https://www.ca.gov/translate/"><span class="ca-gov-icon-globe"></span>Translate</a>
<button class="btn btn-xs btn-primary collapsed" data-toggle="collapse" data-target="#siteSettings" aria-controls="siteSettings" aria-expanded="false" id="ui-collapse-303">
<span class="ca-gov-icon-gear" aria-hidden="true"></span> Settings</button>
</div>
</div>
</div>
</div>
<!-- setting location - custom ca.gov include -->
<div id="locationSettings" class="section section-standout collapse collapsed"></div>
<!-- Settings Bar -->
<div class="site-settings section section-standout collapse collapsed" aria-atomic="true" id="siteSettings">
<div class="container p-y">
<div class="btn-group btn-group-justified-sm" role="group" aria-label="contrastMode">
<div class="btn-group"><button type="button" class="btn btn-standout disableHighContrastMode">Default</button></div>
<div class="btn-group"><button type="button" class="btn btn-standout enableHighContrastMode">High Contrast</button></div>
</div>
<div class="btn-group" role="group" aria-label="textSizeMode">
<div class="btn-group"><button type="button" class="btn btn-standout resetTextSize">Reset</button></div>
<div class="btn-group"><button type="button" class="btn btn-standout increaseTextSize"><span class="hidden-xs">Increase Font Size</span><span class="visible-xs">Font <span class="sr-only">Increase</span><span class="ca-gov-icon-plus-line font-size-sm" aria-hidden="true"></span></span></button></div>
<div class="btn-group"><button type="button" class="btn btn-standout decreaseTextSize"><span class="hidden-xs">Decrease Font Size</span><span class="visible-xs">Font <span class="sr-only">Decrease</span><span class="ca-gov-icon-minus-line font-size-sm" aria-hidden="true"></span></span></button></div>
</div>
<button type="button" class="close" data-toggle="collapse" data-target="#siteSettings" aria-expanded="false" aria-controls="siteSettings" aria-label="Close" id="ui-collapse-151"><span aria-hidden="true">×</span></button>
</div>
</div><!-- Branding -->
<div class="branding">
<div class="header-organization-banner"><a href="https://www.ca.gov/"><img src="www.ca.gov%20|%20California%20State%20Portal_files/ca.png" alt="ca.gov logo"></a></div>
</div>
<!-- Include Mobile Controls -->
<!-- mobile navigation controls -->
<div class="mobile-controls">
<span class="mobile-control-group mobile-header-icons">
<!-- Add more mobile controls here. These will be on the right side of the mobile page header section -->
</span>
<div class="mobile-control-group main-nav-icons float-right">
<button class="mobile-control toggle-search">
<span class="ca-gov-icon-search hidden-print" aria-hidden="true"></span><span class="sr-only">Search</span>
</button>
<button id="nav-icon3" class="mobile-control toggle-menu" aria-expanded="false" aria-controls="nav_list" data-toggle="collapse" data-target="#navigation" aria-selected="false">
<span></span>
<span></span>
<span></span>
<span></span>
<span class="sr-only">Menu</span>
</button>
</div>
</div>
<div class="navigation-search">
<!-- Version 4 top-right search box always displayed -->
<!-- Version 5.0 fade in/out search box displays on front page and if option is enabled -->
<!-- Include Navigation -->
<nav id="navigation" class="main-navigation singlelevel hidden-print">
<ul id="nav_list" class="top-level-nav nav-menu js-nav-menu"><li class="nav-item menu-item menu-item-type-post_type menu-item-object-page" title=""><a href="https://www.ca.gov/services/" class="first-level-link" id="accessible-menu-1581751695096-1"><span class="ca-gov-icon-gears"></span><span class="link-title">Getting Services</span></a></li><li class="nav-item menu-item menu-item-type-post_type menu-item-object-page" title=""><a href="https://www.ca.gov/doingbusiness/" class="first-level-link" id="accessible-menu-1581751695097-2"><span class="ca-gov-icon-briefcase"></span><span class="link-title">Doing Business</span></a></li><li class="nav-item menu-item menu-item-type-post_type menu-item-object-page" title=""><a href="https://www.ca.gov/working/" class="first-level-link" id="accessible-menu-1581751695098-3"><span class="ca-gov-icon-idea"></span><span class="link-title">Working</span></a></li><li class="nav-item menu-item menu-item-type-post_type menu-item-object-page" title=""><a href="https://www.ca.gov/learning/" class="first-level-link" id="accessible-menu-1581751695098-4"><span class="ca-gov-icon-graduate"></span><span class="link-title">Learning</span></a></li><li class="nav-item menu-item menu-item-type-post_type menu-item-object-page" title=""><a href="https://www.ca.gov/living/" class="first-level-link" id="accessible-menu-1581751695099-5"><span class="ca-gov-icon-state"></span><span class="link-title">Living</span></a></li><li class="nav-item menu-item menu-item-type-post_type menu-item-object-page" title=""><a href="https://www.ca.gov/visiting/" class="first-level-link" id="accessible-menu-1581751695100-6"><span class="ca-gov-icon-camera"></span><span class="link-title">Visiting</span></a></li><li class="nav-item menu-item menu-item-type-post_type menu-item-object-page" title=""><a href="https://www.ca.gov/government/" class="first-level-link" id="accessible-menu-1581751695100-7"><span class="ca-gov-icon-capitol"></span><span class="link-title">Government</span></a></li><li class="nav-item nav-item-search" id="nav-item-search"><a href="javascript:;" class="first-level-link" id="accessible-menu-1581751695101-8"><span class="ca-gov-icon-search" aria-hidden="true"></span> Search</a></li></ul></nav> <div id="head-search" class="search-container featured-search fade hidden-print in">
<div class="container">
<form id="Search" class="pos-rel" action="https://www.ca.gov/serp">
<span class="sr-only" id="SearchInput">Custom Google Search</span>
<input type="text" id="q" name="q" aria-labelledby="SearchInput" placeholder="Search this website" class="search-textfield height-50 border-0 p-x-sm w-100">
<button type="submit" class="pos-abs gsc-search-button top-0 width-50 height-50 border-0 bg-transparent">
<span class="ca-gov-icon-search font-size-30 color-gray" aria-hidden="true"></span>
<span class="sr-only">Submit</span>
</button>
<div class="width-50 height-50 close-search-btn">
<button class="close-search gsc-clear-button width-50 height-50 border-0 bg-transparent pos-rel" type="reset">
<span class="sr-only">Close Search</span>
<span class="ca-gov-icon-close-mark" aria-hidden="true"></span>
</button>
</div>
</form>
</div>
</div>
</div>
</header>
<div id="page-container" style="overflow-y: hidden;">
<div id="et-main-area">
<div id="main-content" class="main-content print-p-t" tabindex="-1" style="padding-top: 5px;">
<main class="main-primary">
<div id="webchat" role="main"></div>
<!-- <script>
(async function() {
// In this demo, we are using Direct Line token from MockBot.
// Your client code must provide either a secret or a token to talk to your bot.
// Tokens are more secure. To learn about the differences between secrets and tokens
// and to understand the risks associated with using secrets, visit https://docs.microsoft.com/en-us/azure/bot-service/rest-api/bot-framework-rest-direct-line-3-0-authentication?view=azure-bot-service-4.0
const res = await fetch('https://cadotgovqnamakerbot.azurewebsites.net/directline/token', { method: 'POST' });
const { token } = await res.json();
console.log(token);
// Pass a Web Speech ponyfill factory to renderWebChat.
// You can also use your own speech engine given it is complaint to W3C Web Speech API: https://w3c.github.io/speech-api/.
// For implementor, look at createBrowserWebSpeechPonyfill.js for details.
window.WebChat.renderWebChat(
{
directLine: window.WebChat.createDirectLine({ token }),
webSpeechPonyfillFactory: window.WebChat.createBrowserWebSpeechPonyfillFactory()
},
document.getElementById('webchat')
);
document.querySelector('#webchat > *').focus();
})().catch(err => console.error(err));
</script> -->
<script>
let xhr = new XMLHttpRequest();
xhr.open('GET', "https://webchat.botframework.com/api/tokens", true);
xhr.setRequestHeader('Authorization', 'BotConnector kIHAW41azQk.xTJGTZhn8jgFcXfUM5i6aeGqYqzqwnEo-X_sBORg4VU');
xhr.send();
xhr.onreadystatechange = processRequest;
async function processRequest(e) {
if (xhr.readyState == 4 && xhr.status == 200) {
var token = JSON.parse(xhr.responseText);
console.log(token);
window.WebChat.renderWebChat({
// ...adapters,
directLine: window.WebChat.createDirectLine({
token: token
}),
// locale: 'en-US',
webSpeechPonyfillFactory: await createCognitiveServicesSpeechServicesPonyfillFactory({
region: 'westus',
subscriptionKey: 'b05130d775734369827989e2a247e5da'
})
},
document.getElementById('webchat')
);
}
}
</script>
<article id="post-2" class="post-2 page type-page status-publish hentry">
<div class="entry-content"><div id="et-boc" class="et-boc">
<div class="et-l et-l--post">
<div class="et_builder_inner_content et_pb_gutters3">
<div class="et_pb_section et_pb_section_0 header-large-banner hidden-print enabled et_pb_fullwidth_section et_section_regular" style="height: 931px; background-image: url("https://california.azureedge.net/cdt/CAgovPortal/Hero-Banner-Images/Sacramento-Region/Winter/Night/GettyImages-89156284.jpg");">
<div id="home-page" class="et_pb_module et_pb_fullwidth_code et_pb_fullwidth_code_0">
<div class="et_pb_code_inner"><script>
//makes the browser wait to display the page until it's fully loaded.
// Use it if page contains primary or slideshow banner to make sure page content loads smouthly
jQuery('body').css('opacity', 0);
jQuery(window).load(function () {
jQuery("body").fadeTo("slow", 1);
jQuery("#twitter-widget-1").removeAttr("frameborder");
});
</script>
<script src="www.ca.gov%20|%20California%20State%20Portal_files/cagovapplets.js" type="text/javascript"></script>
<style>
.et_pb_section_0 {
background-color: #EFEFEF;
/*background-image: url(https://prododisharedstore01.blob.core.windows.net/cdt/CAgovPortal/Hero-Banner-Images/Los-Angeles/Summer/Day/Summer-Day-Santa-Monica-beach-GettyImages-534610535.jpg);*/
height: 660px;
}
</style>
<div class="header-content-container center">
</div>
</div>
</div> <!-- .et_pb_fullwidth_code --><div class="et_pb_module et_pb_fullwidth_code et_pb_fullwidth_code_1">
<div class="et_pb_code_inner"><div class="ask-group hidden-print in" style="background-size: cover; background-repeat: no-repeat; background-image:none">
<div class="panel-group" id="askGroup" style="top: 428.517px;">
<div class="panel">
<a href="https://www.ca.gov/agencysearch/" class="btn btn-primary ask-button collapsed ask-how" tabindex="0"><span class="ca-gov-icon-online-services"></span>Find State Agencies</a></div>
<div class="panel ">
<a href="https://www.ca.gov/services/" class="btn btn-primary ask-button collapsed" tabindex="0"><span class="ca-gov-icon-people" aria-hidden="true"></span>Find State Services</a> </div>
<div class="panel ">
<a href="https://www.ca.gov/contact/#faq" class="btn btn-primary ask-button collapsed" tabindex="0"><span class="ca-gov-icon-lightbulb" aria-hidden="true"></span>Common Questions</a> </div>
</div>
</div>
</div>
</div> <!-- .et_pb_fullwidth_code -->
</div> <!-- .et_pb_section --><div class="et_pb_section et_pb_section_1 et_pb_fullwidth_section et_section_regular">
<div class="et_pb_module et_pb_fullwidth_code et_pb_fullwidth_code_2 et_pb_fullwidth_header_scroll ">
<div class="et_pb_code_inner"><div class="explore-invite ">
<div style="float: left; color:#f5f5f5; padding-top:20px; text-shadow: 2px 2px #000000; cursor:default; position: absolute;" id="photoAttributes">
<span id="spanCaption" style="font-size: 1.3em;">Emerald Bay</span><br>
<span id="abbrCopy" style="font-size:1em;">© State of California</span>
</div>
<div class="pagename" style="/* float: left; */color:#f5f5f5;top: 25%;right: 1%;/* padding-top:20px; */text-shadow: 2px 2px #000000;/* cursor:default; */position: absolute; id=" pagetitle"="">
<span style="font-size:1em;">The official homepage</span><br>
<span style="font-size: 1.3em;">of the State of California</span></div>
<!-- <p id="demo" style=" color: #FFFFFF;
padding-left: 3%;
padding-top: 2%;
height: 100%;
position: absolute;"></p> -->
<div class="text-center"> <a href="#featured-service-tab-1"><span class="scroll-down explore-title scroll-down">Explore</span><span class="ca-gov-icon-arrow-down "></span> </a></div></div></div>
</div> <!-- .et_pb_fullwidth_code -->
</div> <!-- .et_pb_section --><div class="et_pb_section et_pb_section_2 et_pb_fullwidth_section et_section_regular">
<div class="et_pb_module et_pb_fullwidth_code et_pb_fullwidth_code_3">
<div class="et_pb_code_inner"><script>
function myFunction() {
processJsonData.showHomePageServices(4,'featuredServicesListing',31,38,1122,20,'en','/service','/agency');
}
setTimeout(myFunction, 750);
</script>
<div class="section section-understated collapsed" style="background-color: rgb(0, 0, 0);" id="featuredServicesListing">
<div class="service-group clearfix" style=" background-color: #000000">
<!-- BEGIN TILES -->
<div id="featured-service-tab-1" tabindex="0" class="service-tile" data-tile-id="panel-1" style="background-size: cover; height: 320px; background-color: rgb(22, 22, 22); background-image: url("https://stateentityprofile.ca.gov/Uploads/service-31-Find-Fire-Information.jpg");" data-state="closed" aria-label="Find Fire Information Service Tile. Hit Enter to toggle between displaying and hiding details about this service."><div class="teaser"><h4 class="title" aria-label="Find Fire Information Service Tile. Hit Enter to toggle between displaying and hiding details about this service.">Find Fire Information</h4></div></div>
<div id="featured-service-tab-2" tabindex="0" class="service-tile" data-tile-id="panel-2" style="background-size: cover; height: 320px; background-color: rgb(22, 22, 22); background-image: url("https://stateentityprofile.ca.gov/Uploads/service-1122-Get-Disaster-Relief-Assistance.jpg");" data-state="closed" aria-label="Get Disaster Relief Assistance Service Tile. Hit Enter to toggle between displaying and hiding details about this service."><div class="teaser"><h4 class="title" aria-label="Get Disaster Relief Assistance Service Tile. Hit Enter to toggle between displaying and hiding details about this service.">Get Disaster Relief Assistance</h4></div></div>
<div id="featured-service-tab-3" tabindex="0" class="service-tile" data-tile-id="panel-3" style="background-size: cover; height: 320px; background-color: rgb(22, 22, 22); background-image: url("https://stateentityprofile.ca.gov/Uploads/service-File-Unemployment.jpg");" data-state="closed" aria-label="File for Unemployment Service Tile. Hit Enter to toggle between displaying and hiding details about this service."><div class="teaser"><h4 class="title" aria-label="File for Unemployment Service Tile. Hit Enter to toggle between displaying and hiding details about this service.">File for Unemployment</h4></div></div>
<div id="featured-service-tab-4" tabindex="0" class="service-tile" data-tile-id="panel-4" style="background-size: cover; height: 320px; background-color: rgb(22, 22, 22); background-image: url("https://stateentityprofile.ca.gov/Uploads/service-Locate-Current-Road-Conditions.jpg");" data-state="closed" aria-label="Locate Current Road Conditions Service Tile. Hit Enter to toggle between displaying and hiding details about this service."><div class="teaser"><h4 class="title" aria-label="Locate Current Road Conditions Service Tile. Hit Enter to toggle between displaying and hiding details about this service.">Locate Current Road Conditions</h4></div></div>
<!-- END TILES -->
<!-- BEGIN PANELS -->
<div id="featured-service-panel-1" class="service-tile-panel" data-tile-id="panel-1" style="background-color:#909090;"><div class="section section-default"><div class="container" style="padding-top: 5px;"><div class="card card-block"><button type="button" class="close btn" data-dismiss="modal" aria-label="Hit Enter to close details." style="font-size: 1.5em;">X</button><div class="group"><div class="two-thirds"><h1 class="m-y-0 ">Find Fire Information</h1><p class="lead"><a href="https://www.ca.gov/agency?item=california-department-of-forestry-and-fire-protection" aria-label="View California Department of Forestry and Fire Protection Agency Details.">California Department of Forestry and Fire Protection</a></p><p>Find information on fires in California....</p><br><div class="btn-row m-b"><a href="javascript:externalConfirmation('redirectConfirm','https://www.fire.ca.gov/current_incidents', 'launch-find-fire-information');" id="launch-find-fire-information" class="btn btn-default btn-block-xs" aria-label="Launch the Find Fire Information service. "><span class="ca-gov-icon-computer"></span> Launch Service</a><a href="https://www.ca.gov/service?item=find-fire-information" class="btn btn-default btn-block-xs" aria-label="View additional details about the Find Fire Information service."><span class="ca-gov-icon-info"></span> See Details</a> </div><div class="location" itemscope="" itemtype="http://schema.org/Organization"><meta itemprop="name" content="Find Fire Information"><div class="contact"><p class="other">General Information: <span itemprop="telephone">800-807-6755</span><br></p></div></div></div><div class="third text-center"><img src="www.ca.gov%20|%20California%20State%20Portal_files/logo-147-CAL%2520FIRE.png" class="img-responsive m-t-md" alt=""></div></div></div></div></div></div>
<div id="featured-service-panel-2" class="service-tile-panel" data-tile-id="panel-2" style="background-color:#909090;"><div class="section section-default"><div class="container" style="padding-top: 5px;"><div class="card card-block"><button type="button" class="close btn" data-dismiss="modal" aria-label="Hit Enter to close details." style="font-size: 1.5em;">X</button><div class="group"><div class="two-thirds"><h1 class="m-y-0 ">Get Disaster Relief Assistance</h1><p class="lead"><a href="https://www.ca.gov/agency?item=office-of-the-governor" aria-label="View Office of the Governor Agency Details.">Office of the Governor</a></p><p>Find information on how to access disaster relief services and information on ensuring your health and safety....</p><br><div class="btn-row m-b"><a href="javascript:externalConfirmation('redirectConfirm','https://immigrantguide.ca.gov/en/DisasterRelief/', 'launch-get-disaster-relief-assistance');" id="launch-get-disaster-relief-assistance" class="btn btn-default btn-block-xs" aria-label="Launch the Get Disaster Relief Assistance service. "><span class="ca-gov-icon-computer"></span> Launch Service</a><a href="https://www.ca.gov/service?item=get-disaster-relief-assistance" class="btn btn-default btn-block-xs" aria-label="View additional details about the Get Disaster Relief Assistance service."><span class="ca-gov-icon-info"></span> See Details</a> </div><div class="location" itemscope="" itemtype="http://schema.org/Organization"><meta itemprop="name" content="Get Disaster Relief Assistance"><div class="contact"><p class="other">General Information: <span itemprop="telephone">800-807-6755</span><br></p></div></div></div><div class="third text-center"><img src="www.ca.gov%20|%20California%20State%20Portal_files/logo-238-GOV.png" class="img-responsive m-t-md" alt=""></div></div></div></div></div></div>
<div id="featured-service-panel-3" class="service-tile-panel" data-tile-id="panel-3" style="background-color:#909090;"><div class="section section-default"><div class="container" style="padding-top: 5px;"><div class="card card-block"><button type="button" class="close btn" data-dismiss="modal" aria-label="Hit Enter to close details." style="font-size: 1.5em;">X</button><div class="group"><div class="two-thirds"><h1 class="m-y-0 ">File for Unemployment</h1><p class="lead"><a href="https://www.ca.gov/agency?item=employment-development-department" aria-label="View Employment Development Department Agency Details.">Employment Development Department</a></p><p>This
is an online service offered by the Employment Development Department
(EDD). It is a fast, convenient, and secure way for customers to file
and manage claims....</p><br><div class="btn-row m-b"><a href="javascript:externalConfirmation('redirectConfirm','https://www.edd.ca.gov/Unemployment/UI_Online.htm', 'launch-file-for-unemployment');" id="launch-file-for-unemployment" class="btn btn-default btn-block-xs" aria-label="Launch the File for Unemployment service. "><span class="ca-gov-icon-computer"></span> Launch Service</a><a href="https://www.ca.gov/service?item=file-for-unemployment" class="btn btn-default btn-block-xs" aria-label="View additional details about the File for Unemployment service."><span class="ca-gov-icon-info"></span> See Details</a> </div><div class="location" itemscope="" itemtype="http://schema.org/Organization"><meta itemprop="name" content="File for Unemployment"><div class="contact"><p class="other">General Information: <span itemprop="telephone">866-333-4606</span><br></p></div></div></div><div class="third text-center"><img src="www.ca.gov%20|%20California%20State%20Portal_files/logo-229-EDD.png" class="img-responsive m-t-md" alt=""></div></div></div></div></div></div>
<div id="featured-service-panel-4" class="service-tile-panel" data-tile-id="panel-4" style="background-color:#909090;"><div class="section section-default"><div class="container" style="padding-top: 5px;"><div class="card card-block"><button type="button" class="close btn" data-dismiss="modal" aria-label="Hit Enter to close details." style="font-size: 1.5em;">X</button><div class="group"><div class="two-thirds"><h1 class="m-y-0 ">Locate Current Road Conditions</h1><p class="lead"><a href="https://www.ca.gov/agency?item=california-highway-patrol" aria-label="View California Highway Patrol Agency Details.">California Highway Patrol</a></p><p>For
up-to-date information on current road conditions, choose from a list
of CHP Communication Centers. The contact number below is for
non-emergency situations....</p><br><div class="btn-row m-b"><a href="javascript:externalConfirmation('redirectConfirm','https://www.chp.ca.gov/traffic', 'launch-locate-current-road-conditions');" id="launch-locate-current-road-conditions" class="btn btn-default btn-block-xs" aria-label="Launch the Locate Current Road Conditions service. "><span class="ca-gov-icon-computer"></span> Launch Service</a><a href="https://www.ca.gov/service?item=locate-current-road-conditions" class="btn btn-default btn-block-xs" aria-label="View additional details about the Locate Current Road Conditions service."><span class="ca-gov-icon-info"></span> See Details</a> </div><div class="location" itemscope="" itemtype="http://schema.org/Organization"><meta itemprop="name" content="Locate Current Road Conditions"><div class="contact"><p class="other">General Information: <span itemprop="telephone">800-835-5247</span><br></p></div></div></div><div class="third text-center"><img src="www.ca.gov%20|%20California%20State%20Portal_files/logo-184-CHP.png" class="img-responsive m-t-md" alt=""></div></div></div></div></div></div>
<!-- END PANELS -->
</div>
<div class="more-button" style=" background-color: #000000">
<div class="more-content fake-service-group" style="filter: blur(6px);"></div>
<a href="https://www.ca.gov/services" class="btn-more inverse"><span class="more-title">More Services</span><span class="ca-gov-icon-arrow-down more-icon" aria-hidden="true"></span></a>
</div>
</div>
</div>
</div> <!-- .et_pb_fullwidth_code --><div class="et_pb_module et_pb_fullwidth_slider_0 et_hover_enabled et_pb_slider et_pb_bg_layout_dark has-box-shadow-overlay" data-active-slide="et_pb_slide_0"><div class="box-shadow-overlay"></div>
<div class="et_pb_slides">
<div class="et_pb_slide et_pb_slide_0 et_pb_bg_layout_dark et_pb_media_alignment_center et_pb_slider_with_overlay et-pb-active-slide" data-slide-id="et_pb_slide_0">
<div class="et_pb_slide_overlay_container"></div>
<div class="et_pb_container clearfix" style="height: 985px;">
<div class="et_pb_slider_container_inner">
<div class="et_pb_slide_description">
<h2 class="et_pb_slide_title"><a href="javascript:externalConfirmation('redirectConfirm','https://www.dmv.ca.gov/portal/dmv/detail/realid', 'externalLocation24');" id="externalLocation24" target="_self">Fly Often? Find out more about applying for a REAL ID Driver License or ID card.</a></h2>
<div class="et_pb_button_wrapper"><a class="et_pb_button et_pb_more_button no-underline" href="javascript:externalConfirmation('redirectConfirm','https://www.dmv.ca.gov/portal/dmv/detail/realid', 'externalLocation25');" target="_self" id="externalLocation25">Learn more about Real ID</a></div>
</div> <!-- .et_pb_slide_description -->
</div>
</div> <!-- .et_pb_container -->
</div> <!-- .et_pb_slide -->
<div class="et_pb_slide et_pb_slide_1 et_pb_bg_layout_dark et_pb_media_alignment_center et_pb_slider_with_overlay" data-slide-id="et_pb_slide_1">
<div class="et_pb_slide_overlay_container"></div>
<div class="et_pb_container clearfix" style="height: 985px;">
<div class="et_pb_slider_container_inner">
<div class="et_pb_slide_description">
<h2 class="et_pb_slide_title"><a href="javascript:externalConfirmation('redirectConfirm','http://immigrantguide.ca.gov/', 'externalLocation26');" id="externalLocation26" target="_self">California's Immigrant Guide</a></h2><div class="et_pb_slide_content"><p>California
has developed innovative services that help immigrants become part of
the social, economic and civic fabric of our state.</p></div>
<div class="et_pb_button_wrapper"><a class="et_pb_button et_pb_more_button no-underline" href="javascript:externalConfirmation('redirectConfirm','http://immigrantguide.ca.gov/', 'externalLocation27');" target="_self" id="externalLocation27">Visit California's Immigrant Guide</a></div>
</div> <!-- .et_pb_slide_description -->
</div>
</div> <!-- .et_pb_container -->
</div> <!-- .et_pb_slide -->
<div class="et_pb_slide et_pb_slide_2 et_pb_bg_layout_dark et_pb_media_alignment_center et_pb_slider_with_overlay" data-slide-id="et_pb_slide_2">
<div class="et_pb_slide_overlay_container"></div>
<div class="et_pb_container clearfix" style="height: 985px;">
<div class="et_pb_slider_container_inner">
<div class="et_pb_slide_description">
<h2 class="et_pb_slide_title"><a href="javascript:externalConfirmation('redirectConfirm','https://cannabis.ca.gov/', 'externalLocation28');" id="externalLocation28" target="_self">California Cannabis Web Portal</a></h2><div class="et_pb_slide_content"><p>California is working hard to develop and establish wide ranging regulations for this complex and expanding market.</p></div>
<div class="et_pb_button_wrapper"><a class="et_pb_button et_pb_more_button no-underline" href="javascript:externalConfirmation('redirectConfirm','https://cannabis.ca.gov/', 'externalLocation29');" target="_self" id="externalLocation29">Visit California's Cannabis Website</a></div>
</div> <!-- .et_pb_slide_description -->
</div>
</div> <!-- .et_pb_container -->
</div> <!-- .et_pb_slide -->
</div> <!-- .et_pb_slides -->
<div class="et-pb-slider-arrows"><a class="et-pb-arrow-prev no-underline" href="#"><span class="ca-gov-icon-arrow-prev" aria-hidden="true"></span><span class="sr-only">Previous</span></a><a class="et-pb-arrow-next no-underline" href="#"><span class="ca-gov-icon-arrow-next" aria-hidden="true"></span><span class="sr-only">Next</span></a></div><div class="et-pb-controllers"><a href="#" class="et-pb-active-control">Slide 1</a><a href="#">Slide 2</a><a href="#">Slide 3</a></div></div> <!-- .et_pb_slider -->
<div class="et_pb_module et_pb_fullwidth_code et_pb_fullwidth_code_4 et_pb_text_align_left">
<div class="et_pb_code_inner"><style>
.et_pb_fullwidth_slider_0.et_pb_slider .et_pb_slide_description .et_pb_slide_title a:hover {
color: white;
}
a.et_pb_button.et_pb_more_button {
color: white;
}
</style></div>
</div> <!-- .et_pb_fullwidth_code -->
</div> <!-- .et_pb_section --><div class="et_pb_section et_pb_section_3 et_pb_with_background et_section_regular">
<div class="et_pb_row et_pb_row_0 et_pb_row_fullwidth">
<div class="et_pb_column et_pb_column_2_5 et_pb_column_0 et_pb_css_mix_blend_mode_passthrough">
<div class="et_pb_module et_pb_image et_pb_image_0">
<span class="et_pb_image_wrap "><img src="www.ca.gov%20|%20California%20State%20Portal_files/Sandbagging-Corpsmembers-slingng-bags-800x450.jpg" alt="People working with sand bags to create a flood barrier" title="" srcset="https://www.ca.gov/wp-content/uploads/2019/09/Sandbagging-Corpsmembers-slingng-bags-800x450.jpg 800w, https://www.ca.gov/wp-content/uploads/2019/09/Sandbagging-Corpsmembers-slingng-bags-800x450-480x270.jpg 480w" sizes="(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) 800px, 100vw"></span>
</div>
</div> <!-- .et_pb_column --><div class="et_pb_column et_pb_column_3_5 et_pb_column_1 et_pb_css_mix_blend_mode_passthrough et-last-child">
<div class="et_pb_module et_pb_text et_pb_text_0 et_pb_bg_layout_light et_pb_text_align_left">
<div class="et_pb_text_inner"><h2>Disaster Resources</h2>
<p>California has been hit with devastating wildfires and other natural
disasters in both the northern and southern parts of the state. If you
need more information about recovery or resources visit the following
resources:</p>
<p><a class="btn btn-primary m-b-md" href="javascript:externalConfirmation('redirectConfirm','https://response.ca.gov/', 'externalLocation35');" target="_self" id="externalLocation35">response.ca.gov</a> <a class="btn btn-primary m-b-md" href="javascript:externalConfirmation('redirectConfirm','http://wildfirerecovery.org/', 'externalLocation36');" target="_self" rel="noopener" onmousedown="_gaq.push(['_trackEvent', 'Outbound Links', 'Click', 'wildfirerecovery.org/', 0, 0]); _gaq.push(['b._trackEvent', 'Outbound Links', 'Click', 'wildfirerecovery.org/', 0, 0]);" id="externalLocation36">wildfirerecovery.org</a> <a class="btn btn-primary m-b-md" href="javascript:externalConfirmation('redirectConfirm','https://www.disasterassistance.gov/', 'externalLocation37');" target="_self" rel="noopener" onmousedown="_gaq.push(['_trackEvent', 'Outbound Links', 'Click', 'disasterassistance.gov/', 0, 0]); _gaq.push(['b._trackEvent', 'Outbound Links', 'Click', 'disasterassistance.gov/', 0, 0]);" id="externalLocation37">disasterassistance.gov</a></p></div>
</div> <!-- .et_pb_text -->
</div> <!-- .et_pb_column -->
</div> <!-- .et_pb_row -->
</div> <!-- .et_pb_section --><div class="et_pb_section et_pb_section_4 et_pb_with_background et_section_regular">
<div class="et_pb_row et_pb_row_1">
<div class="et_pb_column et_pb_column_1_2 et_pb_column_2 et_pb_css_mix_blend_mode_passthrough">
<div class="et_pb_module et_pb_testimonial et_pb_testimonial_0 et_animated et_clickable clearfix et_pb_bg_layout_dark et_pb_text_align_left et_pb_icon_off et_pb_testimonial_no_image et_pb_testimonial_no_bg" data-animation-style="foldBottom" data-animation-repeat="" data-animation-duration="1000ms" data-animation-delay="0ms" data-animation-intensity="20%" data-animation-starting-opacity="100%" data-animation-speed-curve="ease-in-out">
<div style="background-image: url("https://www.ca.gov/wp-content/uploads/2019/09/California-For-All_Thumbnail.png"); padding-bottom: 0px; width: 90px; height: 90px;" class="et_pb_testimonial_portrait"></div>
<div class="et_pb_testimonial_description" style="margin-left: 125px;">
<div class="et_pb_testimonial_description_inner">
<p> </p>
<ul>
<li style="list-style-type: none;"> </li>
</ul>
<span class="et_pb_testimonial_author">Gavin Newsom </span>
<p class="et_pb_testimonial_meta"><span class="et_pb_testimonial_position">California Governor</span></p>
</div> <!-- .et_pb_testimonial_description_inner -->
</div> <!-- .et_pb_testimonial_description -->
</div> <!-- .et_pb_testimonial --><div class="et_pb_module et_pb_code et_pb_code_0">
<div class="et_pb_code_inner"><style>
@media (max-width: 767px) {
.et_pb_testimonial_0.et_pb_testimonial .et_pb_testimonial_author {
text-align: center !important;
}
.et_pb_testimonial_0.et_pb_testimonial * {
text-align: center !important;
}
.et_pb_testimonial_1.et_pb_testimonial .et_pb_testimonial_author {
text-align: center !important;
}
.et_pb_testimonial_1.et_pb_testimonial * {
text-align: center !important;
}
}
</style></div>
</div> <!-- .et_pb_code -->
</div> <!-- .et_pb_column --><div class="et_pb_column et_pb_column_1_2 et_pb_column_3 et_pb_css_mix_blend_mode_passthrough et-last-child">
<div class="et_pb_module et_pb_testimonial et_pb_testimonial_1 et_animated et_clickable clearfix et_pb_bg_layout_dark et_pb_text_align_left et_pb_icon_off et_pb_testimonial_no_image et_pb_testimonial_no_bg" data-animation-style="foldBottom" data-animation-repeat="" data-animation-duration="1000ms" data-animation-delay="0ms" data-animation-intensity="20%" data-animation-starting-opacity="100%" data-animation-speed-curve="ease-in-out">
<div style="background-image: url("https://california.azureedge.net/cdt/CAgovPortal/images/Uploads/logo-CAGeneral.png"); padding-bottom: 0px; width: 90px; height: 90px;" class="et_pb_testimonial_portrait"></div>
<div class="et_pb_testimonial_description" style="margin-left: 120px;">
<div class="et_pb_testimonial_description_inner">
<p> </p>
<ul>
<li style="list-style-type: none;"> </li>
</ul>
<span class="et_pb_testimonial_author">Eleni Kounalakis</span>
<p class="et_pb_testimonial_meta"><span class="et_pb_testimonial_position">California Lt. Governor</span></p>
</div> <!-- .et_pb_testimonial_description_inner -->
</div> <!-- .et_pb_testimonial_description -->
</div> <!-- .et_pb_testimonial -->
</div> <!-- .et_pb_column -->
</div> <!-- .et_pb_row -->
</div> <!-- .et_pb_section --><div class="et_pb_section et_pb_section_5 et_pb_fullwidth_section et_section_regular">
<div class="et_pb_module et_pb_fullwidth_code et_pb_fullwidth_code_5">
<div class="et_pb_code_inner"><style>
@media (max-width: 767px) {
.et_pb_section_0 {
margin-bottom: -20vh!important;
}
}
</style></div>
</div> <!-- .et_pb_fullwidth_code -->
</div> <!-- .et_pb_section --><div class="et_pb_section et_pb_section_6 et_pb_with_background et_section_regular">
<div class="et_pb_row et_pb_row_2 et_pb_row_4col">
<div class="et_pb_column et_pb_column_1_4 et_pb_column_4 et_pb_css_mix_blend_mode_passthrough">
<div class="et_pb_module et_pb_number_counter et_pb_number_counter_0 et_pb_bg_layout_light et_pb_text_align_center et_pb_with_title" data-number-value="39+" data-number-separator="">
<div class="percent" data-et-multi-view="{"schema":{"classes":{"desktop":{"add":["et_pb_with_title"]},"tablet":{"remove":["et_pb_with_title"]},"hover":{"remove":["et_pb_with_title"]}}},"slug":"et_pb_number_counter"}"><p><span class="percent-value"></span><span class="percent-sign"></span></p></div>
<h4 class="title">Million people as of July 2015</h4>
<canvas height="0" width="0" style="height: 0px; width: 0px;"></canvas></div><!-- .et_pb_number_counter -->
</div> <!-- .et_pb_column --><div class="et_pb_column et_pb_column_1_4 et_pb_column_5 et_pb_css_mix_blend_mode_passthrough">
<div class="et_pb_module et_pb_number_counter et_pb_number_counter_1 et_pb_bg_layout_light et_pb_text_align_center et_pb_with_title" data-number-value="5th" data-number-separator="">
<div class="percent" data-et-multi-view="{"schema":{"classes":{"desktop":{"add":["et_pb_with_title"]},"tablet":{"remove":["et_pb_with_title"]},"hover":{"remove":["et_pb_with_title"]}}},"slug":"et_pb_number_counter"}"><p><span class="percent-value"></span><span class="percent-sign"></span></p></div>
<h3 class="title">Largest Economy in the World</h3>
<canvas height="0" width="0" style="height: 0px; width: 0px;"></canvas></div><!-- .et_pb_number_counter -->
</div> <!-- .et_pb_column --><div class="et_pb_column et_pb_column_1_4 et_pb_column_6 et_pb_css_mix_blend_mode_passthrough">
<div class="et_pb_module et_pb_number_counter et_pb_number_counter_2 et_pb_bg_layout_light et_pb_text_align_center et_pb_with_title" data-number-value="65+" data-number-separator="">
<div class="percent" data-et-multi-view="{"schema":{"classes":{"desktop":{"add":["et_pb_with_title"]},"tablet":{"remove":["et_pb_with_title"]},"hover":{"remove":["et_pb_with_title"]}}},"slug":"et_pb_number_counter"}"><p><span class="percent-value"></span><span class="percent-sign"></span></p></div>
<h3 class="title">Million annual visitors</h3>
<canvas height="0" width="0" style="height: 0px; width: 0px;"></canvas></div><!-- .et_pb_number_counter -->
</div> <!-- .et_pb_column --><div class="et_pb_column et_pb_column_1_4 et_pb_column_7 et_pb_css_mix_blend_mode_passthrough et-last-child">
<div class="et_pb_module et_pb_number_counter et_pb_number_counter_3 et_pb_bg_layout_light et_pb_text_align_center et_pb_with_title" data-number-value="19+" data-number-separator="">
<div class="percent" data-et-multi-view="{"schema":{"classes":{"desktop":{"add":["et_pb_with_title"]},"tablet":{"remove":["et_pb_with_title"]},"hover":{"remove":["et_pb_with_title"]}}},"slug":"et_pb_number_counter"}"><p><span class="percent-value"></span><span class="percent-sign"></span></p></div>
<h3 class="title">Million civilians in Labor Force</h3>
<canvas height="0" width="0" style="height: 0px; width: 0px;"></canvas></div><!-- .et_pb_number_counter -->
</div> <!-- .et_pb_column -->
</div> <!-- .et_pb_row -->
</div> <!-- .et_pb_section --><div class="et_pb_section et_pb_section_7 et_pb_with_background et_section_regular">
<div class="et_pb_row et_pb_row_3 et_pb_row_fullwidth">
<div class="et_pb_column et_pb_column_2_5 et_pb_column_8 et_pb_css_mix_blend_mode_passthrough">
<div class="et_pb_module et_pb_code et_pb_code_1">
<div class="et_pb_code_inner"><div style="" width:="" 100%;"="">
<div style="font-size: 72px; color: #046b99!important; font-weight:500; line-height:72px; text-align:center;"><span id="numberOfDatasets">2329</span></div>
<div style="font-size: 30px; color: #d2793c!important; text-align:center;">Data Sets</div></div>
<script>
var datasetURL = "https://data.ca.gov/api/3/action/package_list";