
    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_597b8aa16f41c2d342432d0c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.001000;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_fc31c667997969ac788a8e2c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.072000;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_c12616325c6d6cb4309b8a86.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.926000;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_7887a8f3c400b18b7f897491.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.000000;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_7ef105be1745d65571080cfe.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.072000;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_13430c2b91815f4ad6985e0c.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.072000;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_f9eb2b267c59c5f85f732934.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.025000;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_9d02e45340a0dcb5a80abc34.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.000000;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_f5f4d9eb61dfde39223f72b6.woff2')format("woff");}.ff9{font-family:ff9;line-height:2.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:ffa;src:url('chunks/assets/font_7e65c3140d7b62c0d4242529.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_48607f164c34a06ed52b0c01.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.518000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_17eb175185346b9400cf5cec.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.520000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_5a8dac2a2f7ef8f4e7250192.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.692000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_3f35a186a8921a38178510e7.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.918000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_253724a20f791a880ef137bd.woff2')format("woff");}.fff{font-family:fff;line-height:0.923000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(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);}
.v10{vertical-align:-49.506000px;}
.vd{vertical-align:-38.748000px;}
.vc{vertical-align:-16.542000px;}
.v16{vertical-align:-15.100816px;}
.v1{vertical-align:-10.758000px;}
.v14{vertical-align:-7.125776px;}
.v15{vertical-align:-5.169327px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:16.878000px;}
.vf{vertical-align:17.934000px;}
.v13{vertical-align:26.028000px;}
.v6{vertical-align:29.616000px;}
.va{vertical-align:37.770000px;}
.v2{vertical-align:49.206000px;}
.v11{vertical-align:69.342000px;}
.v9{vertical-align:74.556000px;}
.v8{vertical-align:75.594000px;}
.v12{vertical-align:87.078000px;}
.v3{vertical-align:105.210000px;}
.v5{vertical-align:114.624000px;}
.v4{vertical-align:133.554000px;}
.ve{vertical-align:136.476000px;}
.vb{vertical-align:154.410000px;}
.ls1{letter-spacing:0.000000px;}
.ls2b{letter-spacing:0.000141px;}
.ls7f{letter-spacing:0.000440px;}
.ls4e{letter-spacing:0.000772px;}
.ls53{letter-spacing:0.000810px;}
.ls18{letter-spacing:0.001114px;}
.ls45{letter-spacing:0.001139px;}
.ls2e{letter-spacing:0.001165px;}
.ls5a{letter-spacing:0.001326px;}
.ls77{letter-spacing:0.001562px;}
.ls59{letter-spacing:0.001668px;}
.ls4d{letter-spacing:0.001828px;}
.ls57{letter-spacing:0.001874px;}
.ls50{letter-spacing:0.001917px;}
.ls55{letter-spacing:0.002358px;}
.ls4f{letter-spacing:0.002412px;}
.ls48{letter-spacing:0.002549px;}
.ls54{letter-spacing:0.002673px;}
.lsa{letter-spacing:0.002759px;}
.ls25{letter-spacing:0.003181px;}
.ls70{letter-spacing:0.003341px;}
.ls6{letter-spacing:0.003471px;}
.ls17{letter-spacing:0.003744px;}
.ls5{letter-spacing:0.003848px;}
.ls82{letter-spacing:0.004381px;}
.ls1d{letter-spacing:0.004528px;}
.ls10{letter-spacing:0.005779px;}
.ls74{letter-spacing:0.006141px;}
.ls16{letter-spacing:0.409114px;}
.ls11{letter-spacing:0.415114px;}
.ls60{letter-spacing:1.946534px;}
.ls64{letter-spacing:1.952534px;}
.ls15{letter-spacing:1.996552px;}
.ls5b{letter-spacing:2.008278px;}
.ls6c{letter-spacing:2.573587px;}
.ls47{letter-spacing:2.764382px;}
.ls4c{letter-spacing:2.768356px;}
.ls6a{letter-spacing:2.984915px;}
.ls20{letter-spacing:2.988103px;}
.ls19{letter-spacing:2.990915px;}
.ls1e{letter-spacing:2.993950px;}
.ls9{letter-spacing:4.173471px;}
.ls3{letter-spacing:4.179471px;}
.ls3d{letter-spacing:4.205226px;}
.ls38{letter-spacing:4.211226px;}
.ls1f{letter-spacing:7.167657px;}
.ls23{letter-spacing:7.173181px;}
.ls3a{letter-spacing:7.658523px;}
.ls83{letter-spacing:8.463056px;}
.ls1a{letter-spacing:8.865657px;}
.ls5d{letter-spacing:9.572467px;}
.ls5c{letter-spacing:9.573085px;}
.ls65{letter-spacing:9.756440px;}
.ls62{letter-spacing:9.762440px;}
.ls14{letter-spacing:11.948759px;}
.ls26{letter-spacing:11.949657px;}
.lsf{letter-spacing:11.953473px;}
.ls35{letter-spacing:11.954759px;}
.ls2f{letter-spacing:11.955657px;}
.ls36{letter-spacing:11.955962px;}
.ls4a{letter-spacing:13.195386px;}
.ls49{letter-spacing:13.196238px;}
.ls22{letter-spacing:15.937473px;}
.ls21{letter-spacing:15.938759px;}
.ls3c{letter-spacing:17.737473px;}
.ls6b{letter-spacing:17.827150px;}
.ls30{letter-spacing:19.131181px;}
.ls85{letter-spacing:19.490759px;}
.lse{letter-spacing:19.919518px;}
.ls7e{letter-spacing:19.921473px;}
.ls41{letter-spacing:19.922759px;}
.ls63{letter-spacing:19.925073px;}
.ls42{letter-spacing:19.927473px;}
.ls80{letter-spacing:20.115471px;}
.ls37{letter-spacing:20.147226px;}
.ls6d{letter-spacing:20.810915px;}
.ls66{letter-spacing:21.872534px;}
.ls3b{letter-spacing:21.947226px;}
.ls87{letter-spacing:22.051114px;}
.ls7a{letter-spacing:22.358680px;}
.ls79{letter-spacing:22.362793px;}
.ls61{letter-spacing:23.405518px;}
.lsd{letter-spacing:23.408759px;}
.ls81{letter-spacing:23.411518px;}
.ls29{letter-spacing:23.413114px;}
.ls5f{letter-spacing:23.414759px;}
.ls40{letter-spacing:24.428759px;}
.ls69{letter-spacing:25.157073px;}
.ls71{letter-spacing:25.232759px;}
.ls72{letter-spacing:25.234852px;}
.ls39{letter-spacing:25.982657px;}
.ls33{letter-spacing:25.985587px;}
.ls3e{letter-spacing:26.054759px;}
.ls2a{letter-spacing:26.100179px;}
.ls27{letter-spacing:26.396915px;}
.ls32{letter-spacing:26.402915px;}
.ls1c{letter-spacing:26.566677px;}
.ls68{letter-spacing:27.110534px;}
.ls1b{letter-spacing:27.141894px;}
.ls44{letter-spacing:27.656759px;}
.ls76{letter-spacing:27.945092px;}
.ls34{letter-spacing:28.828566px;}
.ls4{letter-spacing:29.750759px;}
.ls84{letter-spacing:31.490759px;}
.ls7{letter-spacing:31.760759px;}
.ls43{letter-spacing:32.096759px;}
.ls8{letter-spacing:33.038759px;}
.lsc{letter-spacing:33.505473px;}
.lsb{letter-spacing:33.506759px;}
.ls2{letter-spacing:35.117518px;}
.ls3f{letter-spacing:35.119200px;}
.ls86{letter-spacing:35.743114px;}
.ls2d{letter-spacing:35.861518px;}
.ls12{letter-spacing:35.863114px;}
.ls13{letter-spacing:35.863473px;}
.ls0{letter-spacing:35.865600px;}
.ls2c{letter-spacing:38.852915px;}
.ls6f{letter-spacing:39.847473px;}
.ls6e{letter-spacing:39.850852px;}
.ls28{letter-spacing:42.123894px;}
.ls73{letter-spacing:58.979518px;}
.ls5e{letter-spacing:71.775104px;}
.ls52{letter-spacing:104.929465px;}
.ls67{letter-spacing:152.492759px;}
.ls24{letter-spacing:161.700179px;}
.ls51{letter-spacing:175.292496px;}
.ls58{letter-spacing:178.162123px;}
.ls7c{letter-spacing:181.106540px;}
.ls31{letter-spacing:212.621587px;}
.ls46{letter-spacing:242.312922px;}
.ls78{letter-spacing:246.425564px;}
.ls56{letter-spacing:248.082481px;}
.ls4b{letter-spacing:254.089609px;}
.ls7b{letter-spacing:265.937097px;}
.ls75{letter-spacing:322.673587px;}
.ls7d{letter-spacing:337.426075px;}
.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;}
}
.wsda{word-spacing:-64.062141px;}
.ws3{word-spacing:-58.101975px;}
.wsb{word-spacing:-53.769708px;}
.ws5a{word-spacing:-50.809387px;}
.ws5e{word-spacing:-47.324343px;}
.ws10{word-spacing:-45.664082px;}
.ws88{word-spacing:-40.348800px;}
.ws6{word-spacing:-36.697682px;}
.ws8a{word-spacing:-35.119596px;}
.ws58{word-spacing:-33.756703px;}
.ws67{word-spacing:-33.684972px;}
.ws5b{word-spacing:-33.211407px;}
.wsc7{word-spacing:-31.848653px;}
.wsac{word-spacing:-31.728317px;}
.ws69{word-spacing:-31.102648px;}
.wsb4{word-spacing:-31.016414px;}
.wsa7{word-spacing:-30.246518px;}
.ws64{word-spacing:-28.305132px;}
.wsd6{word-spacing:-27.371823px;}
.wsaf{word-spacing:-26.899125px;}
.wsdf{word-spacing:-24.747161px;}
.wse1{word-spacing:-24.708114px;}
.ws46{word-spacing:-24.694556px;}
.wsb5{word-spacing:-24.488963px;}
.ws74{word-spacing:-23.808898px;}
.ws54{word-spacing:-22.416000px;}
.ws71{word-spacing:-22.057344px;}
.wsb9{word-spacing:-21.942048px;}
.ws9d{word-spacing:-21.913882px;}
.wsf4{word-spacing:-20.550989px;}
.ws44{word-spacing:-20.476278px;}
.ws60{word-spacing:-20.357258px;}
.ws9f{word-spacing:-20.120602px;}
.wsf1{word-spacing:-19.833677px;}
.wsfa{word-spacing:-19.690214px;}
.ws47{word-spacing:-19.620783px;}
.ws55{word-spacing:-19.553925px;}
.ws35{word-spacing:-19.510886px;}
.ws43{word-spacing:-19.482194px;}
.ws0{word-spacing:-19.367325px;}
.ws72{word-spacing:-19.195269px;}
.ws9e{word-spacing:-19.051807px;}
.ws8e{word-spacing:-18.836613px;}
.ws77{word-spacing:-18.693151px;}
.ws1a{word-spacing:-18.685978px;}
.ws76{word-spacing:-18.406226px;}
.wsf3{word-spacing:-18.262764px;}
.ws3b{word-spacing:-18.255590px;}
.ws75{word-spacing:-18.191032px;}
.ws13{word-spacing:-17.975839px;}
.wsf7{word-spacing:-17.968666px;}
.wsf5{word-spacing:-17.904108px;}
.wse3{word-spacing:-17.688914px;}
.ws30{word-spacing:-17.545452px;}
.wse{word-spacing:-17.473720px;}
.wsc8{word-spacing:-17.330258px;}
.wsc9{word-spacing:-17.258527px;}
.wsfb{word-spacing:-17.115064px;}
.ws73{word-spacing:-17.043333px;}
.ws4d{word-spacing:-16.971602px;}
.wsbd{word-spacing:-16.969958px;}
.ws2d{word-spacing:-16.899871px;}
.ws97{word-spacing:-16.892698px;}
.ws10e{word-spacing:-16.828140px;}
.ws8c{word-spacing:-16.756408px;}
.wse8{word-spacing:-16.605773px;}
.ws6e{word-spacing:-16.534042px;}
.ws66{word-spacing:-16.469484px;}
.wsd9{word-spacing:-16.463346px;}
.ws6f{word-spacing:-16.390579px;}
.wsdb{word-spacing:-16.362714px;}
.ws1b{word-spacing:-16.326021px;}
.ws7f{word-spacing:-16.254290px;}
.wsbe{word-spacing:-16.185694px;}
.ws2f{word-spacing:-16.182559px;}
.ws22{word-spacing:-16.139475px;}
.ws11d{word-spacing:-16.110828px;}
.ws3c{word-spacing:-15.895634px;}
.ws129{word-spacing:-15.823903px;}
.ws18{word-spacing:-15.744998px;}
.wsf8{word-spacing:-15.680440px;}
.wsf9{word-spacing:-15.608709px;}
.ws11a{word-spacing:-15.465247px;}
.ws11c{word-spacing:-15.443197px;}
.ws98{word-spacing:-15.411039px;}
.ws99{word-spacing:-15.393516px;}
.wsff{word-spacing:-15.314611px;}
.ws45{word-spacing:-15.250053px;}
.wsd0{word-spacing:-14.963128px;}
.wsc1{word-spacing:-14.819666px;}
.ws81{word-spacing:-14.747935px;}
.wse2{word-spacing:-14.676204px;}
.ws25{word-spacing:-14.604472px;}
.ws8d{word-spacing:-14.532741px;}
.wse9{word-spacing:-14.461010px;}
.ws48{word-spacing:-14.389279px;}
.ws70{word-spacing:-14.245816px;}
.ws128{word-spacing:-14.194512px;}
.ws93{word-spacing:-13.958892px;}
.ws96{word-spacing:-13.887160px;}
.ws19{word-spacing:-13.743698px;}
.ws9c{word-spacing:-13.671967px;}
.wsad{word-spacing:-13.556554px;}
.ws61{word-spacing:-13.528504px;}
.ws51{word-spacing:-13.521331px;}
.ws7e{word-spacing:-13.456773px;}
.ws1{word-spacing:-13.449600px;}
.ws100{word-spacing:-13.313311px;}
.wsbf{word-spacing:-13.306138px;}
.wsb3{word-spacing:-13.252379px;}
.ws84{word-spacing:-13.169848px;}
.ws57{word-spacing:-13.133069px;}
.ws12d{word-spacing:-13.098117px;}
.ws33{word-spacing:-13.026386px;}
.wsa2{word-spacing:-12.954655px;}
.wsa6{word-spacing:-12.923426px;}
.wsd1{word-spacing:-12.882924px;}
.ws101{word-spacing:-12.667730px;}
.wsee{word-spacing:-12.588826px;}
.wsf0{word-spacing:-12.517094px;}
.ws62{word-spacing:-12.380805px;}
.wsa0{word-spacing:-12.309074px;}
.ws52{word-spacing:-12.165612px;}
.ws82{word-spacing:-12.093880px;}
.wsf2{word-spacing:-12.014976px;}
.ws78{word-spacing:-11.806956px;}
.wsd2{word-spacing:-11.749538px;}
.wscf{word-spacing:-11.741403px;}
.wsbc{word-spacing:-11.739458px;}
.ws2{word-spacing:-11.735224px;}
.wsdd{word-spacing:-11.717750px;}
.ws83{word-spacing:-11.715573px;}
.wscc{word-spacing:-11.705030px;}
.ws7{word-spacing:-11.663493px;}
.ws26{word-spacing:-11.591762px;}
.ws10b{word-spacing:-11.562008px;}
.ws10f{word-spacing:-11.546448px;}
.ws10d{word-spacing:-11.520031px;}
.ws126{word-spacing:-11.448300px;}
.ws27{word-spacing:-10.946181px;}
.ws1e{word-spacing:-10.874450px;}
.ws41{word-spacing:-10.774614px;}
.ws90{word-spacing:-10.730988px;}
.ws91{word-spacing:-10.714307px;}
.ws92{word-spacing:-10.659256px;}
.ws21{word-spacing:-10.587525px;}
.wseb{word-spacing:-10.444063px;}
.wsed{word-spacing:-10.372332px;}
.ws28{word-spacing:-10.300600px;}
.ws8f{word-spacing:-10.293427px;}
.ws49{word-spacing:-10.013676px;}
.wsce{word-spacing:-9.880737px;}
.wscd{word-spacing:-9.870213px;}
.ws39{word-spacing:-9.798482px;}
.wsbb{word-spacing:-9.726751px;}
.ws16{word-spacing:-9.719578px;}
.ws80{word-spacing:-9.511557px;}
.wsba{word-spacing:-9.375176px;}
.ws3d{word-spacing:-9.360922px;}
.wsa9{word-spacing:-9.345051px;}
.wsb0{word-spacing:-9.135372px;}
.ws6a{word-spacing:-9.081170px;}
.ws11f{word-spacing:-9.009439px;}
.ws9a{word-spacing:-9.002266px;}
.ws85{word-spacing:-8.937708px;}
.wsa4{word-spacing:-8.908612px;}
.wsc0{word-spacing:-8.650783px;}
.ws17{word-spacing:-8.435589px;}
.ws123{word-spacing:-8.363858px;}
.ws125{word-spacing:-8.337800px;}
.ws108{word-spacing:-8.292127px;}
.wsaa{word-spacing:-8.153869px;}
.ws3e{word-spacing:-8.148664px;}
.wsae{word-spacing:-8.104028px;}
.ws10a{word-spacing:-8.076933px;}
.ws1d{word-spacing:-8.005202px;}
.wsb1{word-spacing:-7.970916px;}
.ws9b{word-spacing:-7.861740px;}
.ws89{word-spacing:-7.790008px;}
.wsa5{word-spacing:-7.773061px;}
.wse7{word-spacing:-7.574815px;}
.wsc3{word-spacing:-7.556609px;}
.wsa1{word-spacing:-7.503084px;}
.ws38{word-spacing:-7.287890px;}
.ws106{word-spacing:-7.144428px;}
.wsfc{word-spacing:-7.137254px;}
.ws86{word-spacing:-7.072696px;}
.ws20{word-spacing:-6.949605px;}
.ws107{word-spacing:-6.857503px;}
.ws102{word-spacing:-6.778598px;}
.ws121{word-spacing:-6.714040px;}
.ws7b{word-spacing:-6.642309px;}
.ws7a{word-spacing:-6.570578px;}
.ws23{word-spacing:-6.498847px;}
.wsb6{word-spacing:-6.462667px;}
.ws8{word-spacing:-6.427116px;}
.ws87{word-spacing:-6.283653px;}
.wsfd{word-spacing:-6.211922px;}
.ws2e{word-spacing:-6.140191px;}
.ws2c{word-spacing:-6.068460px;}
.ws12{word-spacing:-5.996728px;}
.ws103{word-spacing:-5.924997px;}
.ws6b{word-spacing:-5.709804px;}
.ws115{word-spacing:-5.656380px;}
.wsb7{word-spacing:-5.638893px;}
.ws42{word-spacing:-5.566341px;}
.ws24{word-spacing:-5.422879px;}
.ws34{word-spacing:-5.351148px;}
.ws12f{word-spacing:-5.064223px;}
.ws7d{word-spacing:-4.992492px;}
.ws2a{word-spacing:-4.849029px;}
.wsec{word-spacing:-4.777298px;}
.wsf{word-spacing:-4.566772px;}
.ws109{word-spacing:-4.346911px;}
.ws3f{word-spacing:-4.339738px;}
.ws1f{word-spacing:-4.275180px;}
.ws4e{word-spacing:-4.268006px;}
.ws137{word-spacing:-4.052966px;}
.ws31{word-spacing:-3.988255px;}
.ws2b{word-spacing:-3.916524px;}
.ws117{word-spacing:-3.844792px;}
.ws53{word-spacing:-3.837619px;}
.ws40{word-spacing:-3.773061px;}
.ws4f{word-spacing:-3.701330px;}
.wse6{word-spacing:-3.631037px;}
.wse5{word-spacing:-3.629599px;}
.ws5f{word-spacing:-3.586560px;}
.wse0{word-spacing:-3.569568px;}
.ws7c{word-spacing:-3.486136px;}
.ws94{word-spacing:-3.478963px;}
.wsa3{word-spacing:-3.414405px;}
.ws36{word-spacing:-3.382303px;}
.ws37{word-spacing:-3.342674px;}
.ws95{word-spacing:-3.055749px;}
.ws14{word-spacing:-2.905114px;}
.ws32{word-spacing:-2.840556px;}
.wsea{word-spacing:-2.768824px;}
.wsf6{word-spacing:-2.697093px;}
.ws15{word-spacing:-2.553631px;}
.ws104{word-spacing:-2.474726px;}
.ws29{word-spacing:-2.410168px;}
.ws105{word-spacing:-2.194975px;}
.ws4c{word-spacing:-2.123244px;}
.ws4b{word-spacing:-2.051512px;}
.ws50{word-spacing:-1.764588px;}
.wse4{word-spacing:-1.255296px;}
.ws131{word-spacing:-1.097662px;}
.ws56{word-spacing:-1.047276px;}
.ws1c{word-spacing:-0.975544px;}
.ws5c{word-spacing:-0.789904px;}
.ws8b{word-spacing:-0.760351px;}
.wsfe{word-spacing:-0.401695px;}
.wscb{word-spacing:-0.258232px;}
.ws79{word-spacing:-0.114770px;}
.ws110{word-spacing:-0.071731px;}
.ws11{word-spacing:-0.047821px;}
.wsab{word-spacing:-0.033227px;}
.wsb2{word-spacing:-0.032481px;}
.wsa8{word-spacing:-0.031675px;}
.wsb8{word-spacing:-0.022978px;}
.ws3a{word-spacing:-0.002077px;}
.wsa{word-spacing:0.000000px;}
.ws59{word-spacing:0.390117px;}
.wsc2{word-spacing:0.405391px;}
.wsd{word-spacing:0.602542px;}
.ws5{word-spacing:0.746004px;}
.ws4a{word-spacing:2.252360px;}
.ws6d{word-spacing:3.041403px;}
.ws6c{word-spacing:3.478963px;}
.wsc4{word-spacing:3.900150px;}
.ws9{word-spacing:4.404296px;}
.wsc5{word-spacing:6.969391px;}
.ws116{word-spacing:7.847393px;}
.wsd4{word-spacing:8.416426px;}
.ws113{word-spacing:10.429716px;}
.wsd3{word-spacing:18.876542px;}
.ws132{word-spacing:18.965729px;}
.ws68{word-spacing:20.299930px;}
.wsde{word-spacing:20.300844px;}
.ws63{word-spacing:20.306844px;}
.ws119{word-spacing:20.371661px;}
.ws11b{word-spacing:21.591091px;}
.ws11e{word-spacing:22.308403px;}
.ws127{word-spacing:22.738790px;}
.wsdc{word-spacing:22.866542px;}
.ws12e{word-spacing:23.743027px;}
.ws122{word-spacing:24.388608px;}
.ws4{word-spacing:24.639667px;}
.ws112{word-spacing:25.034189px;}
.ws10c{word-spacing:25.177651px;}
.ws12b{word-spacing:25.278075px;}
.ws65{word-spacing:26.352207px;}
.wsd5{word-spacing:26.352542px;}
.ws120{word-spacing:27.544781px;}
.ws124{word-spacing:28.118630px;}
.ws133{word-spacing:29.713949px;}
.ws135{word-spacing:29.759088px;}
.ws114{word-spacing:30.557491px;}
.wsef{word-spacing:30.759991px;}
.ws111{word-spacing:31.848653px;}
.ws136{word-spacing:32.063846px;}
.ws118{word-spacing:32.207309px;}
.ws130{word-spacing:34.789632px;}
.ws12a{word-spacing:36.367718px;}
.wsd7{word-spacing:36.961563px;}
.wsca{word-spacing:42.786542px;}
.wsc6{word-spacing:42.791451px;}
.wsc{word-spacing:58.101975px;}
.ws12c{word-spacing:59.034778px;}
.ws134{word-spacing:63.123456px;}
.wsd8{word-spacing:95.809637px;}
.ws5d{word-spacing:126.017451px;}
._10{margin-left:-37.730611px;}
._d{margin-left:-35.865600px;}
._11{margin-left:-33.928858px;}
._f{margin-left:-12.481229px;}
._3e{margin-left:-10.759650px;}
._1{margin-left:-9.709486px;}
._27{margin-left:-7.818701px;}
._3{margin-left:-6.742733px;}
._22{margin-left:-5.666765px;}
._3f{margin-left:-4.466184px;}
._0{margin-left:-3.202064px;}
._8{margin-left:-1.936742px;}
._33{width:1.050128px;}
._16{width:2.080205px;}
._2{width:3.202064px;}
._68{width:4.231018px;}
._3c{width:6.986195px;}
._6b{width:9.088532px;}
._67{width:10.532947px;}
._3b{width:11.954133px;}
._38{width:17.410630px;}
._25{width:18.506650px;}
._30{width:20.156467px;}
._57{width:21.221582px;}
._9{width:23.384371px;}
._1e{width:24.434500px;}
._37{width:25.849072px;}
._18{width:27.186125px;}
._3d{width:28.530038px;}
._15{width:29.696717px;}
._4{width:31.203072px;}
._35{width:32.852890px;}
._34{width:34.717901px;}
._e{width:35.937331px;}
._2e{width:37.371955px;}
._69{width:38.402032px;}
._28{width:39.452160px;}
._20{width:41.532365px;}
._2b{width:42.992828px;}
._6a{width:44.975462px;}
._1a{width:46.266624px;}
._3a{width:47.679319px;}
._1d{width:48.920678px;}
._2a{width:50.642227px;}
._a{width:51.907549px;}
._2d{width:53.198711px;}
._c{width:55.233024px;}
._21{width:56.283152px;}
._1c{width:57.671885px;}
._23{width:59.536896px;}
._17{width:61.473638px;}
._1f{width:63.625574px;}
._13{width:64.988467px;}
._31{width:69.364070px;}
._7{width:71.802931px;}
._24{width:73.237555px;}
._32{width:75.389491px;}
._5b{width:78.544839px;}
._1b{width:80.338944px;}
._4e{width:90.146407px;}
._4f{width:91.600763px;}
._5e{width:93.785439px;}
._36{width:96.836850px;}
._65{width:99.966860px;}
._12{width:110.537779px;}
._29{width:111.828941px;}
._39{width:116.203950px;}
._40{width:127.833766px;}
._4a{width:133.008930px;}
._43{width:138.395902px;}
._46{width:140.053077px;}
._6c{width:142.567914px;}
._b{width:146.331648px;}
._49{width:151.032491px;}
._58{width:171.938016px;}
._61{width:173.212188px;}
._62{width:175.859037px;}
._55{width:178.039584px;}
._66{width:182.311670px;}
._41{width:189.330570px;}
._52{width:208.542967px;}
._4b{width:211.303392px;}
._56{width:224.713027px;}
._54{width:228.073138px;}
._4c{width:231.729842px;}
._51{width:232.977792px;}
._50{width:261.469100px;}
._44{width:273.929851px;}
._48{width:275.691981px;}
._47{width:282.507392px;}
._45{width:328.847480px;}
._5c{width:338.406358px;}
._5a{width:345.138335px;}
._64{width:346.449140px;}
._4d{width:355.831353px;}
._42{width:374.812912px;}
._53{width:389.055560px;}
._59{width:428.706864px;}
._60{width:441.855361px;}
._63{width:461.341964px;}
._5f{width:489.028305px;}
._5d{width:524.255653px;}
._19{width:681.087744px;}
._2c{width:1217.637120px;}
._26{width:1284.920986px;}
._2f{width:1444.451174px;}
._14{width:1858.601284px;}
._6{width:2231.844557px;}
._5{width:2367.505265px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:22.978277px;}
.fs7{font-size:31.674931px;}
.fsb{font-size:32.481186px;}
.fs9{font-size:33.226709px;}
.fsc{font-size:34.467559px;}
.fs5{font-size:35.865600px;}
.fs6{font-size:47.512595px;}
.fs2{font-size:47.820600px;}
.fsa{font-size:48.721983px;}
.fs8{font-size:49.840272px;}
.fs4{font-size:59.775600px;}
.fsf{font-size:67.087520px;}
.fs1{font-size:71.731200px;}
.fs3{font-size:86.077200px;}
.fse{font-size:100.631700px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y27{bottom:61.467000px;}
.yeb{bottom:106.299000px;}
.y26{bottom:121.461000px;}
.y128{bottom:124.153500px;}
.y142{bottom:126.171000px;}
.yea{bottom:127.968000px;}
.y1b4{bottom:131.986500px;}
.y5c{bottom:140.082000px;}
.y15f{bottom:141.498000px;}
.y17f{bottom:141.636000px;}
.y19a{bottom:142.458000px;}
.ycd{bottom:142.771500px;}
.y25{bottom:143.130000px;}
.ye9{bottom:149.637000px;}
.y127{bottom:160.767000px;}
.y103{bottom:161.464500px;}
.y5b{bottom:161.751000px;}
.y141{bottom:162.783000px;}
.y199{bottom:164.127000px;}
.ycc{bottom:164.440500px;}
.y24{bottom:164.799000px;}
.y1b3{bottom:171.588000px;}
.y15e{bottom:176.695500px;}
.y17e{bottom:177.823500px;}
.y1de{bottom:180.829500px;}
.y126{bottom:182.436000px;}
.ye8{bottom:182.887500px;}
.y102{bottom:183.133500px;}
.y5a{bottom:183.420000px;}
.y1fa{bottom:185.977500px;}
.ycb{bottom:186.109500px;}
.y23{bottom:186.468000px;}
.y198{bottom:199.378500px;}
.y140{bottom:199.396500px;}
.y17d{bottom:199.492500px;}
.y1dd{bottom:202.498500px;}
.y125{bottom:204.105000px;}
.y59{bottom:205.087500px;}
.y1f9{bottom:207.645000px;}
.y22{bottom:208.135500px;}
.y1b2{bottom:208.200000px;}
.y15d{bottom:209.065500px;}
.y78{bottom:210.343500px;}
.y94{bottom:216.495000px;}
.y1cc{bottom:217.927500px;}
.yca{bottom:219.360000px;}
.y101{bottom:219.745500px;}
.y1dc{bottom:224.166000px;}
.y124{bottom:225.772500px;}
.y58{bottom:226.756500px;}
.y1f8{bottom:229.314000px;}
.y21{bottom:229.804500px;}
.yb0{bottom:230.215500px;}
.y77{bottom:232.012500px;}
.y13f{bottom:232.647000px;}
.ye7{bottom:234.441000px;}
.y197{bottom:234.630000px;}
.y17c{bottom:235.680000px;}
.y93{bottom:238.164000px;}
.y1cb{bottom:239.596500px;}
.y15c{bottom:242.316000px;}
.y1db{bottom:245.835000px;}
.y10e{bottom:246.271500px;}
.y1b1{bottom:247.801500px;}
.y57{bottom:248.425500px;}
.y217{bottom:249.322500px;}
.y20{bottom:251.473500px;}
.ye6{bottom:256.110000px;}
.y100{bottom:256.359000px;}
.y1ca{bottom:261.265500px;}
.y123{bottom:265.200000px;}
.y1f7{bottom:265.654500px;}
.y13e{bottom:265.897500px;}
.yaf{bottom:266.827500px;}
.y1da{bottom:267.504000px;}
.y76{bottom:268.624500px;}
.y56{bottom:270.094500px;}
.y196{bottom:270.790500px;}
.y17b{bottom:271.017000px;}
.yc9{bottom:271.351500px;}
.y92{bottom:274.777500px;}
.y10d{bottom:282.883500px;}
.ye5{bottom:284.401500px;}
.y216{bottom:285.934500px;}
.y1f6{bottom:287.323500px;}
.y1b0{bottom:287.403000px;}
.y1d9{bottom:289.173000px;}
.y75{bottom:290.293500px;}
.y1f{bottom:290.701500px;}
.y55{bottom:291.763500px;}
.yff{bottom:292.971000px;}
.yc8{bottom:293.020500px;}
.y15b{bottom:293.577000px;}
.y91{bottom:296.445000px;}
.y1c9{bottom:297.877500px;}
.y17a{bottom:298.423500px;}
.yae{bottom:303.441000px;}
.ye4{bottom:306.070500px;}
.y195{bottom:306.949500px;}
.y215{bottom:307.603500px;}
.y179{bottom:310.725000px;}
.y1d8{bottom:310.842000px;}
.y1e{bottom:312.370500px;}
.y54{bottom:313.431000px;}
.yfe{bottom:314.640000px;}
.yc7{bottom:314.689500px;}
.y13d{bottom:317.889000px;}
.y10c{bottom:319.497000px;}
.y1c8{bottom:319.546500px;}
.y1f5{bottom:323.664000px;}
.y122{bottom:325.101000px;}
.y74{bottom:326.907000px;}
.ye3{bottom:327.739500px;}
.y1af{bottom:328.498500px;}
.y194{bottom:328.617000px;}
.y15a{bottom:328.776000px;}
.y214{bottom:329.272500px;}
.y1d7{bottom:332.511000px;}
.y90{bottom:333.058500px;}
.y1d{bottom:334.038000px;}
.y53{bottom:335.100000px;}
.yc6{bottom:336.358500px;}
.yad{bottom:340.053000px;}
.y1c7{bottom:341.215500px;}
.y1f4{bottom:345.333000px;}
.y121{bottom:346.770000px;}
.y73{bottom:348.574500px;}
.yfd{bottom:351.252000px;}
.y1d6{bottom:354.178500px;}
.y13c{bottom:354.502500px;}
.y8f{bottom:354.727500px;}
.y1c{bottom:355.707000px;}
.y10b{bottom:356.109000px;}
.y52{bottom:356.769000px;}
.y178{bottom:359.469000px;}
.y1ae{bottom:361.749000px;}
.y159{bottom:362.025000px;}
.y1c6{bottom:362.884500px;}
.ye2{bottom:363.504000px;}
.y193{bottom:363.870000px;}
.y213{bottom:365.884500px;}
.y1f3{bottom:367.002000px;}
.yc5{bottom:375.786000px;}
.y8e{bottom:376.395000px;}
.yac{bottom:376.666500px;}
.y1b{bottom:377.376000px;}
.y177{bottom:381.138000px;}
.y120{bottom:383.382000px;}
.y1c5{bottom:384.552000px;}
.y72{bottom:385.188000px;}
.y1d5{bottom:387.429000px;}
.y212{bottom:387.553500px;}
.y13b{bottom:387.753000px;}
.yfc{bottom:387.865500px;}
.y51{bottom:390.019500px;}
.y10a{bottom:392.722500px;}
.y1a{bottom:399.045000px;}
.y192{bottom:399.121500px;}
.ye1{bottom:401.205000px;}
.y176{bottom:402.807000px;}
.y1f2{bottom:403.341000px;}
.y11f{bottom:405.051000px;}
.yc4{bottom:408.661500px;}
.y211{bottom:409.222500px;}
.y8d{bottom:413.008500px;}
.yab{bottom:413.278500px;}
.y1ad{bottom:413.742000px;}
.y19{bottom:420.714000px;}
.y1c4{bottom:421.165500px;}
.y71{bottom:421.800000px;}
.ye0{bottom:422.874000px;}
.yfb{bottom:424.477500px;}
.y1f1{bottom:425.010000px;}
.y158{bottom:429.163500px;}
.y109{bottom:429.334500px;}
.y50{bottom:434.677500px;}
.y191{bottom:435.280500px;}
.y175{bottom:436.057500px;}
.y1d4{bottom:439.422000px;}
.y11e{bottom:441.663000px;}
.y18{bottom:442.383000px;}
.yaa{bottom:442.471500px;}
.y1c3{bottom:442.834500px;}
.y70{bottom:443.469000px;}
.ydf{bottom:444.543000px;}
.y210{bottom:445.836000px;}
.yfa{bottom:446.146500px;}
.y1f0{bottom:446.679000px;}
.y1ac{bottom:450.354000px;}
.ya8{bottom:454.773000px;}
.y13a{bottom:458.449500px;}
.y1d3{bottom:461.091000px;}
.y11d{bottom:463.332000px;}
.y17{bottom:464.050500px;}
.y157{bottom:464.097282px;}
.y1c2{bottom:464.503500px;}
.y108{bottom:465.948000px;}
.y20f{bottom:467.503500px;}
.yc3{bottom:468.562500px;}
.y8c{bottom:471.289500px;}
.y190{bottom:471.439500px;}
.ya9{bottom:476.592000px;}
.yde{bottom:477.793500px;}
.y156{bottom:479.221017px;}
.y6f{bottom:480.082500px;}
.yf9{bottom:482.760000px;}
.y1ef{bottom:483.019500px;}
.y16{bottom:485.719500px;}
.y1c1{bottom:486.171000px;}
.y1ab{bottom:486.967500px;}
.y174{bottom:487.830000px;}
.y20e{bottom:489.172500px;}
.yc2{bottom:490.231500px;}
.y8b{bottom:492.958500px;}
.y139{bottom:493.263366px;}
.y155{bottom:494.344752px;}
.y4f{bottom:494.577000px;}
.y11c{bottom:499.945500px;}
.y6e{bottom:501.750000px;}
.y107{bottom:502.560000px;}
.y1ee{bottom:504.688500px;}
.ya7{bottom:504.835500px;}
.y18f{bottom:506.691000px;}
.y15{bottom:507.388500px;}
.y138{bottom:508.012690px;}
.y154{bottom:509.469506px;}
.y173{bottom:509.499000px;}
.yc1{bottom:511.900500px;}
.y8a{bottom:514.627500px;}
.y4e{bottom:516.246000px;}
.yf8{bottom:519.372000px;}
.y1c0{bottom:519.421500px;}
.y137{bottom:522.761021px;}
.ydd{bottom:524.116500px;}
.y20d{bottom:525.786000px;}
.ya6{bottom:526.504500px;}
.y14{bottom:529.057500px;}
.y1aa{bottom:532.572000px;}
.y89{bottom:536.296500px;}
.y136{bottom:537.509351px;}
.y4d{bottom:537.915000px;}
.y6d{bottom:538.363500px;}
.y106{bottom:539.173500px;}
.y18e{bottom:539.941500px;}
.y1ed{bottom:541.029000px;}
.yf7{bottom:541.041000px;}
.y172{bottom:544.836000px;}
.ydc{bottom:545.785500px;}
.y20c{bottom:547.453500px;}
.ya5{bottom:548.173500px;}
.yc0{bottom:548.512500px;}
.y13{bottom:550.726500px;}
.y153{bottom:553.339500px;}
.y88{bottom:557.965500px;}
.y4c{bottom:559.584000px;}
.y6c{bottom:560.032500px;}
.y1ec{bottom:562.698000px;}
.y11b{bottom:562.710000px;}
.y171{bottom:566.505000px;}
.y20b{bottom:569.122500px;}
.ybf{bottom:570.181500px;}
.y1bf{bottom:571.414500px;}
.y12{bottom:572.394000px;}
.y105{bottom:572.422500px;}
.y1a9{bottom:572.640888px;}
.ydb{bottom:574.078500px;}
.yf6{bottom:577.653000px;}
.y87{bottom:579.633000px;}
.y4b{bottom:581.253000px;}
.ya4{bottom:581.424000px;}
.y135{bottom:583.942500px;}
.y1eb{bottom:584.365500px;}
.y18d{bottom:591.699000px;}
.y6b{bottom:596.644500px;}
.y11a{bottom:599.322000px;}
.y152{bottom:599.370000px;}
.y170{bottom:602.692500px;}
.y4a{bottom:602.920500px;}
.y1a8{bottom:603.879964px;}
.y104{bottom:605.673000px;}
.y20a{bottom:605.736000px;}
.ybe{bottom:606.793500px;}
.y1be{bottom:608.026500px;}
.yda{bottom:609.841500px;}
.yf5{bottom:610.903500px;}
.y11{bottom:611.622000px;}
.y86{bottom:612.883500px;}
.y18c{bottom:613.368000px;}
.y6a{bottom:618.313500px;}
.y1ea{bottom:620.706000px;}
.y119{bottom:620.991000px;}
.y49{bottom:624.589500px;}
.y209{bottom:627.405000px;}
.ybd{bottom:628.462500px;}
.y134{bottom:630.705000px;}
.y10{bottom:633.291000px;}
.ya3{bottom:633.415500px;}
.y151{bottom:634.569000px;}
.y1a7{bottom:635.116935px;}
.y16f{bottom:638.880000px;}
.y1d2{bottom:640.417500px;}
.y1e9{bottom:642.375000px;}
.y1bd{bottom:644.640000px;}
.y48{bottom:646.258500px;}
.yd9{bottom:647.544000px;}
.y18b{bottom:649.527000px;}
.y69{bottom:654.925500px;}
.yf{bottom:654.960000px;}
.y85{bottom:657.541500px;}
.y118{bottom:657.603000px;}
.yf4{bottom:657.666000px;}
.y39{bottom:660.282000px;}
.y1d1{bottom:662.086500px;}
.y208{bottom:664.017000px;}
.y1e8{bottom:664.044000px;}
.ybc{bottom:665.076000px;}
.y1a6{bottom:666.353906px;}
.y133{bottom:667.317000px;}
.yd8{bottom:669.213000px;}
.y150{bottom:669.766500px;}
.ya2{bottom:670.029000px;}
.y16e{bottom:675.067500px;}
.y68{bottom:676.594500px;}
.ye{bottom:676.629000px;}
.y117{bottom:679.272000px;}
.y1bc{bottom:681.252000px;}
.y38{bottom:681.951000px;}
.y47{bottom:682.872000px;}
.y18a{bottom:684.778500px;}
.y207{bottom:685.686000px;}
.ybb{bottom:686.745000px;}
.y132{bottom:688.986000px;}
.yd7{bottom:690.880500px;}
.yf3{bottom:694.278000px;}
.y1d0{bottom:695.337000px;}
.y1a5{bottom:697.592982px;}
.yd{bottom:698.298000px;}
.y14f{bottom:703.017000px;}
.y1e7{bottom:703.471500px;}
.y37{bottom:703.618500px;}
.y46{bottom:704.539500px;}
.y189{bottom:706.447500px;}
.ya1{bottom:706.641000px;}
.y206{bottom:707.355000px;}
.y67{bottom:709.845000px;}
.y16d{bottom:710.404500px;}
.y84{bottom:717.442500px;}
.y1bb{bottom:717.865500px;}
.yc{bottom:719.965500px;}
.y116{bottom:720.369000px;}
.yd6{bottom:724.131000px;}
.y36{bottom:725.287500px;}
.y131{bottom:725.598000px;}
.yba{bottom:727.840500px;}
.y188{bottom:728.116500px;}
.ya0{bottom:728.310000px;}
.yf2{bottom:730.891500px;}
.y14e{bottom:736.267500px;}
.y83{bottom:739.110000px;}
.y1ba{bottom:739.534500px;}
.y45{bottom:741.153000px;}
.y115{bottom:742.036500px;}
.y205{bottom:743.967000px;}
.y1a4{bottom:744.118500px;}
.y35{bottom:746.956500px;}
.y1cf{bottom:747.330000px;}
.yb9{bottom:749.509500px;}
.y16c{bottom:749.799000px;}
.yb{bottom:759.193500px;}
.y82{bottom:760.779000px;}
.y1b9{bottom:761.202000px;}
.y66{bottom:761.838000px;}
.y130{bottom:762.211500px;}
.y44{bottom:762.822000px;}
.y14d{bottom:763.167000px;}
.y1e6{bottom:763.230000px;}
.y187{bottom:763.368000px;}
.y9f{bottom:764.922000px;}
.y204{bottom:765.636000px;}
.yf1{bottom:767.503500px;}
.y34{bottom:768.625500px;}
.y1ce{bottom:768.999000px;}
.yd5{bottom:770.455500px;}
.y114{bottom:775.287000px;}
.y1a3{bottom:780.730500px;}
.ya{bottom:780.862500px;}
.yb8{bottom:782.760000px;}
.y65{bottom:783.507000px;}
.y1e5{bottom:784.899000px;}
.y16b{bottom:785.986500px;}
.y203{bottom:787.305000px;}
.y1cd{bottom:790.668000px;}
.yd4{bottom:792.124500px;}
.y12f{bottom:795.462000px;}
.y81{bottom:797.392500px;}
.y43{bottom:799.434000px;}
.y1b8{bottom:800.629500px;}
.y186{bottom:801.381000px;}
.y9e{bottom:801.535500px;}
.y9{bottom:802.531500px;}
.yf0{bottom:804.117000px;}
.y64{bottom:805.176000px;}
.y1e4{bottom:806.568000px;}
.y33{bottom:807.853500px;}
.y14c{bottom:814.428000px;}
.y1a2{bottom:817.342500px;}
.yd3{bottom:820.416000px;}
.y42{bottom:821.103000px;}
.y16a{bottom:822.174000px;}
.y202{bottom:823.917000px;}
.y8{bottom:824.200500px;}
.y63{bottom:826.843500px;}
.y113{bottom:827.280000px;}
.y1e3{bottom:828.237000px;}
.y12e{bottom:828.712500px;}
.y32{bottom:829.521000px;}
.y80{bottom:834.004500px;}
.yb7{bottom:834.751500px;}
.y14b{bottom:836.097000px;}
.y9c{bottom:838.380000px;}
.y9b{bottom:838.948500px;}
.y185{bottom:839.395500px;}
.yef{bottom:840.729000px;}
.yd2{bottom:842.085000px;}
.y201{bottom:845.586000px;}
.y7{bottom:845.868000px;}
.y62{bottom:848.512500px;}
.y112{bottom:848.949000px;}
.y31{bottom:851.190000px;}
.y9a{bottom:851.248500px;}
.yb6{bottom:851.988000px;}
.y1a1{bottom:853.956000px;}
.y7f{bottom:855.673500px;}
.yb5{bottom:856.420500px;}
.y41{bottom:857.715000px;}
.y1b7{bottom:860.530500px;}
.y169{bottom:861.568500px;}
.y1e2{bottom:864.033000px;}
.y200{bottom:867.255000px;}
.y61{bottom:870.181500px;}
.yd1{bottom:870.376500px;}
.y111{bottom:870.618000px;}
.y14a{bottom:871.296000px;}
.y30{bottom:872.859000px;}
.y9d{bottom:873.067500px;}
.y184{bottom:875.554500px;}
.yee{bottom:877.342500px;}
.y40{bottom:879.384000px;}
.y12d{bottom:880.704000px;}
.y168{bottom:883.237500px;}
.y6{bottom:885.096000px;}
.y1a0{bottom:890.568000px;}
.y60{bottom:891.850500px;}
.yd0{bottom:892.045500px;}
.y7e{bottom:892.285500px;}
.yb4{bottom:893.034000px;}
.y2f{bottom:894.528000px;}
.y1b6{bottom:897.142500px;}
.yed{bottom:899.011500px;}
.y1e1{bottom:900.373500px;}
.y99{bottom:902.473500px;}
.y1ff{bottom:903.867000px;}
.y149{bottom:904.545000px;}
.y167{bottom:904.906500px;}
.y110{bottom:907.230000px;}
.y5f{bottom:913.519500px;}
.y183{bottom:913.567500px;}
.y7d{bottom:913.954500px;}
.y3f{bottom:915.997500px;}
.y12c{bottom:917.317500px;}
.y19f{bottom:922.348500px;}
.y5{bottom:924.523500px;}
.y1fe{bottom:925.536000px;}
.y98{bottom:927.130500px;}
.ycf{bottom:927.810000px;}
.y10f{bottom:928.899000px;}
.yb3{bottom:929.646000px;}
.y2e{bottom:933.756000px;}
.y19e{bottom:934.650000px;}
.y5e{bottom:935.187000px;}
.yec{bottom:935.623500px;}
.y1e0{bottom:936.712500px;}
.y3e{bottom:937.666500px;}
.y148{bottom:937.795500px;}
.y166{bottom:944.334000px;}
.y1fd{bottom:947.205000px;}
.y7c{bottom:950.568000px;}
.y97{bottom:951.564000px;}
.y182{bottom:951.582000px;}
.y12b{bottom:953.929500px;}
.y2d{bottom:955.425000px;}
.y3d{bottom:959.334000px;}
.yb2{bottom:964.813500px;}
.yce{bottom:965.511000px;}
.y5d{bottom:968.437500px;}
.yb1{bottom:969.247500px;}
.y7b{bottom:972.237000px;}
.y1df{bottom:973.053000px;}
.y2c{bottom:977.092500px;}
.y3c{bottom:981.003000px;}
.y19d{bottom:981.949500px;}
.y1fc{bottom:983.818500px;}
.y4{bottom:984.424500px;}
.y96{bottom:987.180000px;}
.y181{bottom:987.741000px;}
.y147{bottom:989.289000px;}
.y12a{bottom:990.543000px;}
.y7a{bottom:993.904500px;}
.y165{bottom:997.804500px;}
.y2b{bottom:998.761500px;}
.y3b{bottom:1002.672000px;}
.y19c{bottom:1003.618500px;}
.y1fb{bottom:1005.486000px;}
.y3{bottom:1006.092000px;}
.y95{bottom:1008.849000px;}
.y2a{bottom:1020.430500px;}
.y1b5{bottom:1024.167000px;}
.y146{bottom:1024.332930px;}
.y3a{bottom:1024.341000px;}
.y180{bottom:1025.754000px;}
.y129{bottom:1027.155000px;}
.y79{bottom:1030.518000px;}
.y164{bottom:1031.328284px;}
.y2{bottom:1036.728000px;}
.y19b{bottom:1036.869000px;}
.y145{bottom:1039.803792px;}
.y163{bottom:1042.027320px;}
.y29{bottom:1042.099500px;}
.y162{bottom:1052.726356px;}
.y144{bottom:1055.274654px;}
.y1{bottom:1062.333000px;}
.y161{bottom:1063.426112px;}
.y28{bottom:1063.768500px;}
.y143{bottom:1070.746558px;}
.y160{bottom:1074.125148px;}
.hb{height:20.143315px;}
.h18{height:25.850669px;}
.h19{height:28.297866px;}
.h12{height:35.634446px;}
.h9{height:35.865450px;}
.h16{height:36.541487px;}
.h14{height:37.380204px;}
.h13{height:39.007840px;}
.h17{height:40.000748px;}
.h15{height:40.918864px;}
.h1f{height:49.781453px;}
.h5{height:51.000883px;}
.h2{height:53.798400px;}
.h3{height:58.891315px;}
.h10{height:61.893450px;}
.h4{height:64.557900px;}
.h1c{height:65.481450px;}
.he{height:71.733024px;}
.h11{height:76.621315px;}
.h1{height:77.469300px;}
.h1e{height:82.618626px;}
.hf{height:89.469024px;}
.h1b{height:100.206883px;}
.h1d{height:104.119680px;}
.h1a{height:107.419315px;}
.hd{height:107.595024px;}
.h7{height:107.601024px;}
.h6{height:108.097315px;}
.h8{height:150.489450px;}
.hc{height:156.801024px;}
.ha{height:173.733450px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x5{left:106.299000px;}
.x1{left:107.848500px;}
.x2a{left:110.894598px;}
.x1e{left:112.633907px;}
.x20{left:114.333879px;}
.x2c{left:117.705106px;}
.x22{left:120.264882px;}
.x1f{left:121.714999px;}
.x29{left:125.282509px;}
.x9{left:127.759500px;}
.x6{left:132.637500px;}
.x2b{left:138.729821px;}
.x27{left:140.905089px;}
.x26{left:143.191377px;}
.xa{left:150.196500px;}
.x25{left:153.100664px;}
.x24{left:161.442000px;}
.x1c{left:167.943000px;}
.x1a{left:169.959000px;}
.x2{left:173.701500px;}
.xd{left:178.003500px;}
.x1b{left:188.826000px;}
.x19{left:217.459500px;}
.x7{left:229.212000px;}
.x2d{left:230.538000px;}
.x23{left:251.002500px;}
.xe{left:262.422000px;}
.x21{left:280.945500px;}
.xf{left:285.135000px;}
.x34{left:296.053940px;}
.x10{left:300.100500px;}
.x28{left:308.931000px;}
.x36{left:313.625262px;}
.x17{left:317.848500px;}
.x35{left:331.663751px;}
.x32{left:332.899500px;}
.x2e{left:344.865000px;}
.xb{left:353.785500px;}
.xc{left:355.143000px;}
.x4{left:369.499500px;}
.x37{left:375.534000px;}
.x39{left:385.059000px;}
.x3{left:392.530500px;}
.x38{left:396.418500px;}
.x31{left:403.821000px;}
.x30{left:412.686000px;}
.x11{left:413.770500px;}
.x1d{left:450.220500px;}
.x8{left:454.609500px;}
.x2f{left:487.653000px;}
.x33{left:489.576000px;}
.x12{left:501.412500px;}
.x15{left:532.401000px;}
.x18{left:559.480500px;}
.x16{left:595.914000px;}
.x13{left:610.342500px;}
.x14{left:661.096500px;}
@media print{
.v10{vertical-align:-44.005333pt;}
.vd{vertical-align:-34.442667pt;}
.vc{vertical-align:-14.704000pt;}
.v16{vertical-align:-13.422947pt;}
.v1{vertical-align:-9.562667pt;}
.v14{vertical-align:-6.334024pt;}
.v15{vertical-align:-4.594957pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:15.002667pt;}
.vf{vertical-align:15.941333pt;}
.v13{vertical-align:23.136000pt;}
.v6{vertical-align:26.325333pt;}
.va{vertical-align:33.573333pt;}
.v2{vertical-align:43.738667pt;}
.v11{vertical-align:61.637333pt;}
.v9{vertical-align:66.272000pt;}
.v8{vertical-align:67.194667pt;}
.v12{vertical-align:77.402667pt;}
.v3{vertical-align:93.520000pt;}
.v5{vertical-align:101.888000pt;}
.v4{vertical-align:118.714667pt;}
.ve{vertical-align:121.312000pt;}
.vb{vertical-align:137.253333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2b{letter-spacing:0.000125pt;}
.ls7f{letter-spacing:0.000391pt;}
.ls4e{letter-spacing:0.000686pt;}
.ls53{letter-spacing:0.000720pt;}
.ls18{letter-spacing:0.000990pt;}
.ls45{letter-spacing:0.001012pt;}
.ls2e{letter-spacing:0.001036pt;}
.ls5a{letter-spacing:0.001178pt;}
.ls77{letter-spacing:0.001389pt;}
.ls59{letter-spacing:0.001483pt;}
.ls4d{letter-spacing:0.001624pt;}
.ls57{letter-spacing:0.001666pt;}
.ls50{letter-spacing:0.001704pt;}
.ls55{letter-spacing:0.002096pt;}
.ls4f{letter-spacing:0.002144pt;}
.ls48{letter-spacing:0.002265pt;}
.ls54{letter-spacing:0.002376pt;}
.lsa{letter-spacing:0.002452pt;}
.ls25{letter-spacing:0.002827pt;}
.ls70{letter-spacing:0.002970pt;}
.ls6{letter-spacing:0.003086pt;}
.ls17{letter-spacing:0.003328pt;}
.ls5{letter-spacing:0.003420pt;}
.ls82{letter-spacing:0.003895pt;}
.ls1d{letter-spacing:0.004025pt;}
.ls10{letter-spacing:0.005137pt;}
.ls74{letter-spacing:0.005459pt;}
.ls16{letter-spacing:0.363657pt;}
.ls11{letter-spacing:0.368990pt;}
.ls60{letter-spacing:1.730253pt;}
.ls64{letter-spacing:1.735586pt;}
.ls15{letter-spacing:1.774713pt;}
.ls5b{letter-spacing:1.785136pt;}
.ls6c{letter-spacing:2.287633pt;}
.ls47{letter-spacing:2.457229pt;}
.ls4c{letter-spacing:2.460761pt;}
.ls6a{letter-spacing:2.653258pt;}
.ls20{letter-spacing:2.656092pt;}
.ls19{letter-spacing:2.658591pt;}
.ls1e{letter-spacing:2.661289pt;}
.ls9{letter-spacing:3.709752pt;}
.ls3{letter-spacing:3.715086pt;}
.ls3d{letter-spacing:3.737979pt;}
.ls38{letter-spacing:3.743312pt;}
.ls1f{letter-spacing:6.371251pt;}
.ls23{letter-spacing:6.376161pt;}
.ls3a{letter-spacing:6.807576pt;}
.ls83{letter-spacing:7.522717pt;}
.ls1a{letter-spacing:7.880584pt;}
.ls5d{letter-spacing:8.508859pt;}
.ls5c{letter-spacing:8.509409pt;}
.ls65{letter-spacing:8.672391pt;}
.ls62{letter-spacing:8.677724pt;}
.ls14{letter-spacing:10.621119pt;}
.ls26{letter-spacing:10.621918pt;}
.lsf{letter-spacing:10.625309pt;}
.ls35{letter-spacing:10.626452pt;}
.ls2f{letter-spacing:10.627251pt;}
.ls36{letter-spacing:10.627521pt;}
.ls4a{letter-spacing:11.729232pt;}
.ls49{letter-spacing:11.729989pt;}
.ls22{letter-spacing:14.166642pt;}
.ls21{letter-spacing:14.167786pt;}
.ls3c{letter-spacing:15.766642pt;}
.ls6b{letter-spacing:15.846356pt;}
.ls30{letter-spacing:17.005494pt;}
.ls85{letter-spacing:17.325119pt;}
.lse{letter-spacing:17.706238pt;}
.ls7e{letter-spacing:17.707976pt;}
.ls41{letter-spacing:17.709119pt;}
.ls63{letter-spacing:17.711176pt;}
.ls42{letter-spacing:17.713309pt;}
.ls80{letter-spacing:17.880419pt;}
.ls37{letter-spacing:17.908646pt;}
.ls6d{letter-spacing:18.498591pt;}
.ls66{letter-spacing:19.442253pt;}
.ls3b{letter-spacing:19.508646pt;}
.ls87{letter-spacing:19.600990pt;}
.ls7a{letter-spacing:19.874383pt;}
.ls79{letter-spacing:19.878039pt;}
.ls61{letter-spacing:20.804905pt;}
.lsd{letter-spacing:20.807786pt;}
.ls81{letter-spacing:20.810238pt;}
.ls29{letter-spacing:20.811657pt;}
.ls5f{letter-spacing:20.813119pt;}
.ls40{letter-spacing:21.714452pt;}
.ls69{letter-spacing:22.361842pt;}
.ls71{letter-spacing:22.429119pt;}
.ls72{letter-spacing:22.430979pt;}
.ls39{letter-spacing:23.095695pt;}
.ls33{letter-spacing:23.098300pt;}
.ls3e{letter-spacing:23.159786pt;}
.ls2a{letter-spacing:23.200159pt;}
.ls27{letter-spacing:23.463925pt;}
.ls32{letter-spacing:23.469258pt;}
.ls1c{letter-spacing:23.614824pt;}
.ls68{letter-spacing:24.098253pt;}
.ls1b{letter-spacing:24.126128pt;}
.ls44{letter-spacing:24.583786pt;}
.ls76{letter-spacing:24.840082pt;}
.ls34{letter-spacing:25.625392pt;}
.ls4{letter-spacing:26.445119pt;}
.ls84{letter-spacing:27.991786pt;}
.ls7{letter-spacing:28.231786pt;}
.ls43{letter-spacing:28.530452pt;}
.ls8{letter-spacing:29.367786pt;}
.lsc{letter-spacing:29.782642pt;}
.lsb{letter-spacing:29.783786pt;}
.ls2{letter-spacing:31.215572pt;}
.ls3f{letter-spacing:31.217067pt;}
.ls86{letter-spacing:31.771657pt;}
.ls2d{letter-spacing:31.876905pt;}
.ls12{letter-spacing:31.878323pt;}
.ls13{letter-spacing:31.878642pt;}
.ls0{letter-spacing:31.880533pt;}
.ls2c{letter-spacing:34.535925pt;}
.ls6f{letter-spacing:35.419976pt;}
.ls6e{letter-spacing:35.422979pt;}
.ls28{letter-spacing:37.443461pt;}
.ls73{letter-spacing:52.426238pt;}
.ls5e{letter-spacing:63.800093pt;}
.ls52{letter-spacing:93.270635pt;}
.ls67{letter-spacing:135.549119pt;}
.ls24{letter-spacing:143.733492pt;}
.ls51{letter-spacing:155.815552pt;}
.ls58{letter-spacing:158.366331pt;}
.ls7c{letter-spacing:160.983591pt;}
.ls31{letter-spacing:188.996966pt;}
.ls46{letter-spacing:215.389264pt;}
.ls78{letter-spacing:219.044946pt;}
.ls56{letter-spacing:220.517761pt;}
.ls4b{letter-spacing:225.857430pt;}
.ls7b{letter-spacing:236.388531pt;}
.ls75{letter-spacing:286.820966pt;}
.ls7d{letter-spacing:299.934289pt;}
.wsda{word-spacing:-56.944125pt;}
.ws3{word-spacing:-51.646200pt;}
.wsb{word-spacing:-47.795296pt;}
.ws5a{word-spacing:-45.163900pt;}
.ws5e{word-spacing:-42.066082pt;}
.ws10{word-spacing:-40.590295pt;}
.ws88{word-spacing:-35.865600pt;}
.ws6{word-spacing:-32.620162pt;}
.ws8a{word-spacing:-31.217418pt;}
.ws58{word-spacing:-30.005958pt;}
.ws67{word-spacing:-29.942197pt;}
.ws5b{word-spacing:-29.521250pt;}
.wsc7{word-spacing:-28.309914pt;}
.wsac{word-spacing:-28.202949pt;}
.ws69{word-spacing:-27.646799pt;}
.wsb4{word-spacing:-27.570146pt;}
.wsa7{word-spacing:-26.885794pt;}
.ws64{word-spacing:-25.160117pt;}
.wsd6{word-spacing:-24.330509pt;}
.wsaf{word-spacing:-23.910333pt;}
.wsdf{word-spacing:-21.997476pt;}
.wse1{word-spacing:-21.962768pt;}
.ws46{word-spacing:-21.950717pt;}
.wsb5{word-spacing:-21.767967pt;}
.ws74{word-spacing:-21.163465pt;}
.ws54{word-spacing:-19.925333pt;}
.ws71{word-spacing:-19.606528pt;}
.wsb9{word-spacing:-19.504043pt;}
.ws9d{word-spacing:-19.479006pt;}
.wsf4{word-spacing:-18.267546pt;}
.ws44{word-spacing:-18.201136pt;}
.ws60{word-spacing:-18.095340pt;}
.ws9f{word-spacing:-17.884979pt;}
.wsf1{word-spacing:-17.629935pt;}
.wsfa{word-spacing:-17.502413pt;}
.ws47{word-spacing:-17.440696pt;}
.ws55{word-spacing:-17.381267pt;}
.ws35{word-spacing:-17.343010pt;}
.ws43{word-spacing:-17.317506pt;}
.ws0{word-spacing:-17.215400pt;}
.ws72{word-spacing:-17.062461pt;}
.ws9e{word-spacing:-16.934939pt;}
.ws8e{word-spacing:-16.743656pt;}
.ws77{word-spacing:-16.616134pt;}
.ws1a{word-spacing:-16.609758pt;}
.ws76{word-spacing:-16.361090pt;}
.wsf3{word-spacing:-16.233568pt;}
.ws3b{word-spacing:-16.227191pt;}
.ws75{word-spacing:-16.169807pt;}
.ws13{word-spacing:-15.978523pt;}
.wsf7{word-spacing:-15.972147pt;}
.wsf5{word-spacing:-15.914762pt;}
.wse3{word-spacing:-15.723479pt;}
.ws30{word-spacing:-15.595957pt;}
.wse{word-spacing:-15.532196pt;}
.wsc8{word-spacing:-15.404674pt;}
.wsc9{word-spacing:-15.340913pt;}
.wsfb{word-spacing:-15.213391pt;}
.ws73{word-spacing:-15.149629pt;}
.ws4d{word-spacing:-15.085868pt;}
.wsbd{word-spacing:-15.084407pt;}
.ws2d{word-spacing:-15.022107pt;}
.ws97{word-spacing:-15.015731pt;}
.ws10e{word-spacing:-14.958346pt;}
.ws8c{word-spacing:-14.894585pt;}
.wse8{word-spacing:-14.760687pt;}
.ws6e{word-spacing:-14.696926pt;}
.ws66{word-spacing:-14.639541pt;}
.wsd9{word-spacing:-14.634086pt;}
.ws6f{word-spacing:-14.569404pt;}
.wsdb{word-spacing:-14.544635pt;}
.ws1b{word-spacing:-14.512019pt;}
.ws7f{word-spacing:-14.448258pt;}
.wsbe{word-spacing:-14.387284pt;}
.ws2f{word-spacing:-14.384497pt;}
.ws22{word-spacing:-14.346200pt;}
.ws11d{word-spacing:-14.320736pt;}
.ws3c{word-spacing:-14.129452pt;}
.ws129{word-spacing:-14.065691pt;}
.ws18{word-spacing:-13.995554pt;}
.wsf8{word-spacing:-13.938169pt;}
.wsf9{word-spacing:-13.874408pt;}
.ws11a{word-spacing:-13.746886pt;}
.ws11c{word-spacing:-13.727287pt;}
.ws98{word-spacing:-13.698702pt;}
.ws99{word-spacing:-13.683125pt;}
.wsff{word-spacing:-13.612988pt;}
.ws45{word-spacing:-13.555603pt;}
.wsd0{word-spacing:-13.300559pt;}
.wsc1{word-spacing:-13.173036pt;}
.ws81{word-spacing:-13.109275pt;}
.wse2{word-spacing:-13.045514pt;}
.ws25{word-spacing:-12.981753pt;}
.ws8d{word-spacing:-12.917992pt;}
.wse9{word-spacing:-12.854231pt;}
.ws48{word-spacing:-12.790470pt;}
.ws70{word-spacing:-12.662948pt;}
.ws128{word-spacing:-12.617344pt;}
.ws93{word-spacing:-12.407904pt;}
.ws96{word-spacing:-12.344143pt;}
.ws19{word-spacing:-12.216620pt;}
.ws9c{word-spacing:-12.152859pt;}
.wsad{word-spacing:-12.050270pt;}
.ws61{word-spacing:-12.025337pt;}
.ws51{word-spacing:-12.018961pt;}
.ws7e{word-spacing:-11.961576pt;}
.ws1{word-spacing:-11.955200pt;}
.ws100{word-spacing:-11.834054pt;}
.wsbf{word-spacing:-11.827678pt;}
.wsb3{word-spacing:-11.779893pt;}
.ws84{word-spacing:-11.706532pt;}
.ws57{word-spacing:-11.673839pt;}
.ws12d{word-spacing:-11.642771pt;}
.ws33{word-spacing:-11.579010pt;}
.wsa2{word-spacing:-11.515249pt;}
.wsa6{word-spacing:-11.487490pt;}
.wsd1{word-spacing:-11.451488pt;}
.ws101{word-spacing:-11.260204pt;}
.wsee{word-spacing:-11.190067pt;}
.wsf0{word-spacing:-11.126306pt;}
.ws62{word-spacing:-11.005160pt;}
.wsa0{word-spacing:-10.941399pt;}
.ws52{word-spacing:-10.813877pt;}
.ws82{word-spacing:-10.750116pt;}
.wsf2{word-spacing:-10.679979pt;}
.ws78{word-spacing:-10.495072pt;}
.wsd2{word-spacing:-10.444034pt;}
.wscf{word-spacing:-10.436803pt;}
.wsbc{word-spacing:-10.435074pt;}
.ws2{word-spacing:-10.431311pt;}
.wsdd{word-spacing:-10.415778pt;}
.ws83{word-spacing:-10.413843pt;}
.wscc{word-spacing:-10.404471pt;}
.ws7{word-spacing:-10.367549pt;}
.ws26{word-spacing:-10.303788pt;}
.ws10b{word-spacing:-10.277340pt;}
.ws10f{word-spacing:-10.263509pt;}
.ws10d{word-spacing:-10.240027pt;}
.ws126{word-spacing:-10.176266pt;}
.ws27{word-spacing:-9.729939pt;}
.ws1e{word-spacing:-9.666178pt;}
.ws41{word-spacing:-9.577434pt;}
.ws90{word-spacing:-9.538656pt;}
.ws91{word-spacing:-9.523828pt;}
.ws92{word-spacing:-9.474895pt;}
.ws21{word-spacing:-9.411133pt;}
.wseb{word-spacing:-9.283611pt;}
.wsed{word-spacing:-9.219850pt;}
.ws28{word-spacing:-9.156089pt;}
.ws8f{word-spacing:-9.149713pt;}
.ws49{word-spacing:-8.901045pt;}
.wsce{word-spacing:-8.782877pt;}
.wscd{word-spacing:-8.773523pt;}
.ws39{word-spacing:-8.709762pt;}
.wsbb{word-spacing:-8.646001pt;}
.ws16{word-spacing:-8.639625pt;}
.ws80{word-spacing:-8.454717pt;}
.wsba{word-spacing:-8.333490pt;}
.ws3d{word-spacing:-8.320819pt;}
.wsa9{word-spacing:-8.306712pt;}
.wsb0{word-spacing:-8.120330pt;}
.ws6a{word-spacing:-8.072151pt;}
.ws11f{word-spacing:-8.008390pt;}
.ws9a{word-spacing:-8.002014pt;}
.ws85{word-spacing:-7.944629pt;}
.wsa4{word-spacing:-7.918766pt;}
.wsc0{word-spacing:-7.689585pt;}
.ws17{word-spacing:-7.498301pt;}
.ws123{word-spacing:-7.434540pt;}
.ws125{word-spacing:-7.411377pt;}
.ws108{word-spacing:-7.370779pt;}
.wsaa{word-spacing:-7.247883pt;}
.ws3e{word-spacing:-7.243257pt;}
.wsae{word-spacing:-7.203581pt;}
.ws10a{word-spacing:-7.179496pt;}
.ws1d{word-spacing:-7.115735pt;}
.wsb1{word-spacing:-7.085259pt;}
.ws9b{word-spacing:-6.988213pt;}
.ws89{word-spacing:-6.924452pt;}
.wsa5{word-spacing:-6.909387pt;}
.wse7{word-spacing:-6.733169pt;}
.wsc3{word-spacing:-6.716986pt;}
.wsa1{word-spacing:-6.669408pt;}
.ws38{word-spacing:-6.478124pt;}
.ws106{word-spacing:-6.350602pt;}
.wsfc{word-spacing:-6.344226pt;}
.ws86{word-spacing:-6.286841pt;}
.ws20{word-spacing:-6.177427pt;}
.ws107{word-spacing:-6.095558pt;}
.ws102{word-spacing:-6.025421pt;}
.ws121{word-spacing:-5.968036pt;}
.ws7b{word-spacing:-5.904275pt;}
.ws7a{word-spacing:-5.840514pt;}
.ws23{word-spacing:-5.776753pt;}
.wsb6{word-spacing:-5.744593pt;}
.ws8{word-spacing:-5.712992pt;}
.ws87{word-spacing:-5.585469pt;}
.wsfd{word-spacing:-5.521708pt;}
.ws2e{word-spacing:-5.457947pt;}
.ws2c{word-spacing:-5.394186pt;}
.ws12{word-spacing:-5.330425pt;}
.ws103{word-spacing:-5.266664pt;}
.ws6b{word-spacing:-5.075381pt;}
.ws115{word-spacing:-5.027893pt;}
.wsb7{word-spacing:-5.012349pt;}
.ws42{word-spacing:-4.947859pt;}
.ws24{word-spacing:-4.820337pt;}
.ws34{word-spacing:-4.756576pt;}
.ws12f{word-spacing:-4.501531pt;}
.ws7d{word-spacing:-4.437770pt;}
.ws2a{word-spacing:-4.310248pt;}
.wsec{word-spacing:-4.246487pt;}
.wsf{word-spacing:-4.059353pt;}
.ws109{word-spacing:-3.863921pt;}
.ws3f{word-spacing:-3.857545pt;}
.ws1f{word-spacing:-3.800160pt;}
.ws4e{word-spacing:-3.793783pt;}
.ws137{word-spacing:-3.602637pt;}
.ws31{word-spacing:-3.545115pt;}
.ws2b{word-spacing:-3.481354pt;}
.ws117{word-spacing:-3.417593pt;}
.ws53{word-spacing:-3.411217pt;}
.ws40{word-spacing:-3.353832pt;}
.ws4f{word-spacing:-3.290071pt;}
.wse6{word-spacing:-3.227588pt;}
.wse5{word-spacing:-3.226310pt;}
.ws5f{word-spacing:-3.188053pt;}
.wse0{word-spacing:-3.172949pt;}
.ws7c{word-spacing:-3.098788pt;}
.ws94{word-spacing:-3.092412pt;}
.wsa3{word-spacing:-3.035027pt;}
.ws36{word-spacing:-3.006491pt;}
.ws37{word-spacing:-2.971266pt;}
.ws95{word-spacing:-2.716221pt;}
.ws14{word-spacing:-2.582323pt;}
.ws32{word-spacing:-2.524938pt;}
.wsea{word-spacing:-2.461177pt;}
.wsf6{word-spacing:-2.397416pt;}
.ws15{word-spacing:-2.269894pt;}
.ws104{word-spacing:-2.199757pt;}
.ws29{word-spacing:-2.142372pt;}
.ws105{word-spacing:-1.951089pt;}
.ws4c{word-spacing:-1.887328pt;}
.ws4b{word-spacing:-1.823567pt;}
.ws50{word-spacing:-1.568522pt;}
.wse4{word-spacing:-1.115819pt;}
.ws131{word-spacing:-0.975700pt;}
.ws56{word-spacing:-0.930912pt;}
.ws1c{word-spacing:-0.867151pt;}
.ws5c{word-spacing:-0.702137pt;}
.ws8b{word-spacing:-0.675867pt;}
.wsfe{word-spacing:-0.357062pt;}
.wscb{word-spacing:-0.229540pt;}
.ws79{word-spacing:-0.102018pt;}
.ws110{word-spacing:-0.063761pt;}
.ws11{word-spacing:-0.042507pt;}
.wsab{word-spacing:-0.029535pt;}
.wsb2{word-spacing:-0.028872pt;}
.wsa8{word-spacing:-0.028155pt;}
.wsb8{word-spacing:-0.020425pt;}
.ws3a{word-spacing:-0.001847pt;}
.wsa{word-spacing:0.000000pt;}
.ws59{word-spacing:0.346771pt;}
.wsc2{word-spacing:0.360347pt;}
.wsd{word-spacing:0.535593pt;}
.ws5{word-spacing:0.663115pt;}
.ws4a{word-spacing:2.002097pt;}
.ws6d{word-spacing:2.703469pt;}
.ws6c{word-spacing:3.092412pt;}
.wsc4{word-spacing:3.466800pt;}
.ws9{word-spacing:3.914929pt;}
.wsc5{word-spacing:6.195014pt;}
.ws116{word-spacing:6.975461pt;}
.wsd4{word-spacing:7.481267pt;}
.ws113{word-spacing:9.270859pt;}
.wsd3{word-spacing:16.779148pt;}
.ws132{word-spacing:16.858426pt;}
.ws68{word-spacing:18.044382pt;}
.wsde{word-spacing:18.045194pt;}
.ws63{word-spacing:18.050528pt;}
.ws119{word-spacing:18.108143pt;}
.ws11b{word-spacing:19.192081pt;}
.ws11e{word-spacing:19.829692pt;}
.ws127{word-spacing:20.212258pt;}
.wsdc{word-spacing:20.325815pt;}
.ws12e{word-spacing:21.104913pt;}
.ws122{word-spacing:21.678763pt;}
.ws4{word-spacing:21.901926pt;}
.ws112{word-spacing:22.252612pt;}
.ws10c{word-spacing:22.380134pt;}
.ws12b{word-spacing:22.469400pt;}
.ws65{word-spacing:23.424184pt;}
.wsd5{word-spacing:23.424481pt;}
.ws120{word-spacing:24.484250pt;}
.ws124{word-spacing:24.994338pt;}
.ws133{word-spacing:26.412399pt;}
.ws135{word-spacing:26.452523pt;}
.ws114{word-spacing:27.162214pt;}
.wsef{word-spacing:27.342214pt;}
.ws111{word-spacing:28.309914pt;}
.ws136{word-spacing:28.501197pt;}
.ws118{word-spacing:28.628719pt;}
.ws130{word-spacing:30.924117pt;}
.ws12a{word-spacing:32.326861pt;}
.wsd7{word-spacing:32.854723pt;}
.wsca{word-spacing:38.032481pt;}
.wsc6{word-spacing:38.036845pt;}
.wsc{word-spacing:51.646200pt;}
.ws12c{word-spacing:52.475358pt;}
.ws134{word-spacing:56.109739pt;}
.wsd8{word-spacing:85.164122pt;}
.ws5d{word-spacing:112.015512pt;}
._10{margin-left:-33.538321pt;}
._d{margin-left:-31.880533pt;}
._11{margin-left:-30.158985pt;}
._f{margin-left:-11.094426pt;}
._3e{margin-left:-9.564133pt;}
._1{margin-left:-8.630654pt;}
._27{margin-left:-6.949956pt;}
._3{margin-left:-5.993540pt;}
._22{margin-left:-5.037124pt;}
._3f{margin-left:-3.969941pt;}
._0{margin-left:-2.846279pt;}
._8{margin-left:-1.721549pt;}
._33{width:0.933447pt;}
._16{width:1.849071pt;}
._2{width:2.846279pt;}
._68{width:3.760905pt;}
._3c{width:6.209951pt;}
._6b{width:8.078695pt;}
._67{width:9.362620pt;}
._3b{width:10.625896pt;}
._38{width:15.476115pt;}
._25{width:16.450355pt;}
._30{width:17.916860pt;}
._57{width:18.863629pt;}
._9{width:20.786108pt;}
._1e{width:21.719555pt;}
._37{width:22.976953pt;}
._18{width:24.165444pt;}
._3d{width:25.360034pt;}
._15{width:26.397082pt;}
._4{width:27.736064pt;}
._35{width:29.202569pt;}
._34{width:30.860356pt;}
._e{width:31.944294pt;}
._2e{width:33.219516pt;}
._69{width:34.135139pt;}
._28{width:35.068587pt;}
._20{width:36.917658pt;}
._2b{width:38.215847pt;}
._6a{width:39.978189pt;}
._1a{width:41.125888pt;}
._3a{width:42.381617pt;}
._1d{width:43.485047pt;}
._2a{width:45.015313pt;}
._a{width:46.140044pt;}
._2d{width:47.287743pt;}
._c{width:49.096021pt;}
._21{width:50.029469pt;}
._1c{width:51.263898pt;}
._23{width:52.921685pt;}
._17{width:54.643234pt;}
._1f{width:56.556066pt;}
._13{width:57.767526pt;}
._31{width:61.656951pt;}
._7{width:63.824828pt;}
._24{width:65.100049pt;}
._32{width:67.012881pt;}
._5b{width:69.817635pt;}
._1b{width:71.412395pt;}
._4e{width:80.130140pt;}
._4f{width:81.422900pt;}
._5e{width:83.364835pt;}
._36{width:86.077200pt;}
._65{width:88.859431pt;}
._12{width:98.255804pt;}
._29{width:99.403503pt;}
._39{width:103.292400pt;}
._40{width:113.630014pt;}
._4a{width:118.230160pt;}
._43{width:123.018580pt;}
._46{width:124.491624pt;}
._6c{width:126.727035pt;}
._b{width:130.072576pt;}
._49{width:134.251104pt;}
._58{width:152.833792pt;}
._61{width:153.966390pt;}
._62{width:156.319144pt;}
._55{width:158.257408pt;}
._66{width:162.054818pt;}
._41{width:168.293840pt;}
._52{width:185.371526pt;}
._4b{width:187.825237pt;}
._56{width:199.744913pt;}
._54{width:202.731678pt;}
._4c{width:205.982082pt;}
._51{width:207.091370pt;}
._50{width:232.416978pt;}
._44{width:243.493201pt;}
._48{width:245.059539pt;}
._47{width:251.117682pt;}
._45{width:292.308871pt;}
._5c{width:300.805652pt;}
._5a{width:306.789631pt;}
._64{width:307.954791pt;}
._4d{width:316.294536pt;}
._42{width:333.167033pt;}
._53{width:345.827164pt;}
._59{width:381.072768pt;}
._60{width:392.760321pt;}
._63{width:410.081746pt;}
._5f{width:434.691827pt;}
._5d{width:466.005025pt;}
._19{width:605.411328pt;}
._2c{width:1082.344107pt;}
._26{width:1142.151987pt;}
._2f{width:1283.956599pt;}
._14{width:1652.090030pt;}
._6{width:1983.861828pt;}
._5{width:2104.449125pt;}
.fsd{font-size:20.425135pt;}
.fs7{font-size:28.155494pt;}
.fsb{font-size:28.872165pt;}
.fs9{font-size:29.534853pt;}
.fsc{font-size:30.637830pt;}
.fs5{font-size:31.880533pt;}
.fs6{font-size:42.233418pt;}
.fs2{font-size:42.507200pt;}
.fsa{font-size:43.308429pt;}
.fs8{font-size:44.302464pt;}
.fs4{font-size:53.133867pt;}
.fsf{font-size:59.633351pt;}
.fs1{font-size:63.761067pt;}
.fs3{font-size:76.513067pt;}
.fse{font-size:89.450400pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y27{bottom:54.637333pt;}
.yeb{bottom:94.488000pt;}
.y26{bottom:107.965333pt;}
.y128{bottom:110.358667pt;}
.y142{bottom:112.152000pt;}
.yea{bottom:113.749333pt;}
.y1b4{bottom:117.321333pt;}
.y5c{bottom:124.517333pt;}
.y15f{bottom:125.776000pt;}
.y17f{bottom:125.898667pt;}
.y19a{bottom:126.629333pt;}
.ycd{bottom:126.908000pt;}
.y25{bottom:127.226667pt;}
.ye9{bottom:133.010667pt;}
.y127{bottom:142.904000pt;}
.y103{bottom:143.524000pt;}
.y5b{bottom:143.778667pt;}
.y141{bottom:144.696000pt;}
.y199{bottom:145.890667pt;}
.ycc{bottom:146.169333pt;}
.y24{bottom:146.488000pt;}
.y1b3{bottom:152.522667pt;}
.y15e{bottom:157.062667pt;}
.y17e{bottom:158.065333pt;}
.y1de{bottom:160.737333pt;}
.y126{bottom:162.165333pt;}
.ye8{bottom:162.566667pt;}
.y102{bottom:162.785333pt;}
.y5a{bottom:163.040000pt;}
.y1fa{bottom:165.313333pt;}
.ycb{bottom:165.430667pt;}
.y23{bottom:165.749333pt;}
.y198{bottom:177.225333pt;}
.y140{bottom:177.241333pt;}
.y17d{bottom:177.326667pt;}
.y1dd{bottom:179.998667pt;}
.y125{bottom:181.426667pt;}
.y59{bottom:182.300000pt;}
.y1f9{bottom:184.573333pt;}
.y22{bottom:185.009333pt;}
.y1b2{bottom:185.066667pt;}
.y15d{bottom:185.836000pt;}
.y78{bottom:186.972000pt;}
.y94{bottom:192.440000pt;}
.y1cc{bottom:193.713333pt;}
.yca{bottom:194.986667pt;}
.y101{bottom:195.329333pt;}
.y1dc{bottom:199.258667pt;}
.y124{bottom:200.686667pt;}
.y58{bottom:201.561333pt;}
.y1f8{bottom:203.834667pt;}
.y21{bottom:204.270667pt;}
.yb0{bottom:204.636000pt;}
.y77{bottom:206.233333pt;}
.y13f{bottom:206.797333pt;}
.ye7{bottom:208.392000pt;}
.y197{bottom:208.560000pt;}
.y17c{bottom:209.493333pt;}
.y93{bottom:211.701333pt;}
.y1cb{bottom:212.974667pt;}
.y15c{bottom:215.392000pt;}
.y1db{bottom:218.520000pt;}
.y10e{bottom:218.908000pt;}
.y1b1{bottom:220.268000pt;}
.y57{bottom:220.822667pt;}
.y217{bottom:221.620000pt;}
.y20{bottom:223.532000pt;}
.ye6{bottom:227.653333pt;}
.y100{bottom:227.874667pt;}
.y1ca{bottom:232.236000pt;}
.y123{bottom:235.733333pt;}
.y1f7{bottom:236.137333pt;}
.y13e{bottom:236.353333pt;}
.yaf{bottom:237.180000pt;}
.y1da{bottom:237.781333pt;}
.y76{bottom:238.777333pt;}
.y56{bottom:240.084000pt;}
.y196{bottom:240.702667pt;}
.y17b{bottom:240.904000pt;}
.yc9{bottom:241.201333pt;}
.y92{bottom:244.246667pt;}
.y10d{bottom:251.452000pt;}
.ye5{bottom:252.801333pt;}
.y216{bottom:254.164000pt;}
.y1f6{bottom:255.398667pt;}
.y1b0{bottom:255.469333pt;}
.y1d9{bottom:257.042667pt;}
.y75{bottom:258.038667pt;}
.y1f{bottom:258.401333pt;}
.y55{bottom:259.345333pt;}
.yff{bottom:260.418667pt;}
.yc8{bottom:260.462667pt;}
.y15b{bottom:260.957333pt;}
.y91{bottom:263.506667pt;}
.y1c9{bottom:264.780000pt;}
.y17a{bottom:265.265333pt;}
.yae{bottom:269.725333pt;}
.ye4{bottom:272.062667pt;}
.y195{bottom:272.844000pt;}
.y215{bottom:273.425333pt;}
.y179{bottom:276.200000pt;}
.y1d8{bottom:276.304000pt;}
.y1e{bottom:277.662667pt;}
.y54{bottom:278.605333pt;}
.yfe{bottom:279.680000pt;}
.yc7{bottom:279.724000pt;}
.y13d{bottom:282.568000pt;}
.y10c{bottom:283.997333pt;}
.y1c8{bottom:284.041333pt;}
.y1f5{bottom:287.701333pt;}
.y122{bottom:288.978667pt;}
.y74{bottom:290.584000pt;}
.ye3{bottom:291.324000pt;}
.y1af{bottom:291.998667pt;}
.y194{bottom:292.104000pt;}
.y15a{bottom:292.245333pt;}
.y214{bottom:292.686667pt;}
.y1d7{bottom:295.565333pt;}
.y90{bottom:296.052000pt;}
.y1d{bottom:296.922667pt;}
.y53{bottom:297.866667pt;}
.yc6{bottom:298.985333pt;}
.yad{bottom:302.269333pt;}
.y1c7{bottom:303.302667pt;}
.y1f4{bottom:306.962667pt;}
.y121{bottom:308.240000pt;}
.y73{bottom:309.844000pt;}
.yfd{bottom:312.224000pt;}
.y1d6{bottom:314.825333pt;}
.y13c{bottom:315.113333pt;}
.y8f{bottom:315.313333pt;}
.y1c{bottom:316.184000pt;}
.y10b{bottom:316.541333pt;}
.y52{bottom:317.128000pt;}
.y178{bottom:319.528000pt;}
.y1ae{bottom:321.554667pt;}
.y159{bottom:321.800000pt;}
.y1c6{bottom:322.564000pt;}
.ye2{bottom:323.114667pt;}
.y193{bottom:323.440000pt;}
.y213{bottom:325.230667pt;}
.y1f3{bottom:326.224000pt;}
.yc5{bottom:334.032000pt;}
.y8e{bottom:334.573333pt;}
.yac{bottom:334.814667pt;}
.y1b{bottom:335.445333pt;}
.y177{bottom:338.789333pt;}
.y120{bottom:340.784000pt;}
.y1c5{bottom:341.824000pt;}
.y72{bottom:342.389333pt;}
.y1d5{bottom:344.381333pt;}
.y212{bottom:344.492000pt;}
.y13b{bottom:344.669333pt;}
.yfc{bottom:344.769333pt;}
.y51{bottom:346.684000pt;}
.y10a{bottom:349.086667pt;}
.y1a{bottom:354.706667pt;}
.y192{bottom:354.774667pt;}
.ye1{bottom:356.626667pt;}
.y176{bottom:358.050667pt;}
.y1f2{bottom:358.525333pt;}
.y11f{bottom:360.045333pt;}
.yc4{bottom:363.254667pt;}
.y211{bottom:363.753333pt;}
.y8d{bottom:367.118667pt;}
.yab{bottom:367.358667pt;}
.y1ad{bottom:367.770667pt;}
.y19{bottom:373.968000pt;}
.y1c4{bottom:374.369333pt;}
.y71{bottom:374.933333pt;}
.ye0{bottom:375.888000pt;}
.yfb{bottom:377.313333pt;}
.y1f1{bottom:377.786667pt;}
.y158{bottom:381.478667pt;}
.y109{bottom:381.630667pt;}
.y50{bottom:386.380000pt;}
.y191{bottom:386.916000pt;}
.y175{bottom:387.606667pt;}
.y1d4{bottom:390.597333pt;}
.y11e{bottom:392.589333pt;}
.y18{bottom:393.229333pt;}
.yaa{bottom:393.308000pt;}
.y1c3{bottom:393.630667pt;}
.y70{bottom:394.194667pt;}
.ydf{bottom:395.149333pt;}
.y210{bottom:396.298667pt;}
.yfa{bottom:396.574667pt;}
.y1f0{bottom:397.048000pt;}
.y1ac{bottom:400.314667pt;}
.ya8{bottom:404.242667pt;}
.y13a{bottom:407.510667pt;}
.y1d3{bottom:409.858667pt;}
.y11d{bottom:411.850667pt;}
.y17{bottom:412.489333pt;}
.y157{bottom:412.530917pt;}
.y1c2{bottom:412.892000pt;}
.y108{bottom:414.176000pt;}
.y20f{bottom:415.558667pt;}
.yc3{bottom:416.500000pt;}
.y8c{bottom:418.924000pt;}
.y190{bottom:419.057333pt;}
.ya9{bottom:423.637333pt;}
.yde{bottom:424.705333pt;}
.y156{bottom:425.974237pt;}
.y6f{bottom:426.740000pt;}
.yf9{bottom:429.120000pt;}
.y1ef{bottom:429.350667pt;}
.y16{bottom:431.750667pt;}
.y1c1{bottom:432.152000pt;}
.y1ab{bottom:432.860000pt;}
.y174{bottom:433.626667pt;}
.y20e{bottom:434.820000pt;}
.yc2{bottom:435.761333pt;}
.y8b{bottom:438.185333pt;}
.y139{bottom:438.456326pt;}
.y155{bottom:439.417557pt;}
.y4f{bottom:439.624000pt;}
.y11c{bottom:444.396000pt;}
.y6e{bottom:446.000000pt;}
.y107{bottom:446.720000pt;}
.y1ee{bottom:448.612000pt;}
.ya7{bottom:448.742667pt;}
.y18f{bottom:450.392000pt;}
.y15{bottom:451.012000pt;}
.y138{bottom:451.566836pt;}
.y154{bottom:452.861783pt;}
.y173{bottom:452.888000pt;}
.yc1{bottom:455.022667pt;}
.y8a{bottom:457.446667pt;}
.y4e{bottom:458.885333pt;}
.yf8{bottom:461.664000pt;}
.y1c0{bottom:461.708000pt;}
.y137{bottom:464.676463pt;}
.ydd{bottom:465.881333pt;}
.y20d{bottom:467.365333pt;}
.ya6{bottom:468.004000pt;}
.y14{bottom:470.273333pt;}
.y1aa{bottom:473.397333pt;}
.y89{bottom:476.708000pt;}
.y136{bottom:477.786090pt;}
.y4d{bottom:478.146667pt;}
.y6d{bottom:478.545333pt;}
.y106{bottom:479.265333pt;}
.y18e{bottom:479.948000pt;}
.y1ed{bottom:480.914667pt;}
.yf7{bottom:480.925333pt;}
.y172{bottom:484.298667pt;}
.ydc{bottom:485.142667pt;}
.y20c{bottom:486.625333pt;}
.ya5{bottom:487.265333pt;}
.yc0{bottom:487.566667pt;}
.y13{bottom:489.534667pt;}
.y153{bottom:491.857333pt;}
.y88{bottom:495.969333pt;}
.y4c{bottom:497.408000pt;}
.y6c{bottom:497.806667pt;}
.y1ec{bottom:500.176000pt;}
.y11b{bottom:500.186667pt;}
.y171{bottom:503.560000pt;}
.y20b{bottom:505.886667pt;}
.ybf{bottom:506.828000pt;}
.y1bf{bottom:507.924000pt;}
.y12{bottom:508.794667pt;}
.y105{bottom:508.820000pt;}
.y1a9{bottom:509.014123pt;}
.ydb{bottom:510.292000pt;}
.yf6{bottom:513.469333pt;}
.y87{bottom:515.229333pt;}
.y4b{bottom:516.669333pt;}
.ya4{bottom:516.821333pt;}
.y135{bottom:519.060000pt;}
.y1eb{bottom:519.436000pt;}
.y18d{bottom:525.954667pt;}
.y6b{bottom:530.350667pt;}
.y11a{bottom:532.730667pt;}
.y152{bottom:532.773333pt;}
.y170{bottom:535.726667pt;}
.y4a{bottom:535.929333pt;}
.y1a8{bottom:536.782190pt;}
.y104{bottom:538.376000pt;}
.y20a{bottom:538.432000pt;}
.ybe{bottom:539.372000pt;}
.y1be{bottom:540.468000pt;}
.yda{bottom:542.081333pt;}
.yf5{bottom:543.025333pt;}
.y11{bottom:543.664000pt;}
.y86{bottom:544.785333pt;}
.y18c{bottom:545.216000pt;}
.y6a{bottom:549.612000pt;}
.y1ea{bottom:551.738667pt;}
.y119{bottom:551.992000pt;}
.y49{bottom:555.190667pt;}
.y209{bottom:557.693333pt;}
.ybd{bottom:558.633333pt;}
.y134{bottom:560.626667pt;}
.y10{bottom:562.925333pt;}
.ya3{bottom:563.036000pt;}
.y151{bottom:564.061333pt;}
.y1a7{bottom:564.548387pt;}
.y16f{bottom:567.893333pt;}
.y1d2{bottom:569.260000pt;}
.y1e9{bottom:571.000000pt;}
.y1bd{bottom:573.013333pt;}
.y48{bottom:574.452000pt;}
.yd9{bottom:575.594667pt;}
.y18b{bottom:577.357333pt;}
.y69{bottom:582.156000pt;}
.yf{bottom:582.186667pt;}
.y85{bottom:584.481333pt;}
.y118{bottom:584.536000pt;}
.yf4{bottom:584.592000pt;}
.y39{bottom:586.917333pt;}
.y1d1{bottom:588.521333pt;}
.y208{bottom:590.237333pt;}
.y1e8{bottom:590.261333pt;}
.ybc{bottom:591.178667pt;}
.y1a6{bottom:592.314583pt;}
.y133{bottom:593.170667pt;}
.yd8{bottom:594.856000pt;}
.y150{bottom:595.348000pt;}
.ya2{bottom:595.581333pt;}
.y16e{bottom:600.060000pt;}
.y68{bottom:601.417333pt;}
.ye{bottom:601.448000pt;}
.y117{bottom:603.797333pt;}
.y1bc{bottom:605.557333pt;}
.y38{bottom:606.178667pt;}
.y47{bottom:606.997333pt;}
.y18a{bottom:608.692000pt;}
.y207{bottom:609.498667pt;}
.ybb{bottom:610.440000pt;}
.y132{bottom:612.432000pt;}
.yd7{bottom:614.116000pt;}
.yf3{bottom:617.136000pt;}
.y1d0{bottom:618.077333pt;}
.y1a5{bottom:620.082651pt;}
.yd{bottom:620.709333pt;}
.y14f{bottom:624.904000pt;}
.y1e7{bottom:625.308000pt;}
.y37{bottom:625.438667pt;}
.y46{bottom:626.257333pt;}
.y189{bottom:627.953333pt;}
.ya1{bottom:628.125333pt;}
.y206{bottom:628.760000pt;}
.y67{bottom:630.973333pt;}
.y16d{bottom:631.470667pt;}
.y84{bottom:637.726667pt;}
.y1bb{bottom:638.102667pt;}
.yc{bottom:639.969333pt;}
.y116{bottom:640.328000pt;}
.yd6{bottom:643.672000pt;}
.y36{bottom:644.700000pt;}
.y131{bottom:644.976000pt;}
.yba{bottom:646.969333pt;}
.y188{bottom:647.214667pt;}
.ya0{bottom:647.386667pt;}
.yf2{bottom:649.681333pt;}
.y14e{bottom:654.460000pt;}
.y83{bottom:656.986667pt;}
.y1ba{bottom:657.364000pt;}
.y45{bottom:658.802667pt;}
.y115{bottom:659.588000pt;}
.y205{bottom:661.304000pt;}
.y1a4{bottom:661.438667pt;}
.y35{bottom:663.961333pt;}
.y1cf{bottom:664.293333pt;}
.yb9{bottom:666.230667pt;}
.y16c{bottom:666.488000pt;}
.yb{bottom:674.838667pt;}
.y82{bottom:676.248000pt;}
.y1b9{bottom:676.624000pt;}
.y66{bottom:677.189333pt;}
.y130{bottom:677.521333pt;}
.y44{bottom:678.064000pt;}
.y14d{bottom:678.370667pt;}
.y1e6{bottom:678.426667pt;}
.y187{bottom:678.549333pt;}
.y9f{bottom:679.930667pt;}
.y204{bottom:680.565333pt;}
.yf1{bottom:682.225333pt;}
.y34{bottom:683.222667pt;}
.y1ce{bottom:683.554667pt;}
.yd5{bottom:684.849333pt;}
.y114{bottom:689.144000pt;}
.y1a3{bottom:693.982667pt;}
.ya{bottom:694.100000pt;}
.yb8{bottom:695.786667pt;}
.y65{bottom:696.450667pt;}
.y1e5{bottom:697.688000pt;}
.y16b{bottom:698.654667pt;}
.y203{bottom:699.826667pt;}
.y1cd{bottom:702.816000pt;}
.yd4{bottom:704.110667pt;}
.y12f{bottom:707.077333pt;}
.y81{bottom:708.793333pt;}
.y43{bottom:710.608000pt;}
.y1b8{bottom:711.670667pt;}
.y186{bottom:712.338667pt;}
.y9e{bottom:712.476000pt;}
.y9{bottom:713.361333pt;}
.yf0{bottom:714.770667pt;}
.y64{bottom:715.712000pt;}
.y1e4{bottom:716.949333pt;}
.y33{bottom:718.092000pt;}
.y14c{bottom:723.936000pt;}
.y1a2{bottom:726.526667pt;}
.yd3{bottom:729.258667pt;}
.y42{bottom:729.869333pt;}
.y16a{bottom:730.821333pt;}
.y202{bottom:732.370667pt;}
.y8{bottom:732.622667pt;}
.y63{bottom:734.972000pt;}
.y113{bottom:735.360000pt;}
.y1e3{bottom:736.210667pt;}
.y12e{bottom:736.633333pt;}
.y32{bottom:737.352000pt;}
.y80{bottom:741.337333pt;}
.yb7{bottom:742.001333pt;}
.y14b{bottom:743.197333pt;}
.y9c{bottom:745.226667pt;}
.y9b{bottom:745.732000pt;}
.y185{bottom:746.129333pt;}
.yef{bottom:747.314667pt;}
.yd2{bottom:748.520000pt;}
.y201{bottom:751.632000pt;}
.y7{bottom:751.882667pt;}
.y62{bottom:754.233333pt;}
.y112{bottom:754.621333pt;}
.y31{bottom:756.613333pt;}
.y9a{bottom:756.665333pt;}
.yb6{bottom:757.322667pt;}
.y1a1{bottom:759.072000pt;}
.y7f{bottom:760.598667pt;}
.yb5{bottom:761.262667pt;}
.y41{bottom:762.413333pt;}
.y1b7{bottom:764.916000pt;}
.y169{bottom:765.838667pt;}
.y1e2{bottom:768.029333pt;}
.y200{bottom:770.893333pt;}
.y61{bottom:773.494667pt;}
.yd1{bottom:773.668000pt;}
.y111{bottom:773.882667pt;}
.y14a{bottom:774.485333pt;}
.y30{bottom:775.874667pt;}
.y9d{bottom:776.060000pt;}
.y184{bottom:778.270667pt;}
.yee{bottom:779.860000pt;}
.y40{bottom:781.674667pt;}
.y12d{bottom:782.848000pt;}
.y168{bottom:785.100000pt;}
.y6{bottom:786.752000pt;}
.y1a0{bottom:791.616000pt;}
.y60{bottom:792.756000pt;}
.yd0{bottom:792.929333pt;}
.y7e{bottom:793.142667pt;}
.yb4{bottom:793.808000pt;}
.y2f{bottom:795.136000pt;}
.y1b6{bottom:797.460000pt;}
.yed{bottom:799.121333pt;}
.y1e1{bottom:800.332000pt;}
.y99{bottom:802.198667pt;}
.y1ff{bottom:803.437333pt;}
.y149{bottom:804.040000pt;}
.y167{bottom:804.361333pt;}
.y110{bottom:806.426667pt;}
.y5f{bottom:812.017333pt;}
.y183{bottom:812.060000pt;}
.y7d{bottom:812.404000pt;}
.y3f{bottom:814.220000pt;}
.y12c{bottom:815.393333pt;}
.y19f{bottom:819.865333pt;}
.y5{bottom:821.798667pt;}
.y1fe{bottom:822.698667pt;}
.y98{bottom:824.116000pt;}
.ycf{bottom:824.720000pt;}
.y10f{bottom:825.688000pt;}
.yb3{bottom:826.352000pt;}
.y2e{bottom:830.005333pt;}
.y19e{bottom:830.800000pt;}
.y5e{bottom:831.277333pt;}
.yec{bottom:831.665333pt;}
.y1e0{bottom:832.633333pt;}
.y3e{bottom:833.481333pt;}
.y148{bottom:833.596000pt;}
.y166{bottom:839.408000pt;}
.y1fd{bottom:841.960000pt;}
.y7c{bottom:844.949333pt;}
.y97{bottom:845.834667pt;}
.y182{bottom:845.850667pt;}
.y12b{bottom:847.937333pt;}
.y2d{bottom:849.266667pt;}
.y3d{bottom:852.741333pt;}
.yb2{bottom:857.612000pt;}
.yce{bottom:858.232000pt;}
.y5d{bottom:860.833333pt;}
.yb1{bottom:861.553333pt;}
.y7b{bottom:864.210667pt;}
.y1df{bottom:864.936000pt;}
.y2c{bottom:868.526667pt;}
.y3c{bottom:872.002667pt;}
.y19d{bottom:872.844000pt;}
.y1fc{bottom:874.505333pt;}
.y4{bottom:875.044000pt;}
.y96{bottom:877.493333pt;}
.y181{bottom:877.992000pt;}
.y147{bottom:879.368000pt;}
.y12a{bottom:880.482667pt;}
.y7a{bottom:883.470667pt;}
.y165{bottom:886.937333pt;}
.y2b{bottom:887.788000pt;}
.y3b{bottom:891.264000pt;}
.y19c{bottom:892.105333pt;}
.y1fb{bottom:893.765333pt;}
.y3{bottom:894.304000pt;}
.y95{bottom:896.754667pt;}
.y2a{bottom:907.049333pt;}
.y1b5{bottom:910.370667pt;}
.y146{bottom:910.518160pt;}
.y3a{bottom:910.525333pt;}
.y180{bottom:911.781333pt;}
.y129{bottom:913.026667pt;}
.y79{bottom:916.016000pt;}
.y164{bottom:916.736253pt;}
.y2{bottom:921.536000pt;}
.y19b{bottom:921.661333pt;}
.y145{bottom:924.270037pt;}
.y163{bottom:926.246507pt;}
.y29{bottom:926.310667pt;}
.y162{bottom:935.756761pt;}
.y144{bottom:938.021915pt;}
.y1{bottom:944.296000pt;}
.y161{bottom:945.267655pt;}
.y28{bottom:945.572000pt;}
.y143{bottom:951.774719pt;}
.y160{bottom:954.777909pt;}
.hb{height:17.905169pt;}
.h18{height:22.978373pt;}
.h19{height:25.153659pt;}
.h12{height:31.675063pt;}
.h9{height:31.880400pt;}
.h16{height:32.481322pt;}
.h14{height:33.226848pt;}
.h13{height:34.673636pt;}
.h17{height:35.556220pt;}
.h15{height:36.372323pt;}
.h1f{height:44.250180pt;}
.h5{height:45.334118pt;}
.h2{height:47.820800pt;}
.h3{height:52.347836pt;}
.h10{height:55.016400pt;}
.h4{height:57.384800pt;}
.h1c{height:58.205733pt;}
.he{height:63.762688pt;}
.h11{height:68.107836pt;}
.h1{height:68.861600pt;}
.h1e{height:73.438779pt;}
.hf{height:79.528021pt;}
.h1b{height:89.072785pt;}
.h1d{height:92.550827pt;}
.h1a{height:95.483836pt;}
.hd{height:95.640021pt;}
.h7{height:95.645355pt;}
.h6{height:96.086502pt;}
.h8{height:133.768400pt;}
.hc{height:139.378688pt;}
.ha{height:154.429733pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x5{left:94.488000pt;}
.x1{left:95.865333pt;}
.x2a{left:98.572976pt;}
.x1e{left:100.119028pt;}
.x20{left:101.630115pt;}
.x2c{left:104.626761pt;}
.x22{left:106.902117pt;}
.x1f{left:108.191111pt;}
.x29{left:111.362230pt;}
.x9{left:113.564000pt;}
.x6{left:117.900000pt;}
.x2b{left:123.315397pt;}
.x27{left:125.248968pt;}
.x26{left:127.281224pt;}
.xa{left:133.508000pt;}
.x25{left:136.089479pt;}
.x24{left:143.504000pt;}
.x1c{left:149.282667pt;}
.x1a{left:151.074667pt;}
.x2{left:154.401333pt;}
.xd{left:158.225333pt;}
.x1b{left:167.845333pt;}
.x19{left:193.297333pt;}
.x7{left:203.744000pt;}
.x2d{left:204.922667pt;}
.x23{left:223.113333pt;}
.xe{left:233.264000pt;}
.x21{left:249.729333pt;}
.xf{left:253.453333pt;}
.x34{left:263.159058pt;}
.x10{left:266.756000pt;}
.x28{left:274.605333pt;}
.x36{left:278.778011pt;}
.x17{left:282.532000pt;}
.x35{left:294.812223pt;}
.x32{left:295.910667pt;}
.x2e{left:306.546667pt;}
.xb{left:314.476000pt;}
.xc{left:315.682667pt;}
.x4{left:328.444000pt;}
.x37{left:333.808000pt;}
.x39{left:342.274667pt;}
.x3{left:348.916000pt;}
.x38{left:352.372000pt;}
.x31{left:358.952000pt;}
.x30{left:366.832000pt;}
.x11{left:367.796000pt;}
.x1d{left:400.196000pt;}
.x8{left:404.097333pt;}
.x2f{left:433.469333pt;}
.x33{left:435.178667pt;}
.x12{left:445.700000pt;}
.x15{left:473.245333pt;}
.x18{left:497.316000pt;}
.x16{left:529.701333pt;}
.x13{left:542.526667pt;}
.x14{left:587.641333pt;}
}




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