
    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_e8a1819f248f0f16e9625451.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.945000;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_2b211f82892b8ba1767b2279.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.980000;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_15da053a007f2dee1a6f5a55.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.675000;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_15da053a007f2dee1a6f5a55.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.675000;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_56f0cd7e604bbebb0ba57186.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.936000;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_cb8e19edaa33cbbf32b71c7d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.975586;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_08419653147b67f305f76f2c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.975586;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_52364a9732006864ff37b13f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.975586;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_6faa89213b696d28c8ba92fb.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.959000;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_ce3b4e562cf87dce48ad3a30.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.967773;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_35313adbf5e77fc41d357fa3.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.967773;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_db3d2af7c20c68d4d7afb760.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.967773;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_ceb58cccfc323f1e962c4721.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.979980;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_e4d222d338b7c17f34dff11c.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.936523;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_1e26ac9a7ebbd878e705825c.woff2')format("woff");}.fff{font-family:fff;line-height:0.967773;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_db3d2af7c20c68d4d7afb760.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.967773;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_ceb58cccfc323f1e962c4721.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.979980;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_e4d222d338b7c17f34dff11c.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.936523;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_bc4455e73cf98ac2e3ff4119.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.967773;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:ff14;src:url('chunks/assets/font_5f0e98f46f3bf7847f7a4d36.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.967773;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:ff15;src:url('chunks/assets/font_77900faa1c0cf467b68344b1.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.979980;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:ff16;src:url('chunks/assets/font_09aa0f60e17c4b62a8874f72.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.936523;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:ff17;src:url('chunks/assets/font_561db365835feb7daffb0549.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.711000;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:ff18;src:url('chunks/assets/font_66feb549ac606f34d8d87a5b.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.989000;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:ff19;src:url('chunks/assets/font_6cce89a7a4534c143d98da15.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.980000;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:ff1a;src:url('chunks/assets/font_292258cc2d063a83e53e310e.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.967773;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:ff1b;src:url('chunks/assets/font_292258cc2d063a83e53e310e.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.967773;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:ff1c;src:url('chunks/assets/font_4569b65ff90d27d309f7fa33.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.942000;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;}
.ff1d{font-family:sans-serif;visibility:hidden;}
.ff1e{font-family:sans-serif;visibility:hidden;}
.ff1f{font-family:sans-serif;visibility:hidden;}
.ff20{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff21;src:url('chunks/assets/font_754058ef1a3d3bb572ca72be.woff2')format("woff");}.ff21{font-family:ff21;line-height:1.205000;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:ff22;src:url('chunks/assets/font_9e35933ddb734cba857998f3.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.945000;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;}
.ff23{font-family:sans-serif;visibility:hidden;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.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);}
.v1{vertical-align:-5.304000px;}
.v3{vertical-align:-1.025145px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:3.234945px;}
.v4{vertical-align:10.505160px;}
.v5{vertical-align:17.570083px;}
.v6{vertical-align:48.212100px;}
.ls0{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.000816px;}
.ls17{letter-spacing:0.001064px;}
.ls11{letter-spacing:0.001321px;}
.ls9{letter-spacing:0.017824px;}
.ls16{letter-spacing:5.977575px;}
.ls4{letter-spacing:8.181825px;}
.ls2{letter-spacing:16.363650px;}
.lsd{letter-spacing:23.580720px;}
.ls12{letter-spacing:30.587732px;}
.ls13{letter-spacing:30.588020px;}
.ls15{letter-spacing:30.600816px;}
.ls7{letter-spacing:30.603242px;}
.ls6{letter-spacing:30.605184px;}
.lsc{letter-spacing:30.606816px;}
.ls10{letter-spacing:31.083390px;}
.lsf{letter-spacing:36.768816px;}
.lse{letter-spacing:36.774041px;}
.ls1{letter-spacing:52.499421px;}
.ls5{letter-spacing:71.726496px;}
.lsb{letter-spacing:71.732496px;}
.ls8{letter-spacing:132.938496px;}
.ls14{letter-spacing:194.150496px;}
.ls3{letter-spacing:231.235351px;}
.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;}
}
.ws13{word-spacing:-30.993750px;}
.ws16{word-spacing:-24.545475px;}
.ws2{word-spacing:-16.363650px;}
.ws7d{word-spacing:-14.943900px;}
.ws6c{word-spacing:-13.449600px;}
.wsf{word-spacing:-13.165589px;}
.ws6{word-spacing:-12.622966px;}
.ws6d{word-spacing:-11.249686px;}
.ws7{word-spacing:-11.045078px;}
.wsa{word-spacing:-10.866286px;}
.ws2d{word-spacing:-8.880362px;}
.ws9{word-spacing:-8.149715px;}
.ws2c{word-spacing:-7.104724px;}
.wse{word-spacing:-6.847958px;}
.wsd{word-spacing:-5.869709px;}
.ws4{word-spacing:-1.505456px;}
.ws79{word-spacing:-0.523637px;}
.ws7e{word-spacing:-0.130909px;}
.ws5d{word-spacing:-0.065455px;}
.ws1c{word-spacing:-0.047821px;}
.ws8{word-spacing:-0.029316px;}
.ws10{word-spacing:-0.021870px;}
.ws7a{word-spacing:-0.004195px;}
.ws61{word-spacing:-0.003913px;}
.ws71{word-spacing:-0.002812px;}
.ws72{word-spacing:-0.001769px;}
.ws78{word-spacing:-0.001209px;}
.ws0{word-spacing:0.000000px;}
.ws77{word-spacing:0.000324px;}
.ws3{word-spacing:0.001568px;}
.ws62{word-spacing:0.003184px;}
.ws17{word-spacing:2.492964px;}
.ws63{word-spacing:2.749093px;}
.ws7c{word-spacing:9.982525px;}
.ws15{word-spacing:16.295105px;}
.ws7b{word-spacing:16.296881px;}
.ws14{word-spacing:16.297937px;}
.ws2f{word-spacing:30.553235px;}
.ws1a{word-spacing:30.555443px;}
.ws33{word-spacing:30.556787px;}
.ws38{word-spacing:30.557075px;}
.ws1{word-spacing:30.557363px;}
.ws55{word-spacing:30.557891px;}
.ws2a{word-spacing:30.558707px;}
.ws29{word-spacing:30.559235px;}
.ws1d{word-spacing:30.559811px;}
.ws30{word-spacing:30.560627px;}
.ws22{word-spacing:30.561443px;}
.ws36{word-spacing:30.563075px;}
.ws4f{word-spacing:31.035569px;}
.ws11{word-spacing:31.581317px;}
.ws12{word-spacing:31.581324px;}
.ws3a{word-spacing:32.074217px;}
.ws5b{word-spacing:32.080078px;}
.ws2e{word-spacing:32.085113px;}
.ws19{word-spacing:32.087623px;}
.ws35{word-spacing:32.087724px;}
.ws28{word-spacing:32.088940px;}
.ws37{word-spacing:32.089811px;}
.ws50{word-spacing:32.091443px;}
.ws1e{word-spacing:32.092259px;}
.ws3f{word-spacing:32.093075px;}
.ws39{word-spacing:32.093927px;}
.ws51{word-spacing:32.114920px;}
.ws21{word-spacing:32.852752px;}
.ws3e{word-spacing:33.283138px;}
.ws24{word-spacing:33.761344px;}
.ws41{word-spacing:34.126259px;}
.ws20{word-spacing:34.132259px;}
.ws3c{word-spacing:34.143908px;}
.ws23{word-spacing:34.383011px;}
.ws31{word-spacing:34.395598px;}
.ws2b{word-spacing:34.401598px;}
.ws5a{word-spacing:34.526473px;}
.ws32{word-spacing:34.677443px;}
.ws3d{word-spacing:34.717756px;}
.ws43{word-spacing:34.729811px;}
.ws26{word-spacing:34.901075px;}
.ws53{word-spacing:34.901891px;}
.ws27{word-spacing:34.907075px;}
.ws34{word-spacing:34.907891px;}
.ws18{word-spacing:34.909038px;}
.ws54{word-spacing:35.193443px;}
.ws1b{word-spacing:35.195962px;}
.ws1f{word-spacing:35.199443px;}
.ws5e{word-spacing:45.735445px;}
.ws65{word-spacing:53.796954px;}
.ws46{word-spacing:55.367238px;}
.ws69{word-spacing:59.773669px;}
.ws66{word-spacing:59.773692px;}
.ws68{word-spacing:59.774271px;}
.ws64{word-spacing:59.774965px;}
.ws45{word-spacing:61.192794px;}
.ws56{word-spacing:65.331443px;}
.ws57{word-spacing:65.799443px;}
.ws52{word-spacing:65.805443px;}
.ws5{word-spacing:69.236131px;}
.ws44{word-spacing:71.693126px;}
.ws40{word-spacing:71.699126px;}
.wsb{word-spacing:82.427008px;}
.ws47{word-spacing:85.803627px;}
.ws5f{word-spacing:87.204977px;}
.ws48{word-spacing:91.624794px;}
.ws6b{word-spacing:113.431692px;}
.ws49{word-spacing:116.240016px;}
.ws4a{word-spacing:122.062794px;}
.ws3b{word-spacing:132.905126px;}
.ws4b{word-spacing:146.676405px;}
.ws6a{word-spacing:150.781692px;}
.ws4c{word-spacing:152.500794px;}
.ws6e{word-spacing:156.005157px;}
.ws70{word-spacing:156.782432px;}
.ws25{word-spacing:161.858572px;}
.ws4d{word-spacing:177.106794px;}
.ws6f{word-spacing:181.878633px;}
.ws4e{word-spacing:182.938794px;}
.ws58{word-spacing:194.117126px;}
.wsc{word-spacing:240.947204px;}
.ws67{word-spacing:246.037692px;}
.ws42{word-spacing:255.329126px;}
.ws59{word-spacing:285.929126px;}
.ws5c{word-spacing:316.535126px;}
.ws60{word-spacing:360.498775px;}
.ws76{word-spacing:558.118668px;}
.ws75{word-spacing:601.711432px;}
.ws73{word-spacing:719.400413px;}
.ws74{word-spacing:724.635170px;}
._11{margin-left:-577.085783px;}
._18{margin-left:-8.181825px;}
._15{margin-left:-6.886176px;}
._30{margin-left:-5.825459px;}
._7{margin-left:-4.712731px;}
._f{margin-left:-3.207275px;}
._a{margin-left:-2.117686px;}
._0{margin-left:-1.112728px;}
._e{width:1.047274px;}
._3{width:2.117686px;}
._4{width:3.547123px;}
._1{width:4.658908px;}
._c{width:5.725274px;}
._2{width:7.094247px;}
._9{width:8.811221px;}
._20{width:10.052365px;}
._21{width:12.852629px;}
._2f{width:15.655334px;}
._19{width:16.976270px;}
._12{width:18.523652px;}
._8{width:19.570925px;}
._13{width:25.874993px;}
._10{width:27.752750px;}
._1a{width:34.437139px;}
._1b{width:35.904872px;}
._16{width:41.890944px;}
._1f{width:45.538773px;}
._1e{width:64.294952px;}
._22{width:65.801146px;}
._1c{width:71.727588px;}
._1d{width:76.743913px;}
._6{width:80.410675px;}
._3c{width:95.285876px;}
._36{width:98.129679px;}
._40{width:100.508160px;}
._24{width:102.162888px;}
._44{width:104.115024px;}
._26{width:107.988444px;}
._41{width:121.059149px;}
._39{width:125.386842px;}
._43{width:128.162160px;}
._27{width:132.605277px;}
._34{width:135.473679px;}
._28{width:138.426444px;}
._35{width:140.500842px;}
._3d{width:142.807478px;}
._3f{width:144.192758px;}
._42{width:148.340160px;}
._3b{width:160.560832px;}
._29{width:163.041666px;}
._2a{width:168.864444px;}
._3a{width:186.264340px;}
._2b{width:193.472055px;}
._2c{width:199.302444px;}
._4d{width:205.061197px;}
._4a{width:207.220076px;}
._23{width:211.477561px;}
._4b{width:221.885792px;}
._2d{width:223.908444px;}
._31{width:230.735679px;}
._32{width:235.756842px;}
._33{width:257.992842px;}
._4c{width:264.755792px;}
._37{width:266.837679px;}
._45{width:307.213586px;}
._49{width:310.507435px;}
._46{width:318.753719px;}
._3e{width:336.392947px;}
._38{width:388.061421px;}
._48{width:455.751161px;}
._47{width:480.620422px;}
._25{width:497.382888px;}
._17{width:503.499922px;}
._2e{width:527.816055px;}
._b{width:597.716450px;}
._4e{width:866.108786px;}
._14{width:1028.102688px;}
._5{width:1044.782688px;}
._4f{width:1061.456688px;}
._d{width:1203.479430px;}
.fcf{color:rgb(143,89,3);}
.fce{color:rgb(0,0,207);}
.fcd{color:rgb(79,153,5);}
.fc0{color:rgb(255,255,255);}
.fc2{color:rgb(82,86,109);}
.fc7{color:rgb(249,206,194);}
.fc8{color:rgb(255,0,0);}
.fc3{color:transparent;}
.fc10{color:rgb(235,109,93);}
.fc1{color:rgb(0,0,0);}
.fc5{color:rgb(224,45,48);}
.fc9{color:rgb(180,68,57);}
.fc6{color:rgb(254,250,248);}
.fc4{color:rgb(252,230,223);}
.fca{color:rgb(232,103,88);}
.fcb{color:rgb(33,74,135);}
.fcc{color:rgb(207,92,0);}
.fs10{font-size:18.516433px;}
.fs19{font-size:18.964200px;}
.fsf{font-size:21.602392px;}
.fs11{font-size:21.869749px;}
.fs17{font-size:22.412377px;}
.fs18{font-size:23.364000px;}
.fse{font-size:26.058240px;}
.fs13{font-size:26.742241px;}
.fs7{font-size:27.204766px;}
.fs16{font-size:28.013760px;}
.fsa{font-size:29.315520px;}
.fs12{font-size:30.562561px;}
.fs9{font-size:31.738730px;}
.fsd{font-size:32.572800px;}
.fs4{font-size:35.865600px;}
.fs8{font-size:36.272891px;}
.fsb{font-size:39.087360px;}
.fs6{font-size:42.351660px;}
.fs1b{font-size:44.998744px;}
.fs2{font-size:47.820600px;}
.fs3{font-size:52.942140px;}
.fs1a{font-size:53.798400px;}
.fs5{font-size:59.775600px;}
.fs1{font-size:65.454600px;}
.fs0{font-size:86.077200px;}
.fs15{font-size:103.292400px;}
.fs14{font-size:123.975000px;}
.fsc{font-size:124.069189px;}
.y1b5{bottom:-644.259000px;}
.y1b4{bottom:-623.935500px;}
.y1b3{bottom:-603.612000px;}
.y1b2{bottom:-583.287000px;}
.y1b1{bottom:-562.963500px;}
.y1b0{bottom:-542.640000px;}
.y1af{bottom:-522.316500px;}
.y1ae{bottom:-501.993000px;}
.y1ad{bottom:-481.669500px;}
.y1ac{bottom:-461.344500px;}
.y1ab{bottom:-441.021000px;}
.y1aa{bottom:-420.697500px;}
.y1a9{bottom:-400.374000px;}
.y1a8{bottom:-380.050500px;}
.y1a7{bottom:-359.725500px;}
.y1a6{bottom:-339.402000px;}
.y1a5{bottom:-319.078500px;}
.y1a4{bottom:-298.755000px;}
.y1a3{bottom:-278.431500px;}
.y1a2{bottom:-258.108000px;}
.y1a1{bottom:-237.783000px;}
.y1a0{bottom:-217.459500px;}
.y19f{bottom:-197.136000px;}
.y19e{bottom:-176.812500px;}
.y19d{bottom:-156.489000px;}
.y19c{bottom:-136.164000px;}
.y19b{bottom:-115.840500px;}
.y19a{bottom:-95.517000px;}
.y199{bottom:-75.193500px;}
.y198{bottom:-54.870000px;}
.y1d1{bottom:-44.677500px;}
.y197{bottom:-34.546500px;}
.y1d0{bottom:-30.481500px;}
.y1cf{bottom:-16.284000px;}
.y196{bottom:-14.221500px;}
.y1ce{bottom:-2.088000px;}
.y0{bottom:0.000000px;}
.y163{bottom:2.626290px;}
.y16{bottom:3.871500px;}
.ya{bottom:3.873000px;}
.y1de{bottom:4.622702px;}
.y195{bottom:6.102000px;}
.y238{bottom:9.482338px;}
.y1db{bottom:10.138351px;}
.y1dd{bottom:11.104606px;}
.y1cd{bottom:12.109500px;}
.ye3{bottom:12.574588px;}
.y161{bottom:14.837855px;}
.yf5{bottom:15.374646px;}
.y23a{bottom:15.508852px;}
.y1df{bottom:16.223458px;}
.y20{bottom:16.317131px;}
.yf1{bottom:16.324967px;}
.y8{bottom:19.201500px;}
.yaa{bottom:19.451197px;}
.y114{bottom:20.316000px;}
.y9{bottom:20.397402px;}
.y237{bottom:21.535364px;}
.y236{bottom:21.535366px;}
.yf6{bottom:21.876000px;}
.ye2{bottom:22.125389px;}
.y121{bottom:22.444500px;}
.y82{bottom:22.466975px;}
.y155{bottom:22.980038px;}
.yf0{bottom:23.159264px;}
.yae{bottom:24.084000px;}
.y233{bottom:24.504000px;}
.y1ea{bottom:25.404000px;}
.y2e{bottom:25.428000px;}
.y31{bottom:25.753500px;}
.y1cc{bottom:26.305500px;}
.y194{bottom:26.425500px;}
.y34{bottom:26.850000px;}
.y239{bottom:27.561878px;}
.ya9{bottom:27.594397px;}
.y53{bottom:29.184000px;}
.y90{bottom:29.488500px;}
.yef{bottom:29.993561px;}
.y291{bottom:31.885500px;}
.y20b{bottom:32.272500px;}
.y219{bottom:32.322000px;}
.y156{bottom:33.310795px;}
.y1e{bottom:33.366000px;}
.yad{bottom:33.450000px;}
.y2ac{bottom:34.405500px;}
.y52{bottom:35.367000px;}
.y1e0{bottom:35.507699px;}
.ya8{bottom:35.737597px;}
.y13c{bottom:35.949000px;}
.yee{bottom:36.827857px;}
.y242{bottom:37.119000px;}
.yea{bottom:37.365091px;}
.y2c5{bottom:39.783000px;}
.y235{bottom:40.016671px;}
.y1cb{bottom:40.503000px;}
.y232{bottom:40.942500px;}
.y1dc{bottom:41.188944px;}
.y272{bottom:41.667000px;}
.y1e9{bottom:41.842500px;}
.y12d{bottom:41.860500px;}
.yed{bottom:43.662154px;}
.y157{bottom:43.682590px;}
.ya7{bottom:43.880797px;}
.y2ba{bottom:43.975500px;}
.ye9{bottom:44.199388px;}
.ye6{bottom:44.272207px;}
.y113{bottom:45.123000px;}
.y2d{bottom:45.751500px;}
.y30{bottom:46.077000px;}
.y290{bottom:46.081500px;}
.y20a{bottom:46.470000px;}
.y218{bottom:46.518000px;}
.y46{bottom:46.626000px;}
.y193{bottom:46.749000px;}
.y2af{bottom:47.005500px;}
.y33{bottom:47.173500px;}
.y9f{bottom:47.472090px;}
.y81{bottom:47.569738px;}
.y99{bottom:47.926426px;}
.y40{bottom:48.274500px;}
.y43{bottom:49.285500px;}
.y84{bottom:49.750663px;}
.ya5{bottom:51.805554px;}
.ya6{bottom:52.023997px;}
.y162{bottom:52.300104px;}
.yec{bottom:52.546740px;}
.ye8{bottom:53.083973px;}
.ye5{bottom:53.156793px;}
.yac{bottom:53.775000px;}
.y158{bottom:54.013347px;}
.y8f{bottom:54.295500px;}
.y1ca{bottom:54.699000px;}
.y1e1{bottom:54.791940px;}
.y9c{bottom:56.079133px;}
.y1d{bottom:56.931000px;}
.y231{bottom:57.381000px;}
.y241{bottom:57.442500px;}
.y1fd{bottom:57.456000px;}
.y184{bottom:57.946500px;}
.y1e8{bottom:58.281000px;}
.y154{bottom:58.560000px;}
.y171{bottom:58.792500px;}
.y9e{bottom:58.934837px;}
.y2ab{bottom:59.212500px;}
.y25f{bottom:59.223000px;}
.yeb{bottom:59.381036px;}
.ye7{bottom:59.918270px;}
.ye4{bottom:59.991090px;}
.y2c4{bottom:60.106500px;}
.y51{bottom:60.174000px;}
.y28f{bottom:60.279000px;}
.y209{bottom:60.666000px;}
.y217{bottom:60.715500px;}
.y13b{bottom:60.754500px;}
.y83{bottom:61.086068px;}
.y120{bottom:61.894500px;}
.y64{bottom:61.984248px;}
.y29a{bottom:62.947500px;}
.y98{bottom:63.408013px;}
.ya3{bottom:63.741727px;}
.y159{bottom:64.344105px;}
.y271{bottom:66.474000px;}
.y12c{bottom:66.667500px;}
.y192{bottom:67.072500px;}
.y24d{bottom:67.525500px;}
.y1c9{bottom:68.896500px;}
.y2b9{bottom:69.577500px;}
.y45{bottom:71.433000px;}
.y2ae{bottom:71.812500px;}
.y183{bottom:72.144000px;}
.y3f{bottom:73.081500px;}
.y63{bottom:73.319653px;}
.ya4{bottom:74.017330px;}
.y1e2{bottom:74.076182px;}
.y42{bottom:74.092500px;}
.yab{bottom:74.098500px;}
.y28e{bottom:74.475000px;}
.y15a{bottom:74.715898px;}
.y208{bottom:74.863500px;}
.y216{bottom:74.911500px;}
.y9b{bottom:76.233553px;}
.y1fc{bottom:77.781000px;}
.y1da{bottom:78.782342px;}
.y8e{bottom:79.102500px;}
.y25e{bottom:79.546500px;}
.y2c3{bottom:80.430000px;}
.y240{bottom:82.249500px;}
.y230{bottom:82.929000px;}
.y1c8{bottom:83.092500px;}
.ydb{bottom:83.193698px;}
.y2aa{bottom:84.019500px;}
.yb9{bottom:84.089086px;}
.y13a{bottom:84.321000px;}
.y14d{bottom:84.607500px;}
.y50{bottom:84.981000px;}
.y15b{bottom:85.046657px;}
.y1d9{bottom:85.318786px;}
.y299{bottom:86.121000px;}
.y182{bottom:86.340000px;}
.y11f{bottom:86.701500px;}
.y270{bottom:86.797500px;}
.y12b{bottom:86.991000px;}
.y191{bottom:87.397500px;}
.y24c{bottom:87.849000px;}
.y28d{bottom:88.672500px;}
.yc2{bottom:89.041583px;}
.y207{bottom:89.059500px;}
.y215{bottom:89.109000px;}
.yda{bottom:90.027994px;}
.ybf{bottom:90.565228px;}
.ya0{bottom:90.673358px;}
.yb8{bottom:90.923383px;}
.y15{bottom:91.023000px;}
.y1e3{bottom:93.360423px;}
.y15c{bottom:95.384639px;}
.y44{bottom:96.243000px;}
.y2ad{bottom:96.540000px;}
.yd9{bottom:96.862291px;}
.y41{bottom:97.264500px;}
.y1c7{bottom:97.290000px;}
.ybe{bottom:97.399525px;}
.yb7{bottom:97.757680px;}
.y3e{bottom:97.891500px;}
.yc1{bottom:97.926169px;}
.y25d{bottom:99.870000px;}
.y1e7{bottom:100.222500px;}
.y181{bottom:100.537500px;}
.y2c2{bottom:100.755000px;}
.y1fb{bottom:100.953000px;}
.y28c{bottom:102.868500px;}
.y22f{bottom:103.252500px;}
.y206{bottom:103.257000px;}
.y1a{bottom:103.275000px;}
.y214{bottom:103.305000px;}
.yd8{bottom:103.696588px;}
.y8d{bottom:103.911000px;}
.ybd{bottom:104.233822px;}
.yb6{bottom:104.591976px;}
.yc0{bottom:104.760466px;}
.y14c{bottom:104.931000px;}
.y91{bottom:105.456000px;}
.y15d{bottom:105.715397px;}
.y23f{bottom:107.058000px;}
.y190{bottom:107.721000px;}
.y2a9{bottom:109.221000px;}
.y4f{bottom:109.788000px;}
.yd7{bottom:110.530885px;}
.ybc{bottom:111.068118px;}
.yb5{bottom:111.426273px;}
.y1c6{bottom:111.486000px;}
.y26f{bottom:111.604500px;}
.y12a{bottom:111.798000px;}
.y11e{bottom:111.903000px;}
.y1e4{bottom:112.644664px;}
.y24b{bottom:112.656000px;}
.y94{bottom:113.299486px;}
.y75{bottom:113.299818px;}
.y1d5{bottom:114.420000px;}
.y180{bottom:114.733500px;}
.y254{bottom:114.865500px;}
.y15e{bottom:116.046154px;}
.y28b{bottom:117.066000px;}
.y1f2{bottom:117.267000px;}
.y27a{bottom:117.355500px;}
.y205{bottom:118.051500px;}
.y213{bottom:118.099500px;}
.y1d8{bottom:119.377458px;}
.yd6{bottom:119.415470px;}
.y2b8{bottom:119.506500px;}
.ybb{bottom:119.952704px;}
.yb4{bottom:120.310859px;}
.y25c{bottom:120.792000px;}
.y2c1{bottom:121.078500px;}
.y7{bottom:121.104000px;}
.y9a{bottom:121.428313px;}
.y139{bottom:122.388000px;}
.y74{bottom:123.218425px;}
.y14b{bottom:125.254500px;}
.y1c5{bottom:125.683500px;}
.yd5{bottom:126.249767px;}
.y15f{bottom:126.421368px;}
.y60{bottom:126.668534px;}
.yba{bottom:126.787001px;}
.y76{bottom:126.880404px;}
.yb3{bottom:127.145155px;}
.y18f{bottom:128.044500px;}
.y19{bottom:128.082000px;}
.y17f{bottom:128.931000px;}
.y281{bottom:129.315000px;}
.y1e6{bottom:129.365416px;}
.y116{bottom:130.243500px;}
.y28a{bottom:131.262000px;}
.y22e{bottom:131.895000px;}
.y26e{bottom:131.928000px;}
.y1e5{bottom:131.928905px;}
.y298{bottom:132.924000px;}
.y4e{bottom:134.598000px;}
.y253{bottom:135.189000px;}
.y1f1{bottom:135.199500px;}
.y129{bottom:136.605000px;}
.y5f{bottom:136.709636px;}
.y160{bottom:136.748706px;}
.y2b7{bottom:137.440500px;}
.y24a{bottom:137.463000px;}
.y279{bottom:137.680500px;}
.y14{bottom:139.753500px;}
.y1c4{bottom:139.879500px;}
.y1fa{bottom:139.975500px;}
.y6{bottom:141.427500px;}
.y204{bottom:141.580500px;}
.y212{bottom:141.630000px;}
.y17e{bottom:143.127000px;}
.yd1{bottom:144.336036px;}
.y289{bottom:145.459500px;}
.y14a{bottom:145.579500px;}
.y1d7{bottom:147.113019px;}
.y138{bottom:147.195000px;}
.y18e{bottom:148.368000px;}
.y10{bottom:148.497000px;}
.y22d{bottom:148.930500px;}
.y280{bottom:149.638500px;}
.yd0{bottom:151.170333px;}
.yc9{bottom:151.243152px;}
.y23e{bottom:151.602000px;}
.y222{bottom:151.840500px;}
.y9d{bottom:152.190612px;}
.y18{bottom:152.889000px;}
.y6d{bottom:153.464239px;}
.y1d6{bottom:153.649463px;}
.y1c3{bottom:154.077000px;}
.y73{bottom:154.970405px;}
.ya2{bottom:155.013419px;}
.y25b{bottom:155.335500px;}
.y1f0{bottom:156.121500px;}
.y26d{bottom:156.735000px;}
.y17d{bottom:157.324500px;}
.y297{bottom:157.731000px;}
.y11d{bottom:157.732500px;}
.ycf{bottom:158.004629px;}
.ye1{bottom:158.077445px;}
.yc8{bottom:158.077449px;}
.y2b6{bottom:158.361000px;}
.y55{bottom:158.640324px;}
.y252{bottom:159.997500px;}
.y1f9{bottom:160.299000px;}
.y32{bottom:161.064000px;}
.y128{bottom:161.415000px;}
.y5{bottom:161.751000px;}
.y2f{bottom:162.159000px;}
.y2c{bottom:162.484500px;}
.y278{bottom:162.487500px;}
.y6c{bottom:163.382846px;}
.yce{bottom:164.838926px;}
.y72{bottom:164.889012px;}
.ye0{bottom:164.911742px;}
.yc7{bottom:164.911745px;}
.y22c{bottom:165.369000px;}
.y149{bottom:165.903000px;}
.y1c2{bottom:168.273000px;}
.y79{bottom:168.468162px;}
.y54{bottom:168.681426px;}
.y18d{bottom:168.691500px;}
.y95{bottom:169.676773px;}
.y221{bottom:170.371500px;}
.y17c{bottom:171.520500px;}
.ycd{bottom:171.673223px;}
.ydf{bottom:171.746039px;}
.yc6{bottom:171.746042px;}
.y137{bottom:172.002000px;}
.yf{bottom:173.304000px;}
.y249{bottom:174.204000px;}
.y27f{bottom:174.445500px;}
.y5e{bottom:174.865838px;}
.y23d{bottom:176.409000px;}
.yd4{bottom:177.684950px;}
.y4d{bottom:177.777000px;}
.y17{bottom:178.090500px;}
.y78{bottom:178.386753px;}
.ycc{bottom:178.507519px;}
.y1ef{bottom:178.537500px;}
.yde{bottom:178.580335px;}
.yc5{bottom:178.580339px;}
.y25a{bottom:180.537000px;}
.y1f8{bottom:180.624000px;}
.y2b5{bottom:180.777000px;}
.y296{bottom:180.903000px;}
.y26c{bottom:181.545000px;}
.y22b{bottom:181.807500px;}
.y1c1{bottom:182.470500px;}
.y96{bottom:182.502313px;}
.y11c{bottom:182.539500px;}
.y7c{bottom:182.784260px;}
.y277{bottom:182.811000px;}
.y7f{bottom:183.523293px;}
.y2c0{bottom:185.371500px;}
.y17b{bottom:185.718000px;}
.y211{bottom:185.829000px;}
.y203{bottom:185.860500px;}
.yd3{bottom:186.569536px;}
.y148{bottom:186.823500px;}
.y57{bottom:186.915169px;}
.ycb{bottom:187.392105px;}
.ydd{bottom:187.464921px;}
.yc4{bottom:187.464925px;}
.y80{bottom:188.145212px;}
.y220{bottom:188.304000px;}
.y77{bottom:188.304860px;}
.y13{bottom:188.485500px;}
.y18c{bottom:189.015000px;}
.y12f{bottom:189.334500px;}
.y288{bottom:191.937000px;}
.yd2{bottom:193.403833px;}
.y7b{bottom:194.119665px;}
.yca{bottom:194.226402px;}
.ydc{bottom:194.299218px;}
.yc3{bottom:194.299221px;}
.y27e{bottom:194.769000px;}
.y7e{bottom:194.858698px;}
.y5c{bottom:194.948050px;}
.y248{bottom:195.126000px;}
.y136{bottom:195.175500px;}
.y1c0{bottom:196.666500px;}
.y58{bottom:196.956272px;}
.ye{bottom:198.111000px;}
.y22a{bottom:198.246000px;}
.y1ee{bottom:198.861000px;}
.y17a{bottom:199.914000px;}
.y251{bottom:200.053500px;}
.y97{bottom:200.213773px;}
.y4{bottom:200.740500px;}
.y23c{bottom:201.216000px;}
.ya1{bottom:202.491472px;}
.y4c{bottom:202.584000px;}
.y88{bottom:203.017500px;}
.y5d{bottom:204.989152px;}
.y7a{bottom:205.455071px;}
.y2bf{bottom:205.695000px;}
.y1f7{bottom:205.743000px;}
.y7d{bottom:206.194104px;}
.y22{bottom:206.229000px;}
.y21f{bottom:206.236500px;}
.y56{bottom:206.997381px;}
.y11b{bottom:207.348000px;}
.y276{bottom:207.618000px;}
.y2b4{bottom:208.573500px;}
.y127{bottom:208.684500px;}
.y18b{bottom:209.340000px;}
.y210{bottom:210.636000px;}
.y202{bottom:210.667500px;}
.y1bf{bottom:210.864000px;}
.y287{bottom:212.260500px;}
.y179{bottom:214.111500px;}
.y229{bottom:214.684500px;}
.y247{bottom:215.449500px;}
.y153{bottom:216.163500px;}
.y12e{bottom:216.234000px;}
.y170{bottom:216.396000px;}
.y66{bottom:219.047717px;}
.y93{bottom:219.146715px;}
.y27d{bottom:219.576000px;}
.y250{bottom:220.377000px;}
.yd{bottom:222.918000px;}
.y259{bottom:222.922500px;}
.y71{bottom:223.751976px;}
.y21e{bottom:224.170500px;}
.y10d{bottom:224.950263px;}
.y1be{bottom:225.060000px;}
.y106{bottom:225.487496px;}
.yff{bottom:225.560316px;}
.y23b{bottom:226.023000px;}
.y1ed{bottom:226.657500px;}
.y59{bottom:227.079586px;}
.y4b{bottom:227.391000px;}
.y87{bottom:227.824500px;}
.y275{bottom:227.941500px;}
.y295{bottom:228.172500px;}
.y178{bottom:228.307500px;}
.y135{bottom:228.385500px;}
.y264{bottom:228.814500px;}
.y2b3{bottom:229.495500px;}
.y18a{bottom:229.663500px;}
.y152{bottom:230.359500px;}
.y65{bottom:230.383123px;}
.y2be{bottom:230.502000px;}
.y16f{bottom:230.592000px;}
.y21{bottom:230.956500px;}
.y20f{bottom:230.959500px;}
.y201{bottom:230.992500px;}
.y228{bottom:231.123000px;}
.y10c{bottom:231.784559px;}
.y105{bottom:232.321793px;}
.yfe{bottom:232.394613px;}
.y10e{bottom:232.799164px;}
.y70{bottom:233.670575px;}
.y6b{bottom:233.793081px;}
.y92{bottom:234.415213px;}
.y3{bottom:234.675000px;}
.y5a{bottom:235.112976px;}
.y141{bottom:235.260000px;}
.y246{bottom:235.773000px;}
.y126{bottom:236.479500px;}
.y286{bottom:237.067500px;}
.y12{bottom:237.217500px;}
.y10b{bottom:238.618856px;}
.y104{bottom:239.156090px;}
.yfd{bottom:239.228909px;}
.y1bd{bottom:239.257500px;}
.y27c{bottom:239.899500px;}
.y24f{bottom:240.700500px;}
.y115{bottom:241.911000px;}
.y21d{bottom:242.103000px;}
.y177{bottom:242.505000px;}
.y258{bottom:243.246000px;}
.y6a{bottom:243.711680px;}
.y151{bottom:244.557000px;}
.y1f6{bottom:244.765500px;}
.y16e{bottom:244.789500px;}
.y10a{bottom:245.453153px;}
.y103{bottom:245.990386px;}
.yfc{bottom:246.063206px;}
.y134{bottom:246.319500px;}
.y227{bottom:247.560000px;}
.y1ec{bottom:247.578000px;}
.yc{bottom:247.725000px;}
.y274{bottom:248.265000px;}
.y263{bottom:249.138000px;}
.y140{bottom:249.456000px;}
.y189{bottom:249.987000px;}
.y2bd{bottom:250.825500px;}
.y4a{bottom:252.198000px;}
.y109{bottom:252.287449px;}
.y86{bottom:252.631500px;}
.y2b2{bottom:252.667500px;}
.y102{bottom:252.824683px;}
.yfb{bottom:252.897503px;}
.y294{bottom:252.979500px;}
.y11a{bottom:253.179000px;}
.y1bc{bottom:253.453500px;}
.y125{bottom:254.413500px;}
.y5b{bottom:255.194685px;}
.y20e{bottom:255.687000px;}
.y200{bottom:255.718500px;}
.y245{bottom:256.098000px;}
.y176{bottom:256.701000px;}
.y285{bottom:257.391000px;}
.y150{bottom:258.753000px;}
.y16d{bottom:258.987000px;}
.y21c{bottom:260.035500px;}
.y24e{bottom:261.025500px;}
.y108{bottom:261.172035px;}
.y101{bottom:261.709269px;}
.yfa{bottom:261.782088px;}
.y234{bottom:262.490527px;}
.y257{bottom:263.569500px;}
.y13f{bottom:263.653500px;}
.y226{bottom:263.998500px;}
.y133{bottom:264.252000px;}
.y27b{bottom:264.709500px;}
.y1f5{bottom:265.090500px;}
.y110{bottom:266.515769px;}
.y1bb{bottom:267.651000px;}
.y6f{bottom:267.932839px;}
.y107{bottom:268.006332px;}
.y1f{bottom:268.480500px;}
.y100{bottom:268.543566px;}
.yf9{bottom:268.616385px;}
.y1eb{bottom:269.994000px;}
.y188{bottom:270.310500px;}
.y175{bottom:270.898500px;}
.y273{bottom:273.075000px;}
.y262{bottom:273.945000px;}
.y10f{bottom:274.872720px;}
.y124{bottom:275.334000px;}
.y244{bottom:276.421500px;}
.y49{bottom:277.005000px;}
.y14f{bottom:277.432500px;}
.y16c{bottom:277.666500px;}
.y293{bottom:277.786500px;}
.y13e{bottom:277.849500px;}
.y6e{bottom:277.851438px;}
.y119{bottom:277.986000px;}
.y21b{bottom:278.566500px;}
.y225{bottom:280.437000px;}
.y1ba{bottom:281.847000px;}
.y132{bottom:282.184500px;}
.y284{bottom:282.198000px;}
.y69{bottom:283.998607px;}
.y256{bottom:284.491500px;}
.y174{bottom:285.094500px;}
.y1f4{bottom:285.414000px;}
.y11{bottom:285.948000px;}
.y1d4{bottom:290.365500px;}
.y187{bottom:290.634000px;}
.y13d{bottom:292.047000px;}
.y62{bottom:293.827843px;}
.y68{bottom:293.917206px;}
.y2b1{bottom:294.946500px;}
.y1b9{bottom:296.044500px;}
.y243{bottom:297.343500px;}
.y2bc{bottom:297.348000px;}
.y224{bottom:297.474000px;}
.y123{bottom:297.750000px;}
.y2{bottom:298.204500px;}
.yf8{bottom:298.627115px;}
.y261{bottom:298.752000px;}
.y20d{bottom:298.866000px;}
.yf7{bottom:298.883404px;}
.y1ff{bottom:298.899000px;}
.y173{bottom:299.292000px;}
.y48{bottom:300.570000px;}
.y14e{bottom:302.242500px;}
.y16b{bottom:302.475000px;}
.y283{bottom:302.521500px;}
.y292{bottom:302.593500px;}
.y21a{bottom:303.073500px;}
.y118{bottom:303.097500px;}
.y67{bottom:304.119976px;}
.y61{bottom:305.163249px;}
.yf4{bottom:305.461453px;}
.yf2{bottom:305.717739px;}
.yf3{bottom:305.717741px;}
.y1f3{bottom:305.737500px;}
.y1b8{bottom:310.240500px;}
.y186{bottom:310.959000px;}
.y1d3{bottom:312.183000px;}
.yb2{bottom:312.295708px;}
.yb1{bottom:312.295710px;}
.yb0{bottom:312.551994px;}
.y172{bottom:313.488000px;}
.y2b0{bottom:315.270000px;}
.y131{bottom:317.182500px;}
.y2bb{bottom:317.671500px;}
.yaf{bottom:319.130005px;}
.y122{bottom:320.923500px;}
.y223{bottom:322.572000px;}
.y260{bottom:323.560500px;}
.y20c{bottom:323.674500px;}
.y1fe{bottom:323.707500px;}
.y1{bottom:323.908500px;}
.y1b7{bottom:324.438000px;}
.y255{bottom:327.253500px;}
.y282{bottom:327.331500px;}
.y185{bottom:331.879500px;}
.y47{bottom:332.125500px;}
.y1d2{bottom:332.508000px;}
.y117{bottom:333.255000px;}
.y85{bottom:337.000500px;}
.y130{bottom:337.506000px;}
.y1b6{bottom:338.634000px;}
.yb{bottom:362.751000px;}
.y112{bottom:3020.354685px;}
.y25{bottom:3025.466685px;}
.y28{bottom:3025.792185px;}
.y2b{bottom:3026.888685px;}
.y8c{bottom:3029.527185px;}
.y1c{bottom:3033.404685px;}
.y2a5{bottom:3034.444185px;}
.y26b{bottom:3041.705685px;}
.y111{bottom:3045.161685px;}
.y24{bottom:3045.790185px;}
.y27{bottom:3046.115685px;}
.y29e{bottom:3046.639185px;}
.y3d{bottom:3046.664685px;}
.y2a8{bottom:3047.044185px;}
.y2a{bottom:3047.212185px;}
.y37{bottom:3048.313185px;}
.y3a{bottom:3049.324185px;}
.y8b{bottom:3054.334185px;}
.y1b{bottom:3056.969685px;}
.y16a{bottom:3058.831185px;}
.y2a1{bottom:3059.239185px;}
.y2a4{bottom:3059.251185px;}
.y26a{bottom:3066.512685px;}
.y29d{bottom:3071.446185px;}
.y3c{bottom:3071.471685px;}
.y2a7{bottom:3071.851185px;}
.y36{bottom:3073.120185px;}
.y39{bottom:3074.131185px;}
.y8a{bottom:3079.141185px;}
.y2a0{bottom:3084.046185px;}
.y2a3{bottom:3084.058185px;}
.y147{bottom:3084.646185px;}
.y269{bottom:3086.836185px;}
.y29c{bottom:3096.253185px;}
.y3b{bottom:3096.281685px;}
.y2a6{bottom:3096.578685px;}
.y38{bottom:3097.303185px;}
.y35{bottom:3097.930185px;}
.y89{bottom:3103.949685px;}
.y146{bottom:3104.969685px;}
.y29f{bottom:3108.772185px;}
.y2a2{bottom:3109.259685px;}
.y268{bottom:3111.643185px;}
.y29b{bottom:3121.454685px;}
.y145{bottom:3125.293185px;}
.y267{bottom:3131.966685px;}
.y144{bottom:3145.618185px;}
.y266{bottom:3156.773685px;}
.y29{bottom:3161.102685px;}
.y26{bottom:3162.197685px;}
.y23{bottom:3162.523185px;}
.y143{bottom:3165.941685px;}
.y265{bottom:3181.583685px;}
.y142{bottom:3186.862185px;}
.y169{bottom:3216.434685px;}
.y168{bottom:3230.630685px;}
.y167{bottom:3244.828185px;}
.y166{bottom:3259.025685px;}
.y165{bottom:3277.705185px;}
.y164{bottom:3302.513685px;}
.h29{height:-2676.154185px;}
.h18{height:14.068149px;}
.h1d{height:15.387598px;}
.h1c{height:15.387610px;}
.h17{height:16.412755px;}
.h1a{height:16.615884px;}
.h19{height:16.733348px;}
.h2e{height:17.617742px;}
.h15{height:19.798155px;}
.h1e{height:20.317835px;}
.hc{height:20.669246px;}
.h26{height:21.283892px;}
.h2b{height:21.705156px;}
.h11{height:21.722800px;}
.h10{height:22.272924px;}
.h1b{height:23.220383px;}
.he{height:24.113996px;}
.h7{height:25.392845px;}
.h14{height:27.371390px;}
.h28{height:27.398067px;}
.h27{height:27.533314px;}
.hd{height:27.558896px;}
.ha{height:28.206206px;}
.h12{height:28.963734px;}
.h2c{height:31.702164px;}
.h30{height:33.856985px;}
.h2f{height:35.187825px;}
.h6{height:35.259465px;}
.h4{height:35.530706px;}
.h24{height:35.961091px;}
.h31{height:38.089267px;}
.h8{height:41.037857px;}
.h35{height:41.578840px;}
.h39{height:41.723369px;}
.h21{height:42.321125px;}
.h23{height:44.413271px;}
.h3{height:46.341857px;}
.h20{height:48.632768px;}
.h33{height:51.108480px;}
.h38{height:56.786820px;}
.h34{height:60.666893px;}
.h2{height:60.942658px;}
.h32{height:62.181870px;}
.h9{height:72.840146px;}
.h22{height:73.131019px;}
.h1f{height:87.774300px;}
.h36{height:89.790940px;}
.h5{height:91.054594px;}
.h13{height:91.935269px;}
.h37{height:138.003049px;}
.h25{height:148.823100px;}
.h2a{height:163.847059px;}
.h2d{height:163.850688px;}
.hf{height:246.630013px;}
.hb{height:312.275865px;}
.h16{height:328.001922px;}
.h1{height:382.500000px;}
.h0{height:382.677000px;}
.w8{width:-2674.055685px;}
.w9{width:178.669952px;}
.wa{width:218.467584px;}
.w7{width:297.646200px;}
.w3{width:333.363113px;}
.w2{width:416.724081px;}
.w4{width:583.333957px;}
.w6{width:595.267192px;}
.w5{width:595.276717px;}
.wb{width:656.488095px;}
.w1{width:680.250000px;}
.w0{width:680.314500px;}
.x0{left:0.000000px;}
.x60{left:4.433202px;}
.x34{left:6.145841px;}
.x6f{left:7.176011px;}
.x7d{left:9.366417px;}
.x86{left:11.944483px;}
.x5b{left:14.106881px;}
.x81{left:16.248000px;}
.xb{left:18.136500px;}
.x76{left:20.418000px;}
.x20{left:22.747500px;}
.x7b{left:26.457820px;}
.x78{left:28.347000px;}
.x7a{left:30.913622px;}
.x79{left:33.143233px;}
.x17{left:36.141000px;}
.x6d{left:37.465116px;}
.x6e{left:39.189710px;}
.xd{left:43.275000px;}
.x7c{left:44.291287px;}
.x48{left:45.470220px;}
.x26{left:48.475500px;}
.x8a{left:53.536500px;}
.x21{left:55.474500px;}
.x5f{left:60.995158px;}
.x89{left:62.869500px;}
.x37{left:72.515952px;}
.x9d{left:73.596000px;}
.xc{left:75.247500px;}
.x6c{left:76.922058px;}
.x94{left:86.380013px;}
.x72{left:92.069107px;}
.x9a{left:95.410500px;}
.x12{left:96.786303px;}
.x58{left:98.638558px;}
.x4e{left:100.108156px;}
.x83{left:101.889931px;}
.x85{left:106.619844px;}
.x75{left:107.974500px;}
.x57{left:108.998260px;}
.x54{left:112.735681px;}
.x87{left:114.111740px;}
.x9{left:120.988740px;}
.x88{left:125.155500px;}
.x3a{left:126.453163px;}
.x3b{left:129.382179px;}
.x4f{left:130.472405px;}
.x8{left:131.812500px;}
.x4{left:135.186000px;}
.xa{left:136.401000px;}
.x3c{left:139.423284px;}
.x13{left:141.831000px;}
.x52{left:143.272681px;}
.x38{left:145.590030px;}
.x39{left:149.464385px;}
.x7e{left:155.053700px;}
.x43{left:159.505492px;}
.x42{left:161.186963px;}
.x82{left:163.392000px;}
.x61{left:165.708040px;}
.x10{left:167.407500px;}
.x49{left:168.848572px;}
.x11{left:173.481000px;}
.x5c{left:191.216674px;}
.xa4{left:193.105500px;}
.x64{left:203.041017px;}
.x53{left:204.346681px;}
.x30{left:208.656567px;}
.xa5{left:211.782000px;}
.x2f{left:218.697670px;}
.x51{left:219.865680px;}
.x62{left:224.969974px;}
.x99{left:226.620000px;}
.x2{left:228.517500px;}
.x2d{left:230.173402px;}
.x32{left:233.964587px;}
.x33{left:238.835211px;}
.x2e{left:240.214505px;}
.x31{left:245.218740px;}
.x22{left:247.885500px;}
.x74{left:249.330000px;}
.x18{left:250.866000px;}
.x27{left:252.216513px;}
.x63{left:253.238935px;}
.x6{left:254.919000px;}
.x2c{left:258.288494px;}
.x1{left:259.869000px;}
.x2b{left:263.680989px;}
.x28{left:265.269952px;}
.x6a{left:267.492704px;}
.xa6{left:269.406000px;}
.x29{left:273.722098px;}
.x3{left:278.695500px;}
.x23{left:280.614000px;}
.x2a{left:283.763201px;}
.xa7{left:288.082500px;}
.x50{left:293.478826px;}
.x5{left:298.111500px;}
.x55{left:299.402400px;}
.x8e{left:308.691000px;}
.x7{left:314.581500px;}
.x4a{left:316.363173px;}
.x84{left:322.305000px;}
.x41{left:324.531684px;}
.x40{left:326.910541px;}
.x3f{left:330.729966px;}
.x44{left:332.895275px;}
.x5a{left:335.157015px;}
.x3e{left:337.116520px;}
.x4b{left:338.293500px;}
.x3d{left:344.865230px;}
.x47{left:354.223729px;}
.xa8{left:356.524500px;}
.x59{left:362.978784px;}
.x8b{left:364.252500px;}
.x4c{left:371.020500px;}
.xa9{left:375.201000px;}
.x9e{left:384.298500px;}
.x9c{left:385.387500px;}
.x8c{left:389.520000px;}
.x9b{left:401.551500px;}
.x67{left:403.703647px;}
.x8d{left:404.799000px;}
.x71{left:406.091375px;}
.x65{left:407.740153px;}
.x66{left:411.392232px;}
.xa3{left:413.862000px;}
.x96{left:415.427599px;}
.x95{left:423.864718px;}
.x8f{left:438.532500px;}
.x35{left:442.176875px;}
.x92{left:444.208500px;}
.x56{left:446.079652px;}
.x93{left:449.251500px;}
.x90{left:455.715000px;}
.x24{left:461.125500px;}
.x45{left:462.785210px;}
.x19{left:465.589500px;}
.x36{left:469.815476px;}
.x91{left:473.347500px;}
.x46{left:485.752395px;}
.x5e{left:487.238394px;}
.x69{left:492.609352px;}
.x25{left:493.852500px;}
.x70{left:508.178734px;}
.x6b{left:513.123337px;}
.x73{left:514.190183px;}
.x68{left:516.420894px;}
.x5d{left:517.763165px;}
.x98{left:594.615900px;}
.x97{left:607.070698px;}
.x1a{left:3022.786185px;}
.x9f{left:3028.385685px;}
.x14{left:3036.179685px;}
.xe{left:3042.557685px;}
.x1b{left:3055.513185px;}
.xa0{left:3061.112685px;}
.x4d{left:3075.286185px;}
.xf{left:3167.446185px;}
.x1c{left:3247.924185px;}
.x15{left:3250.904685px;}
.x77{left:3273.212685px;}
.x1d{left:3280.652685px;}
.x80{left:3332.267685px;}
.x7f{left:3354.370185px;}
.xa1{left:3413.900685px;}
.xa2{left:3446.627685px;}
.x1e{left:3461.164185px;}
.x16{left:3465.628185px;}
.x1f{left:3493.891185px;}
@media print{
.v1{vertical-align:-4.714667pt;}
.v3{vertical-align:-0.911240pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:2.875507pt;}
.v4{vertical-align:9.337920pt;}
.v5{vertical-align:15.617852pt;}
.v6{vertical-align:42.855200pt;}
.ls0{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.000725pt;}
.ls17{letter-spacing:0.000946pt;}
.ls11{letter-spacing:0.001174pt;}
.ls9{letter-spacing:0.015843pt;}
.ls16{letter-spacing:5.313400pt;}
.ls4{letter-spacing:7.272733pt;}
.ls2{letter-spacing:14.545467pt;}
.lsd{letter-spacing:20.960640pt;}
.ls12{letter-spacing:27.189095pt;}
.ls13{letter-spacing:27.189351pt;}
.ls15{letter-spacing:27.200725pt;}
.ls7{letter-spacing:27.202882pt;}
.ls6{letter-spacing:27.204608pt;}
.lsc{letter-spacing:27.206059pt;}
.ls10{letter-spacing:27.629680pt;}
.lsf{letter-spacing:32.683392pt;}
.lse{letter-spacing:32.688037pt;}
.ls1{letter-spacing:46.666152pt;}
.ls5{letter-spacing:63.756885pt;}
.lsb{letter-spacing:63.762219pt;}
.ls8{letter-spacing:118.167552pt;}
.ls14{letter-spacing:172.578219pt;}
.ls3{letter-spacing:205.542534pt;}
.ws13{word-spacing:-27.550000pt;}
.ws16{word-spacing:-21.818200pt;}
.ws2{word-spacing:-14.545467pt;}
.ws7d{word-spacing:-13.283467pt;}
.ws6c{word-spacing:-11.955200pt;}
.wsf{word-spacing:-11.702746pt;}
.ws6{word-spacing:-11.220414pt;}
.ws6d{word-spacing:-9.999721pt;}
.ws7{word-spacing:-9.817847pt;}
.wsa{word-spacing:-9.658921pt;}
.ws2d{word-spacing:-7.893655pt;}
.ws9{word-spacing:-7.244191pt;}
.ws2c{word-spacing:-6.315310pt;}
.wse{word-spacing:-6.087074pt;}
.wsd{word-spacing:-5.217519pt;}
.ws4{word-spacing:-1.338183pt;}
.ws79{word-spacing:-0.465455pt;}
.ws7e{word-spacing:-0.116364pt;}
.ws5d{word-spacing:-0.058182pt;}
.ws1c{word-spacing:-0.042507pt;}
.ws8{word-spacing:-0.026058pt;}
.ws10{word-spacing:-0.019440pt;}
.ws7a{word-spacing:-0.003729pt;}
.ws61{word-spacing:-0.003478pt;}
.ws71{word-spacing:-0.002499pt;}
.ws72{word-spacing:-0.001572pt;}
.ws78{word-spacing:-0.001075pt;}
.ws0{word-spacing:0.000000pt;}
.ws77{word-spacing:0.000288pt;}
.ws3{word-spacing:0.001394pt;}
.ws62{word-spacing:0.002830pt;}
.ws17{word-spacing:2.215968pt;}
.ws63{word-spacing:2.443638pt;}
.ws7c{word-spacing:8.873356pt;}
.ws15{word-spacing:14.484538pt;}
.ws7b{word-spacing:14.486117pt;}
.ws14{word-spacing:14.487055pt;}
.ws2f{word-spacing:27.158431pt;}
.ws1a{word-spacing:27.160394pt;}
.ws33{word-spacing:27.161589pt;}
.ws38{word-spacing:27.161845pt;}
.ws1{word-spacing:27.162101pt;}
.ws55{word-spacing:27.162570pt;}
.ws2a{word-spacing:27.163295pt;}
.ws29{word-spacing:27.163765pt;}
.ws1d{word-spacing:27.164277pt;}
.ws30{word-spacing:27.165002pt;}
.ws22{word-spacing:27.165727pt;}
.ws36{word-spacing:27.167178pt;}
.ws4f{word-spacing:27.587173pt;}
.ws11{word-spacing:28.072282pt;}
.ws12{word-spacing:28.072288pt;}
.ws3a{word-spacing:28.510415pt;}
.ws5b{word-spacing:28.515625pt;}
.ws2e{word-spacing:28.520100pt;}
.ws19{word-spacing:28.522331pt;}
.ws35{word-spacing:28.522421pt;}
.ws28{word-spacing:28.523502pt;}
.ws37{word-spacing:28.524277pt;}
.ws50{word-spacing:28.525727pt;}
.ws1e{word-spacing:28.526453pt;}
.ws3f{word-spacing:28.527178pt;}
.ws39{word-spacing:28.527935pt;}
.ws51{word-spacing:28.546596pt;}
.ws21{word-spacing:29.202446pt;}
.ws3e{word-spacing:29.585011pt;}
.ws24{word-spacing:30.010083pt;}
.ws41{word-spacing:30.334453pt;}
.ws20{word-spacing:30.339786pt;}
.ws3c{word-spacing:30.350141pt;}
.ws23{word-spacing:30.562677pt;}
.ws31{word-spacing:30.573865pt;}
.ws2b{word-spacing:30.579198pt;}
.ws5a{word-spacing:30.690198pt;}
.ws32{word-spacing:30.824394pt;}
.ws3d{word-spacing:30.860227pt;}
.ws43{word-spacing:30.870943pt;}
.ws26{word-spacing:31.023178pt;}
.ws53{word-spacing:31.023903pt;}
.ws27{word-spacing:31.028511pt;}
.ws34{word-spacing:31.029237pt;}
.ws18{word-spacing:31.030256pt;}
.ws54{word-spacing:31.283061pt;}
.ws1b{word-spacing:31.285299pt;}
.ws1f{word-spacing:31.288394pt;}
.ws5e{word-spacing:40.653729pt;}
.ws65{word-spacing:47.819515pt;}
.ws46{word-spacing:49.215323pt;}
.ws69{word-spacing:53.132150pt;}
.ws66{word-spacing:53.132171pt;}
.ws68{word-spacing:53.132685pt;}
.ws64{word-spacing:53.133302pt;}
.ws45{word-spacing:54.393595pt;}
.ws56{word-spacing:58.072394pt;}
.ws57{word-spacing:58.488394pt;}
.ws52{word-spacing:58.493727pt;}
.ws5{word-spacing:61.543227pt;}
.ws44{word-spacing:63.727223pt;}
.ws40{word-spacing:63.732557pt;}
.wsb{word-spacing:73.268451pt;}
.ws47{word-spacing:76.269891pt;}
.ws5f{word-spacing:77.515535pt;}
.ws48{word-spacing:81.444261pt;}
.ws6b{word-spacing:100.828171pt;}
.ws49{word-spacing:103.324459pt;}
.ws4a{word-spacing:108.500261pt;}
.ws3b{word-spacing:118.137890pt;}
.ws4b{word-spacing:130.379027pt;}
.ws6a{word-spacing:134.028171pt;}
.ws4c{word-spacing:135.556261pt;}
.ws6e{word-spacing:138.671250pt;}
.ws70{word-spacing:139.362162pt;}
.ws25{word-spacing:143.874286pt;}
.ws4d{word-spacing:157.428261pt;}
.ws6f{word-spacing:161.669896pt;}
.ws4e{word-spacing:162.612261pt;}
.ws58{word-spacing:172.548557pt;}
.wsc{word-spacing:214.175293pt;}
.ws67{word-spacing:218.700171pt;}
.ws42{word-spacing:226.959223pt;}
.ws59{word-spacing:254.159223pt;}
.ws5c{word-spacing:281.364557pt;}
.ws60{word-spacing:320.443355pt;}
.ws76{word-spacing:496.105483pt;}
.ws75{word-spacing:534.854606pt;}
.ws73{word-spacing:639.467034pt;}
.ws74{word-spacing:644.120151pt;}
._11{margin-left:-512.965140pt;}
._18{margin-left:-7.272733pt;}
._15{margin-left:-6.121045pt;}
._30{margin-left:-5.178186pt;}
._7{margin-left:-4.189094pt;}
._f{margin-left:-2.850911pt;}
._a{margin-left:-1.882387pt;}
._0{margin-left:-0.989092pt;}
._e{width:0.930910pt;}
._3{width:1.882387pt;}
._4{width:3.152999pt;}
._1{width:4.141252pt;}
._c{width:5.089132pt;}
._2{width:6.305997pt;}
._9{width:7.832196pt;}
._20{width:8.935436pt;}
._21{width:11.424559pt;}
._2f{width:13.915853pt;}
._19{width:15.090018pt;}
._12{width:16.465468pt;}
._8{width:17.396378pt;}
._13{width:22.999994pt;}
._10{width:24.669111pt;}
._1a{width:30.610790pt;}
._1b{width:31.915441pt;}
._16{width:37.236395pt;}
._1f{width:40.478909pt;}
._1e{width:57.151068pt;}
._22{width:58.489907pt;}
._1c{width:63.757856pt;}
._1d{width:68.216811pt;}
._6{width:71.476156pt;}
._3c{width:84.698557pt;}
._36{width:87.226381pt;}
._40{width:89.340587pt;}
._24{width:90.811456pt;}
._44{width:92.546688pt;}
._26{width:95.989728pt;}
._41{width:107.608132pt;}
._39{width:111.454971pt;}
._43{width:113.921920pt;}
._27{width:117.871357pt;}
._34{width:120.421048pt;}
._28{width:123.045728pt;}
._35{width:124.889637pt;}
._3d{width:126.939981pt;}
._3f{width:128.171341pt;}
._42{width:131.857920pt;}
._3b{width:142.720739pt;}
._29{width:144.925925pt;}
._2a{width:150.101728pt;}
._3a{width:165.568302pt;}
._2b{width:171.975160pt;}
._2c{width:177.157728pt;}
._4d{width:182.276619pt;}
._4a{width:184.195623pt;}
._23{width:187.980054pt;}
._4b{width:197.231815pt;}
._2d{width:199.029728pt;}
._31{width:205.098381pt;}
._32{width:209.561637pt;}
._33{width:229.326971pt;}
._4c{width:235.338482pt;}
._37{width:237.189048pt;}
._45{width:273.078743pt;}
._49{width:276.006609pt;}
._46{width:283.336639pt;}
._3e{width:299.015953pt;}
._38{width:344.943485pt;}
._48{width:405.112143pt;}
._47{width:427.218153pt;}
._25{width:442.118123pt;}
._17{width:447.555486pt;}
._2e{width:469.169827pt;}
._b{width:531.303511pt;}
._4e{width:769.874477pt;}
._14{width:913.869056pt;}
._5{width:928.695723pt;}
._4f{width:943.517056pt;}
._d{width:1069.759493pt;}
.fs10{font-size:16.459052pt;}
.fs19{font-size:16.857067pt;}
.fsf{font-size:19.202126pt;}
.fs11{font-size:19.439777pt;}
.fs17{font-size:19.922113pt;}
.fs18{font-size:20.768000pt;}
.fse{font-size:23.162880pt;}
.fs13{font-size:23.770881pt;}
.fs7{font-size:24.182015pt;}
.fs16{font-size:24.901120pt;}
.fsa{font-size:26.058240pt;}
.fs12{font-size:27.166721pt;}
.fs9{font-size:28.212204pt;}
.fsd{font-size:28.953600pt;}
.fs4{font-size:31.880533pt;}
.fs8{font-size:32.242570pt;}
.fsb{font-size:34.744320pt;}
.fs6{font-size:37.645920pt;}
.fs1b{font-size:39.998884pt;}
.fs2{font-size:42.507200pt;}
.fs3{font-size:47.059680pt;}
.fs1a{font-size:47.820800pt;}
.fs5{font-size:53.133867pt;}
.fs1{font-size:58.181867pt;}
.fs0{font-size:76.513067pt;}
.fs15{font-size:91.815467pt;}
.fs14{font-size:110.200000pt;}
.fsc{font-size:110.283724pt;}
.y1b5{bottom:-572.674667pt;}
.y1b4{bottom:-554.609333pt;}
.y1b3{bottom:-536.544000pt;}
.y1b2{bottom:-518.477333pt;}
.y1b1{bottom:-500.412000pt;}
.y1b0{bottom:-482.346667pt;}
.y1af{bottom:-464.281333pt;}
.y1ae{bottom:-446.216000pt;}
.y1ad{bottom:-428.150667pt;}
.y1ac{bottom:-410.084000pt;}
.y1ab{bottom:-392.018667pt;}
.y1aa{bottom:-373.953333pt;}
.y1a9{bottom:-355.888000pt;}
.y1a8{bottom:-337.822667pt;}
.y1a7{bottom:-319.756000pt;}
.y1a6{bottom:-301.690667pt;}
.y1a5{bottom:-283.625333pt;}
.y1a4{bottom:-265.560000pt;}
.y1a3{bottom:-247.494667pt;}
.y1a2{bottom:-229.429333pt;}
.y1a1{bottom:-211.362667pt;}
.y1a0{bottom:-193.297333pt;}
.y19f{bottom:-175.232000pt;}
.y19e{bottom:-157.166667pt;}
.y19d{bottom:-139.101333pt;}
.y19c{bottom:-121.034667pt;}
.y19b{bottom:-102.969333pt;}
.y19a{bottom:-84.904000pt;}
.y199{bottom:-66.838667pt;}
.y198{bottom:-48.773333pt;}
.y1d1{bottom:-39.713333pt;}
.y197{bottom:-30.708000pt;}
.y1d0{bottom:-27.094667pt;}
.y1cf{bottom:-14.474667pt;}
.y196{bottom:-12.641333pt;}
.y1ce{bottom:-1.856000pt;}
.y0{bottom:0.000000pt;}
.y163{bottom:2.334480pt;}
.y16{bottom:3.441333pt;}
.ya{bottom:3.442667pt;}
.y1de{bottom:4.109068pt;}
.y195{bottom:5.424000pt;}
.y238{bottom:8.428745pt;}
.y1db{bottom:9.011868pt;}
.y1dd{bottom:9.870761pt;}
.y1cd{bottom:10.764000pt;}
.ye3{bottom:11.177412pt;}
.y161{bottom:13.189204pt;}
.yf5{bottom:13.666352pt;}
.y23a{bottom:13.785646pt;}
.y1df{bottom:14.420852pt;}
.y20{bottom:14.504117pt;}
.yf1{bottom:14.511082pt;}
.y8{bottom:17.068000pt;}
.yaa{bottom:17.289953pt;}
.y114{bottom:18.058667pt;}
.y9{bottom:18.131024pt;}
.y237{bottom:19.142546pt;}
.y236{bottom:19.142547pt;}
.yf6{bottom:19.445333pt;}
.ye2{bottom:19.667012pt;}
.y121{bottom:19.950667pt;}
.y82{bottom:19.970645pt;}
.y155{bottom:20.426700pt;}
.yf0{bottom:20.586012pt;}
.yae{bottom:21.408000pt;}
.y233{bottom:21.781333pt;}
.y1ea{bottom:22.581333pt;}
.y2e{bottom:22.602667pt;}
.y31{bottom:22.892000pt;}
.y1cc{bottom:23.382667pt;}
.y194{bottom:23.489333pt;}
.y34{bottom:23.866667pt;}
.y239{bottom:24.499447pt;}
.ya9{bottom:24.528353pt;}
.y53{bottom:25.941333pt;}
.y90{bottom:26.212000pt;}
.yef{bottom:26.660943pt;}
.y291{bottom:28.342667pt;}
.y20b{bottom:28.686667pt;}
.y219{bottom:28.730667pt;}
.y156{bottom:29.609596pt;}
.y1e{bottom:29.658667pt;}
.yad{bottom:29.733333pt;}
.y2ac{bottom:30.582667pt;}
.y52{bottom:31.437333pt;}
.y1e0{bottom:31.562399pt;}
.ya8{bottom:31.766753pt;}
.y13c{bottom:31.954667pt;}
.yee{bottom:32.735873pt;}
.y242{bottom:32.994667pt;}
.yea{bottom:33.213415pt;}
.y2c5{bottom:35.362667pt;}
.y235{bottom:35.570374pt;}
.y1cb{bottom:36.002667pt;}
.y232{bottom:36.393333pt;}
.y1dc{bottom:36.612395pt;}
.y272{bottom:37.037333pt;}
.y1e9{bottom:37.193333pt;}
.y12d{bottom:37.209333pt;}
.yed{bottom:38.810804pt;}
.y157{bottom:38.828969pt;}
.ya7{bottom:39.005153pt;}
.y2ba{bottom:39.089333pt;}
.ye9{bottom:39.288345pt;}
.ye6{bottom:39.353073pt;}
.y113{bottom:40.109333pt;}
.y2d{bottom:40.668000pt;}
.y30{bottom:40.957333pt;}
.y290{bottom:40.961333pt;}
.y20a{bottom:41.306667pt;}
.y218{bottom:41.349333pt;}
.y46{bottom:41.445333pt;}
.y193{bottom:41.554667pt;}
.y2af{bottom:41.782667pt;}
.y33{bottom:41.932000pt;}
.y9f{bottom:42.197413pt;}
.y81{bottom:42.284212pt;}
.y99{bottom:42.601267pt;}
.y40{bottom:42.910667pt;}
.y43{bottom:43.809333pt;}
.y84{bottom:44.222812pt;}
.ya5{bottom:46.049381pt;}
.ya6{bottom:46.243553pt;}
.y162{bottom:46.488981pt;}
.yec{bottom:46.708213pt;}
.ye8{bottom:47.185754pt;}
.ye5{bottom:47.250483pt;}
.yac{bottom:47.800000pt;}
.y158{bottom:48.011864pt;}
.y8f{bottom:48.262667pt;}
.y1ca{bottom:48.621333pt;}
.y1e1{bottom:48.703947pt;}
.y9c{bottom:49.848118pt;}
.y1d{bottom:50.605333pt;}
.y231{bottom:51.005333pt;}
.y241{bottom:51.060000pt;}
.y1fd{bottom:51.072000pt;}
.y184{bottom:51.508000pt;}
.y1e8{bottom:51.805333pt;}
.y154{bottom:52.053333pt;}
.y171{bottom:52.260000pt;}
.y9e{bottom:52.386522pt;}
.y2ab{bottom:52.633333pt;}
.y25f{bottom:52.642667pt;}
.yeb{bottom:52.783144pt;}
.ye7{bottom:53.260685pt;}
.ye4{bottom:53.325413pt;}
.y2c4{bottom:53.428000pt;}
.y51{bottom:53.488000pt;}
.y28f{bottom:53.581333pt;}
.y209{bottom:53.925333pt;}
.y217{bottom:53.969333pt;}
.y13b{bottom:54.004000pt;}
.y83{bottom:54.298728pt;}
.y120{bottom:55.017333pt;}
.y64{bottom:55.097109pt;}
.y29a{bottom:55.953333pt;}
.y98{bottom:56.362678pt;}
.ya3{bottom:56.659313pt;}
.y159{bottom:57.194760pt;}
.y271{bottom:59.088000pt;}
.y12c{bottom:59.260000pt;}
.y192{bottom:59.620000pt;}
.y24d{bottom:60.022667pt;}
.y1c9{bottom:61.241333pt;}
.y2b9{bottom:61.846667pt;}
.y45{bottom:63.496000pt;}
.y2ae{bottom:63.833333pt;}
.y183{bottom:64.128000pt;}
.y3f{bottom:64.961333pt;}
.y63{bottom:65.173025pt;}
.ya4{bottom:65.793182pt;}
.y1e2{bottom:65.845495pt;}
.y42{bottom:65.860000pt;}
.yab{bottom:65.865333pt;}
.y28e{bottom:66.200000pt;}
.y15a{bottom:66.414132pt;}
.y208{bottom:66.545333pt;}
.y216{bottom:66.588000pt;}
.y9b{bottom:67.763158pt;}
.y1fc{bottom:69.138667pt;}
.y1da{bottom:70.028748pt;}
.y8e{bottom:70.313333pt;}
.y25e{bottom:70.708000pt;}
.y2c3{bottom:71.493333pt;}
.y240{bottom:73.110667pt;}
.y230{bottom:73.714667pt;}
.y1c8{bottom:73.860000pt;}
.ydb{bottom:73.949954pt;}
.y2aa{bottom:74.684000pt;}
.yb9{bottom:74.745854pt;}
.y13a{bottom:74.952000pt;}
.y14d{bottom:75.206667pt;}
.y50{bottom:75.538667pt;}
.y15b{bottom:75.597029pt;}
.y1d9{bottom:75.838921pt;}
.y299{bottom:76.552000pt;}
.y182{bottom:76.746667pt;}
.y11f{bottom:77.068000pt;}
.y270{bottom:77.153333pt;}
.y12b{bottom:77.325333pt;}
.y191{bottom:77.686667pt;}
.y24c{bottom:78.088000pt;}
.y28d{bottom:78.820000pt;}
.yc2{bottom:79.148074pt;}
.y207{bottom:79.164000pt;}
.y215{bottom:79.208000pt;}
.yda{bottom:80.024884pt;}
.ybf{bottom:80.502425pt;}
.ya0{bottom:80.598540pt;}
.yb8{bottom:80.820785pt;}
.y15{bottom:80.909333pt;}
.y1e3{bottom:82.987042pt;}
.y15c{bottom:84.786346pt;}
.y44{bottom:85.549333pt;}
.y2ad{bottom:85.813333pt;}
.yd9{bottom:86.099814pt;}
.y41{bottom:86.457333pt;}
.y1c7{bottom:86.480000pt;}
.ybe{bottom:86.577356pt;}
.yb7{bottom:86.895715pt;}
.y3e{bottom:87.014667pt;}
.yc1{bottom:87.045484pt;}
.y25d{bottom:88.773333pt;}
.y1e7{bottom:89.086667pt;}
.y181{bottom:89.366667pt;}
.y2c2{bottom:89.560000pt;}
.y1fb{bottom:89.736000pt;}
.y28c{bottom:91.438667pt;}
.y22f{bottom:91.780000pt;}
.y206{bottom:91.784000pt;}
.y1a{bottom:91.800000pt;}
.y214{bottom:91.826667pt;}
.yd8{bottom:92.174745pt;}
.y8d{bottom:92.365333pt;}
.ybd{bottom:92.652286pt;}
.yb6{bottom:92.970646pt;}
.yc0{bottom:93.120414pt;}
.y14c{bottom:93.272000pt;}
.y91{bottom:93.738667pt;}
.y15d{bottom:93.969241pt;}
.y23f{bottom:95.162667pt;}
.y190{bottom:95.752000pt;}
.y2a9{bottom:97.085333pt;}
.y4f{bottom:97.589333pt;}
.yd7{bottom:98.249675pt;}
.ybc{bottom:98.727216pt;}
.yb5{bottom:99.045576pt;}
.y1c6{bottom:99.098667pt;}
.y26f{bottom:99.204000pt;}
.y12a{bottom:99.376000pt;}
.y11e{bottom:99.469333pt;}
.y1e4{bottom:100.128590pt;}
.y24b{bottom:100.138667pt;}
.y94{bottom:100.710654pt;}
.y75{bottom:100.710950pt;}
.y1d5{bottom:101.706667pt;}
.y180{bottom:101.985333pt;}
.y254{bottom:102.102667pt;}
.y15e{bottom:103.152137pt;}
.y28b{bottom:104.058667pt;}
.y1f2{bottom:104.237333pt;}
.y27a{bottom:104.316000pt;}
.y205{bottom:104.934667pt;}
.y213{bottom:104.977333pt;}
.y1d8{bottom:106.113296pt;}
.yd6{bottom:106.147085pt;}
.y2b8{bottom:106.228000pt;}
.ybb{bottom:106.624626pt;}
.yb4{bottom:106.942985pt;}
.y25c{bottom:107.370667pt;}
.y2c1{bottom:107.625333pt;}
.y7{bottom:107.648000pt;}
.y9a{bottom:107.936278pt;}
.y139{bottom:108.789333pt;}
.y74{bottom:109.527489pt;}
.y14b{bottom:111.337333pt;}
.y1c5{bottom:111.718667pt;}
.yd5{bottom:112.222015pt;}
.y15f{bottom:112.374549pt;}
.y60{bottom:112.594252pt;}
.yba{bottom:112.699556pt;}
.y76{bottom:112.782581pt;}
.yb3{bottom:113.017916pt;}
.y18f{bottom:113.817333pt;}
.y19{bottom:113.850667pt;}
.y17f{bottom:114.605333pt;}
.y281{bottom:114.946667pt;}
.y1e6{bottom:114.991481pt;}
.y116{bottom:115.772000pt;}
.y28a{bottom:116.677333pt;}
.y22e{bottom:117.240000pt;}
.y26e{bottom:117.269333pt;}
.y1e5{bottom:117.270138pt;}
.y298{bottom:118.154667pt;}
.y4e{bottom:119.642667pt;}
.y253{bottom:120.168000pt;}
.y1f1{bottom:120.177333pt;}
.y129{bottom:121.426667pt;}
.y5f{bottom:121.519677pt;}
.y160{bottom:121.554406pt;}
.y2b7{bottom:122.169333pt;}
.y24a{bottom:122.189333pt;}
.y279{bottom:122.382667pt;}
.y14{bottom:124.225333pt;}
.y1c4{bottom:124.337333pt;}
.y1fa{bottom:124.422667pt;}
.y6{bottom:125.713333pt;}
.y204{bottom:125.849333pt;}
.y212{bottom:125.893333pt;}
.y17e{bottom:127.224000pt;}
.yd1{bottom:128.298699pt;}
.y289{bottom:129.297333pt;}
.y14a{bottom:129.404000pt;}
.y1d7{bottom:130.767128pt;}
.y138{bottom:130.840000pt;}
.y18e{bottom:131.882667pt;}
.y10{bottom:131.997333pt;}
.y22d{bottom:132.382667pt;}
.y280{bottom:133.012000pt;}
.yd0{bottom:134.373629pt;}
.yc9{bottom:134.438357pt;}
.y23e{bottom:134.757333pt;}
.y222{bottom:134.969333pt;}
.y9d{bottom:135.280544pt;}
.y18{bottom:135.901333pt;}
.y6d{bottom:136.412657pt;}
.y1d6{bottom:136.577301pt;}
.y1c3{bottom:136.957333pt;}
.y73{bottom:137.751471pt;}
.ya2{bottom:137.789706pt;}
.y25b{bottom:138.076000pt;}
.y1f0{bottom:138.774667pt;}
.y26d{bottom:139.320000pt;}
.y17d{bottom:139.844000pt;}
.y297{bottom:140.205333pt;}
.y11d{bottom:140.206667pt;}
.ycf{bottom:140.448559pt;}
.ye1{bottom:140.513285pt;}
.yc8{bottom:140.513288pt;}
.y2b6{bottom:140.765333pt;}
.y55{bottom:141.013621pt;}
.y252{bottom:142.220000pt;}
.y1f9{bottom:142.488000pt;}
.y32{bottom:143.168000pt;}
.y128{bottom:143.480000pt;}
.y5{bottom:143.778667pt;}
.y2f{bottom:144.141333pt;}
.y2c{bottom:144.430667pt;}
.y278{bottom:144.433333pt;}
.y6c{bottom:145.229197pt;}
.yce{bottom:146.523490pt;}
.y72{bottom:146.568011pt;}
.ye0{bottom:146.588215pt;}
.yc7{bottom:146.588218pt;}
.y22c{bottom:146.994667pt;}
.y149{bottom:147.469333pt;}
.y1c2{bottom:149.576000pt;}
.y79{bottom:149.749477pt;}
.y54{bottom:149.939045pt;}
.y18d{bottom:149.948000pt;}
.y95{bottom:150.823798pt;}
.y221{bottom:151.441333pt;}
.y17c{bottom:152.462667pt;}
.ycd{bottom:152.598420pt;}
.ydf{bottom:152.663146pt;}
.yc6{bottom:152.663149pt;}
.y137{bottom:152.890667pt;}
.yf{bottom:154.048000pt;}
.y249{bottom:154.848000pt;}
.y27f{bottom:155.062667pt;}
.y5e{bottom:155.436300pt;}
.y23d{bottom:156.808000pt;}
.yd4{bottom:157.942178pt;}
.y4d{bottom:158.024000pt;}
.y17{bottom:158.302667pt;}
.y78{bottom:158.566003pt;}
.ycc{bottom:158.673351pt;}
.y1ef{bottom:158.700000pt;}
.yde{bottom:158.738076pt;}
.yc5{bottom:158.738079pt;}
.y25a{bottom:160.477333pt;}
.y1f8{bottom:160.554667pt;}
.y2b5{bottom:160.690667pt;}
.y296{bottom:160.802667pt;}
.y26c{bottom:161.373333pt;}
.y22b{bottom:161.606667pt;}
.y1c1{bottom:162.196000pt;}
.y96{bottom:162.224278pt;}
.y11c{bottom:162.257333pt;}
.y7c{bottom:162.474898pt;}
.y277{bottom:162.498667pt;}
.y7f{bottom:163.131816pt;}
.y2c0{bottom:164.774667pt;}
.y17b{bottom:165.082667pt;}
.y211{bottom:165.181333pt;}
.y203{bottom:165.209333pt;}
.yd3{bottom:165.839588pt;}
.y148{bottom:166.065333pt;}
.y57{bottom:166.146817pt;}
.ycb{bottom:166.570760pt;}
.ydd{bottom:166.635485pt;}
.yc4{bottom:166.635488pt;}
.y80{bottom:167.240188pt;}
.y220{bottom:167.381333pt;}
.y77{bottom:167.382098pt;}
.y13{bottom:167.542667pt;}
.y18c{bottom:168.013333pt;}
.y12f{bottom:168.297333pt;}
.y288{bottom:170.610667pt;}
.yd2{bottom:171.914518pt;}
.y7b{bottom:172.550814pt;}
.yca{bottom:172.645691pt;}
.ydc{bottom:172.710416pt;}
.yc3{bottom:172.710419pt;}
.y27e{bottom:173.128000pt;}
.y7e{bottom:173.207732pt;}
.y5c{bottom:173.287155pt;}
.y248{bottom:173.445333pt;}
.y136{bottom:173.489333pt;}
.y1c0{bottom:174.814667pt;}
.y58{bottom:175.072241pt;}
.ye{bottom:176.098667pt;}
.y22a{bottom:176.218667pt;}
.y1ee{bottom:176.765333pt;}
.y17a{bottom:177.701333pt;}
.y251{bottom:177.825333pt;}
.y97{bottom:177.967798pt;}
.y4{bottom:178.436000pt;}
.y23c{bottom:178.858667pt;}
.ya1{bottom:179.992420pt;}
.y4c{bottom:180.074667pt;}
.y88{bottom:180.460000pt;}
.y5d{bottom:182.212580pt;}
.y7a{bottom:182.626729pt;}
.y2bf{bottom:182.840000pt;}
.y1f7{bottom:182.882667pt;}
.y7d{bottom:183.283648pt;}
.y22{bottom:183.314667pt;}
.y21f{bottom:183.321333pt;}
.y56{bottom:183.997672pt;}
.y11b{bottom:184.309333pt;}
.y276{bottom:184.549333pt;}
.y2b4{bottom:185.398667pt;}
.y127{bottom:185.497333pt;}
.y18b{bottom:186.080000pt;}
.y210{bottom:187.232000pt;}
.y202{bottom:187.260000pt;}
.y1bf{bottom:187.434667pt;}
.y287{bottom:188.676000pt;}
.y179{bottom:190.321333pt;}
.y229{bottom:190.830667pt;}
.y247{bottom:191.510667pt;}
.y153{bottom:192.145333pt;}
.y12e{bottom:192.208000pt;}
.y170{bottom:192.352000pt;}
.y66{bottom:194.709082pt;}
.y93{bottom:194.797080pt;}
.y27d{bottom:195.178667pt;}
.y250{bottom:195.890667pt;}
.yd{bottom:198.149333pt;}
.y259{bottom:198.153333pt;}
.y71{bottom:198.890645pt;}
.y21e{bottom:199.262667pt;}
.y10d{bottom:199.955789pt;}
.y1be{bottom:200.053333pt;}
.y106{bottom:200.433330pt;}
.yff{bottom:200.498059pt;}
.y23b{bottom:200.909333pt;}
.y1ed{bottom:201.473333pt;}
.y59{bottom:201.848521pt;}
.y4b{bottom:202.125333pt;}
.y87{bottom:202.510667pt;}
.y275{bottom:202.614667pt;}
.y295{bottom:202.820000pt;}
.y178{bottom:202.940000pt;}
.y135{bottom:203.009333pt;}
.y264{bottom:203.390667pt;}
.y2b3{bottom:203.996000pt;}
.y18a{bottom:204.145333pt;}
.y152{bottom:204.764000pt;}
.y65{bottom:204.784998pt;}
.y2be{bottom:204.890667pt;}
.y16f{bottom:204.970667pt;}
.y21{bottom:205.294667pt;}
.y20f{bottom:205.297333pt;}
.y201{bottom:205.326667pt;}
.y228{bottom:205.442667pt;}
.y10c{bottom:206.030719pt;}
.y105{bottom:206.508261pt;}
.yfe{bottom:206.572989pt;}
.y10e{bottom:206.932591pt;}
.y70{bottom:207.707178pt;}
.y6b{bottom:207.816072pt;}
.y92{bottom:208.369078pt;}
.y3{bottom:208.600000pt;}
.y5a{bottom:208.989312pt;}
.y141{bottom:209.120000pt;}
.y246{bottom:209.576000pt;}
.y126{bottom:210.204000pt;}
.y286{bottom:210.726667pt;}
.y12{bottom:210.860000pt;}
.y10b{bottom:212.105650pt;}
.y104{bottom:212.583191pt;}
.yfd{bottom:212.647919pt;}
.y1bd{bottom:212.673333pt;}
.y27c{bottom:213.244000pt;}
.y24f{bottom:213.956000pt;}
.y115{bottom:215.032000pt;}
.y21d{bottom:215.202667pt;}
.y177{bottom:215.560000pt;}
.y258{bottom:216.218667pt;}
.y6a{bottom:216.632605pt;}
.y151{bottom:217.384000pt;}
.y1f6{bottom:217.569333pt;}
.y16e{bottom:217.590667pt;}
.y10a{bottom:218.180580pt;}
.y103{bottom:218.658121pt;}
.yfc{bottom:218.722850pt;}
.y134{bottom:218.950667pt;}
.y227{bottom:220.053333pt;}
.y1ec{bottom:220.069333pt;}
.yc{bottom:220.200000pt;}
.y274{bottom:220.680000pt;}
.y263{bottom:221.456000pt;}
.y140{bottom:221.738667pt;}
.y189{bottom:222.210667pt;}
.y2bd{bottom:222.956000pt;}
.y4a{bottom:224.176000pt;}
.y109{bottom:224.255511pt;}
.y86{bottom:224.561333pt;}
.y2b2{bottom:224.593333pt;}
.y102{bottom:224.733052pt;}
.yfb{bottom:224.797780pt;}
.y294{bottom:224.870667pt;}
.y11a{bottom:225.048000pt;}
.y1bc{bottom:225.292000pt;}
.y125{bottom:226.145333pt;}
.y5b{bottom:226.839720pt;}
.y20e{bottom:227.277333pt;}
.y200{bottom:227.305333pt;}
.y245{bottom:227.642667pt;}
.y176{bottom:228.178667pt;}
.y285{bottom:228.792000pt;}
.y150{bottom:230.002667pt;}
.y16d{bottom:230.210667pt;}
.y21c{bottom:231.142667pt;}
.y24e{bottom:232.022667pt;}
.y108{bottom:232.152920pt;}
.y101{bottom:232.630461pt;}
.yfa{bottom:232.695190pt;}
.y234{bottom:233.324913pt;}
.y257{bottom:234.284000pt;}
.y13f{bottom:234.358667pt;}
.y226{bottom:234.665333pt;}
.y133{bottom:234.890667pt;}
.y27b{bottom:235.297333pt;}
.y1f5{bottom:235.636000pt;}
.y110{bottom:236.902906pt;}
.y1bb{bottom:237.912000pt;}
.y6f{bottom:238.162523pt;}
.y107{bottom:238.227851pt;}
.y1f{bottom:238.649333pt;}
.y100{bottom:238.705392pt;}
.yf9{bottom:238.770120pt;}
.y1eb{bottom:239.994667pt;}
.y188{bottom:240.276000pt;}
.y175{bottom:240.798667pt;}
.y273{bottom:242.733333pt;}
.y262{bottom:243.506667pt;}
.y10f{bottom:244.331306pt;}
.y124{bottom:244.741333pt;}
.y244{bottom:245.708000pt;}
.y49{bottom:246.226667pt;}
.y14f{bottom:246.606667pt;}
.y16c{bottom:246.814667pt;}
.y293{bottom:246.921333pt;}
.y13e{bottom:246.977333pt;}
.y6e{bottom:246.979056pt;}
.y119{bottom:247.098667pt;}
.y21b{bottom:247.614667pt;}
.y225{bottom:249.277333pt;}
.y1ba{bottom:250.530667pt;}
.y132{bottom:250.830667pt;}
.y284{bottom:250.842667pt;}
.y69{bottom:252.443206pt;}
.y256{bottom:252.881333pt;}
.y174{bottom:253.417333pt;}
.y1f4{bottom:253.701333pt;}
.y11{bottom:254.176000pt;}
.y1d4{bottom:258.102667pt;}
.y187{bottom:258.341333pt;}
.y13d{bottom:259.597333pt;}
.y62{bottom:261.180305pt;}
.y68{bottom:261.259739pt;}
.y2b1{bottom:262.174667pt;}
.y1b9{bottom:263.150667pt;}
.y243{bottom:264.305333pt;}
.y2bc{bottom:264.309333pt;}
.y224{bottom:264.421333pt;}
.y123{bottom:264.666667pt;}
.y2{bottom:265.070667pt;}
.yf8{bottom:265.446324pt;}
.y261{bottom:265.557333pt;}
.y20d{bottom:265.658667pt;}
.yf7{bottom:265.674137pt;}
.y1ff{bottom:265.688000pt;}
.y173{bottom:266.037333pt;}
.y48{bottom:267.173333pt;}
.y14e{bottom:268.660000pt;}
.y16b{bottom:268.866667pt;}
.y283{bottom:268.908000pt;}
.y292{bottom:268.972000pt;}
.y21a{bottom:269.398667pt;}
.y118{bottom:269.420000pt;}
.y67{bottom:270.328868pt;}
.y61{bottom:271.256221pt;}
.yf4{bottom:271.521292pt;}
.yf2{bottom:271.749102pt;}
.yf3{bottom:271.749103pt;}
.y1f3{bottom:271.766667pt;}
.y1b8{bottom:275.769333pt;}
.y186{bottom:276.408000pt;}
.y1d3{bottom:277.496000pt;}
.yb2{bottom:277.596185pt;}
.yb1{bottom:277.596187pt;}
.yb0{bottom:277.823995pt;}
.y172{bottom:278.656000pt;}
.y2b0{bottom:280.240000pt;}
.y131{bottom:281.940000pt;}
.y2bb{bottom:282.374667pt;}
.yaf{bottom:283.671116pt;}
.y122{bottom:285.265333pt;}
.y223{bottom:286.730667pt;}
.y260{bottom:287.609333pt;}
.y20c{bottom:287.710667pt;}
.y1fe{bottom:287.740000pt;}
.y1{bottom:287.918667pt;}
.y1b7{bottom:288.389333pt;}
.y255{bottom:290.892000pt;}
.y282{bottom:290.961333pt;}
.y185{bottom:295.004000pt;}
.y47{bottom:295.222667pt;}
.y1d2{bottom:295.562667pt;}
.y117{bottom:296.226667pt;}
.y85{bottom:299.556000pt;}
.y130{bottom:300.005333pt;}
.y1b6{bottom:301.008000pt;}
.yb{bottom:322.445333pt;}
.y112{bottom:2684.759720pt;}
.y25{bottom:2689.303720pt;}
.y28{bottom:2689.593053pt;}
.y2b{bottom:2690.567720pt;}
.y8c{bottom:2692.913053pt;}
.y1c{bottom:2696.359720pt;}
.y2a5{bottom:2697.283720pt;}
.y26b{bottom:2703.738387pt;}
.y111{bottom:2706.810387pt;}
.y24{bottom:2707.369053pt;}
.y27{bottom:2707.658387pt;}
.y29e{bottom:2708.123720pt;}
.y3d{bottom:2708.146387pt;}
.y2a8{bottom:2708.483720pt;}
.y2a{bottom:2708.633053pt;}
.y37{bottom:2709.611720pt;}
.y3a{bottom:2710.510387pt;}
.y8b{bottom:2714.963720pt;}
.y1b{bottom:2717.306387pt;}
.y16a{bottom:2718.961053pt;}
.y2a1{bottom:2719.323720pt;}
.y2a4{bottom:2719.334387pt;}
.y26a{bottom:2725.789053pt;}
.y29d{bottom:2730.174387pt;}
.y3c{bottom:2730.197053pt;}
.y2a7{bottom:2730.534387pt;}
.y36{bottom:2731.662387pt;}
.y39{bottom:2732.561053pt;}
.y8a{bottom:2737.014387pt;}
.y2a0{bottom:2741.374387pt;}
.y2a3{bottom:2741.385053pt;}
.y147{bottom:2741.907720pt;}
.y269{bottom:2743.854387pt;}
.y29c{bottom:2752.225053pt;}
.y3b{bottom:2752.250387pt;}
.y2a6{bottom:2752.514387pt;}
.y38{bottom:2753.158387pt;}
.y35{bottom:2753.715720pt;}
.y89{bottom:2759.066387pt;}
.y146{bottom:2759.973053pt;}
.y29f{bottom:2763.353053pt;}
.y2a2{bottom:2763.786387pt;}
.y268{bottom:2765.905053pt;}
.y29b{bottom:2774.626387pt;}
.y145{bottom:2778.038387pt;}
.y267{bottom:2783.970387pt;}
.y144{bottom:2796.105053pt;}
.y266{bottom:2806.021053pt;}
.y29{bottom:2809.869053pt;}
.y26{bottom:2810.842387pt;}
.y23{bottom:2811.131720pt;}
.y143{bottom:2814.170387pt;}
.y265{bottom:2828.074387pt;}
.y142{bottom:2832.766387pt;}
.y169{bottom:2859.053053pt;}
.y168{bottom:2871.671720pt;}
.y167{bottom:2884.291720pt;}
.y166{bottom:2896.911720pt;}
.y165{bottom:2913.515720pt;}
.y164{bottom:2935.567720pt;}
.h29{height:-2378.803720pt;}
.h18{height:12.505022pt;}
.h1d{height:13.677864pt;}
.h1c{height:13.677876pt;}
.h17{height:14.589115pt;}
.h1a{height:14.769675pt;}
.h19{height:14.874087pt;}
.h2e{height:15.660215pt;}
.h15{height:17.598360pt;}
.h1e{height:18.060298pt;}
.hc{height:18.372663pt;}
.h26{height:18.919015pt;}
.h2b{height:19.293472pt;}
.h11{height:19.309156pt;}
.h10{height:19.798155pt;}
.h1b{height:20.640341pt;}
.he{height:21.434663pt;}
.h7{height:22.571418pt;}
.h14{height:24.330124pt;}
.h28{height:24.353837pt;}
.h27{height:24.474057pt;}
.hd{height:24.496796pt;}
.ha{height:25.072183pt;}
.h12{height:25.745541pt;}
.h2c{height:28.179701pt;}
.h30{height:30.095098pt;}
.h2f{height:31.278067pt;}
.h6{height:31.341747pt;}
.h4{height:31.582850pt;}
.h24{height:31.965414pt;}
.h31{height:33.857126pt;}
.h8{height:36.478095pt;}
.h35{height:36.958969pt;}
.h39{height:37.087439pt;}
.h21{height:37.618778pt;}
.h23{height:39.478463pt;}
.h3{height:41.192762pt;}
.h20{height:43.229127pt;}
.h33{height:45.429760pt;}
.h38{height:50.477173pt;}
.h34{height:53.926127pt;}
.h2{height:54.171251pt;}
.h32{height:55.272773pt;}
.h9{height:64.746796pt;}
.h22{height:65.005350pt;}
.h1f{height:78.021600pt;}
.h36{height:79.814169pt;}
.h5{height:80.937417pt;}
.h13{height:81.720239pt;}
.h37{height:122.669377pt;}
.h25{height:132.287200pt;}
.h2a{height:145.641830pt;}
.h2d{height:145.645056pt;}
.hf{height:219.226678pt;}
.hb{height:277.578546pt;}
.h16{height:291.557264pt;}
.h1{height:340.000000pt;}
.h0{height:340.157333pt;}
.w8{width:-2376.938387pt;}
.w9{width:158.817735pt;}
.wa{width:194.193408pt;}
.w7{width:264.574400pt;}
.w3{width:296.322767pt;}
.w2{width:370.421406pt;}
.w4{width:518.519073pt;}
.w6{width:529.126393pt;}
.w5{width:529.134860pt;}
.wb{width:583.544973pt;}
.w1{width:604.666667pt;}
.w0{width:604.724000pt;}
.x0{left:0.000000pt;}
.x60{left:3.940624pt;}
.x34{left:5.462969pt;}
.x6f{left:6.378677pt;}
.x7d{left:8.325704pt;}
.x86{left:10.617318pt;}
.x5b{left:12.539450pt;}
.x81{left:14.442667pt;}
.xb{left:16.121333pt;}
.x76{left:18.149333pt;}
.x20{left:20.220000pt;}
.x7b{left:23.518062pt;}
.x78{left:25.197333pt;}
.x7a{left:27.478775pt;}
.x79{left:29.460651pt;}
.x17{left:32.125333pt;}
.x6d{left:33.302325pt;}
.x6e{left:34.835297pt;}
.xd{left:38.466667pt;}
.x7c{left:39.370033pt;}
.x48{left:40.417973pt;}
.x26{left:43.089333pt;}
.x8a{left:47.588000pt;}
.x21{left:49.310667pt;}
.x5f{left:54.217918pt;}
.x89{left:55.884000pt;}
.x37{left:64.458624pt;}
.x9d{left:65.418667pt;}
.xc{left:66.886667pt;}
.x6c{left:68.375163pt;}
.x94{left:76.782233pt;}
.x72{left:81.839206pt;}
.x9a{left:84.809333pt;}
.x12{left:86.032269pt;}
.x58{left:87.678718pt;}
.x4e{left:88.985028pt;}
.x83{left:90.568828pt;}
.x85{left:94.773194pt;}
.x75{left:95.977333pt;}
.x57{left:96.887342pt;}
.x54{left:100.209495pt;}
.x87{left:101.432658pt;}
.x9{left:107.545547pt;}
.x88{left:111.249333pt;}
.x3a{left:112.402811pt;}
.x3b{left:115.006382pt;}
.x4f{left:115.975471pt;}
.x8{left:117.166667pt;}
.x4{left:120.165333pt;}
.xa{left:121.245333pt;}
.x3c{left:123.931808pt;}
.x13{left:126.072000pt;}
.x52{left:127.353495pt;}
.x38{left:129.413360pt;}
.x39{left:132.857231pt;}
.x7e{left:137.825511pt;}
.x43{left:141.782660pt;}
.x42{left:143.277300pt;}
.x82{left:145.237333pt;}
.x61{left:147.296036pt;}
.x10{left:148.806667pt;}
.x49{left:150.087619pt;}
.x11{left:154.205333pt;}
.x5c{left:169.970377pt;}
.xa4{left:171.649333pt;}
.x64{left:180.480904pt;}
.x53{left:181.641495pt;}
.x30{left:185.472504pt;}
.xa5{left:188.250667pt;}
.x2f{left:194.397929pt;}
.x51{left:195.436160pt;}
.x62{left:199.973310pt;}
.x99{left:201.440000pt;}
.x2{left:203.126667pt;}
.x2d{left:204.598580pt;}
.x32{left:207.968522pt;}
.x33{left:212.297966pt;}
.x2e{left:213.524004pt;}
.x31{left:217.972213pt;}
.x22{left:220.342667pt;}
.x74{left:221.626667pt;}
.x18{left:222.992000pt;}
.x27{left:224.192456pt;}
.x63{left:225.101275pt;}
.x6{left:226.594667pt;}
.x2c{left:229.589773pt;}
.x1{left:230.994667pt;}
.x2b{left:234.383102pt;}
.x28{left:235.795513pt;}
.x6a{left:237.771292pt;}
.xa6{left:239.472000pt;}
.x29{left:243.308532pt;}
.x3{left:247.729333pt;}
.x23{left:249.434667pt;}
.x2a{left:252.233956pt;}
.xa7{left:256.073333pt;}
.x50{left:260.870068pt;}
.x5{left:264.988000pt;}
.x55{left:266.135467pt;}
.x8e{left:274.392000pt;}
.x7{left:279.628000pt;}
.x4a{left:281.211709pt;}
.x84{left:286.493333pt;}
.x41{left:288.472608pt;}
.x40{left:290.587148pt;}
.x3f{left:293.982192pt;}
.x44{left:295.906911pt;}
.x5a{left:297.917346pt;}
.x3e{left:299.659129pt;}
.x4b{left:300.705333pt;}
.x3d{left:306.546871pt;}
.x47{left:314.865537pt;}
.xa8{left:316.910667pt;}
.x59{left:322.647808pt;}
.x8b{left:323.780000pt;}
.x4c{left:329.796000pt;}
.xa9{left:333.512000pt;}
.x9e{left:341.598667pt;}
.x9c{left:342.566667pt;}
.x8c{left:346.240000pt;}
.x9b{left:356.934667pt;}
.x67{left:358.847686pt;}
.x8d{left:359.821333pt;}
.x71{left:360.970111pt;}
.x65{left:362.435692pt;}
.x66{left:365.681984pt;}
.xa3{left:367.877333pt;}
.x96{left:369.268977pt;}
.x95{left:376.768638pt;}
.x8f{left:389.806667pt;}
.x35{left:393.046111pt;}
.x92{left:394.852000pt;}
.x56{left:396.515246pt;}
.x93{left:399.334667pt;}
.x90{left:405.080000pt;}
.x24{left:409.889333pt;}
.x45{left:411.364631pt;}
.x19{left:413.857333pt;}
.x36{left:417.613756pt;}
.x91{left:420.753333pt;}
.x46{left:431.779906pt;}
.x5e{left:433.100795pt;}
.x69{left:437.874979pt;}
.x25{left:438.980000pt;}
.x70{left:451.714430pt;}
.x6b{left:456.109633pt;}
.x73{left:457.057940pt;}
.x68{left:459.040795pt;}
.x5d{left:460.233924pt;}
.x98{left:528.547467pt;}
.x97{left:539.618398pt;}
.x1a{left:2686.921053pt;}
.x9f{left:2691.898387pt;}
.x14{left:2698.826387pt;}
.xe{left:2704.495720pt;}
.x1b{left:2716.011720pt;}
.xa0{left:2720.989053pt;}
.x4d{left:2733.587720pt;}
.xf{left:2815.507720pt;}
.x1c{left:2887.043720pt;}
.x15{left:2889.693053pt;}
.x77{left:2909.522387pt;}
.x1d{left:2916.135720pt;}
.x80{left:2962.015720pt;}
.x7f{left:2981.662387pt;}
.xa1{left:3034.578387pt;}
.xa2{left:3063.669053pt;}
.x1e{left:3076.590387pt;}
.x16{left:3080.558387pt;}
.x1f{left:3105.681053pt;}
}




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