-
Notifications
You must be signed in to change notification settings - Fork 3
/
bylaws.lyx
1785 lines (1421 loc) · 50.5 KB
/
bylaws.lyx
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
#LyX 2.3 created this file. For more info see http://www.lyx.org/
\lyxformat 544
\begin_document
\begin_header
\save_transient_properties true
\origin unavailable
\textclass article
\begin_preamble
\usepackage{color}
\definecolor{rltred}{rgb}{0.75,0,0}
\definecolor{rltgreen}{rgb}{0,0.5,0}
\definecolor{rltblue}{rgb}{0,0,0.75}
% Modified this document to LaTeX:
% https://docs.google.com/document/d/13KyMaIwALko2bcrn195Mtr_WUd5ZyB0Ivm8-GJxYFn8/edit
\title{Bylaws of Sad Bee, Inc. (d/b/a Hive13)}
% Originally placed in LaTeX by uid0 (Ian Wilson) in 2013
% updated/verified on 20150120 by uid0.
% updated with new subsection 20150811 by Jon Neal (reportingsjr).
% restated 2020 bylaws laid out by Drew Kirkman 20200724
\end_preamble
\use_default_options false
\maintain_unincluded_children false
\language english
\language_package none
\inputencoding auto
\fontencoding default
\font_roman "default" "default"
\font_sans "default" "default"
\font_typewriter "default" "default"
\font_math "auto" "auto"
\font_default_family default
\use_non_tex_fonts false
\font_sc false
\font_osf false
\font_sf_scale 100 100
\font_tt_scale 100 100
\use_microtype false
\use_dash_ligatures true
\graphics default
\default_output_format default
\output_sync 0
\bibtex_command default
\index_command default
\paperfontsize default
\spacing single
\use_hyperref true
\pdf_title "Bylaws of Sad Bee, Inc. (d/b/a Hive13)"
\pdf_bookmarks false
\pdf_bookmarksnumbered false
\pdf_bookmarksopen false
\pdf_bookmarksopenlevel 1
\pdf_breaklinks false
\pdf_pdfborder false
\pdf_colorlinks true
\pdf_backref section
\pdf_pdfusetitle false
\pdf_quoted_options "pdftex,urlcolor=rltblue,filecolor=rltgreen,linkcolor=rltred,pdfproducer={pdfLaTeX},pagebackref,bookmarksopen=true"
\papersize default
\use_geometry false
\use_package amsmath 1
\use_package amssymb 0
\use_package cancel 0
\use_package esint 1
\use_package mathdots 0
\use_package mathtools 0
\use_package mhchem 0
\use_package stackrel 0
\use_package stmaryrd 0
\use_package undertilde 0
\cite_engine basic
\cite_engine_type default
\biblio_style plain
\use_bibtopic false
\use_indices false
\paperorientation portrait
\suppress_date true
\justification true
\use_refstyle 0
\use_minted 0
\index Index
\shortcut idx
\color #008000
\end_index
\secnumdepth 3
\tocdepth 3
\paragraph_separation indent
\paragraph_indentation default
\is_math_indent 0
\math_numbering_side default
\quotes_style english
\dynamic_quotes 0
\papercolumns 1
\papersides 1
\paperpagestyle default
\tracking_changes false
\output_changes false
\html_math_output 0
\html_css_as_file 0
\html_be_strict false
\end_header
\begin_body
\begin_layout Title
BYLAWS OF SAD BEE, INC.
\end_layout
\begin_layout Section
Name
\end_layout
\begin_layout Standard
The name of the Corporation is Sad Bee, Inc., registered to do business in
the State of Ohio as “Hive13” (the “Corporation”).
\end_layout
\begin_layout Section
Purposes
\end_layout
\begin_layout Enumerate
The Corporation is organized exclusively for charitable, educational, and
scientific purposes within the meaning of Section 501(c)(3) of the Internal
Revenue Code of 1986
\begin_inset Foot
status open
\begin_layout Plain Layout
\begin_inset CommandInset href
LatexCommand href
name "http://www.law.cornell.edu/uscode/text/26/501"
target "http://www.law.cornell.edu/uscode/text/26/501"
literal "false"
\end_inset
\end_layout
\end_inset
, as may be amended from time-to-time (the “IRS Code”).
\end_layout
\begin_layout Enumerate
The Corporation’s mission is to promote technology, art, craftsmanship,
and creativity through education and collaboration.
\end_layout
\begin_layout Section
Membership
\end_layout
\begin_layout Subsection
Membership Classes
\end_layout
\begin_layout Enumerate
Student Member
\end_layout
\begin_deeper
\begin_layout Enumerate
Student Members shall have the rights and responsibilities of Full Members;
and
\end_layout
\begin_layout Enumerate
Valid school credentials must be verified by a member of the Board of Directors
(the “Board”) or an Officer.
\end_layout
\end_deeper
\begin_layout Enumerate
Full Member
\end_layout
\begin_deeper
\begin_layout Standard
Full Members have the right to:
\end_layout
\begin_layout Enumerate
A key or other method of entry to the physical workspace;
\end_layout
\begin_layout Enumerate
Twenty-four-hour access to the physical workspace;
\end_layout
\begin_layout Enumerate
Reasonable inspection rights of corporate records;
\end_layout
\begin_layout Enumerate
A Member may apply for a single complimentary membership per approval by
the Board.
This person must complete an application, be over 18 and is typically a
family member, spouse, or other domestic partner.
This membership will remain active as long as the primary membership is
maintained; and
\end_layout
\begin_layout Enumerate
Store a reasonable amount of equipment at the physical workspace.
\end_layout
\end_deeper
\begin_layout Enumerate
Cornerstone Member
\end_layout
\begin_deeper
\begin_layout Enumerate
Cornerstone Members shall have all rights and responsibilities of Full Members.
\end_layout
\end_deeper
\begin_layout Enumerate
Contributor
\end_layout
\begin_deeper
\begin_layout Enumerate
Contributors are not Members and do not receive any rights or privileges
afforded to Members; and
\end_layout
\begin_layout Enumerate
Contributors are recognized and thanked for their contributions.
\end_layout
\end_deeper
\begin_layout Subsection
Eligibility
\end_layout
\begin_layout Enumerate
In order to be a Member, a person must apply via the membership application,
support the purpose and scientific goals of the Corporation, and must pay
the monthly membership fee.
\end_layout
\begin_layout Enumerate
Any eligible person may be approved as a Member following completion of
the membership application form and waiver of liability.
The official membership application must be signed by an Officer, Director,
or any member designated by the Board of Directors to have the authority
to approve such applications.
Upon payments of their first periodic dues, their membership is validated.
\end_layout
\begin_layout Enumerate
Members must be at least 18 years of age.
\end_layout
\begin_layout Subsection
Rights and Responsibilities
\end_layout
\begin_layout Enumerate
All Members shall have the right to:
\end_layout
\begin_deeper
\begin_layout Enumerate
Vote on:
\end_layout
\begin_deeper
\begin_layout Enumerate
The election of Directors and Officers;
\end_layout
\begin_layout Enumerate
Any merger and its principal terms;
\end_layout
\begin_layout Enumerate
Any election to dissolve the Corporation; and
\end_layout
\begin_layout Enumerate
Any issue put before the Membership.
\end_layout
\end_deeper
\begin_layout Enumerate
Voice their opinion and vote their preference or abstain from voting about
the affairs of the Corporation; and
\end_layout
\begin_layout Enumerate
Any other rights granted by resolution of the Board or provided by law.
\end_layout
\end_deeper
\begin_layout Enumerate
All Members shall be responsible for:
\end_layout
\begin_deeper
\begin_layout Enumerate
Timely payment of monthly dues;
\end_layout
\begin_layout Enumerate
Providing their current address, contact information, and preference for
electronic receipt of communications;
\end_layout
\begin_layout Enumerate
Thoughtfully contributing to the Corporations’ direction and policies;
\end_layout
\begin_layout Enumerate
Continuing to support the purposes of the Corporation;
\end_layout
\begin_layout Enumerate
Obeying any rules set forth by the Board, such as a noise curfew; and
\end_layout
\begin_layout Enumerate
Returning any and all property of the Corporation to any Officer or Director
upon cessation of Membership for any reason.
\end_layout
\end_deeper
\begin_layout Subsection
Termination of Membership
\end_layout
\begin_layout Enumerate
A person ceases to be a Member of the Corporation;
\end_layout
\begin_deeper
\begin_layout Enumerate
By delivering their resignation in writing, electronically, or via postal
mail to the Board.
\end_layout
\begin_layout Enumerate
On their death;
\end_layout
\begin_layout Enumerate
On having their Membership terminated; or
\end_layout
\begin_layout Enumerate
On not having been in good standing for three (3) consecutive months, except
by special arrangement at the discretion of the Board.
\end_layout
\end_deeper
\begin_layout Enumerate
Resignation shall not relieve a Member of unpaid dues or other monies owed
to the Corporation.
\end_layout
\begin_layout Enumerate
Membership may be terminated with or without cause at a Special Meeting
of the Members, who are currently serving as Directors or Officers, called
for such purpose, which meeting may be called by at least two (2) Directors
and/or Officers, by a resolution passed by at least two-thirds (2/3) of
all the Members currently serving as Directors or Officers.
\end_layout
\begin_deeper
\begin_layout Enumerate
Notice of termination shall be given by any method reasonably calculated
to provide actual notice to the Member at least three (3) days prior to
the effective date of such termination;
\end_layout
\begin_layout Enumerate
The notice of termination must include arrangements to remove the Member’s
possessions from Hive13; and
\end_layout
\begin_layout Enumerate
The Member shall be given an opportunity to be heard at a Special Meeting
of the Members, who are currently serving as Directors or Officers, called
for such purpose, or in writing, in a statement delivered to the President,
at least three (3) days before the effective date of the proposed termination.
Following, which the Members, who are currently serving as Directors or
Officers, shall decide at a Special Meeting of the Members, who are currently
serving as Directors or Officers, called for such purpose, whether or not
to terminate such Member’s membership.
In the event that such Member whose membership has been proposed to be
terminated is a Director or Officer, such Member shall leave (if present)
and not participate in the Special Meeting at which such Member’s termination
is being decided.
\end_layout
\end_deeper
\begin_layout Enumerate
Membership may also be terminated with or without cause by a resolution
passed by more than three quarters (3/4th) of the necessary quorum at a
Special Meeting of the Members called for such purpose.
\end_layout
\begin_deeper
\begin_layout Enumerate
Notice of the resolution of termination shall be given by any method reasonably
calculated to provide actual notice to the Member at least three (3) days
prior to the Special Meeting date called to vote on the termination;
\end_layout
\begin_layout Enumerate
The notice of a Special Meeting for termination must be accompanied by the
resolution to be voted in the meeting;
\end_layout
\begin_layout Enumerate
The Member shall be given an opportunity to be heard, either orally, at
a Special Meeting of the Members called for such purpose, or in writing,
in a statement delivered to the President, at least three (3) days before
the effective date of the proposed termination;
\end_layout
\begin_layout Enumerate
The hearing shall be held, or the written statement considered, by the Membershi
p; and
\end_layout
\begin_layout Enumerate
The Membership shall then vote on whether the Member is to be terminated,
\bar under
provided
\bar default
; that, the Member whose membership has been proposed to be terminated shall
leave (if present) and not participate in the Special Meeting of the Members
at which such termination is being voted on.
\end_layout
\end_deeper
\begin_layout Enumerate
The Corporation reserves the right to limit membership based on the capacity
of the space.
\end_layout
\begin_layout Enumerate
Upon resignation or termination, Members shall also have their rights and
responsibilities revoked.
\end_layout
\begin_deeper
\begin_layout Enumerate
Terminated Members shall be entitled to a pro-rated refund of any membership
dues paid for the period after which the termination takes effect; and
\end_layout
\begin_layout Enumerate
At the discretion of the Board, terminated Members may be forbidden to enter
the Corporation’s premises.
Arrangements to retrieve such Member’s personal property under supervision
shall be made with the consent of any Officer or Director.
\end_layout
\end_deeper
\begin_layout Subsection
Suspension of Membership
\end_layout
\begin_layout Enumerate
Membership may be suspended for any amount of time up to one hundred eighty
(180) days without cause by a resolution passed by a majority of a quorum
of Members currently serving as Directors or Officers.
\end_layout
\begin_layout Enumerate
Membership may be suspended for any amount of time up to seventy-two (72)
hours without cause with the approval of at least two (2) Officers or Directors.
During this period, the suspending Officers or Directors may require the
suspended Member to vacate the Corporation’s premises.
\end_layout
\begin_layout Enumerate
Suspensions may also be lifted, temporarily or permanently, by a majority
vote of a quorum of the Board, or by a vote of the Membership passed by
more than three-quarters (3/4) of the necessary quorum at a Special Meeting
of Members.
As a condition of lifting a suspension, that Member may be required to
go through the membership application process as a new member.
\end_layout
\begin_layout Enumerate
Suspended Members shall also have their rights and responsibilities suspended
for the duration of their suspension.
\end_layout
\begin_deeper
\begin_layout Enumerate
Suspended Members shall be entitled to a pro-rated refund of any membership
dues paid for the period of the suspension.
Dues do not accrue during a suspension; and
\end_layout
\begin_layout Enumerate
At the discretion of the Board, the suspended Member may be forbidden to
enter the Corporation’s premises during the suspension.
Arrangements to retrieve such Member’s personal property under supervision
shall be made with the consent of any Officer or Director.
\end_layout
\end_deeper
\begin_layout Subsection
Dues
\end_layout
\begin_layout Enumerate
The first month’s dues shall be the full amount of the then current specified
dues.
\end_layout
\begin_layout Enumerate
The Board and elected Officers are responsible for ensuring the dues for
Members are such that the Corporation shall be financially sustained.
If changes to the dues are necessary, the Board and elected Officers shall
submit the changes for a vote by the Membership.
\end_layout
\begin_layout Enumerate
All Members are in good standing except a Member who has failed to pay their
current monthly dues, or any other subscription or debt due and owing by
the Member to the Corporation, and the Member is not in good standing so
long as the debt remains unpaid.
\end_layout
\begin_layout Subsection
Warden Members
\end_layout
\begin_layout Enumerate
Wardens are active Members who want to become experts of Hive13 and lead
the Hive13 mission.
Wardens are able to effectively offer advice, teach users how to properly
and safely use the machines, maintain the space, and directly request replaceme
nts or improvements to items in the space.
Along with the Chief Operating Officer, Wardens have direct access to funds
for improvement of the space.
\end_layout
\begin_layout Enumerate
The Chief Operating Officer (COO) is responsible for managing the Wardens.
The COO’s duties include, but are not limited to, the following:
\end_layout
\begin_deeper
\begin_layout Enumerate
Ensuring that Wardens are respecting Hive13;
\end_layout
\begin_layout Enumerate
Approval of requests for the Warden Budget; and
\end_layout
\begin_layout Enumerate
Holding short monthly progress meetings with the Wardens.
\end_layout
\end_deeper
\begin_layout Enumerate
Warden Budget.
\end_layout
\begin_deeper
\begin_layout Standard
The Warden Budget shall be allocated each month for maintenance, repair,
and minor improvements to the Corporation's workspaces and equipment.
The Chief Operating Officer and Wardens, with counsel from the Treasurer,
will prepare a Warden budget for Board approval.
The Board will submit the approved Warden budget for Member vote.
Wardens have direct access to request parts and consumables for the Hive
out of the Warden Budget.
The COO shall approve all purchase requests and present receipts with a
monthly summary to the Treasurer for reimbursement.
\end_layout
\end_deeper
\begin_layout Enumerate
Eligibility and Appointment.
\end_layout
\begin_deeper
\begin_layout Enumerate
Any Member in good standing for at least the prior four (4) consecutive
months may serve as a Warden.
The longevity requirement may be waived for a specific Member by an act
of the Board;
\end_layout
\begin_layout Enumerate
The maximum number of Wardens may be changed at any time by an act of the
Board and is eight (8) until such an act is passed.
Reducing the maximum number of Wardens does not cause any current Warden
to be removed from a Warden position; and
\end_layout
\begin_layout Enumerate
Wardens shall be appointed by the Board and removed, with or without cause,
by an act of the Board.
The COO is responsible for making appropriate recommendations to the Board
for Warden appointments or removal based on the needs of the Corporation.
\end_layout
\end_deeper
\begin_layout Enumerate
Responsibilities
\end_layout
\begin_deeper
\begin_layout Enumerate
The COO is responsible for determining the specific breakdown of the various
areas and the individual duties of each Warden.
\end_layout
\begin_layout Enumerate
Each Warden is not necessarily limited to one (1) area, nor one (1) Warden
per area, and cross-training of Wardens is encouraged.
Responsibilities of the Wardens include, but are not limited to, the following:
\end_layout
\begin_deeper
\begin_layout Enumerate
Provide at least one (1) reliable form of contact for the mailing list and
any other electronic messaging system the Hive provides for its Members;
\end_layout
\begin_layout Enumerate
Ensure that Hive13 is kept clean;
\end_layout
\begin_layout Enumerate
Maintain all equipment in Hive13, and ensure broken equipment is repaired.
Maintain documentation on Hive13 equipment, including a list of any consumables
needed and current status;
\end_layout
\begin_layout Enumerate
Request Warden Budget funds for parts or consumables as needed;
\end_layout
\begin_layout Enumerate
Hold public hours at least twice a month for at least two (2) hours each;
and
\end_layout
\begin_layout Enumerate
Provide feedback on how to improve the Warden program.
\end_layout
\end_deeper
\end_deeper
\begin_layout Section
Meetings of the Members
\end_layout
\begin_layout Subsection
Regular Meetings
\end_layout
\begin_layout Enumerate
Regular meetings of the Membership shall be held weekly.
\end_layout
\begin_layout Enumerate
The meeting shall be held at the registered address of the Corporation or
at a different meeting place or time as may be designated by Board of Directors.
\end_layout
\begin_layout Subsection
Annual Meetings
\end_layout
\begin_layout Enumerate
An Annual Meeting of the Membership shall be held in the month of July.
The President or their delegate shall fix the date, time, and location
of such meeting.
\end_layout
\begin_layout Enumerate
Notice must be provided of such meeting as provided in the section of these
bylaws entitled Notice of Meetings.
\end_layout
\begin_layout Enumerate
The date and time can be changed by the procedures for a vote of the Membership,
as defined in these bylaws.
\end_layout
\begin_layout Enumerate
Annual Meetings of the Membership exist in order to:
\end_layout
\begin_deeper
\begin_layout Enumerate
Comply with legal requirements;
\end_layout
\begin_layout Enumerate
Elect Directors;
\end_layout
\begin_layout Enumerate
Elect all Officers;
\end_layout
\begin_layout Enumerate
Review and vote on the standing rules and policies of the Corporation;
\end_layout
\begin_layout Enumerate
Receive reports on the budget and activities of the Corporation, approve
the budget and determine the direction of the Corporation in the coming
year;
\end_layout
\begin_layout Enumerate
Update these bylaws if deemed necessary to do so, and
\end_layout
\begin_layout Enumerate
Any other issues that Members have placed before the Membership to be discussed
at the Annual Meeting, pursuant to the proposal and voting rules stated
in these bylaws for Voting.
\end_layout
\end_deeper
\begin_layout Enumerate
Decisions will be made by the affirmative vote of a majority of the Members,
except for changes to the bylaws which must be passed by the affirmative
vote of two-thirds (2/3rds) of the Members.
\end_layout
\begin_layout Enumerate
The quorum for the Annual Meeting, shall be fifty percent (50%) of the Membershi
p.
In the absence of a quorum, no formal action shall be taken except to adjourn
the meeting to a subsequent date.
\end_layout
\begin_layout Subsection
Special Meetings
\end_layout
\begin_layout Enumerate
The Board or five percent (5%) or more of the Members may call a Special
Meeting of the Members at any time.
\end_layout
\begin_layout Enumerate
Notice must be provided of such meeting as provided in the section of these
bylaws entitled Notice of Meetings.
\end_layout
\begin_layout Subsection
Notice of Meetings
\end_layout
\begin_layout Enumerate
Notice of Annual Meetings shall be given at least ten (10) days but no more
than sixty (60) days before the meeting date.
\end_layout
\begin_layout Enumerate
Notice of Special Meetings shall be given at least seventy-two (72) hours
but no more than ten (10) days before the meeting date.
\end_layout
\begin_layout Enumerate
Regular Meetings do not require any notice unless the time or place has
changed.
\end_layout
\begin_layout Enumerate
Any notice sent of Special Meetings shall state the nature of the business
to be transacted by the Members.
\end_layout
\begin_layout Enumerate
For a meeting where elections are held, the notice shall state the names
of all persons who are nominees for office.
\end_layout
\begin_layout Enumerate
Announcements regarding changes to the meeting date, time, or venue shall
be made to the entire Membership with a minimum of forty-eight (48) hours’
notice.
\end_layout
\begin_layout Enumerate
Notice may be provided to the e-mail address of each Member on record with
the Corporation, or any other method approved by a vote of the Membership.
\end_layout
\begin_layout Subsection
Remote Attendance and Voting
\end_layout
\begin_layout Enumerate
Members may participate in a meeting through use of conference telephone,
electronic video communication, electronic chat, or other communications
equipment so long as all of the following apply:
\end_layout
\begin_deeper
\begin_layout Enumerate
Each Member participating in the meeting can communicate with all of the
other Members;
\end_layout
\begin_layout Enumerate
Each Member is provided with the means of participating in all matters under
consideration, including the capacity to propose, or to interpose an objection
to a specific action to be taken by the Corporation; and
\end_layout
\begin_layout Enumerate
The Corporation verifies that:
\end_layout
\begin_deeper
\begin_layout Enumerate
A person communicating by telephone, electronic video screen, or other communica
tions equipment is a Member with voting privileges, and
\end_layout
\begin_layout Enumerate
All motions, votes, or other actions required to be made by a Member were
actually made by a Member and not by someone who is not entitled to participate
as a Member.
\end_layout
\end_deeper
\end_deeper
\begin_layout Enumerate
Votes by the Members may not be made by proxy.
Members must attend the meeting of the Members, either in person or remotely
as set forth above, in order to vote on matters placed before the Members.
\end_layout
\begin_layout Subsection
Voting
\end_layout
\begin_layout Enumerate
All issues requiring a vote, except when otherwise specified as a vote of
the Membership in these bylaws or required by law, shall be decided by
the affirmative vote of more than one half (50%) of the Members voting
online or present at any Meeting.
\end_layout
\begin_layout Enumerate
Any Member may abstain from any vote.
In this case, that Member shall count towards quorum on an issue but shall
not count towards determining the minimum number of votes needed to pass
that issue.
\end_layout
\begin_layout Enumerate
Quorum for a vote of the Membership shall require the attendance of at least
half (50%) of the existing Membership on the day of the vote.
\end_layout
\begin_layout Enumerate
For the purposes of calculating the quorum, properly submitted proxy statements
as well as votes submitted as described in the section Remote Attendance
shall count as attendance.
\end_layout
\begin_layout Enumerate
For a vote of the Membership, the Directors shall appoint a three-member
election committee, responsible to deploy the vote of the Membership, tally
the votes and present the results.
The committee members shall not be nominated for positions in the vote
or have personal relationships with those nominated.
\end_layout
\begin_layout Section
Directors
\end_layout
\begin_layout Subsection
Number
\end_layout
\begin_layout Enumerate
The Board shall consist of five (5) Members.
\end_layout
\begin_layout Enumerate
All Directors must be a Full Member or equivalent of the Corporation as
defined in these bylaws.
\end_layout
\begin_layout Enumerate
Each Director shall serve a one (1) year term from the time of their election
until their successor is elected and qualified.
\end_layout
\begin_layout Subsection
Director Responsibilities
\end_layout
\begin_layout Standard
The duties of the Directors shall include the authority to:
\end_layout
\begin_layout Enumerate
Uphold and advance the purposes of the Corporation.
\end_layout
\begin_layout Enumerate
Manage and control the affairs, contracts, funds and property of the Corporation.
\end_layout
\begin_layout Standard
The Directors may delegate their authority to fulfil all roles required
by Ohio and Federal law and these bylaws.
\end_layout
\begin_layout Subsection
Eligibility
\end_layout
\begin_layout Standard
In order to be eligible to be nominated as a Director, a person must be
a Full Member (or equivalent) as defined in these bylaws for three (3)
consecutive months.
\end_layout
\begin_layout Subsection
Nomination
\end_layout
\begin_layout Enumerate
Any qualified Member has the right to nominate an eligible person for office.
\end_layout
\begin_layout Enumerate
Any qualified Member has the right to nominate themselves.
\end_layout
\begin_layout Enumerate
Only the nominated candidate can un-nominate themselves.
\end_layout
\begin_layout Enumerate
All nominations for Director positions are due one (1) week before the Annual
Meeting of the Members.
\end_layout
\begin_layout Enumerate
If only one (1) person is timely nominated to run for an office and accepts
such nomination, they shall run unopposed.
\end_layout
\begin_layout Enumerate
If no person is timely nominated to run for an office, nominations for that
position may be made at the Annual Meeting of the Members, in person, before
the vote.
If nobody is nominated in this way, the incumbent may choose to continue
in the position.
\end_layout
\begin_layout Enumerate
In the event that there is an unfilled, Director position, the Board may
appoint an interim Director that shall serve until a replacement Director
is properly elected.