
    body { margin: 0; background: #f3f4f6; overflow-x: hidden; }
    #page-container { position: relative; margin: 0 auto; padding: 0; overflow: visible; max-width: 100%; }
    .scieee-lazy-chunk { display: block; width: 100%; max-width: 100%; margin: 0 auto 24px auto; overflow-x: hidden; overflow-y: visible; box-sizing: border-box; }
    .scieee-lazy-chunk-content { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
    .scieee-lazy-chunk style { display: none !important; }
    .scieee-lazy-placeholder { width: 100%; max-width: 900px; margin: 12px auto; padding: 18px; box-sizing: border-box; background: #fff; color: #6b7280; border: 1px solid #e5e7eb; font: 13px system-ui, sans-serif; text-align: center; }
    .scieee-lazy-chunk.is-loaded { min-height: 0 !important; }
    .scieee-lazy-chunk.is-loaded > .scieee-lazy-placeholder { display: none; }
    .pf { margin-left: auto !important; margin-right: auto !important; }
  



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_7f5aaf7386dd409891f0e612.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.983000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_894a07ba233a85106cbda476.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.708000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_de81b79c0dcf3de070fa6ec0.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.983000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_d72829e30cdea48b2af26b84.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.678000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_ba364a458b1006b449cb0c94.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.983000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_cd9041619d50913fa7f0c49f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.761036;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_17d001562edde23fd29859c3.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.977000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_b160585336193a88e0973565.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.983000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_f502157c7f36df78811fb677.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.761000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_34e5ba20bb5368e0d796c795.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.927000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_916a4763695d4f069f594810.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.923000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_c5a124b002c002580960d2fc.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_e4bdfabfadfbc89e7eeb1673.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.656000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_4415b9c478ba11d5ddcece27.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.761000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_ec09bba3d084190c28655b10.woff2')format("woff");}.fff{font-family:fff;line-height:0.978000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_17c63cb0fb336b79d59fc5a8.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.593000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_f74c01e209a55201b0ac5557.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.417014;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_799429982c0a6eced429e212.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.720000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_318745bdddc0818e94d4cfa6.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.716000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m4{transform:matrix(0.239456,0.000000,-0.071837,0.239456,0,0);-ms-transform:matrix(0.239456,0.000000,-0.071837,0.239456,0,0);-webkit-transform:matrix(0.239456,0.000000,-0.071837,0.239456,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.281268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281268,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.281272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281272,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-20.409600px;}
.v6{vertical-align:-15.254400px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:3.820800px;}
.v5{vertical-align:15.252600px;}
.v4{vertical-align:18.000000px;}
.v2{vertical-align:20.413489px;}
.ls2{letter-spacing:-1.255262px;}
.ls57{letter-spacing:-1.183854px;}
.ls32{letter-spacing:-1.181182px;}
.ls6{letter-spacing:-1.096001px;}
.lsa{letter-spacing:-1.090322px;}
.ls7{letter-spacing:-1.084643px;}
.ls9{letter-spacing:-1.078964px;}
.ls4{letter-spacing:-1.067607px;}
.ls8{letter-spacing:-1.061928px;}
.lsd{letter-spacing:-1.050571px;}
.ls3{letter-spacing:-1.044892px;}
.lsc{letter-spacing:-1.039213px;}
.ls25{letter-spacing:-1.027856px;}
.ls48{letter-spacing:-1.022177px;}
.ls33{letter-spacing:-1.016778px;}
.lsb{letter-spacing:-1.010819px;}
.ls34{letter-spacing:-0.993783px;}
.ls31{letter-spacing:-0.982425px;}
.ls5{letter-spacing:-0.976747px;}
.ls1d{letter-spacing:-0.971068px;}
.ls56{letter-spacing:-0.970456px;}
.ls5b{letter-spacing:-0.914566px;}
.ls46{letter-spacing:-0.902923px;}
.ls59{letter-spacing:-0.899323px;}
.ls4a{letter-spacing:-0.897244px;}
.ls35{letter-spacing:-0.891565px;}
.ls30{letter-spacing:-0.880208px;}
.ls58{letter-spacing:-0.873918px;}
.ls23{letter-spacing:-0.868850px;}
.ls45{letter-spacing:-0.857493px;}
.ls44{letter-spacing:-0.851814px;}
.ls1f{letter-spacing:-0.846135px;}
.ls24{letter-spacing:-0.840456px;}
.ls49{letter-spacing:-0.834778px;}
.ls55{letter-spacing:-0.833271px;}
.ls2f{letter-spacing:-0.829099px;}
.ls5a{letter-spacing:-0.828190px;}
.ls47{letter-spacing:-0.823420px;}
.ls21{letter-spacing:-0.817741px;}
.ls2b{letter-spacing:-0.812063px;}
.ls42{letter-spacing:-0.806384px;}
.ls1e{letter-spacing:-0.800705px;}
.ls22{letter-spacing:-0.789348px;}
.ls5c{letter-spacing:-0.787543px;}
.ls27{letter-spacing:-0.783669px;}
.ls2e{letter-spacing:-0.777990px;}
.ls2d{letter-spacing:-0.772311px;}
.ls29{letter-spacing:-0.766633px;}
.ls41{letter-spacing:-0.755275px;}
.ls2a{letter-spacing:-0.749596px;}
.ls2c{letter-spacing:-0.743918px;}
.ls28{letter-spacing:-0.732560px;}
.ls4b{letter-spacing:-0.664415px;}
.ls1{letter-spacing:0.000000px;}
.ls50{letter-spacing:0.106699px;}
.lsf{letter-spacing:0.177917px;}
.ls14{letter-spacing:0.340726px;}
.ls3b{letter-spacing:1.896000px;}
.ls16{letter-spacing:2.915100px;}
.ls12{letter-spacing:2.915700px;}
.ls11{letter-spacing:3.255300px;}
.ls3c{letter-spacing:7.723124px;}
.ls3e{letter-spacing:7.737470px;}
.ls3d{letter-spacing:7.947883px;}
.ls40{letter-spacing:8.062654px;}
.ls3f{letter-spacing:8.077001px;}
.ls15{letter-spacing:8.342098px;}
.ls36{letter-spacing:8.682824px;}
.ls37{letter-spacing:8.779363px;}
.ls38{letter-spacing:9.023550px;}
.ls39{letter-spacing:9.120089px;}
.ls18{letter-spacing:9.335881px;}
.ls17{letter-spacing:9.364275px;}
.ls3a{letter-spacing:9.460814px;}
.lse{letter-spacing:9.676607px;}
.ls1a{letter-spacing:9.705001px;}
.ls54{letter-spacing:9.750285px;}
.ls51{letter-spacing:10.771550px;}
.ls13{letter-spacing:12.084401px;}
.ls4f{letter-spacing:12.133237px;}
.ls20{letter-spacing:12.356982px;}
.ls0{letter-spacing:12.924671px;}
.ls4d{letter-spacing:13.174826px;}
.ls4c{letter-spacing:15.197032px;}
.ls53{letter-spacing:15.532372px;}
.ls4e{letter-spacing:15.537453px;}
.ls19{letter-spacing:18.257213px;}
.ls52{letter-spacing:19.617432px;}
.ls1b{letter-spacing:19.665546px;}
.ls10{letter-spacing:20.466251px;}
.ls43{letter-spacing:21.692863px;}
.ls26{letter-spacing:24.123372px;}
.ls1c{letter-spacing:100.685669px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8f{word-spacing:-64.896869px;}
.wse4{word-spacing:-62.466360px;}
.ws70{word-spacing:-61.239748px;}
.wsb4{word-spacing:-59.030710px;}
.ws89{word-spacing:-53.130479px;}
.wsc9{word-spacing:-50.478498px;}
.wsab{word-spacing:-50.137772px;}
.ws108{word-spacing:-49.797046px;}
.wse1{word-spacing:-49.456321px;}
.ws97{word-spacing:-49.115595px;}
.ws1c0{word-spacing:-46.231291px;}
.ws105{word-spacing:-43.726452px;}
.ws149{word-spacing:-42.398276px;}
.ws133{word-spacing:-42.058745px;}
.ws90{word-spacing:-40.773497px;}
.ws10b{word-spacing:-40.109082px;}
.ws104{word-spacing:-40.040937px;}
.ws1ab{word-spacing:-39.123084px;}
.ws1f2{word-spacing:-37.939230px;}
.ws29{word-spacing:-37.294743px;}
.ws22{word-spacing:-37.236462px;}
.ws1e{word-spacing:-37.231979px;}
.ws20{word-spacing:-36.640213px;}
.ws1bd{word-spacing:-36.481006px;}
.ws2e{word-spacing:-35.532892px;}
.ws1d{word-spacing:-35.192178px;}
.ws2d{word-spacing:-33.179275px;}
.ws1c{word-spacing:-32.838561px;}
.ws112{word-spacing:-32.454113px;}
.ws126{word-spacing:-32.113388px;}
.ws107{word-spacing:-32.084994px;}
.ws103{word-spacing:-31.801056px;}
.ws109{word-spacing:-31.744268px;}
.wsfd{word-spacing:-31.568227px;}
.ws121{word-spacing:-31.437615px;}
.wsf9{word-spacing:-31.414900px;}
.wsbe{word-spacing:-31.409222px;}
.ws7a{word-spacing:-31.399174px;}
.wsc8{word-spacing:-31.380828px;}
.ws2b{word-spacing:-31.314314px;}
.wsbd{word-spacing:-31.278610px;}
.ws6e{word-spacing:-31.255895px;}
.wsc2{word-spacing:-31.250216px;}
.wsa8{word-spacing:-31.233180px;}
.wsc0{word-spacing:-31.230497px;}
.wsa7{word-spacing:-31.227046px;}
.wsaa{word-spacing:-31.096890px;}
.wsb3{word-spacing:-31.091211px;}
.wsfb{word-spacing:-31.068496px;}
.wsac{word-spacing:-31.062817px;}
.ws24{word-spacing:-30.857040px;}
.ws8c{word-spacing:-30.852703px;}
.ws96{word-spacing:-30.812952px;}
.ws173{word-spacing:-30.778879px;}
.ws25{word-spacing:-30.771861px;}
.ws99{word-spacing:-30.597118px;}
.ws91{word-spacing:-30.563086px;}
.ws9a{word-spacing:-30.534693px;}
.wsda{word-spacing:-30.438154px;}
.ws21{word-spacing:-30.431147px;}
.wse0{word-spacing:-30.409760px;}
.wse7{word-spacing:-30.341615px;}
.ws27{word-spacing:-30.175611px;}
.ws125{word-spacing:-30.103107px;}
.ws2a{word-spacing:-30.090433px;}
.ws57{word-spacing:-29.875956px;}
.ws42{word-spacing:-29.762381px;}
.ws61{word-spacing:-29.188826px;}
.wsdd{word-spacing:-29.075251px;}
.ws102{word-spacing:-28.973034px;}
.ws111{word-spacing:-28.921925px;}
.ws106{word-spacing:-28.876495px;}
.wsea{word-spacing:-28.609593px;}
.ws195{word-spacing:-28.399479px;}
.wse9{word-spacing:-28.342691px;}
.ws8a{word-spacing:-28.280225px;}
.ws191{word-spacing:-28.240473px;}
.ws177{word-spacing:-28.001966px;}
.wsa5{word-spacing:-27.962214px;}
.ws11a{word-spacing:-27.911105px;}
.ws81{word-spacing:-27.899748px;}
.ws95{word-spacing:-27.871354px;}
.ws83{word-spacing:-27.831603px;}
.wsf1{word-spacing:-27.763458px;}
.ws172{word-spacing:-27.757779px;}
.ws152{word-spacing:-27.718028px;}
.ws94{word-spacing:-27.700991px;}
.ws87{word-spacing:-27.661240px;}
.wsb2{word-spacing:-27.587416px;}
.ws39{word-spacing:-27.519271px;}
.wsdb{word-spacing:-27.496556px;}
.ws124{word-spacing:-27.422732px;}
.ws33{word-spacing:-27.394338px;}
.ws203{word-spacing:-27.365835px;}
.ws1f3{word-spacing:-27.340431px;}
.ws169{word-spacing:-27.326193px;}
.ws8b{word-spacing:-27.286442px;}
.ws1c4{word-spacing:-27.259136px;}
.ws1c3{word-spacing:-27.218488px;}
.ws197{word-spacing:-26.905965px;}
.ws1e2{word-spacing:-26.888229px;}
.ws15d{word-spacing:-26.832141px;}
.wseb{word-spacing:-26.826462px;}
.ws164{word-spacing:-26.741281px;}
.ws14a{word-spacing:-26.712922px;}
.ws88{word-spacing:-26.695851px;}
.ws41{word-spacing:-26.673136px;}
.ws148{word-spacing:-26.650755px;}
.ws141{word-spacing:-26.645973px;}
.ws131{word-spacing:-26.641191px;}
.ws17a{word-spacing:-26.616348px;}
.wscd{word-spacing:-26.604991px;}
.wsdc{word-spacing:-26.582276px;}
.ws13f{word-spacing:-26.492945px;}
.ws127{word-spacing:-26.491415px;}
.ws18a{word-spacing:-26.480058px;}
.wsf6{word-spacing:-26.468700px;}
.ws60{word-spacing:-26.400555px;}
.ws142{word-spacing:-26.368610px;}
.ws18d{word-spacing:-26.360804px;}
.ws43{word-spacing:-26.349446px;}
.ws1a2{word-spacing:-26.311224px;}
.ws84{word-spacing:-26.286980px;}
.ws6b{word-spacing:-26.252907px;}
.ws40{word-spacing:-26.201799px;}
.ws44{word-spacing:-26.133654px;}
.ws115{word-spacing:-26.059830px;}
.ws11c{word-spacing:-26.031436px;}
.ws51{word-spacing:-25.991685px;}
.wse3{word-spacing:-25.980327px;}
.ws5f{word-spacing:-25.912182px;}
.ws10a{word-spacing:-25.883788px;}
.ws32{word-spacing:-25.804285px;}
.ws183{word-spacing:-25.787249px;}
.ws202{word-spacing:-25.750103px;}
.ws205{word-spacing:-25.709455px;}
.ws28{word-spacing:-25.697015px;}
.ws114{word-spacing:-25.560099px;}
.ws181{word-spacing:-25.543062px;}
.ws98{word-spacing:-25.435166px;}
.ws15f{word-spacing:-25.389736px;}
.ws163{word-spacing:-25.378378px;}
.ws168{word-spacing:-25.338627px;}
.ws15a{word-spacing:-25.332948px;}
.wscc{word-spacing:-25.270482px;}
.ws113{word-spacing:-25.151228px;}
.ws153{word-spacing:-25.122834px;}
.ws1e3{word-spacing:-25.079421px;}
.wsa6{word-spacing:-25.066047px;}
.ws199{word-spacing:-24.997902px;}
.ws3f{word-spacing:-24.986544px;}
.ws154{word-spacing:-24.975186px;}
.ws17c{word-spacing:-24.958150px;}
.ws9b{word-spacing:-24.952471px;}
.ws58{word-spacing:-24.861611px;}
.wsa4{word-spacing:-24.753715px;}
.ws185{word-spacing:-24.713964px;}
.ws16e{word-spacing:-24.685570px;}
.ws10e{word-spacing:-24.657176px;}
.ws1e8{word-spacing:-24.642462px;}
.ws1c2{word-spacing:-24.617057px;}
.ws1f4{word-spacing:-24.591653px;}
.ws13d{word-spacing:-24.455762px;}
.ws1c6{word-spacing:-24.429063px;}
.wsed{word-spacing:-24.367559px;}
.ws150{word-spacing:-24.361880px;}
.ws1e1{word-spacing:-24.352850px;}
.ws1e7{word-spacing:-24.312202px;}
.ws1c5{word-spacing:-24.256312px;}
.wsec{word-spacing:-24.236948px;}
.wsf0{word-spacing:-24.225590px;}
.ws1e0{word-spacing:-24.210584px;}
.wsef{word-spacing:-24.197196px;}
.ws122{word-spacing:-24.140409px;}
.ws9f{word-spacing:-24.112015px;}
.ws1fb{word-spacing:-24.053075px;}
.ws68{word-spacing:-24.021155px;}
.ws47{word-spacing:-23.975725px;}
.ws1be{word-spacing:-23.926052px;}
.ws9e{word-spacing:-23.884865px;}
.ws160{word-spacing:-23.879186px;}
.wsf3{word-spacing:-23.873507px;}
.ws3e{word-spacing:-23.867828px;}
.ws1d1{word-spacing:-23.865081px;}
.ws20a{word-spacing:-23.839677px;}
.wsf2{word-spacing:-23.839434px;}
.ws7c{word-spacing:-23.828077px;}
.ws1ac{word-spacing:-23.819353px;}
.wsb0{word-spacing:-23.816719px;}
.ws1db{word-spacing:-23.773625px;}
.ws208{word-spacing:-23.758382px;}
.ws1a5{word-spacing:-23.748220px;}
.ws1b7{word-spacing:-23.738058px;}
.ws66{word-spacing:-23.714502px;}
.ws1dd{word-spacing:-23.712654px;}
.ws186{word-spacing:-23.708823px;}
.ws1b0{word-spacing:-23.707573px;}
.ws207{word-spacing:-23.702492px;}
.ws171{word-spacing:-23.680429px;}
.ws1d6{word-spacing:-23.666925px;}
.wsff{word-spacing:-23.663393px;}
.ws1bb{word-spacing:-23.661844px;}
.ws1c1{word-spacing:-23.631359px;}
.ws1b2{word-spacing:-23.621197px;}
.wsee{word-spacing:-23.612284px;}
.ws1ce{word-spacing:-23.611035px;}
.ws20d{word-spacing:-23.580550px;}
.ws17b{word-spacing:-23.561175px;}
.wsba{word-spacing:-23.555496px;}
.ws190{word-spacing:-23.510066px;}
.ws1d9{word-spacing:-23.473850px;}
.ws1b3{word-spacing:-23.458608px;}
.ws1bc{word-spacing:-23.453527px;}
.ws7b{word-spacing:-23.379455px;}
.ws1c8{word-spacing:-23.362070px;}
.ws15b{word-spacing:-23.339704px;}
.wsc7{word-spacing:-23.322667px;}
.wsa1{word-spacing:-23.299952px;}
.ws9d{word-spacing:-23.237486px;}
.wse2{word-spacing:-23.197735px;}
.ws52{word-spacing:-23.123911px;}
.wsf7{word-spacing:-23.106874px;}
.ws174{word-spacing:-23.078481px;}
.wsd6{word-spacing:-22.964905px;}
.ws162{word-spacing:-22.959227px;}
.ws9c{word-spacing:-22.953548px;}
.ws1c9{word-spacing:-22.914949px;}
.ws120{word-spacing:-22.908118px;}
.wsdf{word-spacing:-22.646895px;}
.wsb5{word-spacing:-22.635537px;}
.ws1f7{word-spacing:-22.574528px;}
.ws158{word-spacing:-22.567392px;}
.ws72{word-spacing:-22.544677px;}
.wsd5{word-spacing:-22.510605px;}
.ws20f{word-spacing:-22.467828px;}
.ws1ca{word-spacing:-22.462747px;}
.wsfa{word-spacing:-22.425423px;}
.ws118{word-spacing:-22.379993px;}
.ws11d{word-spacing:-22.351599px;}
.ws159{word-spacing:-22.328884px;}
.ws17f{word-spacing:-22.317527px;}
.ws167{word-spacing:-22.311848px;}
.ws4a{word-spacing:-22.141485px;}
.ws45{word-spacing:-21.976801px;}
.ws13c{word-spacing:-21.969059px;}
.ws65{word-spacing:-21.937050px;}
.ws206{word-spacing:-21.893684px;}
.ws209{word-spacing:-21.873361px;}
.ws13e{word-spacing:-21.854288px;}
.ws1d3{word-spacing:-21.665043px;}
.ws31{word-spacing:-21.658791px;}
.wscf{word-spacing:-21.550894px;}
.ws193{word-spacing:-21.533858px;}
.wsce{word-spacing:-21.420283px;}
.ws182{word-spacing:-21.391889px;}
.ws1d0{word-spacing:-21.319540px;}
.ws38{word-spacing:-21.318065px;}
.ws151{word-spacing:-21.312386px;}
.ws11b{word-spacing:-21.301029px;}
.ws1a7{word-spacing:-21.283974px;}
.ws1fa{word-spacing:-21.278893px;}
.ws46{word-spacing:-21.272635px;}
.ws1c7{word-spacing:-21.258569px;}
.ws20b{word-spacing:-21.248407px;}
.ws1dc{word-spacing:-21.238246px;}
.ws21a{word-spacing:-21.207760px;}
.ws1f0{word-spacing:-21.187436px;}
.ws20c{word-spacing:-21.172194px;}
.ws165{word-spacing:-21.124987px;}
.ws20e{word-spacing:-21.111223px;}
.ws54{word-spacing:-21.096593px;}
.ws1ed{word-spacing:-21.095980px;}
.wsf5{word-spacing:-21.090915px;}
.ws48{word-spacing:-21.079557px;}
.ws1cd{word-spacing:-21.040090px;}
.ws67{word-spacing:-20.983018px;}
.ws15{word-spacing:-20.954874px;}
.ws1de{word-spacing:-20.948633px;}
.ws1bf{word-spacing:-20.943552px;}
.ws170{word-spacing:-20.943267px;}
.ws1d8{word-spacing:-20.836853px;}
.ws7f{word-spacing:-20.727474px;}
.ws19b{word-spacing:-20.682044px;}
.ws136{word-spacing:-20.673105px;}
.ws71{word-spacing:-20.659329px;}
.ws5a{word-spacing:-20.619578px;}
.ws143{word-spacing:-20.610937px;}
.ws184{word-spacing:-20.585505px;}
.ws4c{word-spacing:-20.574147px;}
.ws1da{word-spacing:-20.511674px;}
.ws18b{word-spacing:-20.466251px;}
.wsa2{word-spacing:-20.449215px;}
.ws1af{word-spacing:-20.415137px;}
.ws135{word-spacing:-20.309664px;}
.wsd{word-spacing:-20.293758px;}
.ws14f{word-spacing:-20.261816px;}
.ws59{word-spacing:-20.227743px;}
.ws0{word-spacing:-20.218441px;}
.ws1{word-spacing:-20.205888px;}
.ws11{word-spacing:-20.176598px;}
.ws161{word-spacing:-20.159598px;}
.ws137{word-spacing:-20.156636px;}
.ws6f{word-spacing:-20.136883px;}
.ws4{word-spacing:-20.134755px;}
.ws14{word-spacing:-20.084544px;}
.ws2{word-spacing:-20.076175px;}
.wse8{word-spacing:-20.063059px;}
.ws8{word-spacing:-20.059438px;}
.ws3{word-spacing:-20.055254px;}
.ws10f{word-spacing:-20.046023px;}
.ws9{word-spacing:-20.034333px;}
.ws110{word-spacing:-20.028987px;}
.wse{word-spacing:-19.963200px;}
.ws12{word-spacing:-19.959016px;}
.ws1f6{word-spacing:-19.947692px;}
.wsd8{word-spacing:-19.938126px;}
.ws1cf{word-spacing:-19.927368px;}
.ws5{word-spacing:-19.925541px;}
.wsc{word-spacing:-19.917173px;}
.wsa{word-spacing:-19.896251px;}
.ws1e6{word-spacing:-19.891802px;}
.ws180{word-spacing:-19.887018px;}
.ws35{word-spacing:-19.858624px;}
.wsf{word-spacing:-19.858593px;}
.ws7{word-spacing:-19.854409px;}
.ws86{word-spacing:-19.835909px;}
.ws13{word-spacing:-19.816750px;}
.ws146{word-spacing:-19.778848px;}
.ws6{word-spacing:-19.753986px;}
.ws49{word-spacing:-19.733691px;}
.ws16{word-spacing:-19.712143px;}
.ws3b{word-spacing:-19.688261px;}
.wsca{word-spacing:-19.659867px;}
.ws3a{word-spacing:-19.637152px;}
.ws17{word-spacing:-19.607536px;}
.ws62{word-spacing:-19.597401px;}
.ws64{word-spacing:-19.580364px;}
.ws215{word-spacing:-19.566623px;}
.ws14e{word-spacing:-19.324820px;}
.ws16f{word-spacing:-19.256675px;}
.ws166{word-spacing:-19.131742px;}
.ws211{word-spacing:-18.961993px;}
.wsbf{word-spacing:-18.927307px;}
.ws11f{word-spacing:-18.915950px;}
.wsb8{word-spacing:-18.904592px;}
.wsb9{word-spacing:-18.898913px;}
.ws1ec{word-spacing:-18.855294px;}
.ws1ad{word-spacing:-18.601248px;}
.ws1ee{word-spacing:-18.565682px;}
.ws194{word-spacing:-18.535473px;}
.wsfe{word-spacing:-18.524115px;}
.ws1fc{word-spacing:-18.408173px;}
.ws1d7{word-spacing:-18.311636px;}
.ws1a8{word-spacing:-18.184613px;}
.wsbb{word-spacing:-18.172897px;}
.ws1d2{word-spacing:-18.082994px;}
.ws187{word-spacing:-18.069814px;}
.ws1ae{word-spacing:-18.037266px;}
.ws5b{word-spacing:-18.035742px;}
.ws3c{word-spacing:-17.995990px;}
.ws1b6{word-spacing:-17.905162px;}
.wsa0{word-spacing:-17.899452px;}
.ws18e{word-spacing:-17.882415px;}
.ws78{word-spacing:-17.797234px;}
.ws19c{word-spacing:-17.712052px;}
.ws116{word-spacing:-17.699476px;}
.ws4d{word-spacing:-17.677980px;}
.ws189{word-spacing:-17.626871px;}
.ws37{word-spacing:-17.609835px;}
.ws147{word-spacing:-17.574291px;}
.ws19a{word-spacing:-17.558726px;}
.ws76{word-spacing:-17.541690px;}
.ws1cb{word-spacing:-17.417394px;}
.ws145{word-spacing:-17.383006px;}
.ws1e5{word-spacing:-17.356423px;}
.ws123{word-spacing:-17.354291px;}
.ws16b{word-spacing:-17.348612px;}
.ws1df{word-spacing:-17.239562px;}
.ws200{word-spacing:-17.183671px;}
.ws198{word-spacing:-17.166891px;}
.ws34{word-spacing:-17.104425px;}
.ws4b{word-spacing:-17.053316px;}
.ws36{word-spacing:-17.019244px;}
.ws1ba{word-spacing:-17.016001px;}
.ws16d{word-spacing:-16.877275px;}
.ws214{word-spacing:-16.680660px;}
.ws75{word-spacing:-16.621731px;}
.wsf4{word-spacing:-16.610373px;}
.wsd7{word-spacing:-16.587658px;}
.ws210{word-spacing:-16.528233px;}
.ws4f{word-spacing:-16.496798px;}
.wsd9{word-spacing:-16.371865px;}
.ws1ef{word-spacing:-16.335158px;}
.wsb7{word-spacing:-16.195824px;}
.ws5c{word-spacing:-15.855098px;}
.ws1b1{word-spacing:-15.832147px;}
.ws15c{word-spacing:-15.809668px;}
.wsf8{word-spacing:-15.679056px;}
.ws93{word-spacing:-15.548445px;}
.ws17e{word-spacing:-15.474621px;}
.ws201{word-spacing:-15.374864px;}
.ws219{word-spacing:-15.263084px;}
.ws1cc{word-spacing:-15.222436px;}
.ws213{word-spacing:-15.212274px;}
.ws1fe{word-spacing:-15.191951px;}
.ws15e{word-spacing:-15.185004px;}
.wsd0{word-spacing:-15.111180px;}
.ws16a{word-spacing:-15.082787px;}
.ws8e{word-spacing:-14.997605px;}
.wse5{word-spacing:-14.969211px;}
.ws8d{word-spacing:-14.935139px;}
.wsa3{word-spacing:-14.889709px;}
.wsfc{word-spacing:-14.821564px;}
.ws188{word-spacing:-14.759097px;}
.ws1b9{word-spacing:-14.531431px;}
.ws5e{word-spacing:-14.497874px;}
.ws128{word-spacing:-14.333190px;}
.ws1aa{word-spacing:-14.292628px;}
.ws6c{word-spacing:-14.208258px;}
.ws13b{word-spacing:-14.207679px;}
.ws1a4{word-spacing:-14.058906px;}
.ws10c{word-spacing:-13.952713px;}
.ws1f5{word-spacing:-13.754050px;}
.ws101{word-spacing:-13.713059px;}
.ws100{word-spacing:-13.707679px;}
.wsd1{word-spacing:-13.663097px;}
.ws12f{word-spacing:-13.657735px;}
.wsd2{word-spacing:-13.557046px;}
.wsd4{word-spacing:-13.546286px;}
.ws1ff{word-spacing:-13.530490px;}
.ws12a{word-spacing:-13.500000px;}
.ws85{word-spacing:-13.406412px;}
.ws1ea{word-spacing:-13.367901px;}
.ws7d{word-spacing:-13.347234px;}
.ws12b{word-spacing:-13.344000px;}
.wsae{word-spacing:-13.248547px;}
.wsb1{word-spacing:-13.245018px;}
.ws6a{word-spacing:-13.201980px;}
.wsaf{word-spacing:-13.134972px;}
.wscb{word-spacing:-13.126663px;}
.ws79{word-spacing:-13.117936px;}
.ws73{word-spacing:-13.021397px;}
.wsad{word-spacing:-12.993003px;}
.ws155{word-spacing:-12.947573px;}
.ws30{word-spacing:-12.924858px;}
.ws4e{word-spacing:-12.907821px;}
.ws1a0{word-spacing:-12.892596px;}
.ws50{word-spacing:-12.862391px;}
.ws17d{word-spacing:-12.794246px;}
.ws55{word-spacing:-12.726101px;}
.ws1b8{word-spacing:-12.605763px;}
.ws82{word-spacing:-12.527345px;}
.ws139{word-spacing:-12.000000px;}
.ws5d{word-spacing:-11.914038px;}
.ws74{word-spacing:-11.783427px;}
.ws138{word-spacing:-11.676000px;}
.ws212{word-spacing:-11.477798px;}
.ws130{word-spacing:-11.395792px;}
.ws1a9{word-spacing:-11.376180px;}
.ws1a3{word-spacing:-11.330452px;}
.wsc4{word-spacing:-11.198515px;}
.ws63{word-spacing:-11.147406px;}
.ws12e{word-spacing:-11.099301px;}
.ws53{word-spacing:-10.931613px;}
.ws1e4{word-spacing:-10.812198px;}
.ws1a1{word-spacing:-10.774116px;}
.ws19f{word-spacing:-10.764552px;}
.ws16c{word-spacing:-10.738535px;}
.wsb{word-spacing:-10.674098px;}
.ws1e9{word-spacing:-10.446372px;}
.wsb6{word-spacing:-10.392131px;}
.ws10{word-spacing:-10.264039px;}
.ws12c{word-spacing:-10.008000px;}
.ws144{word-spacing:-9.444687px;}
.ws218{word-spacing:-8.861124px;}
.ws196{word-spacing:-8.824793px;}
.wsc3{word-spacing:-8.643073px;}
.ws217{word-spacing:-8.612159px;}
.ws1f1{word-spacing:-8.459732px;}
.ws13a{word-spacing:-8.340000px;}
.ws192{word-spacing:-8.103591px;}
.ws1eb{word-spacing:-7.753484px;}
.ws18c{word-spacing:-6.672543px;}
.ws156{word-spacing:-6.604398px;}
.wse6{word-spacing:-6.456750px;}
.ws216{word-spacing:-6.295260px;}
.ws10d{word-spacing:-5.763941px;}
.ws157{word-spacing:-5.650366px;}
.ws18f{word-spacing:-5.559506px;}
.ws179{word-spacing:-4.968915px;}
.wsc1{word-spacing:-4.719050px;}
.ws176{word-spacing:-3.952417px;}
.wsc5{word-spacing:-3.520831px;}
.ws1f8{word-spacing:-3.510916px;}
.wsc6{word-spacing:-3.361826px;}
.ws12d{word-spacing:-3.323573px;}
.ws175{word-spacing:-3.106282px;}
.ws1b4{word-spacing:-2.743697px;}
.ws19e{word-spacing:-2.300200px;}
.ws3d{word-spacing:-1.987566px;}
.ws11e{word-spacing:-1.567338px;}
.ws1f9{word-spacing:-1.097479px;}
.ws2f{word-spacing:-0.059776px;}
.ws92{word-spacing:-0.056788px;}
.ws1a6{word-spacing:-0.050809px;}
.ws132{word-spacing:-0.047821px;}
.ws19d{word-spacing:-0.042000px;}
.ws77{word-spacing:-0.037855px;}
.ws134{word-spacing:-0.031876px;}
.ws56{word-spacing:0.000000px;}
.ws204{word-spacing:0.863756px;}
.ws80{word-spacing:1.669555px;}
.ws140{word-spacing:3.486165px;}
.ws1b5{word-spacing:3.846256px;}
.ws6d{word-spacing:5.144957px;}
.ws119{word-spacing:6.178491px;}
.ws23{word-spacing:7.455362px;}
.ws1d5{word-spacing:7.474033px;}
.ws1f{word-spacing:7.549507px;}
.ws1fd{word-spacing:8.154877px;}
.wsde{word-spacing:8.876637px;}
.ws7e{word-spacing:9.829934px;}
.ws1d4{word-spacing:10.105950px;}
.wsa9{word-spacing:10.431882px;}
.ws2c{word-spacing:11.194251px;}
.ws26{word-spacing:13.915480px;}
.wsbc{word-spacing:14.077646px;}
.ws178{word-spacing:14.083325px;}
.ws14b{word-spacing:15.881111px;}
.ws14d{word-spacing:15.945668px;}
.wsd3{word-spacing:16.085542px;}
.ws117{word-spacing:16.429848px;}
.ws14c{word-spacing:16.715171px;}
.ws69{word-spacing:17.980500px;}
.ws1b{word-spacing:19.390855px;}
.ws1a{word-spacing:21.461796px;}
.ws18{word-spacing:21.641122px;}
.ws19{word-spacing:22.057159px;}
.ws129{word-spacing:185.251200px;}
._17{margin-left:-25.100119px;}
._20{margin-left:-22.737755px;}
._21{margin-left:-21.653112px;}
._13{margin-left:-20.466251px;}
._1b{margin-left:-18.257213px;}
._16{margin-left:-13.993867px;}
._15{margin-left:-12.798523px;}
._28{margin-left:-11.376180px;}
._19{margin-left:-9.439526px;}
._24{margin-left:-8.423118px;}
._23{margin-left:-7.122694px;}
._2{margin-left:-2.263955px;}
._1{margin-left:-1.250779px;}
._0{width:1.297127px;}
._5{width:6.554263px;}
._18{width:7.802616px;}
._4{width:9.024440px;}
._3{width:10.351432px;}
._29{width:11.501068px;}
._7{width:12.736430px;}
._a{width:14.142534px;}
._6{width:15.596635px;}
._8{width:17.600572px;}
._d{width:19.295214px;}
._9{width:20.335251px;}
._11{width:21.638015px;}
._b{width:23.679512px;}
._1c{width:25.611208px;}
._e{width:26.649098px;}
._f{width:28.467693px;}
._1a{width:29.574218px;}
._10{width:30.906999px;}
._1d{width:33.413824px;}
._1f{width:35.117452px;}
._27{width:36.332706px;}
._1e{width:37.468458px;}
._c{width:38.939257px;}
._22{width:40.268087px;}
._26{width:43.561768px;}
._12{width:46.951988px;}
._14{width:51.901579px;}
._25{width:100.880728px;}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:12.000000px;}
.fs14{font-size:18.000000px;}
.fs12{font-size:24.000000px;}
.fsb{font-size:30.000000px;}
.fs10{font-size:31.876200px;}
.fs16{font-size:33.869400px;}
.fse{font-size:36.000000px;}
.fs8{font-size:37.854600px;}
.fs9{font-size:39.750600px;}
.fs2{font-size:41.842800px;}
.fs11{font-size:42.000000px;}
.fs3{font-size:43.038600px;}
.fs6{font-size:44.830800px;}
.fsf{font-size:47.821200px;}
.fsa{font-size:48.000000px;}
.fs15{font-size:50.809200px;}
.fs1{font-size:53.797800px;}
.fsc{font-size:54.000000px;}
.fs13{font-size:56.166569px;}
.fs7{font-size:56.787600px;}
.fs0{font-size:59.775600px;}
.fs5{font-size:65.754000px;}
.fs4{font-size:71.730600px;}
.y0{bottom:0.000000px;}
.y1{bottom:50.343300px;}
.y1bf{bottom:99.494124px;}
.y186{bottom:99.564273px;}
.y148{bottom:99.581093px;}
.y14a{bottom:99.581100px;}
.y15e{bottom:99.581110px;}
.y1c{bottom:99.917974px;}
.y89{bottom:100.260396px;}
.ycf{bottom:100.260864px;}
.y49{bottom:100.588910px;}
.y149{bottom:104.853450px;}
.y15f{bottom:104.938500px;}
.y1b{bottom:113.439474px;}
.y147{bottom:114.463050px;}
.y145{bottom:114.463060px;}
.y15d{bottom:114.547950px;}
.y185{bottom:115.977309px;}
.y1be{bottom:115.992342px;}
.ycc{bottom:116.672946px;}
.y88{bottom:116.673433px;}
.yce{bottom:116.673900px;}
.y48{bottom:117.001947px;}
.y146{bottom:119.820450px;}
.ycd{bottom:123.051900px;}
.y1a{bottom:126.876243px;}
.y144{bottom:129.429900px;}
.y184{bottom:132.390345px;}
.y1bd{bottom:132.405378px;}
.y87{bottom:133.171164px;}
.y47{bottom:133.500164px;}
.y19{bottom:140.313013px;}
.y15c{bottom:144.337650px;}
.y15a{bottom:144.337950px;}
.y1bc{bottom:148.818414px;}
.y183{bottom:148.888563px;}
.y84{bottom:149.582760px;}
.y86{bottom:149.584200px;}
.y46{bottom:149.913200px;}
.y18{bottom:153.749782px;}
.y85{bottom:155.877150px;}
.y157{bottom:157.186650px;}
.y158{bottom:157.578000px;}
.y13c{bottom:158.329500px;}
.y15b{bottom:158.587200px;}
.y159{bottom:158.587500px;}
.y1bb{bottom:165.231450px;}
.y182{bottom:165.301599px;}
.y83{bottom:165.995796px;}
.y45{bottom:166.326236px;}
.y17{bottom:167.186551px;}
.y14b{bottom:172.225500px;}
.ycb{bottom:174.246089px;}
.y16{bottom:180.623320px;}
.y181{bottom:181.714635px;}
.y13e{bottom:182.329350px;}
.y141{bottom:182.329800px;}
.y82{bottom:182.494014px;}
.y44{bottom:182.824454px;}
.y1ba{bottom:189.892950px;}
.y14d{bottom:191.903850px;}
.yca{bottom:192.189000px;}
.y13d{bottom:196.578900px;}
.y140{bottom:196.579350px;}
.y180{bottom:198.212852px;}
.y7f{bottom:198.906564px;}
.y81{bottom:198.907050px;}
.y43{bottom:199.237490px;}
.y80{bottom:205.200000px;}
.y15{bottom:207.580544px;}
.y13b{bottom:209.329050px;}
.y13f{bottom:209.329500px;}
.y14e{bottom:210.970650px;}
.y17f{bottom:214.625888px;}
.y7c{bottom:215.318646px;}
.y7e{bottom:215.319600px;}
.y42{bottom:215.650526px;}
.y14{bottom:221.016267px;}
.y7d{bottom:221.612550px;}
.y130{bottom:222.943650px;}
.yc9{bottom:225.014100px;}
.y14f{bottom:230.651850px;}
.y17e{bottom:231.038924px;}
.y7b{bottom:231.731683px;}
.y41{bottom:232.148743px;}
.y13{bottom:234.451990px;}
.y131{bottom:238.808100px;}
.y1b9{bottom:247.423567px;}
.y17d{bottom:247.451960px;}
.y12{bottom:247.887713px;}
.y78{bottom:248.229078px;}
.y7a{bottom:248.229900px;}
.y40{bottom:248.561779px;}
.y150{bottom:250.333050px;}
.y79{bottom:254.522700px;}
.y132{bottom:254.844150px;}
.y11{bottom:261.323436px;}
.y143{bottom:263.472300px;}
.y1b8{bottom:263.836603px;}
.y17c{bottom:263.950178px;}
.y77{bottom:264.642114px;}
.y3f{bottom:264.974816px;}
.y151{bottom:269.396250px;}
.y133{bottom:272.029800px;}
.yc8{bottom:277.310857px;}
.y1b7{bottom:280.334820px;}
.y17b{bottom:280.363214px;}
.y76{bottom:281.055150px;}
.y3e{bottom:281.387852px;}
.y134{bottom:288.069600px;}
.y152{bottom:289.077450px;}
.y14c{bottom:291.474750px;}
.yc7{bottom:293.809074px;}
.y1b6{bottom:296.747856px;}
.y17a{bottom:296.776250px;}
.y3d{bottom:297.886069px;}
.y10{bottom:301.717429px;}
.y135{bottom:304.682850px;}
.y75{bottom:305.716500px;}
.y153{bottom:308.758650px;}
.yc6{bottom:310.222110px;}
.y1b5{bottom:313.160892px;}
.y179{bottom:313.274468px;}
.y3c{bottom:314.299105px;}
.yf{bottom:315.154198px;}
.y136{bottom:320.722050px;}
.yc5{bottom:326.635146px;}
.y154{bottom:328.438650px;}
.y1b4{bottom:329.659110px;}
.y178{bottom:329.687504px;}
.y3b{bottom:330.712141px;}
.ye{bottom:335.308829px;}
.y137{bottom:337.335900px;}
.yc4{bottom:343.133364px;}
.y1b3{bottom:346.072146px;}
.y177{bottom:346.100540px;}
.y3a{bottom:347.210359px;}
.y155{bottom:347.505450px;}
.yd{bottom:348.745598px;}
.y138{bottom:353.198250px;}
.y74{bottom:354.271021px;}
.yc3{bottom:359.546400px;}
.yc{bottom:362.182367px;}
.y1b2{bottom:362.485182px;}
.y176{bottom:362.598757px;}
.y39{bottom:363.623395px;}
.y156{bottom:367.186650px;}
.y232{bottom:368.037943px;}
.y139{bottom:370.561350px;}
.y73{bottom:370.769238px;}
.y202{bottom:371.364675px;}
.yb{bottom:375.703868px;}
.y1b1{bottom:378.898218px;}
.y175{bottom:379.011793px;}
.y38{bottom:380.036431px;}
.y231{bottom:383.005063px;}
.yc2{bottom:384.207750px;}
.y201{bottom:386.331795px;}
.y13a{bottom:386.601000px;}
.y72{bottom:387.182274px;}
.y142{bottom:387.206250px;}
.ya{bottom:389.140637px;}
.y1b0{bottom:395.396436px;}
.y174{bottom:395.424829px;}
.y37{bottom:396.534648px;}
.y230{bottom:397.972183px;}
.y200{bottom:401.213810px;}
.y9{bottom:402.577407px;}
.y71{bottom:403.595310px;}
.y1af{bottom:411.809472px;}
.y173{bottom:411.837866px;}
.y22f{bottom:412.854198px;}
.y36{bottom:412.947685px;}
.y1ff{bottom:416.180930px;}
.y70{bottom:420.093528px;}
.ybf{bottom:425.281183px;}
.yc1{bottom:425.281800px;}
.y22e{bottom:427.821318px;}
.y1ae{bottom:428.222508px;}
.y172{bottom:428.336083px;}
.y35{bottom:429.360721px;}
.y1fe{bottom:431.148050px;}
.yc0{bottom:431.574750px;}
.y6f{bottom:436.506564px;}
.ybc{bottom:441.776652px;}
.ybe{bottom:441.779400px;}
.y22d{bottom:442.788438px;}
.y1ad{bottom:444.720725px;}
.y171{bottom:444.749119px;}
.y34{bottom:445.858938px;}
.y1fd{bottom:446.115170px;}
.y11d{bottom:447.306564px;}
.yea{bottom:447.391614px;}
.yec{bottom:447.392100px;}
.ybd{bottom:448.072350px;}
.y6e{bottom:452.919600px;}
.yeb{bottom:453.684900px;}
.y22c{bottom:457.755558px;}
.ybb{bottom:458.189688px;}
.y1fc{bottom:460.997185px;}
.y1ac{bottom:461.133761px;}
.y170{bottom:461.162155px;}
.y33{bottom:462.271974px;}
.y11a{bottom:463.712383px;}
.y11c{bottom:463.719600px;}
.ye7{bottom:463.799227px;}
.ye9{bottom:463.804650px;}
.y11b{bottom:470.012400px;}
.ye8{bottom:470.097450px;}
.y22b{bottom:472.637573px;}
.yba{bottom:474.602724px;}
.y1fb{bottom:475.964305px;}
.y1ab{bottom:477.546798px;}
.y6d{bottom:477.580950px;}
.y16f{bottom:477.660373px;}
.y32{bottom:478.685010px;}
.y119{bottom:480.125419px;}
.ye6{bottom:480.297445px;}
.y22a{bottom:487.604693px;}
.y1fa{bottom:490.931425px;}
.yb9{bottom:491.015760px;}
.y1aa{bottom:494.045015px;}
.y16e{bottom:494.073409px;}
.y31{bottom:495.098046px;}
.y118{bottom:496.538455px;}
.ye5{bottom:496.710481px;}
.y229{bottom:502.571813px;}
.y1f9{bottom:505.813440px;}
.yb8{bottom:507.513978px;}
.y1a9{bottom:510.458051px;}
.y16d{bottom:510.486445px;}
.y30{bottom:511.596264px;}
.y117{bottom:513.036673px;}
.ye4{bottom:513.123517px;}
.y228{bottom:517.538933px;}
.y1f8{bottom:520.780560px;}
.yb7{bottom:523.927014px;}
.y6c{bottom:526.137883px;}
.y1a8{bottom:526.871087px;}
.y16c{bottom:526.984662px;}
.y2f{bottom:528.009300px;}
.y116{bottom:529.449709px;}
.ye3{bottom:529.536553px;}
.y227{bottom:532.420948px;}
.y1f7{bottom:535.747680px;}
.yb4{bottom:540.337507px;}
.yb6{bottom:540.340050px;}
.y6b{bottom:542.635128px;}
.y1a7{bottom:543.284123px;}
.y16b{bottom:543.397698px;}
.y115{bottom:545.862745px;}
.ye2{bottom:546.034771px;}
.yb5{bottom:546.717900px;}
.y226{bottom:547.388068px;}
.y1f6{bottom:550.714800px;}
.yb3{bottom:556.835724px;}
.y6a{bottom:559.048164px;}
.y1a6{bottom:559.782341px;}
.y16a{bottom:559.810735px;}
.y2e{bottom:560.919600px;}
.y225{bottom:562.355188px;}
.y114{bottom:562.360962px;}
.ye1{bottom:562.447807px;}
.y1f4{bottom:565.591220px;}
.y1f5{bottom:571.294350px;}
.yb2{bottom:573.248760px;}
.y67{bottom:575.458807px;}
.y69{bottom:575.461200px;}
.y1a5{bottom:576.195377px;}
.y169{bottom:576.308952px;}
.y224{bottom:577.237202px;}
.y113{bottom:578.773998px;}
.ye0{bottom:578.860843px;}
.y1f3{bottom:580.558341px;}
.y68{bottom:581.839200px;}
.yb1{bottom:589.661796px;}
.y66{bottom:591.957024px;}
.y223{bottom:592.204322px;}
.y1a4{bottom:592.608413px;}
.y168{bottom:592.721988px;}
.y112{bottom:595.187035px;}
.ydf{bottom:595.359060px;}
.y1f2{bottom:595.525461px;}
.yb0{bottom:606.160014px;}
.y222{bottom:607.171443px;}
.y65{bottom:608.370060px;}
.y1a3{bottom:609.106630px;}
.y167{bottom:609.135024px;}
.y1f1{bottom:610.492581px;}
.y111{bottom:611.685252px;}
.yde{bottom:611.772096px;}
.y221{bottom:622.138563px;}
.yaf{bottom:622.573050px;}
.y64{bottom:624.783096px;}
.y1f0{bottom:625.374595px;}
.y1a2{bottom:625.519667px;}
.y166{bottom:625.548060px;}
.y2d{bottom:626.655000px;}
.y110{bottom:628.098288px;}
.ydd{bottom:628.185133px;}
.y220{bottom:637.020577px;}
.y1ef{bottom:640.341716px;}
.y63{bottom:641.281314px;}
.y1a1{bottom:641.932703px;}
.y165{bottom:642.046278px;}
.y2c{bottom:643.067556px;}
.y10f{bottom:644.511324px;}
.yda{bottom:644.682378px;}
.ydc{bottom:644.683350px;}
.yae{bottom:647.234550px;}
.ydb{bottom:650.976300px;}
.y21f{bottom:651.987697px;}
.y1ee{bottom:655.308836px;}
.y5f{bottom:657.692910px;}
.y61{bottom:657.694350px;}
.y1a0{bottom:658.430920px;}
.y164{bottom:658.459314px;}
.y2b{bottom:659.480112px;}
.y10e{bottom:661.009542px;}
.yd9{bottom:661.095414px;}
.y62{bottom:662.796750px;}
.y60{bottom:663.987150px;}
.y21e{bottom:666.954818px;}
.y1ed{bottom:670.275956px;}
.y5e{bottom:674.105946px;}
.y19f{bottom:674.843956px;}
.y163{bottom:674.872350px;}
.y2a{bottom:675.977846px;}
.y10d{bottom:677.422578px;}
.yd6{bottom:677.507496px;}
.yd8{bottom:677.508450px;}
.y21d{bottom:681.921938px;}
.yd7{bottom:683.801400px;}
.y1ec{bottom:685.157970px;}
.yab{bottom:688.305907px;}
.yad{bottom:688.308450px;}
.y5d{bottom:690.518983px;}
.y19e{bottom:691.256992px;}
.y29{bottom:692.390402px;}
.y10c{bottom:693.835614px;}
.yd5{bottom:694.005714px;}
.yac{bottom:694.601400px;}
.y21c{bottom:696.803952px;}
.y1eb{bottom:700.125090px;}
.yaa{bottom:704.718943px;}
.y5c{bottom:707.017200px;}
.y19d{bottom:707.755210px;}
.y162{bottom:707.782500px;}
.y28{bottom:708.802958px;}
.y10b{bottom:710.248650px;}
.yd2{bottom:710.418264px;}
.yd4{bottom:710.418750px;}
.y21b{bottom:711.771072px;}
.y1ea{bottom:715.092211px;}
.yd3{bottom:716.711550px;}
.ya9{bottom:721.217160px;}
.y19c{bottom:724.168246px;}
.y27{bottom:725.300692px;}
.y21a{bottom:726.738192px;}
.yd1{bottom:726.831300px;}
.y1e9{bottom:729.974225px;}
.y5b{bottom:731.678550px;}
.y10a{bottom:734.910389px;}
.ya8{bottom:737.630196px;}
.y19b{bottom:740.581282px;}
.y219{bottom:741.620207px;}
.y26{bottom:741.713248px;}
.y1e8{bottom:744.941345px;}
.y109{bottom:752.853300px;}
.ya7{bottom:754.043233px;}
.y218{bottom:756.587327px;}
.y19a{bottom:756.994318px;}
.y161{bottom:757.104864px;}
.y25{bottom:758.125804px;}
.y1e7{bottom:759.908465px;}
.y5a{bottom:764.503800px;}
.ya4{bottom:770.541114px;}
.ya6{bottom:770.541450px;}
.y217{bottom:771.554447px;}
.y199{bottom:773.492536px;}
.y160{bottom:773.517900px;}
.y24{bottom:774.623538px;}
.y1e6{bottom:774.875586px;}
.ya5{bottom:776.834400px;}
.y12f{bottom:781.681810px;}
.y216{bottom:786.521567px;}
.ya0{bottom:786.953664px;}
.ya2{bottom:786.954150px;}
.y1e5{bottom:789.757600px;}
.y198{bottom:789.905572px;}
.y23{bottom:791.036094px;}
.ya3{bottom:792.141600px;}
.ya1{bottom:793.247100px;}
.y12e{bottom:796.648650px;}
.y12c{bottom:796.648660px;}
.y215{bottom:801.403582px;}
.y12d{bottom:801.921000px;}
.y9f{bottom:803.366700px;}
.y1e4{bottom:804.724720px;}
.y197{bottom:806.318608px;}
.y22{bottom:807.448650px;}
.y106{bottom:807.872310px;}
.y108{bottom:807.873750px;}
.y12b{bottom:811.615500px;}
.y107{bottom:814.166700px;}
.y214{bottom:816.370702px;}
.y1e3{bottom:819.691840px;}
.y196{bottom:822.816825px;}
.y59{bottom:822.833533px;}
.y105{bottom:824.285346px;}
.y9e{bottom:828.028200px;}
.y213{bottom:831.337822px;}
.y21{bottom:831.939900px;}
.y1e2{bottom:834.658960px;}
.y195{bottom:839.229861px;}
.y58{bottom:839.246569px;}
.y104{bottom:840.783564px;}
.y12a{bottom:840.828750px;}
.y1d3{bottom:843.080100px;}
.y1d1{bottom:843.080260px;}
.y212{bottom:846.304942px;}
.y1d2{bottom:848.437650px;}
.y1e1{bottom:849.540975px;}
.y194{bottom:855.642897px;}
.y57{bottom:855.659605px;}
.y101{bottom:857.196114px;}
.y103{bottom:857.196600px;}
.y1d0{bottom:858.047100px;}
.y127{bottom:861.053550px;}
.y211{bottom:861.186957px;}
.y102{bottom:863.489550px;}
.y1e0{bottom:864.508095px;}
.y193{bottom:872.141115px;}
.y56{bottom:872.157823px;}
.y9d{bottom:872.162160px;}
.yfe{bottom:873.608814px;}
.y100{bottom:873.609150px;}
.y11e{bottom:875.914350px;}
.y210{bottom:876.154077px;}
.y1df{bottom:879.475215px;}
.yff{bottom:879.902100px;}
.y1cf{bottom:881.845500px;}
.y1cd{bottom:881.845800px;}
.y128{bottom:885.934350px;}
.y1ca{bottom:888.476850px;}
.y192{bottom:888.554151px;}
.y55{bottom:888.570859px;}
.y9c{bottom:888.575196px;}
.yfb{bottom:890.021233px;}
.yfd{bottom:890.021850px;}
.y20f{bottom:891.121197px;}
.y20{bottom:891.722700px;}
.y1de{bottom:894.357230px;}
.y1c9{bottom:896.094300px;}
.y1ce{bottom:896.095050px;}
.y1cc{bottom:896.095350px;}
.yfc{bottom:896.399850px;}
.y11f{bottom:899.047950px;}
.y191{bottom:904.967187px;}
.y54{bottom:904.983895px;}
.y9b{bottom:904.988233px;}
.y20e{bottom:906.088317px;}
.y1c0{bottom:906.415350px;}
.yf8{bottom:906.518964px;}
.yfa{bottom:906.519450px;}
.y1dd{bottom:909.324350px;}
.yf9{bottom:912.812400px;}
.y20d{bottom:920.970332px;}
.y190{bottom:921.465405px;}
.y53{bottom:921.482112px;}
.y99{bottom:921.486450px;}
.yf5{bottom:922.931514px;}
.yf7{bottom:922.932000px;}
.y1c1{bottom:923.170200px;}
.y120{bottom:923.910750px;}
.y1dc{bottom:924.291470px;}
.y9a{bottom:927.779250px;}
.yf6{bottom:929.224950px;}
.y20c{bottom:935.937452px;}
.y1f{bottom:936.537775px;}
.y18f{bottom:937.878441px;}
.y52{bottom:937.895148px;}
.y96{bottom:937.898028px;}
.y98{bottom:937.899000px;}
.y1c2{bottom:939.155400px;}
.y1db{bottom:939.258590px;}
.yf4{bottom:939.344550px;}
.y97{bottom:944.191800px;}
.y121{bottom:946.775550px;}
.y20b{bottom:950.904572px;}
.y1da{bottom:954.140605px;}
.y18e{bottom:954.291477px;}
.y51{bottom:954.308185px;}
.y95{bottom:954.311064px;}
.y1c3{bottom:955.683000px;}
.y1e{bottom:961.964479px;}
.yf3{bottom:964.006439px;}
.y20a{bottom:965.786587px;}
.y1cb{bottom:966.301350px;}
.y8{bottom:968.939580px;}
.y1d9{bottom:969.107725px;}
.y18d{bottom:970.704513px;}
.y50{bottom:970.721221px;}
.y94{bottom:970.724100px;}
.y122{bottom:970.755150px;}
.y1c4{bottom:972.942600px;}
.y209{bottom:980.753707px;}
.yf2{bottom:981.949350px;}
.y7{bottom:982.375303px;}
.y1d8{bottom:984.074845px;}
.y18c{bottom:987.202730px;}
.y4f{bottom:987.219438px;}
.y91{bottom:987.221364px;}
.y93{bottom:987.221700px;}
.y1d{bottom:987.306900px;}
.y1c5{bottom:989.456100px;}
.y92{bottom:993.514650px;}
.y123{bottom:995.494350px;}
.y208{bottom:995.720827px;}
.y6{bottom:995.811026px;}
.y1d7{bottom:999.041965px;}
.y18b{bottom:1003.615766px;}
.y8e{bottom:1003.631858px;}
.y4e{bottom:1003.632474px;}
.y90{bottom:1003.634400px;}
.y1c6{bottom:1005.829650px;}
.y5{bottom:1009.246749px;}
.y8f{bottom:1009.927350px;}
.y207{bottom:1010.687947px;}
.y1d6{bottom:1013.923980px;}
.y124{bottom:1019.064750px;}
.y18a{bottom:1020.028802px;}
.y8d{bottom:1020.044895px;}
.y4d{bottom:1020.045510px;}
.y4{bottom:1022.768250px;}
.y1c7{bottom:1022.791500px;}
.y206{bottom:1025.569962px;}
.y1d5{bottom:1028.891100px;}
.y3{bottom:1036.204500px;}
.y189{bottom:1036.527020px;}
.y8c{bottom:1036.543112px;}
.y4c{bottom:1036.543728px;}
.yf1{bottom:1036.544064px;}
.y1c8{bottom:1039.530900px;}
.y205{bottom:1040.537082px;}
.y125{bottom:1043.578350px;}
.y188{bottom:1052.940056px;}
.y8b{bottom:1052.956148px;}
.yee{bottom:1052.956610px;}
.y4b{bottom:1052.956764px;}
.yf0{bottom:1052.957100px;}
.y204{bottom:1055.504202px;}
.yef{bottom:1059.250050px;}
.y1d4{bottom:1061.801400px;}
.y129{bottom:1061.883150px;}
.y126{bottom:1067.086350px;}
.y187{bottom:1069.353092px;}
.y8a{bottom:1069.369184px;}
.yed{bottom:1069.369647px;}
.y4a{bottom:1069.369800px;}
.y203{bottom:1070.471322px;}
.yd0{bottom:1114.270500px;}
.y2{bottom:1144.799700px;}
.h16{height:22.791483px;}
.h27{height:24.216621px;}
.h1d{height:26.448667px;}
.ha{height:26.473900px;}
.h9{height:27.066039px;}
.h1e{height:29.754750px;}
.h17{height:31.752000px;}
.h19{height:31.752600px;}
.h18{height:31.753200px;}
.h1a{height:31.753800px;}
.h3{height:31.884214px;}
.h7{height:34.161070px;}
.h15{height:34.192158px;}
.h11{height:36.288000px;}
.h25{height:36.328578px;}
.h26{height:36.379387px;}
.h14{height:36.439754px;}
.h2{height:37.335673px;}
.h10{height:40.348350px;}
.h8{height:40.603134px;}
.h20{height:40.678200px;}
.h24{height:40.678800px;}
.h21{height:40.679400px;}
.h1c{height:40.680000px;}
.h1b{height:40.681800px;}
.h6{height:40.993924px;}
.h22{height:42.798926px;}
.h1f{height:45.215400px;}
.h13{height:45.216000px;}
.h1{height:45.549007px;}
.hd{height:46.884844px;}
.hc{height:46.886188px;}
.hb{height:46.887388px;}
.h23{height:47.004600px;}
.he{height:47.223700px;}
.hf{height:47.233873px;}
.h12{height:49.039800px;}
.h5{height:50.104548px;}
.h4{height:54.658717px;}
.h0{height:1170.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x3{left:71.773200px;}
.x7a{left:79.341750px;}
.x63{left:84.681900px;}
.x3b{left:89.630553px;}
.x5b{left:91.703550px;}
.x57{left:94.344000px;}
.x7{left:103.833000px;}
.x9{left:111.486600px;}
.x75{left:118.192800px;}
.x8{left:121.776462px;}
.x72{left:127.540800px;}
.x73{left:128.590650px;}
.x66{left:133.766850px;}
.x16{left:144.736950px;}
.xa{left:151.795200px;}
.x17{left:155.962200px;}
.xb{left:162.170100px;}
.xf{left:165.316500px;}
.x5c{left:169.350900px;}
.x56{left:181.991550px;}
.x64{left:196.525950px;}
.x74{left:199.834950px;}
.x65{left:207.921300px;}
.xc{left:213.958950px;}
.x79{left:215.234550px;}
.xd{left:227.480250px;}
.x3c{left:234.283350px;}
.x3a{left:237.600000px;}
.x5e{left:242.680800px;}
.x58{left:247.652550px;}
.x5d{left:253.815000px;}
.x37{left:255.798450px;}
.x77{left:263.600550px;}
.x4{left:268.979550px;}
.xe{left:270.765300px;}
.x3d{left:273.486600px;}
.x5{left:276.633000px;}
.x62{left:278.886000px;}
.x6{left:286.924432px;}
.x59{left:297.127500px;}
.x76{left:300.454050px;}
.x3e{left:305.716500px;}
.x5a{left:308.522850px;}
.x3f{left:313.369950px;}
.x61{left:332.615550px;}
.x40{left:334.544850px;}
.x5f{left:336.751500px;}
.x12{left:339.051900px;}
.x18{left:341.347950px;}
.x60{left:345.208200px;}
.x13{left:350.362200px;}
.x10{left:352.743300px;}
.x19{left:354.614100px;}
.x78{left:362.044950px;}
.x11{left:366.009450px;}
.x6f{left:369.751050px;}
.x38{left:372.047100px;}
.x39{left:391.606200px;}
.x14{left:401.725950px;}
.x7b{left:409.294350px;}
.x15{left:414.992100px;}
.x41{left:439.312805px;}
.x7c{left:452.066495px;}
.x51{left:457.256712px;}
.x49{left:462.273900px;}
.x1a{left:471.459240px;}
.x4c{left:475.625100px;}
.x6a{left:477.615450px;}
.x34{left:479.111700px;}
.x4a{left:482.513250px;}
.x68{left:487.684350px;}
.x1b{left:489.402702px;}
.x67{left:494.356350px;}
.x24{left:525.118050px;}
.x69{left:529.404750px;}
.x26{left:531.836100px;}
.x25{left:538.639200px;}
.x27{left:545.357400px;}
.x35{left:550.289700px;}
.x46{left:551.905350px;}
.x4d{left:560.069250px;}
.x6e{left:561.940050px;}
.x36{left:566.787300px;}
.x4e{left:569.168400px;}
.x28{left:587.621850px;}
.x70{left:588.982500px;}
.x6c{left:596.313300px;}
.x6b{left:608.035500px;}
.x4f{left:620.957400px;}
.x50{left:634.308450px;}
.x21{left:652.932150px;}
.x71{left:655.143150px;}
.x52{left:657.609300px;}
.x30{left:661.436100px;}
.x22{left:666.538350px;}
.x53{left:674.617200px;}
.x31{left:680.314800px;}
.x6d{left:686.697750px;}
.x32{left:698.853450px;}
.x42{left:708.888000px;}
.x33{left:712.374600px;}
.x2d{left:714.925800px;}
.x43{left:716.626650px;}
.x54{left:719.177700px;}
.x2e{left:724.535250px;}
.x2f{left:734.655000px;}
.x55{left:736.100700px;}
.x44{left:737.716350px;}
.x2{left:748.091250px;}
.x4b{left:749.962050px;}
.x45{left:751.237650px;}
.x47{left:754.894350px;}
.x29{left:762.632850px;}
.x48{left:764.078550px;}
.x2a{left:770.286450px;}
.x1e{left:779.640750px;}
.x1{left:781.766850px;}
.x1f{left:787.039050px;}
.x2b{left:791.461350px;}
.x1c{left:798.774600px;}
.x20{left:807.703650px;}
.x2c{left:809.489550px;}
.x1d{left:811.955700px;}
.x23{left:815.867550px;}
@media print{
.v1{vertical-align:-18.141867pt;}
.v6{vertical-align:-13.559467pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:3.396267pt;}
.v5{vertical-align:13.557867pt;}
.v4{vertical-align:16.000000pt;}
.v2{vertical-align:18.145323pt;}
.ls2{letter-spacing:-1.115789pt;}
.ls57{letter-spacing:-1.052315pt;}
.ls32{letter-spacing:-1.049940pt;}
.ls6{letter-spacing:-0.974223pt;}
.lsa{letter-spacing:-0.969175pt;}
.ls7{letter-spacing:-0.964127pt;}
.ls9{letter-spacing:-0.959079pt;}
.ls4{letter-spacing:-0.948984pt;}
.ls8{letter-spacing:-0.943936pt;}
.lsd{letter-spacing:-0.933841pt;}
.ls3{letter-spacing:-0.928793pt;}
.lsc{letter-spacing:-0.923745pt;}
.ls25{letter-spacing:-0.913649pt;}
.ls48{letter-spacing:-0.908602pt;}
.ls33{letter-spacing:-0.903803pt;}
.lsb{letter-spacing:-0.898506pt;}
.ls34{letter-spacing:-0.883363pt;}
.ls31{letter-spacing:-0.873267pt;}
.ls5{letter-spacing:-0.868219pt;}
.ls1d{letter-spacing:-0.863172pt;}
.ls56{letter-spacing:-0.862627pt;}
.ls5b{letter-spacing:-0.812947pt;}
.ls46{letter-spacing:-0.802598pt;}
.ls59{letter-spacing:-0.799398pt;}
.ls4a{letter-spacing:-0.797550pt;}
.ls35{letter-spacing:-0.792503pt;}
.ls30{letter-spacing:-0.782407pt;}
.ls58{letter-spacing:-0.776816pt;}
.ls23{letter-spacing:-0.772311pt;}
.ls45{letter-spacing:-0.762216pt;}
.ls44{letter-spacing:-0.757168pt;}
.ls1f{letter-spacing:-0.752120pt;}
.ls24{letter-spacing:-0.747072pt;}
.ls49{letter-spacing:-0.742025pt;}
.ls55{letter-spacing:-0.740685pt;}
.ls2f{letter-spacing:-0.736977pt;}
.ls5a{letter-spacing:-0.736169pt;}
.ls47{letter-spacing:-0.731929pt;}
.ls21{letter-spacing:-0.726881pt;}
.ls2b{letter-spacing:-0.721833pt;}
.ls42{letter-spacing:-0.716786pt;}
.ls1e{letter-spacing:-0.711738pt;}
.ls22{letter-spacing:-0.701642pt;}
.ls5c{letter-spacing:-0.700038pt;}
.ls27{letter-spacing:-0.696595pt;}
.ls2e{letter-spacing:-0.691547pt;}
.ls2d{letter-spacing:-0.686499pt;}
.ls29{letter-spacing:-0.681451pt;}
.ls41{letter-spacing:-0.671356pt;}
.ls2a{letter-spacing:-0.666308pt;}
.ls2c{letter-spacing:-0.661260pt;}
.ls28{letter-spacing:-0.651164pt;}
.ls4b{letter-spacing:-0.590591pt;}
.ls1{letter-spacing:0.000000pt;}
.ls50{letter-spacing:0.094844pt;}
.lsf{letter-spacing:0.158148pt;}
.ls14{letter-spacing:0.302867pt;}
.ls3b{letter-spacing:1.685333pt;}
.ls16{letter-spacing:2.591200pt;}
.ls12{letter-spacing:2.591733pt;}
.ls11{letter-spacing:2.893600pt;}
.ls3c{letter-spacing:6.864999pt;}
.ls3e{letter-spacing:6.877751pt;}
.ls3d{letter-spacing:7.064785pt;}
.ls40{letter-spacing:7.166804pt;}
.ls3f{letter-spacing:7.179556pt;}
.ls15{letter-spacing:7.415199pt;}
.ls36{letter-spacing:7.718066pt;}
.ls37{letter-spacing:7.803878pt;}
.ls38{letter-spacing:8.020933pt;}
.ls39{letter-spacing:8.106745pt;}
.ls18{letter-spacing:8.298561pt;}
.ls17{letter-spacing:8.323800pt;}
.ls3a{letter-spacing:8.409613pt;}
.lse{letter-spacing:8.601428pt;}
.ls1a{letter-spacing:8.626667pt;}
.ls54{letter-spacing:8.666920pt;}
.ls51{letter-spacing:9.574711pt;}
.ls13{letter-spacing:10.741690pt;}
.ls4f{letter-spacing:10.785100pt;}
.ls20{letter-spacing:10.983984pt;}
.ls0{letter-spacing:11.488596pt;}
.ls4d{letter-spacing:11.710956pt;}
.ls4c{letter-spacing:13.508473pt;}
.ls53{letter-spacing:13.806553pt;}
.ls4e{letter-spacing:13.811070pt;}
.ls19{letter-spacing:16.228634pt;}
.ls52{letter-spacing:17.437717pt;}
.ls1b{letter-spacing:17.480485pt;}
.ls10{letter-spacing:18.192223pt;}
.ls43{letter-spacing:19.282545pt;}
.ls26{letter-spacing:21.442998pt;}
.ls1c{letter-spacing:89.498372pt;}
.ws8f{word-spacing:-57.686106pt;}
.wse4{word-spacing:-55.525653pt;}
.ws70{word-spacing:-54.435331pt;}
.wsb4{word-spacing:-52.471742pt;}
.ws89{word-spacing:-47.227092pt;}
.wsc9{word-spacing:-44.869776pt;}
.wsab{word-spacing:-44.566908pt;}
.ws108{word-spacing:-44.264041pt;}
.wse1{word-spacing:-43.961174pt;}
.ws97{word-spacing:-43.658307pt;}
.ws1c0{word-spacing:-41.094481pt;}
.ws105{word-spacing:-38.867957pt;}
.ws149{word-spacing:-37.687356pt;}
.ws133{word-spacing:-37.385551pt;}
.ws90{word-spacing:-36.243108pt;}
.ws10b{word-spacing:-35.652517pt;}
.ws104{word-spacing:-35.591944pt;}
.ws1ab{word-spacing:-34.776075pt;}
.ws1f2{word-spacing:-33.723760pt;}
.ws29{word-spacing:-33.150882pt;}
.ws22{word-spacing:-33.099078pt;}
.ws1e{word-spacing:-33.095093pt;}
.ws20{word-spacing:-32.569078pt;}
.ws1bd{word-spacing:-32.427561pt;}
.ws2e{word-spacing:-31.584793pt;}
.ws1d{word-spacing:-31.281936pt;}
.ws2d{word-spacing:-29.492689pt;}
.ws1c{word-spacing:-29.189832pt;}
.ws112{word-spacing:-28.848101pt;}
.ws126{word-spacing:-28.545234pt;}
.ws107{word-spacing:-28.519995pt;}
.ws103{word-spacing:-28.267605pt;}
.ws109{word-spacing:-28.217127pt;}
.wsfd{word-spacing:-28.060646pt;}
.ws121{word-spacing:-27.944547pt;}
.wsf9{word-spacing:-27.924356pt;}
.wsbe{word-spacing:-27.919308pt;}
.ws7a{word-spacing:-27.910377pt;}
.wsc8{word-spacing:-27.894069pt;}
.ws2b{word-spacing:-27.834946pt;}
.wsbd{word-spacing:-27.803209pt;}
.ws6e{word-spacing:-27.783018pt;}
.wsc2{word-spacing:-27.777970pt;}
.wsa8{word-spacing:-27.762827pt;}
.wsc0{word-spacing:-27.760442pt;}
.wsa7{word-spacing:-27.757374pt;}
.wsaa{word-spacing:-27.641680pt;}
.wsb3{word-spacing:-27.636632pt;}
.wsfb{word-spacing:-27.616441pt;}
.wsac{word-spacing:-27.611393pt;}
.ws24{word-spacing:-27.428480pt;}
.ws8c{word-spacing:-27.424625pt;}
.ws96{word-spacing:-27.389290pt;}
.ws173{word-spacing:-27.359004pt;}
.ws25{word-spacing:-27.352765pt;}
.ws99{word-spacing:-27.197438pt;}
.ws91{word-spacing:-27.167188pt;}
.ws9a{word-spacing:-27.141949pt;}
.wsda{word-spacing:-27.056137pt;}
.ws21{word-spacing:-27.049908pt;}
.wse0{word-spacing:-27.030898pt;}
.wse7{word-spacing:-26.970324pt;}
.ws27{word-spacing:-26.822766pt;}
.ws125{word-spacing:-26.758317pt;}
.ws2a{word-spacing:-26.747052pt;}
.ws57{word-spacing:-26.556406pt;}
.ws42{word-spacing:-26.455450pt;}
.ws61{word-spacing:-25.945623pt;}
.wsdd{word-spacing:-25.844668pt;}
.ws102{word-spacing:-25.753808pt;}
.ws111{word-spacing:-25.708377pt;}
.ws106{word-spacing:-25.667995pt;}
.wsea{word-spacing:-25.430749pt;}
.ws195{word-spacing:-25.243981pt;}
.wse9{word-spacing:-25.193503pt;}
.ws8a{word-spacing:-25.137978pt;}
.ws191{word-spacing:-25.102643pt;}
.ws177{word-spacing:-24.890636pt;}
.wsa5{word-spacing:-24.855302pt;}
.ws11a{word-spacing:-24.809871pt;}
.ws81{word-spacing:-24.799776pt;}
.ws95{word-spacing:-24.774537pt;}
.ws83{word-spacing:-24.739202pt;}
.wsf1{word-spacing:-24.678629pt;}
.ws172{word-spacing:-24.673581pt;}
.ws152{word-spacing:-24.638247pt;}
.ws94{word-spacing:-24.623103pt;}
.ws87{word-spacing:-24.587769pt;}
.wsb2{word-spacing:-24.522148pt;}
.ws39{word-spacing:-24.461574pt;}
.wsdb{word-spacing:-24.441383pt;}
.ws124{word-spacing:-24.375762pt;}
.ws33{word-spacing:-24.350523pt;}
.ws203{word-spacing:-24.325187pt;}
.ws1f3{word-spacing:-24.302605pt;}
.ws169{word-spacing:-24.289949pt;}
.ws8b{word-spacing:-24.254615pt;}
.ws1c4{word-spacing:-24.230343pt;}
.ws1c3{word-spacing:-24.194212pt;}
.ws197{word-spacing:-23.916413pt;}
.ws1e2{word-spacing:-23.900648pt;}
.ws15d{word-spacing:-23.850792pt;}
.wseb{word-spacing:-23.845744pt;}
.ws164{word-spacing:-23.770027pt;}
.ws14a{word-spacing:-23.744820pt;}
.ws88{word-spacing:-23.729645pt;}
.ws41{word-spacing:-23.709454pt;}
.ws148{word-spacing:-23.689560pt;}
.ws141{word-spacing:-23.685309pt;}
.ws131{word-spacing:-23.681058pt;}
.ws17a{word-spacing:-23.658976pt;}
.wscd{word-spacing:-23.648881pt;}
.wsdc{word-spacing:-23.628689pt;}
.ws13f{word-spacing:-23.549284pt;}
.ws127{word-spacing:-23.547925pt;}
.ws18a{word-spacing:-23.537829pt;}
.wsf6{word-spacing:-23.527734pt;}
.ws60{word-spacing:-23.467160pt;}
.ws142{word-spacing:-23.438764pt;}
.ws18d{word-spacing:-23.431826pt;}
.ws43{word-spacing:-23.421730pt;}
.ws1a2{word-spacing:-23.387755pt;}
.ws84{word-spacing:-23.366204pt;}
.ws6b{word-spacing:-23.335918pt;}
.ws40{word-spacing:-23.290488pt;}
.ws44{word-spacing:-23.229914pt;}
.ws115{word-spacing:-23.164293pt;}
.ws11c{word-spacing:-23.139054pt;}
.ws51{word-spacing:-23.103720pt;}
.wse3{word-spacing:-23.093624pt;}
.ws5f{word-spacing:-23.033051pt;}
.ws10a{word-spacing:-23.007812pt;}
.ws32{word-spacing:-22.937143pt;}
.ws183{word-spacing:-22.921999pt;}
.ws202{word-spacing:-22.888980pt;}
.ws205{word-spacing:-22.852849pt;}
.ws28{word-spacing:-22.841791pt;}
.ws114{word-spacing:-22.720088pt;}
.ws181{word-spacing:-22.704944pt;}
.ws98{word-spacing:-22.609036pt;}
.ws15f{word-spacing:-22.568654pt;}
.ws163{word-spacing:-22.558559pt;}
.ws168{word-spacing:-22.523224pt;}
.ws15a{word-spacing:-22.518176pt;}
.wscc{word-spacing:-22.462651pt;}
.ws113{word-spacing:-22.356647pt;}
.ws153{word-spacing:-22.331408pt;}
.ws1e3{word-spacing:-22.292819pt;}
.wsa6{word-spacing:-22.280930pt;}
.ws199{word-spacing:-22.220357pt;}
.ws3f{word-spacing:-22.210261pt;}
.ws154{word-spacing:-22.200166pt;}
.ws17c{word-spacing:-22.185022pt;}
.ws9b{word-spacing:-22.179975pt;}
.ws58{word-spacing:-22.099210pt;}
.wsa4{word-spacing:-22.003302pt;}
.ws185{word-spacing:-21.967968pt;}
.ws16e{word-spacing:-21.942729pt;}
.ws10e{word-spacing:-21.917490pt;}
.ws1e8{word-spacing:-21.904411pt;}
.ws1c2{word-spacing:-21.881829pt;}
.ws1f4{word-spacing:-21.859247pt;}
.ws13d{word-spacing:-21.738455pt;}
.ws1c6{word-spacing:-21.714723pt;}
.wsed{word-spacing:-21.660053pt;}
.ws150{word-spacing:-21.655005pt;}
.ws1e1{word-spacing:-21.646977pt;}
.ws1e7{word-spacing:-21.610846pt;}
.ws1c5{word-spacing:-21.561166pt;}
.wsec{word-spacing:-21.543953pt;}
.wsf0{word-spacing:-21.533858pt;}
.ws1e0{word-spacing:-21.520519pt;}
.wsef{word-spacing:-21.508619pt;}
.ws122{word-spacing:-21.458141pt;}
.ws9f{word-spacing:-21.432902pt;}
.ws1fb{word-spacing:-21.380511pt;}
.ws68{word-spacing:-21.352138pt;}
.ws47{word-spacing:-21.311755pt;}
.ws1be{word-spacing:-21.267602pt;}
.ws9e{word-spacing:-21.230991pt;}
.ws160{word-spacing:-21.225943pt;}
.wsf3{word-spacing:-21.220895pt;}
.ws3e{word-spacing:-21.215847pt;}
.ws1d1{word-spacing:-21.213406pt;}
.ws20a{word-spacing:-21.190824pt;}
.wsf2{word-spacing:-21.190608pt;}
.ws7c{word-spacing:-21.180513pt;}
.ws1ac{word-spacing:-21.172758pt;}
.wsb0{word-spacing:-21.170417pt;}
.ws1db{word-spacing:-21.132111pt;}
.ws208{word-spacing:-21.118562pt;}
.ws1a5{word-spacing:-21.109529pt;}
.ws1b7{word-spacing:-21.100496pt;}
.ws66{word-spacing:-21.079557pt;}
.ws1dd{word-spacing:-21.077914pt;}
.ws186{word-spacing:-21.074509pt;}
.ws1b0{word-spacing:-21.073398pt;}
.ws207{word-spacing:-21.068882pt;}
.ws171{word-spacing:-21.049270pt;}
.ws1d6{word-spacing:-21.037267pt;}
.wsff{word-spacing:-21.034127pt;}
.ws1bb{word-spacing:-21.032751pt;}
.ws1c1{word-spacing:-21.005652pt;}
.ws1b2{word-spacing:-20.996620pt;}
.wsee{word-spacing:-20.988697pt;}
.ws1ce{word-spacing:-20.987587pt;}
.ws20d{word-spacing:-20.960489pt;}
.ws17b{word-spacing:-20.943267pt;}
.wsba{word-spacing:-20.938219pt;}
.ws190{word-spacing:-20.897837pt;}
.ws1d9{word-spacing:-20.865645pt;}
.ws1b3{word-spacing:-20.852096pt;}
.ws1bc{word-spacing:-20.847579pt;}
.ws7b{word-spacing:-20.781738pt;}
.ws1c8{word-spacing:-20.766285pt;}
.ws15b{word-spacing:-20.746403pt;}
.wsc7{word-spacing:-20.731260pt;}
.wsa1{word-spacing:-20.711069pt;}
.ws9d{word-spacing:-20.655543pt;}
.wse2{word-spacing:-20.620209pt;}
.ws52{word-spacing:-20.554587pt;}
.wsf7{word-spacing:-20.539444pt;}
.ws174{word-spacing:-20.514205pt;}
.wsd6{word-spacing:-20.413249pt;}
.ws162{word-spacing:-20.408201pt;}
.ws9c{word-spacing:-20.403154pt;}
.ws1c9{word-spacing:-20.368844pt;}
.ws120{word-spacing:-20.362771pt;}
.wsdf{word-spacing:-20.130573pt;}
.wsb5{word-spacing:-20.120478pt;}
.ws1f7{word-spacing:-20.066247pt;}
.ws158{word-spacing:-20.059904pt;}
.ws72{word-spacing:-20.039713pt;}
.wsd5{word-spacing:-20.009426pt;}
.ws20f{word-spacing:-19.971403pt;}
.ws1ca{word-spacing:-19.966887pt;}
.wsfa{word-spacing:-19.933710pt;}
.ws118{word-spacing:-19.893327pt;}
.ws11d{word-spacing:-19.868088pt;}
.ws159{word-spacing:-19.847897pt;}
.ws17f{word-spacing:-19.837802pt;}
.ws167{word-spacing:-19.832754pt;}
.ws4a{word-spacing:-19.681320pt;}
.ws45{word-spacing:-19.534934pt;}
.ws13c{word-spacing:-19.528053pt;}
.ws65{word-spacing:-19.499600pt;}
.ws206{word-spacing:-19.461053pt;}
.ws209{word-spacing:-19.442987pt;}
.ws13e{word-spacing:-19.426034pt;}
.ws1d3{word-spacing:-19.257816pt;}
.ws31{word-spacing:-19.252258pt;}
.wscf{word-spacing:-19.156350pt;}
.ws193{word-spacing:-19.141207pt;}
.wsce{word-spacing:-19.040251pt;}
.ws182{word-spacing:-19.015012pt;}
.ws1d0{word-spacing:-18.950703pt;}
.ws38{word-spacing:-18.949391pt;}
.ws151{word-spacing:-18.944343pt;}
.ws11b{word-spacing:-18.934248pt;}
.ws1a7{word-spacing:-18.919088pt;}
.ws1fa{word-spacing:-18.914572pt;}
.ws46{word-spacing:-18.909009pt;}
.ws1c7{word-spacing:-18.896506pt;}
.ws20b{word-spacing:-18.887473pt;}
.ws1dc{word-spacing:-18.878441pt;}
.ws21a{word-spacing:-18.851342pt;}
.ws1f0{word-spacing:-18.833277pt;}
.ws20c{word-spacing:-18.819728pt;}
.ws165{word-spacing:-18.777766pt;}
.ws20e{word-spacing:-18.765531pt;}
.ws54{word-spacing:-18.752527pt;}
.ws1ed{word-spacing:-18.751982pt;}
.wsf5{word-spacing:-18.747480pt;}
.ws48{word-spacing:-18.737384pt;}
.ws1cd{word-spacing:-18.702302pt;}
.ws67{word-spacing:-18.651572pt;}
.ws15{word-spacing:-18.626555pt;}
.ws1de{word-spacing:-18.621007pt;}
.ws1bf{word-spacing:-18.616491pt;}
.ws170{word-spacing:-18.616237pt;}
.ws1d8{word-spacing:-18.521647pt;}
.ws7f{word-spacing:-18.424421pt;}
.ws19b{word-spacing:-18.384039pt;}
.ws136{word-spacing:-18.376093pt;}
.ws71{word-spacing:-18.363848pt;}
.ws5a{word-spacing:-18.328513pt;}
.ws143{word-spacing:-18.320833pt;}
.ws184{word-spacing:-18.298227pt;}
.ws4c{word-spacing:-18.288131pt;}
.ws1da{word-spacing:-18.232599pt;}
.ws18b{word-spacing:-18.192223pt;}
.wsa2{word-spacing:-18.177080pt;}
.ws1af{word-spacing:-18.146788pt;}
.ws135{word-spacing:-18.053034pt;}
.wsd{word-spacing:-18.038896pt;}
.ws14f{word-spacing:-18.010503pt;}
.ws59{word-spacing:-17.980216pt;}
.ws0{word-spacing:-17.971948pt;}
.ws1{word-spacing:-17.960789pt;}
.ws11{word-spacing:-17.934754pt;}
.ws161{word-spacing:-17.919643pt;}
.ws137{word-spacing:-17.917010pt;}
.ws6f{word-spacing:-17.899452pt;}
.ws4{word-spacing:-17.897560pt;}
.ws14{word-spacing:-17.852928pt;}
.ws2{word-spacing:-17.845489pt;}
.wse8{word-spacing:-17.833830pt;}
.ws8{word-spacing:-17.830612pt;}
.ws3{word-spacing:-17.826892pt;}
.ws10f{word-spacing:-17.818687pt;}
.ws9{word-spacing:-17.808296pt;}
.ws110{word-spacing:-17.803544pt;}
.wse{word-spacing:-17.745067pt;}
.ws12{word-spacing:-17.741347pt;}
.ws1f6{word-spacing:-17.731282pt;}
.wsd8{word-spacing:-17.722779pt;}
.ws1cf{word-spacing:-17.713216pt;}
.ws5{word-spacing:-17.711592pt;}
.wsc{word-spacing:-17.704154pt;}
.wsa{word-spacing:-17.685557pt;}
.ws1e6{word-spacing:-17.681602pt;}
.ws180{word-spacing:-17.677349pt;}
.ws35{word-spacing:-17.652110pt;}
.wsf{word-spacing:-17.652083pt;}
.ws7{word-spacing:-17.648363pt;}
.ws86{word-spacing:-17.631919pt;}
.ws13{word-spacing:-17.614889pt;}
.ws146{word-spacing:-17.581199pt;}
.ws6{word-spacing:-17.559099pt;}
.ws49{word-spacing:-17.541059pt;}
.ws16{word-spacing:-17.521905pt;}
.ws3b{word-spacing:-17.500676pt;}
.wsca{word-spacing:-17.475437pt;}
.ws3a{word-spacing:-17.455246pt;}
.ws17{word-spacing:-17.428921pt;}
.ws62{word-spacing:-17.419912pt;}
.ws64{word-spacing:-17.404768pt;}
.ws215{word-spacing:-17.392554pt;}
.ws14e{word-spacing:-17.177618pt;}
.ws16f{word-spacing:-17.117045pt;}
.ws166{word-spacing:-17.005993pt;}
.ws211{word-spacing:-16.855105pt;}
.wsbf{word-spacing:-16.824273pt;}
.ws11f{word-spacing:-16.814177pt;}
.wsb8{word-spacing:-16.804082pt;}
.wsb9{word-spacing:-16.799034pt;}
.ws1ec{word-spacing:-16.760261pt;}
.ws1ad{word-spacing:-16.534443pt;}
.ws1ee{word-spacing:-16.502828pt;}
.ws194{word-spacing:-16.475976pt;}
.wsfe{word-spacing:-16.465880pt;}
.ws1fc{word-spacing:-16.362821pt;}
.ws1d7{word-spacing:-16.277009pt;}
.ws1a8{word-spacing:-16.164100pt;}
.wsbb{word-spacing:-16.153686pt;}
.ws1d2{word-spacing:-16.073773pt;}
.ws187{word-spacing:-16.062057pt;}
.ws1ae{word-spacing:-16.033125pt;}
.ws5b{word-spacing:-16.031770pt;}
.ws3c{word-spacing:-15.996436pt;}
.ws1b6{word-spacing:-15.915700pt;}
.wsa0{word-spacing:-15.910624pt;}
.ws18e{word-spacing:-15.895480pt;}
.ws78{word-spacing:-15.819763pt;}
.ws19c{word-spacing:-15.744047pt;}
.ws116{word-spacing:-15.732868pt;}
.ws4d{word-spacing:-15.713760pt;}
.ws189{word-spacing:-15.668330pt;}
.ws37{word-spacing:-15.653186pt;}
.ws147{word-spacing:-15.621592pt;}
.ws19a{word-spacing:-15.607756pt;}
.ws76{word-spacing:-15.592613pt;}
.ws1cb{word-spacing:-15.482128pt;}
.ws145{word-spacing:-15.451561pt;}
.ws1e5{word-spacing:-15.427931pt;}
.ws123{word-spacing:-15.426036pt;}
.ws16b{word-spacing:-15.420988pt;}
.ws1df{word-spacing:-15.324055pt;}
.ws200{word-spacing:-15.274375pt;}
.ws198{word-spacing:-15.259459pt;}
.ws34{word-spacing:-15.203933pt;}
.ws4b{word-spacing:-15.158503pt;}
.ws36{word-spacing:-15.128217pt;}
.ws1ba{word-spacing:-15.125334pt;}
.ws16d{word-spacing:-15.002022pt;}
.ws214{word-spacing:-14.827254pt;}
.ws75{word-spacing:-14.774872pt;}
.wsf4{word-spacing:-14.764776pt;}
.wsd7{word-spacing:-14.744585pt;}
.ws210{word-spacing:-14.691762pt;}
.ws4f{word-spacing:-14.663820pt;}
.wsd9{word-spacing:-14.552769pt;}
.ws1ef{word-spacing:-14.520140pt;}
.wsb7{word-spacing:-14.396288pt;}
.ws5c{word-spacing:-14.093420pt;}
.ws1b1{word-spacing:-14.073019pt;}
.ws15c{word-spacing:-14.053038pt;}
.wsf8{word-spacing:-13.936939pt;}
.ws93{word-spacing:-13.820840pt;}
.ws17e{word-spacing:-13.755219pt;}
.ws201{word-spacing:-13.666546pt;}
.ws219{word-spacing:-13.567185pt;}
.ws1cc{word-spacing:-13.531055pt;}
.ws213{word-spacing:-13.522022pt;}
.ws1fe{word-spacing:-13.503956pt;}
.ws15e{word-spacing:-13.497782pt;}
.wsd0{word-spacing:-13.432160pt;}
.ws16a{word-spacing:-13.406921pt;}
.ws8e{word-spacing:-13.331205pt;}
.wse5{word-spacing:-13.305966pt;}
.ws8d{word-spacing:-13.275679pt;}
.wsa3{word-spacing:-13.235297pt;}
.wsfc{word-spacing:-13.174723pt;}
.ws188{word-spacing:-13.119198pt;}
.ws1b9{word-spacing:-12.916828pt;}
.ws5e{word-spacing:-12.886999pt;}
.ws128{word-spacing:-12.740614pt;}
.ws1aa{word-spacing:-12.704558pt;}
.ws6c{word-spacing:-12.629562pt;}
.ws13b{word-spacing:-12.629048pt;}
.ws1a4{word-spacing:-12.496805pt;}
.ws10c{word-spacing:-12.402412pt;}
.ws1f5{word-spacing:-12.225823pt;}
.ws101{word-spacing:-12.189386pt;}
.ws100{word-spacing:-12.184604pt;}
.wsd1{word-spacing:-12.144975pt;}
.ws12f{word-spacing:-12.140209pt;}
.wsd2{word-spacing:-12.050707pt;}
.wsd4{word-spacing:-12.041143pt;}
.ws1ff{word-spacing:-12.027102pt;}
.ws12a{word-spacing:-12.000000pt;}
.ws85{word-spacing:-11.916810pt;}
.ws1ea{word-spacing:-11.882578pt;}
.ws7d{word-spacing:-11.864208pt;}
.ws12b{word-spacing:-11.861333pt;}
.wsae{word-spacing:-11.776486pt;}
.wsb1{word-spacing:-11.773350pt;}
.ws6a{word-spacing:-11.735093pt;}
.wsaf{word-spacing:-11.675531pt;}
.wscb{word-spacing:-11.668145pt;}
.ws79{word-spacing:-11.660387pt;}
.ws73{word-spacing:-11.574575pt;}
.wsad{word-spacing:-11.549336pt;}
.ws155{word-spacing:-11.508954pt;}
.ws30{word-spacing:-11.488762pt;}
.ws4e{word-spacing:-11.473619pt;}
.ws1a0{word-spacing:-11.460085pt;}
.ws50{word-spacing:-11.433237pt;}
.ws17d{word-spacing:-11.372663pt;}
.ws55{word-spacing:-11.312090pt;}
.ws1b8{word-spacing:-11.205122pt;}
.ws82{word-spacing:-11.135417pt;}
.ws139{word-spacing:-10.666667pt;}
.ws5d{word-spacing:-10.590256pt;}
.ws74{word-spacing:-10.474157pt;}
.ws138{word-spacing:-10.378667pt;}
.ws212{word-spacing:-10.202487pt;}
.ws130{word-spacing:-10.129593pt;}
.ws1a9{word-spacing:-10.112160pt;}
.ws1a3{word-spacing:-10.071513pt;}
.wsc4{word-spacing:-9.954235pt;}
.ws63{word-spacing:-9.908805pt;}
.ws12e{word-spacing:-9.866045pt;}
.ws53{word-spacing:-9.716989pt;}
.ws1e4{word-spacing:-9.610842pt;}
.ws1a1{word-spacing:-9.576992pt;}
.ws19f{word-spacing:-9.568491pt;}
.ws16c{word-spacing:-9.545365pt;}
.wsb{word-spacing:-9.488087pt;}
.ws1e9{word-spacing:-9.285664pt;}
.wsb6{word-spacing:-9.237450pt;}
.ws10{word-spacing:-9.123590pt;}
.ws12c{word-spacing:-8.896000pt;}
.ws144{word-spacing:-8.395277pt;}
.ws218{word-spacing:-7.876555pt;}
.ws196{word-spacing:-7.844260pt;}
.wsc3{word-spacing:-7.682731pt;}
.ws217{word-spacing:-7.655253pt;}
.ws1f1{word-spacing:-7.519762pt;}
.ws13a{word-spacing:-7.413333pt;}
.ws192{word-spacing:-7.203192pt;}
.ws1eb{word-spacing:-6.891986pt;}
.ws18c{word-spacing:-5.931149pt;}
.ws156{word-spacing:-5.870576pt;}
.wse6{word-spacing:-5.739333pt;}
.ws216{word-spacing:-5.595787pt;}
.ws10d{word-spacing:-5.123503pt;}
.ws157{word-spacing:-5.022548pt;}
.ws18f{word-spacing:-4.941783pt;}
.ws179{word-spacing:-4.416813pt;}
.wsc1{word-spacing:-4.194711pt;}
.ws176{word-spacing:-3.513260pt;}
.wsc5{word-spacing:-3.129628pt;}
.ws1f8{word-spacing:-3.120814pt;}
.wsc6{word-spacing:-2.988290pt;}
.ws12d{word-spacing:-2.954287pt;}
.ws175{word-spacing:-2.761139pt;}
.ws1b4{word-spacing:-2.438842pt;}
.ws19e{word-spacing:-2.044622pt;}
.ws3d{word-spacing:-1.766725pt;}
.ws11e{word-spacing:-1.393189pt;}
.ws1f9{word-spacing:-0.975537pt;}
.ws2f{word-spacing:-0.053134pt;}
.ws92{word-spacing:-0.050478pt;}
.ws1a6{word-spacing:-0.045164pt;}
.ws132{word-spacing:-0.042508pt;}
.ws19d{word-spacing:-0.037333pt;}
.ws77{word-spacing:-0.033649pt;}
.ws134{word-spacing:-0.028334pt;}
.ws56{word-spacing:0.000000pt;}
.ws204{word-spacing:0.767783pt;}
.ws80{word-spacing:1.484049pt;}
.ws140{word-spacing:3.098814pt;}
.ws1b5{word-spacing:3.418895pt;}
.ws6d{word-spacing:4.573295pt;}
.ws119{word-spacing:5.491992pt;}
.ws23{word-spacing:6.626988pt;}
.ws1d5{word-spacing:6.643585pt;}
.ws1f{word-spacing:6.710673pt;}
.ws1fd{word-spacing:7.248779pt;}
.wsde{word-spacing:7.890344pt;}
.ws7e{word-spacing:8.737719pt;}
.ws1d4{word-spacing:8.983067pt;}
.wsa9{word-spacing:9.272784pt;}
.ws2c{word-spacing:9.950445pt;}
.ws26{word-spacing:12.369316pt;}
.wsbc{word-spacing:12.513463pt;}
.ws178{word-spacing:12.518511pt;}
.ws14b{word-spacing:14.116543pt;}
.ws14d{word-spacing:14.173927pt;}
.wsd3{word-spacing:14.298260pt;}
.ws117{word-spacing:14.604309pt;}
.ws14c{word-spacing:14.857930pt;}
.ws69{word-spacing:15.982667pt;}
.ws1b{word-spacing:17.236315pt;}
.ws1a{word-spacing:19.077152pt;}
.ws18{word-spacing:19.236553pt;}
.ws19{word-spacing:19.606364pt;}
.ws129{word-spacing:164.667733pt;}
._17{margin-left:-22.311217pt;}
._20{margin-left:-20.211338pt;}
._21{margin-left:-19.247211pt;}
._13{margin-left:-18.192223pt;}
._1b{margin-left:-16.228634pt;}
._16{margin-left:-12.438993pt;}
._15{margin-left:-11.376465pt;}
._28{margin-left:-10.112160pt;}
._19{margin-left:-8.390690pt;}
._24{margin-left:-7.487216pt;}
._23{margin-left:-6.331283pt;}
._2{margin-left:-2.012405pt;}
._1{margin-left:-1.111804pt;}
._0{width:1.153002pt;}
._5{width:5.826012pt;}
._18{width:6.935659pt;}
._4{width:8.021724pt;}
._3{width:9.201273pt;}
._29{width:10.223172pt;}
._7{width:11.321271pt;}
._a{width:12.571141pt;}
._6{width:13.863676pt;}
._8{width:15.644953pt;}
._d{width:17.151301pt;}
._9{width:18.075779pt;}
._11{width:19.233791pt;}
._b{width:21.048455pt;}
._1c{width:22.765518pt;}
._e{width:23.688087pt;}
._f{width:25.304616pt;}
._1a{width:26.288194pt;}
._10{width:27.472888pt;}
._1d{width:29.701177pt;}
._1f{width:31.215513pt;}
._27{width:32.295739pt;}
._1e{width:33.305296pt;}
._c{width:34.612673pt;}
._22{width:35.793855pt;}
._26{width:38.721572pt;}
._12{width:41.735100pt;}
._14{width:46.134737pt;}
._25{width:89.671758pt;}
.fsd{font-size:10.666667pt;}
.fs14{font-size:16.000000pt;}
.fs12{font-size:21.333333pt;}
.fsb{font-size:26.666667pt;}
.fs10{font-size:28.334400pt;}
.fs16{font-size:30.106133pt;}
.fse{font-size:32.000000pt;}
.fs8{font-size:33.648533pt;}
.fs9{font-size:35.333867pt;}
.fs2{font-size:37.193600pt;}
.fs11{font-size:37.333333pt;}
.fs3{font-size:38.256533pt;}
.fs6{font-size:39.849600pt;}
.fsf{font-size:42.507733pt;}
.fsa{font-size:42.666667pt;}
.fs15{font-size:45.163733pt;}
.fs1{font-size:47.820267pt;}
.fsc{font-size:48.000000pt;}
.fs13{font-size:49.925839pt;}
.fs7{font-size:50.477867pt;}
.fs0{font-size:53.133867pt;}
.fs5{font-size:58.448000pt;}
.fs4{font-size:63.760533pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:44.749600pt;}
.y1bf{bottom:88.439222pt;}
.y186{bottom:88.501576pt;}
.y148{bottom:88.516527pt;}
.y14a{bottom:88.516533pt;}
.y15e{bottom:88.516542pt;}
.y1c{bottom:88.815976pt;}
.y89{bottom:89.120352pt;}
.ycf{bottom:89.120768pt;}
.y49{bottom:89.412365pt;}
.y149{bottom:93.203067pt;}
.y15f{bottom:93.278667pt;}
.y1b{bottom:100.835088pt;}
.y147{bottom:101.744933pt;}
.y145{bottom:101.744942pt;}
.y15d{bottom:101.820400pt;}
.y185{bottom:103.090941pt;}
.y1be{bottom:103.104304pt;}
.ycc{bottom:103.709286pt;}
.y88{bottom:103.709718pt;}
.yce{bottom:103.710133pt;}
.y48{bottom:104.001730pt;}
.y146{bottom:106.507067pt;}
.ycd{bottom:109.379467pt;}
.y1a{bottom:112.778883pt;}
.y144{bottom:115.048800pt;}
.y184{bottom:117.680307pt;}
.y1bd{bottom:117.693669pt;}
.y87{bottom:118.374368pt;}
.y47{bottom:118.666812pt;}
.y19{bottom:124.722678pt;}
.y15c{bottom:128.300133pt;}
.y15a{bottom:128.300400pt;}
.y1bc{bottom:132.283035pt;}
.y183{bottom:132.345389pt;}
.y84{bottom:132.962454pt;}
.y86{bottom:132.963733pt;}
.y46{bottom:133.256178pt;}
.y18{bottom:136.666473pt;}
.y85{bottom:138.557467pt;}
.y157{bottom:139.721467pt;}
.y158{bottom:140.069333pt;}
.y13c{bottom:140.737333pt;}
.y15b{bottom:140.966400pt;}
.y159{bottom:140.966667pt;}
.y1bb{bottom:146.872400pt;}
.y182{bottom:146.934754pt;}
.y83{bottom:147.551819pt;}
.y45{bottom:147.845543pt;}
.y17{bottom:148.610267pt;}
.y14b{bottom:153.089333pt;}
.ycb{bottom:154.885412pt;}
.y16{bottom:160.554062pt;}
.y181{bottom:161.524120pt;}
.y13e{bottom:162.070533pt;}
.y141{bottom:162.070933pt;}
.y82{bottom:162.216901pt;}
.y44{bottom:162.510626pt;}
.y1ba{bottom:168.793733pt;}
.y14d{bottom:170.581200pt;}
.yca{bottom:170.834667pt;}
.y13d{bottom:174.736800pt;}
.y140{bottom:174.737200pt;}
.y180{bottom:176.189202pt;}
.y7f{bottom:176.805835pt;}
.y81{bottom:176.806267pt;}
.y43{bottom:177.099991pt;}
.y80{bottom:182.400000pt;}
.y15{bottom:184.516039pt;}
.y13b{bottom:186.070267pt;}
.y13f{bottom:186.070667pt;}
.y14e{bottom:187.529467pt;}
.y17f{bottom:190.778567pt;}
.y7c{bottom:191.394352pt;}
.y7e{bottom:191.395200pt;}
.y42{bottom:191.689356pt;}
.y14{bottom:196.458904pt;}
.y7d{bottom:196.988933pt;}
.y130{bottom:198.172133pt;}
.yc9{bottom:200.012533pt;}
.y14f{bottom:205.023867pt;}
.y17e{bottom:205.367933pt;}
.y7b{bottom:205.983718pt;}
.y41{bottom:206.354439pt;}
.y13{bottom:208.401769pt;}
.y131{bottom:212.273867pt;}
.y1b9{bottom:219.932059pt;}
.y17d{bottom:219.957298pt;}
.y12{bottom:220.344634pt;}
.y78{bottom:220.648069pt;}
.y7a{bottom:220.648800pt;}
.y40{bottom:220.943804pt;}
.y150{bottom:222.518267pt;}
.y79{bottom:226.242400pt;}
.y132{bottom:226.528133pt;}
.y11{bottom:232.287499pt;}
.y143{bottom:234.197600pt;}
.y1b8{bottom:234.521425pt;}
.y17c{bottom:234.622380pt;}
.y77{bottom:235.237435pt;}
.y3f{bottom:235.533169pt;}
.y151{bottom:239.463333pt;}
.y133{bottom:241.804267pt;}
.yc8{bottom:246.498539pt;}
.y1b7{bottom:249.186507pt;}
.y17b{bottom:249.211746pt;}
.y76{bottom:249.826800pt;}
.y3e{bottom:250.122535pt;}
.y134{bottom:256.061867pt;}
.y152{bottom:256.957733pt;}
.y14c{bottom:259.088667pt;}
.yc7{bottom:261.163622pt;}
.y1b6{bottom:263.775872pt;}
.y17a{bottom:263.801111pt;}
.y3d{bottom:264.787617pt;}
.y10{bottom:268.193271pt;}
.y135{bottom:270.829200pt;}
.y75{bottom:271.748000pt;}
.y153{bottom:274.452133pt;}
.yc6{bottom:275.752987pt;}
.y1b5{bottom:278.365238pt;}
.y179{bottom:278.466193pt;}
.y3c{bottom:279.376982pt;}
.yf{bottom:280.137065pt;}
.y136{bottom:285.086267pt;}
.yc5{bottom:290.342352pt;}
.y154{bottom:291.945467pt;}
.y1b4{bottom:293.030320pt;}
.y178{bottom:293.055559pt;}
.y3b{bottom:293.966348pt;}
.ye{bottom:298.052293pt;}
.y137{bottom:299.854133pt;}
.yc4{bottom:305.007435pt;}
.y1b3{bottom:307.619685pt;}
.y177{bottom:307.644924pt;}
.y3a{bottom:308.631430pt;}
.y155{bottom:308.893733pt;}
.yd{bottom:309.996087pt;}
.y138{bottom:313.954000pt;}
.y74{bottom:314.907574pt;}
.yc3{bottom:319.596800pt;}
.yc{bottom:321.939882pt;}
.y1b2{bottom:322.209051pt;}
.y176{bottom:322.310006pt;}
.y39{bottom:323.220795pt;}
.y156{bottom:326.388133pt;}
.y232{bottom:327.144838pt;}
.y139{bottom:329.387867pt;}
.y73{bottom:329.572656pt;}
.y202{bottom:330.101933pt;}
.yb{bottom:333.958994pt;}
.y1b1{bottom:336.798416pt;}
.y175{bottom:336.899372pt;}
.y38{bottom:337.810161pt;}
.y231{bottom:340.448945pt;}
.yc2{bottom:341.518000pt;}
.y201{bottom:343.406040pt;}
.y13a{bottom:343.645333pt;}
.y72{bottom:344.162022pt;}
.y142{bottom:344.183333pt;}
.ya{bottom:345.902789pt;}
.y1b0{bottom:351.463498pt;}
.y174{bottom:351.488737pt;}
.y37{bottom:352.475243pt;}
.y230{bottom:353.753052pt;}
.y200{bottom:356.634498pt;}
.y9{bottom:357.846584pt;}
.y71{bottom:358.751387pt;}
.y1af{bottom:366.052864pt;}
.y173{bottom:366.078103pt;}
.y22f{bottom:366.981509pt;}
.y36{bottom:367.064609pt;}
.y1ff{bottom:369.938604pt;}
.y70{bottom:373.416469pt;}
.ybf{bottom:378.027718pt;}
.yc1{bottom:378.028267pt;}
.y22e{bottom:380.285616pt;}
.y1ae{bottom:380.642229pt;}
.y172{bottom:380.743185pt;}
.y35{bottom:381.653974pt;}
.y1fe{bottom:383.242711pt;}
.yc0{bottom:383.622000pt;}
.y6f{bottom:388.005835pt;}
.ybc{bottom:392.690357pt;}
.ybe{bottom:392.692800pt;}
.y22d{bottom:393.589723pt;}
.y1ad{bottom:395.307311pt;}
.y171{bottom:395.332550pt;}
.y34{bottom:396.319056pt;}
.y1fd{bottom:396.546818pt;}
.y11d{bottom:397.605835pt;}
.yea{bottom:397.681435pt;}
.yec{bottom:397.681867pt;}
.ybd{bottom:398.286533pt;}
.y6e{bottom:402.595200pt;}
.yeb{bottom:403.275467pt;}
.y22c{bottom:406.893829pt;}
.ybb{bottom:407.279723pt;}
.y1fc{bottom:409.775275pt;}
.y1ac{bottom:409.896677pt;}
.y170{bottom:409.921916pt;}
.y33{bottom:410.908422pt;}
.y11a{bottom:412.188785pt;}
.y11c{bottom:412.195200pt;}
.ye7{bottom:412.265980pt;}
.ye9{bottom:412.270800pt;}
.y11b{bottom:417.788800pt;}
.ye8{bottom:417.864400pt;}
.y22b{bottom:420.122287pt;}
.yba{bottom:421.869088pt;}
.y1fb{bottom:423.079382pt;}
.y1ab{bottom:424.486042pt;}
.y6d{bottom:424.516400pt;}
.y16f{bottom:424.586998pt;}
.y32{bottom:425.497787pt;}
.y119{bottom:426.778150pt;}
.ye6{bottom:426.931062pt;}
.y22a{bottom:433.426393pt;}
.y1fa{bottom:436.383489pt;}
.yb9{bottom:436.458454pt;}
.y1aa{bottom:439.151124pt;}
.y16e{bottom:439.176363pt;}
.y31{bottom:440.087152pt;}
.y118{bottom:441.367516pt;}
.ye5{bottom:441.520428pt;}
.y229{bottom:446.730500pt;}
.y1f9{bottom:449.611946pt;}
.yb8{bottom:451.123536pt;}
.y1a9{bottom:453.740490pt;}
.y16d{bottom:453.765729pt;}
.y30{bottom:454.752235pt;}
.y117{bottom:456.032598pt;}
.ye4{bottom:456.109793pt;}
.y228{bottom:460.034607pt;}
.y1f8{bottom:462.916053pt;}
.yb7{bottom:465.712901pt;}
.y6c{bottom:467.678118pt;}
.y1a8{bottom:468.329855pt;}
.y16c{bottom:468.430811pt;}
.y2f{bottom:469.341600pt;}
.y116{bottom:470.621963pt;}
.ye3{bottom:470.699158pt;}
.y227{bottom:473.263064pt;}
.y1f7{bottom:476.220160pt;}
.yb4{bottom:480.300006pt;}
.yb6{bottom:480.302267pt;}
.y6b{bottom:482.342336pt;}
.y1a7{bottom:482.919221pt;}
.y16b{bottom:483.020176pt;}
.y115{bottom:485.211329pt;}
.ye2{bottom:485.364241pt;}
.yb5{bottom:485.971467pt;}
.y226{bottom:486.567171pt;}
.y1f6{bottom:489.524267pt;}
.yb3{bottom:494.965088pt;}
.y6a{bottom:496.931701pt;}
.y1a6{bottom:497.584303pt;}
.y16a{bottom:497.609542pt;}
.y2e{bottom:498.595200pt;}
.y225{bottom:499.871278pt;}
.y114{bottom:499.876411pt;}
.ye1{bottom:499.953606pt;}
.y1f4{bottom:502.747752pt;}
.y1f5{bottom:507.817200pt;}
.yb2{bottom:509.554454pt;}
.y67{bottom:511.518939pt;}
.y69{bottom:511.521067pt;}
.y1a5{bottom:512.173668pt;}
.y169{bottom:512.274624pt;}
.y224{bottom:513.099735pt;}
.y113{bottom:514.465776pt;}
.ye0{bottom:514.542971pt;}
.y1f3{bottom:516.051858pt;}
.y68{bottom:517.190400pt;}
.yb1{bottom:524.143819pt;}
.y66{bottom:526.184022pt;}
.y223{bottom:526.403842pt;}
.y1a4{bottom:526.763034pt;}
.y168{bottom:526.863989pt;}
.y112{bottom:529.055142pt;}
.ydf{bottom:529.208054pt;}
.y1f2{bottom:529.355965pt;}
.yb0{bottom:538.808901pt;}
.y222{bottom:539.707949pt;}
.y65{bottom:540.773387pt;}
.y1a3{bottom:541.428116pt;}
.y167{bottom:541.453355pt;}
.y1f1{bottom:542.660072pt;}
.y111{bottom:543.720224pt;}
.yde{bottom:543.797419pt;}
.y221{bottom:553.012056pt;}
.yaf{bottom:553.398267pt;}
.y64{bottom:555.362752pt;}
.y1f0{bottom:555.888529pt;}
.y1a2{bottom:556.017481pt;}
.y166{bottom:556.042720pt;}
.y2d{bottom:557.026666pt;}
.y110{bottom:558.309589pt;}
.ydd{bottom:558.386784pt;}
.y220{bottom:566.240513pt;}
.y1ef{bottom:569.192636pt;}
.y63{bottom:570.027835pt;}
.y1a1{bottom:570.606847pt;}
.y165{bottom:570.707803pt;}
.y2c{bottom:571.615605pt;}
.y10f{bottom:572.898955pt;}
.yda{bottom:573.051003pt;}
.ydc{bottom:573.051867pt;}
.yae{bottom:575.319600pt;}
.ydb{bottom:578.645600pt;}
.y21f{bottom:579.544620pt;}
.y1ee{bottom:582.496743pt;}
.y5f{bottom:584.615920pt;}
.y61{bottom:584.617200pt;}
.y1a0{bottom:585.271929pt;}
.y164{bottom:585.297168pt;}
.y2b{bottom:586.204544pt;}
.y10e{bottom:587.564037pt;}
.yd9{bottom:587.640368pt;}
.y62{bottom:589.152667pt;}
.y60{bottom:590.210800pt;}
.y21e{bottom:592.848727pt;}
.y1ed{bottom:595.800850pt;}
.y5e{bottom:599.205286pt;}
.y19f{bottom:599.861294pt;}
.y163{bottom:599.886533pt;}
.y2a{bottom:600.869196pt;}
.y10d{bottom:602.153403pt;}
.yd6{bottom:602.228886pt;}
.yd8{bottom:602.229733pt;}
.y21d{bottom:606.152833pt;}
.yd7{bottom:607.823467pt;}
.y1ec{bottom:609.029307pt;}
.yab{bottom:611.827473pt;}
.yad{bottom:611.829733pt;}
.y5d{bottom:613.794651pt;}
.y19e{bottom:614.450660pt;}
.y29{bottom:615.458135pt;}
.y10c{bottom:616.742768pt;}
.yd5{bottom:616.893968pt;}
.yac{bottom:617.423467pt;}
.y21c{bottom:619.381291pt;}
.y1eb{bottom:622.333414pt;}
.yaa{bottom:626.416838pt;}
.y5c{bottom:628.459733pt;}
.y19d{bottom:629.115742pt;}
.y162{bottom:629.140000pt;}
.y28{bottom:630.047073pt;}
.y10b{bottom:631.332133pt;}
.yd2{bottom:631.482901pt;}
.yd4{bottom:631.483333pt;}
.y21b{bottom:632.685398pt;}
.y1ea{bottom:635.637521pt;}
.yd3{bottom:637.076933pt;}
.ya9{bottom:641.081920pt;}
.y19c{bottom:643.705107pt;}
.y27{bottom:644.711726pt;}
.y21a{bottom:645.989504pt;}
.yd1{bottom:646.072267pt;}
.y1e9{bottom:648.865978pt;}
.y5b{bottom:650.380933pt;}
.y10a{bottom:653.253679pt;}
.ya8{bottom:655.671286pt;}
.y19b{bottom:658.294473pt;}
.y219{bottom:659.217962pt;}
.y26{bottom:659.300665pt;}
.y1e8{bottom:662.170085pt;}
.y109{bottom:669.202933pt;}
.ya7{bottom:670.260651pt;}
.y218{bottom:672.522069pt;}
.y19a{bottom:672.883838pt;}
.y161{bottom:672.982101pt;}
.y25{bottom:673.889603pt;}
.y1e7{bottom:675.474191pt;}
.y5a{bottom:679.558933pt;}
.ya4{bottom:684.925435pt;}
.ya6{bottom:684.925733pt;}
.y217{bottom:685.826175pt;}
.y199{bottom:687.548920pt;}
.y160{bottom:687.571467pt;}
.y24{bottom:688.554256pt;}
.y1e6{bottom:688.778298pt;}
.ya5{bottom:690.519467pt;}
.y12f{bottom:694.828275pt;}
.y216{bottom:699.130282pt;}
.ya0{bottom:699.514368pt;}
.ya2{bottom:699.514800pt;}
.y1e5{bottom:702.006756pt;}
.y198{bottom:702.138286pt;}
.y23{bottom:703.143195pt;}
.ya3{bottom:704.125867pt;}
.ya1{bottom:705.108533pt;}
.y12e{bottom:708.132133pt;}
.y12c{bottom:708.132142pt;}
.y215{bottom:712.358740pt;}
.y12d{bottom:712.818667pt;}
.y9f{bottom:714.103733pt;}
.y1e4{bottom:715.310862pt;}
.y197{bottom:716.727651pt;}
.y22{bottom:717.732133pt;}
.y106{bottom:718.108720pt;}
.y108{bottom:718.110000pt;}
.y12b{bottom:721.436000pt;}
.y107{bottom:723.703733pt;}
.y214{bottom:725.662846pt;}
.y1e3{bottom:728.614969pt;}
.y196{bottom:731.392734pt;}
.y59{bottom:731.407585pt;}
.y105{bottom:732.698086pt;}
.y9e{bottom:736.025067pt;}
.y213{bottom:738.966953pt;}
.y21{bottom:739.502133pt;}
.y1e2{bottom:741.919076pt;}
.y195{bottom:745.982099pt;}
.y58{bottom:745.996950pt;}
.y104{bottom:747.363168pt;}
.y12a{bottom:747.403333pt;}
.y1d3{bottom:749.404533pt;}
.y1d1{bottom:749.404675pt;}
.y212{bottom:752.271060pt;}
.y1d2{bottom:754.166800pt;}
.y1e1{bottom:755.147533pt;}
.y194{bottom:760.571464pt;}
.y57{bottom:760.586316pt;}
.y101{bottom:761.952101pt;}
.y103{bottom:761.952533pt;}
.y1d0{bottom:762.708533pt;}
.y127{bottom:765.380933pt;}
.y211{bottom:765.499517pt;}
.y102{bottom:767.546267pt;}
.y1e0{bottom:768.451640pt;}
.y193{bottom:775.236547pt;}
.y56{bottom:775.251398pt;}
.y9d{bottom:775.255254pt;}
.yfe{bottom:776.541168pt;}
.y100{bottom:776.541467pt;}
.y11e{bottom:778.590533pt;}
.y210{bottom:778.803624pt;}
.y1df{bottom:781.755747pt;}
.yff{bottom:782.135200pt;}
.y1cf{bottom:783.862667pt;}
.y1cd{bottom:783.862933pt;}
.y128{bottom:787.497200pt;}
.y1ca{bottom:789.757200pt;}
.y192{bottom:789.825912pt;}
.y55{bottom:789.840763pt;}
.y9c{bottom:789.844619pt;}
.yfb{bottom:791.129984pt;}
.yfd{bottom:791.130533pt;}
.y20f{bottom:792.107731pt;}
.y20{bottom:792.642400pt;}
.y1de{bottom:794.984204pt;}
.y1c9{bottom:796.528267pt;}
.y1ce{bottom:796.528933pt;}
.y1cc{bottom:796.529200pt;}
.yfc{bottom:796.799867pt;}
.y11f{bottom:799.153733pt;}
.y191{bottom:804.415277pt;}
.y54{bottom:804.430129pt;}
.y9b{bottom:804.433984pt;}
.y20e{bottom:805.411838pt;}
.y1c0{bottom:805.702533pt;}
.yf8{bottom:805.794635pt;}
.yfa{bottom:805.795067pt;}
.y1dd{bottom:808.288311pt;}
.yf9{bottom:811.388800pt;}
.y20d{bottom:818.640295pt;}
.y190{bottom:819.080360pt;}
.y53{bottom:819.095211pt;}
.y99{bottom:819.099067pt;}
.yf5{bottom:820.383568pt;}
.yf7{bottom:820.384000pt;}
.y1c1{bottom:820.595733pt;}
.y120{bottom:821.254000pt;}
.y1dc{bottom:821.592418pt;}
.y9a{bottom:824.692667pt;}
.yf6{bottom:825.977733pt;}
.y20c{bottom:831.944402pt;}
.y1f{bottom:832.478022pt;}
.y18f{bottom:833.669725pt;}
.y52{bottom:833.684576pt;}
.y96{bottom:833.687136pt;}
.y98{bottom:833.688000pt;}
.y1c2{bottom:834.804800pt;}
.y1db{bottom:834.896525pt;}
.yf4{bottom:834.972933pt;}
.y97{bottom:839.281600pt;}
.y121{bottom:841.578267pt;}
.y20b{bottom:845.248509pt;}
.y1da{bottom:848.124982pt;}
.y18e{bottom:848.259090pt;}
.y51{bottom:848.273942pt;}
.y95{bottom:848.276501pt;}
.y1c3{bottom:849.496000pt;}
.y1e{bottom:855.079537pt;}
.yf3{bottom:856.894612pt;}
.y20a{bottom:858.476966pt;}
.y1cb{bottom:858.934533pt;}
.y8{bottom:861.279627pt;}
.y1d9{bottom:861.429089pt;}
.y18d{bottom:862.848456pt;}
.y50{bottom:862.863307pt;}
.y94{bottom:862.865867pt;}
.y122{bottom:862.893467pt;}
.y1c4{bottom:864.837867pt;}
.y209{bottom:871.781073pt;}
.yf2{bottom:872.843867pt;}
.y7{bottom:873.222492pt;}
.y1d8{bottom:874.733196pt;}
.y18c{bottom:877.513538pt;}
.y4f{bottom:877.528389pt;}
.y91{bottom:877.530101pt;}
.y93{bottom:877.530400pt;}
.y1d{bottom:877.606133pt;}
.y1c5{bottom:879.516533pt;}
.y92{bottom:883.124133pt;}
.y123{bottom:884.883867pt;}
.y208{bottom:885.085180pt;}
.y6{bottom:885.165357pt;}
.y1d7{bottom:888.037302pt;}
.y18b{bottom:892.102903pt;}
.y8e{bottom:892.117208pt;}
.y4e{bottom:892.117755pt;}
.y90{bottom:892.119467pt;}
.y1c6{bottom:894.070800pt;}
.y5{bottom:897.108221pt;}
.y8f{bottom:897.713200pt;}
.y207{bottom:898.389286pt;}
.y1d6{bottom:901.265760pt;}
.y124{bottom:905.835333pt;}
.y18a{bottom:906.692269pt;}
.y8d{bottom:906.706573pt;}
.y4d{bottom:906.707120pt;}
.y4{bottom:909.127333pt;}
.y1c7{bottom:909.148000pt;}
.y206{bottom:911.617744pt;}
.y1d5{bottom:914.569867pt;}
.y3{bottom:921.070667pt;}
.y189{bottom:921.357351pt;}
.y8c{bottom:921.371655pt;}
.y4c{bottom:921.372203pt;}
.yf1{bottom:921.372501pt;}
.y1c8{bottom:924.027467pt;}
.y205{bottom:924.921851pt;}
.y125{bottom:927.625200pt;}
.y188{bottom:935.946717pt;}
.y8b{bottom:935.961021pt;}
.yee{bottom:935.961431pt;}
.y4b{bottom:935.961568pt;}
.yf0{bottom:935.961867pt;}
.y204{bottom:938.225957pt;}
.yef{bottom:941.555600pt;}
.y1d4{bottom:943.823467pt;}
.y129{bottom:943.896133pt;}
.y126{bottom:948.521200pt;}
.y187{bottom:950.536082pt;}
.y8a{bottom:950.550386pt;}
.yed{bottom:950.550797pt;}
.y4a{bottom:950.550933pt;}
.y203{bottom:951.530064pt;}
.yd0{bottom:990.462667pt;}
.y2{bottom:1017.599733pt;}
.h16{height:20.259096pt;}
.h27{height:21.525885pt;}
.h1d{height:23.509926pt;}
.ha{height:23.532355pt;}
.h9{height:24.058701pt;}
.h1e{height:26.448667pt;}
.h17{height:28.224000pt;}
.h19{height:28.224533pt;}
.h18{height:28.225067pt;}
.h1a{height:28.225600pt;}
.h3{height:28.341523pt;}
.h7{height:30.365395pt;}
.h15{height:30.393029pt;}
.h11{height:32.256000pt;}
.h25{height:32.292069pt;}
.h26{height:32.337233pt;}
.h14{height:32.390893pt;}
.h2{height:33.187265pt;}
.h10{height:35.865200pt;}
.h8{height:36.091675pt;}
.h20{height:36.158400pt;}
.h24{height:36.158933pt;}
.h21{height:36.159467pt;}
.h1c{height:36.160000pt;}
.h1b{height:36.161600pt;}
.h6{height:36.439043pt;}
.h22{height:38.043490pt;}
.h1f{height:40.191467pt;}
.h13{height:40.192000pt;}
.h1{height:40.488006pt;}
.hd{height:41.675417pt;}
.hc{height:41.676612pt;}
.hb{height:41.677679pt;}
.h23{height:41.781867pt;}
.he{height:41.976622pt;}
.hf{height:41.985665pt;}
.h12{height:43.590933pt;}
.h5{height:44.537376pt;}
.h4{height:48.585526pt;}
.h0{height:1040.000000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x3{left:63.798400pt;}
.x7a{left:70.526000pt;}
.x63{left:75.272800pt;}
.x3b{left:79.671602pt;}
.x5b{left:81.514267pt;}
.x57{left:83.861333pt;}
.x7{left:92.296000pt;}
.x9{left:99.099200pt;}
.x75{left:105.060267pt;}
.x8{left:108.245744pt;}
.x72{left:113.369600pt;}
.x73{left:114.302800pt;}
.x66{left:118.903867pt;}
.x16{left:128.655067pt;}
.xa{left:134.929067pt;}
.x17{left:138.633067pt;}
.xb{left:144.151200pt;}
.xf{left:146.948000pt;}
.x5c{left:150.534133pt;}
.x56{left:161.770267pt;}
.x64{left:174.689733pt;}
.x74{left:177.631067pt;}
.x65{left:184.818933pt;}
.xc{left:190.185733pt;}
.x79{left:191.319600pt;}
.xd{left:202.204667pt;}
.x3c{left:208.251867pt;}
.x3a{left:211.200000pt;}
.x5e{left:215.716267pt;}
.x58{left:220.135600pt;}
.x5d{left:225.613333pt;}
.x37{left:227.376400pt;}
.x77{left:234.311600pt;}
.x4{left:239.092933pt;}
.xe{left:240.680267pt;}
.x3d{left:243.099200pt;}
.x5{left:245.896000pt;}
.x62{left:247.898667pt;}
.x6{left:255.043939pt;}
.x59{left:264.113333pt;}
.x76{left:267.070267pt;}
.x3e{left:271.748000pt;}
.x5a{left:274.242533pt;}
.x3f{left:278.551067pt;}
.x61{left:295.658267pt;}
.x40{left:297.373200pt;}
.x5f{left:299.334667pt;}
.x12{left:301.379467pt;}
.x18{left:303.420400pt;}
.x60{left:306.851733pt;}
.x13{left:311.433067pt;}
.x10{left:313.549600pt;}
.x19{left:315.212533pt;}
.x78{left:321.817733pt;}
.x11{left:325.341733pt;}
.x6f{left:328.667600pt;}
.x38{left:330.708533pt;}
.x39{left:348.094400pt;}
.x14{left:357.089733pt;}
.x7b{left:363.817200pt;}
.x15{left:368.881867pt;}
.x41{left:390.500271pt;}
.x7c{left:401.836885pt;}
.x51{left:406.450411pt;}
.x49{left:410.910133pt;}
.x1a{left:419.074880pt;}
.x4c{left:422.777867pt;}
.x6a{left:424.547067pt;}
.x34{left:425.877067pt;}
.x4a{left:428.900667pt;}
.x68{left:433.497200pt;}
.x1b{left:435.024624pt;}
.x67{left:439.427867pt;}
.x24{left:466.771600pt;}
.x69{left:470.582000pt;}
.x26{left:472.743200pt;}
.x25{left:478.790400pt;}
.x27{left:484.762133pt;}
.x35{left:489.146400pt;}
.x46{left:490.582533pt;}
.x4d{left:497.839333pt;}
.x6e{left:499.502267pt;}
.x36{left:503.810933pt;}
.x4e{left:505.927467pt;}
.x28{left:522.330533pt;}
.x70{left:523.540000pt;}
.x6c{left:530.056267pt;}
.x6b{left:540.476000pt;}
.x4f{left:551.962133pt;}
.x50{left:563.829733pt;}
.x21{left:580.384133pt;}
.x71{left:582.349467pt;}
.x52{left:584.541600pt;}
.x30{left:587.943200pt;}
.x22{left:592.478533pt;}
.x53{left:599.659733pt;}
.x31{left:604.724267pt;}
.x6d{left:610.398000pt;}
.x32{left:621.203067pt;}
.x42{left:630.122667pt;}
.x33{left:633.221867pt;}
.x2d{left:635.489600pt;}
.x43{left:637.001467pt;}
.x54{left:639.269067pt;}
.x2e{left:644.031333pt;}
.x2f{left:653.026667pt;}
.x55{left:654.311733pt;}
.x44{left:655.747867pt;}
.x2{left:664.970000pt;}
.x4b{left:666.632933pt;}
.x45{left:667.766800pt;}
.x47{left:671.017200pt;}
.x29{left:677.895867pt;}
.x48{left:679.180933pt;}
.x2a{left:684.699067pt;}
.x1e{left:693.014000pt;}
.x1{left:694.903867pt;}
.x1f{left:699.590267pt;}
.x2b{left:703.521200pt;}
.x1c{left:710.021867pt;}
.x20{left:717.958800pt;}
.x2c{left:719.546267pt;}
.x1d{left:721.738400pt;}
.x23{left:725.215600pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  