-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
913 lines (579 loc) · 22.9 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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<meta name="description" content="Writer and artist in Portland, Oregon. I create effective communications for individuals and organizations working towards a more conscious relationship with life on earth.">
<meta name="viewport" content="user-scalable=no, initial-scale=1.0, maximum-scale=1.0, width=device-width">
<link type="text/css" href="styles.css" rel="stylesheet">
<link type="text/css" href="mobile_styles.css" rel="stylesheet">
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<link rel="icon" href="favicon.ico" type="image/x-icon">
<script type="text/javascript" src="js/jquery.min.js"></script>
<script type="text/javascript">
jQuery(document).ready(function() {
var offset = 220;
var duration = 500;
jQuery(window).scroll(function() {
if (jQuery(this).scrollTop() > offset) {
jQuery('.back-to-top').fadeIn(duration);
} else {
jQuery('.back-to-top').fadeOut(duration);
}
});
jQuery('.back-to-top').click(function(event) {
event.preventDefault();
jQuery('html, body').animate({scrollTop: 0}, duration);
return false;
})
});
</script>
<script type="text/javascript">
$(document).ready(function() {
$('.nav-toggle').click(function(){
//get collapse content selector
var collapse_content_selector = $(this).attr('href');
//make the collapse content to be shown or hide
var toggle_switch = $(this);
$(collapse_content_selector).toggle(function(){
if($(this).css('display')=='none'){
//change the button label to be 'Expand'
toggle_switch.html('EXPAND');
}else{
//change the button label to be 'Hide'
toggle_switch.html('CONTRACT');
}
});
});
});
</script>
<script type="text/javascript">
$(document).ready(function() {
$('.nav-tog').click(function(){
//get collapse content selector
var collapse_content_selector = $(this).attr('href');
//make the collapse content to be shown or hide
var toggle_switch = $(this);
$(collapse_content_selector).toggle(function(){
if($(this).css('display')=='none'){
//change the button label to be 'Expand'
toggle_switch.html('RÉSUMÉ');
}else{
//change the button label to be 'Hide'
toggle_switch.html('RÉSUMÉ');
}
});
});
});
</script>
<title>Arthur Smid - Professional social media, writing and graphic services</title>
</head>
<body>
<div id="container">
<div id="dresser">
<div id="header">
<div id="logo"><h1>Arthur Smid</h1></div>
<div id="navigation">
<a href="index.html#resume" class="smoothScroll">résumé</a>
<a href="index.html#writing" class="smoothScroll">writing</a>
<a href="index.html#illustration" class="smoothScroll">illustration</a>
<a href="index.html#photography" class="smoothScroll">photography</a>
<a href="index.html#video" class="smoothScroll">video</a>
<a href="index.html#socialMedia" class="smoothScroll">social media</a>
</div>
<!-- end navigation -->
</div>
<!-- end header -->
<div id="contact">
<div><a href="http://www.twitter.com/ArthurSmid" target="blank">Twitter</a></div>
<div><a href="http://www.facebook.com/ArthurSmid" target="blank"> Facebook</a></div>
<div>
<a href="mailto:[email protected]">[email protected]</a></div>
</div>
</div>
<!-- end dresser -->
<div id="content">
<div id="intro"><div id="intro_text"><p>I live in Portland, Oregon where I'm responsible for social media management of Bear Trust International. What’s happening to other people, to other biological creatures, and to the environment matters to me. I create effective communication for individuals and organizations working towards a more conscious relationship with life on earth. Here are some of the services I offer: </p></div>
</div>
<div id="dresser1">
<div id="collapse1" style="display:none">
<div class="drawer1">
<div class="column_c">
<a href="https://muralmouth.wordpress.com/2016/01/08/chapbooks-dreams-poems-and-statements/" class="cell cell1" target="blank">
Chapbooks:<br> Dreams, Poems, and Statements
</a>
<a href="http://www.neighborhoodnotes.com/news/2010/06/making_your_money_work_portlands_community_banks_and_credit_unions/" class="cell cell2" target="blank">
Making Your Money Work:
Portland’s Community Banks and Credit Unions
</a>
<a href="http://www.neighborhoodnotes.com/news/2008/12/brody_on_broadway/" class="cell_b cell3" target="blank">
Brody on Broadway
</a>
</div>
<!-- end column -->
<div class="column_c">
<a href="childrensbooks.html" target="blank" class="cell_b cell4">
Children’s Books
</a>
<a href="http://www.neighborhoodnotes.com/news/2010/11/the_water_cycle_in_portland_living_in_a_watershed/" target="blank" class="cell cell7">
The Water Cycle in Portland:<br> Living in a Watershed
</a>
<a href="http://thedailycrosshatch.com/2008/11/12/interview-farel-dalrymple/" target="blank" class="cell_b cell6">
Interview: Farel Dalrymple
</a>
</div>
<!-- end column -->
<div class="column_c">
<a href="https://muralmouth.wordpress.com/2015/06/01/oregon-geothermal-tapping-the-earths-power-industry-insights-with-john-lund/" target="blank" class="cell cell7">
Oregon Geothermal<br> Tapping the Earth's Power
</a>
<a href="http://muralmouth.wordpress.com/2013/07/01/complementary-currency-citizens-invested-in-their-community/" class="cell cell1" target="blank">
Proposal for a Conversation<br> About Complementary Currency
</a>
<a href="http://thedailycrosshatch.com/2008/10/12/chris-onstad-the-great-outdoor-fight-book-release-at-floating-world-comics/" target="blank" class="cell cell9">
Chris Onstad:<br> The Great Outdoor Fight Book<br> Release at Floating World Comics
</a>
</div>
<!-- end column -->
</div>
<!-- end drawer1 -->
</div>
<!-- end collapse1 -->
<div class="heading">
<div class="anchor"><a name="writing"></a></div>
<h2>copywriting</h2>
<h2>developmental editing</h2>
<h2>line editing</h2>
<h2>proofreading</h2>
<h2>articles and essays</h2>
<div class="knob">
<span href="#collapse1" class="nav-toggle button">
EXPAND</span>
</div>
<!-- end knob -->
</div>
</div>
<!-- end dresser1 -->
<div id="dresser2">
<div id="collapse2" style="display:none">
<div class="drawer2">
<div class="column">
<a href="http://muralmouth.files.wordpress.com/2013/08/anessentialcommodity3.jpg" target="blank" class="cell10">
</a>
<a href="ahc.html" target="blank" class="cell11">
</a>
<a href="https://muralmouth.wordpress.com/2016/01/12/graphic-design-for-oregon-environmental-justice/" target="blank" class="cell12">
</a>
</div>
<!-- end column -->
<div class="column">
<a href="https://muralmouth.wordpress.com/2016/04/08/40-second-elvis-movie/" target="blank" class="cell13">
</a>
<a href="lhap.html" target="blank" class="cell14">
</a>
<a href="http://thecrashedship.tumblr.com/" target="blank" class="cell15">
</a>
</div>
<!-- end column -->
<div class="column_b">
<a href="http://guardianstoryboard.wordpress.com/" target="blank" class="cell16">
</a>
<a href="lwgs.html" target="blank" class="cell17">
</a>
<a href="ifap.html" target="blank" class="cell18">
</a>
</div>
<!-- end column -->
</div>
<!-- end drawer2 -->
</div>
<!-- end collapse2 -->
<div class="heading">
<div class="anchor"><a name="illustration"></a></div>
<h2>illustration</h2>
<h2>storyboards</h2>
<h2>character design</h2>
<div class="knob knob2">
<span href="#collapse2" class="nav-toggle button">
EXPAND</span>
</div>
<!-- end knob -->
</div>
</div>
<div id="dresser3">
<div id="collapse3" style="display:none">
<div class="drawer2">
<div class="column">
<a href="http://www.flickr.com/photos/12839935@N05/with/7206237502" target="blank" class="cell19">
</a>
<a href="http://www.flickr.com/photos/12839935@N05/7206237502/in/photostream/" target="blank" class="cell20">
</a>
<a href="http://muralmouth.wordpress.com/2012/11/07/portlands-comedy-trumpeter-player-kirk-reeves/" target="blank" class="cell21">
</a>
</div>
<!-- end column -->
<div class="column">
<a href="http://muralmouth.files.wordpress.com/2013/04/monica_214.jpg" target="blank" class="cell22">
</a>
<a href="crccabout.html" target="blank" class="cell23">
</a>
<a href="http://www.flickr.com/photos/12839935@N05/7096708691/" target="blank" class="cell24">
</a>
</div>
<!-- end column -->
<div class="column_b">
<a href="http://muralmouth.wordpress.com/2012/09/18/costume-sale-at-oregon-childrens-theatre/" target="blank" class="cell25">
</a>
<a href="http://www.flickr.com/photos/12839935@N05/7132922783/" target="blank" class="cell26">
</a>
<a href="http://www.flickr.com/photos/12839935@N05/with/7206237502" target="blank" class="cell27">
</a>
</div>
<!-- end column -->
</div>
<!-- end drawer2 -->
</div>
<!-- end collapse3 -->
<div class="heading">
<div class="anchor"><a name="photography"></a></div>
<h2>portraits</h2>
<h2>event photography</h2>
<h2>retouching</h2>
<h2>compositing</h2>
<div class="knob knob3">
<span href="#collapse3" class="nav-toggle button">
EXPAND</span>
</div>
<!-- end knob -->
</div>
</div>
<div id="dresser4">
<div id="collapse4" style="display:none">
<div class="drawer1">
<div class="column_c">
<a href="crcc.html" target="blank" class="cell_b cell1">
Cedar Rapids Chess Club
</a>
<a href="https://vimeo.com/43348110" target="blank" class="cell_b cell2">
Hannah in the Park
</a>
<a href="https://vimeo.com/55214036" target="blank" class="cell_b cell3">
The Trifecta
</a>
</div>
<!-- end column -->
<div class="column_c">
<a href="https://vimeo.com/42809027" target="blank" class="cell_b cell4">
The Children's Center
</a>
<a href="https://vimeo.com/44155819" target="blank" class="cell_b cell5">
Eternal Return
</a>
<a href="https://vimeo.com/54666315" target="blank" class="cell_b cell6">
Fantasy Is My Breakfast
</a>
</div>
<!-- end column -->
<div class="column_c">
<a href="https://vimeo.com/39379631" target="blank" class="cell_b cell7">
PSU's Bike Hub
</a>
<a href="https://vimeo.com/46126713" target="blank" class="cell_b cell8">
Wild Things
</a>
<a href="https://vimeo.com/53980043" target="blank" class="cell_b cell9">
The Undead King
</a>
</div>
<!-- end column -->
</div>
<!-- end drawer1 -->
</div>
<!-- end collapse1 -->
<div class="heading">
<div class="anchor"><a name="video"></a></div>
<h2>video for the web</h2>
<h2>sound recording</h2>
<h2>director of photography</h2>
<h2>editing</h2>
<div class="knob knob4">
<span href="#collapse4" class="nav-toggle button">
EXPAND</span>
</div>
</div>
<!-- end knob -->
</div>
<div id="dresser5">
<div id="collapse5" style="display:none">
<div class="drawer3">
<div class="column_c">
<a href="http://beartrust.org/" target="blank" class="cell cell1">
Daily Posts for<br> Bear Trust International
</a>
<a href="http://portlandfilmfestival.com/" target="blank" class="cell cell2">
Additional Posts for<br> the Portland Film Festival
</a>
</div>
<!-- end column -->
<div class="column_c">
<a href="https://www.facebook.com/BearTrustInternational" target="blank" class="cell_b cell4">
BTI Facebook
</a>
<a href="https://www.facebook.com/PortlandFilmFestival" target="blank" class="cell_b cell5">
PDXXFF Facebook
</a>
</div>
<!-- end column -->
<div class="column_c">
<a href="https://twitter.com/BearTrust" target="blank" class="cell_b cell7">
BTI Twitter
</a>
<a href="https://twitter.com/portlandfilm" target="blank" class="cell_b cell8">
PDXXFF Twitter</a>
</div>
<!-- end column -->
</div>
<!-- end drawer1 -->
</div>
<!-- end collapse1 -->
<div class="heading">
<div class="anchor"><a name="socialMedia"></a></div>
<h2>social media strategy</h2>
<h2>training & management</h2>
<div class="knob knob5">
<span href="#collapse5" class="nav-toggle button">
EXPAND</span>
</div>
<!-- end knob -->
</div>
</div>
<div id="dresser6">
<div class="heading">
<div class="anchor"><a name="resume"></a></div>
<div class="knob knob6">
<span href="#collapse6" class="nav-tog but">
RÉSUMÉ</span>
</div>
<!-- end knob -->
</div>
<a href="index.html#" class="back-to-top">Top</a>
</div>
<div id="collapse6" style="display:none">
<div class="drawer_resume">
<h4>Professional social media, writing and graphic services</h4>
<h5>2014–2015</h5>
<div class="indent1">
<h6>Communications<br>
ProspectPDX</h6>
<h5>Portland, Oregon</h5>
<h5>www.prospectpdx.com</h5>
<h5>Responsibilities and accomplishments:</h5>
</div>
<!--end indent1-->
<div class="indent2">
<h5>Organize and promote events for the grand opening of The Parker Apartments</h5>
<h5>Develop relationships with video game companies and organize industry meeting</h5>
<h5>Network with growth industries in the Metro region and develop new clients</h5>
<h5>Organize and promote informational meeting about freeway caps</h5>
<h5>Earned media: KGW-TV story "Grassroots support for building I-405 Freeway Cap"</h5>
<h5>Research and write 20-page proposal to create a marketing plan for the City of Beaverton</h5>
</div>
<!--end indent2-->
<h5>2013–2014</h5>
<div class="indent1">
<h6>Social Media and Event Planning<br>
Portland Film Festival</h6>
<h5>Portland, Oregon</h5>
<h5>www.portlandfilmfestival.org</h5>
<h5>Responsibilities and accomplishments:</h5>
</div>
<!--end indent1-->
<div class="indent2">
<h5>Build community on Twitter and Facebook</h5>
<h5>Solicit and select stories for screenplay contest</h5>
<h5>Find authors and filmmakers to participate on workshop panels</h5>
<h5>Organize panel discussions and create promotional material for the events: Screenwriting and Independent Filmmaking; Science Fiction, Film and Technology; and Books to Film</h5>
</div>
<!--end indent2-->
<h5>2012–Present</h5>
<div class="indent1">
<h6>Social Media<br>
Bear Trust International</h6>
<h5>Missoula, Montana</h5>
<h5>www.beartrust.org</h5>
<h5>Responsibilities and accomplishments:</h5>
</div>
<!--end indent1-->
<div class="indent2">
<h5>Promote Bear Trust STEM education lessons</h5>
<h5>Connect with conservation groups and influencers</h5>
<h5>Respond to messages from the public about our mission</h5>
<h5>Increase organic Likes on Facebook around 130/month</h5>
<h5>Twitter followers increase about 80/month</h5>
<h5>Post daily to Twitter and Facebook</h5>
</div>
<!--end indent2-->
<h5>2012–2013</h5>
<div class="indent1">
<h6>World Pictures</h6>
<h5>Portland, Oregon</h5>
<h5>www.worldpictures.tv</h5>
<h5>Responsibilities and accomplishments:</h5>
</div>
<!--end indent1-->
<div class="indent2">
<h5>Produce a web series: “Cedar Rapids Chess Club”</h5>
<h5>Design the website</h5>
<h5>Cast actors and find a crew</h5>
<h5>Storyboards, script breakdown and shot list</h5>
<h5>Camera, direction, edit, and music</h5>
<h5>Photograph and create the movie poster</h5>
</div>
<!--end indent2-->
<h5>2012</h5>
<div class="indent1">
<h6>Independent Contracts</h6>
<h5>Portland, Oregon</h5>
<h5>Project title and responsibilities:</h5>
</div>
<!--end indent1-->
<div class="indent2">
<h5>“Athletes of Distinction”</h5>
<h5>Oregon Disability Sports</h5>
<h5>Create day-in-the-life footage of athletes</h5>
<h5>https://vimeo.com/52663114</h5> </div>
<div class="indent2">
<h5>“Drive Oregon: Investor Forum”</h5>
<h5>Create short to promote monthly event</h5>
<h5>https://vimeo.com/49634523</h5></div>
<div class="indent2">
<h5>“The Children’s Center”</h5>
<h5>Produce, camera, and edit</h5>
<h5>https://vimeo.com/42809027</h5></div>
<div class="indent2">
<h5>“PSU Bike Hub”</h5>
<h5>Produce, on-camera reporting, and edit</h5>
<h5>https://vimeo.com/39379631</h5></div>
<h5>2008–2010</h5>
<div class="indent1"><h6>Writer<br>
Freelance</h6>
<h5>Portland, Oregon</h5>
<h5>www.thedailycrosshatch.com</h5>
<h5>www.neighborhoodnotes.com</h5>
<h5>www.pdxpipeline.com</h5>
<h5>Responsibilities and accomplishments:</h5>
</div>
<!--end indent1-->
<div class="indent2">
<h5>Find subjects for articles</h5>
<h5>Interview people</h5>
<h5>Write compelling headlines and stories</h5>
</div>
<h5>2008</h5>
<div class="indent1"> <h6>Research Intern<br>
Oregon Environmental Council</h6>
<h5>Portland, Oregon</h5>
<h5>Responsibilities and accomplishments:</h5>
</div>
<!--end indent1-->
<div class="indent2">
<h5>Collect contact info for people who blog about issues we're working on</h5>
<h5>Gather information to complete personal profiles of Oregon State Legislature</h5>
<h5>Collect contact info for Portland-area toy stores</h5>
<h5>Collect and organize information on foundations for 2010 grants</h5>
<h5>Write blog posts to explain Earth Overshoot Day and high occupancy lanes</h5>
<h5>Draft letters asking members to support ban on toxic additives in plastics</h5>
<h5>Draft letters for members to send legislators asking for their support</h5>
</div>
<h5>2004</h5>
<div class="indent1"><h6>Artist<br>
Bent Image Lab</h6>
<h5>Portland, Oregon</h5>
<h5>www.bentimagelab.com</h5>
<h5>Responsibilities and accomplishments:</h5>
</div>
<!--end indent1-->
<div class="indent2">
<h5>Build and paint sets used in stop-motion animation</h5>
<h5>Two commercials for Twistables candy</h5>
<h5>Animated sketch for Saturday Night Live</h5>
<h5>Ad for Mrs. Foster's Home for Imaginary Friends</h5>
</div>
<h5>1997–Present</h5>
<div class="indent1"><h6>Illustrator<br>
Freelance</h6>
<h5>Portland, Oregon</h5>
<h5>www.arthursmid.com</h5>
<h5>Responsibilities and accomplishments:</h5>
</div>
<!--end indent1-->
<div class="indent2">
<h5>Create illustrations for reproduction in print and web-based media</h5>
<h5>Use traditional materials and current technology</h5>
<h5>Storyboard and production design: thecrashedship.tumblr.com</h5>
<h5>Write and illustrate picture books for children:</h5>
<h5>Little Wolverine Goes to Sleep</h5>
<h5>Let’s Have a Potluck</h5>
<h5>I Found a Pony</h5>
<h5>Adam Has a Cow</h5>
</div>
<div class="spacer"></div>
<span class="lead">EDUCATION</span>
<div class="indent1">
<h6>University of Oregon</h6>
<h5>Bachelor of Arts in Fine and Applied Art, 1996</h5>
<h5>Activities and accomplishments:</h5>
</div>
<div class="indent2">
<h5>Learn to paint and sculpt</h5>
<h5>Improve written communication</h5>
<h5>Study literature and world history</h5>
<h5>Create comic strip and editorial cartoons, The Oregon Daily Emerald, 1991-92</h5>
<h5>Illustrate historical figures and events for educational software, 1996</h5>
</div>
<div class="spacer"></div>
<span class="lead">COMPUTER SKILLS</span>
<div class="spacer"></div>
<h5>Adobe Creative Suite: Photoshop, Illustrator, InDesign</h5>
<h5>Basic HTML and CSS</h5>
<h5>Campaign Monitor: email marketing</h5>
<h5>Final Cut Pro 7 and X</h5>
<h5>Google Apps: Docs, Slides, Calendar</h5>
<h5>Wacom Tablet</h5>
<h5>WordPress</h5>
<div class="spacer2"></div>
<span class="lead">VIDEO EQUIPMENT</span>
<div class="spacer"></div>
<h5>Canon 60D and Zoom H4N</h5>
<h5>I’m also familiar with the Canon 5D and Panasonic AG-HMC150PJ.</h5>
<div class="spacer2"></div>
<span class="lead">LANGUAGES</span>
<div class="spacer"></div>
<h5>English Expert</h5>
<h5>Spanish Conversational</h5>
<div class="spacer2"></div>
<span class="lead">ACTIVITIES</span>
<div class="spacer"></div>
<h5>Tutor with Portland Impact (2006-2007); Teacher with Hot English Publishing (2008);</h5> <h5>Grantwriting for Super Project Lab (2009); Outreach coordinator for Research Club (2010);</h5> <h5>Copywriting for Ecotrust (2011); Portrait photography (2012); Writing, book design, and</h5>
<h5>cover illustration for science fiction novella: <i>Unlimited Congress</i> (2013–14); Writing and</h5>
<h5>book design: <i>What We Have In Common</i> (2013–2015)</h5>
<div class="spacer2"></div>
<div class="spacer2"></div>
<div class="spacer2"></div>
</div>
<!-- end drawer1 -->
</div>
<!-- end collapse1 -->
<div id="footer">
<p class="footer_text">Please contact me with information about your project and ask about my rates.
©2014 Arthur Smid. All Rights Reserved.</p>
</div>
<!-- end footer -->
</div>
<!--end content -->
</div>
<!-- end container -->
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script type="text/javascript" src="js/smoothscroll.js"></script>
</body>
</html>