
    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_a8c2de6e527ff46049898b53.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.108000;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_c6b766c454b783ddff5f76ec.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.460000;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_de1135724c552efc0ae3c0ba.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.026000;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_60e2c61d59cd8ca7c90bdee6.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.586000;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_7671f8a73a68e603cd90c61c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.668000;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_3058276f58db6520ac83ecdf.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.699000;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_f4792a321808221a189c4bbd.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.999000;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_d01ec03366e85d4597a09859.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.936250;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_7db69e3a745fc245476e6ef5.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.663000;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_ede76a7e516bf27ec78de551.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.774000;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;}
.mc{transform:matrix(0.218757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218757,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.218772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218772,0.000000,0.000000,0.250000,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);}
.m10{transform:matrix(0.253494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253494,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.254240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254240,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.256744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256744,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.256745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256745,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.256747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256747,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.259952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259952,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.259959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259959,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.259963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259963,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.259998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259998,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.261063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261063,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.281277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281277,0.000000,0.000000,0.250000,0,0);}
.ma{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);}
.m2{transform:matrix(0.281283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281283,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-2.040289px;}
.v2{vertical-align:-1.021435px;}
.v0{vertical-align:0.000000px;}
.ls34{letter-spacing:-1.113272px;}
.ls14{letter-spacing:-1.042502px;}
.ls17{letter-spacing:-1.018592px;}
.ls18{letter-spacing:-0.980335px;}
.ls27{letter-spacing:-0.965988px;}
.lsd{letter-spacing:-0.951642px;}
.ls22{letter-spacing:-0.946860px;}
.ls23{letter-spacing:-0.908603px;}
.ls2e{letter-spacing:-0.906275px;}
.lsf{letter-spacing:-0.889474px;}
.ls1c{letter-spacing:-0.884692px;}
.ls24{letter-spacing:-0.879910px;}
.lse{letter-spacing:-0.875128px;}
.ls10{letter-spacing:-0.860782px;}
.ls21{letter-spacing:-0.855999px;}
.ls15{letter-spacing:-0.851217px;}
.ls28{letter-spacing:-0.846435px;}
.ls20{letter-spacing:-0.836871px;}
.ls1e{letter-spacing:-0.827307px;}
.ls1b{letter-spacing:-0.808178px;}
.ls25{letter-spacing:-0.789050px;}
.ls19{letter-spacing:-0.784268px;}
.ls13{letter-spacing:-0.779486px;}
.ls26{letter-spacing:-0.769921px;}
.ls1f{letter-spacing:-0.765139px;}
.ls1a{letter-spacing:-0.760357px;}
.ls11{letter-spacing:-0.755575px;}
.lsb{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.004224px;}
.ls2d{letter-spacing:0.015300px;}
.ls30{letter-spacing:0.017850px;}
.ls0{letter-spacing:0.105594px;}
.ls1{letter-spacing:0.304111px;}
.ls31{letter-spacing:0.318750px;}
.ls9{letter-spacing:1.882195px;}
.ls2{letter-spacing:3.453283px;}
.ls3{letter-spacing:4.473428px;}
.lsa{letter-spacing:5.609427px;}
.ls33{letter-spacing:8.963381px;}
.ls7{letter-spacing:9.679381px;}
.ls1d{letter-spacing:10.429804px;}
.ls8{letter-spacing:12.467630px;}
.ls2f{letter-spacing:12.498235px;}
.ls29{letter-spacing:13.533400px;}
.ls35{letter-spacing:14.848483px;}
.ls2c{letter-spacing:15.178449px;}
.ls2b{letter-spacing:16.173130px;}
.ls2a{letter-spacing:17.158247px;}
.ls16{letter-spacing:17.866000px;}
.ls12{letter-spacing:19.511050px;}
.ls32{letter-spacing:22.719852px;}
.ls5{letter-spacing:23.671032px;}
.ls6{letter-spacing:23.676412px;}
.lsc{letter-spacing:23.902363px;}
.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;}
}
.ws17a{word-spacing:-22.767673px;}
.ws5d{word-spacing:-19.558871px;}
.ws63{word-spacing:-17.913822px;}
.ws116{word-spacing:-17.206068px;}
.wsf7{word-spacing:-13.581221px;}
.ws86{word-spacing:-10.477625px;}
.wsd{word-spacing:-5.702567px;}
.ws44{word-spacing:-0.047821px;}
.ws26{word-spacing:-0.043039px;}
.ws4{word-spacing:-0.042238px;}
.ws2d{word-spacing:-0.038256px;}
.ws147{word-spacing:-0.031876px;}
.ws47{word-spacing:0.000000px;}
.ws8a{word-spacing:0.789050px;}
.ws61{word-spacing:0.903821px;}
.ws25{word-spacing:7.385424px;}
.ws165{word-spacing:8.423971px;}
.ws164{word-spacing:8.603774px;}
.ws162{word-spacing:8.649682px;}
.ws163{word-spacing:8.653507px;}
.ws257{word-spacing:8.676461px;}
.ws1b4{word-spacing:8.787403px;}
.ws22e{word-spacing:8.802706px;}
.ws239{word-spacing:8.871566px;}
.ws3d{word-spacing:8.913648px;}
.ws213{word-spacing:8.963381px;}
.ws1b5{word-spacing:8.982509px;}
.ws23a{word-spacing:9.024590px;}
.ws41{word-spacing:9.173789px;}
.ws40{word-spacing:9.177614px;}
.ws3f{word-spacing:9.192917px;}
.ws3e{word-spacing:9.269429px;}
.ws3c{word-spacing:9.288557px;}
.ws21d{word-spacing:9.338290px;}
.ws1b8{word-spacing:9.353592px;}
.ws1b7{word-spacing:9.376546px;}
.ws2f{word-spacing:9.464534px;}
.ws24e{word-spacing:9.491314px;}
.ws20f{word-spacing:9.686419px;}
.ws1ac{word-spacing:9.713198px;}
.ws46{word-spacing:9.741178px;}
.ws1ab{word-spacing:9.938909px;}
.ws241{word-spacing:9.950386px;}
.ws169{word-spacing:9.988642px;}
.ws168{word-spacing:10.015421px;}
.ws167{word-spacing:10.267910px;}
.ws1e{word-spacing:10.398126px;}
.ws1f{word-spacing:10.406733px;}
.ws160{word-spacing:10.436237px;}
.ws242{word-spacing:10.440062px;}
.ws15f{word-spacing:10.600738px;}
.wsdf{word-spacing:10.611524px;}
.wse0{word-spacing:10.635435px;}
.ws137{word-spacing:10.688038px;}
.ws10d{word-spacing:10.726295px;}
.ws13d{word-spacing:10.740642px;}
.ws224{word-spacing:10.769064px;}
.ws122{word-spacing:10.855412px;}
.ws20d{word-spacing:10.880006px;}
.ws230{word-spacing:10.891483px;}
.wsdd{word-spacing:10.908016px;}
.ws172{word-spacing:10.912798px;}
.ws1c4{word-spacing:10.931926px;}
.ws14e{word-spacing:10.964170px;}
.ws1c2{word-spacing:10.989312px;}
.wsea{word-spacing:10.998876px;}
.wse9{word-spacing:11.013222px;}
.ws20e{word-spacing:11.052158px;}
.ws140{word-spacing:11.070608px;}
.ws6d{word-spacing:11.080172px;}
.ws1c3{word-spacing:11.084954px;}
.ws210{word-spacing:11.121019px;}
.ws1d0{word-spacing:11.137557px;}
.wse1{word-spacing:11.142340px;}
.ws2b{word-spacing:11.147122px;}
.ws20c{word-spacing:11.262566px;}
.ws121{word-spacing:11.266675px;}
.ws186{word-spacing:11.276239px;}
.ws1c{word-spacing:11.293329px;}
.ws106{word-spacing:11.304932px;}
.ws23c{word-spacing:11.438544px;}
.ws18e{word-spacing:11.486652px;}
.ws1cf{word-spacing:11.500999px;}
.ws1b1{word-spacing:11.511230px;}
.ws18{word-spacing:11.512826px;}
.ws1b2{word-spacing:11.515056px;}
.wse{word-spacing:11.555767px;}
.ws193{word-spacing:11.572730px;}
.ws1b0{word-spacing:11.591568px;}
.ws185{word-spacing:11.591859px;}
.ws21f{word-spacing:11.599219px;}
.ws146{word-spacing:11.677937px;}
.wsc1{word-spacing:11.725758px;}
.ws1c5{word-spacing:11.730540px;}
.wscf{word-spacing:11.759233px;}
.ws55{word-spacing:11.768797px;}
.ws1f2{word-spacing:11.807054px;}
.ws161{word-spacing:11.840232px;}
.ws1bc{word-spacing:11.888350px;}
.ws148{word-spacing:11.893132px;}
.wsd6{word-spacing:11.926607px;}
.ws6a{word-spacing:11.945736px;}
.ws16{word-spacing:11.951819px;}
.wscd{word-spacing:11.964864px;}
.ws87{word-spacing:12.003121px;}
.wsc4{word-spacing:12.050942px;}
.wsc{word-spacing:12.062117px;}
.ws13c{word-spacing:12.065289px;}
.ws1af{word-spacing:12.111850px;}
.ws1b9{word-spacing:12.130978px;}
.ws72{word-spacing:12.132238px;}
.wsa{word-spacing:12.142454px;}
.ws120{word-spacing:12.160931px;}
.ws258{word-spacing:12.176885px;}
.ws126{word-spacing:12.180060px;}
.ws2e{word-spacing:12.188362px;}
.wsb{word-spacing:12.207490px;}
.ws42{word-spacing:12.215141px;}
.wsec{word-spacing:12.238094px;}
.ws14{word-spacing:12.241920px;}
.ws10{word-spacing:12.245746px;}
.ws16c{word-spacing:12.249571px;}
.ws32{word-spacing:12.253397px;}
.ws248{word-spacing:12.268699px;}
.ws155{word-spacing:12.280176px;}
.ws166{word-spacing:12.291653px;}
.ws16b{word-spacing:12.295478px;}
.ws12{word-spacing:12.299304px;}
.ws214{word-spacing:12.306955px;}
.ws21b{word-spacing:12.318432px;}
.ws15{word-spacing:12.345211px;}
.ws7d{word-spacing:12.352216px;}
.ws238{word-spacing:12.364339px;}
.ws11{word-spacing:12.375816px;}
.ws252{word-spacing:12.394944px;}
.ws93{word-spacing:12.395255px;}
.ws13{word-spacing:12.414072px;}
.ws81{word-spacing:12.423948px;}
.ws1f0{word-spacing:12.438294px;}
.ws150{word-spacing:12.444677px;}
.wsdc{word-spacing:12.452640px;}
.wsf9{word-spacing:12.476551px;}
.ws16e{word-spacing:12.481333px;}
.ws7c{word-spacing:12.500462px;}
.ws9c{word-spacing:12.505244px;}
.wsfa{word-spacing:12.510026px;}
.wse8{word-spacing:12.562629px;}
.ws1e4{word-spacing:12.576976px;}
.wsf{word-spacing:12.593875px;}
.ws17{word-spacing:12.601702px;}
.ws94{word-spacing:12.605668px;}
.ws170{word-spacing:12.639143px;}
.ws14f{word-spacing:12.666562px;}
.ws235{word-spacing:12.750725px;}
.ws123{word-spacing:12.753914px;}
.wsd4{word-spacing:12.763478px;}
.ws1d8{word-spacing:12.782607px;}
.ws231{word-spacing:12.804283px;}
.ws1d9{word-spacing:12.892596px;}
.ws1e6{word-spacing:12.897378px;}
.ws18a{word-spacing:12.916506px;}
.ws1e3{word-spacing:12.940417px;}
.ws189{word-spacing:12.983456px;}
.wsd5{word-spacing:12.997802px;}
.ws1c6{word-spacing:13.026495px;}
.ws16f{word-spacing:13.050405px;}
.ws14d{word-spacing:13.052947px;}
.ws97{word-spacing:13.088662px;}
.wsf6{word-spacing:13.103009px;}
.wse7{word-spacing:13.107791px;}
.wsb0{word-spacing:13.141266px;}
.ws1a{word-spacing:13.182723px;}
.ws159{word-spacing:13.217780px;}
.ws98{word-spacing:13.270383px;}
.ws1d{word-spacing:13.281712px;}
.wsda{word-spacing:13.327768px;}
.ws73{word-spacing:13.342115px;}
.ws175{word-spacing:13.370808px;}
.ws131{word-spacing:13.385154px;}
.ws187{word-spacing:13.389936px;}
.ws249{word-spacing:13.454635px;}
.ws1ef{word-spacing:13.461668px;}
.ws54{word-spacing:13.499925px;}
.ws53{word-spacing:13.514271px;}
.ws31{word-spacing:13.531147px;}
.ws1bf{word-spacing:13.533400px;}
.ws17d{word-spacing:13.581221px;}
.wsf8{word-spacing:13.595567px;}
.ws112{word-spacing:13.619478px;}
.ws192{word-spacing:13.672081px;}
.ws74{word-spacing:13.695992px;}
.wseb{word-spacing:13.719902px;}
.ws1ec{word-spacing:13.734249px;}
.ws1a4{word-spacing:13.748595px;}
.ws1ff{word-spacing:13.758159px;}
.ws105{word-spacing:13.772506px;}
.ws1fe{word-spacing:13.791634px;}
.ws30{word-spacing:13.810416px;}
.ws1fd{word-spacing:13.810763px;}
.ws24{word-spacing:13.836910px;}
.ws1a3{word-spacing:13.839455px;}
.ws190{word-spacing:13.858584px;}
.ws173{word-spacing:13.863366px;}
.ws191{word-spacing:13.906405px;}
.ws17e{word-spacing:13.911187px;}
.wsce{word-spacing:13.935098px;}
.ws1b{word-spacing:13.940203px;}
.ws174{word-spacing:13.944662px;}
.wsd9{word-spacing:14.049869px;}
.ws24c{word-spacing:14.059080px;}
.ws21e{word-spacing:14.082034px;}
.ws211{word-spacing:14.093510px;}
.ws194{word-spacing:14.097690px;}
.ws14a{word-spacing:14.121600px;}
.ws17f{word-spacing:14.126382px;}
.ws78{word-spacing:14.207679px;}
.ws110{word-spacing:14.212461px;}
.ws14c{word-spacing:14.241153px;}
.ws79{word-spacing:14.255500px;}
.ws104{word-spacing:14.288975px;}
.ws203{word-spacing:14.332014px;}
.ws1f4{word-spacing:14.384617px;}
.ws171{word-spacing:14.475477px;}
.ws71{word-spacing:14.480259px;}
.ws143{word-spacing:14.528081px;}
.ws11d{word-spacing:14.551991px;}
.wsd0{word-spacing:14.556773px;}
.ws13f{word-spacing:14.561555px;}
.ws144{word-spacing:14.571120px;}
.ws8d{word-spacing:14.585466px;}
.ws1e7{word-spacing:14.618941px;}
.ws6f{word-spacing:14.666762px;}
.ws240{word-spacing:14.690304px;}
.ws145{word-spacing:14.690673px;}
.ws4d{word-spacing:14.695455px;}
.ws8c{word-spacing:14.700237px;}
.ws1d5{word-spacing:14.714583px;}
.ws15b{word-spacing:14.719365px;}
.ws24b{word-spacing:14.743862px;}
.ws6e{word-spacing:14.757622px;}
.ws4a{word-spacing:14.762404px;}
.ws1cc{word-spacing:14.781533px;}
.ws49{word-spacing:14.795879px;}
.ws12b{word-spacing:14.829354px;}
.ws11e{word-spacing:14.843700px;}
.ws11b{word-spacing:14.858047px;}
.ws206{word-spacing:14.881957px;}
.ws95{word-spacing:14.896304px;}
.ws204{word-spacing:14.901086px;}
.ws1d1{word-spacing:14.915432px;}
.ws4b{word-spacing:14.944125px;}
.ws8b{word-spacing:14.953689px;}
.ws1a7{word-spacing:14.958471px;}
.wsd3{word-spacing:14.968036px;}
.ws1be{word-spacing:14.977600px;}
.wsa1{word-spacing:14.987164px;}
.ws9b{word-spacing:15.011075px;}
.ws19a{word-spacing:15.025421px;}
.ws198{word-spacing:15.030203px;}
.wsbe{word-spacing:15.034985px;}
.ws1d7{word-spacing:15.039767px;}
.ws111{word-spacing:15.044550px;}
.ws1a1{word-spacing:15.049332px;}
.ws11a{word-spacing:15.054114px;}
.wsb5{word-spacing:15.063678px;}
.ws127{word-spacing:15.068460px;}
.ws15d{word-spacing:15.073242px;}
.ws80{word-spacing:15.078024px;}
.ws11f{word-spacing:15.092371px;}
.ws50{word-spacing:15.097153px;}
.wsef{word-spacing:15.101935px;}
.ws128{word-spacing:15.106717px;}
.ws1ce{word-spacing:15.116281px;}
.wsbf{word-spacing:15.125846px;}
.ws1aa{word-spacing:15.135410px;}
.ws58{word-spacing:15.140192px;}
.wse4{word-spacing:15.154538px;}
.wsb6{word-spacing:15.159320px;}
.ws1a9{word-spacing:15.164103px;}
.wsa2{word-spacing:15.173667px;}
.wsc0{word-spacing:15.197577px;}
.ws232{word-spacing:15.199109px;}
.wsf5{word-spacing:15.211924px;}
.ws142{word-spacing:15.216706px;}
.ws2a{word-spacing:15.231052px;}
.ws15c{word-spacing:15.235834px;}
.ws1a2{word-spacing:15.240616px;}
.ws1f5{word-spacing:15.245399px;}
.wsf0{word-spacing:15.274091px;}
.ws9a{word-spacing:15.283656px;}
.ws202{word-spacing:15.288438px;}
.ws43{word-spacing:15.302784px;}
.ws205{word-spacing:15.312348px;}
.ws138{word-spacing:15.317130px;}
.wsaf{word-spacing:15.345823px;}
.ws18d{word-spacing:15.355387px;}
.ws199{word-spacing:15.379298px;}
.ws1ee{word-spacing:15.388862px;}
.ws201{word-spacing:15.393644px;}
.ws139{word-spacing:15.398426px;}
.ws215{word-spacing:15.422337px;}
.ws207{word-spacing:15.474940px;}
.wsa3{word-spacing:15.498851px;}
.ws10a{word-spacing:15.537108px;}
.ws19{word-spacing:15.597189px;}
.wsc3{word-spacing:15.604058px;}
.ws27{word-spacing:15.613622px;}
.ws7f{word-spacing:15.690136px;}
.ws19d{word-spacing:15.709264px;}
.ws217{word-spacing:15.738518px;}
.ws1e5{word-spacing:15.742739px;}
.ws24f{word-spacing:15.753821px;}
.wsee{word-spacing:15.761868px;}
.wsd1{word-spacing:15.780996px;}
.ws1cd{word-spacing:15.790560px;}
.ws19c{word-spacing:15.795342px;}
.ws118{word-spacing:15.814471px;}
.ws7e{word-spacing:15.833599px;}
.ws119{word-spacing:15.852728px;}
.ws188{word-spacing:15.876638px;}
.wsb9{word-spacing:15.905331px;}
.ws1dc{word-spacing:15.914895px;}
.ws229{word-spacing:15.971880px;}
.ws1b3{word-spacing:15.979531px;}
.ws12a{word-spacing:15.981845px;}
.ws195{word-spacing:16.039230px;}
.ws1d3{word-spacing:16.063141px;}
.ws223{word-spacing:16.067520px;}
.ws1bd{word-spacing:16.082270px;}
.ws1d4{word-spacing:16.096616px;}
.ws129{word-spacing:16.101398px;}
.ws176{word-spacing:16.106180px;}
.ws23f{word-spacing:16.121078px;}
.ws1fb{word-spacing:16.216169px;}
.ws24a{word-spacing:16.224370px;}
.ws1de{word-spacing:16.225733px;}
.ws99{word-spacing:16.235297px;}
.wsba{word-spacing:16.311811px;}
.ws17b{word-spacing:16.326158px;}
.ws8e{word-spacing:16.340504px;}
.ws1dd{word-spacing:16.364415px;}
.ws11c{word-spacing:16.383543px;}
.ws253{word-spacing:16.400347px;}
.ws6b{word-spacing:16.407454px;}
.ws1ba{word-spacing:16.421800px;}
.ws22a{word-spacing:16.434778px;}
.ws82{word-spacing:16.507878px;}
.ws10f{word-spacing:16.541353px;}
.ws1bb{word-spacing:16.550917px;}
.wsb4{word-spacing:16.560482px;}
.ws21c{word-spacing:16.580150px;}
.ws1df{word-spacing:16.584392px;}
.ws23b{word-spacing:16.618406px;}
.ws56{word-spacing:16.636995px;}
.wsc2{word-spacing:16.694381px;}
.wsed{word-spacing:16.699163px;}
.ws196{word-spacing:16.770895px;}
.ws35{word-spacing:16.809686px;}
.ws16a{word-spacing:16.893850px;}
.ws1ed{word-spacing:16.904794px;}
.ws33{word-spacing:16.905326px;}
.wsa6{word-spacing:16.976526px;}
.ws20{word-spacing:17.013159px;}
.ws34{word-spacing:17.023920px;}
.ws70{word-spacing:17.024347px;}
.wsa7{word-spacing:17.029129px;}
.ws117{word-spacing:17.033911px;}
.ws21a{word-spacing:17.058350px;}
.ws69{word-spacing:17.091297px;}
.wsd7{word-spacing:17.100861px;}
.ws52{word-spacing:17.110425px;}
.wsab{word-spacing:17.143900px;}
.ws1a8{word-spacing:17.148682px;}
.wsa8{word-spacing:17.153464px;}
.wsf1{word-spacing:17.167811px;}
.ws149{word-spacing:17.206068px;}
.ws68{word-spacing:17.229978px;}
.wsf2{word-spacing:17.234760px;}
.ws36{word-spacing:17.291712px;}
.ws76{word-spacing:17.296928px;}
.ws1e0{word-spacing:17.354313px;}
.ws244{word-spacing:17.368224px;}
.ws1da{word-spacing:17.430827px;}
.wsd8{word-spacing:17.440392px;}
.wsb3{word-spacing:17.478649px;}
.ws1e2{word-spacing:17.631676px;}
.ws7b{word-spacing:17.636459px;}
.ws135{word-spacing:17.641241px;}
.ws256{word-spacing:17.674272px;}
.ws10c{word-spacing:17.693844px;}
.ws200{word-spacing:17.708190px;}
.ws92{word-spacing:17.722537px;}
.ws124{word-spacing:17.751229px;}
.ws29{word-spacing:17.837308px;}
.ws1c8{word-spacing:17.861218px;}
.ws91{word-spacing:17.885129px;}
.ws251{word-spacing:17.899982px;}
.wsb1{word-spacing:17.966425px;}
.ws48{word-spacing:17.990335px;}
.ws10b{word-spacing:18.009464px;}
.wsca{word-spacing:18.023810px;}
.ws20a{word-spacing:18.052503px;}
.ws24d{word-spacing:18.056832px;}
.ws243{word-spacing:18.140995px;}
.ws1c9{word-spacing:18.162492px;}
.ws236{word-spacing:18.259589px;}
.wsf3{word-spacing:18.339430px;}
.ws1f8{word-spacing:18.358559px;}
.ws22c{word-spacing:18.370531px;}
.ws212{word-spacing:18.481474px;}
.ws1fa{word-spacing:18.487676px;}
.ws12f{word-spacing:18.525933px;}
.ws2c{word-spacing:18.554626px;}
.ws66{word-spacing:18.564190px;}
.ws180{word-spacing:18.602447px;}
.ws18f{word-spacing:18.612011px;}
.ws103{word-spacing:18.650268px;}
.ws1ea{word-spacing:18.659832px;}
.ws4e{word-spacing:18.688525px;}
.wsa0{word-spacing:18.698089px;}
.ws1e9{word-spacing:18.750693px;}
.ws102{word-spacing:18.755475px;}
.ws1e8{word-spacing:18.784167px;}
.ws9f{word-spacing:18.798514px;}
.ws67{word-spacing:18.870246px;}
.ws77{word-spacing:18.875028px;}
.wsa5{word-spacing:18.980234px;}
.wsfc{word-spacing:19.018491px;}
.ws19b{word-spacing:19.047184px;}
.ws59{word-spacing:19.051966px;}
.ws12c{word-spacing:19.090223px;}
.ws62{word-spacing:19.118916px;}
.wsa4{word-spacing:19.128480px;}
.ws234{word-spacing:19.131826px;}
.ws1a5{word-spacing:19.181083px;}
.ws12e{word-spacing:19.195430px;}
.ws65{word-spacing:19.262379px;}
.ws1db{word-spacing:19.267161px;}
.ws247{word-spacing:19.369013px;}
.ws64{word-spacing:19.377150px;}
.ws1ad{word-spacing:19.380490px;}
.ws1ae{word-spacing:19.391966px;}
.wsb2{word-spacing:19.420189px;}
.ws18c{word-spacing:19.444100px;}
.ws1d6{word-spacing:19.448882px;}
.wsde{word-spacing:19.491921px;}
.ws13e{word-spacing:19.501485px;}
.ws39{word-spacing:19.518211px;}
.ws3b{word-spacing:19.560293px;}
.ws60{word-spacing:19.563653px;}
.ws37{word-spacing:19.590898px;}
.ws12d{word-spacing:19.597128px;}
.ws3a{word-spacing:19.701840px;}
.ws19e{word-spacing:19.707117px;}
.wsd2{word-spacing:19.721463px;}
.ws28{word-spacing:19.783630px;}
.ws38{word-spacing:19.801306px;}
.ws254{word-spacing:19.812782px;}
.ws88{word-spacing:19.855362px;}
.ws89{word-spacing:19.869709px;}
.ws4f{word-spacing:19.970133px;}
.ws10e{word-spacing:20.013172px;}
.ws23{word-spacing:20.025861px;}
.ws21{word-spacing:20.047380px;}
.ws22{word-spacing:20.215230px;}
.wsaa{word-spacing:20.233150px;}
.wsff{word-spacing:20.276189px;}
.wsa9{word-spacing:20.414870px;}
.ws9e{word-spacing:20.477038px;}
.ws1a0{word-spacing:20.539205px;}
.ws9d{word-spacing:20.587027px;}
.ws225{word-spacing:20.604682px;}
.ws157{word-spacing:20.658758px;}
.ws19f{word-spacing:20.749619px;}
.ws1ca{word-spacing:20.787876px;}
.ws6{word-spacing:20.802073px;}
.ws101{word-spacing:20.807004px;}
.ws5e{word-spacing:20.916993px;}
.ws221{word-spacing:20.941334px;}
.ws113{word-spacing:20.974378px;}
.ws130{word-spacing:21.007853px;}
.ws9{word-spacing:21.017507px;}
.ws5{word-spacing:21.055525px;}
.ws7{word-spacing:21.074534px;}
.wse3{word-spacing:21.074803px;}
.wsad{word-spacing:21.122624px;}
.ws3{word-spacing:21.144233px;}
.ws197{word-spacing:21.184792px;}
.ws2{word-spacing:21.188587px;}
.ws8{word-spacing:21.201260px;}
.wse6{word-spacing:21.213484px;}
.ws17c{word-spacing:21.223049px;}
.ws158{word-spacing:21.313909px;}
.ws1f6{word-spacing:21.366512px;}
.wse5{word-spacing:21.376076px;}
.ws115{word-spacing:21.466937px;}
.ws114{word-spacing:21.715607px;}
.ws125{word-spacing:21.720389px;}
.ws15e{word-spacing:21.758646px;}
.wsb7{word-spacing:21.954713px;}
.ws1a6{word-spacing:21.997752px;}
.wsb8{word-spacing:22.002534px;}
.ws83{word-spacing:22.012098px;}
.ws5f{word-spacing:22.021663px;}
.ws208{word-spacing:22.050355px;}
.ws1d2{word-spacing:22.083830px;}
.ws218{word-spacing:22.123445px;}
.ws1f9{word-spacing:22.160344px;}
.wsfb{word-spacing:22.169908px;}
.ws4c{word-spacing:22.318154px;}
.ws179{word-spacing:22.385104px;}
.ws183{word-spacing:22.399450px;}
.ws184{word-spacing:22.409014px;}
.wscb{word-spacing:22.428143px;}
.ws181{word-spacing:22.442489px;}
.ws182{word-spacing:22.519003px;}
.ws177{word-spacing:22.538132px;}
.ws1b6{word-spacing:22.785274px;}
.ws178{word-spacing:22.853751px;}
.ws1e1{word-spacing:22.858534px;}
.ws1f3{word-spacing:22.920701px;}
.wsbb{word-spacing:22.958958px;}
.wsbc{word-spacing:22.968522px;}
.ws136{word-spacing:23.159807px;}
.ws22d{word-spacing:23.267299px;}
.ws1f1{word-spacing:23.327181px;}
.ws226{word-spacing:23.355288px;}
.ws15a{word-spacing:23.499338px;}
.ws5b{word-spacing:23.508902px;}
.ws20b{word-spacing:23.518466px;}
.ws227{word-spacing:23.588650px;}
.ws5c{word-spacing:23.609326px;}
.ws237{word-spacing:23.871744px;}
.wsbd{word-spacing:23.987114px;}
.ws141{word-spacing:24.044499px;}
.ws1c1{word-spacing:24.082756px;}
.ws57{word-spacing:24.159270px;}
.wse2{word-spacing:24.317080px;}
.ws13a{word-spacing:24.388812px;}
.ws8f{word-spacing:24.417505px;}
.ws90{word-spacing:24.508365px;}
.ws1f7{word-spacing:24.651829px;}
.wscc{word-spacing:24.747471px;}
.wsfe{word-spacing:25.134823px;}
.ws132{word-spacing:25.153951px;}
.ws133{word-spacing:25.168298px;}
.ws134{word-spacing:25.311761px;}
.wsfd{word-spacing:25.388275px;}
.ws13b{word-spacing:25.574778px;}
.ws107{word-spacing:25.617817px;}
.wsf4{word-spacing:25.962129px;}
.ws209{word-spacing:25.976476px;}
.ws100{word-spacing:26.172543px;}
.ws22b{word-spacing:26.423419px;}
.ws1{word-spacing:26.581592px;}
.ws45{word-spacing:26.628758px;}
.ws0{word-spacing:26.678428px;}
.wsac{word-spacing:26.899425px;}
.ws245{word-spacing:26.947526px;}
.ws156{word-spacing:26.966375px;}
.ws5a{word-spacing:27.535447px;}
.ws1eb{word-spacing:27.554575px;}
.ws1cb{word-spacing:27.659782px;}
.ws246{word-spacing:27.919229px;}
.ws18b{word-spacing:28.013659px;}
.ws109{word-spacing:28.233636px;}
.ws216{word-spacing:28.668809px;}
.ws75{word-spacing:29.175714px;}
.ws96{word-spacing:29.352653px;}
.ws6c{word-spacing:29.950418px;}
.wsae{word-spacing:30.519490px;}
.ws255{word-spacing:30.922325px;}
.wsdb{word-spacing:31.399400px;}
.ws22f{word-spacing:31.419653px;}
.ws108{word-spacing:31.571556px;}
.ws250{word-spacing:32.540554px;}
.ws14b{word-spacing:32.824472px;}
.ws1fc{word-spacing:33.125745px;}
.ws23e{word-spacing:33.187080px;}
.wsc8{word-spacing:33.187913px;}
.wsc7{word-spacing:33.259645px;}
.wsc5{word-spacing:33.297902px;}
.wsc6{word-spacing:33.302684px;}
.wsc9{word-spacing:33.331376px;}
.ws51{word-spacing:33.656561px;}
.ws259{word-spacing:34.510738px;}
.ws16d{word-spacing:34.799487px;}
.ws1c0{word-spacing:34.885565px;}
.ws220{word-spacing:36.500050px;}
.ws7a{word-spacing:36.664514px;}
.ws85{word-spacing:37.472692px;}
.ws84{word-spacing:37.644849px;}
.ws1c7{word-spacing:40.356311px;}
.ws233{word-spacing:41.228491px;}
.ws222{word-spacing:42.146635px;}
.ws25a{word-spacing:42.479462px;}
.ws228{word-spacing:45.069394px;}
.ws23d{word-spacing:48.298200px;}
.ws219{word-spacing:59.545464px;}
.ws151{word-spacing:399.698688px;}
.ws154{word-spacing:412.636867px;}
.ws152{word-spacing:413.478499px;}
.ws153{word-spacing:466.719374px;}
._25{margin-left:-22.322936px;}
._f{margin-left:-20.553552px;}
._10{margin-left:-19.420189px;}
._11{margin-left:-17.996284px;}
._1c{margin-left:-12.977078px;}
._15{margin-left:-11.472306px;}
._16{margin-left:-10.458496px;}
._9{margin-left:-1.282550px;}
._c{width:1.598395px;}
._a{width:6.262116px;}
._8{width:9.175830px;}
._2{width:10.811296px;}
._5{width:11.900173px;}
._1{width:13.244227px;}
._4{width:14.430843px;}
._e{width:15.962717px;}
._3{width:16.983032px;}
._6{width:18.261278px;}
._b{width:19.635385px;}
._7{width:21.218030px;}
._14{width:22.283512px;}
._18{width:23.414426px;}
._19{width:24.424735px;}
._1d{width:26.220364px;}
._0{width:27.800116px;}
._26{width:29.252228px;}
._12{width:30.313859px;}
._17{width:31.628942px;}
._1a{width:32.704919px;}
._1e{width:33.943488px;}
._d{width:35.167710px;}
._13{width:38.142189px;}
._29{width:39.628433px;}
._27{width:41.465763px;}
._28{width:43.313443px;}
._2a{width:49.377019px;}
._1f{width:399.893794px;}
._21{width:418.956758px;}
._24{width:466.757630px;}
._22{width:470.200670px;}
._23{width:489.412834px;}
._20{width:703.860667px;}
._1b{width:1614.724550px;}
.fc1{color:rgb(0,128,173);}
.fc0{color:rgb(0,0,0);}
.fs11{font-size:20.654400px;}
.fs4{font-size:25.500000px;}
.fsf{font-size:25.819800px;}
.fsd{font-size:31.876200px;}
.fs5{font-size:38.256000px;}
.fs2{font-size:42.237600px;}
.fs7{font-size:43.038600px;}
.fsa{font-size:44.830800px;}
.fs10{font-size:45.140400px;}
.fs9{font-size:47.821200px;}
.fs8{font-size:50.784000px;}
.fs3{font-size:51.799200px;}
.fs6{font-size:53.797800px;}
.fsc{font-size:56.188800px;}
.fse{font-size:56.428800px;}
.fs1{font-size:63.363000px;}
.fs0{font-size:80.697000px;}
.fsb{font-size:83.685600px;}
.y0{bottom:0.000000px;}
.yce{bottom:37.156798px;}
.y158{bottom:37.157808px;}
.y199{bottom:37.158942px;}
.y1ea{bottom:37.163869px;}
.y24d{bottom:37.165099px;}
.y87{bottom:59.952750px;}
.y107{bottom:59.952903px;}
.y1de{bottom:59.952977px;}
.y189{bottom:59.953024px;}
.y3a{bottom:59.953447px;}
.y86{bottom:59.953775px;}
.y1e8{bottom:59.953925px;}
.y136{bottom:59.954176px;}
.ycc{bottom:59.966714px;}
.y15c{bottom:60.208698px;}
.y161{bottom:60.209894px;}
.y18a{bottom:64.459950px;}
.y88{bottom:65.225250px;}
.y188{bottom:72.793650px;}
.y39{bottom:72.794074px;}
.y1e7{bottom:72.794551px;}
.y106{bottom:75.600000px;}
.y1dd{bottom:75.600073px;}
.y104{bottom:75.600321px;}
.y85{bottom:75.600872px;}
.y135{bottom:75.601272px;}
.ycb{bottom:75.613811px;}
.y15b{bottom:75.855795px;}
.y160{bottom:75.856990px;}
.y187{bottom:77.045700px;}
.y105{bottom:80.957400px;}
.y38{bottom:85.634700px;}
.y1e6{bottom:85.635178px;}
.y1dc{bottom:91.332053px;}
.y103{bottom:91.332300px;}
.y101{bottom:91.332453px;}
.y134{bottom:91.333252px;}
.yca{bottom:91.345790px;}
.y15f{bottom:91.588970px;}
.y102{bottom:96.604800px;}
.y1e5{bottom:98.475804px;}
.yff{bottom:105.023550px;}
.y1db{bottom:106.979149px;}
.y100{bottom:106.979550px;}
.y84{bottom:106.979947px;}
.y133{bottom:106.980348px;}
.yfe{bottom:106.984110px;}
.yc9{bottom:106.992887px;}
.y15a{bottom:107.234871px;}
.y15e{bottom:107.236066px;}
.y1e4{bottom:111.401550px;}
.y1e2{bottom:111.402247px;}
.y43{bottom:112.593107px;}
.y44{bottom:112.848466px;}
.y37{bottom:113.357627px;}
.y1e3{bottom:115.653600px;}
.y1da{bottom:122.711129px;}
.y132{bottom:122.712327px;}
.yfd{bottom:122.716090px;}
.yc8{bottom:122.724866px;}
.y159{bottom:122.966850px;}
.y15d{bottom:122.968046px;}
.y1e1{bottom:124.242874px;}
.y41{bottom:125.433733px;}
.y42{bottom:125.689092px;}
.y36{bottom:129.004723px;}
.y1df{bottom:137.083500px;}
.y40{bottom:138.274360px;}
.y83{bottom:138.359023px;}
.y131{bottom:138.359424px;}
.yfc{bottom:138.363186px;}
.yc7{bottom:138.371963px;}
.y1e0{bottom:141.335400px;}
.y35{bottom:144.736703px;}
.y3f{bottom:151.114986px;}
.y1d9{bottom:154.091400px;}
.y130{bottom:154.091403px;}
.yfb{bottom:154.095166px;}
.yc6{bottom:154.103942px;}
.y34{bottom:160.383799px;}
.y3e{bottom:165.231450px;}
.y171{bottom:165.826800px;}
.y16f{bottom:165.827074px;}
.y3d{bottom:167.017350px;}
.y12f{bottom:169.738500px;}
.yfa{bottom:169.742262px;}
.y12d{bottom:169.744449px;}
.yc5{bottom:169.751039px;}
.y170{bottom:170.078700px;}
.y12e{bottom:175.096050px;}
.y33{bottom:176.115779px;}
.y3c{bottom:178.157824px;}
.y16e{bottom:178.667700px;}
.y16c{bottom:178.668397px;}
.y16d{bottom:182.919600px;}
.y82{bottom:185.471274px;}
.yf9{bottom:185.474242px;}
.y12c{bottom:185.476428px;}
.yc4{bottom:185.483018px;}
.y3b{bottom:190.998450px;}
.y16b{bottom:191.509024px;}
.y81{bottom:201.118371px;}
.yf8{bottom:201.121338px;}
.y12b{bottom:201.123525px;}
.yc3{bottom:201.130114px;}
.y1d8{bottom:203.754774px;}
.y16a{bottom:204.349650px;}
.y32{bottom:207.496050px;}
.y80{bottom:216.850350px;}
.yf7{bottom:216.853317px;}
.y12a{bottom:216.855504px;}
.yc2{bottom:216.862094px;}
.y1d7{bottom:219.486753px;}
.yf6{bottom:232.500414px;}
.y129{bottom:232.502601px;}
.yc1{bottom:232.509190px;}
.y7f{bottom:232.509818px;}
.y1d6{bottom:235.133850px;}
.y128{bottom:248.234580px;}
.yc0{bottom:248.241170px;}
.y7e{bottom:248.241797px;}
.yf5{bottom:263.879490px;}
.y127{bottom:263.881677px;}
.ybf{bottom:263.888266px;}
.y7d{bottom:263.888894px;}
.y1d5{bottom:266.513250px;}
.y31{bottom:270.255043px;}
.y126{bottom:279.613656px;}
.ybe{bottom:279.620246px;}
.y7c{bottom:279.620873px;}
.y30{bottom:284.626708px;}
.y125{bottom:295.260753px;}
.ybd{bottom:295.267342px;}
.y7b{bottom:295.267970px;}
.y2f{bottom:298.998372px;}
.y20{bottom:299.682120px;}
.yf4{bottom:301.977445px;}
.y124{bottom:310.992732px;}
.ybc{bottom:310.999321px;}
.y7a{bottom:310.999949px;}
.y1f{bottom:312.522746px;}
.y2e{bottom:313.370037px;}
.y1d4{bottom:316.176300px;}
.yf3{bottom:317.709424px;}
.y1e{bottom:325.448492px;}
.y123{bottom:326.639829px;}
.ybb{bottom:326.646418px;}
.y79{bottom:326.647046px;}
.y2c{bottom:327.656685px;}
.y2d{bottom:327.656700px;}
.yf2{bottom:333.356520px;}
.y1d{bottom:338.289119px;}
.y2a{bottom:342.028136px;}
.y2b{bottom:342.028350px;}
.y122{bottom:342.371808px;}
.yba{bottom:342.378397px;}
.y78{bottom:342.379025px;}
.y1d3{bottom:347.648921px;}
.yf1{bottom:349.088500px;}
.y1c{bottom:351.129745px;}
.y29{bottom:356.399801px;}
.yb9{bottom:358.110377px;}
.y77{bottom:358.111004px;}
.y1b{bottom:363.970372px;}
.yf0{bottom:364.735596px;}
.y28{bottom:370.686464px;}
.y121{bottom:373.750884px;}
.yb8{bottom:373.757473px;}
.y76{bottom:373.758101px;}
.y1a{bottom:376.810998px;}
.yef{bottom:380.467576px;}
.y27{bottom:385.058129px;}
.yb7{bottom:389.489453px;}
.y75{bottom:389.490080px;}
.yee{bottom:396.114672px;}
.y26{bottom:399.429793px;}
.y1d2{bottom:399.948576px;}
.yb6{bottom:405.136549px;}
.y74{bottom:405.137177px;}
.y19{bottom:406.914644px;}
.yed{bottom:411.846652px;}
.y25{bottom:413.716456px;}
.y1d1{bottom:415.595673px;}
.y120{bottom:418.396756px;}
.y18{bottom:419.755271px;}
.yb5{bottom:420.868528px;}
.y73{bottom:420.869156px;}
.yec{bottom:427.493748px;}
.y24{bottom:428.088121px;}
.y1d0{bottom:431.327652px;}
.y17{bottom:432.595897px;}
.y11f{bottom:434.043853px;}
.yb4{bottom:436.515625px;}
.y72{bottom:436.516253px;}
.y23{bottom:442.459785px;}
.yeb{bottom:443.225727px;}
.y16{bottom:445.436524px;}
.y1cf{bottom:446.974749px;}
.y11e{bottom:449.775832px;}
.yb3{bottom:452.247604px;}
.y71{bottom:452.248232px;}
.y22{bottom:456.831450px;}
.y15{bottom:458.277150px;}
.yea{bottom:458.872824px;}
.y1ce{bottom:462.706728px;}
.y11d{bottom:465.422929px;}
.yb2{bottom:467.894701px;}
.y70{bottom:467.895328px;}
.ye9{bottom:474.604803px;}
.y1cd{bottom:478.353825px;}
.y11c{bottom:481.154908px;}
.y219{bottom:482.946374px;}
.yb1{bottom:483.626680px;}
.y6f{bottom:483.627308px;}
.y186{bottom:485.829900px;}
.y184{bottom:485.830852px;}
.y21{bottom:486.340050px;}
.y14{bottom:486.765300px;}
.ye8{bottom:490.251900px;}
.ye6{bottom:490.254441px;}
.y185{bottom:491.102250px;}
.y1cc{bottom:494.085804px;}
.y218{bottom:494.936761px;}
.ye7{bottom:495.609300px;}
.y24b{bottom:495.784722px;}
.y11b{bottom:496.802004px;}
.yb0{bottom:499.273777px;}
.y6e{bottom:499.274404px;}
.y183{bottom:501.477948px;}
.ye5{bottom:505.986420px;}
.y217{bottom:506.842028px;}
.y24a{bottom:507.775109px;}
.y1cb{bottom:509.732901px;}
.y11a{bottom:512.533984px;}
.yaf{bottom:515.005756px;}
.y6d{bottom:515.006384px;}
.y182{bottom:517.209927px;}
.y216{bottom:518.832415px;}
.y249{bottom:519.680376px;}
.ye4{bottom:521.633517px;}
.y1ca{bottom:525.464880px;}
.y119{bottom:528.181080px;}
.yae{bottom:530.652853px;}
.y6c{bottom:530.653480px;}
.y215{bottom:530.737682px;}
.y248{bottom:531.670763px;}
.y181{bottom:532.857024px;}
.ye3{bottom:537.365496px;}
.y1c9{bottom:541.111977px;}
.y214{bottom:542.728069px;}
.y1b9{bottom:543.231774px;}
.y247{bottom:543.661150px;}
.y118{bottom:543.913060px;}
.yad{bottom:546.384832px;}
.y6b{bottom:546.385460px;}
.y180{bottom:548.589003px;}
.ye2{bottom:553.012593px;}
.y213{bottom:554.718456px;}
.y246{bottom:555.566417px;}
.y1c8{bottom:556.843956px;}
.y1b8{bottom:558.878871px;}
.y117{bottom:559.560156px;}
.yac{bottom:562.031929px;}
.y6a{bottom:562.032556px;}
.y17f{bottom:564.236100px;}
.y17e{bottom:564.236421px;}
.y212{bottom:566.623723px;}
.y245{bottom:567.556804px;}
.ye1{bottom:568.744572px;}
.y1c7{bottom:572.491053px;}
.y1b7{bottom:574.610850px;}
.y1b6{bottom:574.616799px;}
.y116{bottom:575.292136px;}
.yab{bottom:577.763908px;}
.y69{bottom:577.764535px;}
.y211{bottom:578.614110px;}
.y244{bottom:579.462071px;}
.y17d{bottom:579.968400px;}
.y17c{bottom:579.968553px;}
.ye0{bottom:584.391669px;}
.y1c6{bottom:588.223032px;}
.y1b5{bottom:590.263896px;}
.y210{bottom:590.519377px;}
.y115{bottom:590.939232px;}
.y243{bottom:591.452458px;}
.yaa{bottom:593.411005px;}
.y68{bottom:593.411632px;}
.y17b{bottom:595.615650px;}
.y17a{bottom:595.626949px;}
.ydf{bottom:600.123648px;}
.y20f{bottom:602.509764px;}
.y242{bottom:603.357725px;}
.y1c5{bottom:603.870129px;}
.y1b4{bottom:605.995875px;}
.ya9{bottom:609.142984px;}
.y67{bottom:609.143611px;}
.y179{bottom:611.358928px;}
.y20e{bottom:614.500151px;}
.y241{bottom:615.348112px;}
.yde{bottom:615.770745px;}
.y1c4{bottom:619.602108px;}
.y1b3{bottom:621.642971px;}
.y114{bottom:622.318308px;}
.ya8{bottom:624.790081px;}
.y66{bottom:624.790708px;}
.y169{bottom:625.719600px;}
.y167{bottom:625.719874px;}
.y20d{bottom:626.405418px;}
.y178{bottom:627.006025px;}
.y240{bottom:627.338498px;}
.y168{bottom:629.886450px;}
.ydd{bottom:631.502724px;}
.y1c3{bottom:635.249204px;}
.y1b2{bottom:637.374951px;}
.y20b{bottom:638.395805px;}
.y166{bottom:638.560500px;}
.y164{bottom:638.561047px;}
.y20c{bottom:638.651164px;}
.y23f{bottom:639.243766px;}
.ya7{bottom:640.522060px;}
.y65{bottom:640.522687px;}
.y177{bottom:642.738004px;}
.y165{bottom:642.812550px;}
.ydc{bottom:647.149821px;}
.y20a{bottom:650.301072px;}
.y1c2{bottom:650.981184px;}
.y23e{bottom:651.234152px;}
.y163{bottom:651.401674px;}
.y1b1{bottom:653.022047px;}
.y113{bottom:653.697384px;}
.y64{bottom:656.169784px;}
.y176{bottom:658.385101px;}
.yda{bottom:660.840750px;}
.y209{bottom:662.291459px;}
.ydb{bottom:662.881800px;}
.yd9{bottom:662.883666px;}
.y23d{bottom:663.139420px;}
.y162{bottom:664.242300px;}
.y1c1{bottom:666.628280px;}
.y1b0{bottom:668.754027px;}
.ya6{bottom:671.901136px;}
.y63{bottom:671.901763px;}
.y175{bottom:674.117080px;}
.y208{bottom:674.196726px;}
.y23c{bottom:675.129806px;}
.yd8{bottom:678.530763px;}
.y1c0{bottom:682.360260px;}
.y1af{bottom:684.401123px;}
.y207{bottom:686.187113px;}
.y23b{bottom:687.120193px;}
.y62{bottom:687.548860px;}
.y174{bottom:689.764177px;}
.yd7{bottom:694.262742px;}
.y1bf{bottom:698.007356px;}
.y206{bottom:698.177500px;}
.y23a{bottom:699.025460px;}
.y1ae{bottom:700.133103px;}
.y112{bottom:700.979400px;}
.ya5{bottom:703.280212px;}
.y61{bottom:703.280839px;}
.yd6{bottom:709.909838px;}
.y205{bottom:710.082767px;}
.y239{bottom:711.015847px;}
.y1be{bottom:713.739336px;}
.y1ad{bottom:715.780199px;}
.y110{bottom:716.628717px;}
.ya4{bottom:718.927308px;}
.y60{bottom:718.927936px;}
.y111{bottom:721.133700px;}
.y173{bottom:721.143253px;}
.y204{bottom:722.073154px;}
.y238{bottom:722.921114px;}
.yd5{bottom:725.641818px;}
.y13{bottom:729.127350px;}
.y1bd{bottom:729.386432px;}
.y1ac{bottom:731.512178px;}
.y10f{bottom:732.360696px;}
.y203{bottom:733.978421px;}
.ya3{bottom:734.659288px;}
.y5f{bottom:734.659915px;}
.y237{bottom:734.911501px;}
.y172{bottom:736.875232px;}
.yd4{bottom:741.288914px;}
.y1bc{bottom:745.118411px;}
.y202{bottom:745.968808px;}
.y236{bottom:746.816768px;}
.y1ab{bottom:747.159275px;}
.y10e{bottom:748.007793px;}
.ya2{bottom:750.306384px;}
.y5e{bottom:750.307012px;}
.yd3{bottom:757.020894px;}
.y201{bottom:757.959194px;}
.y235{bottom:758.807155px;}
.y1aa{bottom:762.891254px;}
.y10d{bottom:763.739772px;}
.ya1{bottom:766.038363px;}
.y5d{bottom:766.038991px;}
.y200{bottom:769.864462px;}
.y234{bottom:770.797542px;}
.y1bb{bottom:776.497487px;}
.y1a9{bottom:778.538351px;}
.y10c{bottom:779.386869px;}
.y197{bottom:779.726074px;}
.y12{bottom:779.810850px;}
.ya0{bottom:781.685460px;}
.y5c{bottom:781.686088px;}
.y1ff{bottom:781.854848px;}
.y233{bottom:782.702809px;}
.y11{bottom:784.062900px;}
.yd2{bottom:788.399970px;}
.y196{bottom:792.566700px;}
.y194{bottom:792.567397px;}
.y10{bottom:792.651900px;}
.y1fe{bottom:793.760116px;}
.y1a8{bottom:794.270330px;}
.y232{bottom:794.693196px;}
.y10b{bottom:795.118848px;}
.y195{bottom:796.818750px;}
.yf{bottom:796.903800px;}
.y9f{bottom:797.417439px;}
.y5b{bottom:797.418067px;}
.y193{bottom:805.408024px;}
.ye{bottom:805.492800px;}
.y1fd{bottom:805.750502px;}
.y231{bottom:806.598463px;}
.yd{bottom:809.744700px;}
.y1a7{bottom:809.917427px;}
.y10a{bottom:810.765945px;}
.y9e{bottom:813.064536px;}
.y5a{bottom:813.065163px;}
.y1fc{bottom:817.655770px;}
.y192{bottom:818.248650px;}
.y190{bottom:818.248924px;}
.y230{bottom:818.588850px;}
.y191{bottom:822.500550px;}
.y1a6{bottom:825.649406px;}
.yd1{bottom:826.497924px;}
.ya{bottom:828.198150px;}
.y7{bottom:828.198222px;}
.yb{bottom:828.708222px;}
.y8{bottom:828.708294px;}
.y9d{bottom:828.796515px;}
.y59{bottom:828.797143px;}
.y1fb{bottom:829.646156px;}
.y22f{bottom:830.594905px;}
.y18d{bottom:831.089017px;}
.y18f{bottom:831.089550px;}
.yc{bottom:835.001400px;}
.y9{bottom:835.171500px;}
.y18e{bottom:835.341450px;}
.y1a5{bottom:841.381385px;}
.y1fa{bottom:841.636543px;}
.yd0{bottom:842.145021px;}
.y22e{bottom:842.500172px;}
.y18b{bottom:843.930600px;}
.y9c{bottom:844.443612px;}
.y58{bottom:844.444239px;}
.y3{bottom:847.587300px;}
.y6{bottom:848.097372px;}
.y18c{bottom:848.182500px;}
.y1f9{bottom:853.541810px;}
.y5{bottom:854.390400px;}
.y22d{bottom:854.490559px;}
.y4{bottom:854.645550px;}
.y1a4{bottom:857.028482px;}
.ycf{bottom:857.877000px;}
.y108{bottom:857.879514px;}
.y9b{bottom:860.175591px;}
.y57{bottom:860.176219px;}
.y109{bottom:863.149500px;}
.y1f8{bottom:865.532197px;}
.y22c{bottom:866.395826px;}
.y1a3{bottom:872.760461px;}
.y9a{bottom:875.907570px;}
.y56{bottom:875.908198px;}
.y1f7{bottom:877.437464px;}
.y22b{bottom:878.386213px;}
.y2{bottom:881.433616px;}
.y1a2{bottom:888.407558px;}
.y1f6{bottom:889.427851px;}
.y22a{bottom:890.376600px;}
.y99{bottom:891.554667px;}
.y55{bottom:891.555295px;}
.y1f5{bottom:901.418238px;}
.y229{bottom:902.281867px;}
.y1a1{bottom:904.139537px;}
.y156{bottom:906.434550px;}
.y154{bottom:906.434754px;}
.y1{bottom:907.284900px;}
.y98{bottom:907.286646px;}
.y54{bottom:907.287274px;}
.y155{bottom:910.686450px;}
.y1f4{bottom:913.323505px;}
.y228{bottom:914.272254px;}
.y153{bottom:919.360500px;}
.y151{bottom:919.360774px;}
.y1a0{bottom:919.786634px;}
.y97{bottom:922.933743px;}
.y53{bottom:922.934370px;}
.y152{bottom:923.612400px;}
.y1f3{bottom:925.313892px;}
.y227{bottom:926.177521px;}
.y150{bottom:932.201400px;}
.y14e{bottom:932.201674px;}
.y14f{bottom:936.453300px;}
.y1f2{bottom:937.219159px;}
.y226{bottom:938.167908px;}
.y96{bottom:938.665722px;}
.y52{bottom:938.666350px;}
.y14d{bottom:945.042300px;}
.y14b{bottom:945.042724px;}
.y1f1{bottom:949.209546px;}
.y14c{bottom:949.294350px;}
.y225{bottom:950.073175px;}
.y19f{bottom:951.165710px;}
.y95{bottom:954.312819px;}
.y51{bottom:954.313446px;}
.y14a{bottom:957.883350px;}
.y148{bottom:957.883624px;}
.y1f0{bottom:961.114813px;}
.y224{bottom:962.063562px;}
.y149{bottom:962.135250px;}
.y19e{bottom:966.897689px;}
.y94{bottom:970.044798px;}
.y50{bottom:970.045426px;}
.y147{bottom:970.724250px;}
.y145{bottom:970.724524px;}
.y1ef{bottom:973.105200px;}
.y223{bottom:974.053949px;}
.y146{bottom:974.976150px;}
.y144{bottom:983.565150px;}
.y142{bottom:983.565424px;}
.y93{bottom:985.691895px;}
.y4f{bottom:985.692522px;}
.y222{bottom:985.959216px;}
.y48{bottom:987.051750px;}
.y143{bottom:987.817050px;}
.y141{bottom:996.406050px;}
.y13f{bottom:996.406301px;}
.y221{bottom:997.949603px;}
.y1ee{bottom:1000.233952px;}
.y140{bottom:1000.657950px;}
.y19d{bottom:1001.423400px;}
.y19b{bottom:1001.423553px;}
.y92{bottom:1001.423874px;}
.y4e{bottom:1001.424502px;}
.y19c{bottom:1006.695900px;}
.y220{bottom:1009.854870px;}
.y13e{bottom:1015.369800px;}
.y13d{bottom:1015.369981px;}
.y19a{bottom:1017.070650px;}
.y91{bottom:1017.070971px;}
.y4d{bottom:1017.071598px;}
.y21f{bottom:1021.845257px;}
.y47{bottom:1028.125800px;}
.y1ed{bottom:1031.613027px;}
.y8f{bottom:1032.802950px;}
.y8e{bottom:1032.803103px;}
.y4c{bottom:1032.803577px;}
.y21e{bottom:1033.835644px;}
.y13c{bottom:1034.418600px;}
.y90{bottom:1038.075300px;}
.y21d{bottom:1045.740911px;}
.y1ec{bottom:1047.260124px;}
.y8d{bottom:1048.450200px;}
.y8c{bottom:1048.450521px;}
.y4b{bottom:1048.450674px;}
.y139{bottom:1055.933291px;}
.y13b{bottom:1055.933550px;}
.y21c{bottom:1057.731298px;}
.y13a{bottom:1060.185600px;}
.y8a{bottom:1064.182500px;}
.y4a{bottom:1064.182653px;}
.y138{bottom:1068.773917px;}
.y8b{bottom:1069.454850px;}
.y21b{bottom:1069.636565px;}
.y46{bottom:1070.730450px;}
.y1eb{bottom:1078.639200px;}
.y49{bottom:1079.829750px;}
.y1ba{bottom:1079.832264px;}
.y89{bottom:1079.833091px;}
.y137{bottom:1081.615500px;}
.y21a{bottom:1081.626952px;}
.ycd{bottom:1111.209300px;}
.y157{bottom:1111.210310px;}
.y198{bottom:1111.211444px;}
.y1e9{bottom:1111.216372px;}
.y24c{bottom:1111.217602px;}
.y45{bottom:1111.549350px;}
.h19{height:18.547651px;}
.h17{height:20.809724px;}
.he{height:20.935984px;}
.h6{height:22.899000px;}
.h15{height:23.186180px;}
.hb{height:23.411424px;}
.h5{height:24.190226px;}
.h12{height:25.565904px;}
.h14{height:26.013677px;}
.h13{height:28.624828px;}
.h16{height:30.183984px;}
.h8{height:31.202724px;}
.h7{height:31.216896px;}
.h18{height:31.557374px;}
.h9{height:34.353888px;}
.hf{height:35.256180px;}
.hc{height:37.730927px;}
.h4{height:37.929365px;}
.ha{height:38.648663px;}
.h11{height:39.022099px;}
.hd{height:42.943438px;}
.h3{height:56.899974px;}
.h2{height:72.465906px;}
.h10{height:75.149669px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:56.551200px;}
.x41{left:59.952750px;}
.x14{left:61.823550px;}
.x1e{left:63.099150px;}
.xe{left:68.114320px;}
.x48{left:69.136950px;}
.x1d{left:74.324400px;}
.x42{left:77.981100px;}
.x7e{left:79.680941px;}
.x79{left:81.977850px;}
.x43{left:84.699150px;}
.x4c{left:86.144850px;}
.x44{left:90.992100px;}
.x59{left:92.097600px;}
.x20{left:96.603463px;}
.x38{left:105.873900px;}
.x5e{left:117.014100px;}
.x5a{left:118.119600px;}
.x1f{left:129.598508px;}
.x3a{left:137.253450px;}
.x3b{left:146.437800px;}
.x5f{left:158.258250px;}
.x5b{left:159.703950px;}
.x39{left:172.374750px;}
.x71{left:173.480250px;}
.xf{left:181.814100px;}
.x60{left:185.045700px;}
.x72{left:195.590550px;}
.x10{left:197.631450px;}
.x73{left:205.114950px;}
.x2{left:206.815650px;}
.x45{left:213.023550px;}
.x3{left:215.744850px;}
.x4{left:223.313250px;}
.x61{left:224.758950px;}
.x46{left:228.670800px;}
.x49{left:230.285522px;}
.x47{left:246.614100px;}
.x62{left:249.760500px;}
.x4a{left:254.437650px;}
.x4b{left:260.900700px;}
.x24{left:262.771500px;}
.x36{left:273.486600px;}
.x37{left:283.521150px;}
.x63{left:288.963750px;}
.x7d{left:292.875450px;}
.x15{left:303.335400px;}
.x11{left:306.142172px;}
.x64{left:313.540050px;}
.x12{left:332.588850px;}
.x22{left:335.395200px;}
.x25{left:341.433000px;}
.x34{left:347.555850px;}
.x13{left:351.127500px;}
.x23{left:352.743150px;}
.x26{left:354.869250px;}
.x35{left:356.229750px;}
.x21{left:357.590400px;}
.x7a{left:359.291250px;}
.x7b{left:367.455000px;}
.x4d{left:376.214100px;}
.x65{left:380.721150px;}
.x5{left:390.840750px;}
.x6{left:406.658100px;}
.x66{left:422.305350px;}
.x27{left:424.941600px;}
.x28{left:430.129050px;}
.x33{left:443.563358px;}
.x1b{left:459.977850px;}
.x1c{left:477.411311px;}
.x7f{left:483.274779px;}
.x67{left:486.595200px;}
.x7c{left:494.248650px;}
.x4e{left:495.609300px;}
.x7{left:503.177850px;}
.x74{left:506.239200px;}
.x8{left:510.151050px;}
.x4f{left:524.182500px;}
.x6c{left:533.791950px;}
.x2d{left:551.395050px;}
.x50{left:557.007750px;}
.x2e{left:559.473900px;}
.x75{left:565.341600px;}
.x1a{left:568.998942px;}
.x76{left:571.804500px;}
.x29{left:577.587300px;}
.x51{left:582.944700px;}
.x6d{left:603.524250px;}
.x18{left:617.555700px;}
.x52{left:620.191950px;}
.x19{left:624.869100px;}
.x6e{left:637.539900px;}
.x9{left:641.451750px;}
.x68{left:643.747800px;}
.x53{left:646.128900px;}
.xa{left:647.149500px;}
.x3c{left:651.146250px;}
.x54{left:684.566700px;}
.x3e{left:685.927350px;}
.x6f{left:690.519450px;}
.x2f{left:694.091100px;}
.x30{left:706.677000px;}
.x16{left:710.588700px;}
.x17{left:717.902100px;}
.x77{left:721.473750px;}
.x2a{left:723.429750px;}
.x70{left:726.150900px;}
.xb{left:735.079919px;}
.x5c{left:737.121150px;}
.x3f{left:744.604500px;}
.x55{left:748.261200px;}
.x78{left:750.727350px;}
.x6b{left:756.765150px;}
.x5d{left:763.398150px;}
.x56{left:773.262750px;}
.x31{left:774.793500px;}
.x40{left:778.365000px;}
.x32{left:780.065850px;}
.xc{left:784.913250px;}
.x69{left:787.294350px;}
.xd{left:791.121000px;}
.x6a{left:795.373050px;}
.x2b{left:802.771500px;}
.x2c{left:807.958800px;}
.x57{left:809.574600px;}
.x3d{left:828.198150px;}
.x58{left:834.235950px;}
@media print{
.v1{vertical-align:-1.813590pt;}
.v2{vertical-align:-0.907942pt;}
.v0{vertical-align:0.000000pt;}
.ls34{letter-spacing:-0.989575pt;}
.ls14{letter-spacing:-0.926669pt;}
.ls17{letter-spacing:-0.905415pt;}
.ls18{letter-spacing:-0.871409pt;}
.ls27{letter-spacing:-0.858656pt;}
.lsd{letter-spacing:-0.845904pt;}
.ls22{letter-spacing:-0.841653pt;}
.ls23{letter-spacing:-0.807647pt;}
.ls2e{letter-spacing:-0.805578pt;}
.lsf{letter-spacing:-0.790644pt;}
.ls1c{letter-spacing:-0.786393pt;}
.ls24{letter-spacing:-0.782142pt;}
.lse{letter-spacing:-0.777892pt;}
.ls10{letter-spacing:-0.765139pt;}
.ls21{letter-spacing:-0.760888pt;}
.ls15{letter-spacing:-0.756638pt;}
.ls28{letter-spacing:-0.752387pt;}
.ls20{letter-spacing:-0.743885pt;}
.ls1e{letter-spacing:-0.735384pt;}
.ls1b{letter-spacing:-0.718381pt;}
.ls25{letter-spacing:-0.701378pt;}
.ls19{letter-spacing:-0.697127pt;}
.ls13{letter-spacing:-0.692876pt;}
.ls26{letter-spacing:-0.684375pt;}
.ls1f{letter-spacing:-0.680124pt;}
.ls1a{letter-spacing:-0.675873pt;}
.ls11{letter-spacing:-0.671622pt;}
.lsb{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.003754pt;}
.ls2d{letter-spacing:0.013600pt;}
.ls30{letter-spacing:0.015867pt;}
.ls0{letter-spacing:0.093861pt;}
.ls1{letter-spacing:0.270321pt;}
.ls31{letter-spacing:0.283333pt;}
.ls9{letter-spacing:1.673062pt;}
.ls2{letter-spacing:3.069585pt;}
.ls3{letter-spacing:3.976380pt;}
.lsa{letter-spacing:4.986157pt;}
.ls33{letter-spacing:7.967450pt;}
.ls7{letter-spacing:8.603894pt;}
.ls1d{letter-spacing:9.270937pt;}
.ls8{letter-spacing:11.082338pt;}
.ls2f{letter-spacing:11.109542pt;}
.ls29{letter-spacing:12.029689pt;}
.ls35{letter-spacing:13.198651pt;}
.ls2c{letter-spacing:13.491955pt;}
.ls2b{letter-spacing:14.376115pt;}
.ls2a{letter-spacing:15.251775pt;}
.ls16{letter-spacing:15.880889pt;}
.ls12{letter-spacing:17.343155pt;}
.ls32{letter-spacing:20.195424pt;}
.ls5{letter-spacing:21.040917pt;}
.ls6{letter-spacing:21.045699pt;}
.lsc{letter-spacing:21.246544pt;}
.ws17a{word-spacing:-20.237932pt;}
.ws5d{word-spacing:-17.385663pt;}
.ws63{word-spacing:-15.923397pt;}
.ws116{word-spacing:-15.294282pt;}
.wsf7{word-spacing:-12.072196pt;}
.ws86{word-spacing:-9.313444pt;}
.wsd{word-spacing:-5.068948pt;}
.ws44{word-spacing:-0.042508pt;}
.ws26{word-spacing:-0.038257pt;}
.ws4{word-spacing:-0.037545pt;}
.ws2d{word-spacing:-0.034005pt;}
.ws147{word-spacing:-0.028334pt;}
.ws47{word-spacing:0.000000pt;}
.ws8a{word-spacing:0.701378pt;}
.ws61{word-spacing:0.803396pt;}
.ws25{word-spacing:6.564821pt;}
.ws165{word-spacing:7.487974pt;}
.ws164{word-spacing:7.647799pt;}
.ws162{word-spacing:7.688606pt;}
.ws163{word-spacing:7.692006pt;}
.ws257{word-spacing:7.712410pt;}
.ws1b4{word-spacing:7.811025pt;}
.ws22e{word-spacing:7.824627pt;}
.ws239{word-spacing:7.885837pt;}
.ws3d{word-spacing:7.923243pt;}
.ws213{word-spacing:7.967450pt;}
.ws1b5{word-spacing:7.984452pt;}
.ws23a{word-spacing:8.021858pt;}
.ws41{word-spacing:8.154479pt;}
.ws40{word-spacing:8.157879pt;}
.ws3f{word-spacing:8.171482pt;}
.ws3e{word-spacing:8.239492pt;}
.ws3c{word-spacing:8.256495pt;}
.ws21d{word-spacing:8.300702pt;}
.ws1b8{word-spacing:8.314304pt;}
.ws1b7{word-spacing:8.334707pt;}
.ws2f{word-spacing:8.412919pt;}
.ws24e{word-spacing:8.436723pt;}
.ws20f{word-spacing:8.610150pt;}
.ws1ac{word-spacing:8.633954pt;}
.ws46{word-spacing:8.658825pt;}
.ws1ab{word-spacing:8.834586pt;}
.ws241{word-spacing:8.844787pt;}
.ws169{word-spacing:8.878793pt;}
.ws168{word-spacing:8.902596pt;}
.ws167{word-spacing:9.127031pt;}
.ws1e{word-spacing:9.242778pt;}
.ws1f{word-spacing:9.250430pt;}
.ws160{word-spacing:9.276655pt;}
.ws242{word-spacing:9.280055pt;}
.ws15f{word-spacing:9.422878pt;}
.wsdf{word-spacing:9.432466pt;}
.wse0{word-spacing:9.453720pt;}
.ws137{word-spacing:9.500478pt;}
.ws10d{word-spacing:9.534485pt;}
.ws13d{word-spacing:9.547237pt;}
.ws224{word-spacing:9.572501pt;}
.ws122{word-spacing:9.649255pt;}
.ws20d{word-spacing:9.671117pt;}
.ws230{word-spacing:9.681318pt;}
.wsdd{word-spacing:9.696014pt;}
.ws172{word-spacing:9.700265pt;}
.ws1c4{word-spacing:9.717268pt;}
.ws14e{word-spacing:9.745929pt;}
.ws1c2{word-spacing:9.768277pt;}
.wsea{word-spacing:9.776779pt;}
.wse9{word-spacing:9.789531pt;}
.ws20e{word-spacing:9.824141pt;}
.ws140{word-spacing:9.840540pt;}
.ws6d{word-spacing:9.849042pt;}
.ws1c3{word-spacing:9.853293pt;}
.ws210{word-spacing:9.885350pt;}
.ws1d0{word-spacing:9.900051pt;}
.wse1{word-spacing:9.904302pt;}
.ws2b{word-spacing:9.908553pt;}
.ws20c{word-spacing:10.011170pt;}
.ws121{word-spacing:10.014822pt;}
.ws186{word-spacing:10.023324pt;}
.ws1c{word-spacing:10.038514pt;}
.ws106{word-spacing:10.048828pt;}
.ws23c{word-spacing:10.167595pt;}
.ws18e{word-spacing:10.210358pt;}
.ws1cf{word-spacing:10.223110pt;}
.ws1b1{word-spacing:10.232205pt;}
.ws18{word-spacing:10.233623pt;}
.ws1b2{word-spacing:10.235605pt;}
.wse{word-spacing:10.271793pt;}
.ws193{word-spacing:10.286871pt;}
.ws1b0{word-spacing:10.303616pt;}
.ws185{word-spacing:10.303875pt;}
.ws21f{word-spacing:10.310417pt;}
.ws146{word-spacing:10.380388pt;}
.wsc1{word-spacing:10.422896pt;}
.ws1c5{word-spacing:10.427147pt;}
.wscf{word-spacing:10.452652pt;}
.ws55{word-spacing:10.461153pt;}
.ws1f2{word-spacing:10.495159pt;}
.ws161{word-spacing:10.524651pt;}
.ws1bc{word-spacing:10.567423pt;}
.ws148{word-spacing:10.571673pt;}
.wsd6{word-spacing:10.601429pt;}
.ws6a{word-spacing:10.618432pt;}
.ws16{word-spacing:10.623839pt;}
.wscd{word-spacing:10.635435pt;}
.ws87{word-spacing:10.669441pt;}
.wsc4{word-spacing:10.711949pt;}
.wsc{word-spacing:10.721882pt;}
.ws13c{word-spacing:10.724701pt;}
.ws1af{word-spacing:10.766089pt;}
.ws1b9{word-spacing:10.783091pt;}
.ws72{word-spacing:10.784212pt;}
.wsa{word-spacing:10.793293pt;}
.ws120{word-spacing:10.809717pt;}
.ws258{word-spacing:10.823898pt;}
.ws126{word-spacing:10.826720pt;}
.ws2e{word-spacing:10.834099pt;}
.wsb{word-spacing:10.851102pt;}
.ws42{word-spacing:10.857903pt;}
.wsec{word-spacing:10.878306pt;}
.ws14{word-spacing:10.881707pt;}
.ws10{word-spacing:10.885107pt;}
.ws16c{word-spacing:10.888508pt;}
.ws32{word-spacing:10.891908pt;}
.ws248{word-spacing:10.905510pt;}
.ws155{word-spacing:10.915712pt;}
.ws166{word-spacing:10.925914pt;}
.ws16b{word-spacing:10.929314pt;}
.ws12{word-spacing:10.932715pt;}
.ws214{word-spacing:10.939516pt;}
.ws21b{word-spacing:10.949717pt;}
.ws15{word-spacing:10.973521pt;}
.ws7d{word-spacing:10.979748pt;}
.ws238{word-spacing:10.990524pt;}
.ws11{word-spacing:11.000725pt;}
.ws252{word-spacing:11.017728pt;}
.ws93{word-spacing:11.018004pt;}
.ws13{word-spacing:11.034731pt;}
.ws81{word-spacing:11.043509pt;}
.ws1f0{word-spacing:11.056261pt;}
.ws150{word-spacing:11.061935pt;}
.wsdc{word-spacing:11.069014pt;}
.wsf9{word-spacing:11.090268pt;}
.ws16e{word-spacing:11.094518pt;}
.ws7c{word-spacing:11.111521pt;}
.ws9c{word-spacing:11.115772pt;}
.wsfa{word-spacing:11.120023pt;}
.wse8{word-spacing:11.166782pt;}
.ws1e4{word-spacing:11.179534pt;}
.wsf{word-spacing:11.194556pt;}
.ws17{word-spacing:11.201513pt;}
.ws94{word-spacing:11.205039pt;}
.ws170{word-spacing:11.234794pt;}
.ws14f{word-spacing:11.259166pt;}
.ws235{word-spacing:11.333978pt;}
.ws123{word-spacing:11.336812pt;}
.wsd4{word-spacing:11.345314pt;}
.ws1d8{word-spacing:11.362317pt;}
.ws231{word-spacing:11.381585pt;}
.ws1d9{word-spacing:11.460085pt;}
.ws1e6{word-spacing:11.464336pt;}
.ws18a{word-spacing:11.481339pt;}
.ws1e3{word-spacing:11.502593pt;}
.ws189{word-spacing:11.540850pt;}
.wsd5{word-spacing:11.553602pt;}
.ws1c6{word-spacing:11.579107pt;}
.ws16f{word-spacing:11.600360pt;}
.ws14d{word-spacing:11.602620pt;}
.ws97{word-spacing:11.634367pt;}
.wsf6{word-spacing:11.647119pt;}
.wse7{word-spacing:11.651370pt;}
.wsb0{word-spacing:11.681125pt;}
.ws1a{word-spacing:11.717976pt;}
.ws159{word-spacing:11.749137pt;}
.ws98{word-spacing:11.795896pt;}
.ws1d{word-spacing:11.805966pt;}
.wsda{word-spacing:11.846905pt;}
.ws73{word-spacing:11.859658pt;}
.ws175{word-spacing:11.885162pt;}
.ws131{word-spacing:11.897915pt;}
.ws187{word-spacing:11.902165pt;}
.ws249{word-spacing:11.959676pt;}
.ws1ef{word-spacing:11.965927pt;}
.ws54{word-spacing:11.999933pt;}
.ws53{word-spacing:12.012685pt;}
.ws31{word-spacing:12.027686pt;}
.ws1bf{word-spacing:12.029689pt;}
.ws17d{word-spacing:12.072196pt;}
.wsf8{word-spacing:12.084949pt;}
.ws112{word-spacing:12.106202pt;}
.ws192{word-spacing:12.152961pt;}
.ws74{word-spacing:12.174215pt;}
.wseb{word-spacing:12.195469pt;}
.ws1ec{word-spacing:12.208221pt;}
.ws1a4{word-spacing:12.220973pt;}
.ws1ff{word-spacing:12.229475pt;}
.ws105{word-spacing:12.242227pt;}
.ws1fe{word-spacing:12.259230pt;}
.ws30{word-spacing:12.275925pt;}
.ws1fd{word-spacing:12.276233pt;}
.ws24{word-spacing:12.299475pt;}
.ws1a3{word-spacing:12.301738pt;}
.ws190{word-spacing:12.318741pt;}
.ws173{word-spacing:12.322992pt;}
.ws191{word-spacing:12.361249pt;}
.ws17e{word-spacing:12.365500pt;}
.wsce{word-spacing:12.386753pt;}
.ws1b{word-spacing:12.391291pt;}
.ws174{word-spacing:12.395255pt;}
.wsd9{word-spacing:12.488772pt;}
.ws24c{word-spacing:12.496960pt;}
.ws21e{word-spacing:12.517363pt;}
.ws211{word-spacing:12.527565pt;}
.ws194{word-spacing:12.531280pt;}
.ws14a{word-spacing:12.552534pt;}
.ws17f{word-spacing:12.556784pt;}
.ws78{word-spacing:12.629048pt;}
.ws110{word-spacing:12.633298pt;}
.ws14c{word-spacing:12.658803pt;}
.ws79{word-spacing:12.671555pt;}
.ws104{word-spacing:12.701311pt;}
.ws203{word-spacing:12.739568pt;}
.ws1f4{word-spacing:12.786326pt;}
.ws171{word-spacing:12.867091pt;}
.ws71{word-spacing:12.871342pt;}
.ws143{word-spacing:12.913849pt;}
.ws11d{word-spacing:12.935103pt;}
.wsd0{word-spacing:12.939354pt;}
.ws13f{word-spacing:12.943605pt;}
.ws144{word-spacing:12.952106pt;}
.ws8d{word-spacing:12.964859pt;}
.ws1e7{word-spacing:12.994614pt;}
.ws6f{word-spacing:13.037122pt;}
.ws240{word-spacing:13.058048pt;}
.ws145{word-spacing:13.058376pt;}
.ws4d{word-spacing:13.062626pt;}
.ws8c{word-spacing:13.066877pt;}
.ws1d5{word-spacing:13.079630pt;}
.ws15b{word-spacing:13.083880pt;}
.ws24b{word-spacing:13.105655pt;}
.ws6e{word-spacing:13.117887pt;}
.ws4a{word-spacing:13.122137pt;}
.ws1cc{word-spacing:13.139140pt;}
.ws49{word-spacing:13.151893pt;}
.ws12b{word-spacing:13.181648pt;}
.ws11e{word-spacing:13.194400pt;}
.ws11b{word-spacing:13.207153pt;}
.ws206{word-spacing:13.228407pt;}
.ws95{word-spacing:13.241159pt;}
.ws204{word-spacing:13.245410pt;}
.ws1d1{word-spacing:13.258162pt;}
.ws4b{word-spacing:13.283667pt;}
.ws8b{word-spacing:13.292168pt;}
.ws1a7{word-spacing:13.296419pt;}
.wsd3{word-spacing:13.304921pt;}
.ws1be{word-spacing:13.313422pt;}
.wsa1{word-spacing:13.321924pt;}
.ws9b{word-spacing:13.343177pt;}
.ws19a{word-spacing:13.355930pt;}
.ws198{word-spacing:13.360181pt;}
.wsbe{word-spacing:13.364431pt;}
.ws1d7{word-spacing:13.368682pt;}
.ws111{word-spacing:13.372933pt;}
.ws1a1{word-spacing:13.377184pt;}
.ws11a{word-spacing:13.381434pt;}
.wsb5{word-spacing:13.389936pt;}
.ws127{word-spacing:13.394187pt;}
.ws15d{word-spacing:13.398438pt;}
.ws80{word-spacing:13.402688pt;}
.ws11f{word-spacing:13.415441pt;}
.ws50{word-spacing:13.419691pt;}
.wsef{word-spacing:13.423942pt;}
.ws128{word-spacing:13.428193pt;}
.ws1ce{word-spacing:13.436695pt;}
.wsbf{word-spacing:13.445196pt;}
.ws1aa{word-spacing:13.453698pt;}
.ws58{word-spacing:13.457948pt;}
.wse4{word-spacing:13.470701pt;}
.wsb6{word-spacing:13.474951pt;}
.ws1a9{word-spacing:13.479202pt;}
.wsa2{word-spacing:13.487704pt;}
.wsc0{word-spacing:13.508958pt;}
.ws232{word-spacing:13.510319pt;}
.wsf5{word-spacing:13.521710pt;}
.ws142{word-spacing:13.525961pt;}
.ws2a{word-spacing:13.538713pt;}
.ws15c{word-spacing:13.542964pt;}
.ws1a2{word-spacing:13.547215pt;}
.ws1f5{word-spacing:13.551465pt;}
.wsf0{word-spacing:13.576970pt;}
.ws9a{word-spacing:13.585472pt;}
.ws202{word-spacing:13.589722pt;}
.ws43{word-spacing:13.602475pt;}
.ws205{word-spacing:13.610976pt;}
.ws138{word-spacing:13.615227pt;}
.wsaf{word-spacing:13.640732pt;}
.ws18d{word-spacing:13.649233pt;}
.ws199{word-spacing:13.670487pt;}
.ws1ee{word-spacing:13.678989pt;}
.ws201{word-spacing:13.683239pt;}
.ws139{word-spacing:13.687490pt;}
.ws215{word-spacing:13.708744pt;}
.ws207{word-spacing:13.755503pt;}
.wsa3{word-spacing:13.776756pt;}
.ws10a{word-spacing:13.810763pt;}
.ws19{word-spacing:13.864168pt;}
.wsc3{word-spacing:13.870273pt;}
.ws27{word-spacing:13.878775pt;}
.ws7f{word-spacing:13.946787pt;}
.ws19d{word-spacing:13.963790pt;}
.ws217{word-spacing:13.989794pt;}
.ws1e5{word-spacing:13.993546pt;}
.ws24f{word-spacing:14.003396pt;}
.wsee{word-spacing:14.010549pt;}
.wsd1{word-spacing:14.027552pt;}
.ws1cd{word-spacing:14.036054pt;}
.ws19c{word-spacing:14.040304pt;}
.ws118{word-spacing:14.057307pt;}
.ws7e{word-spacing:14.074311pt;}
.ws119{word-spacing:14.091314pt;}
.ws188{word-spacing:14.112567pt;}
.wsb9{word-spacing:14.138072pt;}
.ws1dc{word-spacing:14.146574pt;}
.ws229{word-spacing:14.197227pt;}
.ws1b3{word-spacing:14.204028pt;}
.ws12a{word-spacing:14.206084pt;}
.ws195{word-spacing:14.257094pt;}
.ws1d3{word-spacing:14.278348pt;}
.ws223{word-spacing:14.282240pt;}
.ws1bd{word-spacing:14.295351pt;}
.ws1d4{word-spacing:14.308103pt;}
.ws129{word-spacing:14.312354pt;}
.ws176{word-spacing:14.316605pt;}
.ws23f{word-spacing:14.329847pt;}
.ws1fb{word-spacing:14.414372pt;}
.ws24a{word-spacing:14.421662pt;}
.ws1de{word-spacing:14.422874pt;}
.ws99{word-spacing:14.431375pt;}
.wsba{word-spacing:14.499388pt;}
.ws17b{word-spacing:14.512140pt;}
.ws8e{word-spacing:14.524892pt;}
.ws1dd{word-spacing:14.546146pt;}
.ws11c{word-spacing:14.563149pt;}
.ws253{word-spacing:14.578086pt;}
.ws6b{word-spacing:14.584403pt;}
.ws1ba{word-spacing:14.597156pt;}
.ws22a{word-spacing:14.608691pt;}
.ws82{word-spacing:14.673670pt;}
.ws10f{word-spacing:14.703425pt;}
.ws1bb{word-spacing:14.711927pt;}
.wsb4{word-spacing:14.720428pt;}
.ws21c{word-spacing:14.737911pt;}
.ws1df{word-spacing:14.741682pt;}
.ws23b{word-spacing:14.771917pt;}
.ws56{word-spacing:14.788440pt;}
.wsc2{word-spacing:14.839450pt;}
.wsed{word-spacing:14.843700pt;}
.ws196{word-spacing:14.907462pt;}
.ws35{word-spacing:14.941943pt;}
.ws16a{word-spacing:15.016755pt;}
.ws1ed{word-spacing:15.026484pt;}
.ws33{word-spacing:15.026957pt;}
.wsa6{word-spacing:15.090245pt;}
.ws20{word-spacing:15.122808pt;}
.ws34{word-spacing:15.132373pt;}
.ws70{word-spacing:15.132753pt;}
.wsa7{word-spacing:15.137004pt;}
.ws117{word-spacing:15.141255pt;}
.ws21a{word-spacing:15.162978pt;}
.ws69{word-spacing:15.192264pt;}
.wsd7{word-spacing:15.200765pt;}
.ws52{word-spacing:15.209267pt;}
.wsab{word-spacing:15.239022pt;}
.ws1a8{word-spacing:15.243273pt;}
.wsa8{word-spacing:15.247524pt;}
.wsf1{word-spacing:15.260276pt;}
.ws149{word-spacing:15.294282pt;}
.ws68{word-spacing:15.315536pt;}
.wsf2{word-spacing:15.319787pt;}
.ws36{word-spacing:15.370411pt;}
.ws76{word-spacing:15.375047pt;}
.ws1e0{word-spacing:15.426056pt;}
.ws244{word-spacing:15.438421pt;}
.ws1da{word-spacing:15.494069pt;}
.wsd8{word-spacing:15.502570pt;}
.wsb3{word-spacing:15.536577pt;}
.ws1e2{word-spacing:15.672601pt;}
.ws7b{word-spacing:15.676852pt;}
.ws135{word-spacing:15.681103pt;}
.ws256{word-spacing:15.710464pt;}
.ws10c{word-spacing:15.727861pt;}
.ws200{word-spacing:15.740614pt;}
.ws92{word-spacing:15.753366pt;}
.ws124{word-spacing:15.778871pt;}
.ws29{word-spacing:15.855385pt;}
.ws1c8{word-spacing:15.876638pt;}
.ws91{word-spacing:15.897892pt;}
.ws251{word-spacing:15.911095pt;}
.wsb1{word-spacing:15.970155pt;}
.ws48{word-spacing:15.991409pt;}
.ws10b{word-spacing:16.008412pt;}
.wsca{word-spacing:16.021165pt;}
.ws20a{word-spacing:16.046669pt;}
.ws24d{word-spacing:16.050517pt;}
.ws243{word-spacing:16.125329pt;}
.ws1c9{word-spacing:16.144437pt;}
.ws236{word-spacing:16.230746pt;}
.wsf3{word-spacing:16.301716pt;}
.ws1f8{word-spacing:16.318719pt;}
.ws22c{word-spacing:16.329361pt;}
.ws212{word-spacing:16.427977pt;}
.ws1fa{word-spacing:16.433490pt;}
.ws12f{word-spacing:16.467496pt;}
.ws2c{word-spacing:16.493001pt;}
.ws66{word-spacing:16.501502pt;}
.ws180{word-spacing:16.535508pt;}
.ws18f{word-spacing:16.544010pt;}
.ws103{word-spacing:16.578016pt;}
.ws1ea{word-spacing:16.586518pt;}
.ws4e{word-spacing:16.612022pt;}
.wsa0{word-spacing:16.620524pt;}
.ws1e9{word-spacing:16.667282pt;}
.ws102{word-spacing:16.671533pt;}
.ws1e8{word-spacing:16.697038pt;}
.ws9f{word-spacing:16.709790pt;}
.ws67{word-spacing:16.773552pt;}
.ws77{word-spacing:16.777802pt;}
.wsa5{word-spacing:16.871319pt;}
.wsfc{word-spacing:16.905326pt;}
.ws19b{word-spacing:16.930830pt;}
.ws59{word-spacing:16.935081pt;}
.ws12c{word-spacing:16.969087pt;}
.ws62{word-spacing:16.994592pt;}
.wsa4{word-spacing:17.003093pt;}
.ws234{word-spacing:17.006067pt;}
.ws1a5{word-spacing:17.049852pt;}
.ws12e{word-spacing:17.062604pt;}
.ws65{word-spacing:17.122115pt;}
.ws1db{word-spacing:17.126366pt;}
.ws247{word-spacing:17.216900pt;}
.ws64{word-spacing:17.224134pt;}
.ws1ad{word-spacing:17.227102pt;}
.ws1ae{word-spacing:17.237303pt;}
.wsb2{word-spacing:17.262391pt;}
.ws18c{word-spacing:17.283644pt;}
.ws1d6{word-spacing:17.287895pt;}
.wsde{word-spacing:17.326152pt;}
.ws13e{word-spacing:17.334654pt;}
.ws39{word-spacing:17.349521pt;}
.ws3b{word-spacing:17.386927pt;}
.ws60{word-spacing:17.389914pt;}
.ws37{word-spacing:17.414131pt;}
.ws12d{word-spacing:17.419669pt;}
.ws3a{word-spacing:17.512747pt;}
.ws19e{word-spacing:17.517437pt;}
.wsd2{word-spacing:17.530189pt;}
.ws28{word-spacing:17.585449pt;}
.ws38{word-spacing:17.601161pt;}
.ws254{word-spacing:17.611362pt;}
.ws88{word-spacing:17.649211pt;}
.ws89{word-spacing:17.661963pt;}
.ws4f{word-spacing:17.751229pt;}
.ws10e{word-spacing:17.789486pt;}
.ws23{word-spacing:17.800765pt;}
.ws21{word-spacing:17.819893pt;}
.ws22{word-spacing:17.969094pt;}
.wsaa{word-spacing:17.985022pt;}
.wsff{word-spacing:18.023279pt;}
.wsa9{word-spacing:18.146551pt;}
.ws9e{word-spacing:18.201811pt;}
.ws1a0{word-spacing:18.257071pt;}
.ws9d{word-spacing:18.299579pt;}
.ws225{word-spacing:18.315273pt;}
.ws157{word-spacing:18.363341pt;}
.ws19f{word-spacing:18.444105pt;}
.ws1ca{word-spacing:18.478112pt;}
.ws6{word-spacing:18.490731pt;}
.ws101{word-spacing:18.495115pt;}
.ws5e{word-spacing:18.592883pt;}
.ws221{word-spacing:18.614519pt;}
.ws113{word-spacing:18.643892pt;}
.ws130{word-spacing:18.673647pt;}
.ws9{word-spacing:18.682229pt;}
.ws5{word-spacing:18.716022pt;}
.ws7{word-spacing:18.732919pt;}
.wse3{word-spacing:18.733158pt;}
.wsad{word-spacing:18.775666pt;}
.ws3{word-spacing:18.794874pt;}
.ws197{word-spacing:18.830926pt;}
.ws2{word-spacing:18.834300pt;}
.ws8{word-spacing:18.845564pt;}
.wse6{word-spacing:18.856431pt;}
.ws17c{word-spacing:18.864932pt;}
.ws158{word-spacing:18.945697pt;}
.ws1f6{word-spacing:18.992455pt;}
.wse5{word-spacing:19.000957pt;}
.ws115{word-spacing:19.081721pt;}
.ws114{word-spacing:19.302762pt;}
.ws125{word-spacing:19.307012pt;}
.ws15e{word-spacing:19.341019pt;}
.wsb7{word-spacing:19.515300pt;}
.ws1a6{word-spacing:19.553557pt;}
.wsb8{word-spacing:19.557808pt;}
.ws83{word-spacing:19.566310pt;}
.ws5f{word-spacing:19.574811pt;}
.ws208{word-spacing:19.600316pt;}
.ws1d2{word-spacing:19.630071pt;}
.ws218{word-spacing:19.665284pt;}
.ws1f9{word-spacing:19.698084pt;}
.wsfb{word-spacing:19.706585pt;}
.ws4c{word-spacing:19.838359pt;}
.ws179{word-spacing:19.897870pt;}
.ws183{word-spacing:19.910622pt;}
.ws184{word-spacing:19.919124pt;}
.wscb{word-spacing:19.936127pt;}
.ws181{word-spacing:19.948879pt;}
.ws182{word-spacing:20.016892pt;}
.ws177{word-spacing:20.033895pt;}
.ws1b6{word-spacing:20.253577pt;}
.ws178{word-spacing:20.314446pt;}
.ws1e1{word-spacing:20.318697pt;}
.ws1f3{word-spacing:20.373957pt;}
.wsbb{word-spacing:20.407963pt;}
.wsbc{word-spacing:20.416464pt;}
.ws136{word-spacing:20.586495pt;}
.ws22d{word-spacing:20.682044pt;}
.ws1f1{word-spacing:20.735272pt;}
.ws226{word-spacing:20.760256pt;}
.ws15a{word-spacing:20.888300pt;}
.ws5b{word-spacing:20.896802pt;}
.ws20b{word-spacing:20.905303pt;}
.ws227{word-spacing:20.967689pt;}
.ws5c{word-spacing:20.986068pt;}
.ws237{word-spacing:21.219328pt;}
.wsbd{word-spacing:21.321879pt;}
.ws141{word-spacing:21.372888pt;}
.ws1c1{word-spacing:21.406895pt;}
.ws57{word-spacing:21.474907pt;}
.wse2{word-spacing:21.615182pt;}
.ws13a{word-spacing:21.678944pt;}
.ws8f{word-spacing:21.704449pt;}
.ws90{word-spacing:21.785213pt;}
.ws1f7{word-spacing:21.912737pt;}
.wscc{word-spacing:21.997752pt;}
.wsfe{word-spacing:22.342065pt;}
.ws132{word-spacing:22.359068pt;}
.ws133{word-spacing:22.371820pt;}
.ws134{word-spacing:22.499343pt;}
.wsfd{word-spacing:22.567356pt;}
.ws13b{word-spacing:22.733136pt;}
.ws107{word-spacing:22.771393pt;}
.wsf4{word-spacing:23.077448pt;}
.ws209{word-spacing:23.090201pt;}
.ws100{word-spacing:23.264482pt;}
.ws22b{word-spacing:23.487484pt;}
.ws1{word-spacing:23.628082pt;}
.ws45{word-spacing:23.670007pt;}
.ws0{word-spacing:23.714158pt;}
.wsac{word-spacing:23.910600pt;}
.ws245{word-spacing:23.953357pt;}
.ws156{word-spacing:23.970111pt;}
.ws5a{word-spacing:24.475953pt;}
.ws1eb{word-spacing:24.492956pt;}
.ws1cb{word-spacing:24.586473pt;}
.ws246{word-spacing:24.817092pt;}
.ws18b{word-spacing:24.901030pt;}
.ws109{word-spacing:25.096566pt;}
.ws216{word-spacing:25.483386pt;}
.ws75{word-spacing:25.933968pt;}
.ws96{word-spacing:26.091247pt;}
.ws6c{word-spacing:26.622593pt;}
.wsae{word-spacing:27.128435pt;}
.ws255{word-spacing:27.486511pt;}
.wsdb{word-spacing:27.910578pt;}
.ws22f{word-spacing:27.928580pt;}
.ws108{word-spacing:28.063606pt;}
.ws250{word-spacing:28.924937pt;}
.ws14b{word-spacing:29.177308pt;}
.ws1fc{word-spacing:29.445107pt;}
.ws23e{word-spacing:29.499627pt;}
.wsc8{word-spacing:29.500367pt;}
.wsc7{word-spacing:29.564129pt;}
.wsc5{word-spacing:29.598135pt;}
.wsc6{word-spacing:29.602385pt;}
.wsc9{word-spacing:29.627890pt;}
.ws51{word-spacing:29.916943pt;}
.ws259{word-spacing:30.676211pt;}
.ws16d{word-spacing:30.932878pt;}
.ws1c0{word-spacing:31.009391pt;}
.ws220{word-spacing:32.444489pt;}
.ws7a{word-spacing:32.590679pt;}
.ws85{word-spacing:33.309060pt;}
.ws84{word-spacing:33.462088pt;}
.ws1c7{word-spacing:35.872276pt;}
.ws233{word-spacing:36.647548pt;}
.ws222{word-spacing:37.463676pt;}
.ws25a{word-spacing:37.759522pt;}
.ws228{word-spacing:40.061683pt;}
.ws23d{word-spacing:42.931733pt;}
.ws219{word-spacing:52.929301pt;}
.ws151{word-spacing:355.287723pt;}
.ws154{word-spacing:366.788326pt;}
.ws152{word-spacing:367.536444pt;}
.ws153{word-spacing:414.861666pt;}
._25{margin-left:-19.842610pt;}
._f{margin-left:-18.269824pt;}
._10{margin-left:-17.262391pt;}
._11{margin-left:-15.996697pt;}
._1c{margin-left:-11.535181pt;}
._15{margin-left:-10.197605pt;}
._16{margin-left:-9.296441pt;}
._9{margin-left:-1.140045pt;}
._c{width:1.420796pt;}
._a{width:5.566326pt;}
._8{width:8.156293pt;}
._2{width:9.610041pt;}
._5{width:10.577931pt;}
._1{width:11.772646pt;}
._4{width:12.827416pt;}
._e{width:14.189081pt;}
._3{width:15.096028pt;}
._6{width:16.232247pt;}
._b{width:17.453675pt;}
._7{width:18.860471pt;}
._14{width:19.807567pt;}
._18{width:20.812823pt;}
._19{width:21.710876pt;}
._1d{width:23.306990pt;}
._0{width:24.711215pt;}
._26{width:26.001980pt;}
._12{width:26.945652pt;}
._17{width:28.114615pt;}
._1a{width:29.071039pt;}
._1e{width:30.171989pt;}
._d{width:31.260187pt;}
._13{width:33.904168pt;}
._29{width:35.225274pt;}
._27{width:36.858456pt;}
._28{width:38.500838pt;}
._2a{width:43.890684pt;}
._1f{width:355.461150pt;}
._21{width:372.406007pt;}
._24{width:414.895671pt;}
._22{width:417.956151pt;}
._23{width:435.033630pt;}
._20{width:625.653926pt;}
._1b{width:1435.310711pt;}
.fs11{font-size:18.359467pt;}
.fs4{font-size:22.666667pt;}
.fsf{font-size:22.950933pt;}
.fsd{font-size:28.334400pt;}
.fs5{font-size:34.005333pt;}
.fs2{font-size:37.544533pt;}
.fs7{font-size:38.256533pt;}
.fsa{font-size:39.849600pt;}
.fs10{font-size:40.124800pt;}
.fs9{font-size:42.507733pt;}
.fs8{font-size:45.141333pt;}
.fs3{font-size:46.043733pt;}
.fs6{font-size:47.820267pt;}
.fsc{font-size:49.945600pt;}
.fse{font-size:50.158933pt;}
.fs1{font-size:56.322667pt;}
.fs0{font-size:71.730667pt;}
.fsb{font-size:74.387200pt;}
.y0{bottom:0.000000pt;}
.yce{bottom:33.028265pt;}
.y158{bottom:33.029163pt;}
.y199{bottom:33.030171pt;}
.y1ea{bottom:33.034550pt;}
.y24d{bottom:33.035644pt;}
.y87{bottom:53.291333pt;}
.y107{bottom:53.291470pt;}
.y1de{bottom:53.291535pt;}
.y189{bottom:53.291577pt;}
.y3a{bottom:53.291953pt;}
.y86{bottom:53.292244pt;}
.y1e8{bottom:53.292378pt;}
.y136{bottom:53.292601pt;}
.ycc{bottom:53.303746pt;}
.y15c{bottom:53.518843pt;}
.y161{bottom:53.519906pt;}
.y18a{bottom:57.297733pt;}
.y88{bottom:57.978000pt;}
.y188{bottom:64.705467pt;}
.y39{bottom:64.705843pt;}
.y1e7{bottom:64.706268pt;}
.y106{bottom:67.200000pt;}
.y1dd{bottom:67.200065pt;}
.y104{bottom:67.200285pt;}
.y85{bottom:67.200775pt;}
.y135{bottom:67.201131pt;}
.ycb{bottom:67.212276pt;}
.y15b{bottom:67.427373pt;}
.y160{bottom:67.428436pt;}
.y187{bottom:68.485067pt;}
.y105{bottom:71.962133pt;}
.y38{bottom:76.119733pt;}
.y1e6{bottom:76.120158pt;}
.y1dc{bottom:81.184047pt;}
.y103{bottom:81.184267pt;}
.y101{bottom:81.184403pt;}
.y134{bottom:81.185112pt;}
.yca{bottom:81.196258pt;}
.y15f{bottom:81.412417pt;}
.y102{bottom:85.870933pt;}
.y1e5{bottom:87.534048pt;}
.yff{bottom:93.354267pt;}
.y1db{bottom:95.092577pt;}
.y100{bottom:95.092933pt;}
.y84{bottom:95.093287pt;}
.y133{bottom:95.093643pt;}
.yfe{bottom:95.096987pt;}
.yc9{bottom:95.104788pt;}
.y15a{bottom:95.319885pt;}
.y15e{bottom:95.320948pt;}
.y1e4{bottom:99.023600pt;}
.y1e2{bottom:99.024220pt;}
.y43{bottom:100.082762pt;}
.y44{bottom:100.309747pt;}
.y37{bottom:100.762335pt;}
.y1e3{bottom:102.803200pt;}
.y1da{bottom:109.076559pt;}
.y132{bottom:109.077624pt;}
.yfd{bottom:109.080969pt;}
.yc8{bottom:109.088770pt;}
.y159{bottom:109.303867pt;}
.y15d{bottom:109.304929pt;}
.y1e1{bottom:110.438110pt;}
.y41{bottom:111.496652pt;}
.y42{bottom:111.723637pt;}
.y36{bottom:114.670865pt;}
.y1df{bottom:121.852000pt;}
.y40{bottom:122.910542pt;}
.y83{bottom:122.985799pt;}
.y131{bottom:122.986155pt;}
.yfc{bottom:122.989499pt;}
.yc7{bottom:122.997300pt;}
.y1e0{bottom:125.631467pt;}
.y35{bottom:128.654847pt;}
.y3f{bottom:134.324432pt;}
.y1d9{bottom:136.970133pt;}
.y130{bottom:136.970136pt;}
.yfb{bottom:136.973481pt;}
.yc6{bottom:136.981282pt;}
.y34{bottom:142.563377pt;}
.y3e{bottom:146.872400pt;}
.y171{bottom:147.401600pt;}
.y16f{bottom:147.401843pt;}
.y3d{bottom:148.459867pt;}
.y12f{bottom:150.878667pt;}
.yfa{bottom:150.882011pt;}
.y12d{bottom:150.883955pt;}
.yc5{bottom:150.889812pt;}
.y170{bottom:151.181067pt;}
.y12e{bottom:155.640933pt;}
.y33{bottom:156.547359pt;}
.y3c{bottom:158.362510pt;}
.y16e{bottom:158.815733pt;}
.y16c{bottom:158.816353pt;}
.y16d{bottom:162.595200pt;}
.y82{bottom:164.863355pt;}
.yf9{bottom:164.865993pt;}
.y12c{bottom:164.867936pt;}
.yc4{bottom:164.873794pt;}
.y3b{bottom:169.776400pt;}
.y16b{bottom:170.230243pt;}
.y81{bottom:178.771885pt;}
.yf8{bottom:178.774523pt;}
.y12b{bottom:178.776467pt;}
.yc3{bottom:178.782324pt;}
.y1d8{bottom:181.115355pt;}
.y16a{bottom:181.644133pt;}
.y32{bottom:184.440933pt;}
.y80{bottom:192.755867pt;}
.yf7{bottom:192.758504pt;}
.y12a{bottom:192.760448pt;}
.yc2{bottom:192.766306pt;}
.y1d7{bottom:195.099336pt;}
.yf6{bottom:206.667035pt;}
.y129{bottom:206.668978pt;}
.yc1{bottom:206.674836pt;}
.y7f{bottom:206.675394pt;}
.y1d6{bottom:209.007867pt;}
.y128{bottom:220.652960pt;}
.yc0{bottom:220.658817pt;}
.y7e{bottom:220.659375pt;}
.yf5{bottom:234.559547pt;}
.y127{bottom:234.561490pt;}
.ybf{bottom:234.567348pt;}
.y7d{bottom:234.567906pt;}
.y1d5{bottom:236.900667pt;}
.y31{bottom:240.226705pt;}
.y126{bottom:248.545472pt;}
.ybe{bottom:248.551329pt;}
.y7c{bottom:248.551887pt;}
.y30{bottom:253.001518pt;}
.y125{bottom:262.454002pt;}
.ybd{bottom:262.459860pt;}
.y7b{bottom:262.460417pt;}
.y2f{bottom:265.776331pt;}
.y20{bottom:266.384107pt;}
.yf4{bottom:268.424395pt;}
.y124{bottom:276.437984pt;}
.ybc{bottom:276.443841pt;}
.y7a{bottom:276.444399pt;}
.y1f{bottom:277.797997pt;}
.y2e{bottom:278.551144pt;}
.y1d4{bottom:281.045600pt;}
.yf3{bottom:282.408377pt;}
.y1e{bottom:289.287549pt;}
.y123{bottom:290.346514pt;}
.ybb{bottom:290.352372pt;}
.y79{bottom:290.352929pt;}
.y2c{bottom:291.250387pt;}
.y2d{bottom:291.250400pt;}
.yf2{bottom:296.316907pt;}
.y1d{bottom:300.701439pt;}
.y2a{bottom:304.025010pt;}
.y2b{bottom:304.025200pt;}
.y122{bottom:304.330496pt;}
.yba{bottom:304.336353pt;}
.y78{bottom:304.336911pt;}
.y1d3{bottom:309.021263pt;}
.yf1{bottom:310.300889pt;}
.y1c{bottom:312.115329pt;}
.y29{bottom:316.799823pt;}
.yb9{bottom:318.320335pt;}
.y77{bottom:318.320893pt;}
.y1b{bottom:323.529219pt;}
.yf0{bottom:324.209419pt;}
.y28{bottom:329.499079pt;}
.y121{bottom:332.223008pt;}
.yb8{bottom:332.228865pt;}
.y76{bottom:332.229423pt;}
.y1a{bottom:334.943109pt;}
.yef{bottom:338.193401pt;}
.y27{bottom:342.273892pt;}
.yb7{bottom:346.212847pt;}
.y75{bottom:346.213404pt;}
.yee{bottom:352.101931pt;}
.y26{bottom:355.048705pt;}
.y1d2{bottom:355.509846pt;}
.yb6{bottom:360.121377pt;}
.y74{bottom:360.121935pt;}
.y19{bottom:361.701906pt;}
.yed{bottom:366.085912pt;}
.y25{bottom:367.747961pt;}
.y1d1{bottom:369.418376pt;}
.y120{bottom:371.908228pt;}
.y18{bottom:373.115796pt;}
.yb5{bottom:374.105359pt;}
.y73{bottom:374.105916pt;}
.yec{bottom:379.994443pt;}
.y24{bottom:380.522774pt;}
.y1d0{bottom:383.402358pt;}
.y17{bottom:384.529686pt;}
.y11f{bottom:385.816758pt;}
.yb4{bottom:388.013889pt;}
.y72{bottom:388.014447pt;}
.y23{bottom:393.297587pt;}
.yeb{bottom:393.978424pt;}
.y16{bottom:395.943577pt;}
.y1cf{bottom:397.310888pt;}
.y11e{bottom:399.800739pt;}
.yb3{bottom:401.997871pt;}
.y71{bottom:401.998428pt;}
.y22{bottom:406.072400pt;}
.y15{bottom:407.357467pt;}
.yea{bottom:407.886955pt;}
.y1ce{bottom:411.294870pt;}
.y11d{bottom:413.709270pt;}
.yb2{bottom:415.906401pt;}
.y70{bottom:415.906959pt;}
.ye9{bottom:421.870936pt;}
.y1cd{bottom:425.203400pt;}
.y11c{bottom:427.693251pt;}
.y219{bottom:429.285666pt;}
.yb1{bottom:429.890382pt;}
.y6f{bottom:429.890940pt;}
.y186{bottom:431.848800pt;}
.y184{bottom:431.849646pt;}
.y21{bottom:432.302267pt;}
.y14{bottom:432.680267pt;}
.ye8{bottom:435.779467pt;}
.ye6{bottom:435.781725pt;}
.y185{bottom:436.535333pt;}
.y1cc{bottom:439.187381pt;}
.y218{bottom:439.943788pt;}
.ye7{bottom:440.541600pt;}
.y24b{bottom:440.697531pt;}
.y11b{bottom:441.601782pt;}
.yb0{bottom:443.798913pt;}
.y6e{bottom:443.799471pt;}
.y183{bottom:445.758176pt;}
.ye5{bottom:449.765707pt;}
.y217{bottom:450.526247pt;}
.y24a{bottom:451.355652pt;}
.y1cb{bottom:453.095912pt;}
.y11a{bottom:455.585763pt;}
.yaf{bottom:457.782894pt;}
.y6d{bottom:457.783452pt;}
.y182{bottom:459.742158pt;}
.y216{bottom:461.184369pt;}
.y249{bottom:461.938112pt;}
.ye4{bottom:463.674237pt;}
.y1ca{bottom:467.079893pt;}
.y119{bottom:469.494294pt;}
.yae{bottom:471.691425pt;}
.y6c{bottom:471.691982pt;}
.y215{bottom:471.766829pt;}
.y248{bottom:472.596234pt;}
.y181{bottom:473.650688pt;}
.ye3{bottom:477.658219pt;}
.y1c9{bottom:480.988424pt;}
.y214{bottom:482.424950pt;}
.y1b9{bottom:482.872688pt;}
.y247{bottom:483.254355pt;}
.y118{bottom:483.478275pt;}
.yad{bottom:485.675406pt;}
.y6b{bottom:485.675964pt;}
.y180{bottom:487.634670pt;}
.ye2{bottom:491.566749pt;}
.y213{bottom:493.083072pt;}
.y246{bottom:493.836815pt;}
.y1c8{bottom:494.972405pt;}
.y1b8{bottom:496.781218pt;}
.y117{bottom:497.386806pt;}
.yac{bottom:499.583937pt;}
.y6a{bottom:499.584494pt;}
.y17f{bottom:501.543200pt;}
.y17e{bottom:501.543485pt;}
.y212{bottom:503.665532pt;}
.y245{bottom:504.494937pt;}
.ye1{bottom:505.550731pt;}
.y1c7{bottom:508.880936pt;}
.y1b7{bottom:510.765200pt;}
.y1b6{bottom:510.770488pt;}
.y116{bottom:511.370787pt;}
.yab{bottom:513.567918pt;}
.y69{bottom:513.568476pt;}
.y211{bottom:514.323653pt;}
.y244{bottom:515.077396pt;}
.y17d{bottom:515.527467pt;}
.y17c{bottom:515.527603pt;}
.ye0{bottom:519.459261pt;}
.y1c6{bottom:522.864917pt;}
.y1b5{bottom:524.679018pt;}
.y210{bottom:524.906113pt;}
.y115{bottom:525.279318pt;}
.y243{bottom:525.735518pt;}
.yaa{bottom:527.476449pt;}
.y68{bottom:527.477006pt;}
.y17b{bottom:529.436133pt;}
.y17a{bottom:529.446177pt;}
.ydf{bottom:533.443243pt;}
.y20f{bottom:535.564235pt;}
.y242{bottom:536.317978pt;}
.y1c5{bottom:536.773448pt;}
.y1b4{bottom:538.663000pt;}
.ya9{bottom:541.460430pt;}
.y67{bottom:541.460988pt;}
.y179{bottom:543.430159pt;}
.y20e{bottom:546.222356pt;}
.y241{bottom:546.976099pt;}
.yde{bottom:547.351773pt;}
.y1c4{bottom:550.757429pt;}
.y1b3{bottom:552.571530pt;}
.y114{bottom:553.171829pt;}
.ya8{bottom:555.368960pt;}
.y66{bottom:555.369518pt;}
.y169{bottom:556.195200pt;}
.y167{bottom:556.195443pt;}
.y20d{bottom:556.804816pt;}
.y178{bottom:557.338689pt;}
.y240{bottom:557.634221pt;}
.y168{bottom:559.899067pt;}
.ydd{bottom:561.335755pt;}
.y1c3{bottom:564.665959pt;}
.y1b2{bottom:566.555512pt;}
.y20b{bottom:567.462938pt;}
.y166{bottom:567.609333pt;}
.y164{bottom:567.609820pt;}
.y20c{bottom:567.689923pt;}
.y23f{bottom:568.216681pt;}
.ya7{bottom:569.352942pt;}
.y65{bottom:569.353500pt;}
.y177{bottom:571.322671pt;}
.y165{bottom:571.388933pt;}
.ydc{bottom:575.244285pt;}
.y20a{bottom:578.045397pt;}
.y1c2{bottom:578.649941pt;}
.y23e{bottom:578.874802pt;}
.y163{bottom:579.023710pt;}
.y1b1{bottom:580.464042pt;}
.y113{bottom:581.064341pt;}
.y64{bottom:583.262030pt;}
.y176{bottom:585.231201pt;}
.yda{bottom:587.414000pt;}
.y209{bottom:588.703519pt;}
.ydb{bottom:589.228267pt;}
.yd9{bottom:589.229925pt;}
.y23d{bottom:589.457262pt;}
.y162{bottom:590.437600pt;}
.y1c1{bottom:592.558471pt;}
.y1b0{bottom:594.448024pt;}
.ya6{bottom:597.245454pt;}
.y63{bottom:597.246012pt;}
.y175{bottom:599.215182pt;}
.y208{bottom:599.285979pt;}
.y23c{bottom:600.115383pt;}
.yd8{bottom:603.138456pt;}
.y1c0{bottom:606.542453pt;}
.y1af{bottom:608.356554pt;}
.y207{bottom:609.944100pt;}
.y23b{bottom:610.773505pt;}
.y62{bottom:611.154542pt;}
.y174{bottom:613.123713pt;}
.yd7{bottom:617.122437pt;}
.y1bf{bottom:620.450983pt;}
.y206{bottom:620.602222pt;}
.y23a{bottom:621.355965pt;}
.y1ae{bottom:622.340536pt;}
.y112{bottom:623.092800pt;}
.ya5{bottom:625.137966pt;}
.y61{bottom:625.138524pt;}
.yd6{bottom:631.030968pt;}
.y205{bottom:631.184682pt;}
.y239{bottom:632.014086pt;}
.y1be{bottom:634.434965pt;}
.y1ad{bottom:636.249066pt;}
.y110{bottom:637.003304pt;}
.ya4{bottom:639.046496pt;}
.y60{bottom:639.047054pt;}
.y111{bottom:641.007733pt;}
.y173{bottom:641.016225pt;}
.y204{bottom:641.842803pt;}
.y238{bottom:642.596546pt;}
.yd5{bottom:645.014949pt;}
.y13{bottom:648.113200pt;}
.y1bd{bottom:648.343495pt;}
.y1ac{bottom:650.233048pt;}
.y10f{bottom:650.987286pt;}
.y203{bottom:652.425263pt;}
.ya3{bottom:653.030478pt;}
.y5f{bottom:653.031036pt;}
.y237{bottom:653.254668pt;}
.y172{bottom:655.000206pt;}
.yd4{bottom:658.923479pt;}
.y1bc{bottom:662.327477pt;}
.y202{bottom:663.083385pt;}
.y236{bottom:663.837127pt;}
.y1ab{bottom:664.141578pt;}
.y10e{bottom:664.895816pt;}
.ya2{bottom:666.939008pt;}
.y5e{bottom:666.939566pt;}
.yd3{bottom:672.907461pt;}
.y201{bottom:673.741506pt;}
.y235{bottom:674.495249pt;}
.y1aa{bottom:678.125559pt;}
.y10d{bottom:678.879798pt;}
.ya1{bottom:680.922990pt;}
.y5d{bottom:680.923547pt;}
.y200{bottom:684.323966pt;}
.y234{bottom:685.153371pt;}
.y1bb{bottom:690.219989pt;}
.y1a9{bottom:692.034090pt;}
.y10c{bottom:692.788328pt;}
.y197{bottom:693.089843pt;}
.y12{bottom:693.165200pt;}
.ya0{bottom:694.831520pt;}
.y5c{bottom:694.832078pt;}
.y1ff{bottom:694.982087pt;}
.y233{bottom:695.735830pt;}
.y11{bottom:696.944800pt;}
.yd2{bottom:700.799973pt;}
.y196{bottom:704.503733pt;}
.y194{bottom:704.504353pt;}
.y10{bottom:704.579467pt;}
.y1fe{bottom:705.564547pt;}
.y1a8{bottom:706.018071pt;}
.y232{bottom:706.393952pt;}
.y10b{bottom:706.772309pt;}
.y195{bottom:708.283333pt;}
.yf{bottom:708.358933pt;}
.y9f{bottom:708.815502pt;}
.y5b{bottom:708.816059pt;}
.y193{bottom:715.918243pt;}
.ye{bottom:715.993600pt;}
.y1fd{bottom:716.222669pt;}
.y231{bottom:716.976412pt;}
.yd{bottom:719.773067pt;}
.y1a7{bottom:719.926602pt;}
.y10a{bottom:720.680840pt;}
.y9e{bottom:722.724032pt;}
.y5a{bottom:722.724590pt;}
.y1fc{bottom:726.805129pt;}
.y192{bottom:727.332133pt;}
.y190{bottom:727.332377pt;}
.y230{bottom:727.634533pt;}
.y191{bottom:731.111600pt;}
.y1a6{bottom:733.910583pt;}
.yd1{bottom:734.664821pt;}
.ya{bottom:736.176133pt;}
.y7{bottom:736.176197pt;}
.yb{bottom:736.629531pt;}
.y8{bottom:736.629595pt;}
.y9d{bottom:736.708014pt;}
.y59{bottom:736.708571pt;}
.y1fb{bottom:737.463250pt;}
.y22f{bottom:738.306582pt;}
.y18d{bottom:738.745793pt;}
.y18f{bottom:738.746267pt;}
.yc{bottom:742.223467pt;}
.y9{bottom:742.374667pt;}
.y18e{bottom:742.525733pt;}
.y1a5{bottom:747.894565pt;}
.y1fa{bottom:748.121372pt;}
.yd0{bottom:748.573352pt;}
.y22e{bottom:748.889042pt;}
.y18b{bottom:750.160533pt;}
.y9c{bottom:750.616544pt;}
.y58{bottom:750.617102pt;}
.y3{bottom:753.410933pt;}
.y6{bottom:753.864331pt;}
.y18c{bottom:753.940000pt;}
.y1f9{bottom:758.703831pt;}
.y5{bottom:759.458133pt;}
.y22d{bottom:759.547164pt;}
.y4{bottom:759.684933pt;}
.y1a4{bottom:761.803095pt;}
.ycf{bottom:762.557333pt;}
.y108{bottom:762.559568pt;}
.y9b{bottom:764.600525pt;}
.y57{bottom:764.601083pt;}
.y109{bottom:767.244000pt;}
.y1f8{bottom:769.361953pt;}
.y22c{bottom:770.129623pt;}
.y1a3{bottom:775.787077pt;}
.y9a{bottom:778.584507pt;}
.y56{bottom:778.585065pt;}
.y1f7{bottom:779.944413pt;}
.y22b{bottom:780.787745pt;}
.y2{bottom:783.496548pt;}
.y1a2{bottom:789.695607pt;}
.y1f6{bottom:790.602534pt;}
.y22a{bottom:791.445867pt;}
.y99{bottom:792.493037pt;}
.y55{bottom:792.493595pt;}
.y1f5{bottom:801.260656pt;}
.y229{bottom:802.028326pt;}
.y1a1{bottom:803.679589pt;}
.y156{bottom:805.719600pt;}
.y154{bottom:805.719781pt;}
.y1{bottom:806.475467pt;}
.y98{bottom:806.477019pt;}
.y54{bottom:806.477577pt;}
.y155{bottom:809.499067pt;}
.y1f4{bottom:811.843116pt;}
.y228{bottom:812.686448pt;}
.y153{bottom:817.209333pt;}
.y151{bottom:817.209577pt;}
.y1a0{bottom:817.588119pt;}
.y97{bottom:820.385549pt;}
.y53{bottom:820.386107pt;}
.y152{bottom:820.988800pt;}
.y1f3{bottom:822.501237pt;}
.y227{bottom:823.268908pt;}
.y150{bottom:828.623467pt;}
.y14e{bottom:828.623710pt;}
.y14f{bottom:832.402933pt;}
.y1f2{bottom:833.083697pt;}
.y226{bottom:833.927029pt;}
.y96{bottom:834.369531pt;}
.y52{bottom:834.370089pt;}
.y14d{bottom:840.037600pt;}
.y14b{bottom:840.037977pt;}
.y1f1{bottom:843.741819pt;}
.y14c{bottom:843.817200pt;}
.y225{bottom:844.509489pt;}
.y19f{bottom:845.480631pt;}
.y95{bottom:848.278061pt;}
.y51{bottom:848.278619pt;}
.y14a{bottom:851.451867pt;}
.y148{bottom:851.452110pt;}
.y1f0{bottom:854.324278pt;}
.y224{bottom:855.167611pt;}
.y149{bottom:855.231333pt;}
.y19e{bottom:859.464613pt;}
.y94{bottom:862.262043pt;}
.y50{bottom:862.262601pt;}
.y147{bottom:862.866000pt;}
.y145{bottom:862.866243pt;}
.y1ef{bottom:864.982400pt;}
.y223{bottom:865.825732pt;}
.y146{bottom:866.645467pt;}
.y144{bottom:874.280133pt;}
.y142{bottom:874.280377pt;}
.y93{bottom:876.170573pt;}
.y4f{bottom:876.171131pt;}
.y222{bottom:876.408192pt;}
.y48{bottom:877.379333pt;}
.y143{bottom:878.059600pt;}
.y141{bottom:885.694267pt;}
.y13f{bottom:885.694490pt;}
.y221{bottom:887.066314pt;}
.y1ee{bottom:889.096846pt;}
.y140{bottom:889.473733pt;}
.y19d{bottom:890.154133pt;}
.y19b{bottom:890.154270pt;}
.y92{bottom:890.154555pt;}
.y4e{bottom:890.155112pt;}
.y19c{bottom:894.840800pt;}
.y220{bottom:897.648773pt;}
.y13e{bottom:902.550933pt;}
.y13d{bottom:902.551094pt;}
.y19a{bottom:904.062800pt;}
.y91{bottom:904.063085pt;}
.y4d{bottom:904.063643pt;}
.y21f{bottom:908.306895pt;}
.y47{bottom:913.889600pt;}
.y1ed{bottom:916.989358pt;}
.y8f{bottom:918.047067pt;}
.y8e{bottom:918.047203pt;}
.y4c{bottom:918.047624pt;}
.y21e{bottom:918.965017pt;}
.y13c{bottom:919.483200pt;}
.y90{bottom:922.733600pt;}
.y21d{bottom:929.547476pt;}
.y1ec{bottom:930.897888pt;}
.y8d{bottom:931.955733pt;}
.y8c{bottom:931.956018pt;}
.y4b{bottom:931.956155pt;}
.y139{bottom:938.607370pt;}
.y13b{bottom:938.607600pt;}
.y21c{bottom:940.205598pt;}
.y13a{bottom:942.387200pt;}
.y8a{bottom:945.940000pt;}
.y4a{bottom:945.940136pt;}
.y138{bottom:950.021260pt;}
.y8b{bottom:950.626533pt;}
.y21b{bottom:950.788058pt;}
.y46{bottom:951.760400pt;}
.y1eb{bottom:958.790400pt;}
.y49{bottom:959.848667pt;}
.y1ba{bottom:959.850901pt;}
.y89{bottom:959.851637pt;}
.y137{bottom:961.436000pt;}
.y21a{bottom:961.446179pt;}
.ycd{bottom:987.741600pt;}
.y157{bottom:987.742498pt;}
.y198{bottom:987.743506pt;}
.y1e9{bottom:987.747886pt;}
.y24c{bottom:987.748979pt;}
.y45{bottom:988.043867pt;}
.h19{height:16.486801pt;}
.h17{height:18.497533pt;}
.he{height:18.609763pt;}
.h6{height:20.354667pt;}
.h15{height:20.609938pt;}
.hb{height:20.810155pt;}
.h5{height:21.502423pt;}
.h12{height:22.725248pt;}
.h14{height:23.123268pt;}
.h13{height:25.444291pt;}
.h16{height:26.830208pt;}
.h8{height:27.735755pt;}
.h7{height:27.748352pt;}
.h18{height:28.050999pt;}
.h9{height:30.536789pt;}
.hf{height:31.338826pt;}
.hc{height:33.538602pt;}
.h4{height:33.714991pt;}
.ha{height:34.354367pt;}
.h11{height:34.686310pt;}
.hd{height:38.171945pt;}
.h3{height:50.577755pt;}
.h2{height:64.414139pt;}
.h10{height:66.799706pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:50.267733pt;}
.x41{left:53.291333pt;}
.x14{left:54.954267pt;}
.x1e{left:56.088133pt;}
.xe{left:60.546063pt;}
.x48{left:61.455067pt;}
.x1d{left:66.066133pt;}
.x42{left:69.316533pt;}
.x7e{left:70.827503pt;}
.x79{left:72.869200pt;}
.x43{left:75.288133pt;}
.x4c{left:76.573200pt;}
.x44{left:80.881867pt;}
.x59{left:81.864533pt;}
.x20{left:85.869745pt;}
.x38{left:94.110133pt;}
.x5e{left:104.012533pt;}
.x5a{left:104.995200pt;}
.x1f{left:115.198674pt;}
.x3a{left:122.003067pt;}
.x3b{left:130.166933pt;}
.x5f{left:140.674000pt;}
.x5b{left:141.959067pt;}
.x39{left:153.222000pt;}
.x71{left:154.204667pt;}
.xf{left:161.612533pt;}
.x60{left:164.485067pt;}
.x72{left:173.858267pt;}
.x10{left:175.672400pt;}
.x73{left:182.324400pt;}
.x2{left:183.836133pt;}
.x45{left:189.354267pt;}
.x3{left:191.773200pt;}
.x4{left:198.500667pt;}
.x61{left:199.785733pt;}
.x46{left:203.262933pt;}
.x49{left:204.698242pt;}
.x47{left:219.212533pt;}
.x62{left:222.009333pt;}
.x4a{left:226.166800pt;}
.x4b{left:231.911733pt;}
.x24{left:233.574667pt;}
.x36{left:243.099200pt;}
.x37{left:252.018800pt;}
.x63{left:256.856667pt;}
.x7d{left:260.333733pt;}
.x15{left:269.631467pt;}
.x11{left:272.126375pt;}
.x64{left:278.702267pt;}
.x12{left:295.634533pt;}
.x22{left:298.129067pt;}
.x25{left:303.496000pt;}
.x34{left:308.938533pt;}
.x13{left:312.113333pt;}
.x23{left:313.549467pt;}
.x26{left:315.439333pt;}
.x35{left:316.648667pt;}
.x21{left:317.858133pt;}
.x7a{left:319.370000pt;}
.x7b{left:326.626667pt;}
.x4d{left:334.412533pt;}
.x65{left:338.418800pt;}
.x5{left:347.414000pt;}
.x6{left:361.473867pt;}
.x66{left:375.382533pt;}
.x27{left:377.725867pt;}
.x28{left:382.336933pt;}
.x33{left:394.278540pt;}
.x1b{left:408.869200pt;}
.x1c{left:424.365610pt;}
.x7f{left:429.577581pt;}
.x67{left:432.529067pt;}
.x7c{left:439.332133pt;}
.x4e{left:440.541600pt;}
.x7{left:447.269200pt;}
.x74{left:449.990400pt;}
.x8{left:453.467600pt;}
.x4f{left:465.940000pt;}
.x6c{left:474.481733pt;}
.x2d{left:490.128933pt;}
.x50{left:495.118000pt;}
.x2e{left:497.310133pt;}
.x75{left:502.525867pt;}
.x1a{left:505.776838pt;}
.x76{left:508.270667pt;}
.x29{left:513.410933pt;}
.x51{left:518.173067pt;}
.x6d{left:536.466000pt;}
.x18{left:548.938400pt;}
.x52{left:551.281733pt;}
.x19{left:555.439200pt;}
.x6e{left:566.702133pt;}
.x9{left:570.179333pt;}
.x68{left:572.220267pt;}
.x53{left:574.336800pt;}
.xa{left:575.244000pt;}
.x3c{left:578.796667pt;}
.x54{left:608.503733pt;}
.x3e{left:609.713200pt;}
.x6f{left:613.795067pt;}
.x2f{left:616.969867pt;}
.x30{left:628.157333pt;}
.x16{left:631.634400pt;}
.x17{left:638.135200pt;}
.x77{left:641.310000pt;}
.x2a{left:643.048667pt;}
.x70{left:645.467467pt;}
.xb{left:653.404373pt;}
.x5c{left:655.218800pt;}
.x3f{left:661.870667pt;}
.x55{left:665.121067pt;}
.x78{left:667.313200pt;}
.x6b{left:672.680133pt;}
.x5d{left:678.576133pt;}
.x56{left:687.344667pt;}
.x31{left:688.705333pt;}
.x40{left:691.880000pt;}
.x32{left:693.391867pt;}
.xc{left:697.700667pt;}
.x69{left:699.817200pt;}
.xd{left:703.218667pt;}
.x6a{left:706.998267pt;}
.x2b{left:713.574667pt;}
.x2c{left:718.185600pt;}
.x57{left:719.621867pt;}
.x3d{left:736.176133pt;}
.x58{left:741.543067pt;}
}




    .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; }
  