
    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_dc18953c79eb4a914069fe19.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;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_03d2e9d092a9918aee0b5aac.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.091309;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_4c2b170bde3f56f0b676bf5d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.120605;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_6193fc93719873dbca485474.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.739746;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_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.739746;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_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.739746;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_df28298a6e0d85c6c0043c83.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.895996;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_11766d031f2e034f14dda35e.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.091309;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_4bc03e467335a4d002814f85.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.895996;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_7b59876cc664a70b7e775d45.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.035156;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_8030ee21f830baaf6284bf43.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.690918;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_c42e4cbb3d1b91b5ad087c3c.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.690918;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_6b5f2f1aae03973107f70854.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.850586;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_439b5ca2691e3d1f24624f9b.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.940430;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_812593bea30d9456953a7b1e.woff2')format("woff");}.fff{font-family:fff;line-height:1.040039;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_6bcd867d0385b06fe9455f71.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.284668;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_2e5fc3d75455f2c85cfc9f3f.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.432129;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_1d32ec12545f4a64c4ff8bac.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.921387;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_6193fc93719873dbca485474.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.739746;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_69a59c3a28cf899cd3cae35f.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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);}
.m3{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);}
.v2{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls30{letter-spacing:-19.260000px;}
.ls2b{letter-spacing:-19.140000px;}
.ls33{letter-spacing:-18.540000px;}
.lsc{letter-spacing:-17.820000px;}
.ls1e{letter-spacing:-17.100000px;}
.ls2a{letter-spacing:-16.380000px;}
.ls16{letter-spacing:-15.660000px;}
.ls28{letter-spacing:-14.220000px;}
.ls32{letter-spacing:-11.340000px;}
.ls14{letter-spacing:-10.620000px;}
.ls18{letter-spacing:-7.020000px;}
.ls19{letter-spacing:-0.666000px;}
.ls15{letter-spacing:-0.612000px;}
.lsa{letter-spacing:-0.540000px;}
.ls9{letter-spacing:-0.360000px;}
.ls1a{letter-spacing:-0.269400px;}
.ls11{letter-spacing:-0.226200px;}
.lsd{letter-spacing:-0.216000px;}
.ls1c{letter-spacing:-0.181200px;}
.ls8{letter-spacing:-0.180000px;}
.lse{letter-spacing:-0.089400px;}
.ls27{letter-spacing:-0.058320px;}
.ls7{letter-spacing:0.000000px;}
.ls1d{letter-spacing:0.045360px;}
.lsf{letter-spacing:0.089400px;}
.ls12{letter-spacing:0.119520px;}
.ls5{letter-spacing:0.144720px;}
.ls0{letter-spacing:0.153360px;}
.ls10{letter-spacing:0.178800px;}
.ls3{letter-spacing:0.180000px;}
.ls13{letter-spacing:0.259800px;}
.ls1b{letter-spacing:0.259920px;}
.ls20{letter-spacing:0.298800px;}
.ls6{letter-spacing:0.360000px;}
.ls17{letter-spacing:0.540000px;}
.ls2f{letter-spacing:0.836640px;}
.ls29{letter-spacing:0.900000px;}
.ls2e{letter-spacing:1.553760px;}
.ls22{letter-spacing:2.270880px;}
.lsb{letter-spacing:3.060000px;}
.ls26{letter-spacing:3.113280px;}
.ls23{letter-spacing:3.705120px;}
.ls2c{letter-spacing:4.422240px;}
.ls21{letter-spacing:5.139360px;}
.ls1f{letter-spacing:9.540000px;}
.ls31{letter-spacing:10.980000px;}
.ls24{letter-spacing:13.860000px;}
.ls2d{letter-spacing:14.580000px;}
.ls4{letter-spacing:48.420000px;}
.ls2{letter-spacing:71.280000px;}
.ls1{letter-spacing:72.000000px;}
.ls25{letter-spacing:275.189760px;}
.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;}
}
.ws14{word-spacing:-48.240000px;}
.ws11{word-spacing:-18.000000px;}
.wse{word-spacing:-15.300000px;}
.ws17{word-spacing:-15.238800px;}
.wsf{word-spacing:-15.199800px;}
.ws10{word-spacing:-14.940000px;}
.ws18{word-spacing:-14.580000px;}
.ws7{word-spacing:-13.500000px;}
.ws16{word-spacing:-13.447440px;}
.ws3{word-spacing:-12.420000px;}
.ws15{word-spacing:-12.105360px;}
.ws2{word-spacing:-12.060000px;}
.ws13{word-spacing:-11.878800px;}
.ws12{word-spacing:-11.790600px;}
.ws1{word-spacing:-11.700000px;}
.ws0{word-spacing:-11.340000px;}
.ws6{word-spacing:-10.980000px;}
.wsa{word-spacing:-10.529400px;}
.ws9{word-spacing:-10.440000px;}
.wsb{word-spacing:-10.350600px;}
.wsc{word-spacing:-10.213800px;}
.ws8{word-spacing:-9.000000px;}
.ws5{word-spacing:-7.560000px;}
.wsd{word-spacing:0.000000px;}
.ws4{word-spacing:60.840000px;}
._1b{margin-left:-2877.696000px;}
._1c{margin-left:-2846.517360px;}
._40{margin-left:-749.635440px;}
._5a{margin-left:-709.030080px;}
._46{margin-left:-624.174720px;}
._43{margin-left:-596.760000px;}
._4e{margin-left:-548.198880px;}
._52{margin-left:-543.686400px;}
._4f{margin-left:-502.691280px;}
._4c{margin-left:-423.038400px;}
._3e{margin-left:-406.513920px;}
._3d{margin-left:-362.208960px;}
._58{margin-left:-347.054640px;}
._56{margin-left:-279.554160px;}
._47{margin-left:-276.989040px;}
._54{margin-left:-230.478720px;}
._5{margin-left:-60.300000px;}
._42{margin-left:-19.527120px;}
._53{margin-left:-17.520720px;}
._4b{margin-left:-16.098720px;}
._3c{margin-left:-14.758080px;}
._3f{margin-left:-10.734480px;}
._2e{margin-left:-9.298320px;}
._36{margin-left:-7.134480px;}
._c{margin-left:-3.612240px;}
._d{margin-left:-2.455680px;}
._0{margin-left:-1.347840px;}
._1{width:1.200720px;}
._17{width:2.328240px;}
._2{width:3.332640px;}
._9{width:4.655760px;}
._25{width:5.702640px;}
._16{width:6.740160px;}
._14{width:7.893840px;}
._15{width:8.942880px;}
._b{width:10.034160px;}
._a{width:11.653200px;}
._13{width:12.962400px;}
._12{width:16.015680px;}
._f{width:17.569440px;}
._e{width:18.585360px;}
._29{width:19.929600px;}
._24{width:20.929680px;}
._22{width:22.318080px;}
._1f{width:23.425920px;}
._1e{width:24.501600px;}
._8{width:25.935840px;}
._7{width:27.489600px;}
._2b{width:29.276880px;}
._27{width:30.537360px;}
._19{width:31.869840px;}
._18{width:32.940000px;}
._1d{width:34.421760px;}
._28{width:35.970000px;}
._31{width:37.191840px;}
._11{width:38.322720px;}
._10{width:39.436080px;}
._26{width:41.254560px;}
._23{width:42.788160px;}
._2c{width:44.510160px;}
._51{width:45.809280px;}
._48{width:47.085360px;}
._2f{width:48.584880px;}
._30{width:49.595280px;}
._34{width:50.915520px;}
._50{width:52.143840px;}
._2a{width:53.425440px;}
._21{width:54.799920px;}
._20{width:56.174400px;}
._35{width:57.901920px;}
._2d{width:62.264400px;}
._3{width:65.496000px;}
._55{width:71.060160px;}
._49{width:72.841920px;}
._45{width:78.823440px;}
._44{width:80.496720px;}
._4a{width:84.836880px;}
._3b{width:92.535120px;}
._3a{width:93.942720px;}
._33{width:97.826640px;}
._32{width:99.056880px;}
._57{width:119.932800px;}
._59{width:178.019520px;}
._4{width:199.620000px;}
._39{width:229.939920px;}
._1a{width:282.270000px;}
._37{width:397.567680px;}
._38{width:412.822080px;}
._4d{width:427.800000px;}
._6{width:755.976000px;}
._41{width:920.880960px;}
.fc9{color:rgb(0,112,192);}
.fc8{color:transparent;}
.fca{color:rgb(15,17,21);}
.fc5{color:rgb(255,0,0);}
.fc4{color:rgb(70,120,134);}
.fc7{color:rgb(0,0,255);}
.fc1{color:rgb(26,123,123);}
.fc6{color:rgb(255,255,255);}
.fc3{color:rgb(102,102,102);}
.fc2{color:rgb(51,51,51);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:5.760000px;}
.fs11{font-size:6.000000px;}
.fsf{font-size:23.760000px;}
.fsc{font-size:30.240000px;}
.fsb{font-size:33.120000px;}
.fs10{font-size:36.000000px;}
.fse{font-size:37.946952px;}
.fs6{font-size:41.760000px;}
.fs4{font-size:45.360000px;}
.fs2{font-size:48.240000px;}
.fs3{font-size:51.120000px;}
.fs9{font-size:54.000000px;}
.fs7{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fsd{font-size:72.000000px;}
.fs1{font-size:81.360000px;}
.fs0{font-size:84.240000px;}
.fsa{font-size:95.760000px;}
.y4d{bottom:-246.630000px;}
.y4c{bottom:-212.970000px;}
.y4b{bottom:-179.310000px;}
.y84{bottom:-169.605000px;}
.y4a{bottom:-145.470000px;}
.y83{bottom:-135.945000px;}
.y49{bottom:-111.780000px;}
.y82{bottom:-102.105000px;}
.y48{bottom:-77.940000px;}
.y81{bottom:-68.445000px;}
.y47{bottom:-44.280000px;}
.y80{bottom:-34.740000px;}
.y86{bottom:-17.922750px;}
.y46{bottom:-10.440000px;}
.y7f{bottom:-0.900000px;}
.y0{bottom:0.000000px;}
.y257{bottom:1.837500px;}
.y10d{bottom:2.520000px;}
.y171{bottom:2.565000px;}
.y5{bottom:3.780000px;}
.y160{bottom:4.500000px;}
.y15c{bottom:4.680000px;}
.y74{bottom:5.550000px;}
.y10f{bottom:6.660000px;}
.y118{bottom:7.560000px;}
.y45{bottom:7.740000px;}
.y6a{bottom:11.520000px;}
.y72{bottom:11.910000px;}
.y8{bottom:12.420000px;}
.y174{bottom:13.680000px;}
.y16a{bottom:13.860000px;}
.y170{bottom:13.905000px;}
.y115{bottom:14.400000px;}
.y161{bottom:15.840000px;}
.y15e{bottom:16.050000px;}
.y129{bottom:16.245000px;}
.y113{bottom:16.380000px;}
.y44{bottom:21.600000px;}
.y9{bottom:21.780000px;}
.y6{bottom:23.220000px;}
.y7{bottom:24.480000px;}
.y71{bottom:25.050000px;}
.y69{bottom:27.000000px;}
.y7e{bottom:30.060000px;}
.yb{bottom:35.100000px;}
.y43{bottom:35.460000px;}
.y70{bottom:38.010000px;}
.y68{bottom:42.480000px;}
.y7d{bottom:43.020000px;}
.y8a{bottom:47.520000px;}
.y42{bottom:49.500000px;}
.y6f{bottom:51.150000px;}
.y67{bottom:54.720000px;}
.y7c{bottom:56.160000px;}
.y4{bottom:57.420000px;}
.y41{bottom:62.460000px;}
.y85{bottom:63.780000px;}
.y6e{bottom:64.110000px;}
.y89{bottom:66.420000px;}
.y7b{bottom:69.120000px;}
.y66{bottom:72.585000px;}
.y6d{bottom:77.070000px;}
.y7a{bottom:82.080000px;}
.y65{bottom:90.585000px;}
.y6c{bottom:94.350000px;}
.y79{bottom:95.220000px;}
.y1b0{bottom:100.800000px;}
.y139{bottom:101.160000px;}
.ybc{bottom:103.320000px;}
.yca{bottom:106.200000px;}
.y78{bottom:108.180000px;}
.y64{bottom:108.405000px;}
.yf6{bottom:109.260000px;}
.y183{bottom:113.220000px;}
.y18b{bottom:114.840000px;}
.y104{bottom:115.200000px;}
.y241{bottom:115.560000px;}
.y1af{bottom:120.600000px;}
.y138{bottom:120.960000px;}
.y77{bottom:121.320000px;}
.ybb{bottom:123.120000px;}
.yc9{bottom:126.000000px;}
.y63{bottom:126.225000px;}
.y3f{bottom:126.540000px;}
.yf5{bottom:129.060000px;}
.y1f9{bottom:131.760000px;}
.y182{bottom:133.020000px;}
.y76{bottom:133.560000px;}
.y1d2{bottom:134.460000px;}
.y18a{bottom:134.640000px;}
.y103{bottom:135.000000px;}
.y240{bottom:135.540000px;}
.y137{bottom:140.760000px;}
.y62{bottom:141.705000px;}
.y1ae{bottom:141.840000px;}
.yba{bottom:142.920000px;}
.yc8{bottom:145.980000px;}
.y3e{bottom:146.340000px;}
.yf4{bottom:148.860000px;}
.y22f{bottom:151.560000px;}
.y181{bottom:152.820000px;}
.y1f8{bottom:153.360000px;}
.y61{bottom:153.945000px;}
.y1d1{bottom:154.440000px;}
.y189{bottom:154.620000px;}
.y102{bottom:154.800000px;}
.y23f{bottom:155.520000px;}
.y136{bottom:160.560000px;}
.y18f{bottom:160.740000px;}
.yb9{bottom:162.750000px;}
.yc7{bottom:165.810000px;}
.y3d{bottom:166.170000px;}
.yf3{bottom:168.690000px;}
.y60{bottom:171.765000px;}
.y22e{bottom:171.930000px;}
.y180{bottom:172.650000px;}
.y188{bottom:174.450000px;}
.y101{bottom:174.630000px;}
.y20a{bottom:174.810000px;}
.y1f7{bottom:174.990000px;}
.y23e{bottom:175.530000px;}
.y135{bottom:180.570000px;}
.y1ad{bottom:182.370000px;}
.yb8{bottom:182.730000px;}
.yc6{bottom:185.610000px;}
.y3c{bottom:185.970000px;}
.yf2{bottom:188.670000px;}
.y5f{bottom:189.765000px;}
.y22d{bottom:191.910000px;}
.y17f{bottom:192.630000px;}
.y187{bottom:194.250000px;}
.y1d0{bottom:194.430000px;}
.y100{bottom:194.610000px;}
.y209{bottom:194.790000px;}
.y1f6{bottom:194.970000px;}
.y23d{bottom:195.510000px;}
.y134{bottom:200.370000px;}
.y1ac{bottom:202.170000px;}
.yb7{bottom:202.530000px;}
.yc5{bottom:205.410000px;}
.y3b{bottom:205.770000px;}
.y5e{bottom:207.585000px;}
.yf1{bottom:208.470000px;}
.y22c{bottom:211.890000px;}
.y17e{bottom:212.430000px;}
.y186{bottom:214.050000px;}
.yff{bottom:214.410000px;}
.y208{bottom:214.770000px;}
.y1f5{bottom:214.950000px;}
.y23c{bottom:215.490000px;}
.y133{bottom:220.170000px;}
.y1ab{bottom:221.970000px;}
.yb6{bottom:222.330000px;}
.y5d{bottom:225.405000px;}
.y3a{bottom:225.750000px;}
.yc4{bottom:226.470000px;}
.yf0{bottom:228.270000px;}
.y17d{bottom:230.430000px;}
.y22b{bottom:231.870000px;}
.y185{bottom:233.850000px;}
.yfe{bottom:234.210000px;}
.y1cf{bottom:234.750000px;}
.y1f4{bottom:234.930000px;}
.y23b{bottom:235.470000px;}
.y132{bottom:239.970000px;}
.y5c{bottom:240.885000px;}
.yb5{bottom:242.130000px;}
.y1aa{bottom:243.210000px;}
.y39{bottom:245.550000px;}
.yc3{bottom:246.270000px;}
.yef{bottom:248.070000px;}
.y17c{bottom:251.130000px;}
.y22a{bottom:251.850000px;}
.y5b{bottom:253.125000px;}
.y184{bottom:253.830000px;}
.yfd{bottom:254.010000px;}
.y1ce{bottom:254.730000px;}
.y1f3{bottom:254.910000px;}
.y23a{bottom:255.450000px;}
.yc2{bottom:259.050000px;}
.y131{bottom:259.770000px;}
.y18e{bottom:259.950000px;}
.yb4{bottom:261.930000px;}
.y38{bottom:265.350000px;}
.y1a9{bottom:266.250000px;}
.yee{bottom:267.870000px;}
.y17b{bottom:270.210000px;}
.y5a{bottom:270.945000px;}
.y229{bottom:271.830000px;}
.yfc{bottom:273.810000px;}
.y1cd{bottom:274.710000px;}
.y1f2{bottom:274.890000px;}
.y239{bottom:275.430000px;}
.y130{bottom:276.330000px;}
.yc1{bottom:278.850000px;}
.y18d{bottom:279.750000px;}
.yb3{bottom:281.910000px;}
.y17a{bottom:282.270000px;}
.y37{bottom:285.150000px;}
.y1a8{bottom:287.490000px;}
.yed{bottom:287.850000px;}
.y12f{bottom:288.390000px;}
.y59{bottom:288.945000px;}
.y228{bottom:291.810000px;}
.yfb{bottom:293.790000px;}
.y179{bottom:294.150000px;}
.y1cc{bottom:294.690000px;}
.y1f1{bottom:294.870000px;}
.y238{bottom:295.410000px;}
.yc0{bottom:298.650000px;}
.y12e{bottom:300.450000px;}
.y18c{bottom:300.810000px;}
.yb2{bottom:301.710000px;}
.y36{bottom:306.390000px;}
.y58{bottom:306.795000px;}
.y1a7{bottom:307.290000px;}
.yec{bottom:307.650000px;}
.y178{bottom:308.010000px;}
.y227{bottom:311.790000px;}
.y12d{bottom:312.330000px;}
.y1cb{bottom:314.670000px;}
.yfa{bottom:314.850000px;}
.y237{bottom:315.390000px;}
.ybf{bottom:318.450000px;}
.yb1{bottom:321.510000px;}
.y177{bottom:321.870000px;}
.y35{bottom:323.670000px;}
.y57{bottom:324.615000px;}
.y4e{bottom:327.090000px;}
.yeb{bottom:327.450000px;}
.y226{bottom:331.770000px;}
.y34{bottom:332.130000px;}
.yf9{bottom:334.470000px;}
.y1ca{bottom:334.650000px;}
.y1f0{bottom:334.830000px;}
.y236{bottom:335.370000px;}
.y176{bottom:335.550000px;}
.ybe{bottom:339.690000px;}
.y12c{bottom:339.870000px;}
.yb0{bottom:341.310000px;}
.y56{bottom:342.435000px;}
.y1a6{bottom:347.070000px;}
.yea{bottom:347.250000px;}
.y175{bottom:349.410000px;}
.y225{bottom:351.750000px;}
.y33{bottom:352.290000px;}
.y12b{bottom:353.730000px;}
.y1c9{bottom:354.630000px;}
.y1ef{bottom:355.170000px;}
.y235{bottom:355.350000px;}
.y55{bottom:360.255000px;}
.ybd{bottom:360.390000px;}
.yaf{bottom:361.110000px;}
.y173{bottom:363.270000px;}
.y32{bottom:365.250000px;}
.y1a5{bottom:366.870000px;}
.ye9{bottom:367.050000px;}
.y12a{bottom:367.590000px;}
.y224{bottom:371.730000px;}
.y1c8{bottom:374.430000px;}
.y1ee{bottom:375.150000px;}
.y234{bottom:375.330000px;}
.y172{bottom:376.950000px;}
.y54{bottom:378.075000px;}
.yae{bottom:381.090000px;}
.y31{bottom:383.610000px;}
.y128{bottom:386.490000px;}
.y1a4{bottom:386.670000px;}
.ye8{bottom:387.030000px;}
.y16f{bottom:390.810000px;}
.y53{bottom:391.575000px;}
.y223{bottom:393.195000px;}
.y1c7{bottom:394.815000px;}
.y1ed{bottom:395.175000px;}
.y233{bottom:395.355000px;}
.y52{bottom:400.395000px;}
.yad{bottom:400.935000px;}
.y16e{bottom:404.715000px;}
.y1a3{bottom:406.515000px;}
.ye7{bottom:406.875000px;}
.y30{bottom:407.595000px;}
.y127{bottom:414.075000px;}
.y1c6{bottom:414.795000px;}
.y1ec{bottom:415.155000px;}
.y232{bottom:415.335000px;}
.y222{bottom:415.695000px;}
.y51{bottom:418.215000px;}
.y16d{bottom:418.395000px;}
.yac{bottom:420.735000px;}
.y1a2{bottom:426.315000px;}
.ye6{bottom:426.675000px;}
.y126{bottom:427.935000px;}
.y2f{bottom:431.355000px;}
.y16c{bottom:432.255000px;}
.y1c5{bottom:434.775000px;}
.y1eb{bottom:435.135000px;}
.y231{bottom:435.315000px;}
.y221{bottom:435.495000px;}
.y50{bottom:436.035000px;}
.y75{bottom:439.455000px;}
.yab{bottom:440.535000px;}
.y125{bottom:441.615000px;}
.y16b{bottom:446.115000px;}
.y1a1{bottom:446.295000px;}
.ye5{bottom:446.475000px;}
.y2e{bottom:452.055000px;}
.y4f{bottom:453.855000px;}
.y1c4{bottom:454.755000px;}
.y1ea{bottom:455.115000px;}
.y220{bottom:455.295000px;}
.y169{bottom:459.795000px;}
.yaa{bottom:460.335000px;}
.y124{bottom:460.515000px;}
.ye4{bottom:466.275000px;}
.y1a0{bottom:467.355000px;}
.y2d{bottom:471.675000px;}
.y168{bottom:473.655000px;}
.y1c3{bottom:474.735000px;}
.y1e9{bottom:475.095000px;}
.y21f{bottom:475.275000px;}
.ya9{bottom:480.315000px;}
.y2c{bottom:485.535000px;}
.ye3{bottom:486.255000px;}
.y123{bottom:488.235000px;}
.y167{bottom:489.675000px;}
.y19f{bottom:490.395000px;}
.y2b{bottom:494.175000px;}
.y1c2{bottom:494.715000px;}
.y1e8{bottom:495.075000px;}
.y21e{bottom:495.255000px;}
.ya8{bottom:500.115000px;}
.y122{bottom:501.915000px;}
.ye2{bottom:506.055000px;}
.y166{bottom:508.575000px;}
.y19e{bottom:511.635000px;}
.y1c1{bottom:514.695000px;}
.y1e7{bottom:515.055000px;}
.y21d{bottom:515.235000px;}
.y121{bottom:515.775000px;}
.y2a{bottom:517.395000px;}
.ya7{bottom:519.915000px;}
.ye1{bottom:525.855000px;}
.y19d{bottom:531.435000px;}
.y256{bottom:534.135000px;}
.y120{bottom:534.675000px;}
.y1c0{bottom:535.035000px;}
.y21c{bottom:535.215000px;}
.y165{bottom:536.655000px;}
.ya6{bottom:539.715000px;}
.y29{bottom:540.615000px;}
.ye0{bottom:545.655000px;}
.y164{bottom:549.615000px;}
.y19c{bottom:551.415000px;}
.y255{bottom:554.295000px;}
.y207{bottom:554.655000px;}
.y1bf{bottom:555.015000px;}
.y21b{bottom:555.195000px;}
.ya5{bottom:559.515000px;}
.y11f{bottom:562.215000px;}
.y163{bottom:562.575000px;}
.y28{bottom:564.015000px;}
.ydf{bottom:565.455000px;}
.y19b{bottom:571.215000px;}
.y162{bottom:574.635000px;}
.y1be{bottom:574.995000px;}
.y21a{bottom:575.175000px;}
.y254{bottom:575.895000px;}
.y11e{bottom:576.075000px;}
.ya4{bottom:579.495000px;}
.yde{bottom:585.435000px;}
.y11d{bottom:589.935000px;}
.y15f{bottom:590.655000px;}
.y19a{bottom:592.275000px;}
.y206{bottom:594.615000px;}
.y1bd{bottom:594.975000px;}
.y219{bottom:595.155000px;}
.y253{bottom:595.875000px;}
.ya3{bottom:599.295000px;}
.y11c{bottom:603.615000px;}
.ydd{bottom:605.235000px;}
.y15d{bottom:606.495000px;}
.y6b{bottom:610.635000px;}
.y205{bottom:614.595000px;}
.y1bc{bottom:614.955000px;}
.y218{bottom:615.135000px;}
.y27{bottom:615.495000px;}
.y252{bottom:615.855000px;}
.y199{bottom:616.035000px;}
.ya2{bottom:619.095000px;}
.y11b{bottom:622.545000px;}
.y15b{bottom:624.885000px;}
.ydc{bottom:625.065000px;}
.y204{bottom:634.605000px;}
.y26{bottom:634.785000px;}
.y1bb{bottom:634.965000px;}
.y217{bottom:635.145000px;}
.y251{bottom:635.865000px;}
.ya1{bottom:638.925000px;}
.ydb{bottom:644.865000px;}
.y15a{bottom:647.205000px;}
.y11a{bottom:650.265000px;}
.y203{bottom:654.585000px;}
.y1e6{bottom:654.765000px;}
.y1ba{bottom:654.945000px;}
.y230{bottom:655.125000px;}
.y216{bottom:655.485000px;}
.y250{bottom:655.845000px;}
.y198{bottom:656.565000px;}
.y25{bottom:657.825000px;}
.ya0{bottom:658.725000px;}
.y119{bottom:663.945000px;}
.yda{bottom:664.665000px;}
.y154{bottom:665.565000px;}
.y24{bottom:673.305000px;}
.y202{bottom:674.565000px;}
.y1b9{bottom:674.925000px;}
.y1e5{bottom:675.105000px;}
.y215{bottom:675.465000px;}
.y24f{bottom:675.825000px;}
.y197{bottom:676.545000px;}
.y117{bottom:677.805000px;}
.y9f{bottom:678.705000px;}
.yd9{bottom:684.645000px;}
.y153{bottom:685.365000px;}
.yf8{bottom:685.905000px;}
.y159{bottom:686.805000px;}
.y23{bottom:688.965000px;}
.y1b8{bottom:694.725000px;}
.y201{bottom:694.905000px;}
.y1e4{bottom:695.085000px;}
.y214{bottom:695.445000px;}
.y24e{bottom:695.805000px;}
.y196{bottom:696.345000px;}
.y116{bottom:696.705000px;}
.y9e{bottom:698.505000px;}
.y22{bottom:704.445000px;}
.y152{bottom:705.345000px;}
.yf7{bottom:705.525000px;}
.y158{bottom:706.605000px;}
.y1b7{bottom:713.085000px;}
.y200{bottom:714.885000px;}
.y1e3{bottom:715.065000px;}
.y213{bottom:715.425000px;}
.y24d{bottom:715.785000px;}
.y195{bottom:716.145000px;}
.y9d{bottom:718.305000px;}
.y21{bottom:719.925000px;}
.yd8{bottom:724.245000px;}
.y151{bottom:725.145000px;}
.y157{bottom:726.405000px;}
.y20{bottom:730.545000px;}
.y1ff{bottom:734.865000px;}
.y1e2{bottom:735.045000px;}
.y212{bottom:735.405000px;}
.y24c{bottom:735.765000px;}
.y194{bottom:735.945000px;}
.y9c{bottom:738.105000px;}
.y40{bottom:740.265000px;}
.yd7{bottom:744.045000px;}
.y150{bottom:744.945000px;}
.y1f{bottom:745.485000px;}
.y156{bottom:746.205000px;}
.y114{bottom:751.965000px;}
.y1b6{bottom:753.765000px;}
.y1fe{bottom:754.845000px;}
.y1e1{bottom:755.025000px;}
.y211{bottom:755.385000px;}
.y193{bottom:755.745000px;}
.y9b{bottom:757.905000px;}
.y1e{bottom:763.305000px;}
.yd6{bottom:763.845000px;}
.y14f{bottom:764.745000px;}
.y155{bottom:766.005000px;}
.y1b5{bottom:773.565000px;}
.y1fd{bottom:774.645000px;}
.y1e0{bottom:775.005000px;}
.y210{bottom:775.365000px;}
.y192{bottom:775.725000px;}
.y1d{bottom:776.265000px;}
.y112{bottom:777.525000px;}
.y9a{bottom:777.885000px;}
.y14e{bottom:781.665000px;}
.yd5{bottom:783.825000px;}
.y1c{bottom:789.225000px;}
.y14d{bottom:792.105000px;}
.y1b4{bottom:793.365000px;}
.y1df{bottom:794.985000px;}
.y20f{bottom:795.345000px;}
.y191{bottom:795.525000px;}
.y24b{bottom:795.705000px;}
.y99{bottom:797.685000px;}
.y1b{bottom:803.265000px;}
.yd4{bottom:803.625000px;}
.y111{bottom:805.065000px;}
.y1b3{bottom:813.165000px;}
.y1de{bottom:814.965000px;}
.y20e{bottom:815.325000px;}
.y24a{bottom:815.685000px;}
.y190{bottom:816.585000px;}
.y98{bottom:817.485000px;}
.y1a{bottom:818.025000px;}
.y14c{bottom:818.205000px;}
.y110{bottom:818.925000px;}
.yd3{bottom:823.425000px;}
.y19{bottom:829.185000px;}
.y14b{bottom:830.085000px;}
.y10e{bottom:832.785000px;}
.y1b2{bottom:834.225000px;}
.y1dd{bottom:834.945000px;}
.y20d{bottom:835.305000px;}
.y249{bottom:835.665000px;}
.y97{bottom:837.285000px;}
.yd2{bottom:843.225000px;}
.y14a{bottom:843.945000px;}
.y10c{bottom:852.990000px;}
.y18{bottom:853.530000px;}
.y1dc{bottom:854.970000px;}
.y20c{bottom:855.330000px;}
.y248{bottom:855.690000px;}
.y96{bottom:857.130000px;}
.y149{bottom:857.670000px;}
.yd1{bottom:863.070000px;}
.y148{bottom:871.530000px;}
.y17{bottom:872.790000px;}
.y10b{bottom:874.950000px;}
.y20b{bottom:875.310000px;}
.y247{bottom:875.670000px;}
.y95{bottom:877.110000px;}
.yd0{bottom:883.050000px;}
.y147{bottom:885.390000px;}
.y16{bottom:892.050000px;}
.y10a{bottom:894.750000px;}
.y1db{bottom:894.930000px;}
.y1fc{bottom:895.290000px;}
.y246{bottom:895.650000px;}
.y94{bottom:896.910000px;}
.y146{bottom:899.070000px;}
.ycf{bottom:902.850000px;}
.y15{bottom:906.990000px;}
.y145{bottom:912.930000px;}
.y109{bottom:914.550000px;}
.y1da{bottom:915.270000px;}
.y245{bottom:915.630000px;}
.y93{bottom:916.710000px;}
.y14{bottom:917.610000px;}
.yce{bottom:922.650000px;}
.y144{bottom:926.790000px;}
.y13{bottom:931.830000px;}
.y108{bottom:934.350000px;}
.y1d9{bottom:935.250000px;}
.y1b1{bottom:935.610000px;}
.y92{bottom:936.510000px;}
.y143{bottom:940.470000px;}
.ycd{bottom:942.450000px;}
.y12{bottom:953.070000px;}
.y107{bottom:954.150000px;}
.y142{bottom:954.330000px;}
.y1d8{bottom:955.230000px;}
.y244{bottom:955.590000px;}
.y91{bottom:956.310000px;}
.ycc{bottom:963.510000px;}
.y141{bottom:968.190000px;}
.y11{bottom:972.330000px;}
.y106{bottom:974.130000px;}
.y1d7{bottom:975.210000px;}
.y243{bottom:975.570000px;}
.y90{bottom:976.290000px;}
.y140{bottom:981.870000px;}
.ycb{bottom:983.310000px;}
.y105{bottom:995.190000px;}
.y242{bottom:995.550000px;}
.y13f{bottom:995.730000px;}
.y8f{bottom:996.090000px;}
.y10{bottom:1000.050000px;}
.y13e{bottom:1009.590000px;}
.y1d6{bottom:1015.170000px;}
.y1fb{bottom:1015.530000px;}
.y8e{bottom:1015.890000px;}
.yf{bottom:1024.890000px;}
.y13d{bottom:1025.610000px;}
.y1d5{bottom:1035.150000px;}
.y1fa{bottom:1035.510000px;}
.y8d{bottom:1035.690000px;}
.ye{bottom:1039.110000px;}
.y13c{bottom:1044.510000px;}
.y73{bottom:1049.580000px;}
.yd{bottom:1054.590000px;}
.y1d4{bottom:1055.130000px;}
.y8c{bottom:1055.490000px;}
.y13b{bottom:1059.990000px;}
.yc{bottom:1070.070000px;}
.y1d3{bottom:1074.930000px;}
.y8b{bottom:1075.290000px;}
.y13a{bottom:1076.730000px;}
.y3{bottom:1087.560000px;}
.ya{bottom:1088.100000px;}
.y2{bottom:1101.240000px;}
.y88{bottom:1105.380000px;}
.y1{bottom:1117.080000px;}
.y87{bottom:1122.660000px;}
.h20{height:4.064063px;}
.h9{height:5.042813px;}
.h42{height:6.257812px;}
.h5{height:13.500000px;}
.h32{height:13.680000px;}
.h37{height:13.716000px;}
.h2d{height:13.860000px;}
.h3e{height:13.860150px;}
.h3d{height:13.896000px;}
.h3c{height:15.840000px;}
.h3a{height:16.020000px;}
.h3b{height:16.056000px;}
.h2e{height:18.000000px;}
.h31{height:18.900000px;}
.h34{height:18.936000px;}
.h1d{height:20.801602px;}
.h38{height:21.114844px;}
.h26{height:22.320000px;}
.h2c{height:24.924375px;}
.h1f{height:25.400391px;}
.h30{height:25.560000px;}
.h1a{height:25.699425px;}
.h12{height:26.474766px;}
.h2f{height:27.540000px;}
.h35{height:27.576000px;}
.h33{height:27.720000px;}
.h25{height:29.276367px;}
.h16{height:30.963516px;}
.h22{height:32.868281px;}
.h11{height:32.942109px;}
.h1e{height:34.036523px;}
.h7{height:34.200000px;}
.hd{height:35.120039px;}
.h8{height:36.560391px;}
.h36{height:38.100586px;}
.hc{height:39.313477px;}
.h18{height:39.712148px;}
.h39{height:41.726953px;}
.hf{height:42.164648px;}
.h13{height:42.233555px;}
.h3{height:44.754961px;}
.h19{height:46.251562px;}
.h1c{height:47.276367px;}
.hb{height:48.224531px;}
.h2a{height:49.255313px;}
.h3f{height:50.273438px;}
.h15{height:50.800781px;}
.h2b{height:52.171875px;}
.h6{height:52.319180px;}
.h28{height:52.998047px;}
.h17{height:55.291992px;}
.h1b{height:55.825312px;}
.h2{height:59.436914px;}
.h41{height:59.439023px;}
.h10{height:60.320391px;}
.h40{height:63.035156px;}
.h4{height:65.884219px;}
.he{height:67.565039px;}
.h14{height:67.824844px;}
.ha{height:68.400000px;}
.h21{height:72.900000px;}
.h29{height:75.093750px;}
.h24{height:102.456000px;}
.h27{height:144.720000px;}
.h23{height:484.275000px;}
.h0{height:1190.700000px;}
.h1{height:1191.000000px;}
.w21{width:43.200000px;}
.w1e{width:47.160000px;}
.w1f{width:47.340000px;}
.w22{width:47.916000px;}
.w1a{width:48.960000px;}
.w1d{width:49.140000px;}
.w1c{width:49.356000px;}
.w20{width:53.136000px;}
.w23{width:58.320000px;}
.w19{width:73.260000px;}
.w4{width:82.080000px;}
.w6{width:101.160000px;}
.w17{width:108.000000px;}
.w18{width:109.476000px;}
.wd{width:114.840000px;}
.w15{width:115.056000px;}
.we{width:128.196000px;}
.wc{width:134.676000px;}
.w7{width:154.470000px;}
.w14{width:162.030000px;}
.w10{width:166.170000px;}
.wf{width:168.870000px;}
.wb{width:180.390000px;}
.w9{width:182.370000px;}
.w1b{width:184.170000px;}
.w16{width:243.435000px;}
.w12{width:249.510000px;}
.w13{width:270.075000px;}
.w8{width:532.725000px;}
.w5{width:639.870000px;}
.w11{width:712.770000px;}
.w3{width:721.950000px;}
.wa{width:743.040000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x52{left:4.252500px;}
.x8{left:8.100000px;}
.x15{left:10.800000px;}
.x4d{left:12.960000px;}
.x47{left:15.480000px;}
.x41{left:17.100000px;}
.x4c{left:18.540000px;}
.x1a{left:21.255000px;}
.x45{left:23.265000px;}
.x20{left:24.480000px;}
.x38{left:26.820000px;}
.x2b{left:29.340000px;}
.x2e{left:30.780000px;}
.x2a{left:32.220000px;}
.xe{left:33.659987px;}
.x22{left:35.640000px;}
.x25{left:36.720000px;}
.x27{left:39.780000px;}
.x28{left:41.220000px;}
.x2c{left:42.480000px;}
.x34{left:44.640000px;}
.x26{left:46.800000px;}
.x23{left:48.780000px;}
.xa{left:50.580000px;}
.x32{left:52.380000px;}
.x35{left:53.640000px;}
.x3b{left:54.765000px;}
.x2f{left:59.400000px;}
.x29{left:60.660000px;}
.x2d{left:62.820000px;}
.x4a{left:70.785000px;}
.x6{left:73.974000px;}
.x9{left:79.416000px;}
.x17{left:80.460000px;}
.x4e{left:82.125000px;}
.x4b{left:86.445000px;}
.x5{left:87.654000px;}
.x14{left:93.456000px;}
.x19{left:94.896000px;}
.x50{left:101.195987px;}
.x4{left:108.036000px;}
.x1e{left:112.356000px;}
.x4f{left:128.375987px;}
.x3d{left:129.816000px;}
.xb{left:131.435987px;}
.x3c{left:135.035987px;}
.x10{left:145.115987px;}
.xc{left:166.169987px;}
.x3e{left:178.770000px;}
.x7{left:190.110000px;}
.x30{left:195.869987px;}
.xd{left:200.369987px;}
.x36{left:202.529987px;}
.xf{left:229.169987px;}
.x1{left:239.969987px;}
.x1f{left:247.035000px;}
.x16{left:303.195000px;}
.x18{left:310.395000px;}
.x21{left:361.875000px;}
.x3f{left:362.955000px;}
.x3{left:366.374987px;}
.x2{left:401.654987px;}
.x11{left:407.774987px;}
.x40{left:412.305000px;}
.x37{left:445.065000px;}
.x42{left:461.445000px;}
.x31{left:465.225000px;}
.x51{left:483.944987px;}
.x12{left:489.164987px;}
.x13{left:490.784987px;}
.x43{left:508.605000px;}
.x39{left:553.065000px;}
.x44{left:555.945000px;}
.x46{left:609.090000px;}
.x1b{left:620.253000px;}
.x33{left:627.270000px;}
.x24{left:658.950000px;}
.x3a{left:662.550000px;}
.x48{left:701.430000px;}
.x49{left:749.340000px;}
.x1d{left:799.199987px;}
.x1c{left:813.599987px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls30{letter-spacing:-17.120000pt;}
.ls2b{letter-spacing:-17.013333pt;}
.ls33{letter-spacing:-16.480000pt;}
.lsc{letter-spacing:-15.840000pt;}
.ls1e{letter-spacing:-15.200000pt;}
.ls2a{letter-spacing:-14.560000pt;}
.ls16{letter-spacing:-13.920000pt;}
.ls28{letter-spacing:-12.640000pt;}
.ls32{letter-spacing:-10.080000pt;}
.ls14{letter-spacing:-9.440000pt;}
.ls18{letter-spacing:-6.240000pt;}
.ls19{letter-spacing:-0.592000pt;}
.ls15{letter-spacing:-0.544000pt;}
.lsa{letter-spacing:-0.480000pt;}
.ls9{letter-spacing:-0.320000pt;}
.ls1a{letter-spacing:-0.239467pt;}
.ls11{letter-spacing:-0.201067pt;}
.lsd{letter-spacing:-0.192000pt;}
.ls1c{letter-spacing:-0.161067pt;}
.ls8{letter-spacing:-0.160000pt;}
.lse{letter-spacing:-0.079467pt;}
.ls27{letter-spacing:-0.051840pt;}
.ls7{letter-spacing:0.000000pt;}
.ls1d{letter-spacing:0.040320pt;}
.lsf{letter-spacing:0.079467pt;}
.ls12{letter-spacing:0.106240pt;}
.ls5{letter-spacing:0.128640pt;}
.ls0{letter-spacing:0.136320pt;}
.ls10{letter-spacing:0.158933pt;}
.ls3{letter-spacing:0.160000pt;}
.ls13{letter-spacing:0.230933pt;}
.ls1b{letter-spacing:0.231040pt;}
.ls20{letter-spacing:0.265600pt;}
.ls6{letter-spacing:0.320000pt;}
.ls17{letter-spacing:0.480000pt;}
.ls2f{letter-spacing:0.743680pt;}
.ls29{letter-spacing:0.800000pt;}
.ls2e{letter-spacing:1.381120pt;}
.ls22{letter-spacing:2.018560pt;}
.lsb{letter-spacing:2.720000pt;}
.ls26{letter-spacing:2.767360pt;}
.ls23{letter-spacing:3.293440pt;}
.ls2c{letter-spacing:3.930880pt;}
.ls21{letter-spacing:4.568320pt;}
.ls1f{letter-spacing:8.480000pt;}
.ls31{letter-spacing:9.760000pt;}
.ls24{letter-spacing:12.320000pt;}
.ls2d{letter-spacing:12.960000pt;}
.ls4{letter-spacing:43.040000pt;}
.ls2{letter-spacing:63.360000pt;}
.ls1{letter-spacing:64.000000pt;}
.ls25{letter-spacing:244.613120pt;}
.ws14{word-spacing:-42.880000pt;}
.ws11{word-spacing:-16.000000pt;}
.wse{word-spacing:-13.600000pt;}
.ws17{word-spacing:-13.545600pt;}
.wsf{word-spacing:-13.510933pt;}
.ws10{word-spacing:-13.280000pt;}
.ws18{word-spacing:-12.960000pt;}
.ws7{word-spacing:-12.000000pt;}
.ws16{word-spacing:-11.953280pt;}
.ws3{word-spacing:-11.040000pt;}
.ws15{word-spacing:-10.760320pt;}
.ws2{word-spacing:-10.720000pt;}
.ws13{word-spacing:-10.558933pt;}
.ws12{word-spacing:-10.480533pt;}
.ws1{word-spacing:-10.400000pt;}
.ws0{word-spacing:-10.080000pt;}
.ws6{word-spacing:-9.760000pt;}
.wsa{word-spacing:-9.359467pt;}
.ws9{word-spacing:-9.280000pt;}
.wsb{word-spacing:-9.200533pt;}
.wsc{word-spacing:-9.078933pt;}
.ws8{word-spacing:-8.000000pt;}
.ws5{word-spacing:-6.720000pt;}
.wsd{word-spacing:0.000000pt;}
.ws4{word-spacing:54.080000pt;}
._1b{margin-left:-2557.952000pt;}
._1c{margin-left:-2530.237653pt;}
._40{margin-left:-666.342613pt;}
._5a{margin-left:-630.248960pt;}
._46{margin-left:-554.821973pt;}
._43{margin-left:-530.453333pt;}
._4e{margin-left:-487.287893pt;}
._52{margin-left:-483.276800pt;}
._4f{margin-left:-446.836693pt;}
._4c{margin-left:-376.034133pt;}
._3e{margin-left:-361.345707pt;}
._3d{margin-left:-321.963520pt;}
._58{margin-left:-308.493013pt;}
._56{margin-left:-248.492587pt;}
._47{margin-left:-246.212480pt;}
._54{margin-left:-204.869973pt;}
._5{margin-left:-53.600000pt;}
._42{margin-left:-17.357440pt;}
._53{margin-left:-15.573973pt;}
._4b{margin-left:-14.309973pt;}
._3c{margin-left:-13.118293pt;}
._3f{margin-left:-9.541760pt;}
._2e{margin-left:-8.265173pt;}
._36{margin-left:-6.341760pt;}
._c{margin-left:-3.210880pt;}
._d{margin-left:-2.182827pt;}
._0{margin-left:-1.198080pt;}
._1{width:1.067307pt;}
._17{width:2.069547pt;}
._2{width:2.962347pt;}
._9{width:4.138453pt;}
._25{width:5.069013pt;}
._16{width:5.991253pt;}
._14{width:7.016747pt;}
._15{width:7.949227pt;}
._b{width:8.919253pt;}
._a{width:10.358400pt;}
._13{width:11.522133pt;}
._12{width:14.236160pt;}
._f{width:15.617280pt;}
._e{width:16.520320pt;}
._29{width:17.715200pt;}
._24{width:18.604160pt;}
._22{width:19.838293pt;}
._1f{width:20.823040pt;}
._1e{width:21.779200pt;}
._8{width:23.054080pt;}
._7{width:24.435200pt;}
._2b{width:26.023893pt;}
._27{width:27.144320pt;}
._19{width:28.328747pt;}
._18{width:29.280000pt;}
._1d{width:30.597120pt;}
._28{width:31.973333pt;}
._31{width:33.059413pt;}
._11{width:34.064640pt;}
._10{width:35.054293pt;}
._26{width:36.670720pt;}
._23{width:38.033920pt;}
._2c{width:39.564587pt;}
._51{width:40.719360pt;}
._48{width:41.853653pt;}
._2f{width:43.186560pt;}
._30{width:44.084693pt;}
._34{width:45.258240pt;}
._50{width:46.350080pt;}
._2a{width:47.489280pt;}
._21{width:48.711040pt;}
._20{width:49.932800pt;}
._35{width:51.468373pt;}
._2d{width:55.346133pt;}
._3{width:58.218667pt;}
._55{width:63.164587pt;}
._49{width:64.748373pt;}
._45{width:70.065280pt;}
._44{width:71.552640pt;}
._4a{width:75.410560pt;}
._3b{width:82.253440pt;}
._3a{width:83.504640pt;}
._33{width:86.957013pt;}
._32{width:88.050560pt;}
._57{width:106.606933pt;}
._59{width:158.239573pt;}
._4{width:177.440000pt;}
._39{width:204.391040pt;}
._1a{width:250.906667pt;}
._37{width:353.393493pt;}
._38{width:366.952960pt;}
._4d{width:380.266667pt;}
._6{width:671.978667pt;}
._41{width:818.560853pt;}
.fs8{font-size:5.120000pt;}
.fs11{font-size:5.333333pt;}
.fsf{font-size:21.120000pt;}
.fsc{font-size:26.880000pt;}
.fsb{font-size:29.440000pt;}
.fs10{font-size:32.000000pt;}
.fse{font-size:33.730624pt;}
.fs6{font-size:37.120000pt;}
.fs4{font-size:40.320000pt;}
.fs2{font-size:42.880000pt;}
.fs3{font-size:45.440000pt;}
.fs9{font-size:48.000000pt;}
.fs7{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fsd{font-size:64.000000pt;}
.fs1{font-size:72.320000pt;}
.fs0{font-size:74.880000pt;}
.fsa{font-size:85.120000pt;}
.y4d{bottom:-219.226667pt;}
.y4c{bottom:-189.306667pt;}
.y4b{bottom:-159.386667pt;}
.y84{bottom:-150.760000pt;}
.y4a{bottom:-129.306667pt;}
.y83{bottom:-120.840000pt;}
.y49{bottom:-99.360000pt;}
.y82{bottom:-90.760000pt;}
.y48{bottom:-69.280000pt;}
.y81{bottom:-60.840000pt;}
.y47{bottom:-39.360000pt;}
.y80{bottom:-30.880000pt;}
.y86{bottom:-15.931333pt;}
.y46{bottom:-9.280000pt;}
.y7f{bottom:-0.800000pt;}
.y0{bottom:0.000000pt;}
.y257{bottom:1.633333pt;}
.y10d{bottom:2.240000pt;}
.y171{bottom:2.280000pt;}
.y5{bottom:3.360000pt;}
.y160{bottom:4.000000pt;}
.y15c{bottom:4.160000pt;}
.y74{bottom:4.933333pt;}
.y10f{bottom:5.920000pt;}
.y118{bottom:6.720000pt;}
.y45{bottom:6.880000pt;}
.y6a{bottom:10.240000pt;}
.y72{bottom:10.586667pt;}
.y8{bottom:11.040000pt;}
.y174{bottom:12.160000pt;}
.y16a{bottom:12.320000pt;}
.y170{bottom:12.360000pt;}
.y115{bottom:12.800000pt;}
.y161{bottom:14.080000pt;}
.y15e{bottom:14.266667pt;}
.y129{bottom:14.440000pt;}
.y113{bottom:14.560000pt;}
.y44{bottom:19.200000pt;}
.y9{bottom:19.360000pt;}
.y6{bottom:20.640000pt;}
.y7{bottom:21.760000pt;}
.y71{bottom:22.266667pt;}
.y69{bottom:24.000000pt;}
.y7e{bottom:26.720000pt;}
.yb{bottom:31.200000pt;}
.y43{bottom:31.520000pt;}
.y70{bottom:33.786667pt;}
.y68{bottom:37.760000pt;}
.y7d{bottom:38.240000pt;}
.y8a{bottom:42.240000pt;}
.y42{bottom:44.000000pt;}
.y6f{bottom:45.466667pt;}
.y67{bottom:48.640000pt;}
.y7c{bottom:49.920000pt;}
.y4{bottom:51.040000pt;}
.y41{bottom:55.520000pt;}
.y85{bottom:56.693333pt;}
.y6e{bottom:56.986667pt;}
.y89{bottom:59.040000pt;}
.y7b{bottom:61.440000pt;}
.y66{bottom:64.520000pt;}
.y6d{bottom:68.506667pt;}
.y7a{bottom:72.960000pt;}
.y65{bottom:80.520000pt;}
.y6c{bottom:83.866667pt;}
.y79{bottom:84.640000pt;}
.y1b0{bottom:89.600000pt;}
.y139{bottom:89.920000pt;}
.ybc{bottom:91.840000pt;}
.yca{bottom:94.400000pt;}
.y78{bottom:96.160000pt;}
.y64{bottom:96.360000pt;}
.yf6{bottom:97.120000pt;}
.y183{bottom:100.640000pt;}
.y18b{bottom:102.080000pt;}
.y104{bottom:102.400000pt;}
.y241{bottom:102.720000pt;}
.y1af{bottom:107.200000pt;}
.y138{bottom:107.520000pt;}
.y77{bottom:107.840000pt;}
.ybb{bottom:109.440000pt;}
.yc9{bottom:112.000000pt;}
.y63{bottom:112.200000pt;}
.y3f{bottom:112.480000pt;}
.yf5{bottom:114.720000pt;}
.y1f9{bottom:117.120000pt;}
.y182{bottom:118.240000pt;}
.y76{bottom:118.720000pt;}
.y1d2{bottom:119.520000pt;}
.y18a{bottom:119.680000pt;}
.y103{bottom:120.000000pt;}
.y240{bottom:120.480000pt;}
.y137{bottom:125.120000pt;}
.y62{bottom:125.960000pt;}
.y1ae{bottom:126.080000pt;}
.yba{bottom:127.040000pt;}
.yc8{bottom:129.760000pt;}
.y3e{bottom:130.080000pt;}
.yf4{bottom:132.320000pt;}
.y22f{bottom:134.720000pt;}
.y181{bottom:135.840000pt;}
.y1f8{bottom:136.320000pt;}
.y61{bottom:136.840000pt;}
.y1d1{bottom:137.280000pt;}
.y189{bottom:137.440000pt;}
.y102{bottom:137.600000pt;}
.y23f{bottom:138.240000pt;}
.y136{bottom:142.720000pt;}
.y18f{bottom:142.880000pt;}
.yb9{bottom:144.666667pt;}
.yc7{bottom:147.386667pt;}
.y3d{bottom:147.706667pt;}
.yf3{bottom:149.946667pt;}
.y60{bottom:152.680000pt;}
.y22e{bottom:152.826667pt;}
.y180{bottom:153.466667pt;}
.y188{bottom:155.066667pt;}
.y101{bottom:155.226667pt;}
.y20a{bottom:155.386667pt;}
.y1f7{bottom:155.546667pt;}
.y23e{bottom:156.026667pt;}
.y135{bottom:160.506667pt;}
.y1ad{bottom:162.106667pt;}
.yb8{bottom:162.426667pt;}
.yc6{bottom:164.986667pt;}
.y3c{bottom:165.306667pt;}
.yf2{bottom:167.706667pt;}
.y5f{bottom:168.680000pt;}
.y22d{bottom:170.586667pt;}
.y17f{bottom:171.226667pt;}
.y187{bottom:172.666667pt;}
.y1d0{bottom:172.826667pt;}
.y100{bottom:172.986667pt;}
.y209{bottom:173.146667pt;}
.y1f6{bottom:173.306667pt;}
.y23d{bottom:173.786667pt;}
.y134{bottom:178.106667pt;}
.y1ac{bottom:179.706667pt;}
.yb7{bottom:180.026667pt;}
.yc5{bottom:182.586667pt;}
.y3b{bottom:182.906667pt;}
.y5e{bottom:184.520000pt;}
.yf1{bottom:185.306667pt;}
.y22c{bottom:188.346667pt;}
.y17e{bottom:188.826667pt;}
.y186{bottom:190.266667pt;}
.yff{bottom:190.586667pt;}
.y208{bottom:190.906667pt;}
.y1f5{bottom:191.066667pt;}
.y23c{bottom:191.546667pt;}
.y133{bottom:195.706667pt;}
.y1ab{bottom:197.306667pt;}
.yb6{bottom:197.626667pt;}
.y5d{bottom:200.360000pt;}
.y3a{bottom:200.666667pt;}
.yc4{bottom:201.306667pt;}
.yf0{bottom:202.906667pt;}
.y17d{bottom:204.826667pt;}
.y22b{bottom:206.106667pt;}
.y185{bottom:207.866667pt;}
.yfe{bottom:208.186667pt;}
.y1cf{bottom:208.666667pt;}
.y1f4{bottom:208.826667pt;}
.y23b{bottom:209.306667pt;}
.y132{bottom:213.306667pt;}
.y5c{bottom:214.120000pt;}
.yb5{bottom:215.226667pt;}
.y1aa{bottom:216.186667pt;}
.y39{bottom:218.266667pt;}
.yc3{bottom:218.906667pt;}
.yef{bottom:220.506667pt;}
.y17c{bottom:223.226667pt;}
.y22a{bottom:223.866667pt;}
.y5b{bottom:225.000000pt;}
.y184{bottom:225.626667pt;}
.yfd{bottom:225.786667pt;}
.y1ce{bottom:226.426667pt;}
.y1f3{bottom:226.586667pt;}
.y23a{bottom:227.066667pt;}
.yc2{bottom:230.266667pt;}
.y131{bottom:230.906667pt;}
.y18e{bottom:231.066667pt;}
.yb4{bottom:232.826667pt;}
.y38{bottom:235.866667pt;}
.y1a9{bottom:236.666667pt;}
.yee{bottom:238.106667pt;}
.y17b{bottom:240.186667pt;}
.y5a{bottom:240.840000pt;}
.y229{bottom:241.626667pt;}
.yfc{bottom:243.386667pt;}
.y1cd{bottom:244.186667pt;}
.y1f2{bottom:244.346667pt;}
.y239{bottom:244.826667pt;}
.y130{bottom:245.626667pt;}
.yc1{bottom:247.866667pt;}
.y18d{bottom:248.666667pt;}
.yb3{bottom:250.586667pt;}
.y17a{bottom:250.906667pt;}
.y37{bottom:253.466667pt;}
.y1a8{bottom:255.546667pt;}
.yed{bottom:255.866667pt;}
.y12f{bottom:256.346667pt;}
.y59{bottom:256.840000pt;}
.y228{bottom:259.386667pt;}
.yfb{bottom:261.146667pt;}
.y179{bottom:261.466667pt;}
.y1cc{bottom:261.946667pt;}
.y1f1{bottom:262.106667pt;}
.y238{bottom:262.586667pt;}
.yc0{bottom:265.466667pt;}
.y12e{bottom:267.066667pt;}
.y18c{bottom:267.386667pt;}
.yb2{bottom:268.186667pt;}
.y36{bottom:272.346667pt;}
.y58{bottom:272.706667pt;}
.y1a7{bottom:273.146667pt;}
.yec{bottom:273.466667pt;}
.y178{bottom:273.786667pt;}
.y227{bottom:277.146667pt;}
.y12d{bottom:277.626667pt;}
.y1cb{bottom:279.706667pt;}
.yfa{bottom:279.866667pt;}
.y237{bottom:280.346667pt;}
.ybf{bottom:283.066667pt;}
.yb1{bottom:285.786667pt;}
.y177{bottom:286.106667pt;}
.y35{bottom:287.706667pt;}
.y57{bottom:288.546667pt;}
.y4e{bottom:290.746667pt;}
.yeb{bottom:291.066667pt;}
.y226{bottom:294.906667pt;}
.y34{bottom:295.226667pt;}
.yf9{bottom:297.306667pt;}
.y1ca{bottom:297.466667pt;}
.y1f0{bottom:297.626667pt;}
.y236{bottom:298.106667pt;}
.y176{bottom:298.266667pt;}
.ybe{bottom:301.946667pt;}
.y12c{bottom:302.106667pt;}
.yb0{bottom:303.386667pt;}
.y56{bottom:304.386667pt;}
.y1a6{bottom:308.506667pt;}
.yea{bottom:308.666667pt;}
.y175{bottom:310.586667pt;}
.y225{bottom:312.666667pt;}
.y33{bottom:313.146667pt;}
.y12b{bottom:314.426667pt;}
.y1c9{bottom:315.226667pt;}
.y1ef{bottom:315.706667pt;}
.y235{bottom:315.866667pt;}
.y55{bottom:320.226667pt;}
.ybd{bottom:320.346667pt;}
.yaf{bottom:320.986667pt;}
.y173{bottom:322.906667pt;}
.y32{bottom:324.666667pt;}
.y1a5{bottom:326.106667pt;}
.ye9{bottom:326.266667pt;}
.y12a{bottom:326.746667pt;}
.y224{bottom:330.426667pt;}
.y1c8{bottom:332.826667pt;}
.y1ee{bottom:333.466667pt;}
.y234{bottom:333.626667pt;}
.y172{bottom:335.066667pt;}
.y54{bottom:336.066667pt;}
.yae{bottom:338.746667pt;}
.y31{bottom:340.986667pt;}
.y128{bottom:343.546667pt;}
.y1a4{bottom:343.706667pt;}
.ye8{bottom:344.026667pt;}
.y16f{bottom:347.386667pt;}
.y53{bottom:348.066667pt;}
.y223{bottom:349.506667pt;}
.y1c7{bottom:350.946667pt;}
.y1ed{bottom:351.266667pt;}
.y233{bottom:351.426667pt;}
.y52{bottom:355.906667pt;}
.yad{bottom:356.386667pt;}
.y16e{bottom:359.746667pt;}
.y1a3{bottom:361.346667pt;}
.ye7{bottom:361.666667pt;}
.y30{bottom:362.306667pt;}
.y127{bottom:368.066667pt;}
.y1c6{bottom:368.706667pt;}
.y1ec{bottom:369.026667pt;}
.y232{bottom:369.186667pt;}
.y222{bottom:369.506667pt;}
.y51{bottom:371.746667pt;}
.y16d{bottom:371.906667pt;}
.yac{bottom:373.986667pt;}
.y1a2{bottom:378.946667pt;}
.ye6{bottom:379.266667pt;}
.y126{bottom:380.386667pt;}
.y2f{bottom:383.426667pt;}
.y16c{bottom:384.226667pt;}
.y1c5{bottom:386.466667pt;}
.y1eb{bottom:386.786667pt;}
.y231{bottom:386.946667pt;}
.y221{bottom:387.106667pt;}
.y50{bottom:387.586667pt;}
.y75{bottom:390.626667pt;}
.yab{bottom:391.586667pt;}
.y125{bottom:392.546667pt;}
.y16b{bottom:396.546667pt;}
.y1a1{bottom:396.706667pt;}
.ye5{bottom:396.866667pt;}
.y2e{bottom:401.826667pt;}
.y4f{bottom:403.426667pt;}
.y1c4{bottom:404.226667pt;}
.y1ea{bottom:404.546667pt;}
.y220{bottom:404.706667pt;}
.y169{bottom:408.706667pt;}
.yaa{bottom:409.186667pt;}
.y124{bottom:409.346667pt;}
.ye4{bottom:414.466667pt;}
.y1a0{bottom:415.426667pt;}
.y2d{bottom:419.266667pt;}
.y168{bottom:421.026667pt;}
.y1c3{bottom:421.986667pt;}
.y1e9{bottom:422.306667pt;}
.y21f{bottom:422.466667pt;}
.ya9{bottom:426.946667pt;}
.y2c{bottom:431.586667pt;}
.ye3{bottom:432.226667pt;}
.y123{bottom:433.986667pt;}
.y167{bottom:435.266667pt;}
.y19f{bottom:435.906667pt;}
.y2b{bottom:439.266667pt;}
.y1c2{bottom:439.746667pt;}
.y1e8{bottom:440.066667pt;}
.y21e{bottom:440.226667pt;}
.ya8{bottom:444.546667pt;}
.y122{bottom:446.146667pt;}
.ye2{bottom:449.826667pt;}
.y166{bottom:452.066667pt;}
.y19e{bottom:454.786667pt;}
.y1c1{bottom:457.506667pt;}
.y1e7{bottom:457.826667pt;}
.y21d{bottom:457.986667pt;}
.y121{bottom:458.466667pt;}
.y2a{bottom:459.906667pt;}
.ya7{bottom:462.146667pt;}
.ye1{bottom:467.426667pt;}
.y19d{bottom:472.386667pt;}
.y256{bottom:474.786667pt;}
.y120{bottom:475.266667pt;}
.y1c0{bottom:475.586667pt;}
.y21c{bottom:475.746667pt;}
.y165{bottom:477.026667pt;}
.ya6{bottom:479.746667pt;}
.y29{bottom:480.546667pt;}
.ye0{bottom:485.026667pt;}
.y164{bottom:488.546667pt;}
.y19c{bottom:490.146667pt;}
.y255{bottom:492.706667pt;}
.y207{bottom:493.026667pt;}
.y1bf{bottom:493.346667pt;}
.y21b{bottom:493.506667pt;}
.ya5{bottom:497.346667pt;}
.y11f{bottom:499.746667pt;}
.y163{bottom:500.066667pt;}
.y28{bottom:501.346667pt;}
.ydf{bottom:502.626667pt;}
.y19b{bottom:507.746667pt;}
.y162{bottom:510.786667pt;}
.y1be{bottom:511.106667pt;}
.y21a{bottom:511.266667pt;}
.y254{bottom:511.906667pt;}
.y11e{bottom:512.066667pt;}
.ya4{bottom:515.106667pt;}
.yde{bottom:520.386667pt;}
.y11d{bottom:524.386667pt;}
.y15f{bottom:525.026667pt;}
.y19a{bottom:526.466667pt;}
.y206{bottom:528.546667pt;}
.y1bd{bottom:528.866667pt;}
.y219{bottom:529.026667pt;}
.y253{bottom:529.666667pt;}
.ya3{bottom:532.706667pt;}
.y11c{bottom:536.546667pt;}
.ydd{bottom:537.986667pt;}
.y15d{bottom:539.106667pt;}
.y6b{bottom:542.786667pt;}
.y205{bottom:546.306667pt;}
.y1bc{bottom:546.626667pt;}
.y218{bottom:546.786667pt;}
.y27{bottom:547.106667pt;}
.y252{bottom:547.426667pt;}
.y199{bottom:547.586667pt;}
.ya2{bottom:550.306667pt;}
.y11b{bottom:553.373333pt;}
.y15b{bottom:555.453333pt;}
.ydc{bottom:555.613333pt;}
.y204{bottom:564.093333pt;}
.y26{bottom:564.253333pt;}
.y1bb{bottom:564.413333pt;}
.y217{bottom:564.573333pt;}
.y251{bottom:565.213333pt;}
.ya1{bottom:567.933333pt;}
.ydb{bottom:573.213333pt;}
.y15a{bottom:575.293333pt;}
.y11a{bottom:578.013333pt;}
.y203{bottom:581.853333pt;}
.y1e6{bottom:582.013333pt;}
.y1ba{bottom:582.173333pt;}
.y230{bottom:582.333333pt;}
.y216{bottom:582.653333pt;}
.y250{bottom:582.973333pt;}
.y198{bottom:583.613333pt;}
.y25{bottom:584.733333pt;}
.ya0{bottom:585.533333pt;}
.y119{bottom:590.173333pt;}
.yda{bottom:590.813333pt;}
.y154{bottom:591.613333pt;}
.y24{bottom:598.493333pt;}
.y202{bottom:599.613333pt;}
.y1b9{bottom:599.933333pt;}
.y1e5{bottom:600.093333pt;}
.y215{bottom:600.413333pt;}
.y24f{bottom:600.733333pt;}
.y197{bottom:601.373333pt;}
.y117{bottom:602.493333pt;}
.y9f{bottom:603.293333pt;}
.yd9{bottom:608.573333pt;}
.y153{bottom:609.213333pt;}
.yf8{bottom:609.693333pt;}
.y159{bottom:610.493333pt;}
.y23{bottom:612.413333pt;}
.y1b8{bottom:617.533333pt;}
.y201{bottom:617.693333pt;}
.y1e4{bottom:617.853333pt;}
.y214{bottom:618.173333pt;}
.y24e{bottom:618.493333pt;}
.y196{bottom:618.973333pt;}
.y116{bottom:619.293333pt;}
.y9e{bottom:620.893333pt;}
.y22{bottom:626.173333pt;}
.y152{bottom:626.973333pt;}
.yf7{bottom:627.133333pt;}
.y158{bottom:628.093333pt;}
.y1b7{bottom:633.853333pt;}
.y200{bottom:635.453333pt;}
.y1e3{bottom:635.613333pt;}
.y213{bottom:635.933333pt;}
.y24d{bottom:636.253333pt;}
.y195{bottom:636.573333pt;}
.y9d{bottom:638.493333pt;}
.y21{bottom:639.933333pt;}
.yd8{bottom:643.773333pt;}
.y151{bottom:644.573333pt;}
.y157{bottom:645.693333pt;}
.y20{bottom:649.373333pt;}
.y1ff{bottom:653.213333pt;}
.y1e2{bottom:653.373333pt;}
.y212{bottom:653.693333pt;}
.y24c{bottom:654.013333pt;}
.y194{bottom:654.173333pt;}
.y9c{bottom:656.093333pt;}
.y40{bottom:658.013333pt;}
.yd7{bottom:661.373333pt;}
.y150{bottom:662.173333pt;}
.y1f{bottom:662.653333pt;}
.y156{bottom:663.293333pt;}
.y114{bottom:668.413333pt;}
.y1b6{bottom:670.013333pt;}
.y1fe{bottom:670.973333pt;}
.y1e1{bottom:671.133333pt;}
.y211{bottom:671.453333pt;}
.y193{bottom:671.773333pt;}
.y9b{bottom:673.693333pt;}
.y1e{bottom:678.493333pt;}
.yd6{bottom:678.973333pt;}
.y14f{bottom:679.773333pt;}
.y155{bottom:680.893333pt;}
.y1b5{bottom:687.613333pt;}
.y1fd{bottom:688.573333pt;}
.y1e0{bottom:688.893333pt;}
.y210{bottom:689.213333pt;}
.y192{bottom:689.533333pt;}
.y1d{bottom:690.013333pt;}
.y112{bottom:691.133333pt;}
.y9a{bottom:691.453333pt;}
.y14e{bottom:694.813333pt;}
.yd5{bottom:696.733333pt;}
.y1c{bottom:701.533333pt;}
.y14d{bottom:704.093333pt;}
.y1b4{bottom:705.213333pt;}
.y1df{bottom:706.653333pt;}
.y20f{bottom:706.973333pt;}
.y191{bottom:707.133333pt;}
.y24b{bottom:707.293333pt;}
.y99{bottom:709.053333pt;}
.y1b{bottom:714.013333pt;}
.yd4{bottom:714.333333pt;}
.y111{bottom:715.613333pt;}
.y1b3{bottom:722.813333pt;}
.y1de{bottom:724.413333pt;}
.y20e{bottom:724.733333pt;}
.y24a{bottom:725.053333pt;}
.y190{bottom:725.853333pt;}
.y98{bottom:726.653333pt;}
.y1a{bottom:727.133333pt;}
.y14c{bottom:727.293333pt;}
.y110{bottom:727.933333pt;}
.yd3{bottom:731.933333pt;}
.y19{bottom:737.053333pt;}
.y14b{bottom:737.853333pt;}
.y10e{bottom:740.253333pt;}
.y1b2{bottom:741.533333pt;}
.y1dd{bottom:742.173333pt;}
.y20d{bottom:742.493333pt;}
.y249{bottom:742.813333pt;}
.y97{bottom:744.253333pt;}
.yd2{bottom:749.533333pt;}
.y14a{bottom:750.173333pt;}
.y10c{bottom:758.213333pt;}
.y18{bottom:758.693333pt;}
.y1dc{bottom:759.973333pt;}
.y20c{bottom:760.293333pt;}
.y248{bottom:760.613333pt;}
.y96{bottom:761.893333pt;}
.y149{bottom:762.373333pt;}
.yd1{bottom:767.173333pt;}
.y148{bottom:774.693333pt;}
.y17{bottom:775.813333pt;}
.y10b{bottom:777.733333pt;}
.y20b{bottom:778.053333pt;}
.y247{bottom:778.373333pt;}
.y95{bottom:779.653333pt;}
.yd0{bottom:784.933333pt;}
.y147{bottom:787.013333pt;}
.y16{bottom:792.933333pt;}
.y10a{bottom:795.333333pt;}
.y1db{bottom:795.493333pt;}
.y1fc{bottom:795.813333pt;}
.y246{bottom:796.133333pt;}
.y94{bottom:797.253333pt;}
.y146{bottom:799.173333pt;}
.ycf{bottom:802.533333pt;}
.y15{bottom:806.213333pt;}
.y145{bottom:811.493333pt;}
.y109{bottom:812.933333pt;}
.y1da{bottom:813.573333pt;}
.y245{bottom:813.893333pt;}
.y93{bottom:814.853333pt;}
.y14{bottom:815.653333pt;}
.yce{bottom:820.133333pt;}
.y144{bottom:823.813333pt;}
.y13{bottom:828.293333pt;}
.y108{bottom:830.533333pt;}
.y1d9{bottom:831.333333pt;}
.y1b1{bottom:831.653333pt;}
.y92{bottom:832.453333pt;}
.y143{bottom:835.973333pt;}
.ycd{bottom:837.733333pt;}
.y12{bottom:847.173333pt;}
.y107{bottom:848.133333pt;}
.y142{bottom:848.293333pt;}
.y1d8{bottom:849.093333pt;}
.y244{bottom:849.413333pt;}
.y91{bottom:850.053333pt;}
.ycc{bottom:856.453333pt;}
.y141{bottom:860.613333pt;}
.y11{bottom:864.293333pt;}
.y106{bottom:865.893333pt;}
.y1d7{bottom:866.853333pt;}
.y243{bottom:867.173333pt;}
.y90{bottom:867.813333pt;}
.y140{bottom:872.773333pt;}
.ycb{bottom:874.053333pt;}
.y105{bottom:884.613333pt;}
.y242{bottom:884.933333pt;}
.y13f{bottom:885.093333pt;}
.y8f{bottom:885.413333pt;}
.y10{bottom:888.933333pt;}
.y13e{bottom:897.413333pt;}
.y1d6{bottom:902.373333pt;}
.y1fb{bottom:902.693333pt;}
.y8e{bottom:903.013333pt;}
.yf{bottom:911.013333pt;}
.y13d{bottom:911.653333pt;}
.y1d5{bottom:920.133333pt;}
.y1fa{bottom:920.453333pt;}
.y8d{bottom:920.613333pt;}
.ye{bottom:923.653333pt;}
.y13c{bottom:928.453333pt;}
.y73{bottom:932.960000pt;}
.yd{bottom:937.413333pt;}
.y1d4{bottom:937.893333pt;}
.y8c{bottom:938.213333pt;}
.y13b{bottom:942.213333pt;}
.yc{bottom:951.173333pt;}
.y1d3{bottom:955.493333pt;}
.y8b{bottom:955.813333pt;}
.y13a{bottom:957.093333pt;}
.y3{bottom:966.720000pt;}
.ya{bottom:967.200000pt;}
.y2{bottom:978.880000pt;}
.y88{bottom:982.560000pt;}
.y1{bottom:992.960000pt;}
.y87{bottom:997.920000pt;}
.h20{height:3.612500pt;}
.h9{height:4.482500pt;}
.h42{height:5.562500pt;}
.h5{height:12.000000pt;}
.h32{height:12.160000pt;}
.h37{height:12.192000pt;}
.h2d{height:12.320000pt;}
.h3e{height:12.320133pt;}
.h3d{height:12.352000pt;}
.h3c{height:14.080000pt;}
.h3a{height:14.240000pt;}
.h3b{height:14.272000pt;}
.h2e{height:16.000000pt;}
.h31{height:16.800000pt;}
.h34{height:16.832000pt;}
.h1d{height:18.490312pt;}
.h38{height:18.768750pt;}
.h26{height:19.840000pt;}
.h2c{height:22.155000pt;}
.h1f{height:22.578125pt;}
.h30{height:22.720000pt;}
.h1a{height:22.843934pt;}
.h12{height:23.533125pt;}
.h2f{height:24.480000pt;}
.h35{height:24.512000pt;}
.h33{height:24.640000pt;}
.h25{height:26.023438pt;}
.h16{height:27.523125pt;}
.h22{height:29.216250pt;}
.h11{height:29.281875pt;}
.h1e{height:30.254687pt;}
.h7{height:30.400000pt;}
.hd{height:31.217812pt;}
.h8{height:32.498125pt;}
.h36{height:33.867188pt;}
.hc{height:34.945312pt;}
.h18{height:35.299687pt;}
.h39{height:37.090625pt;}
.hf{height:37.479688pt;}
.h13{height:37.540937pt;}
.h3{height:39.782187pt;}
.h19{height:41.112500pt;}
.h1c{height:42.023438pt;}
.hb{height:42.866250pt;}
.h2a{height:43.782500pt;}
.h3f{height:44.687500pt;}
.h15{height:45.156250pt;}
.h2b{height:46.375000pt;}
.h6{height:46.505938pt;}
.h28{height:47.109375pt;}
.h17{height:49.148438pt;}
.h1b{height:49.622500pt;}
.h2{height:52.832812pt;}
.h41{height:52.834688pt;}
.h10{height:53.618125pt;}
.h40{height:56.031250pt;}
.h4{height:58.563750pt;}
.he{height:60.057813pt;}
.h14{height:60.288750pt;}
.ha{height:60.800000pt;}
.h21{height:64.800000pt;}
.h29{height:66.750000pt;}
.h24{height:91.072000pt;}
.h27{height:128.640000pt;}
.h23{height:430.466667pt;}
.h0{height:1058.400000pt;}
.h1{height:1058.666667pt;}
.w21{width:38.400000pt;}
.w1e{width:41.920000pt;}
.w1f{width:42.080000pt;}
.w22{width:42.592000pt;}
.w1a{width:43.520000pt;}
.w1d{width:43.680000pt;}
.w1c{width:43.872000pt;}
.w20{width:47.232000pt;}
.w23{width:51.840000pt;}
.w19{width:65.120000pt;}
.w4{width:72.960000pt;}
.w6{width:89.920000pt;}
.w17{width:96.000000pt;}
.w18{width:97.312000pt;}
.wd{width:102.080000pt;}
.w15{width:102.272000pt;}
.we{width:113.952000pt;}
.wc{width:119.712000pt;}
.w7{width:137.306667pt;}
.w14{width:144.026667pt;}
.w10{width:147.706667pt;}
.wf{width:150.106667pt;}
.wb{width:160.346667pt;}
.w9{width:162.106667pt;}
.w1b{width:163.706667pt;}
.w16{width:216.386667pt;}
.w12{width:221.786667pt;}
.w13{width:240.066667pt;}
.w8{width:473.533333pt;}
.w5{width:568.773333pt;}
.w11{width:633.573333pt;}
.w3{width:641.733333pt;}
.wa{width:660.480000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x52{left:3.780000pt;}
.x8{left:7.200000pt;}
.x15{left:9.600000pt;}
.x4d{left:11.520000pt;}
.x47{left:13.760000pt;}
.x41{left:15.200000pt;}
.x4c{left:16.480000pt;}
.x1a{left:18.893333pt;}
.x45{left:20.680000pt;}
.x20{left:21.760000pt;}
.x38{left:23.840000pt;}
.x2b{left:26.080000pt;}
.x2e{left:27.360000pt;}
.x2a{left:28.640000pt;}
.xe{left:29.919988pt;}
.x22{left:31.680000pt;}
.x25{left:32.640000pt;}
.x27{left:35.360000pt;}
.x28{left:36.640000pt;}
.x2c{left:37.760000pt;}
.x34{left:39.680000pt;}
.x26{left:41.600000pt;}
.x23{left:43.360000pt;}
.xa{left:44.960000pt;}
.x32{left:46.560000pt;}
.x35{left:47.680000pt;}
.x3b{left:48.680000pt;}
.x2f{left:52.800000pt;}
.x29{left:53.920000pt;}
.x2d{left:55.840000pt;}
.x4a{left:62.920000pt;}
.x6{left:65.754667pt;}
.x9{left:70.592000pt;}
.x17{left:71.520000pt;}
.x4e{left:73.000000pt;}
.x4b{left:76.840000pt;}
.x5{left:77.914667pt;}
.x14{left:83.072000pt;}
.x19{left:84.352000pt;}
.x50{left:89.951988pt;}
.x4{left:96.032000pt;}
.x1e{left:99.872000pt;}
.x4f{left:114.111988pt;}
.x3d{left:115.392000pt;}
.xb{left:116.831988pt;}
.x3c{left:120.031988pt;}
.x10{left:128.991988pt;}
.xc{left:147.706655pt;}
.x3e{left:158.906667pt;}
.x7{left:168.986667pt;}
.x30{left:174.106655pt;}
.xd{left:178.106655pt;}
.x36{left:180.026655pt;}
.xf{left:203.706655pt;}
.x1{left:213.306655pt;}
.x1f{left:219.586667pt;}
.x16{left:269.506667pt;}
.x18{left:275.906667pt;}
.x21{left:321.666667pt;}
.x3f{left:322.626667pt;}
.x3{left:325.666655pt;}
.x2{left:357.026655pt;}
.x11{left:362.466655pt;}
.x40{left:366.493333pt;}
.x37{left:395.613333pt;}
.x42{left:410.173333pt;}
.x31{left:413.533333pt;}
.x51{left:430.173322pt;}
.x12{left:434.813322pt;}
.x13{left:436.253322pt;}
.x43{left:452.093333pt;}
.x39{left:491.613333pt;}
.x44{left:494.173333pt;}
.x46{left:541.413333pt;}
.x1b{left:551.336000pt;}
.x33{left:557.573333pt;}
.x24{left:585.733333pt;}
.x3a{left:588.933333pt;}
.x48{left:623.493333pt;}
.x49{left:666.080000pt;}
.x1d{left:710.399988pt;}
.x1c{left:723.199988pt;}
}




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