-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpr.htm
More file actions
1211 lines (930 loc) · 52.8 KB
/
pr.htm
File metadata and controls
1211 lines (930 loc) · 52.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="ie ie6" lang="en" dir="ltr "> <![endif]-->
<!--[if IE 7]> <html class="ie ie7" lang="en" dir="ltr "> <![endif]-->
<!--[if IE 8]> <html class="ie ie8" lang="en" dir="ltr "> <![endif]-->
<!--[if gt IE 8]> <!--> <html class="" lang="en" dir="ltr "> <!--<![endif]-->
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="shortcut icon" href="http://www.stoneriver.com/favicon.ico" type="image/vnd.microsoft.icon" />
<link rel="alternate" type="application/rss+xml" title="Press Release" href="http://www.stoneriver.com/press-release.xml" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" />
<meta name="generator" content="Drupal 7 (http://drupal.org)" />
<link rel="canonical" href="http://www.stoneriver.com/pr" />
<link rel="shortlink" href="http://www.stoneriver.com/pr" />
<title>Press Release | StoneRiver</title>
<!-- Call bootstrap.css before $scripts to resolve @import conflict with respond.js -->
<link rel="stylesheet" href="/sites/all/themes/Porto/vendor/bootstrap/css/bootstrap.css">
<style type="text/css" media="all">
@import url("http://www.stoneriver.com/modules/system/system.base.css?oaoz1f");
@import url("http://www.stoneriver.com/modules/system/system.menus.css?oaoz1f");
@import url("http://www.stoneriver.com/modules/system/system.messages.css?oaoz1f");
@import url("http://www.stoneriver.com/modules/system/system.theme.css?oaoz1f");
</style>
<style type="text/css" media="all">
@import url("http://www.stoneriver.com/modules/comment/comment.css?oaoz1f");
@import url("http://www.stoneriver.com/sites/all/modules/date/date_api/date.css?oaoz1f");
@import url("http://www.stoneriver.com/modules/field/theme/field.css?oaoz1f");
@import url("http://www.stoneriver.com/modules/node/node.css?oaoz1f");
@import url("http://www.stoneriver.com/modules/search/search.css?oaoz1f");
@import url("http://www.stoneriver.com/modules/user/user.css?oaoz1f");
@import url("http://www.stoneriver.com/modules/forum/forum.css?oaoz1f");
@import url("http://www.stoneriver.com/sites/all/modules/views/css/views.css?oaoz1f");
@import url("http://www.stoneriver.com/sites/all/modules/ckeditor/css/ckeditor.css?oaoz1f");
</style>
<style type="text/css" media="all">
@import url("http://www.stoneriver.com/sites/all/modules/ctools/css/ctools.css?oaoz1f");
</style>
<style type="text/css" media="all">
@import url("http://www.stoneriver.com/sites/all/themes/Porto/vendor/owl-carousel/owl.carousel.css?oaoz1f");
@import url("http://www.stoneriver.com/sites/all/themes/Porto/vendor/font-awesome/css/font-awesome.css?oaoz1f");
@import url("http://www.stoneriver.com/sites/all/themes/Porto/vendor/owl-carousel/owl.theme.default.css?oaoz1f");
@import url("http://www.stoneriver.com/sites/all/themes/Porto/vendor/prettyPhoto/css/prettyPhoto.css?oaoz1f");
@import url("http://www.stoneriver.com/sites/all/themes/Porto/vendor/circle-flip-slideshow/css/component.css?oaoz1f");
@import url("http://www.stoneriver.com/sites/all/themes/Porto/vendor/magnific-popup/magnific-popup.css?oaoz1f");
@import url("http://www.stoneriver.com/sites/all/themes/Porto/vendor/mediaelement/mediaelementplayer.css?oaoz1f");
@import url("http://www.stoneriver.com/sites/all/themes/Porto/vendor/isotope/jquery.isotope.css?oaoz1f");
@import url("http://www.stoneriver.com/sites/all/themes/Porto/css/theme-elements.css?oaoz1f");
@import url("http://www.stoneriver.com/sites/all/themes/Porto/css/theme-animate.css?oaoz1f");
@import url("http://www.stoneriver.com/sites/all/themes/Porto/css/theme-blog.css?oaoz1f");
@import url("http://www.stoneriver.com/sites/all/themes/Porto/css/theme.css?oaoz1f");
@import url("http://www.stoneriver.com/sites/all/themes/Porto/css/theme-responsive.css?oaoz1f");
@import url("http://www.stoneriver.com/sites/all/themes/Porto/css/drupal-styles.css?oaoz1f");
@import url("http://www.stoneriver.com/sites/all/themes/Porto_sub/css/custom.css?oaoz1f");
</style>
<link type="text/css" rel="stylesheet" href="http://www.stoneriver.com/sites/default/files/less/yDO1W2rps4tOPSzIZ6WmOursn--6T9d3WLb9wpMLruE/sites/all/themes/Porto/css/less/skin.fkTlYdK-dSd1gxTIiipZ7cqtMcMncLevaxjfi29NrHc.css?oaoz1f" media="all" />
<script type="text/javascript" src="http://www.stoneriver.com/sites/all/modules/jquery_update/replace/jquery/1.9/jquery.min.js?v=1.9.1"></script>
<script type="text/javascript" src="http://www.stoneriver.com/misc/jquery.once.js?v=1.2"></script>
<script type="text/javascript" src="http://www.stoneriver.com/misc/drupal.js?oaoz1f"></script>
<script type="text/javascript" src="http://www.stoneriver.com/sites/all/modules/iframe/iframe.js?oaoz1f"></script>
<script type="text/javascript" src="http://www.stoneriver.com/sites/all/modules/google_analytics/googleanalytics.js?oaoz1f"></script>
<script type="text/javascript">
<!--//--><![CDATA[//><!--
(function(i,s,o,g,r,a,m){i["GoogleAnalyticsObject"]=r;i[r]=i[r]||function(){(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)})(window,document,"script","//www.google-analytics.com/analytics.js","ga");ga("create", "UA-1201939-2", {"cookieDomain":"auto"});ga("set", "anonymizeIp", true);ga("send", "pageview");
//--><!]]>
</script>
<script type="text/javascript" src="http://www.stoneriver.com/sites/all/themes/Porto/vendor/modernizr.js?oaoz1f"></script>
<script type="text/javascript" src="http://www.stoneriver.com/sites/all/themes/Porto/vendor/bootstrap/js/bootstrap.js?oaoz1f"></script>
<script type="text/javascript" src="http://www.stoneriver.com/sites/all/themes/Porto/vendor/jquery.easing.js?oaoz1f"></script>
<script type="text/javascript" src="http://www.stoneriver.com/sites/all/themes/Porto/vendor/jquery.cookie.js?oaoz1f"></script>
<script type="text/javascript" src="http://www.stoneriver.com/sites/all/themes/Porto/vendor/owl-carousel/owl.carousel.js?oaoz1f"></script>
<script type="text/javascript" src="http://www.stoneriver.com/sites/all/themes/Porto/vendor/circle-flip-slideshow/js/jquery.flipshow.js?oaoz1f"></script>
<script type="text/javascript" src="http://www.stoneriver.com/sites/all/themes/Porto/vendor/isotope/jquery.isotope.js?oaoz1f"></script>
<script type="text/javascript" src="http://www.stoneriver.com/sites/all/themes/Porto/vendor/prettyPhoto/js/jquery.prettyPhoto.js?oaoz1f"></script>
<script type="text/javascript" src="http://www.stoneriver.com/sites/all/themes/Porto/vendor/jflickrfeed/jflickrfeed.js?oaoz1f"></script>
<script type="text/javascript" src="http://www.stoneriver.com/sites/all/themes/Porto/vendor/jquery.mapmarker.js?oaoz1f"></script>
<script type="text/javascript" src="http://www.stoneriver.com/sites/all/themes/Porto/vendor/jquery.stellar.js?oaoz1f"></script>
<script type="text/javascript" src="http://www.stoneriver.com/sites/all/themes/Porto/vendor/jquery.gmap.js?oaoz1f"></script>
<script type="text/javascript" src="http://www.stoneriver.com/sites/all/themes/Porto/vendor/jquery.knob.js?oaoz1f"></script>
<script type="text/javascript" src="http://www.stoneriver.com/sites/all/themes/Porto/vendor/magnific-popup/magnific-popup.js?oaoz1f"></script>
<script type="text/javascript" src="http://www.stoneriver.com/sites/all/themes/Porto/vendor/mediaelement/mediaelement-and-player.js?oaoz1f"></script>
<script type="text/javascript" src="http://www.stoneriver.com/sites/all/themes/Porto/vendor/jquery.validate.js?oaoz1f"></script>
<script type="text/javascript" src="http://www.stoneriver.com/sites/all/themes/Porto/vendor/jquery.appear.js?oaoz1f"></script>
<script type="text/javascript" src="http://www.stoneriver.com/sites/all/themes/Porto/js/mobile-menu.js?oaoz1f"></script>
<script type="text/javascript" src="http://www.stoneriver.com/sites/all/themes/Porto/js/theme.plugins.js?oaoz1f"></script>
<script type="text/javascript" src="http://www.stoneriver.com/sites/all/themes/Porto/js/theme.js?oaoz1f"></script>
<script type="text/javascript" src="http://www.stoneriver.com/sites/all/themes/Porto/js/views/view.home.js?oaoz1f"></script>
<script type="text/javascript" src="http://www.stoneriver.com/sites/all/themes/Porto/js/sticky.js?oaoz1f"></script>
<script type="text/javascript">
<!--//--><![CDATA[//><!--
jQuery.extend(Drupal.settings, {"basePath":"\/","pathPrefix":"","ajaxPageState":{"theme":"porto_sub","theme_token":"v367qYtJO2mTlOp2dEhxkVBhmGhXCS-VzZvIFr5iYIA","js":{"sites\/all\/modules\/pardot\/pardot.js":1,"sites\/all\/modules\/jquery_update\/replace\/jquery\/1.9\/jquery.min.js":1,"misc\/jquery.once.js":1,"misc\/drupal.js":1,"sites\/all\/modules\/iframe\/iframe.js":1,"sites\/all\/modules\/google_analytics\/googleanalytics.js":1,"0":1,"sites\/all\/themes\/Porto\/vendor\/modernizr.js":1,"sites\/all\/themes\/Porto\/vendor\/bootstrap\/js\/bootstrap.js":1,"sites\/all\/themes\/Porto\/vendor\/jquery.easing.js":1,"sites\/all\/themes\/Porto\/vendor\/jquery.cookie.js":1,"sites\/all\/themes\/Porto\/vendor\/owl-carousel\/owl.carousel.js":1,"sites\/all\/themes\/Porto\/vendor\/circle-flip-slideshow\/js\/jquery.flipshow.js":1,"sites\/all\/themes\/Porto\/vendor\/isotope\/jquery.isotope.js":1,"sites\/all\/themes\/Porto\/vendor\/prettyPhoto\/js\/jquery.prettyPhoto.js":1,"sites\/all\/themes\/Porto\/vendor\/jflickrfeed\/jflickrfeed.js":1,"sites\/all\/themes\/Porto\/vendor\/jquery.mapmarker.js":1,"sites\/all\/themes\/Porto\/vendor\/jquery.stellar.js":1,"sites\/all\/themes\/Porto\/vendor\/jquery.gmap.js":1,"sites\/all\/themes\/Porto\/vendor\/jquery.knob.js":1,"sites\/all\/themes\/Porto\/vendor\/magnific-popup\/magnific-popup.js":1,"sites\/all\/themes\/Porto\/vendor\/mediaelement\/mediaelement-and-player.js":1,"sites\/all\/themes\/Porto\/vendor\/jquery.validate.js":1,"sites\/all\/themes\/Porto\/vendor\/jquery.appear.js":1,"sites\/all\/themes\/Porto\/js\/mobile-menu.js":1,"sites\/all\/themes\/Porto\/js\/theme.plugins.js":1,"sites\/all\/themes\/Porto\/js\/theme.js":1,"sites\/all\/themes\/Porto\/js\/views\/view.home.js":1,"sites\/all\/themes\/Porto\/js\/sticky.js":1},"css":{"modules\/system\/system.base.css":1,"modules\/system\/system.menus.css":1,"modules\/system\/system.messages.css":1,"modules\/system\/system.theme.css":1,"modules\/comment\/comment.css":1,"sites\/all\/modules\/date\/date_api\/date.css":1,"modules\/field\/theme\/field.css":1,"modules\/node\/node.css":1,"modules\/search\/search.css":1,"modules\/user\/user.css":1,"modules\/forum\/forum.css":1,"sites\/all\/modules\/views\/css\/views.css":1,"sites\/all\/modules\/ckeditor\/css\/ckeditor.css":1,"sites\/all\/modules\/ctools\/css\/ctools.css":1,"sites\/all\/themes\/Porto\/vendor\/owl-carousel\/owl.carousel.css":1,"sites\/all\/themes\/Porto\/vendor\/font-awesome\/css\/font-awesome.css":1,"sites\/all\/themes\/Porto\/vendor\/owl-carousel\/owl.theme.default.css":1,"sites\/all\/themes\/Porto\/vendor\/prettyPhoto\/css\/prettyPhoto.css":1,"sites\/all\/themes\/Porto\/vendor\/circle-flip-slideshow\/css\/component.css":1,"sites\/all\/themes\/Porto\/vendor\/magnific-popup\/magnific-popup.css":1,"sites\/all\/themes\/Porto\/vendor\/mediaelement\/mediaelementplayer.css":1,"sites\/all\/themes\/Porto\/vendor\/isotope\/jquery.isotope.css":1,"sites\/all\/themes\/Porto\/css\/theme-elements.css":1,"sites\/all\/themes\/Porto\/css\/theme-animate.css":1,"sites\/all\/themes\/Porto\/css\/theme-blog.css":1,"sites\/all\/themes\/Porto\/css\/theme.css":1,"sites\/all\/themes\/Porto\/css\/theme-responsive.css":1,"sites\/all\/themes\/Porto\/css\/drupal-styles.css":1,"sites\/all\/themes\/Porto_sub\/css\/custom.css":1,"sites\/all\/themes\/Porto\/css\/less\/skin.less":1}},"pardot":{"pardot_a_id":"13132","pardot_c_id":"2041","score":""},"inEffects":["bounceIn","bounceInDown","bounceInUp","bounceInLeft","bounceInRight","fadeIn","fadeInUp","fadeInDown","fadeInLeft","fadeInRight","fadeInUpBig","fadeInDownBig","fadeInLeftBig","fadeInRightBig","flipInX","flipInY","foolishIn","lightSpeedIn","puffIn","rollIn","rotateIn","rotateInDownLeft","rotateInDownRight","rotateInUpLeft","rotateInUpRight","twisterInDown","twisterInUp","swap","swashIn","tinRightIn","tinLeftIn","tinUpIn","tinDownIn","vanishIn"],"outEffects":["bombRightOut","bombLeftOut","bounceOut","bounceOutDown","bounceOutUp","bounceOutLeft","bounceOutRight","fadeOut","fadeOutUp","fadeOutDown","fadeOutLeft","fadeOutRight","fadeOutUpBig","fadeOutDownBig","fadeOutLeftBig","fadeOutRightBig","flipOutX","flipOutY","foolishOut","hinge","holeOut","lightSpeedOut","puffOut","rollOut","rotateOut","rotateOutDownLeft","rotateOutDownRight","rotateOutUpLeft","rotateOutUpRight","rotateDown","rotateUp","rotateLeft","rotateRight","swashOut","tinRightOut","tinLeftOut","tinUpOut","tinDownOut","vanishOut"],"googleanalytics":{"trackOutbound":1,"trackMailto":1,"trackDownload":1,"trackDownloadExtensions":"7z|aac|arc|arj|asf|asx|avi|bin|csv|doc(x|m)?|dot(x|m)?|exe|flv|gif|gz|gzip|hqx|jar|jpe?g|js|mp(2|3|4|e?g)|mov(ie)?|msi|msp|pdf|phps|png|ppt(x|m)?|pot(x|m)?|pps(x|m)?|ppam|sld(x|m)?|thmx|qtm?|ra(m|r)?|sea|sit|tar|tgz|torrent|txt|wav|wma|wmv|wpd|xls(x|m|b)?|xlt(x|m)|xlam|xml|z|zip"},"urlIsAjaxTrusted":{"\/pr\/":true}});
//--><!]]>
</script>
<!-- IE Fix for HTML5 Tags -->
<!--[if lt IE 9]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<!--[if IE]>
<link rel="stylesheet" href="/sites/all/themes/Porto/css/ie.css">
<![endif]-->
<!--[if lte IE 8]>
<script src="/sites/all/themes/Porto/vendor/respond.js"></script>
<![endif]-->
<!-- Web Fonts -->
<link href="//fonts.googleapis.com/css?family=Open+Sans:300,400,600,700,800|Shadows+Into+Light" rel="stylesheet" type="text/css">
<!-- User defined CSS --><style type='text/css'>/*=======================================================================
*** PORTO_SUB STYLE SHEET***
========================================================================*/
/* Header */
html.ie header {
background: #fff;
filter: none;
}
html.ie8 header ul.social-icons li {
background-color: #fff;
}
/*Added to adjust IE header background color*/
#header {
background: #ffffff;
background: -webkit-linear-gradient( #f6f6f6, white);
background: linear-gradient( #f6f6f6, white);
clear: both;
border-top: 5px solid #EDEDED;
min-height: 100px;
padding: 8px 0;
}
#header {
background: linear-gradient(#ffffff, white) repeat scroll 0 0 rgba(0, 0, 0, 0);
border-top: 5px solid #ededed;
clear: both;
min-height: 100px;
padding: 8px 0;
}
/* Page Top sub bar color*/
.page-top {
background-color: #494949; /* grey sub bar */
border-bottom: 5px solid #ccc;
border-top: 5px solid #0397d7;
margin-bottom: 35px;
min-height: 50px;
padding: 0;
padding: 20px 0;
position: relative;
text-align: left;
}
/*taken from the ie.css chagned to white*/
div.home-intro {
background-color: #494949; /* grey sub bar homepage*/
}
/* Headings */
h1, h2, h3, h4, h5, h6 {
color: #494949;
font-weight: 200;
letter-spacing: -1px;
margin: 0;
}
h1 {
font-size: 3.2em;
line-height: 44px;
margin: 0 0 44px 0;
}
h2 {
/*font-size: 2.6em;*/
font-size: 2.1em;
font-weight: 300;
line-height: 42px;
margin: 0 0 32px 0;
}
h3 {
/*color: #ccc; */
color: #c1c1c1;
font-size: 1.8em;
font-weight: 400;
letter-spacing: normal;
line-height: 24px;
margin-bottom: 33px;
text-transform: uppercase;
}
h4 {
color: #ff6600;
font-size: 1.4em;
font-weight: 400;
letter-spacing: normal;
line-height: 27px;
margin: 0 0 14px 0;
}
h5 {
color: #CCC;
font-size: 1em;
font-weight: 600;
letter-spacing: normal;
line-height: 18px;
margin: 0 0 14px 0;
text-transform: uppercase;
}
h6 {
color: #333;
font-size: 1em;
font-weight: 400;
letter-spacing: normal;
line-height: 18px;
margin: 0 0 14px 0;
}
h1.big {
font-size: 4.2em;
line-height: 54px;
}
h1.short {
margin-bottom: 15px;
}
h2.short {
margin-bottom: 15px;
}
h3.short,
h4.short,
h5.short,
h6.short {
margin-bottom: 9px;
}
h1.shorter,
h2.shorter,
h3.shorter,
h4.shorter,
h5.shorter,
h6.shorter {
margin-bottom: 0;
}
h1.tall,
h2.tall,
h3.tall,
h4.tall,
h5.tall,
h6.tall {
margin-bottom: 33px;
}
h1.taller,
h2.taller,
h3.taller,
h4.taller,
h5.taller,
h6.taller {
margin-bottom: 44px;
}
h1.spaced,
h2.spaced,
h3.spaced,
h4.spaced,
h5.spaced,
h6.spaced {
margin-top: 22px;
}
h1.more-spaced,
h2.more-spaced,
h3.more-spaced,
h4.more-spaced,
h5.more-spaced,
h6.more-spaced {
margin-top: 44px;
}
h1.dark,
h2.dark,
h3.dark,
h4.dark,
h5.dark {
color: #121214;
}
h1.white,
h2.white,
h3.white,
h4.white,
h5.white,
h6.white {
color: #FFF;
}
h1.text-shadow,
h2.text-shadow,
h3.text-shadow,
h4.text-shadow,
h5.text-shadow,
h6.text-shadow {
text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.2);
}
h2 .inverted {
min-height: 60px;
}
/* START taken from Porto theme on dev site */
.inverted {
background-color: #ff6600;
}
/* Home Concept */
.home-concept strong {
color: #ff6600;
}
.home-intro p em {
color: #ff6600;
}
/*adjust text under bubble*/
.home-concept strong {
display: block;
font-family: "Shadows Into Light", cursive;
font-size: 2.4em;
font-weight: normal;
position: relative;
margin-top: 5px;
}
.home-concept .process-image {
/*circle added directly to image, check url*/
/*background: transparent url(/img/home-concept-item.png) no-repeat 0 0;*/
width: 220px;
height: 325px;
margin: 85px auto 0 auto; /* adjust small bubble position */
padding-bottom: 80px;
position: relative;
z-index: 1;
}
.home-concept .process-image img {
border-radius: 350px;
margin: 7px 8px;
}
/*
.home-concept .project-image {
background: transparent url(http://www.stoneriver.com/sites/all/themes/porto/img/home-concept-item-med.png) no-repeat 100% 0;
width: 350px;
height: 420px;
margin: 15px 0 0 -30px;
padding-bottom: 45px;
position: relative;
z-index: 1;
}
.home-concept .sun {
background: transparent url(../img/home-concept-icons.png) no-repeat 0 0;
width: 60px;
height: 56px;
display: block;
position: absolute;
left: 10%;
top: 35px;
}
*/
a {
color: #ff6600;
}
a {
background: none repeat scroll 0 0 transparent;
}
/*MENU
#header nav ul.nav-main ul.dropdown-menu, #header nav ul.nav-main li.dropdown.open .dropdown-toggle, #header nav ul.nav-main li.dropdown:hover a {
background-color: #ff6600;
color: #fff;
}
#header nav ul.nav-main li.dropdown:hover a {
background-color: #fff;
color: #ff6600;
}
*/
#header nav ul.nav-main ul.dropdown-menu, #header nav ul.nav-main li.active a, #header nav ul.nav-main li > a:hover, #header nav ul.nav-main li.dropdown:hover a {
background-color: #fff;
color: #ff6600;
}
section.page-top h2 {
border-bottom-color: #ff6600;
}
/*#header nav ul.nav-main ul.dropdown-menu, #header nav ul.nav-main li.dropdown.open .dropdown-toggle, #header nav ul.nav-main li.active a, #header nav ul.nav-main li > a:hover, #header nav ul.nav-main li.dropdown:hover a {
background-color: #ff6600;
color: #fff;
}
*/
/* END taken from porto site */
/* TWITTER BOX INFO*/
#footer .tweet-box{
color: #ffffff;
display: block;
font-size: 0.9em;
margin: -10px 0 5px;
/*filter: alpha(opacity=50);
opacity: 0.50;*/
}
#footer .tweet-box a {
color: #b7b7b7!important;
}
#footer .twitter-account {
a: #ffffff;
color: #ffffff;
display: block;
font-size: 0.9em;
margin: -15px 0 5px;
/*filter: alpha(opacity=55);
opacity: 0.55;*/
}
/* END TWITTER */
/* START SUB BANNER PRODUCT PAGES */
/* Sub Page Top Custom - pc Banner */
.page-top.custom-product {
/* background-image: url(../img/custom-header-bg.jpg);*/
background-image: url(http://www.stoneriver.com/sites/default/files/img/sub-banner/pc-banner.jpg);
background-repeat: repeat;
background-color: #999;
border-top: 5px solid #888;
}
.page-top.custom-product .row {
position: relative;
}
.page-top.custom-product p.lead {
color: #E8E8E8;
}
.page-top.custom-product img {
bottom: -20px;
position: relative;
}
.page-top.custom-product h1 {
color: #FFF;
margin-bottom: 10px;
margin-top: 30px;
}
/* Page Top Custom - Create your Own */
.page-top.custom-life-product {
/* background-image: url(../img/custom-header-bg.jpg);*/
background-image: url(http://www.stoneriver.com/sites/default/files/img/sub-banner/life-banner.jpg);
background-repeat: repeat;
background-color: #999;
border-top: 5px solid #888;
}
.page-top.custom-life-product .row {
position: relative;
}
.page-top.custom-life-product p.lead {
color: #E8E8E8;
}
.page-top.custom-life-product img {
bottom: -20px;
position: relative;
}
.page-top.custom-life-product h1 {
color: #FFF;
margin-bottom: 10px;
margin-top: 30px;
}
/* F&C Page Top Custom - Create your Own */
.page-top.custom-fc-product {
/* background-image: url(../img/custom-header-bg.jpg);*/
background-image: url(http://www.stoneriver.com/sites/default/files/img/sub-banner/fc-banner.jpg);
background-repeat: repeat;
background-color: #999;
border-top: 5px solid #888;
}
.page-top.custom-fc-product .row {
position: relative;
}
.page-top.custom-fc-product p.lead {
color: #E8E8E8;
}
.page-top.custom-fc-product img {
bottom: -20px;
position: relative;
}
.page-top.custom-fc-product h1 {
color: #FFF;
margin-bottom: 10px;
margin-top: 30px;
}
/* END SUB BANNER SECTION */
/* Paragraphs */
p {
color: #777777;
line-height: 24px;
margin: 0 0 20px;
}
/* Modal Titles */
.modal-header h3 {
color: #333;
text-transform: none;
}
/*ICONS */
ul.list.icons li i {
color: #ff6600;
margin-right: 5px;
}
/* Alternative Font Style */
.alternative-font {
color: #ff6600;
font-family: "Shadows Into Light", cursive;
font-size: 1.6em;
}
/* Buttons */
.btn-primary[disabled] {
border-color: #ff6600 !important;
background-image: none;
}
/* Word Rotate */
.word-rotate {
visibility: hidden;
width: 100px;
height: 0px;
margin-bottom: -7px;
display: inline-block;
overflow: hidden;
text-align: center;
position: relative;
}
.word-rotate.active {
visibility: visible;
width: auto;
}
.word-rotate .word-rotate-items {
position: relative;
top: 0;
width: 100%;
}
.word-rotate .word-rotate-items span {
display: block;
white-space: nowrap;
}
/* Word Rotate - Titles */
h1 .word-rotate {
margin-bottom: -12px;
}
h2 .word-rotate {
margin-bottom: -12px;
}
h2.word-rotator-title {
line-height: 54px;
}
/* #Footer */
#footer {
background: #666666;
border-top: 4px solid #666666;
font-size: 0.9em;
margin-top: 50px;
position: relative;
clear: both;
}
#footer .footer-copyright {
background: #fff;
border-top: 4px solid #111;
padding: 30px 0 10px;
}
#footer .footer-copyright {
background: none repeat scroll 0 0 #ffffff;
border-top: 4px solid #ffffff;
padding: 30px 0 10px;
}
#footer .footer-copyright nav ul li {
border-left: 1px solid #505050;
display: inline-block;
line-height: 12px;
margin: 0;
padding: 0 8px;
}
#footer ul.nav-list.primary > li a {
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
line-height: 20px;
padding-bottom: 11px;
}
#footer .alert a {
color: #fff !important;
}
#footer .alert a:hover {
color: #fff !important;
}
#footer h1, #footer h2, #footer h3, #footer h4 {
color: #fff !important;
}
#footer h4 {
font-size: 1.8em;
font-weight: 200;
text-shadow: 1px 1px 1px #000;
}
#footer h5 {
color: #fff !important;
}
#footer a {
color: #666666 !important;
}
/* Paragraphs */
p.footer {
color: #fff;
}
/
/* Owl Carousel */
.owl-carousel {
position: relative;
z-index: 1;
}
.owl-carousel .owl-wrapper-outer {
border-radius: 4px;
}
.owl-carousel .thumbnail {
max-width: 99%;
}
.owl-carousel .img-responsive {
display: inline-block;
}
.owl-carousel-spaced {
margin-left: -5px;
}
.owl-carousel-spaced .owl-item > div {
margin: 5px;
}
.owl-theme .owl-controls {
margin-top: 20px;
}
.owl-theme .owl-controls .owl-buttons div {
border-radius: 4px;
border-bottom: 2px solid transparent;
filter: alpha(opacity=100);
opacity: 1;
padding: 1px 9px;
margin: 2px;
}
</style><!-- End user defined CSS -->
</head>
<body class="html not-front not-logged-in no-sidebars page-pr ">
<div class="body">
<header id="header">
<div class="container">
<h1 class="logo">
<a href="/" title="Home" rel="home" id="logo">
<img src="http://www.stoneriver.com/sites/all/themes/Porto_sub/logo.png" alt="Home" height="40" data-sticky-height="23" />
</a>
</h1>
<div id="name-and-slogan" class="hidden">
<div id="site-name" class="hidden">
<a href="/" title="Home" rel="home"><span>StoneRiver</span></a>
</div>
<div id="site-slogan" class="hidden">
Insurance Software Solutions </div>
</div> <!-- /#name-and-slogan -->
<div class="search">
<form onsubmit="if(this.search_block_form.value=='Search'){ alert('Please enter a search'); return false; }" action="/pr/" method="post" id="search-block-form" accept-charset="UTF-8"><div>
<div class="input-group">
<input title="Enter the terms you wish to search for." class="form-control search form-text" onblur="if (this.value == '') {this.value = 'Search';}" onfocus="if (this.value == 'Search') {this.value = '';}" placeholder="Search" type="text" id="edit-search-block-form--2" name="search_block_form" value="" size="40" maxlength="128" /><span class="input-group-btn"><button class="btn btn-default" type="submit"><i class="icon icon-search"></i></button></span><input type="hidden" name="form_build_id" value="form-Z2a5NvP-SnixaMTzgLjM6LeRzDvnn4oZKuOLOgyMTbs" />
<input type="hidden" name="form_id" value="search_block_form" />
</div>
</div></form> </div>
<!-- /branding -->
<div id="header-top">
<div class="region region-header-top">
<div id="block-block-1" class="block block-block">
<div class="content">
<nav>
<ul class="nav nav-pills nav-top">
<li>
<a href="/about"><i class="icon icon-angle-right"></i>About Us</a>
</li>
<li>
<a href="/contact"><i class="icon icon-angle-right"></i>Contact Us</a>
</li>
<li>
<a href="/blog"><i class="icon icon-angle-right"></i>Blog</a>
</li>
<li>
<a href="/careers"><i class="icon icon-angle-right"></i>Careers</a>
</li>
<li>
<a href="/support"><i class="icon icon-angle-right"></i>Customer Login</a>
</li>
<!-- <li class="phone">
<span><i class="icon icon-phone"></i>(123) 456-7890</span>
</li>-->
</ul>
</nav> </div>
</div>
</div>
</div>
<button class="btn btn-responsive-nav btn-inverse" data-toggle="collapse" data-target=".nav-main-collapse">
<i class="icon icon-bars"></i>
</button>
</div>
<div class="navbar-collapse nav-main-collapse collapse">
<div class="container">
<div class="region region-header-icons">
<div id="block-block-22" class="block block-block">
<div class="content">
<div class="social-icons">
<ul class="social-icons">
<li class="facebook"><a href="https://www.facebook.com/pages/StoneRiver-Inc/20209379955?utm_source=stoneriver&utm_medium=Facebook&utm_campaign=social%2Bstoneriver" target="_blank" title="Facebook">Facebook</a></li>
<li class="twitter"><a href="https://twitter.com/StoneRiverIns?utm_source=stoneriver&utm_medium=Twitter&utm_campaign=social%2Bstoneriver" target="_blank" title="Twitter">Twitter</a></li>
<li class="linkedin"><a href="https://www.linkedin.com/company/stoneriver" target="_blank" title="Linkedin">Linkedin</a></li>
<li class="youtube"><a href="https://www.youtube.com/channel/UC99LVdg3Y_vi7sID3oWFbTg" target="_blank" title="YouTube">Youtube</a></li>
</ul>
</div> </div>
</div>
</div>
<nav class="nav-main">
<div class="region region-header-menu">
<div id="block-system-main-menu" class="block block-system block-menu">
<div class="content">
<ul class="nav nav-pills nav-main" id="mainMenu"><li class="dropdown 3296"><a class="dropdown-toggle extra" href="#"></a><a href="/about" class="dropdown-toggle disabled">Products & Services</a><ul class="dropdown-menu"><li class="dropdown-submenu"><a href="/pc/property-and-casualty-insurance-software">Property & Casualty</a><ul class="dropdown-menu"><li><a href="/pc/policy-administration">Policy Administration</a></li><li><a href="/pc/billing">Billing</a></li><li><a href="/pc/claims">Claims</a></li><li><a href="/pc/reinsurance">Reinsurance</a></li><li><a href="/pc/workers-comp">Workers' Comp</a></li><li><a href="/pc/distribution-management-software-personal-commercial-lines">Distribution Management</a></li><li><a href="/pc/customer-management">Customer Management</a></li><li><a href="/pc/services">Services</a></li></ul></li><li class="dropdown-submenu"><a href="/life/life-health-annuity-insurance-software">Life, Health, Annuity</a><ul class="dropdown-menu"><li><a href="/life/streamline-new-business-lifesuite-underwriting">Underwriting</a></li><li><a href="/life/illustrations-life-portraits%C2%AE">Illustrations</a></li><li><a href="/life/e-applications-lifeapply%C2%AE">E-Applications</a></li><li><a href="/life/policy-administration">Policy Administration</a></li><li><a href="/life/services">Services</a></li></ul></li><li class="dropdown-submenu"><a href="/fc/financial-compliance-solutions">Financial & Compliance</a><ul class="dropdown-menu"><li><a href="/fc/annual-statement">Annual Statement</a></li><li><a href="/fc/financial-gl-ap">Financial (GL/AP)</a></li><li><a href="/fc/stoneriver-reporting-tools">Reporting Tools</a></li><li><a href="/fc/power2pay">Payments</a></li><li><a href="/fc/services">Services</a></li><li><a href="/fc/testimonials-financal-compliance">Testimonials</a></li></ul></li></ul></li><li class="dropdown 347 active"><a class="dropdown-toggle extra" href="#"></a><a href="/events" class="active-trail dropdown-toggle disabled">News & Events</a><ul class="dropdown-menu"><li><a href="/events">Events</a></li><li><a href="http://www.stoneriver.com/webinars" title="Event Webinars">Webinars</a></li><li class="active"><a href="/pr" class="active-trail active">Press Releases</a></li><li><a href="http://www.regonline.com/stoneriversummit16" target="_blank">Summit</a></li><li><a href="/naic">NAIC Focus</a></li></ul></li><li class="dropdown 348"><a class="dropdown-toggle extra" href="#"></a><a href="/data-sheets" class="dropdown-toggle disabled">Knowledge Center</a><ul class="dropdown-menu"><li><a href="/blog" title="StoneRiver Blog">Blog</a></li><li><a href="http://www.stoneriver.com/tl#Thought-Leadership" title="">Thought Leadership</a></li><li><a href="/video">Video</a></li><li><a href="/data-sheets">Data Sheets</a></li><li class="dropdown-submenu"><a href="/training">Training</a><ul class="dropdown-menu"><li><a href="/financial-compliance-training">F&C</a></li><li><a href="/reinsurance-training">Reinsurance</a></li></ul></li><li><a href="/tl#Case-Study">Case Studies</a></li></ul></li></ul> </div>
</div>
</div>
</nav>
</div>
</div>
</header>
<!-- end header -->
<div role="main" class="main">
<section class="page-top breadcrumb-wrap">
<div class="container">
<div class="row">
<div class="col-md-12">
<h2>Press Release</h2>
</div>
</div>
</div>
</section>
<div id="content" class="content full">
<div class="container">
<div class="row">
<div class="col-md-9">
<div class="region region-content">
<div id="block-system-main" class="block block-system">
<div class="content">
<div class="view view-press-release view-id-press_release view-display-id-page view-dom-id-a8e88dd387fbb431f6e9974d03ef956b">
<div class="view-content">
<div>
<div id="node-533" class="node node-pr node-promoted node-teaser clearfix" about="/pr/mutual-reinsurance-bureau-selects-stoneriver-reinsurance-system" typeof="sioc:Item foaf:Document">
<h2><a href="/pr/mutual-reinsurance-bureau-selects-stoneriver-reinsurance-system">Mutual Reinsurance Bureau Selects StoneRiver Reinsurance System</a></h2>
<span property="dc:title" content="Mutual Reinsurance Bureau Selects StoneRiver Reinsurance System" class="rdf-meta element-hidden"></span><span property="sioc:num_replies" content="0" datatype="xsd:integer" class="rdf-meta element-hidden"></span>
<div class="content">
<div class="field field-name-body field-type-text-with-summary field-label-hidden"><div class="field-items"><div class="field-item even" property="content:encoded"><p align="center"><em>Universal Reinsurance System to modernize reinsurance administration</em></p>
<p><strong>Denver, CO – August 2, 2016 – </strong><a href="http://www.mutualre.com">Mutual Reinsurance Bureau</a>, an Illinois-based company that reinsures diverse companies across the U.S. and internationally, and <a href="http://www.stoneriver.com/">StoneRiver, Inc.</a>, a trusted insurance technology partner with solutions across multiple business lines, today announced that Mutual Reinsurance has selected StoneRiver’s <a href="http://www.stoneriver.com/pc/streamlining-administration-universal-reinsurance-system-urs">Universal Reinsurance System</a> (URS®) to increase efficiency and ensure accuracy in the reinsurance administration for its business partners.</p>
<p>The company selected URS to move away from reliance on a legacy system using old technology. The URS system will provide a modern and comprehensive reinsurance administrative system with full underwriting, claims, accounting, and reporting capabilities. </p></div></div></div> </div>
</div>
</div>
<div>
<div id="node-519" class="node node-pr node-promoted node-teaser clearfix" about="/pr/stoneriver-and-scriptura-engage-announce-strategic-alliance" typeof="sioc:Item foaf:Document">
<h2><a href="/pr/stoneriver-and-scriptura-engage-announce-strategic-alliance">StoneRiver and Scriptura Engage Announce a Strategic Alliance</a></h2>
<span property="dc:title" content="StoneRiver and Scriptura Engage Announce a Strategic Alliance" class="rdf-meta element-hidden"></span><span property="sioc:num_replies" content="0" datatype="xsd:integer" class="rdf-meta element-hidden"></span>
<div class="content">
<div class="field field-name-body field-type-text-with-summary field-label-hidden"><div class="field-items"><div class="field-item even" property="content:encoded"><p align="center"><em>Integration of Customer Communications and Workers’ Compensation Systems</em></p>
<p><strong>Denver, CO – June 28, 2016 – </strong><a href="http://www.stoneriver.com/">StoneRiver, Inc.</a>, the trusted insurance technology partner with solutions across multiple business lines, and <a href="https://www.scripturaengage.com/" target="_blank">Scriptura Engage</a>, today announced a cooperative marketing and technical alliance. The alliance allows the two companies to jointly market and deliver a comprehensive solution that provides a seamless integration between Scriptura Engage’s customer communications application and StoneRiver's <a href="http://www.stoneriver.com/pc/greater-workers-compensation-service-powersuite-policy-software">PowerSuite®</a> and <a href="http://www.stoneriver.com/pc/hosted-workers-compensation-administration-compsuite">CompSuite®</a> workers’ compensation systems. </p></div></div></div> </div>
</div>
</div>
<div>
<div id="node-509" class="node node-pr node-promoted node-teaser clearfix" about="/pr/strong-regional-carrier-production-stoneriver-s-stream-claims" typeof="sioc:Item foaf:Document">
<h2><a href="/pr/strong-regional-carrier-production-stoneriver-s-stream-claims">Strong Regional Carrier in Production with StoneRiver’s Stream® Claims</a></h2>
<span property="dc:title" content="Strong Regional Carrier in Production with StoneRiver’s Stream® Claims" class="rdf-meta element-hidden"></span><span property="sioc:num_replies" content="0" datatype="xsd:integer" class="rdf-meta element-hidden"></span>
<div class="content">
<div class="field field-name-body field-type-text-with-summary field-label-hidden"><div class="field-items"><div class="field-item even" property="content:encoded"><p><strong>Denver, CO – May 25, 2016 – </strong><a href="http://www.stoneriver.com/">StoneRiver, Inc</a>., the trusted insurance technology partner with solutions across multiple business lines, today announced that a significant regional carrier has gone live on <a href="http://www.stoneriver.com/pc/claims">Stream Claims</a>. The Stream Claims system streamlines end-to-end claims processing for all personal and commercial lines of business and is a component of the enterprise Stream Suite™.</p></div></div></div> </div>
</div>
</div>
<div>
<div id="node-472" class="node node-pr node-teaser clearfix" about="/pr/hallmark-financial-services-selects-stoneriver-s-freedom-reinsurance-system" typeof="sioc:Item foaf:Document">
<h2><a href="/pr/hallmark-financial-services-selects-stoneriver-s-freedom-reinsurance-system">Hallmark Financial Services Selects StoneRiver’s Freedom Reinsurance System</a></h2>
<span property="dc:title" content="Hallmark Financial Services Selects StoneRiver’s Freedom Reinsurance System" class="rdf-meta element-hidden"></span><span property="sioc:num_replies" content="0" datatype="xsd:integer" class="rdf-meta element-hidden"></span>
<div class="content">
<div class="field field-name-body field-type-text-with-summary field-label-hidden"><div class="field-items"><div class="field-item even" property="content:encoded"><p><strong>Denver, CO – March 14, 2016 – </strong><a href="http://www.stoneriver.com/">StoneRiver, Inc</a>., the trusted insurance technology partner with solutions across multiple business lines, today announced that Hallmark Financial Services (Hallmark) has selected StoneRiver’s Freedom Reinsurance System (FRS). FRS is designed to meet the ceded reinsurance processing needs of property-casualty insurers, from calculating premium and claim cessions to producing the data required for Schedule F.</p></div></div></div> </div>
</div>
</div>
<div>
<div id="node-452" class="node node-pr node-promoted node-teaser clearfix" about="/pr/arbella-insurance-production-workers-compensation-stoneriver-core-systems" typeof="sioc:Item foaf:Document">
<h2><a href="/pr/arbella-insurance-production-workers-compensation-stoneriver-core-systems">Arbella Insurance in Production for Workers’ Compensation on StoneRiver Core Systems</a></h2>
<span property="dc:title" content="Arbella Insurance in Production for Workers’ Compensation on StoneRiver Core Systems" class="rdf-meta element-hidden"></span><span property="sioc:num_replies" content="0" datatype="xsd:integer" class="rdf-meta element-hidden"></span>
<div class="content">
<div class="field field-name-body field-type-text-with-summary field-label-hidden"><div class="field-items"><div class="field-item even" property="content:encoded"> <p><strong>Denver, CO – February 4, 2016</strong> – StoneRiver, Inc., the trusted insurance technology partner with solutions across multiple business lines, today announced that Arbella® Insurance Group (Arbella) has gone live for their workers’ compensation business using StoneRiver core processing systems for policy and billing.</p>
</div></div></div> </div>
</div>
</div>
<div>
<div id="node-407" class="node node-pr node-promoted node-teaser clearfix" about="/pr/stoneriver-announces-availability-stream-policy" typeof="sioc:Item foaf:Document">
<h2><a href="/pr/stoneriver-announces-availability-stream-policy">StoneRiver Announces Availability of Stream® Policy</a></h2>
<span property="dc:title" content="StoneRiver Announces Availability of Stream® Policy" class="rdf-meta element-hidden"></span><span property="sioc:num_replies" content="0" datatype="xsd:integer" class="rdf-meta element-hidden"></span>
<div class="content">
<div class="field field-name-body field-type-text-with-summary field-label-hidden"><div class="field-items"><div class="field-item even" property="content:encoded"><p align="center"><em>Stream Policy completes StoneRiver’s Stream Suite™ of property and casualty core processing systems - enabling carriers to Power What’s NextSM</em></p>
<p><strong>Denver, CO – October 12, 2015 – </strong><a href="http://www.stoneriver.com/">StoneRiver Inc.</a>, the trusted insurance technology partner with solutions across multiple business lines, today announced that Stream Policy was released to the market as the final piece to its Stream Suite of fully integrated property and casualty core processing systems with multiple clients already in various Stream Policy implementation stages.</p></div></div></div> </div>
</div>
</div>
<div>
<div id="node-323" class="node node-pr node-teaser clearfix" about="/pr/gleaner-life-insurance-society-production-stoneriver%E2%80%99s-life-portraits%C2%AE-straight-through" typeof="sioc:Item foaf:Document">
<h2><a href="/pr/gleaner-life-insurance-society-production-stoneriver%E2%80%99s-life-portraits%C2%AE-straight-through">Gleaner Life Insurance Society in Production with StoneRiver’s Life Portraits® for Straight-through-Processing</a></h2>
<span property="dc:title" content="Gleaner Life Insurance Society in Production with StoneRiver’s Life Portraits® for Straight-through-Processing" class="rdf-meta element-hidden"></span><span property="sioc:num_replies" content="0" datatype="xsd:integer" class="rdf-meta element-hidden"></span>
<div class="content">
<div class="field field-name-body field-type-text-with-summary field-label-hidden"><div class="field-items"><div class="field-item even" property="content:encoded"><p><strong>Denver, CO – August 10, 2015 –</strong> StoneRiver, Inc. is proud to announce that Gleaner Life Insurance Society is in production with StoneRiver’s Life Portraits® Illustrations system. From kick off to production, the implementation time was seven months. </p>
<p>Using Life Portraits, Gleaner Life has advanced the capabilities and efficiency of their agents and more readily supports their unique marketing approach for their portfolio of term products. This product launch enables Gleaner Life agents to perform illustrations either via the web or in a disconnected mode.</p></div></div></div> </div>
</div>
</div>
<div>
<div id="node-257" class="node node-pr node-teaser clearfix" about="/pr/stoneriver-launches-stream%C2%AE-mobile-claims-field-adjuster-app-windows-8" typeof="sioc:Item foaf:Document">