-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcongress_pictures.html
More file actions
5231 lines (3919 loc) · 248 KB
/
congress_pictures.html
File metadata and controls
5231 lines (3919 loc) · 248 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<!-- saved from url=(0048)https://www.govtrack.us/congress/members/current -->
<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Members of Congress - Search - GovTrack.us</title>
<link rel="shortcut icon" href="https://www.govtrack.us/favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="./congress_pictures_files/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<link rel="stylesheet" href="./congress_pictures_files/bootstrap-theme.min.css" integrity="sha384-rHyoN1iRsVXV4nD0JutlnGaslCJuC7uwjduW9SVrLvRYooPp2bWYgmgJQIXwl/Sp" crossorigin="anonymous">
<link rel="stylesheet" href="./congress_pictures_files/font-awesome.min.css" integrity="sha256-VBrFgheoreGl4pKmWgZh3J23pJrhNlSUOBek+8Z2Gv0=" crossorigin="anonymous">
<link media="all" rel="stylesheet" href="./congress_pictures_files/all-min.css">
<meta name="description" content="Representatives and Senators in the United States Congress.">
<meta name="keywords" content="United States Congress,U.S. Congress,congressional districts,map,senator,senators,representative,representatives,congressman,congressmen,congresswoman,congresswomen,House of Representatives,Senate">
<meta property="fb:app_id" content="119329904748946">
<meta property="og:site_name" content="GovTrack.us">
<meta name="twitter:site" content="@GovTrack">
<meta property="og:image" content="https://www.govtrack.us/static/images/media_icon.png?20160130">
<meta name="twitter:card" content="summary">
<script async="" src="https://www.google-analytics.com/analytics.js"></script><script type="text/javascript">
window.post_jquery_load_scripts = [];
<!-- Google Analytics -->
(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','//www.google-analytics.com/analytics.js','ga');
<!-- End Google Analytics -->
</script><style>.ads
{display:none !important;}</style>
</head>
<body class="">
<!--[if lt IE 8]><p style="background-color: black; color: white;">Internet Explorer version 8 or any modern web browser is required to use this website, sorry.<![endif]-->
<!--[if gt IE 7]><!-->
<div id="bodybody">
<div id="masthead">
<nav class="navbar">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar-collapsable" aria-expanded="false">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a id="logo" href="https://www.govtrack.us/" class="navbar-brand ">govtrack.us</a>
</div>
<div class="collapse navbar-collapse" id="navbar-collapsable">
<ul class="nav navbar-nav">
<li><a href="https://www.govtrack.us/">Home</a></li>
<li class="dropdown">
<a href="https://www.govtrack.us/congress/members/current#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Congress <span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a href="https://www.govtrack.us/congress/members">Members of Congress</a></li>
<li><a href="https://www.govtrack.us/congress/bills">Bills and Resolutions</a></li>
<li><a href="https://www.govtrack.us/congress/votes">Voting Records</a></li>
<li><a href="https://www.govtrack.us/congress/committees">Committees</a></li>
<li role="separator" class="divider"></li>
<li><a href="https://www.govtrack.us/how-laws-are-made">How Laws Are Made</a></li>
</ul>
</li>
<li class="dropdown">
<a href="https://www.govtrack.us/start" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Track <span class="caret"></span></a>
<ul class="dropdown-menu">
<li id="nav_track_start"><a href="https://www.govtrack.us/start">Start Tracking</a></li>
<li id="nav_track_lists" style="display: none"><a href="https://www.govtrack.us/accounts/lists">What You Are Tracking</a></li>
<li><a href="https://www.govtrack.us/accounts/docket">Your Docket</a></li>
</ul>
</li>
<li><a href="https://www.govtrack.us/about">About Us</a></li>
<li><a href="https://www.govtrack.us/developers">Data/API</a></li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li id="nav_login"><a href="https://www.govtrack.us/accounts/login?next=/congress/members/current">Log In</a></li>
<li id="nav_logout" style="display: none"><a href="https://www.govtrack.us/accounts/logout?next=/congress/members/current">Log Out</a></li>
<li>
<form name="header_search" action="https://www.govtrack.us/search" method="GET" class="search-form" role="search">
<fieldset>
<div class="text"><input type="text" placeholder="Search" name="q"></div>
<input class="btn-search" type="submit" value="Search">
</fieldset>
</form>
</li>
</ul>
</div><!-- /.navbar-collapse -->
</div><!-- /.container -->
</nav>
<div id="sitenewscontainer" class="navbar-default" style="display: none">
<div id="sitenews">
</div> <!-- /sitenews -->
</div> <!-- /sitenewscontainer -->
</div> <!-- /masthead -->
<div id="breadcrumbs">
<div class="container">
<ol class="breadcrumb">
<li><a href="https://www.govtrack.us/congress">Congress</a></li>
<li><a href="https://www.govtrack.us/congress/members">Members of Congress</a></li>
</ol>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-sm-10">
<h1>Members of Congress</h1>
<p>This page lists the currently serving Members of Congress. You can also <a href="https://www.govtrack.us/congress/members/map">view congressional district maps</a> or <a href="https://www.govtrack.us/congress/members/all">search the historical list of Members of Congress</a>.</p>
</div>
<div class="col-sm-2">
<img src="./congress_pictures_files/img-congress-members.png" alt="Page Icon" class="img-responsive">
</div>
</div>
<hr>
<div class="searching row" style="margin: 0">
<script>
function addCommas(nStr)
{
nStr += '';
x = nStr.split('.');
x1 = x[0];
x2 = x.length > 1 ? '.' + x[1] : '';
var rgx = /(\d+)(\d{3})/;
while (rgx.test(x1)) {
x1 = x1.replace(rgx, '$1' + ',' + '$2');
}
return x1 + x2;
}
function make_count(count) {
return "(" + addCommas(count) + " " + (count == 1 ? "person" : "people") + ")";
}
function show_facets(postdata, options, isinitial) {
var should_hide_default_facets = $(window).width() < 992;
// Display options.
for (var k in options) {
var field = options[k][0];
var type = options[k][1];
var values = options[k][2];
var is_simple = options[k][3];
var visible = options[k][4];
var has_default_value = false;
var field_container = $('#searchform_field_' + field + "_container");
var node = $('#searchform_field_' + field);
if (type == "select") {
// show available options for this select field
node.text("");
for (var j in values) {
var txt = values[j][1];
if (values[j][2] > 0)
txt += " " + make_count(values[j][2]);
if (is_simple && values[j][0] == "__ALL__")
txt += " [Loading...]"
var opt = $("<option/>");
opt.attr('value', values[j][0]);
opt.text(txt);
node.append(opt);
}
// set field value
if (postdata[field] && postdata[field] != "__ALL__") {
node.val(postdata[field])
} else {
node.val("__ALL__");
has_default_value = true;
}
} else if (type == "text") {
// There is never a reason to update a free-form text field with
// data returned by the search server because the user has already
// entered something, and we don't want to mess with it.... except
// when loading the initial state from the search query fragment.
if (isinitial && field in postdata) {
node.val(postdata[field])
node.focus();
}
} else if (type == "checkbox" || type == "radio") {
// show available radios/checkboxes for this field and select the active one(s)
has_default_value = true;
node.html("");
for (var j in values) {
var opt = $("<div class='choices'><input type='" + type + "' onclick='update_search(null, null, this)'/> <label style='display: inline'><span class='name'> </span> <span class='count'> </span></label></div>");
opt.find('input').attr('id', "searchform_field_" + field + "_" + j);
opt.find('input').attr('name', field);
opt.find('input').attr('value', values[j][0]);
opt.find('label').attr('for', "searchform_field_" + field + "_" + j);
if (values[j][0] == "__ALL__") {
opt.find('.name').text("All");
} else {
opt.find('.name').text(values[j][1]);
if (values[j][2])
opt.find('.count').text(make_count(values[j][2]));
}
if (values[j][3])
opt.attr("title", values[j][3]);
if (type == "checkbox") {
// restore checked status
if (postdata[field]) {
for (i in postdata[field]) {
if (postdata[field][i] == (""+values[j][0])) { // convert value to string
opt.find('input').attr('checked', '1');
if (postdata[field][i] != "__ALL__") has_default_value = false;
}
}
}
} else if (type == "radio") {
if (postdata[field] == (""+values[j][0])) // convert value to string
opt.find('input').attr('checked', '1');
if (postdata[field] != "__ALL__") has_default_value = false;
}
// check ALL if nothing is checked
if (!postdata[field] && values[j][0] == "__ALL__")
opt.find('input').attr('checked', '1');
node.append(opt);
}
} else if (type == "boolean") {
var count = 0;
node.attr('checked', field in postdata );
for (j in values)
if (values[j][0] == "true")
count = values[j][2];
if (count == 0) visible = false; // force hide
node.parent().find('span.count').text(make_count(count));
}
// On small-width screens, hide fields that have default values until the user wants to see them.
if (visible && should_hide_default_facets && has_default_value) {
field_container.attr("is-default-hidden", "true");
if (isinitial) field_container.hide(); else field_container.fadeOut();
} else {
// Set visibility from what we're told from the server side.
field_container.attr("is-default-hidden", "false");
field_container.toggle(visible);
}
}
// Show the "Show more options" link if we've hidden anything.
var has_hidden_facet = ($('#searchform *[is-default-hidden=true]').length > 0);
$('#show_more_options').toggle(has_hidden_facet);
// Don't show the facets until after the first time they are loaded.
$('#searchform > fieldset').show();
$('#searchform .initial_loading').hide();
}
function show_more_options() {
$('#searchform *[is-default-hidden=true]').fadeIn();
$('#show_more_options').fadeOut();
return false; // cancel click
}
var default_search = { };
default_search["sort"] = "sortname";
var current_page = 1;
var update_search_lock = false;
var prev_search = { };
function update_search(pagenum, pageinc, elem, isinitial) {
if (update_search_lock) return;
update_search_lock = true;
$('#searchform input').prop('disabled', true);
if (!pagenum && !pageinc) {
// When changing the search options, reset to first page.
pagenum = 1;
}
form = $('#searchform')[0];
if (elem && elem.type == "checkbox") {
// If any ALL is chosen, clear out the other options. If any other option is
// clicked, clear out the ALL.
for (var i = 0; i < form.elements.length; i++)
if (form.elements[i].checked && form.elements[i].name == elem.name && form.elements[i].value != elem.value)
if (elem.value == "__ALL__" || form.elements[i].value == "__ALL__")
$(form.elements[i]).prop('checked', false);
}
// Collect the POST data.
var postdata = { };
for (var i = 0; i < form.elements.length; i++) {
if (form.elements[i].type == 'checkbox' && !form.elements[i].checked) continue;
if (form.elements[i].type == 'radio' && !form.elements[i].checked) continue;
if (form.elements[i].value == "__ALL__" || form.elements[i].value == "") continue;
// We should not facet on free-form text fields on the initial search because
// these entries can result in zero results, which messes up faceting because
// there will be no drill-down options. This can occur when the user navigates
// back to this page after doing a free-form search.
if (isinitial && form.elements[i].type == "text") continue;
name = form.elements[i].name;
if (name == "" || name == "undefined") continue;
if (form.elements[i].type == 'checkbox' && !form.elements[i].getAttribute('is-boolean')) {
if (postdata[name] == null) postdata[name] = Array();
postdata[name].push(form.elements[i].value);
} else {
postdata[name] = form.elements[i].value;
}
}
// Apply any initial search options.
if (isinitial) {
// The initial search combines the default faceting with the URL fragment.
var fragment_params = parse_qs.fragment();
for (var k in default_search) postdata[k] = default_search[k];
for (var k in fragment_params) postdata[k] = fragment_params[k];
for (var k in fragment_params)
if (fragment_params[k] == "__ALL__")
delete postdata[k]; // null is not sufficient
// Update the sort control.
if ("sort" in postdata)
$('#searchform_sort').val(postdata["sort"]);
}
// Copy just the faceting so far into a separate array, minus the parts that
// match the defaults, but explicitly setting __ALL__ for fields that have
// defaults that are overridden by being null.
var current_search = { };
var current_search_set = false;
for (var k in postdata) {
if (postdata[k] != default_search[k]) {
current_search[k] = postdata[k];
current_search_set = true;
}
}
for (var k in default_search) {
if (typeof postdata[k] == "undefined" && default_search[k]) {
current_search[k] = "__ALL__";
current_search_set = true;
}
}
if (pagenum)
postdata.page = pagenum;
else if (pageinc)
postdata.page = current_page + pageinc;
else
postdata.page = current_page;
postdata.faceting = "false";
postdata.allow_redirect = (isinitial ? "false" : "true"); // hit back after getting a redirect would generate an immediate redirect again, not helpful
postdata.do_search = 1; // always required
$("#loading_status").show();
$("#show_more").hide();
if (postdata.page == 1) {
$('.summary').hide();
$('.results').html("");
}
$.ajax(
{
url: document.location.pathname,
type: "GET",
dataType: "json",
data: postdata,
success: function(res) {
if (res.error) {
$('#searcherror').text(res.error);
$("#loading_status").hide();
} else if (res.redirect) {
window.location = res.redirect;
return;
} else {
// Display results.
for (var i = 0; i < res.results.length; i++) {
var n = $("<div class='result_item'/>");
n.html(res.results[i]);
$('.results').append(n);
}
$('#searcherror').text('');
$('.summary').show();
$('.summary .total').text(addCommas(res.total));
$('.summary .noun').text(res.total == 1 ? "person" : "people");
$('.summary .searchdescr').text(res.description ? " for " + res.description : "");
$("#loading_status").hide();
$("#show_more").toggle(res.page < res.num_pages);
$('.results').show();
if (pageinc) {
// If this was just a call to append more results fluidly to the bottom
// of the results list, there is no need to do any further work to
// update the facets.
} else if (res.total == 0) {
// Now we have a problem. If there are no results, then the facets
// are going to be messed up because there can be no drill-down.
// We got here because the user did a free-form text search that
// resulted in no answers. In this case, show the facets from the
// last successful search.
if (isinitial) {
// If we failed even on the initial search, either the fragment
// parameters or the query string parameters (=> default_search)
// may have yielded no results. Back off to all filters off.
prev_search = { };
}
prev_search.page = 1;
// Call the search twice, because we get facets in two parts.
prev_search.faceting = "false";
prev_search.do_search = 1; // always required
$.ajax({
url: document.location.pathname,
type: "GET",
dataType: "json",
data: prev_search,
success: function(res) {
if (res.error) return;
show_facets(postdata, res.options, isinitial);
}
});
prev_search.faceting = "true";
$.ajax({
url: document.location.pathname,
type: "GET",
dataType: "json",
data: prev_search,
success: function(res) {
if (res.error) return;
show_facets(postdata, res, isinitial);
}
});
} else {
// Updates checkboxes and radio buttons and the current values
// for selects, but in order to be fast we were not returned
// the other options for selects- that comes later.
show_facets(postdata, res.options, isinitial);
// After showing the main content and basic facets, show the full faceted results.
postdata.faceting = "true";
$.ajax({
url: document.location.pathname,
type: "GET",
dataType: "json",
data: postdata,
success: function(res) {
if (res.error) return;
show_facets(postdata, res, isinitial);
}
});
prev_search = postdata;
// Store the current search query in the hash so that the user can back-button to
// this page and we will try to restore the query options.
if (!current_search_set) {
if (window.location.hash) // don't set if already blank
window.location.hash = "#_"; // setting to blank jumps page to top
} else {
window.location.hash = "#" + form_qs(current_search);
}
}
}
current_page = res.page;
update_search_lock = false;
$('#searchform input').prop('disabled', false);
},
error: function(jqXHR, textStatus, errorThrown) {
$('.results').html("");
$('#searchform').text("Search is not currently operational: " + textStatus);
update_search_lock = false;
$('#searchform input').prop('disabled', false);
$("#loading_status").show();
$("#show_more").hide();
}
});
return false; // cancel any event
}
// jQuery may not be loaded yet so execute this naively
window.post_jquery_load_scripts.push(function() {
update_search(1, null, null, true);
$(window).scroll(function() {
if (update_search_lock) return;
var s = $('#show_more');
if (s.is(":visible") && $(window).scrollTop() + $(window).height() > s.offset().top)
s.click();
});
});
</script>
<div class="advanced-search col-sm-4">
<form id="searchform" onsubmit="update_search(); return false;">
<h3>Search</h3>
<div class="initial_loading" style="margin-top: 1em; display: none;">Loading options...</div>
<div id="searcherror"></div>
<fieldset style="">
<div id="searchform_field_text_container" class="facet-field-container" style="width: 100%; float: left; cursor: pointer; margin-bottom: 1em; font-weight: normal;" is-default-hidden="false">
<label for="searchform_field_text" style="margin: 0;">name</label>
<input id="searchform_field_text" name="text" type="text" class="text with_search_button" onchange="$('#show_more').hide()" style="width: 65%; margin-right: 5px;">
<input id="searchform_field_text_button" class="btn-search-small" type="submit" value="Search" onclick="update_search()">
</div>
<div id="searchform_field_current_role_type_container" class="facet-field-container" style="width: 100%; float: left; cursor: pointer; margin-bottom: 1em; font-weight: normal;" is-default-hidden="false">
<label for="searchform_field_current_role_type" style="margin: 0;">serving in the...</label>
<div id="searchform_field_current_role_type"><div class="choices"><input type="radio" onclick="update_search(null, null, this)" id="searchform_field_current_role_type_0" name="current_role_type" value="__ALL__" checked="checked"> <label style="display: inline" for="searchform_field_current_role_type_0"><span class="name">All</span> <span class="count"> </span></label></div><div class="choices"><input type="radio" onclick="update_search(null, null, this)" id="searchform_field_current_role_type_1" name="current_role_type" value="2"> <label style="display: inline" for="searchform_field_current_role_type_1"><span class="name">House of Representatives</span> <span class="count">(436 people)</span></label></div><div class="choices"><input type="radio" onclick="update_search(null, null, this)" id="searchform_field_current_role_type_2" name="current_role_type" value="1"> <label style="display: inline" for="searchform_field_current_role_type_2"><span class="name">Senate</span> <span class="count">(100 people)</span></label></div></div>
</div>
<div id="searchform_field_current_role_title_container" class="facet-field-container" style="width: 100%; float: left; cursor: pointer; margin-bottom: 1em; font-weight: normal;" is-default-hidden="false">
<label for="searchform_field_current_role_title" style="margin: 0;">title</label>
<div id="searchform_field_current_role_title"><div class="choices"><input type="radio" onclick="update_search(null, null, this)" id="searchform_field_current_role_title_0" name="current_role_title" value="__ALL__" checked="checked"> <label style="display: inline" for="searchform_field_current_role_title_0"><span class="name">All</span> <span class="count"> </span></label></div><div class="choices"><input type="radio" onclick="update_search(null, null, this)" id="searchform_field_current_role_title_1" name="current_role_title" value="Representative"> <label style="display: inline" for="searchform_field_current_role_title_1"><span class="name">Representative</span> <span class="count">(430 people)</span></label></div><div class="choices"><input type="radio" onclick="update_search(null, null, this)" id="searchform_field_current_role_title_2" name="current_role_title" value="Senator"> <label style="display: inline" for="searchform_field_current_role_title_2"><span class="name">Senator</span> <span class="count">(100 people)</span></label></div><div class="choices"><input type="radio" onclick="update_search(null, null, this)" id="searchform_field_current_role_title_3" name="current_role_title" value="Delegate"> <label style="display: inline" for="searchform_field_current_role_title_3"><span class="name">Delegate</span> <span class="count">(5 people)</span></label></div><div class="choices"><input type="radio" onclick="update_search(null, null, this)" id="searchform_field_current_role_title_4" name="current_role_title" value="Resident Commissioner"> <label style="display: inline" for="searchform_field_current_role_title_4"><span class="name">Resident Commissioner</span> <span class="count">(1 person)</span></label></div></div>
</div>
<div id="searchform_field_current_role_state_container" class="facet-field-container" style="width: 50%; padding-right: 1em; float: left; cursor: pointer; margin-bottom: 1em; font-weight: normal;" is-default-hidden="false">
<label for="searchform_field_current_role_state" style="margin: 0;">state</label>
<select id="searchform_field_current_role_state" name="current_role_state" size="1" onchange="update_search()" style="width: 100%"><option value="__ALL__">All</option><option value="AK">AK Alaska (3 people)</option><option value="AL">AL Alabama (9 people)</option><option value="AR">AR Arkansas (6 people)</option><option value="AS">AS American Samoa (1 person)</option><option value="AZ">AZ Arizona (11 people)</option><option value="CA">CA California (54 people)</option><option value="CO">CO Colorado (9 people)</option><option value="CT">CT Connecticut (7 people)</option><option value="DC">DC District of Columbia (1 person)</option><option value="DE">DE Delaware (3 people)</option><option value="FL">FL Florida (29 people)</option><option value="GA">GA Georgia (15 people)</option><option value="GU">GU Guam (1 person)</option><option value="HI">HI Hawaii (4 people)</option><option value="IA">IA Iowa (6 people)</option><option value="ID">ID Idaho (4 people)</option><option value="IL">IL Illinois (20 people)</option><option value="IN">IN Indiana (11 people)</option><option value="KS">KS Kansas (5 people)</option><option value="KY">KY Kentucky (8 people)</option><option value="LA">LA Louisiana (8 people)</option><option value="MA">MA Massachusetts (11 people)</option><option value="MD">MD Maryland (10 people)</option><option value="ME">ME Maine (4 people)</option><option value="MI">MI Michigan (16 people)</option><option value="MN">MN Minnesota (10 people)</option><option value="MO">MO Missouri (10 people)</option><option value="MP">MP Northern Mariana Islands (1 person)</option><option value="MS">MS Mississippi (6 people)</option><option value="MT">MT Montana (2 people)</option><option value="NC">NC North Carolina (15 people)</option><option value="ND">ND North Dakota (3 people)</option><option value="NE">NE Nebraska (5 people)</option><option value="NH">NH New Hampshire (4 people)</option><option value="NJ">NJ New Jersey (14 people)</option><option value="NM">NM New Mexico (5 people)</option><option value="NV">NV Nevada (6 people)</option><option value="NY">NY New York (29 people)</option><option value="OH">OH Ohio (18 people)</option><option value="OK">OK Oklahoma (7 people)</option><option value="OR">OR Oregon (7 people)</option><option value="PA">PA Pennsylvania (20 people)</option><option value="PR">PR Puerto Rico (1 person)</option><option value="RI">RI Rhode Island (4 people)</option><option value="SC">SC South Carolina (8 people)</option><option value="SD">SD South Dakota (3 people)</option><option value="TN">TN Tennessee (11 people)</option><option value="TX">TX Texas (38 people)</option><option value="UT">UT Utah (6 people)</option><option value="VA">VA Virginia (13 people)</option><option value="VI">VI Virgin Islands (1 person)</option><option value="VT">VT Vermont (3 people)</option><option value="WA">WA Washington (12 people)</option><option value="WI">WI Wisconsin (10 people)</option><option value="WV">WV West Virginia (5 people)</option><option value="WY">WY Wyoming (3 people)</option></select>
</div>
<div id="searchform_field_current_role_district_container" class="facet-field-container" style="width: 50%; padding-right: 1em; float: left; cursor: pointer; margin-bottom: 1em; font-weight: normal; display: none;" is-default-hidden="false">
<label for="searchform_field_current_role_district" style="margin: 0;">district</label>
<select id="searchform_field_current_role_district" name="current_role_district" size="1" onchange="update_search()" style="width: 100%"><option value="__ALL__">All</option><option value="0">0th (12 people)</option><option value="1">1st (43 people)</option><option value="10">10th (13 people)</option><option value="11">11th (12 people)</option><option value="12">12th (11 people)</option><option value="13">13th (10 people)</option><option value="14">14th (9 people)</option><option value="15">15th (7 people)</option><option value="16">16th (7 people)</option><option value="17">17th (6 people)</option><option value="18">18th (6 people)</option><option value="19">19th (4 people)</option><option value="2">2nd (43 people)</option><option value="20">20th (4 people)</option><option value="21">21st (4 people)</option><option value="22">22nd (4 people)</option><option value="23">23rd (4 people)</option><option value="24">24th (4 people)</option><option value="25">25th (4 people)</option><option value="26">26th (4 people)</option><option value="27">27th (4 people)</option><option value="28">28th (2 people)</option><option value="29">29th (2 people)</option><option value="3">3rd (38 people)</option><option value="30">30th (2 people)</option><option value="31">31st (2 people)</option><option value="32">32nd (2 people)</option><option value="33">33rd (2 people)</option><option value="34">34th (1 person)</option><option value="35">35th (2 people)</option><option value="36">36th (2 people)</option><option value="37">37th (1 person)</option><option value="38">38th (1 person)</option><option value="39">39th (1 person)</option><option value="4">4th (34 people)</option><option value="40">40th (1 person)</option><option value="41">41st (1 person)</option><option value="42">42nd (1 person)</option><option value="43">43rd (1 person)</option><option value="44">44th (1 person)</option><option value="45">45th (1 person)</option><option value="46">46th (1 person)</option><option value="47">47th (1 person)</option><option value="48">48th (1 person)</option><option value="49">49th (1 person)</option><option value="5">5th (28 people)</option><option value="50">50th (1 person)</option><option value="51">51st (1 person)</option><option value="52">52nd (1 person)</option><option value="53">53rd (1 person)</option><option value="6">6th (25 people)</option><option value="7">7th (24 people)</option><option value="8">8th (21 people)</option><option value="9">9th (17 people)</option></select>
</div>
<div id="searchform_field_current_role_party_container" class="facet-field-container" style="width: 50%; padding-right: 1em; float: left; cursor: pointer; margin-bottom: 1em; font-weight: normal;" is-default-hidden="false">
<label for="searchform_field_current_role_party" style="margin: 0;">party</label>
<select id="searchform_field_current_role_party" name="current_role_party" size="1" onchange="update_search()" style="width: 100%"><option value="__ALL__">All</option><option value="Republican">Republican (291 people)</option><option value="Democrat">Democrat (243 people)</option><option value="Independent">Independent (2 people)</option></select>
</div>
<div id="searchform_field_gender_container" class="facet-field-container" style="width: 100%; float: left; cursor: pointer; margin-bottom: 1em; font-weight: normal;" is-default-hidden="false">
<label for="searchform_field_gender" style="margin: 0;">gender</label>
<div id="searchform_field_gender"><div class="choices"><input type="checkbox" onclick="update_search(null, null, this)" id="searchform_field_gender_0" name="gender" value="__ALL__" checked="checked"> <label style="display: inline" for="searchform_field_gender_0"><span class="name">All</span> <span class="count"> </span></label></div><div class="choices"><input type="checkbox" onclick="update_search(null, null, this)" id="searchform_field_gender_1" name="gender" value="1"> <label style="display: inline" for="searchform_field_gender_1"><span class="name">Male</span> <span class="count">(427 people)</span></label></div><div class="choices"><input type="checkbox" onclick="update_search(null, null, this)" id="searchform_field_gender_2" name="gender" value="2"> <label style="display: inline" for="searchform_field_gender_2"><span class="name">Female</span> <span class="count">(109 people)</span></label></div></div>
</div>
<div style="clear: both;">
<label for="searchform_sort" style="margin: 0;">sort by</label>
<select id="searchform_sort" name="sort" size="1" onchange="update_search()">
<option value="relevance">Relevance</option>
<option value="sortname" selected="">Name</option>
<option value="first_took_office">Seniority (Oldest First)</option>
<option value="-first_took_office">Seniority (Newest Members First)</option>
</select>
</div>
<a id="show_more_options" href="https://www.govtrack.us/congress/members/current#" onclick="return show_more_options();" style="display: none; clear: both; margin-top: 1em;">Show more options...</a>
</fieldset>
</form>
</div>
<section class="col-sm-8">
<div class="margin-left-30-wide">
<div class="summary" style="">
<p><span class="total">536</span> <span class="noun">people</span> matched your search<span class="searchdescr"></span>.</p>
</div>
<div class="results" style=""><div class="result_item">
<div style="float: left; margin-right: 1.5em">
<img src="./congress_pictures_files/412630-50px.jpeg" width="50" height="60">
</div>
<a href="https://www.govtrack.us/congress/members/ralph_abraham/412630" style="margin-top: 4px">Abraham, Ralph</a>
<div>Representative for Louisiana's 5th congressional district, 2015-2018</div>
</div><div class="result_item">
<div style="float: left; margin-right: 1.5em">
<img src="./congress_pictures_files/412607-50px.jpeg" width="50" height="60">
</div>
<a href="https://www.govtrack.us/congress/members/alma_adams/412607" style="margin-top: 4px">Adams, Alma</a>
<div>Representative for North Carolina's 12th congressional district, 2014-2018</div>
</div><div class="result_item">
<div style="float: left; margin-right: 1.5em">
<img src="./congress_pictures_files/400004-50px.jpeg" width="50" height="60">
</div>
<a href="https://www.govtrack.us/congress/members/robert_aderholt/400004" style="margin-top: 4px">Aderholt, Robert</a>
<div>Representative for Alabama's 4th congressional district, 1997-2018</div>
</div><div class="result_item">
<div style="float: left; margin-right: 1.5em">
<img src="./congress_pictures_files/412615-50px.jpeg" width="50" height="60">
</div>
<a href="https://www.govtrack.us/congress/members/pete_aguilar/412615" style="margin-top: 4px">Aguilar, Pete</a>
<div>Representative for California's 31st congressional district, 2015-2018</div>
</div><div class="result_item">
<div style="float: left; margin-right: 1.5em">
<img src="./congress_pictures_files/300002-50px.jpeg" width="50" height="60">
</div>
<a href="https://www.govtrack.us/congress/members/lamar_alexander/300002" style="margin-top: 4px">Alexander, Lamar</a>
<div>Senior Senator from Tennessee, 2003-2020</div>
</div><div class="result_item">
<div style="float: left; margin-right: 1.5em">
<img src="./congress_pictures_files/412625-50px.jpeg" width="50" height="60">
</div>
<a href="https://www.govtrack.us/congress/members/rick_allen/412625" style="margin-top: 4px">Allen, Rick</a>
<div>Representative for Georgia's 12th congressional district, 2015-2018</div>
</div><div class="result_item">
<div style="float: left; margin-right: 1.5em">
<img src="./congress_pictures_files/412438-50px.jpeg" width="50" height="60">
</div>
<a href="https://www.govtrack.us/congress/members/justin_amash/412438" style="margin-top: 4px">Amash, Justin</a>
<div>Representative for Michigan's 3rd congressional district, 2011-2018</div>
</div><div class="result_item">
<div style="float: left; margin-right: 1.5em">
<img src="./congress_pictures_files/412664-50px.jpeg" width="50" height="60">
</div>
<a href="https://www.govtrack.us/congress/members/aumua_amata/412664" style="margin-top: 4px">Amata, Aumua</a>
<div>Delegate for American Samoa, 2015-2018</div>
</div><div class="result_item">
<div style="float: left; margin-right: 1.5em">
<img src="./congress_pictures_files/412500-50px.jpeg" width="50" height="60">
</div>
<a href="https://www.govtrack.us/congress/members/mark_amodei/412500" style="margin-top: 4px">Amodei, Mark</a>
<div>Representative for Nevada's 2nd congressional district, 2011-2018</div>
</div><div class="result_item">
<div style="float: left; margin-right: 1.5em">
<img src="./congress_pictures_files/412726-50px.jpeg" width="50" height="60">
</div>
<a href="https://www.govtrack.us/congress/members/jodey_arrington/412726" style="margin-top: 4px">Arrington, Jodey</a>
<div>Representative for Texas's 19th congressional district, 2017-2018</div>
</div><div class="result_item">
<div style="float: left; margin-right: 1.5em">
<img src="./congress_pictures_files/412655-50px.jpeg" width="50" height="60">
</div>
<a href="https://www.govtrack.us/congress/members/brian_babin/412655" style="margin-top: 4px">Babin, Brian</a>
<div>Representative for Texas's 36th congressional district, 2015-2018</div>
</div><div class="result_item">
<div style="float: left; margin-right: 1.5em">
<img src="./congress_pictures_files/412713-50px.jpeg" width="50" height="60">
</div>
<a href="https://www.govtrack.us/congress/members/don_bacon/412713" style="margin-top: 4px">Bacon, Don</a>
<div>Representative for Nebraska's 2nd congressional district, 2017-2018</div>
</div><div class="result_item">
<div style="float: left; margin-right: 1.5em">
<img src="./congress_pictures_files/400013-50px.jpeg" width="50" height="60">
</div>
<a href="https://www.govtrack.us/congress/members/tammy_baldwin/400013" style="margin-top: 4px">Baldwin, Tammy</a>
<div>Junior Senator from Wisconsin, 2013-2018</div>
</div><div class="result_item">
<div style="float: left; margin-right: 1.5em">
<img src="./congress_pictures_files/412702-50px.jpeg" width="50" height="60">
</div>
<a href="https://www.govtrack.us/congress/members/jim_banks/412702" style="margin-top: 4px">Banks, Jim</a>
<div>Representative for Indiana's 3rd congressional district, 2017-2018</div>
</div><div class="result_item">
<div style="float: left; margin-right: 1.5em">
<img src="./congress_pictures_files/412469-50px.jpeg" width="50" height="60">
</div>
<a href="https://www.govtrack.us/congress/members/lou_barletta/412469" style="margin-top: 4px">Barletta, Lou</a>
<div>Representative for Pennsylvania's 11th congressional district, 2011-2018</div>
</div><div class="result_item">
<div style="float: left; margin-right: 1.5em">
<img src="./congress_pictures_files/412541-50px.jpeg" width="50" height="60">
</div>
<a href="https://www.govtrack.us/congress/members/garland_barr/412541" style="margin-top: 4px">Barr, Garland “Andy”</a>
<div>Representative for Kentucky's 6th congressional district, 2013-2018</div>
</div><div class="result_item">
<div style="float: left; margin-right: 1.5em">
<img src="./congress_pictures_files/412687-50px.jpeg" width="50" height="60">
</div>
<a href="https://www.govtrack.us/congress/members/nanette_barragan/412687" style="margin-top: 4px">Barragán, Nanette</a>
<div>Representative for California's 44th congressional district, 2017-2018</div>
</div><div class="result_item">
<div style="float: left; margin-right: 1.5em">
<img src="./congress_pictures_files/412251-50px.jpeg" width="50" height="60">
</div>
<a href="https://www.govtrack.us/congress/members/john_barrasso/412251" style="margin-top: 4px">Barrasso, John</a>
<div>Junior Senator from Wyoming, 2007-2018</div>
</div><div class="result_item">
<div style="float: left; margin-right: 1.5em">
<img src="./congress_pictures_files/400018-50px.jpeg" width="50" height="60">
</div>
<a href="https://www.govtrack.us/congress/members/joe_barton/400018" style="margin-top: 4px">Barton, Joe</a>
<div>Representative for Texas's 6th congressional district, 1985-2018</div>
</div><div class="result_item">
<div style="float: left; margin-right: 1.5em">
<img src="./congress_pictures_files/412404-50px.jpeg" width="50" height="60">
</div>
<a href="https://www.govtrack.us/congress/members/karen_bass/412404" style="margin-top: 4px">Bass, Karen</a>
<div>Representative for California's 37th congressional district, 2013-2018</div>
</div><div class="result_item">
<div style="float: left; margin-right: 1.5em">
<img src="./congress_pictures_files/412565-50px.jpeg" width="50" height="60">
</div>
<a href="https://www.govtrack.us/congress/members/joyce_beatty/412565" style="margin-top: 4px">Beatty, Joyce</a>
<div>Representative for Ohio's 3rd congressional district, 2013-2018</div>
</div><div class="result_item">
<div style="float: left; margin-right: 1.5em">
<img src="./congress_pictures_files/412330-50px.jpeg" width="50" height="60">
</div>
<a href="https://www.govtrack.us/congress/members/michael_bennet/412330" style="margin-top: 4px">Bennet, Michael</a>
<div>Senior Senator from Colorado, 2009-2022</div>
</div><div class="result_item">
<div style="float: left; margin-right: 1.5em">
<img src="./congress_pictures_files/412512-50px.jpeg" width="50" height="60">
</div>
<a href="https://www.govtrack.us/congress/members/ami_bera/412512" style="margin-top: 4px">Bera, Ami</a>
<div>Representative for California's 7th congressional district, 2013-2018</div>
</div><div class="result_item">
<div style="float: left; margin-right: 1.5em">
<img src="./congress_pictures_files/412709-50px.jpeg" width="50" height="60">
</div>
<a href="https://www.govtrack.us/congress/members/jack_bergman/412709" style="margin-top: 4px">Bergman, Jack</a>
<div>Representative for Michigan's 1st congressional district, 2017-2018</div>
</div><div class="result_item">
<div style="float: left; margin-right: 1.5em">
<img src="./congress_pictures_files/412657-50px.jpeg" width="50" height="60">
</div>
<a href="https://www.govtrack.us/congress/members/donald_beyer/412657" style="margin-top: 4px">Beyer, Donald</a>
<div>Representative for Virginia's 8th congressional district, 2015-2018</div>
</div><div class="result_item">
<div style="float: left; margin-right: 1.5em">
<img src="./congress_pictures_files/412683-50px.jpeg" width="50" height="60">
</div>
<a href="https://www.govtrack.us/congress/members/andy_biggs/412683" style="margin-top: 4px">Biggs, Andy</a>
<div>Representative for Arizona's 5th congressional district, 2017-2018</div>
</div><div class="result_item">
<div style="float: left; margin-right: 1.5em">
<img src="./congress_pictures_files/412250-50px.jpeg" width="50" height="60">
</div>
<a href="https://www.govtrack.us/congress/members/gus_bilirakis/412250" style="margin-top: 4px">Bilirakis, Gus</a>
<div>Representative for Florida's 12th congressional district, 2013-2018</div>
</div><div class="result_item">
<div style="float: left; margin-right: 1.5em">
<img src="./congress_pictures_files/412635-50px.jpeg" width="50" height="60">
</div>
<a href="https://www.govtrack.us/congress/members/mike_bishop/412635" style="margin-top: 4px">Bishop, Mike</a>
<div>Representative for Michigan's 8th congressional district, 2015-2018</div>
</div><div class="result_item">
<div style="float: left; margin-right: 1.5em">
<img src="./congress_pictures_files/400029-50px.jpeg" width="50" height="60">
</div>
<a href="https://www.govtrack.us/congress/members/rob_bishop/400029" style="margin-top: 4px">Bishop, Rob</a>
<div>Representative for Utah's 1st congressional district, 2003-2018</div>
</div><div class="result_item">
<div style="float: left; margin-right: 1.5em">
<img src="./congress_pictures_files/400030-50px.jpeg" width="50" height="60">
</div>
<a href="https://www.govtrack.us/congress/members/sanford_bishop/400030" style="margin-top: 4px">Bishop, Sanford</a>
<div>Representative for Georgia's 2nd congressional district, 1993-2018</div>
</div><div class="result_item">
<div style="float: left; margin-right: 1.5em">
<img src="./congress_pictures_files/412478-50px.jpeg" width="50" height="60">
</div>
<a href="https://www.govtrack.us/congress/members/diane_black/412478" style="margin-top: 4px">Black, Diane</a>
<div>Representative for Tennessee's 6th congressional district, 2011-2018</div>
</div><div class="result_item">
<div style="float: left; margin-right: 1.5em">
<img src="./congress_pictures_files/400032-50px.jpeg" width="50" height="60">
</div>
<a href="https://www.govtrack.us/congress/members/marsha_blackburn/400032" style="margin-top: 4px">Blackburn, Marsha</a>
<div>Representative for Tennessee's 7th congressional district, 2003-2018</div>
</div><div class="result_item">
<div style="float: left; margin-right: 1.5em">
<img src="./congress_pictures_files/412627-50px.jpeg" width="50" height="60">
</div>
<a href="https://www.govtrack.us/congress/members/rod_blum/412627" style="margin-top: 4px">Blum, Rod</a>
<div>Representative for Iowa's 1st congressional district, 2015-2018</div>
</div><div class="result_item">
<div style="float: left; margin-right: 1.5em">
<img src="./congress_pictures_files/400033-50px.jpeg" width="50" height="60">
</div>
<a href="https://www.govtrack.us/congress/members/earl_blumenauer/400033" style="margin-top: 4px">Blumenauer, Earl</a>
<div>Representative for Oregon's 3rd congressional district, 1996-2018</div>
</div><div class="result_item">
<div style="float: left; margin-right: 1.5em">
<img src="./congress_pictures_files/412490-50px.jpeg" width="50" height="60">
</div>
<a href="https://www.govtrack.us/congress/members/richard_blumenthal/412490" style="margin-top: 4px">Blumenthal, Richard</a>
<div>Senior Senator from Connecticut, 2011-2022</div>
</div><div class="result_item">
<div style="float: left; margin-right: 1.5em">
<img src="./congress_pictures_files/412689-50px.jpeg" width="50" height="60">
</div>
<a href="https://www.govtrack.us/congress/members/lisa_blunt_rochester/412689" style="margin-top: 4px">Blunt Rochester, Lisa</a>
<div>Representative for Delaware At Large, 2017-2018</div>
</div><div class="result_item">
<div style="float: left; margin-right: 1.5em">
<img src="./congress_pictures_files/400034-50px.jpeg" width="50" height="60">
</div>
<a href="https://www.govtrack.us/congress/members/roy_blunt/400034" style="margin-top: 4px">Blunt, Roy</a>
<div>Junior Senator from Missouri, 2011-2022</div>
</div><div class="result_item">
<div style="float: left; margin-right: 1.5em">
<img src="./congress_pictures_files/412501-50px.jpeg" width="50" height="60">
</div>
<a href="https://www.govtrack.us/congress/members/suzanne_bonamici/412501" style="margin-top: 4px">Bonamici, Suzanne</a>
<div>Representative for Oregon's 1st congressional district, 2012-2018</div>
</div><div class="result_item">
<div style="float: left; margin-right: 1.5em">
<img src="./congress_pictures_files/412598-50px.jpeg" width="50" height="60">
</div>
<a href="https://www.govtrack.us/congress/members/cory_booker/412598" style="margin-top: 4px">Booker, Cory</a>
<div>Junior Senator from New Jersey, 2013-2020</div>
</div><div class="result_item">
<div style="float: left; margin-right: 1.5em">
<img src="./congress_pictures_files/400040-50px.jpeg" width="50" height="60">
</div>
<a href="https://www.govtrack.us/congress/members/john_boozman/400040" style="margin-top: 4px">Boozman, John</a>
<div>Senior Senator from Arkansas, 2011-2022</div>
</div><div class="result_item">
<div style="float: left; margin-right: 1.5em">
<img src="./congress_pictures_files/400041-50px.jpeg" width="50" height="60">
</div>
<a href="https://www.govtrack.us/congress/members/madeleine_bordallo/400041" style="margin-top: 4px">Bordallo, Madeleine</a>
<div>Delegate for Guam, 2003-2018</div>