-
Notifications
You must be signed in to change notification settings - Fork 0
/
training-careers.sql
2286 lines (2253 loc) · 187 KB
/
training-careers.sql
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
-- phpMyAdmin SQL Dump
-- version 4.0.9
-- http://www.phpmyadmin.net
--
-- Host: localhost
-- Generation Time: Jan 24, 2016 at 07:28 AM
-- Server version: 5.5.35-0ubuntu0.13.10.2
-- PHP Version: 5.5.3-1ubuntu2.6
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
--
-- Database: `careers`
--
-- --------------------------------------------------------
--
-- Table structure for table `career`
--
CREATE TABLE IF NOT EXISTS `career` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(255) NOT NULL,
`total_duration` float NOT NULL,
`status` tinyint(4) NOT NULL DEFAULT '1',
PRIMARY KEY (`id`),
UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=11 ;
--
-- Dumping data for table `career`
--
INSERT INTO `career` (`id`, `name`, `total_duration`, `status`) VALUES
(1, 'Marketing – Media', 0, 1),
(2, 'Sales Representative ', 0, 1),
(3, 'Service Desk Agent', 0, 1),
(4, 'Training Specialist ', 0, 1),
(5, 'Administrative Assistance ', 0, 1),
(6, 'Call Center Agent', 0, 1),
(7, 'Front Office ', 0, 1),
(8, 'HR Executive ', 0, 1),
(9, 'Executive Assistance', 0, 1),
(10, 'Customer Service Representative ', 0, 1);
-- --------------------------------------------------------
--
-- Table structure for table `career_outlines`
--
CREATE TABLE IF NOT EXISTS `career_outlines` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`career_id` int(11) NOT NULL,
`outline_id` int(11) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `id` (`id`),
UNIQUE KEY `career_id` (`career_id`,`outline_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `category`
--
CREATE TABLE IF NOT EXISTS `category` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`code` varchar(15) NOT NULL,
`name` varchar(255) NOT NULL,
`default` tinyint(4) NOT NULL DEFAULT '0',
`status` tinyint(4) NOT NULL DEFAULT '1',
PRIMARY KEY (`id`),
UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=10 ;
--
-- Dumping data for table `category`
--
INSERT INTO `category` (`id`, `code`, `name`, `default`, `status`) VALUES
(1, 'CD', 'Career Development', 0, 1),
(2, 'HR', 'Human Resources', 0, 1),
(3, 'IM', 'Internet Marketing', 0, 1),
(4, 'SM', 'Sales and Marketing', 0, 1),
(5, 'SBTFE', 'Small Business Training for Entrepreneurs', 0, 1),
(6, 'SVM', 'Supervisors and Managers', 0, 1),
(7, 'TTT', 'Train The Trainer', 0, 1),
(8, 'WE', 'Workplace Essentials', 0, 1),
(9, 'default', 'Default', 1, 1);
-- --------------------------------------------------------
--
-- Table structure for table `course`
--
CREATE TABLE IF NOT EXISTS `course` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`code` varchar(15) NOT NULL,
`name` varchar(255) NOT NULL,
`category_id` int(11) NOT NULL,
`status` tinyint(4) NOT NULL DEFAULT '1',
PRIMARY KEY (`id`),
UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=139 ;
--
-- Dumping data for table `course`
--
INSERT INTO `course` (`id`, `code`, `name`, `category_id`, `status`) VALUES
(1, 'AL', 'Active Listening', 1, 1),
(2, 'AWS', 'Advanced Writing Skills', 1, 1),
(3, 'BYSEAS', 'Building Your Self Esteem and Assertiveness Skills', 1, 1),
(4, 'BEGTEE', 'Business Etiquette - Gaining That Extra Edge', 1, 1),
(5, 'BWTW', 'Business Writing That Works', 1, 1),
(6, 'CS', 'Communication Strategies', 1, 1),
(7, 'CAIR', 'Conducting Accurate Internet Research', 1, 1),
(8, 'CRDWDP', 'Conflict Resolution - Dealing With Difficult People', 1, 1),
(9, 'CYFOSIP', 'Conquering Your Fear of Speaking in Public', 1, 1),
(10, 'CDJP', 'Creating a Dynamite Job Portfolio', 1, 1),
(11, 'CTI', 'Creative Thinking and Innovation', 1, 1),
(12, 'CT', 'Critical Thinking', 1, 1),
(13, 'CSTCECS', 'Customer Service Training - Critical Elements of Customer Service', 1, 1),
(14, 'DYEP', 'Developing Your Executive Presence', 1, 1),
(15, 'EI', 'Emotional Intelligence ', 1, 1),
(16, 'GSDPDBC', 'Getting Stuff Done - Personal Development Boot Camp', 1, 1),
(17, 'GYJSS', 'Getting Your Job Search Started', 1, 1),
(18, 'GS', 'Goal Setting', 1, 1),
(19, 'IP', 'Influence and Persuasion', 1, 1),
(20, 'INLP', 'Introduction to Neuro Linguistic Programming', 1, 1),
(21, 'MPMB', 'Managing Pressure and Maintaining Balance', 1, 1),
(22, 'MI', 'Mastering the Interview', 1, 1),
(23, 'NS', 'Networking for Success', 1, 1),
(24, 'NTRL', 'NLP Tools for Real Life', 1, 1),
(25, 'PBMPI', 'Personal Brand Maximizing Personal Impact', 1, 1),
(26, 'PSPSS', 'Public Speaking - Presentation Survival School', 1, 1),
(27, 'PSSUP', 'Public Speaking - Speaking Under Pressure', 1, 1),
(28, 'RS', 'Research Skills', 1, 1),
(29, 'SL', 'Self-Leadership', 1, 1),
(30, 'SAA', 'Skills for the Administrative Assistant', 1, 1),
(31, 'TMTW', 'The Minute Takers Workshop', 1, 1),
(32, 'TMGOPP', 'Time Management - Get Organized for Peak Performance', 1, 1),
(33, 'WSUTA', 'Working Smarter - Using Technology to your Advantage', 1, 1),
(34, 'WRP', 'Writing Reports and Proposals', 1, 1),
(35, 'ASNS', 'Accounting Skills for New Supervisors', 2, 1),
(36, 'AMUA', 'Anger Management - Understanding Anger', 2, 1),
(37, 'AI', 'Appreciative Inquiry', 2, 1),
(38, 'BBT', 'Building Better Teams', 2, 1),
(39, 'BSPDMSP', 'Business Succession Planning - Developing and Maintaining a Succession Plan', 2, 1),
(40, 'CMCHDWI', 'Change Management - Change and How to Deal With It', 2, 1),
(41, 'CEPR', 'Conducting Effective Performance Reviews', 2, 1),
(42, 'CRGAW', 'Conflict Resolution - Getting Along In The Workplace', 2, 1),
(43, 'CTNTMP', 'Creating a Top-Notch Talent Management Program', 2, 1),
(44, 'CSTMCS', 'Customer Service Training - Managing Customer Service', 2, 1),
(45, 'GGCGGW', 'Generation Gap - Closing the Generation Gap in the Workplace', 2, 1),
(46, 'HSBIT', 'Hiring for Success - Behavioral Interviewing Techniques', 2, 1),
(47, 'OERSOP', 'Onboarding ? The Essential Rules for a Successful Onboarding Program', 2, 1),
(48, 'OHGEOGS', 'Orientation Handbook - Getting Employees Off to a Good Start', 2, 1),
(49, 'PMMEP', 'Performance Management - Managing Employee Performance', 2, 1),
(50, 'PSDM', 'Problem Solving & Decision Making', 2, 1),
(51, 'PRBC', 'Public Relations Boot Camp', 2, 1),
(52, 'SM', 'Stress Management', 2, 1),
(53, 'BIM', 'Basic Internet Marketing', 3, 1),
(54, 'BBSM', 'Building a Brand on Social Media', 3, 1),
(55, 'CGAC', 'Creating a Google AdWords Campaign', 3, 1),
(56, 'IEM', 'Introduction to E-Mail Marketing', 3, 1),
(57, 'MSM', 'Marketing with Social Media', 3, 1),
(58, 'WW', 'Writing for the Web', 3, 1),
(59, 'BLRBLST', 'Body Language Reading Body Language as a Sales Tool', 4, 1),
(60, 'BCMCB', 'Branding Creating and Managing Your Corporate Brand', 4, 1),
(61, 'BRSS', 'Building Relationships for Success in Sales', 4, 1),
(62, 'CCTSCSTCCA', 'Call Center Training - Sales and Customer Service Training for Call Center Agents', 4, 1),
(63, 'CICRM', 'CRM - An Introduction to Customer Relationship Management', 4, 1),
(64, 'DSP', 'Dynamite Sales Presentations', 4, 1),
(65, 'OONS', 'Overcoming Objections to Nail the Sale', 4, 1),
(66, 'PLLP', 'Prospecting for Leads like a Pro', 4, 1),
(67, 'SS', 'Selling Smarter', 4, 1),
(68, 'TUTST', 'Telemarketing - Using the Telephone as a Sales Tool', 4, 1),
(69, 'BBMBCBO', 'Basic Business Management - Boot Camp for Business Owners', 5, 1),
(70, 'BCB', 'Building a Consulting Business', 5, 1),
(71, 'BOB', 'Building a Online Business', 5, 1),
(72, 'CSBO', 'Communications for Small Business Owners', 5, 1),
(73, 'ECM', 'E-Commerce Management', 5, 1),
(74, 'E101', 'Entrepreneurship 101', 5, 1),
(75, 'GBS', 'Global Business Strategies', 5, 1),
(76, 'I', 'Intrapreneurship', 5, 1),
(77, 'KBC', 'Kickstarting Your Business with Crowdsourcing', 5, 1),
(78, 'MSB', 'Marketing for Small Businesses', 5, 1),
(79, 'WBP', 'Writing a Business Plan', 5, 1),
(80, 'APM', 'Advanced Project Management', 6, 1),
(81, 'BMM', 'Budgets and Managing Money', 6, 1),
(82, 'BLBMM', 'Business Leadership - Becoming Management Material', 6, 1),
(83, 'CM', 'Coaching and Mentoring', 6, 1),
(84, 'CEM', 'Conference and Event Management', 6, 1),
(85, 'CL', 'Conversational Leadership', 6, 1),
(86, 'DADE', 'Delegation - The Art Of Delegating Effectively', 6, 1),
(87, 'EPS', 'Effective Planning and Scheduling', 6, 1),
(88, 'GEF', 'Giving Effective Feedback', 6, 1),
(89, 'HRTNHRM', 'Human Resources Training - HR for the Non-HR Manager', 6, 1),
(90, 'IPM', 'ntermediate Project Management', 6, 1),
(91, 'IMNB', 'Inventory Management - The Nuts and Bolts', 6, 1),
(92, 'LSSCCC', 'Leadership Skills for Supervisors - Communication, Coaching and Conflict', 6, 1),
(93, 'LSCM', 'Logistics and Supply Chain Management', 6, 1),
(94, 'MAC', 'Managing Across Cultures', 6, 1),
(95, 'MDC', 'Managing Difficult Conversations', 6, 1),
(96, 'MVW', 'Managing the Virtual Workplace', 6, 1),
(97, 'MS', 'Marketing and Sales', 6, 1),
(98, 'MMAMMW', 'Meeting Management - The Art of Making Meetings Work', 6, 1),
(99, 'MTMW', 'Motivation Training - Motivating Your Workforce', 6, 1),
(100, 'NR', 'Negotiating for Results', 6, 1),
(101, 'PMF', 'Project Management Fundamentals', 6, 1),
(102, 'PMTUPM', 'Project Management Training - Understanding Project Management', 6, 1),
(103, 'RM', 'Risk Management', 6, 1),
(104, 'TBDHPT', 'Team Building - Developing High Performance Teams', 6, 1),
(105, 'ASO', 'The ABCs of Supervising Others', 6, 1),
(106, 'PS', 'The Professional Supervisor', 6, 1),
(107, 'TTTEPH', 'Tough Topics Talking to Employees about Personal Hygiene', 6, 1),
(108, 'ASPT', 'Advanced Skills for the Practical Trainer', 7, 1),
(109, 'DTNA', 'Developing a Training Needs Analysis', 7, 1),
(110, 'DTP', 'Developing Your Training Program', 7, 1),
(111, 'FS', 'Facilitation Skills', 7, 1),
(112, 'MTS', 'Making Training Stick', 7, 1),
(113, 'MTR', 'Measuring Training Results', 7, 1),
(114, 'SSNT', 'Survival Skills for the New Trainer', 7, 1),
(115, 'PT', 'The Practical Trainer', 7, 1),
(116, 'TVS', 'Training with Visual Storytelling', 7, 1),
(117, 'UAMTF', 'Using Activities to Make Training Fun', 7, 1),
(118, 'BSB', 'Balanced Scorecard Basics', 8, 1),
(119, 'BW ', 'Bullying in the Workplace', 8, 1),
(120, 'BEO', 'Business Ethics for the Office', 8, 1),
(121, 'BPM', 'Business Process Management', 8, 1),
(122, 'CIL', 'Continuous Improvement with Lean', 8, 1),
(123, 'CM', 'Crisis Management', 8, 1),
(124, 'DAWPD', 'Disability Awareness - Working with People with Disabilities', 8, 1),
(125, 'DTCDW', 'Diversity Training - Celebrating Diversity in the Workplace', 8, 1),
(126, 'EA', 'Employee Accountability', 8, 1),
(127, 'ESSRB', 'Encouraging Sustainability and Social Responsibility in Business', 8, 1),
(128, 'HRO', 'High Reliability Organizations', 8, 1),
(129, 'KM', 'Knowledge Management', 8, 1),
(130, 'LPI', 'Lean Process Improvement', 8, 1),
(131, 'PIGA', 'Process Improvement with Gap Analysis', 8, 1),
(132, 'PPB', 'Purchasing and Procurement Basics', 8, 1),
(133, 'SW', 'Safety in the Workplace', 8, 1),
(134, 'SP', 'Strategic Planning', 8, 1),
(135, 'WEIPTE', 'Workplace Ergonomics Injury Prevention Through Ergonomics', 8, 1),
(136, 'WHWDA', 'Workplace Harassment - What It is and What to Do About It', 8, 1),
(137, 'WVHMAVW', 'Workplace Violence - How to Manage Anger and Violence in the Workplace', 8, 1),
(138, 'WW', 'Workplace Wellness', 8, 1);
-- --------------------------------------------------------
--
-- Table structure for table `outline`
--
CREATE TABLE IF NOT EXISTS `outline` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(255) NOT NULL,
`default_name` varchar(255) NOT NULL,
`duration` int(11) NOT NULL COMMENT 'in Minutes',
`default_duration` int(11) NOT NULL,
`course_id` int(11) NOT NULL,
`skill_id` int(11) NOT NULL DEFAULT '0',
`status` tinyint(4) NOT NULL DEFAULT '1',
PRIMARY KEY (`id`),
UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1971 ;
--
-- Dumping data for table `outline`
--
INSERT INTO `outline` (`id`, `name`, `default_name`, `duration`, `default_duration`, `course_id`, `skill_id`, `status`) VALUES
(1, 'Icebreaker: Three Wishes', 'Icebreaker: Three Wishes', 15, 15, 1, 0, 1),
(2, 'Session One: Course Overview', 'Session One: Course Overview', 15, 15, 1, 0, 1),
(3, 'Session Two: Defining Active Listening', 'Session Two: Defining Active Listening', 60, 60, 1, 0, 1),
(4, 'Session Three: Body Language Basics', 'Session Three: Body Language Basics', 15, 15, 1, 0, 1),
(5, 'Break', 'Break', 15, 15, 1, 0, 1),
(6, 'Session Four: Attitude is Everything!', 'Session Four: Attitude is Everything!', 15, 15, 1, 0, 1),
(7, 'Morning Wrap-Up', 'Morning Wrap-Up', 15, 15, 1, 0, 1),
(8, 'Lunch', 'Lunch', 60, 60, 1, 0, 1),
(9, 'Energizer: Photographic Memory', 'Energizer: Photographic Memory', 15, 15, 1, 0, 1),
(10, 'Session Five: Encouraging Conversation', 'Session Five: Encouraging Conversation', 105, 105, 1, 0, 1),
(11, 'Session Six: Building Relationships', 'Session Six: Building Relationships', 45, 45, 1, 0, 1),
(12, 'Session Seven: Getting Over Listening Roadblocks', 'Session Seven: Getting Over Listening Roadblocks', 30, 30, 1, 0, 1),
(13, 'Workshop Wrap-Up', 'Workshop Wrap-Up', 15, 15, 1, 0, 1),
(14, 'Icebreaker: Getting Write to Work', 'Icebreaker: Getting Write to Work', 15, 15, 2, 0, 1),
(15, 'Session One: Course Overview', 'Session One: Course Overview', 15, 15, 2, 0, 1),
(16, 'Session Two: The C′s of Writing', 'Session Two: The C′s of Writing', 75, 75, 2, 0, 1),
(17, 'Break', 'Break', 15, 15, 2, 0, 1),
(18, 'Session Three: Writing Mechanics', 'Session Three: Writing Mechanics', 15, 15, 2, 0, 1),
(19, 'Morning Wrap-Up', 'Morning Wrap-Up', 15, 15, 2, 0, 1),
(20, 'Lunch', 'Lunch', 60, 60, 2, 0, 1),
(21, 'Energizer: Encyclopedia Excitement', 'Energizer: Encyclopedia Excitement', 15, 15, 2, 0, 1),
(22, 'Session Four: Dealing with Specific Requests', 'Session Four: Dealing with Specific Requests', 75, 75, 2, 0, 1),
(23, 'Break', 'Break', 15, 15, 2, 0, 1),
(24, 'Session Five: Preparing Business Documents', 'Session Five: Preparing Business Documents', 60, 60, 2, 0, 1),
(25, 'Session Six: Editing Techniques', 'Session Six: Editing Techniques', 30, 30, 2, 0, 1),
(26, 'Workshop Wrap-Up', 'Workshop Wrap-Up', 15, 15, 2, 0, 1),
(27, 'Icebreaker: In and Out111', 'Icebreaker: In and Out', 150, 15, 3, 0, 1),
(28, 'Session One: Course Overview', 'Session One: Course Overview', 15, 15, 3, 0, 1),
(29, 'Session Two: What is Self-Esteem?', 'Session Two: What is Self-Esteem?', 45, 45, 3, 0, 1),
(30, 'Session Three: Improving Self-Esteem ', 'Session Three: Improving Self-Esteem ', 30, 30, 3, 0, 1),
(31, 'Break', 'Break', 15, 15, 3, 0, 1),
(32, 'Session Four: Building Self-Esteem', 'Session Four: Building Self-Esteem', 45, 45, 3, 0, 1),
(33, 'Session Five: Increasing our Self-Esteem', 'Session Five: Increasing our Self-Esteem', 30, 30, 3, 0, 1),
(34, 'Morning Wrap-Up', 'Morning Wrap-Up', 15, 15, 3, 0, 1),
(35, 'Lunch', 'Lunch', 60, 60, 3, 0, 1),
(36, 'Energizer: Count Me In! ', 'Energizer: Count Me In! ', 15, 15, 3, 0, 1),
(37, 'Session Six: Esteemed Confidence', 'Session Six: Esteemed Confidence', 30, 30, 3, 0, 1),
(38, 'Session Seven: The Power of Thought', 'Session Seven: The Power of Thought', 75, 75, 3, 0, 1),
(39, 'Session Eight: Ask for What You Want', 'Session Eight: Ask for What You Want', 45, 45, 3, 0, 1),
(40, 'Session Nine: Create What You Want', 'Session Nine: Create What You Want', 30, 30, 3, 0, 1),
(41, 'Workshop Wrap-Up', 'Workshop Wrap-Up', 15, 15, 3, 0, 1),
(42, 'Session One: Course Overview', 'Session One: Course Overview', 15, 15, 4, 0, 1),
(43, 'Session Two: Business Etiquette Basics', 'Session Two: Business Etiquette Basics', 15, 15, 4, 0, 1),
(44, 'Session Three: Test Your Business Etiquette', 'Session Three: Test Your Business Etiquette', 30, 30, 4, 0, 1),
(45, 'Session Four: The Handshake', 'Session Four: The Handshake', 30, 30, 4, 0, 1),
(46, 'Break', 'Break', 15, 15, 4, 0, 1),
(47, 'Session Five: Business Card Etiquette', 'Session Five: Business Card Etiquette', 15, 15, 4, 0, 1),
(48, 'Session Six: The Skill of Making Small Talk', 'Session Six: The Skill of Making Small Talk', 15, 15, 4, 0, 1),
(49, 'Session Seven: Do You Remember Names?', 'Session Seven: Do You Remember Names?', 30, 30, 4, 0, 1),
(50, 'Session Eight: Making That Great First Impression', 'Session Eight: Making That Great First Impression', 15, 15, 4, 0, 1),
(51, 'Morning Wrap-Up', 'Morning Wrap-Up', 15, 15, 4, 0, 1),
(52, 'Lunch', 'Lunch', 60, 60, 4, 0, 1),
(53, 'Energizer: Think Fast! ', 'Energizer: Think Fast! ', 15, 15, 4, 0, 1),
(54, 'Session Nine: Dress for Success', 'Session Nine: Dress for Success', 60, 60, 4, 0, 1),
(55, 'Break', 'Break', 15, 15, 4, 0, 1),
(56, 'Session Ten: Business Dining', 'Session Ten: Business Dining', 45, 45, 4, 0, 1),
(57, 'Session Eleven: E-Mail and Telephone Etiquette', 'Session Eleven: E-Mail and Telephone Etiquette', 60, 60, 4, 0, 1),
(58, 'Workshop Wrap-Up', 'Workshop Wrap-Up', 15, 15, 4, 0, 1),
(59, 'Icebreaker: At the Zoo', 'Icebreaker: At the Zoo', 15, 15, 5, 0, 1),
(60, 'Session One: Course Overview', 'Session One: Course Overview', 15, 15, 5, 0, 1),
(61, 'Session Two: Why Write? ', 'Session Two: Why Write? ', 15, 15, 5, 0, 1),
(62, 'Session Three: Be Clear', 'Session Three: Be Clear', 30, 30, 5, 0, 1),
(63, 'Session Four: Be Concise', 'Session Four: Be Concise', 60, 60, 5, 0, 1),
(64, 'Session Five: Be Complete', 'Session Five: Be Complete', 45, 45, 5, 0, 1),
(65, 'Session Six: Be Correct', 'Session Six: Be Correct', 15, 15, 5, 0, 1),
(66, 'Morning Wrap-Up', 'Morning Wrap-Up', 15, 15, 5, 0, 1),
(67, 'Lunch', 'Lunch', 60, 60, 5, 0, 1),
(68, 'Energizer: Brag It Up', 'Energizer: Brag It Up', 15, 15, 5, 0, 1),
(69, 'Session Seven: Word Agreement', 'Session Seven: Word Agreement', 30, 30, 5, 0, 1),
(70, 'Session Eight: Active and Passive Voice', 'Session Eight: Active and Passive Voice', 15, 15, 5, 0, 1),
(71, 'Session Nine: Sentences and Sentence Types', 'Session Nine: Sentences and Sentence Types', 45, 45, 5, 0, 1),
(72, 'Session Ten: Readability Index', 'Session Ten: Readability Index', 30, 30, 5, 0, 1),
(73, 'Session Eleven: Manners and Courtesy', 'Session Eleven: Manners and Courtesy', 30, 30, 5, 0, 1),
(74, 'Session Twelve: Practical Language', 'Session Twelve: Practical Language', 15, 15, 5, 0, 1),
(75, 'Session Thirteen: Inclusive Language', 'Session Thirteen: Inclusive Language', 15, 15, 5, 0, 1),
(76, 'Day One Wrap-Up', 'Day One Wrap-Up', 15, 15, 5, 0, 1),
(77, 'Session Two: Creating Positive Relationships', 'Session Two: Creating Positive Relationships', 15, 15, 6, 0, 1),
(78, 'Session Three: Growing Our Self-Awareness', 'Session Three: Growing Our Self-Awareness', 30, 30, 6, 0, 1),
(79, 'Session Four: Communication Basics', 'Session Four: Communication Basics', 45, 45, 6, 0, 1),
(80, 'Break', 'Break', 15, 15, 6, 0, 1),
(81, 'Session Five: Communication Barriers', 'Session Five: Communication Barriers', 75, 75, 6, 0, 1),
(82, 'Lunch', 'Lunch', 60, 60, 6, 0, 1),
(83, 'Energizer: Word Play', 'Energizer: Word Play', 15, 15, 6, 0, 1),
(84, 'Session Six: Asking Questions', 'Session Six: Asking Questions', 60, 60, 6, 0, 1),
(85, 'Break', 'Break', 15, 15, 6, 0, 1),
(86, 'Session Seven: Listening Skills', 'Session Seven: Listening Skills', 105, 105, 6, 0, 1),
(87, 'Day One Wrap-Up', 'Day One Wrap-Up', 15, 15, 6, 0, 1),
(88, 'Icebreaker: Defining Ourselves', 'Icebreaker: Defining Ourselves', 15, 15, 7, 0, 1),
(89, 'Session One: Course Overview', 'Session One: Course Overview', 15, 15, 7, 0, 1),
(90, 'Session Two: Creating a Search Plan', 'Session Two: Creating a Search Plan', 45, 45, 7, 0, 1),
(91, 'Session Three: Searching the Surface Web', 'Session Three: Searching the Surface Web', 120, 120, 7, 0, 1),
(92, 'Morning Wrap-Up', 'Morning Wrap-Up', 15, 15, 7, 0, 1),
(93, 'Lunch', 'Lunch', 60, 60, 7, 0, 1),
(94, 'Energizer: Talk This Way', 'Energizer: Talk This Way', 15, 15, 7, 0, 1),
(95, 'Session Four: Diving Into the Deep Web', 'Session Four: Diving Into the Deep Web', 45, 45, 7, 0, 1),
(96, 'Session Five: Searching for Multimedia', 'Session Five: Searching for Multimedia', 60, 60, 7, 0, 1),
(97, 'Session Six: Assessing Research Sites', 'Session Six: Assessing Research Sites', 45, 45, 7, 0, 1),
(98, 'Session Seven: Staying Organized with Research Tools', 'Session Seven: Staying Organized with Research Tools', 15, 15, 7, 0, 1),
(99, 'Session Eight: Citing Sources', 'Session Eight: Citing Sources', 15, 15, 7, 0, 1),
(100, 'Workshop Wrap-Up', 'Workshop Wrap-Up', 15, 15, 7, 0, 1),
(101, 'Session Two: Conflict as Communication', 'Session Two: Conflict as Communication', 30, 30, 8, 0, 1),
(102, 'Session Three: Benefits of Confrontation ', 'Session Three: Benefits of Confrontation ', 15, 15, 8, 0, 1),
(103, 'Session Four: Preventing Problems', 'Session Four: Preventing Problems', 60, 60, 8, 0, 1),
(104, 'Session Five: Getting Focused', 'Session Five: Getting Focused', 30, 30, 8, 0, 1),
(105, 'Session Six: Dealing with Anger', 'Session Six: Dealing with Anger', 30, 30, 8, 0, 1),
(106, 'Morning Wrap-Up', 'Morning Wrap-Up', 15, 15, 8, 0, 1),
(107, 'Lunch', 'Lunch', 60, 60, 8, 0, 1),
(108, 'Energizer: Tri-Dents', 'Energizer: Tri-Dents', 15, 15, 8, 0, 1),
(109, 'Session Seven: Dealing With Problems', 'Session Seven: Dealing With Problems', 45, 45, 8, 0, 1),
(110, 'Session Eight: The Three Step Conflict Resolution Model ', 'Session Eight: The Three Step Conflict Resolution Model ', 30, 30, 8, 0, 1),
(111, 'Break', 'Break', 15, 15, 8, 0, 1),
(112, 'Session Nine: Practice Makes Pretty Good', 'Session Nine: Practice Makes Pretty Good', 30, 30, 8, 0, 1),
(113, 'Session Ten: Changing Yourself ', 'Session Ten: Changing Yourself ', 30, 30, 8, 0, 1),
(114, 'Session Eleven: Why Don′t People Do What They Are Supposed To?', 'Session Eleven: Why Don′t People Do What They Are Supposed To?', 15, 15, 8, 0, 1),
(115, 'Session Twelve: De-Stress Options to Use When Things Get Ugly', 'Session Twelve: De-Stress Options to Use When Things Get Ugly', 15, 15, 8, 0, 1),
(116, 'Workshop Wrap-Up', 'Workshop Wrap-Up', 15, 15, 8, 0, 1),
(117, 'Icebreaker: Passing Introductions', 'Icebreaker: Passing Introductions', 15, 15, 9, 0, 1),
(118, 'Session One: Course Overview', 'Session One: Course Overview', 15, 15, 9, 0, 1),
(119, 'Session Two: Good Communication Skills', 'Session Two: Good Communication Skills', 45, 45, 9, 0, 1),
(120, 'Session Three: Interpersonal Skills', 'Session Three: Interpersonal Skills', 30, 30, 9, 0, 1),
(121, 'Break', 'Break', 15, 15, 9, 0, 1),
(122, 'Session Four: Getting Comfortable in Conversation', 'Session Four: Getting Comfortable in Conversation', 15, 15, 9, 0, 1),
(123, 'Morning Wrap-Up', 'Morning Wrap-Up', 15, 15, 9, 0, 1),
(124, 'Lunch', 'Lunch', 60, 60, 9, 0, 1),
(125, 'Energizer: The Limber Voice', 'Energizer: The Limber Voice', 15, 15, 9, 0, 1),
(126, 'Session Five: Practicing Dialogue', 'Session Five: Practicing Dialogue', 15, 15, 9, 0, 1),
(127, 'Session Six: Redesigning Yourself for Strength', 'Session Six: Redesigning Yourself for Strength', 15, 15, 9, 0, 1),
(128, 'Session Seven: Professionalism', 'Session Seven: Professionalism', 15, 15, 9, 0, 1),
(129, 'Break', 'Break', 15, 15, 9, 0, 1),
(130, 'Session Eight: Maximizing Meetings', 'Session Eight: Maximizing Meetings', 45, 45, 9, 0, 1),
(131, 'Session Nine: Sticky Situations', 'Session Nine: Sticky Situations', 30, 30, 9, 0, 1),
(132, 'Session Ten: Controlling Nervousness', 'Session Ten: Controlling Nervousness', 15, 15, 9, 0, 1),
(133, 'Session Eleven: Tell Me a Story', 'Session Eleven: Tell Me a Story', 30, 30, 9, 0, 1),
(134, 'Workshop Wrap-Up ', 'Workshop Wrap-Up ', 15, 15, 9, 0, 1),
(135, 'Icebreaker: Not So Random', 'Icebreaker: Not So Random', 15, 15, 10, 0, 1),
(136, 'Session One: Course Overview', 'Session One: Course Overview', 15, 15, 10, 0, 1),
(137, 'Session Two: Who Are You?', 'Session Two: Who Are You?', 30, 30, 10, 0, 1),
(138, 'Session Three: Writing the Resume', 'Session Three: Writing the Resume', 30, 30, 10, 0, 1),
(139, 'Break', 'Break', 15, 15, 10, 0, 1),
(140, 'Session Four: Creating a Noticeable Package', 'Session Four: Creating a Noticeable Package', 30, 30, 10, 0, 1),
(141, 'Session Five: Cover Letters', 'Session Five: Cover Letters', 30, 30, 10, 0, 1),
(142, 'Session Six: Getting into the Flow', 'Session Six: Getting into the Flow', 30, 30, 10, 0, 1),
(143, 'Morning Wrap-Up', 'Morning Wrap-Up', 15, 15, 10, 0, 1),
(144, 'Lunch', 'Lunch', 60, 60, 10, 0, 1),
(145, 'Energizer: Creative Compliments ', 'Energizer: Creative Compliments ', 15, 15, 10, 0, 1),
(146, 'Session Seven: The Portfolio', 'Session Seven: The Portfolio', 30, 30, 10, 0, 1),
(147, 'Session Eight: Refining and Perfecting', 'Session Eight: Refining and Perfecting', 30, 30, 10, 0, 1),
(148, 'Break', 'Break', 15, 15, 10, 0, 1),
(149, 'Session Nine: Dealing with Awkward Points', 'Session Nine: Dealing with Awkward Points', 30, 30, 10, 0, 1),
(150, 'Session Ten: Getting to a New Job in 60 Days', 'Session Ten: Getting to a New Job in 60 Days', 30, 30, 10, 0, 1),
(151, 'Session Eleven: 17', 'Session Eleven: 17', 30, 30, 10, 0, 1),
(152, 'Session Twelve: Thank You Notes', 'Session Twelve: Thank You Notes', 15, 15, 10, 0, 1),
(153, 'Workshop Wrap-Up', 'Workshop Wrap-Up', 15, 15, 10, 0, 1),
(154, 'Icebreaker: Think Beyond the Square', 'Icebreaker: Think Beyond the Square', 15, 15, 11, 0, 1),
(155, 'Session One: Course Overview', 'Session One: Course Overview', 15, 15, 11, 0, 1),
(156, 'Session Two: What is Creativity and Innovation? ', 'Session Two: What is Creativity and Innovation? ', 30, 30, 11, 0, 1),
(157, 'Session Three: Individual Creativity', 'Session Three: Individual Creativity', 30, 30, 11, 0, 1),
(158, 'Session Four: Get Creative', 'Session Four: Get Creative', 15, 15, 11, 0, 1),
(159, 'Break', 'Break', 15, 15, 11, 0, 1),
(160, 'Session Five: Developing the Right Environment for Creativity', 'Session Five: Developing the Right Environment for Creativity', 30, 30, 11, 0, 1),
(161, 'Session Six: Creativity and Innovation in Business', 'Session Six: Creativity and Innovation in Business', 45, 45, 11, 0, 1),
(162, 'Morning Wrap-Up', 'Morning Wrap-Up', 15, 15, 11, 0, 1),
(163, 'Lunch', 'Lunch', 60, 60, 11, 0, 1),
(164, 'Energizer: Line Up', 'Energizer: Line Up', 15, 15, 11, 0, 1),
(165, 'Session Seven: Where Does Creativity Fit into the Problem Solving Process?', 'Session Seven: Where Does Creativity Fit into the Problem Solving Process?', 75, 75, 11, 0, 1),
(166, 'Break', 'Break', 15, 15, 11, 0, 1),
(167, 'Session Eight: Defining the Problem', 'Session Eight: Defining the Problem', 90, 90, 11, 0, 1),
(168, 'Day One Wrap-Up', 'Day One Wrap-Up', 15, 15, 11, 0, 1),
(169, 'Icebreaker: Creating Norms', 'Icebreaker: Creating Norms', 15, 15, 12, 0, 1),
(170, 'Session One: Course Overview', 'Session One: Course Overview', 15, 15, 12, 0, 1),
(171, 'Session Two: Understanding 11', 'Session Two: Understanding 11', 90, 90, 12, 0, 1),
(172, 'Session Three: Where Do Other Types of Thinking Fit In?', 'Session Three: Where Do Other Types of Thinking Fit In?', 30, 30, 12, 0, 1),
(173, 'Session Four: Pitfalls to Reasoned Decision Making', 'Session Four: Pitfalls to Reasoned Decision Making', 45, 45, 12, 0, 1),
(174, 'Morning Wrap-Up', 'Morning Wrap-Up', 15, 15, 12, 0, 1),
(175, 'Lunch', 'Lunch', 60, 60, 12, 0, 1),
(176, 'Energizer: Puzzle Paradise', 'Energizer: Puzzle Paradise', 15, 15, 12, 0, 1),
(177, 'Session Five: The 11 Process', 'Session Five: The 11 Process', 180, 180, 12, 0, 1),
(178, 'Day One Wrap-Up', 'Day One Wrap-Up', 15, 15, 12, 0, 1),
(179, 'Icebreaker: Spinning a Tale', 'Icebreaker: Spinning a Tale', 15, 15, 13, 0, 1),
(180, 'Session One: Course Overview', 'Session One: Course Overview', 15, 15, 13, 0, 1),
(181, 'Session Two: What is Customer Service?', 'Session Two: What is Customer Service?', 45, 45, 13, 0, 1),
(182, 'Session Three: Who Are Your Customers? ', 'Session Three: Who Are Your Customers? ', 15, 15, 13, 0, 1),
(183, 'Session Four: Meeting Expectations', 'Session Four: Meeting Expectations', 15, 15, 13, 0, 1),
(184, 'Break', 'Break', 15, 15, 13, 0, 1),
(185, 'Session Five: Pre-Assignment Review', 'Session Five: Pre-Assignment Review', 15, 15, 13, 0, 1),
(186, 'Session Six: Setting Goals', 'Session Six: Setting Goals', 75, 75, 13, 0, 1),
(187, 'Lunch', 'Lunch', 60, 60, 13, 0, 1),
(188, 'Energizer: Our Customers', 'Energizer: Our Customers', 15, 15, 13, 0, 1),
(189, 'Session Seven: The Second Critical Element – Defined in Your Organization', 'Session Seven: The Second Critical Element – Defined in Your Organization', 30, 30, 13, 0, 1),
(190, 'Session Eight: The Third Critical Element – Given Life by the Employees', 'Session Eight: The Third Critical Element – Given Life by the Employees', 30, 30, 13, 0, 1),
(191, 'Break', 'Break', 15, 15, 13, 0, 1),
(192, 'Session Nine: Communication Skills', 'Session Nine: Communication Skills', 45, 45, 13, 0, 1),
(193, 'Session Ten: Telephone Techniques', 'Session Ten: Telephone Techniques', 30, 30, 13, 0, 1),
(194, 'Session Eleven: Dealing With Difficult Customers', 'Session Eleven: Dealing With Difficult Customers', 30, 30, 13, 0, 1),
(195, 'Day One Wrap-Up', 'Day One Wrap-Up', 15, 15, 13, 0, 1),
(196, 'Icebreaker: In Flight ', 'Icebreaker: In Flight ', 15, 15, 14, 0, 1),
(197, 'Session One: Course Overview', 'Session One: Course Overview', 15, 15, 14, 0, 1),
(198, 'Session Two: Managing Your First Impression', 'Session Two: Managing Your First Impression', 90, 90, 14, 0, 1),
(199, 'Session Three: Interpersonal Communication Skills', 'Session Three: Interpersonal Communication Skills', 15, 15, 14, 0, 1),
(200, 'Morning Wrap-Up', 'Morning Wrap-Up', 15, 15, 14, 0, 1),
(201, 'Lunch', 'Lunch', 60, 60, 14, 0, 1),
(202, 'Energizer: Where Do You Fit?', 'Energizer: Where Do You Fit?', 15, 15, 14, 0, 1),
(203, 'Session Four: Speaking with Impact', 'Session Four: Speaking with Impact', 60, 60, 14, 0, 1),
(204, 'Session Five: Maintaining Your Impression', 'Session Five: Maintaining Your Impression', 60, 60, 14, 0, 1),
(205, 'Session Six: Three Leadership Skills to Start Mastering Right Now', 'Session Six: Three Leadership Skills to Start Mastering Right Now', 30, 30, 14, 0, 1),
(206, 'Session Seven: Pre-Assignment Review', 'Session Seven: Pre-Assignment Review', 30, 30, 14, 0, 1),
(207, 'Workshop Wrap-Up', 'Workshop Wrap-Up', 15, 15, 14, 0, 1),
(208, '', '', 0, 0, 0, 0, 1),
(209, 'Icebreaker: Passing Introductions', 'Icebreaker: Passing Introductions', 15, 15, 15, 0, 1),
(210, 'Session One: Course Overview', 'Session One: Course Overview', 15, 15, 15, 0, 1),
(211, 'Session Two: History of Emotional Intelligence', 'Session Two: History of Emotional Intelligence', 30, 30, 15, 0, 1),
(212, 'Session Three: 14Defined', 'Session Three: 14Defined', 30, 30, 15, 0, 1),
(213, 'Session Four: EI Blueprint', 'Session Four: EI Blueprint', 15, 15, 15, 0, 1),
(214, 'Break', 'Break', 15, 15, 15, 0, 1),
(215, 'Session Five: Optimism', 'Session Five: Optimism', 60, 60, 15, 0, 1),
(216, 'Session Six: Validating Emotions in Others', 'Session Six: Validating Emotions in Others', 15, 15, 15, 0, 1),
(217, 'Morning Wrap-Up', 'Morning Wrap-Up', 15, 15, 15, 0, 1),
(218, 'Lunch', 'Lunch', 60, 60, 15, 0, 1),
(219, 'Energizer: We′re People People', 'Energizer: We′re People People', 15, 15, 15, 0, 1),
(220, 'Session Seven: Understanding Emotions', 'Session Seven: Understanding Emotions', 90, 90, 15, 0, 1),
(221, 'Session Eight: Setting Your Personal Vision', 'Session Eight: Setting Your Personal Vision', 90, 90, 15, 0, 1),
(222, 'Workshop Wrap-Up', 'Workshop Wrap-Up', 15, 15, 15, 0, 1),
(223, 'Icebreaker: Away From the Target!', 'Icebreaker: Away From the Target!', 15, 15, 16, 0, 1),
(224, 'Session One: Course Overview', 'Session One: Course Overview', 15, 15, 16, 0, 1),
(225, 'Session Two: Understanding Personal Efficiency', 'Session Two: Understanding Personal Efficiency', 15, 15, 16, 0, 1),
(226, 'Session Three: Developing the Right Attitude', 'Session Three: Developing the Right Attitude', 45, 45, 16, 0, 1),
(227, 'Break', 'Break', 15, 15, 16, 0, 1),
(228, 'Session Four: Laying the Foundation', 'Session Four: Laying the Foundation', 90, 90, 16, 0, 1),
(229, 'Morning Wrap-Up', 'Morning Wrap-Up', 15, 15, 16, 0, 1),
(230, 'Lunch', 'Lunch', 60, 60, 16, 0, 1),
(231, 'Energizer: Kaboom!', 'Energizer: Kaboom!', 15, 15, 16, 0, 1),
(232, 'Session Five: The Building Blocks of a Good Organizational System', 'Session Five: The Building Blocks of a Good Organizational System', 30, 30, 16, 0, 1),
(233, 'Session Six: Creating the Right Environment', 'Session Six: Creating the Right Environment', 120, 120, 16, 0, 1),
(234, 'Session Seven: Setting up your Virtual Environment', 'Session Seven: Setting up your Virtual Environment', 45, 45, 16, 0, 1),
(235, 'Day One Wrap-Up', 'Day One Wrap-Up', 15, 15, 16, 0, 1),
(236, 'Icebreaker: Animal Nature', 'Icebreaker: Animal Nature', 15, 15, 17, 0, 1),
(237, 'Session One: Course Overview', 'Session One: Course Overview', 15, 15, 17, 0, 1),
(238, 'Session Two: Change and Transitions ', 'Session Two: Change and Transitions ', 30, 30, 17, 0, 1),
(239, 'Session Three: The Important Stuff', 'Session Three: The Important Stuff', 30, 30, 17, 0, 1),
(240, 'Break', 'Break', 15, 15, 17, 0, 1),
(241, 'Session Four: Skill and Ability', 'Session Four: Skill and Ability', 30, 30, 17, 0, 1),
(242, 'Session Five: Vocation and Strategy', 'Session Five: Vocation and Strategy', 30, 30, 17, 0, 1),
(243, 'Session Six: Resources', 'Session Six: Resources', 30, 30, 17, 0, 1),
(244, 'Morning Wrap-Up', 'Morning Wrap-Up', 15, 15, 17, 0, 1),
(245, 'Lunch', 'Lunch', 60, 60, 17, 0, 1),
(246, 'Energizer: Best and Worst', 'Energizer: Best and Worst', 15, 15, 17, 0, 1),
(247, 'Session Seven: The Job Market', 'Session Seven: The Job Market', 30, 30, 17, 0, 1),
(248, 'Session Eight: Invite Your Network', 'Session Eight: Invite Your Network', 30, 30, 17, 0, 1),
(249, 'Break ', 'Break ', 15, 15, 17, 0, 1),
(250, 'Session Nine: Ready¸ Set¸ Goal!', 'Session Nine: Ready¸ Set¸ Goal!', 60, 60, 17, 0, 1),
(251, 'Session Ten: Thinking Unconventionally to Get What You Want', 'Session Ten: Thinking Unconventionally to Get What You Want', 30, 30, 17, 0, 1),
(252, 'Session Eleven: Getting Things Moving', 'Session Eleven: Getting Things Moving', 15, 15, 17, 0, 1),
(253, 'Workshop Wrap-Up', 'Workshop Wrap-Up', 15, 15, 17, 0, 1),
(254, 'Icebreaker: Mixed Bag', 'Icebreaker: Mixed Bag', 15, 15, 18, 0, 1),
(255, 'Session One: Course Overview', 'Session One: Course Overview', 15, 15, 18, 0, 1),
(256, 'Session Two: Pre-Assignment Review', 'Session Two: Pre-Assignment Review', 15, 15, 18, 0, 1),
(257, 'Session Three: Self-Understanding ', 'Session Three: Self-Understanding ', 30, 30, 18, 0, 1),
(258, 'Session Four: Laying the Foundation', 'Session Four: Laying the Foundation', 75, 75, 18, 0, 1),
(259, 'Session Five: What′s In Your Bucket?', 'Session Five: What′s In Your Bucket?', 60, 60, 18, 0, 1),
(260, 'Lunch', 'Lunch', 60, 60, 18, 0, 1),
(261, 'Energizer: Stress Busters!', 'Energizer: Stress Busters!', 15, 15, 18, 0, 1),
(262, 'Session Six: Getting Down to Business', 'Session Six: Getting Down to Business', 75, 75, 18, 0, 1),
(263, 'Break', 'Break', 15, 15, 18, 0, 1),
(264, 'Session Seven: Getting Started Today', 'Session Seven: Getting Started Today', 60, 60, 18, 0, 1),
(265, 'Session Eight: Dealing with Setbacks', 'Session Eight: Dealing with Setbacks', 30, 30, 18, 0, 1),
(266, 'Workshop Wrap-Up', 'Workshop Wrap-Up', 15, 15, 18, 0, 1),
(267, 'Icebreaker: Racing to the Start!', 'Icebreaker: Racing to the Start!', 15, 15, 19, 0, 1),
(268, 'Session One: Course Overview', 'Session One: Course Overview', 15, 15, 19, 0, 1),
(269, 'Session Two: Understanding Persuasion', 'Session Two: Understanding Persuasion', 45, 45, 19, 0, 1),
(270, 'Session Three: Preparing to Persuade', 'Session Three: Preparing to Persuade', 60, 60, 19, 0, 1),
(271, 'Session Four: Getting Off on the Right Foot', 'Session Four: Getting Off on the Right Foot', 60, 60, 19, 0, 1),
(272, 'Morning Wrap-Up', 'Morning Wrap-Up', 15, 15, 19, 0, 1),
(273, 'Lunch', 'Lunch', 60, 60, 19, 0, 1),
(274, 'Energizer: Making it Live!', 'Energizer: Making it Live!', 15, 15, 19, 0, 1),
(275, 'Session Five: Presentation Strategies', 'Session Five: Presentation Strategies', 45, 45, 19, 0, 1),
(276, 'Break', 'Break', 15, 15, 19, 0, 1),
(277, 'Session Six: Using Stories to Persuade', 'Session Six: Using Stories to Persuade', 45, 45, 19, 0, 1),
(278, 'Session Seven: Using Neuro Linguistic Programming ', 'Session Seven: Using Neuro Linguistic Programming ', 75, 75, 19, 0, 1),
(279, 'Workshop Wrap-Up', 'Workshop Wrap-Up', 15, 15, 19, 0, 1),
(280, 'Icebreaker: Meet & Greet', 'Icebreaker: Meet & Greet', 15, 15, 20, 0, 1),
(281, 'Session One: Course Overview', 'Session One: Course Overview', 15, 15, 20, 0, 1),
(282, 'Session Two: What is Neuro Linguistic Programming?', 'Session Two: What is Neuro Linguistic Programming?', 45, 45, 20, 0, 1),
(283, 'Session Three: The NLP Presuppositions', 'Session Three: The NLP Presuppositions', 60, 60, 20, 0, 1),
(284, 'Session Four: The Senses According to NLP', 'Session Four: The Senses According to NLP', 60, 60, 20, 0, 1),
(285, 'Morning Wrap-Up', 'Morning Wrap-Up', 15, 15, 20, 0, 1),
(286, 'Lunch', 'Lunch', 60, 60, 20, 0, 1),
(287, 'Energizer: Bunkum Bosh', 'Energizer: Bunkum Bosh', 15, 15, 20, 0, 1),
(288, 'Session Five: Using Enriched Language', 'Session Five: Using Enriched Language', 15, 15, 20, 0, 1),
(289, 'Session Six: Interpreting Body Language', 'Session Six: Interpreting Body Language', 45, 45, 20, 0, 1),
(290, 'Break', 'Break', 15, 15, 20, 0, 1),
(291, 'Session Seven: Asking Clean Questions', 'Session Seven: Asking Clean Questions', 30, 30, 20, 0, 1),
(292, 'Session Eight: The Power of Hypnotic Language', 'Session Eight: The Power of Hypnotic Language', 30, 30, 20, 0, 1),
(293, 'Session Nine: Putting it All Together', 'Session Nine: Putting it All Together', 45, 45, 20, 0, 1),
(294, 'Workshop Wrap-Up', 'Workshop Wrap-Up', 15, 15, 20, 0, 1),
(295, 'Icebreaker: Come on Over! ', 'Icebreaker: Come on Over! ', 15, 15, 21, 0, 1),
(296, 'Session One: Course Overview', 'Session One: Course Overview', 15, 15, 21, 0, 1),
(297, 'Session Two: Under Pressure! ', 'Session Two: Under Pressure! ', 60, 60, 21, 0, 1),
(298, 'Break', 'Break', 15, 15, 21, 0, 1),
(299, 'Session Three: Getting to the Heart of the Matter', 'Session Three: Getting to the Heart of the Matter', 90, 90, 21, 0, 1),
(300, 'Morning Wrap-Up', 'Morning Wrap-Up', 15, 15, 21, 0, 1),
(301, 'Lunch', 'Lunch', 60, 60, 21, 0, 1),
(302, 'Energizer: Characterizations', 'Energizer: Characterizations', 15, 15, 21, 0, 1),
(303, 'Session Four: Emotional Intelligence', 'Session Four: Emotional Intelligence', 90, 90, 21, 0, 1),
(304, 'Session Five: Coping Toolkit', 'Session Five: Coping Toolkit', 60, 60, 21, 0, 1),
(305, 'Session Six: Getting Organized', 'Session Six: Getting Organized', 30, 30, 21, 0, 1),
(306, 'Workshop Wrap-Up', 'Workshop Wrap-Up', 15, 15, 21, 0, 1),
(307, 'Icebreaker: Monkey Business', 'Icebreaker: Monkey Business', 15, 15, 22, 0, 1),
(308, 'Session One: Course Overview', 'Session One: Course Overview', 15, 15, 22, 0, 1),
(309, 'Session Two: Understanding the Interview', 'Session Two: Understanding the Interview', 30, 30, 22, 0, 1),
(310, 'Session Three: Types of Questions', 'Session Three: Types of Questions', 30, 30, 22, 0, 1),
(311, 'Break', 'Break', 15, 15, 22, 0, 1),
(312, 'Session Four: Getting Ready', 'Session Four: Getting Ready', 30, 30, 22, 0, 1),
(313, 'Session Five: Live and In Person', 'Session Five: Live and In Person', 45, 45, 22, 0, 1),
(314, 'Session Six: Unwinding for the Interview', 'Session Six: Unwinding for the Interview', 15, 15, 22, 0, 1),
(315, 'Morning Wrap-Up', 'Morning Wrap-Up', 15, 15, 22, 0, 1),
(316, 'Lunch', 'Lunch', 60, 60, 22, 0, 1),
(317, 'Energizer: Word Jazz', 'Energizer: Word Jazz', 15, 15, 22, 0, 1),
(318, 'Session Seven: Common Problems and Solutions', 'Session Seven: Common Problems and Solutions', 30, 30, 22, 0, 1),
(319, 'Session Eight: Phase Two', 'Session Eight: Phase Two', 30, 30, 22, 0, 1),
(320, 'Break', 'Break', 15, 15, 22, 0, 1),
(321, 'Session Nine: Practice Makes Perfect', 'Session Nine: Practice Makes Perfect', 45, 45, 22, 0, 1),
(322, 'Session Ten: Sealing the Deal', 'Session Ten: Sealing the Deal', 30, 30, 22, 0, 1),
(323, 'Session Eleven: Getting What You′re Worth', 'Session Eleven: Getting What You′re Worth', 30, 30, 22, 0, 1),
(324, 'Workshop Wrap-Up', 'Workshop Wrap-Up', 15, 15, 22, 0, 1),
(325, 'Icebreaker: Glad to Meet You', 'Icebreaker: Glad to Meet You', 15, 15, 23, 0, 1),
(326, 'Session One: Course Overview', 'Session One: Course Overview', 15, 15, 23, 0, 1),
(327, 'Session Two: Assessing Your Networking Skills ', 'Session Two: Assessing Your Networking Skills ', 45, 45, 23, 0, 1),
(328, 'Session Three: Identifying Opportunities and Customizing Your Approach', 'Session Three: Identifying Opportunities and Customizing Your Approach', 30, 30, 23, 0, 1),
(329, 'Break', 'Break', 15, 15, 23, 0, 1),
(330, 'Session Four: Creating a Positive First Impression', 'Session Four: Creating a Positive First Impression', 15, 15, 23, 0, 1),
(331, 'Morning Wrap-Up', 'Morning Wrap-Up', 15, 15, 23, 0, 1),
(332, 'Lunch', 'Lunch', 60, 60, 23, 0, 1),
(333, 'Energizer: Shopping Bags', 'Energizer: Shopping Bags', 15, 15, 23, 0, 1),
(334, 'Session Five: Your Memorable Intro', 'Session Five: Your Memorable Intro', 90, 90, 23, 0, 1),
(335, 'Session Six: Starting the Conversation', 'Session Six: Starting the Conversation', 90, 90, 23, 0, 1),
(336, 'Day One Wrap-Up', 'Day One Wrap-Up', 15, 15, 23, 0, 1),
(337, 'Icebreaker: Stars and Shapes', 'Icebreaker: Stars and Shapes', 15, 15, 24, 0, 1),
(338, 'Session One: Course Overview', 'Session One: Course Overview', 15, 15, 24, 0, 1),
(339, 'Session Two: Developing Rapport', 'Session Two: Developing Rapport', 45, 45, 24, 0, 1),
(340, 'Session Three: Getting in Tune with Yourself', 'Session Three: Getting in Tune with Yourself', 60, 60, 24, 0, 1),
(341, 'Morning Wrap-Up', 'Morning Wrap-Up', 15, 15, 24, 0, 1),
(342, 'Lunch', 'Lunch', 60, 60, 24, 0, 1),
(343, 'Energizer: Mixed Messages', 'Energizer: Mixed Messages', 15, 15, 24, 0, 1),
(344, 'Session Four: Creating Comprehensive Outcomes', 'Session Four: Creating Comprehensive Outcomes', 30, 30, 24, 0, 1),
(345, 'Session Five: Creating a Desired State', 'Session Five: Creating a Desired State', 120, 120, 24, 0, 1),
(346, 'Session Six: Chunking Information', 'Session Six: Chunking Information', 45, 45, 24, 0, 1),
(347, 'Workshop Wrap-Up', 'Workshop Wrap-Up', 15, 15, 24, 0, 1),
(348, 'Icebreaker: Making Meaning', 'Icebreaker: Making Meaning', 15, 15, 25, 0, 1),
(349, 'Session One: Course Overview', 'Session One: Course Overview', 15, 15, 25, 0, 1),
(350, 'Session Two: Importance of a Personal Brand ', 'Session Two: Importance of a Personal Brand ', 60, 60, 25, 0, 1),
(351, 'Break', 'Break', 15, 15, 25, 0, 1),
(352, 'Session Three: Your Brand Approach to Others', 'Session Three: Your Brand Approach to Others', 45, 45, 25, 0, 1),
(353, 'Session Four: Looking at the Outside ', 'Session Four: Looking at the Outside ', 45, 45, 25, 0, 1),
(354, 'Morning Wrap-Up', 'Morning Wrap-Up', 15, 15, 25, 0, 1),
(355, 'Lunch', 'Lunch', 60, 60, 25, 0, 1),
(356, 'Energizer: Carrying On', 'Energizer: Carrying On', 15, 15, 25, 0, 1),
(357, 'Session Five: Looking at the Inside', 'Session Five: Looking at the Inside', 60, 60, 25, 0, 1),
(358, 'Break', 'Break', 15, 15, 25, 0, 1),
(359, 'Session Six: Setting Goals', 'Session Six: Setting Goals', 75, 75, 25, 0, 1),
(360, 'Session Seven: 22', 'Session Seven: 22', 30, 30, 25, 0, 1),
(361, 'Day One Wrap-Up', 'Day One Wrap-Up', 15, 15, 25, 0, 1),
(362, 'Icebreaker: Interesting Introductions', 'Icebreaker: Interesting Introductions', 15, 15, 26, 0, 1),
(363, 'Session One: Course Overview', 'Session One: Course Overview', 15, 15, 26, 0, 1),
(364, 'Session Two: Communication', 'Session Two: Communication', 15, 15, 26, 0, 1),
(365, 'Session Three: Stop! Check Your Mouth! ', 'Session Three: Stop! Check Your Mouth! ', 30, 30, 26, 0, 1),
(366, 'Session Four: What’s Your Type? How About Mine? ', 'Session Four: What’s Your Type? How About Mine? ', 75, 75, 26, 0, 1),
(367, 'Session Five: Positive Self-Talk ', 'Session Five: Positive Self-Talk ', 30, 30, 26, 0, 1),
(368, 'Session Six: Rapport', 'Session Six: Rapport', 15, 15, 26, 0, 1),
(369, 'Morning Wrap-Up', 'Morning Wrap-Up', 15, 15, 26, 0, 1),
(370, 'Lunch', 'Lunch', 60, 60, 26, 0, 1),
(371, 'Energizer: Brag It Up', 'Energizer: Brag It Up', 15, 15, 26, 0, 1),
(372, 'Session Seven: Maximizing Meetings', 'Session Seven: Maximizing Meetings', 60, 60, 26, 0, 1),
(373, 'Break', 'Break', 15, 15, 26, 0, 1),
(374, 'Session Eight: Body Language', 'Session Eight: Body Language', 15, 15, 26, 0, 1),
(375, 'Session Nine: Sticky Situations', 'Session Nine: Sticky Situations', 15, 15, 26, 0, 1),
(376, 'Session Ten: I Can Just Send an E-mail¸Right?', 'Session Ten: I Can Just Send an E-mail¸Right?', 45, 45, 26, 0, 1),
(377, 'Session Eleven: Overcoming Nervousness', 'Session Eleven: Overcoming Nervousness', 30, 30, 26, 0, 1),
(378, 'Day One Wrap-Up', 'Day One Wrap-Up', 15, 15, 26, 0, 1),
(379, 'Icebreaker: Hot Potato', 'Icebreaker: Hot Potato', 15, 15, 27, 0, 1),
(380, 'Session One: Course Overview', 'Session One: Course Overview', 15, 15, 27, 0, 1),
(381, 'Session Two: Getting Started ', 'Session Two: Getting Started ', 45, 45, 27, 0, 1),
(382, 'Session Three: Planning', 'Session Three: Planning', 75, 75, 27, 0, 1),
(383, 'Session Four: Force Field Analysis', 'Session Four: Force Field Analysis', 45, 45, 27, 0, 1),
(384, 'Morning Wrap-Up', 'Morning Wrap-Up', 15, 15, 27, 0, 1),
(385, 'Lunch', 'Lunch', 60, 60, 27, 0, 1),
(386, 'Energizer: Two¸ Three¸ Four¸ Play!', 'Energizer: Two¸ Three¸ Four¸ Play!', 15, 15, 27, 0, 1),
(387, 'Session Five: Understanding Your Audience', 'Session Five: Understanding Your Audience', 75, 75, 27, 0, 1),
(388, 'Session Six: Controlling Your Jitters', 'Session Six: Controlling Your Jitters', 45, 45, 27, 0, 1),
(389, 'Session Seven: Making Your Listener Hear You', 'Session Seven: Making Your Listener Hear You', 15, 15, 27, 0, 1),
(390, 'Session Eight: Key Themes', 'Session Eight: Key Themes', 45, 45, 27, 0, 1),
(391, 'Day One Wrap-Up', 'Day One Wrap-Up', 15, 15, 27, 0, 1),
(392, 'Icebreaker: Does It Suit You?', 'Icebreaker: Does It Suit You?', 15, 15, 28, 0, 1),
(393, 'Session One: Course Overview', 'Session One: Course Overview', 15, 15, 28, 0, 1),
(394, 'Session Two: Why Are Research Skills Important?', 'Session Two: Why Are Research Skills Important?', 15, 15, 28, 0, 1),
(395, 'Session Three: Basic Skills', 'Session Three: Basic Skills', 90, 90, 28, 0, 1),
(396, 'Session Four: Planning Your Research Strategy', 'Session Four: Planning Your Research Strategy', 60, 60, 28, 0, 1),
(397, 'Morning Wrap-Up', 'Morning Wrap-Up', 15, 15, 28, 0, 1),
(398, 'Lunch', 'Lunch', 60, 60, 28, 0, 1),
(399, 'Energizer: Gotcha!', 'Energizer: Gotcha!', 15, 15, 28, 0, 1),
(400, 'Session Five: Where to Look and What to Look For', 'Session Five: Where to Look and What to Look For', 15, 15, 28, 0, 1),
(401, 'Session Six: Finding Information the Old-Fashioned Way', 'Session Six: Finding Information the Old-Fashioned Way', 30, 30, 28, 0, 1),
(402, 'Session Seven: Researching with the Internet', 'Session Seven: Researching with the Internet', 60, 60, 28, 0, 1),
(403, 'Session Eight: Getting Ready to Write', 'Session Eight: Getting Ready to Write', 15, 15, 28, 0, 1),
(404, 'Session Nine: Putting Pen to Paper', 'Session Nine: Putting Pen to Paper', 60, 60, 28, 0, 1),
(405, 'Workshop Wrap-Up', 'Workshop Wrap-Up', 15, 15, 28, 0, 1),
(406, 'Icebreaker: Admit it!', 'Icebreaker: Admit it!', 15, 15, 29, 0, 1),
(407, 'Session One: Course Overview', 'Session One: Course Overview', 15, 15, 29, 0, 1),
(408, 'Session Two: What is Self-Leadership?', 'Session Two: What is Self-Leadership?', 60, 60, 29, 0, 1),
(409, 'Break', 'Break', 15, 15, 29, 0, 1),
(410, 'Session Three: Knowing Who You Are', 'Session Three: Knowing Who You Are', 75, 75, 29, 0, 1),
(411, 'Session Four: Change Management ', 'Session Four: Change Management ', 30, 30, 29, 0, 1),
(412, 'Lunch', 'Lunch', 60, 60, 29, 0, 1),
(413, 'Energizer: What Can You Do With That?', 'Energizer: What Can You Do With That?', 15, 15, 29, 0, 1),
(414, 'Session Five: Knowing What You Do', 'Session Five: Knowing What You Do', 45, 45, 29, 0, 1),
(415, 'Break', 'Break', 15, 15, 29, 0, 1),
(416, 'Session Six: Motivation for Optimists', 'Session Six: Motivation for Optimists', 75, 75, 29, 0, 1),
(417, 'Session Seven: Using What You Know', 'Session Seven: Using What You Know', 45, 45, 29, 0, 1),
(418, 'Workshop Wrap-Up ', 'Workshop Wrap-Up ', 15, 15, 29, 0, 1),
(419, 'Icebreaker: Bingo!', 'Icebreaker: Bingo!', 15, 15, 30, 0, 1),
(420, 'Session One: Course Overview', 'Session One: Course Overview', 15, 15, 30, 0, 1),
(421, 'Session Two: Personal Best¸ Professional Best ', 'Session Two: Personal Best¸ Professional Best ', 45, 45, 30, 0, 1),
(422, 'Session Three: Putting Others at Ease', 'Session Three: Putting Others at Ease', 15, 15, 30, 0, 1),
(423, 'Session Four: Distorted Thinking', 'Session Four: Distorted Thinking', 30, 30, 30, 0, 1),
(424, 'Break', 'Break', 15, 15, 30, 0, 1),
(425, 'Session Five: The Steps to Feeling Good', 'Session Five: The Steps to Feeling Good', 15, 15, 30, 0, 1),
(426, 'Session Six: Understanding Assertiveness', 'Session Six: Understanding Assertiveness', 45, 45, 30, 0, 1),
(427, 'Morning Wrap-Up', 'Morning Wrap-Up', 15, 15, 30, 0, 1),
(428, 'Lunch', 'Lunch', 60, 60, 30, 0, 1),
(429, 'Energizer: Simon Says', 'Energizer: Simon Says', 15, 15, 30, 0, 1),
(430, 'Session Seven: Improving Your Assertiveness Skills', 'Session Seven: Improving Your Assertiveness Skills', 30, 30, 30, 0, 1),
(431, 'Session Eight: Communication Skills', 'Session Eight: Communication Skills', 30, 30, 30, 0, 1),
(432, 'Break', 'Break', 15, 15, 30, 0, 1),
(433, 'Session Nine: Asking and Listening', 'Session Nine: Asking and Listening', 45, 45, 30, 0, 1),
(434, 'Session Ten: Non-Verbal Messages', 'Session Ten: Non-Verbal Messages', 20, 20, 30, 0, 1),
(435, 'Session Eleven: Writing Skills', 'Session Eleven: Writing Skills', 45, 45, 30, 0, 1),
(436, 'Day One Wrap-Up ', 'Day One Wrap-Up ', 15, 15, 30, 0, 1),
(437, 'Icebreaker: Mixing Up the Modifiers', 'Icebreaker: Mixing Up the Modifiers', 15, 15, 31, 0, 1),
(438, 'Session One: Course Overview', 'Session One: Course Overview', 15, 15, 31, 0, 1),
(439, 'Session Two: The Role of a Minute-Taker', 'Session Two: The Role of a Minute-Taker', 45, 45, 31, 0, 1),
(440, 'Session Three: The Skills of a Minute-Taker', 'Session Three: The Skills of a Minute-Taker', 60, 60, 31, 0, 1),
(441, 'Session Four: Meeting Agreements', 'Session Four: Meeting Agreements', 15, 15, 31, 0, 1),
(442, 'Session Five: Minute Styles', 'Session Five: Minute Styles', 45, 45, 31, 0, 1),
(443, 'Morning Wrap-Up', 'Morning Wrap-Up', 15, 15, 31, 0, 1),
(444, 'Lunch', 'Lunch', 60, 60, 31, 0, 1),
(445, 'Energizer: Can You Stand It?', 'Energizer: Can You Stand It?', 15, 15, 31, 0, 1),
(446, 'Session Six: What Do I Record?', 'Session Six: What Do I Record?', 30, 30, 31, 0, 1),
(447, 'Session Seven: Techniques for Preparing Minutes', 'Session Seven: Techniques for Preparing Minutes', 120, 120, 31, 0, 1),
(448, 'Session Eight: Taking Minutes in an Interactive Meeting', 'Session Eight: Taking Minutes in an Interactive Meeting', 15, 15, 31, 0, 1),
(449, 'Session Nine: The Minute Book', 'Session Nine: The Minute Book', 15, 15, 31, 0, 1),
(450, 'Workshop Wrap-Up', 'Workshop Wrap-Up', 15, 15, 31, 0, 1),
(451, 'Icebreaker: Home Team', 'Icebreaker: Home Team', 15, 15, 32, 0, 1),
(452, 'Session One: Course Overview', 'Session One: Course Overview', 15, 15, 32, 0, 1),
(453, 'Session Two: The Power of a Change', 'Session Two: The Power of a Change', 30, 30, 32, 0, 1),
(454, 'Session Three: Changing Our Perspective', 'Session Three: Changing Our Perspective', 45, 45, 32, 0, 1),
(455, 'Break', 'Break', 15, 15, 32, 0, 1),
(456, 'Session Four: Setting Goals', 'Session Four: Setting Goals', 30, 30, 32, 0, 1),
(457, 'Session Five: Planning Tips and Tricks', 'Session Five: Planning Tips and Tricks', 30, 30, 32, 0, 1),
(458, 'Session Six: Setting a Routine', 'Session Six: Setting a Routine', 15, 15, 32, 0, 1),
(459, 'Morning Wrap-Up', 'Morning Wrap-Up', 15, 15, 32, 0, 1),
(460, 'Lunch', 'Lunch', 60, 60, 32, 0, 1),
(461, 'Energizer: Secret Identity', 'Energizer: Secret Identity', 15, 15, 32, 0, 1),
(462, 'Session Seven: Doing it Right', 'Session Seven: Doing it Right', 45, 45, 32, 0, 1),
(463, 'Session Eight: Putting an End to Procrastination', 'Session Eight: Putting an End to Procrastination', 15, 15, 32, 0, 1),
(464, 'Break', 'Break', 15, 15, 32, 0, 1),
(465, 'Session Nine: Getting Organized', 'Session Nine: Getting Organized', 15, 15, 32, 0, 1),
(466, 'Session Ten: Organizing Your Files', 'Session Ten: Organizing Your Files', 30, 30, 32, 0, 1),
(467, 'Session Eleven: Managing Your Workload', 'Session Eleven: Managing Your Workload', 60, 60, 32, 0, 1),
(468, 'Workshop Wrap-Up', 'Workshop Wrap-Up', 15, 15, 32, 0, 1),
(469, 'Icebreaker: Mixing Up the Modifiers', 'Icebreaker: Mixing Up the Modifiers', 15, 15, 33, 0, 1),
(470, 'Session One: Course Overview', 'Session One: Course Overview', 15, 15, 33, 0, 1),
(471, 'Session Two: Making Your Company a Technology-Friendly Place', 'Session Two: Making Your Company a Technology-Friendly Place', 45, 45, 33, 0, 1),
(472, 'Session Three: Conquering Computers', 'Session Three: Conquering Computers', 15, 15, 33, 0, 1),
(473, 'Break', 'Break', 15, 15, 33, 0, 1),
(474, 'Session Four: Communicating with the IT Department', 'Session Four: Communicating with the IT Department', 15, 15, 33, 0, 1),
(475, 'Session Five: Choosing Software Wisely', 'Session Five: Choosing Software Wisely', 45, 45, 33, 0, 1),
(476, 'Session Six: Technical Training', 'Session Six: Technical Training', 30, 30, 33, 0, 1),
(477, 'Morning Wrap-Up', 'Morning Wrap-Up', 15, 15, 33, 0, 1),
(478, 'Lunch', 'Lunch', 60, 60, 33, 0, 1),
(479, 'Energizer: Auction Antics', 'Energizer: Auction Antics', 30, 30, 33, 0, 1),
(480, 'Session Seven: Setting an IT Budget', 'Session Seven: Setting an IT Budget', 45, 45, 33, 0, 1),
(481, 'Break', 'Break', 15, 15, 33, 0, 1),
(482, 'Session Eight: Security and Privacy', 'Session Eight: Security and Privacy', 60, 60, 33, 0, 1),
(483, 'Session Nine: Uncontrolled vs. Controlled Networks', 'Session Nine: Uncontrolled vs. Controlled Networks', 15, 15, 33, 0, 1),
(484, 'Session Ten: Ergonomics', 'Session Ten: Ergonomics', 30, 30, 33, 0, 1),
(485, 'Day One Wrap-Up', 'Day One Wrap-Up', 15, 15, 33, 0, 1),
(486, 'Icebreaker: Common Ground', 'Icebreaker: Common Ground', 15, 15, 34, 0, 1),
(487, 'Session One: Course Overview', 'Session One: Course Overview', 15, 15, 34, 0, 1),
(488, 'Session Two: The Stages of Report Writing', 'Session Two: The Stages of Report Writing', 15, 15, 34, 0, 1),
(489, 'Session Three: The First Stage – Investigating ', 'Session Three: The First Stage – Investigating ', 45, 45, 34, 0, 1),
(490, 'Break', 'Break', 15, 15, 34, 0, 1),
(491, 'Session Four: The Second Stage – Planning ', 'Session Four: The Second Stage – Planning ', 30, 30, 34, 0, 1),
(492, 'Session Five: The Third Stage – Writing ', 'Session Five: The Third Stage – Writing ', 30, 30, 34, 0, 1),
(493, 'Session Six: The Fourth Stage – Revising', 'Session Six: The Fourth Stage – Revising', 30, 30, 34, 0, 1),
(494, 'Morning Wrap-Up', 'Morning Wrap-Up', 15, 15, 34, 0, 1),
(495, 'Lunch', 'Lunch', 60, 60, 34, 0, 1),
(496, 'Energizer: Word Jazz', 'Energizer: Word Jazz', 15, 15, 34, 0, 1),
(497, 'Session Seven: Using Headings', 'Session Seven: Using Headings', 15, 15, 34, 0, 1),
(498, 'Session Eight: Using Charts and Graphs', 'Session Eight: Using Charts and Graphs', 15, 15, 34, 0, 1),
(499, 'Session Nine: The Proposal', 'Session Nine: The Proposal', 75, 75, 34, 0, 1),
(500, 'Session Ten: Persuasion', 'Session Ten: Persuasion', 15, 15, 34, 0, 1),
(501, 'Session Eleven: Practical Application', 'Session Eleven: Practical Application', 30, 30, 34, 0, 1),
(502, 'Session Twelve: Giving Credit', 'Session Twelve: Giving Credit', 30, 30, 34, 0, 1),
(503, 'Workshop Wrap-Up', 'Workshop Wrap-Up', 15, 15, 34, 0, 1),
(504, 'Icebreaker: Time’s Up! ', 'Icebreaker: Time’s Up! ', 15, 15, 35, 0, 1),
(505, 'Session One: Course Overview', 'Session One: Course Overview', 15, 15, 35, 0, 1),
(506, 'Session Two: Getting the Facts Straight', 'Session Two: Getting the Facts Straight', 45, 45, 35, 0, 1),
(507, 'Session Three: The Accounting Cycle', 'Session Three: The Accounting Cycle', 60, 60, 35, 0, 1),
(508, 'Morning Wrap-Up', 'Morning Wrap-Up', 15, 15, 35, 0, 1),
(509, 'Lunch', 'Lunch', 60, 60, 35, 0, 1),
(510, 'Energizer: Count Me In!', 'Energizer: Count Me In!', 15, 15, 35, 0, 1),
(511, 'Session Four: The Key Reports', 'Session Four: The Key Reports', 120, 120, 35, 0, 1),
(512, 'Session Five: Keeping Score', 'Session Five: Keeping Score', 60, 60, 35, 0, 1),
(513, 'Day One Wrap-Up', 'Day One Wrap-Up', 15, 15, 35, 0, 1),
(514, 'Icebreaker: Bingo', 'Icebreaker: Bingo', 15, 15, 36, 0, 1),
(515, 'Session One: Course Overview', 'Session One: Course Overview', 15, 15, 36, 0, 1),
(516, 'Session Two: What is Anger? ', 'Session Two: What is Anger? ', 30, 30, 36, 0, 1),
(517, 'Session Three: Costs and Pay-Offs', 'Session Three: Costs and Pay-Offs', 45, 45, 36, 0, 1),
(518, 'Break', 'Break', 15, 15, 36, 0, 1),
(519, 'Session Four: The Anger Process', 'Session Four: The Anger Process', 15, 15, 36, 0, 1),
(520, 'Morning Wrap-Up', 'Morning Wrap-Up', 15, 15, 36, 0, 1),
(521, 'Lunch', 'Lunch', 60, 60, 36, 0, 1),
(522, 'Energizer: In and Out', 'Energizer: In and Out', 15, 15, 36, 0, 1),
(523, 'Session Five: How Does Anger Affect Our Thinking? ', 'Session Five: How Does Anger Affect Our Thinking? ', 30, 30, 36, 0, 1),
(524, 'Session Six: Understanding Behavior Types', 'Session Six: Understanding Behavior Types', 30, 30, 36, 0, 1),
(525, 'Break', 'Break', 15, 15, 36, 0, 1),
(526, 'Session Seven: Managing Anger', 'Session Seven: Managing Anger', 60, 60, 36, 0, 1),
(527, 'Session Eight: Communication Tips and Tricks', 'Session Eight: Communication Tips and Tricks', 45, 45, 36, 0, 1),
(528, 'Workshop Wrap-Up', 'Workshop Wrap-Up', 15, 15, 36, 0, 1),
(529, 'Icebreaker: Basic Math', 'Icebreaker: Basic Math', 15, 15, 37, 0, 1),
(530, 'Session One: Course Overview', 'Session One: Course Overview', 15, 15, 37, 0, 1),
(531, 'Session Two: Defining Appreciative Inquiry', 'Session Two: Defining Appreciative Inquiry', 60, 60, 37, 0, 1),
(532, 'Break', 'Break', 15, 15, 37, 0, 1),
(533, 'Session Three: Success Principles', 'Session Three: Success Principles', 90, 90, 37, 0, 1),
(534, 'Morning Wrap-Up', 'Morning Wrap-Up', 15, 15, 37, 0, 1),
(535, 'Lunch', 'Lunch', 60, 60, 37, 0, 1),
(536, 'Energizer: A Word Please', 'Energizer: A Word Please', 15, 15, 37, 0, 1),
(537, 'Session Four: The 4-D Model', 'Session Four: The 4-D Model', 120, 120, 37, 0, 1),
(538, 'Session Five: Test Driving ', 'Session Five: Test Driving ', 60, 60, 37, 0, 1),
(539, 'Workshop Wrap-Up', 'Workshop Wrap-Up', 15, 15, 37, 0, 1),
(540, 'Icebreaker: To-Do List', 'Icebreaker: To-Do List', 15, 15, 38, 0, 1),
(541, 'Session One: Course Overview', 'Session One: Course Overview', 15, 15, 38, 0, 1),
(542, 'Session Two: Defining Teams', 'Session Two: Defining Teams', 30, 30, 38, 0, 1),
(543, 'Session Three: Establishing Team Norms', 'Session Three: Establishing Team Norms', 60, 60, 38, 0, 1),
(544, 'Session Four: Working as a Team', 'Session Four: Working as a Team', 15, 15, 38, 0, 1),
(545, 'Session Five: Your Team Player Type', 'Session Five: Your Team Player Type', 60, 60, 38, 0, 1),
(546, 'Morning Wrap-Up', 'Morning Wrap-Up', 15, 15, 38, 0, 1),
(547, 'Lunch', 'Lunch', 60, 60, 38, 0, 1),
(548, 'Energizer: Group Pursuit', 'Energizer: Group Pursuit', 15, 15, 38, 0, 1),
(549, 'Session Six: Building Team Trust', 'Session Six: Building Team Trust', 45, 45, 38, 0, 1),
(550, 'Break', 'Break', 15, 15, 38, 0, 1),
(551, 'Session Seven: The Stages of Team Development', 'Session Seven: The Stages of Team Development', 15, 15, 38, 0, 1),
(552, 'Session Eight: Team Building with TORI ', 'Session Eight: Team Building with TORI ', 60, 60, 38, 0, 1),
(553, 'Session Nine: Communication', 'Session Nine: Communication', 30, 30, 38, 0, 1),
(554, 'Session Ten: Becoming a Good Team Player', 'Session Ten: Becoming a Good Team Player', 15, 15, 38, 0, 1),
(555, 'Workshop Wrap-Up', 'Workshop Wrap-Up', 15, 15, 38, 0, 1),
(556, 'Icebreaker: Monkey Business', 'Icebreaker: Monkey Business', 15, 15, 39, 0, 1),
(557, 'Session One: Course Overview', 'Session One: Course Overview', 15, 15, 39, 0, 1),
(558, 'Session Two: A Need for Succession Planning', 'Session Two: A Need for Succession Planning', 30, 30, 39, 0, 1),
(559, 'Session Three: Defining a Succession Plan', 'Session Three: Defining a Succession Plan', 30, 30, 39, 0, 1),
(560, 'Break', 'Break', 15, 15, 39, 0, 1),
(561, 'Session Four: Pre-Assignment Review', 'Session Four: Pre-Assignment Review', 15, 15, 39, 0, 1),
(562, 'Session Five: Identifying Resources and Analyzing Risks', 'Session Five: Identifying Resources and Analyzing Risks', 30, 30, 39, 0, 1),
(563, 'Session Six: Defining Roles¸ Responsibilities¸ and Functions', 'Session Six: Defining Roles¸ Responsibilities¸ and Functions', 30, 30, 39, 0, 1),
(564, 'Session Seven: Gathering Information', 'Session Seven: Gathering Information', 15, 15, 39, 0, 1),
(565, 'Morning Wrap-Up', 'Morning Wrap-Up', 15, 15, 39, 0, 1),
(566, 'Lunch', 'Lunch', 60, 60, 39, 0, 1),
(567, 'Energizer: Let’s Get Physical', 'Energizer: Let’s Get Physical', 15, 15, 39, 0, 1),
(568, 'Session Eight: Forecasting Needs ', 'Session Eight: Forecasting Needs ', 30, 30, 39, 0, 1),
(569, 'Session Nine: Putting the Plan Together', 'Session Nine: Putting the Plan Together', 30, 30, 39, 0, 1),
(570, 'Break', 'Break', 15, 15, 39, 0, 1),
(571, 'Session Ten: Putting the Plan Into Action', 'Session Ten: Putting the Plan Into Action', 30, 30, 39, 0, 1),
(572, 'Session Eleven: Evaluating and Reviewing the Plan', 'Session Eleven: Evaluating and Reviewing the Plan', 45, 45, 39, 0, 1),
(573, 'Session Twelve: Your Action Plan', 'Session Twelve: Your Action Plan', 30, 30, 39, 0, 1),
(574, 'Workshop Wrap-Up', 'Workshop Wrap-Up', 15, 15, 39, 0, 1),
(575, 'Icebreaker: Mix and Mingle', 'Icebreaker: Mix and Mingle', 15, 15, 40, 0, 1),
(576, 'Session One: Course Overview', 'Session One: Course Overview', 15, 15, 40, 0, 1),
(577, 'Session Two: What is Change?', 'Session Two: What is Change?', 15, 15, 40, 0, 1),
(578, 'Session Three: The Change Cycle', 'Session Three: The Change Cycle', 45, 45, 40, 0, 1),
(579, 'Break', 'Break', 15, 15, 40, 0, 1);
INSERT INTO `outline` (`id`, `name`, `default_name`, `duration`, `default_duration`, `course_id`, `skill_id`, `status`) VALUES
(580, 'Session Four: The Human Reaction to Change', 'Session Four: The Human Reaction to Change', 30, 30, 40, 0, 1),
(581, 'Session Five: The Pace of Change', 'Session Five: The Pace of Change', 60, 60, 40, 0, 1),
(582, 'Morning Wrap-Up', 'Morning Wrap-Up', 15, 15, 40, 0, 1),
(583, 'Lunch', 'Lunch', 60, 60, 40, 0, 1),
(584, 'Energizer: In and Out', 'Energizer: In and Out', 15, 15, 40, 0, 1),
(585, 'Session Six: The Four Room Apartment', 'Session Six: The Four Room Apartment', 30, 30, 40, 0, 1),
(586, 'Session Seven: Dealing with Resistance', 'Session Seven: Dealing with Resistance', 30, 30, 40, 0, 1),
(587, 'Session Eight: Adapting to Change', 'Session Eight: Adapting to Change', 60, 60, 40, 0, 1),
(588, 'Session Nine: Strategies for Dealing with Anger', 'Session Nine: Strategies for Dealing with Anger', 45, 45, 40, 0, 1),
(589, 'Session Ten: Managing Stress', 'Session Ten: Managing Stress', 15, 15, 40, 0, 1),
(590, 'Workshop Wrap-Up', 'Workshop Wrap-Up', 15, 15, 40, 0, 1),
(591, 'Icebreaker: Vegetable Garden', 'Icebreaker: Vegetable Garden', 15, 15, 41, 0, 1),
(592, 'Session One: Course Overview', 'Session One: Course Overview', 15, 15, 41, 0, 1),
(593, 'Session Two: Performance Appraisals Done Well', 'Session Two: Performance Appraisals Done Well', 75, 75, 41, 0, 1),
(594, 'Break', 'Break', 15, 15, 41, 0, 1),
(595, 'Session Three: Errors We Make ', 'Session Three: Errors We Make ', 45, 45, 41, 0, 1),
(596, 'Session Four: Types of Performance Reviews', 'Session Four: Types of Performance Reviews', 30, 30, 41, 0, 1),
(597, 'Morning Wrap-Up', 'Morning Wrap-Up', 15, 15, 41, 0, 1),
(598, 'Lunch', 'Lunch', 60, 60, 41, 0, 1),
(599, 'Energizer: I’ve Got Your Back ', 'Energizer: I’ve Got Your Back ', 15, 15, 41, 0, 1),
(600, 'Session Five: The Performance Management Process', 'Session Five: The Performance Management Process', 45, 45, 41, 0, 1),
(601, 'Session Six: Goals with SPIRIT', 'Session Six: Goals with SPIRIT', 75, 75, 41, 0, 1),
(602, 'Session Seven: The Performance Management Cycle', 'Session Seven: The Performance Management Cycle', 30, 30, 41, 0, 1),
(603, 'Session Eight: Setting Standards', 'Session Eight: Setting Standards', 30, 30, 41, 0, 1),
(604, 'Day One Wrap-Up', 'Day One Wrap-Up', 15, 15, 41, 0, 1),
(605, 'Icebreaker: Spinning a Tale', 'Icebreaker: Spinning a Tale', 15, 15, 42, 0, 1),
(606, 'Session One: Course Overview', 'Session One: Course Overview', 15, 15, 42, 0, 1),
(607, 'Session Two: Defining Conflict', 'Session Two: Defining Conflict', 45, 45, 42, 0, 1),
(608, 'Session Three: Types of Conflict ', 'Session Three: Types of Conflict ', 15, 15, 42, 0, 1),
(609, 'Session Four: Open Conflict vs. Hidden Conflict', 'Session Four: Open Conflict vs. Hidden Conflict', 15, 15, 42, 0, 1),
(610, 'Break', 'Break', 15, 15, 42, 0, 1),
(611, 'Session Five: Spontaneous and Reflective Action', 'Session Five: Spontaneous and Reflective Action', 15, 15, 42, 0, 1),
(612, 'Session Six: The Johari Window', 'Session Six: The Johari Window', 60, 60, 42, 0, 1),
(613, 'Morning Wrap-Up', 'Morning Wrap-Up', 15, 15, 42, 0, 1),
(614, 'Lunch', 'Lunch', 60, 60, 42, 0, 1),
(615, 'Energizer: This or That', 'Energizer: This or That', 15, 15, 42, 0, 1),
(616, 'Session Seven: Stages of Conflict', 'Session Seven: Stages of Conflict', 60, 60, 42, 0, 1),
(617, 'Break', 'Break', 15, 15, 42, 0, 1),
(618, 'Session Eight: Creating the Win/Win', 'Session Eight: Creating the Win/Win', 30, 30, 42, 0, 1),
(619, 'Session Nine: Conflict Resolution Style Questionnaire', 'Session Nine: Conflict Resolution Style Questionnaire', 75, 75, 42, 0, 1),
(620, 'Day One Wrap-Up', 'Day One Wrap-Up', 15, 15, 42, 0, 1),
(621, 'Icebreaker: First or Worst', 'Icebreaker: First or Worst', 15, 15, 43, 0, 1),
(622, 'Session One: Course Overview', 'Session One: Course Overview', 15, 15, 43, 0, 1),
(623, 'Session Two: Understanding Talent Management', 'Session Two: Understanding Talent Management', 30, 30, 43, 0, 1),
(624, 'Session Three: Understanding Performance Management', 'Session Three: Understanding Performance Management', 30, 30, 43, 0, 1),
(625, 'Session Four: Understanding Succession Planning', 'Session Four: Understanding Succession Planning', 105, 105, 43, 0, 1),
(626, 'Morning Wrap-Up', 'Morning Wrap-Up', 15, 15, 43, 0, 1),
(627, 'Lunch', 'Lunch', 60, 60, 43, 0, 1),
(628, 'Energizer: Alphabetize It!', 'Energizer: Alphabetize It!', 15, 15, 43, 0, 1),
(629, 'Session Five: Creating a Talent Management Plan', 'Session Five: Creating a Talent Management Plan', 30, 30, 43, 0, 1),
(630, 'Session Six: About Competency-Based Programs', 'Session Six: About Competency-Based Programs', 30, 30, 43, 0, 1),
(631, 'Break', 'Break', 15, 15, 43, 0, 1),
(632, 'Session Seven: Identifying Talent', 'Session Seven: Identifying Talent', 75, 75, 43, 0, 1),
(633, 'Session Eight: Bring on Bench Strength', 'Session Eight: Bring on Bench Strength', 30, 30, 43, 0, 1),
(634, 'Day One Wrap-Up', 'Day One Wrap-Up', 15, 15, 43, 0, 1),
(635, 'Icebreaker: At the Zoo', 'Icebreaker: At the Zoo', 15, 15, 44, 0, 1),
(636, 'Session One: Course Overview', 'Session One: Course Overview', 15, 15, 44, 0, 1),
(637, 'Session Two: Six Critical Elements', 'Session Two: Six Critical Elements', 165, 165, 44, 0, 1),
(638, 'Morning Wrap-Up', 'Morning Wrap-Up', 15, 15, 44, 0, 1),
(639, 'Lunch', 'Lunch', 60, 60, 44, 0, 1),
(640, 'Energizer: Around the World', 'Energizer: Around the World', 15, 15, 44, 0, 1),
(641, 'Session Three: Understanding Leadership', 'Session Three: Understanding Leadership', 75, 75, 44, 0, 1),
(642, 'Break', 'Break', 15, 15, 44, 0, 1),
(643, 'Session Four: Five Practices of Leadership', 'Session Four: Five Practices of Leadership', 90, 90, 44, 0, 1),
(644, 'Workshop Wrap-Up', 'Workshop Wrap-Up', 15, 15, 44, 0, 1),
(645, 'Icebreaker: This is Over the Top! ', 'Icebreaker: This is Over the Top! ', 15, 15, 45, 0, 1),
(646, 'Session One: Course Overview', 'Session One: Course Overview', 15, 15, 45, 0, 1),
(647, 'Session Two: History in Brief', 'Session Two: History in Brief', 30, 30, 45, 0, 1),
(648, 'Session Three: Finding Common Ground', 'Session Three: Finding Common Ground', 30, 30, 45, 0, 1),
(649, 'Break', 'Break', 15, 15, 45, 0, 1),
(650, 'Session Four: Silents¸ Boomers¸ X’ers¸ Y’s¸ Millennials¸ and Gen Z', 'Session Four: Silents¸ Boomers¸ X’ers¸ Y’s¸ Millennials¸ and Gen Z', 30, 30, 45, 0, 1),
(651, 'Session Five: Recruiting that Bridges the Gap', 'Session Five: Recruiting that Bridges the Gap', 30, 30, 45, 0, 1),
(652, 'Session Six: Pre-Assignment Review', 'Session Six: Pre-Assignment Review', 30, 30, 45, 0, 1),
(653, 'Morning Wrap-Up', 'Morning Wrap-Up', 15, 15, 45, 0, 1),
(654, 'Lunch', 'Lunch', 60, 60, 45, 0, 1),
(655, 'Energizer: Either Or', 'Energizer: Either Or', 15, 15, 45, 0, 1),
(656, 'Session Seven: Creative Solutions', 'Session Seven: Creative Solutions', 30, 30, 45, 0, 1),
(657, 'Session Eight: The Value of Planning', 'Session Eight: The Value of Planning', 30, 30, 45, 0, 1),
(658, 'Break', 'Break', 15, 15, 45, 0, 1),
(659, 'Session Nine: Developing Targeted Retention Strategies', 'Session Nine: Developing Targeted Retention Strategies', 60, 60, 45, 0, 1),
(660, 'Session Ten: What We Really Want', 'Session Ten: What We Really Want', 45, 45, 45, 0, 1),
(661, 'Workshop Wrap-Up ', 'Workshop Wrap-Up ', 15, 15, 45, 0, 1),
(662, 'Icebreaker: All About Me', 'Icebreaker: All About Me', 15, 15, 46, 0, 1),
(663, 'Session One: Course Overview', 'Session One: Course Overview', 15, 15, 46, 0, 1),
(664, 'Session Two: History of the Interviewing Process', 'Session Two: History of the Interviewing Process', 15, 15, 46, 0, 1),
(665, 'Session Three: The Recruitment and Selection Process', 'Session Three: The Recruitment and Selection Process', 15, 15, 46, 0, 1),
(666, 'Session Four: Factors in the Hiring Process', 'Session Four: Factors in the Hiring Process', 15, 15, 46, 0, 1),
(667, 'Session Five: Cost Analysis', 'Session Five: Cost Analysis', 30, 30, 46, 0, 1),
(668, 'Break', 'Break', 15, 15, 46, 0, 1),
(669, 'Session Six: Job Analysis and Position Profiles', 'Session Six: Job Analysis and Position Profiles', 15, 15, 46, 0, 1),
(670, 'Session Seven: Determining the Skills You Need', 'Session Seven: Determining the Skills You Need', 15, 15, 46, 0, 1),
(671, 'Session Eight: Finding Candidates', 'Session Eight: Finding Candidates', 15, 15, 46, 0, 1),
(672, 'Session Nine: Advertising Guidelines', 'Session Nine: Advertising Guidelines', 30, 30, 46, 0, 1),
(673, 'Morning Wrap-Up', 'Morning Wrap-Up', 15, 15, 46, 0, 1),
(674, 'Lunch', 'Lunch', 60, 60, 46, 0, 1),
(675, 'Energizer: Egg¸ Chicken¸ Dinosaur', 'Energizer: Egg¸ Chicken¸ Dinosaur', 15, 15, 46, 0, 1),
(676, 'Session Ten: Screening Resumes', 'Session Ten: Screening Resumes', 30, 30, 46, 0, 1),
(677, 'Session Eleven: Performance Assessments', 'Session Eleven: Performance Assessments', 15, 15, 46, 0, 1),
(678, 'Break', 'Break', 15, 15, 46, 0, 1),
(679, 'Session Twelve: Problems Recruiters Face', 'Session Twelve: Problems Recruiters Face', 15, 15, 46, 0, 1),
(680, 'Session Thirteen: Interviewing Barriers', 'Session Thirteen: Interviewing Barriers', 15, 15, 46, 0, 1),
(681, 'Session Fourteen: Non-Verbal Communication', 'Session Fourteen: Non-Verbal Communication', 30, 30, 46, 0, 1),
(682, 'Session Fifteen: Types of Questions', 'Session Fifteen: Types of Questions', 30, 30, 46, 0, 1),
(683, 'Session Sixteen: Case Study', 'Session Sixteen: Case Study', 30, 30, 46, 0, 1),
(684, 'Day One Wrap-Up', 'Day One Wrap-Up', 15, 15, 46, 0, 1),
(685, 'Icebreaker: Shoe Closet', 'Icebreaker: Shoe Closet', 15, 15, 47, 0, 1),
(686, 'Session One: Course Overview', 'Session One: Course Overview', 15, 15, 47, 0, 1),
(687, 'Session Two: Defining Onboarding', 'Session Two: Defining Onboarding', 60, 60, 47, 0, 1),
(688, 'Break', 'Break', 15, 15, 47, 0, 1),
(689, 'Session Three: Creating the Onboarding Steering Team', 'Session Three: Creating the Onboarding Steering Team', 15, 15, 47, 0, 1),
(690, 'Session Four: Gathering Supporting Information', 'Session Four: Gathering Supporting Information', 60, 60, 47, 0, 1),
(691, 'Session Five: Setting Goals', 'Session Five: Setting Goals', 15, 15, 47, 0, 1),
(692, 'Morning Wrap-Up', 'Morning Wrap-Up', 15, 15, 47, 0, 1),
(693, 'Lunch', 'Lunch', 60, 60, 47, 0, 1),
(694, 'Energizer: Packing a Picnic', 'Energizer: Packing a Picnic', 15, 15, 47, 0, 1),
(695, 'Session Six: Developing the Program', 'Session Six: Developing the Program', 150, 150, 47, 0, 1),
(696, 'Session Seven: A Personal Onboarding Plan', 'Session Seven: A Personal Onboarding Plan', 30, 30, 47, 0, 1),
(697, 'Day One Wrap-Up', 'Day One Wrap-Up', 15, 15, 47, 0, 1),
(698, 'Icebreaker: To-Do List', 'Icebreaker: To-Do List', 15, 15, 48, 0, 1),
(699, 'Session One: Course Overview', 'Session One: Course Overview', 15, 15, 48, 0, 1),
(700, 'Session Two: Finding¸ Hiring¸ and Keeping Good People', 'Session Two: Finding¸ Hiring¸ and Keeping Good People', 30, 30, 48, 0, 1),
(701, 'Session Three: Building Employee Commitment and Engagement', 'Session Three: Building Employee Commitment and Engagement', 105, 105, 48, 0, 1),
(702, 'Session Four: Perception', 'Session Four: Perception', 30, 30, 48, 0, 1),
(703, 'Morning Wrap-Up', 'Morning Wrap-Up', 15, 15, 48, 0, 1),
(704, 'Lunch', 'Lunch', 60, 60, 48, 0, 1),
(705, 'Energizer: Blanket Ball', 'Energizer: Blanket Ball', 15, 15, 48, 0, 1),
(706, 'Session Five: Fast-Track Orientation', 'Session Five: Fast-Track Orientation', 15, 15, 48, 0, 1),
(707, 'Session Six: Designing a Successful Orientation Program', 'Session Six: Designing a Successful Orientation Program', 60, 60, 48, 0, 1),
(708, 'Break', 'Break', 15, 15, 48, 0, 1),
(709, 'Session Seven: Characteristics of a Successful Orientation Process', 'Session Seven: Characteristics of a Successful Orientation Process', 30, 30, 48, 0, 1),
(710, 'Session Eight: The Commitment Curve', 'Session Eight: The Commitment Curve', 60, 60, 48, 0, 1),
(711, 'Day One Wrap-Up', 'Day One Wrap-Up', 15, 15, 48, 0, 1),
(712, 'Icebreaker: It’s Funny Out There ', 'Icebreaker: It’s Funny Out There ', 15, 15, 49, 0, 1),
(713, 'Session One: Course Overview', 'Session One: Course Overview', 15, 15, 49, 0, 1),
(714, 'Session Two: The Shared Management Model ', 'Session Two: The Shared Management Model ', 15, 15, 49, 0, 1),
(715, 'Session Three: Setting Goals ', 'Session Three: Setting Goals ', 30, 30, 49, 0, 1),
(716, 'Session Four: Phase I (Preparation)', 'Session Four: Phase I (Preparation)', 120, 120, 49, 0, 1),