
    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_3e3adb56b2dbeed214791e1f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.893555;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_38645701291cd0651078117e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.910156;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_70259646355477ad2c1196b2.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.708008;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_9f76ac62ebad59ae67ef35be.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910156;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_dbecc3acf1d42f9b02f46478.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;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_22fd3d8232c440c911616120.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;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_07e8435ce949cd8bc26b0040.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.893066;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_f7883b0c31d7f6bcb505327c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910645;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_5d17b277b72c93f5b84c408f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910156;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_3745bec58d18245bb7350c0f.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.893555;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_edad9134f584947507b366af.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.910645;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_3ce6223ae4ae3276bb0a4992.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.893555;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_7670af2dce2653a5ab67cc3e.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.896973;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_9b0e02524305470f254bc3d8.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.666504;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_8d4f1e5e4faab7b3cceb1bbf.woff2')format("woff");}.fff{font-family:fff;line-height:0.910645;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_2b6af94947c5abc42293625d.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.854980;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_5cd9104ed0dad09cd74b9ab7.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.854980;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_d829c58aa21468fd6804d1dd.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.875488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws0{word-spacing:0.000000px;}
._23{margin-left:-35.996834px;}
._0{margin-left:-20.992499px;}
._5{margin-left:-17.999999px;}
._6{margin-left:-16.492499px;}
._7{margin-left:-13.499999px;}
._1e{margin-left:-9.281241px;}
._3{margin-left:-7.708367px;}
._4{margin-left:-5.863257px;}
._1b{margin-left:-4.810720px;}
._2{margin-left:-3.116394px;}
._1{margin-left:-1.517405px;}
._21{width:1.328104px;}
._52{width:4.189280px;}
._4a{width:29.039060px;}
._42{width:44.396655px;}
._1f{width:49.496703px;}
._20{width:67.496702px;}
._b{width:76.275808px;}
._46{width:78.090817px;}
._25{width:95.062477px;}
._39{width:99.040838px;}
._51{width:104.062495px;}
._4b{width:107.727895px;}
._38{width:108.978629px;}
._2f{width:112.007754px;}
._26{width:113.941348px;}
._48{width:118.658024px;}
._2d{width:127.968691px;}
._2c{width:140.062440px;}
._36{width:169.831945px;}
._3a{width:174.023430px;}
._32{width:180.105407px;}
._41{width:192.023430px;}
._3f{width:193.499992px;}
._45{width:197.613273px;}
._4e{width:202.007805px;}
._34{width:204.081968px;}
._33{width:207.949156px;}
._4f{width:215.894523px;}
._24{width:219.023411px;}
._30{width:222.097095px;}
._29{width:224.959095px;}
._50{width:228.023428px;}
._35{width:231.925717px;}
._37{width:237.023410px;}
._3e{width:247.464834px;}
._47{width:251.648426px;}
._3d{width:254.039052px;}
._49{width:258.056246px;}
._4d{width:274.042957px;}
._28{width:281.953060px;}
._31{width:287.929622px;}
._2e{width:297.913996px;}
._4c{width:305.894519px;}
._40{width:344.915804px;}
._27{width:353.953057px;}
._3b{width:361.617173px;}
._12{width:379.109544px;}
._43{width:385.593734px;}
._3c{width:389.460921px;}
._2a{width:398.038992px;}
._1a{width:411.101729px;}
._44{width:413.437483px;}
._2b{width:498.023363px;}
._22{width:549.984298px;}
._11{width:887.082179px;}
._15{width:961.323027px;}
._1d{width:965.199363px;}
._18{width:1169.272238px;}
._f{width:1541.401127px;}
._16{width:1547.448003px;}
._e{width:1571.248783px;}
._17{width:1615.123782px;}
._d{width:1625.178469px;}
._14{width:1663.033912px;}
._c{width:1693.205810px;}
._1c{width:1713.526122px;}
._10{width:1811.155023px;}
._8{width:1814.881551px;}
._19{width:1833.022211px;}
._13{width:1842.963592px;}
._9{width:1847.041716px;}
._a{width:2225.014381px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(17,85,204);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:53.999998px;}
.fs5{font-size:59.984997px;}
.fs3{font-size:65.969996px;}
.fs2{font-size:71.999997px;}
.fs1{font-size:82.799997px;}
.fs0{font-size:83.969997px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.945053px;}
.y81{bottom:3.893530px;}
.y100{bottom:3.893532px;}
.y9b{bottom:3.893533px;}
.y7e{bottom:3.893539px;}
.y3e{bottom:3.893541px;}
.y3c{bottom:3.893542px;}
.y6f{bottom:3.893543px;}
.y78{bottom:3.893545px;}
.yfa{bottom:3.893546px;}
.y3a{bottom:3.893548px;}
.y6a{bottom:3.893550px;}
.y65{bottom:3.893551px;}
.y68{bottom:3.893553px;}
.ya1{bottom:3.893555px;}
.ya3{bottom:3.893557px;}
.y9e{bottom:3.893559px;}
.y4b{bottom:3.893566px;}
.y4d{bottom:3.893568px;}
.y46{bottom:3.893570px;}
.y40{bottom:3.893572px;}
.y49{bottom:3.893575px;}
.y53{bottom:3.893577px;}
.y55{bottom:3.893579px;}
.y42{bottom:3.893582px;}
.y44{bottom:3.893584px;}
.y51{bottom:3.893586px;}
.yec{bottom:3.893588px;}
.y95{bottom:3.893590px;}
.y4f{bottom:3.893595px;}
.y8e{bottom:3.893597px;}
.y84{bottom:3.893604px;}
.y97{bottom:3.893606px;}
.yea{bottom:3.893608px;}
.y91{bottom:3.893615px;}
.y9a{bottom:24.591783px;}
.yf5{bottom:24.591786px;}
.y6e{bottom:24.591788px;}
.y77{bottom:24.591789px;}
.y72{bottom:24.591793px;}
.y67{bottom:24.591797px;}
.ya0{bottom:24.591799px;}
.y8a{bottom:24.591823px;}
.y94{bottom:24.591834px;}
.y8d{bottom:24.591841px;}
.ye9{bottom:24.591852px;}
.y1c{bottom:36.370309px;}
.y99{bottom:45.290024px;}
.y6d{bottom:45.290032px;}
.y197{bottom:112.053809px;}
.y60{bottom:117.771093px;}
.y18e{bottom:117.902931px;}
.y1b8{bottom:118.799421px;}
.y93{bottom:128.410451px;}
.y1d2{bottom:131.201545px;}
.yed{bottom:131.715149px;}
.y15c{bottom:138.152930px;}
.y96{bottom:138.759557px;}
.y14e{bottom:139.374613px;}
.y10c{bottom:139.515413px;}
.y1ec{bottom:139.619953px;}
.y173{bottom:143.039649px;}
.y1ab{bottom:145.799420px;}
.yd2{bottom:146.704685px;}
.ybb{bottom:149.402930px;}
.y196{bottom:153.450297px;}
.y5f{bottom:159.167581px;}
.y18d{bottom:159.299420px;}
.y1b7{bottom:160.195898px;}
.ye8{bottom:162.876742px;}
.y1d1{bottom:171.163894px;}
.yeb{bottom:173.225883px;}
.y13b{bottom:174.341895px;}
.y10b{bottom:178.890411px;}
.y92{bottom:179.145291px;}
.y178{bottom:179.549419px;}
.y1eb{bottom:179.582370px;}
.y15b{bottom:180.771090px;}
.y14d{bottom:181.992772px;}
.y1a{bottom:183.995587px;}
.y172{bottom:184.436137px;}
.y1aa{bottom:187.195897px;}
.yd1{bottom:188.101173px;}
.yba{bottom:190.799418px;}
.y195{bottom:194.846774px;}
.y5e{bottom:200.564058px;}
.y18c{bottom:200.695897px;}
.y1b6{bottom:201.592387px;}
.y19{bottom:207.281106px;}
.y1d0{bottom:211.126322px;}
.y13a{bottom:215.738384px;}
.y10a{bottom:218.265409px;}
.y90{bottom:218.520289px;}
.y1ea{bottom:219.544798px;}
.y15a{bottom:222.167578px;}
.y161{bottom:223.389261px;}
.y171{bottom:225.832614px;}
.y1a9{bottom:228.592385px;}
.ye7{bottom:229.045018px;}
.yd0{bottom:229.497650px;}
.y18{bottom:230.566625px;}
.yb9{bottom:232.195895px;}
.y194{bottom:236.243263px;}
.y5d{bottom:241.960546px;}
.y18b{bottom:242.092385px;}
.y1b5{bottom:242.988864px;}
.y8c{bottom:248.556918px;}
.y1cf{bottom:251.088740px;}
.y5a{bottom:252.982024px;}
.y109{bottom:257.640408px;}
.y139{bottom:258.356543px;}
.y8f{bottom:258.906060px;}
.y1e9{bottom:259.613382px;}
.y159{bottom:263.564055px;}
.y14c{bottom:264.785738px;}
.y170{bottom:267.229103px;}
.y1a8{bottom:269.988863px;}
.ye6{bottom:270.441506px;}
.ycf{bottom:270.894139px;}
.y17{bottom:271.852144px;}
.yb8{bottom:273.592384px;}
.y193{bottom:277.639740px;}
.y5c{bottom:283.357023px;}
.y18a{bottom:283.488862px;}
.y89{bottom:289.953424px;}
.y1ce{bottom:291.051100px;}
.y1b4{bottom:292.036229px;}
.y108{bottom:297.015406px;}
.y8b{bottom:300.302530px;}
.y1e8{bottom:300.903636px;}
.y177{bottom:304.960544px;}
.y14b{bottom:306.182226px;}
.y16f{bottom:308.625580px;}
.y1a7{bottom:311.385351px;}
.ye5{bottom:311.837983px;}
.yce{bottom:312.290616px;}
.y16{bottom:313.137662px;}
.yb7{bottom:314.988861px;}
.y58{bottom:316.800718px;}
.y192{bottom:319.036228px;}
.y5b{bottom:324.753511px;}
.y189{bottom:324.885350px;}
.y62{bottom:325.981168px;}
.y1cd{bottom:331.013517px;}
.y107{bottom:336.390405px;}
.y15{bottom:336.423192px;}
.y88{bottom:340.688264px;}
.y1e7{bottom:340.866065px;}
.y138{bottom:341.149508px;}
.y176{bottom:346.357021px;}
.y14a{bottom:347.578703px;}
.y160{bottom:348.800385px;}
.y16e{bottom:350.022068px;}
.ye4{bottom:353.234472px;}
.ycd{bottom:353.687104px;}
.yb6{bottom:356.385349px;}
.y57{bottom:358.197195px;}
.y14{bottom:359.708711px;}
.y191{bottom:360.432705px;}
.y188{bottom:366.281827px;}
.y61{bottom:367.377645px;}
.y1cc{bottom:370.975946px;}
.y106{bottom:375.765403px;}
.y87{bottom:380.063263px;}
.y1e6{bottom:380.828482px;}
.y137{bottom:382.545985px;}
.y13{bottom:382.994230px;}
.y128{bottom:384.273040px;}
.y149{bottom:388.975191px;}
.y15f{bottom:390.196862px;}
.y16d{bottom:391.418545px;}
.ye3{bottom:394.630949px;}
.ycc{bottom:395.083581px;}
.yb5{bottom:397.781826px;}
.y56{bottom:399.593683px;}
.y190{bottom:401.829193px;}
.y12{bottom:406.279749px;}
.y187{bottom:407.678316px;}
.y1cb{bottom:410.938295px;}
.y105{bottom:415.140401px;}
.y86{bottom:419.438261px;}
.y1e5{bottom:420.790842px;}
.y136{bottom:425.164156px;}
.y127{bottom:425.669517px;}
.y1a6{bottom:428.829192px;}
.y164{bottom:430.371668px;}
.y148{bottom:431.593351px;}
.y16c{bottom:432.815033px;}
.ye2{bottom:436.027437px;}
.ycb{bottom:436.480069px;}
.yb4{bottom:439.178314px;}
.y1b3{bottom:443.225670px;}
.y11{bottom:447.565279px;}
.y186{bottom:449.074793px;}
.y18f{bottom:450.876547px;}
.y1ca{bottom:450.900724px;}
.y54{bottom:452.204596px;}
.y104{bottom:454.515400px;}
.y85{bottom:458.813259px;}
.y1e4{bottom:460.753260px;}
.y126{bottom:467.066006px;}
.y1a5{bottom:470.225669px;}
.y10{bottom:470.850798px;}
.y175{bottom:471.768157px;}
.y158{bottom:472.989828px;}
.y52{bottom:475.152831px;}
.y118{bottom:475.359168px;}
.y16b{bottom:475.433193px;}
.ye1{bottom:477.423914px;}
.yca{bottom:477.876546px;}
.yb3{bottom:480.574791px;}
.y1b2{bottom:484.622159px;}
.y185{bottom:490.471281px;}
.y1c9{bottom:490.863141px;}
.y103{bottom:493.890398px;}
.yf{bottom:494.136317px;}
.y50{bottom:496.976066px;}
.y83{bottom:498.188258px;}
.y1e3{bottom:500.715688px;}
.y135{bottom:507.957121px;}
.y125{bottom:508.462483px;}
.y1a4{bottom:511.622157px;}
.y147{bottom:514.386316px;}
.y16a{bottom:516.829670px;}
.ye{bottom:517.421836px;}
.y4e{bottom:518.799301px;}
.ye0{bottom:518.820402px;}
.yc9{bottom:519.273035px;}
.yb2{bottom:521.971280px;}
.y1b1{bottom:526.018636px;}
.y1c8{bottom:527.836534px;}
.y184{bottom:531.867758px;}
.y102{bottom:533.265468px;}
.y117{bottom:537.308412px;}
.y34{bottom:537.375206px;}
.y82{bottom:537.563292px;}
.y4c{bottom:540.622572px;}
.y1e2{bottom:540.678037px;}
.yd{bottom:540.707355px;}
.y134{bottom:549.353598px;}
.y124{bottom:549.858971px;}
.y1a3{bottom:553.018634px;}
.y146{bottom:555.782793px;}
.y157{bottom:557.004476px;}
.y169{bottom:558.226158px;}
.ydf{bottom:560.216879px;}
.yc8{bottom:560.669512px;}
.y4a{bottom:562.445807px;}
.y33{bottom:562.573450px;}
.yb1{bottom:563.367757px;}
.y1c7{bottom:564.809916px;}
.y1b0{bottom:567.415124px;}
.y7f{bottom:567.599921px;}
.y101{bottom:572.640467px;}
.y183{bottom:573.264246px;}
.y116{bottom:576.683411px;}
.y80{bottom:577.949062px;}
.y1e1{bottom:580.640466px;}
.y48{bottom:584.269042px;}
.yc{bottom:584.366679px;}
.y32{bottom:587.771694px;}
.y123{bottom:591.255448px;}
.y133{bottom:591.971758px;}
.y1a2{bottom:594.415123px;}
.y174{bottom:597.179281px;}
.y145{bottom:598.400964px;}
.y168{bottom:599.622635px;}
.yde{bottom:601.613367px;}
.yc7{bottom:602.066000px;}
.y1c6{bottom:604.772277px;}
.y47{bottom:606.092277px;}
.y1af{bottom:608.811601px;}
.yff{bottom:612.015465px;}
.y31{bottom:612.969927px;}
.y182{bottom:614.660723px;}
.y115{bottom:616.058409px;}
.y7d{bottom:618.334797px;}
.y1e0{bottom:620.602883px;}
.y45{bottom:629.941412px;}
.y43{bottom:631.967276px;}
.y1a1{bottom:635.811600px;}
.y30{bottom:638.168171px;}
.y156{bottom:639.797441px;}
.y122{bottom:640.302813px;}
.y167{bottom:641.019123px;}
.ydd{bottom:643.009844px;}
.yc6{bottom:643.462477px;}
.y1c5{bottom:644.734694px;}
.yb0{bottom:646.160722px;}
.y1ae{bottom:650.208089px;}
.yfe{bottom:651.390449px;}
.y41{bottom:653.790522px;}
.y114{bottom:655.433418px;}
.y181{bottom:656.057211px;}
.y7c{bottom:657.709784px;}
.y1df{bottom:660.565244px;}
.y2f{bottom:663.366415px;}
.y132{bottom:674.764723px;}
.y3f{bottom:675.613764px;}
.y1a0{bottom:677.208088px;}
.y144{bottom:681.193929px;}
.y155{bottom:682.415600px;}
.ydc{bottom:684.406333px;}
.y1c4{bottom:684.697123px;}
.yc5{bottom:684.858965px;}
.yaf{bottom:687.557210px;}
.y2e{bottom:688.564659px;}
.yfd{bottom:690.765447px;}
.y1ad{bottom:691.604566px;}
.y113{bottom:694.808416px;}
.y7b{bottom:697.084783px;}
.y3d{bottom:697.437007px;}
.y180{bottom:697.453688px;}
.y1de{bottom:700.527661px;}
.y121{bottom:708.699300px;}
.y2d{bottom:713.762892px;}
.y131{bottom:716.161211px;}
.y19f{bottom:718.604565px;}
.y3b{bottom:719.260249px;}
.y143{bottom:722.590406px;}
.y154{bottom:723.812089px;}
.y1c3{bottom:724.659472px;}
.y166{bottom:725.033771px;}
.ydb{bottom:725.802810px;}
.yc4{bottom:726.255442px;}
.y79{bottom:727.121404px;}
.yae{bottom:728.953687px;}
.yfc{bottom:730.140446px;}
.y112{bottom:734.183415px;}
.y7a{bottom:737.470524px;}
.y17f{bottom:738.850177px;}
.y2c{bottom:738.961135px;}
.y1dd{bottom:740.490055px;}
.y1ac{bottom:740.651932px;}
.y39{bottom:742.208488px;}
.y120{bottom:750.095777px;}
.y130{bottom:758.779371px;}
.y19e{bottom:760.001053px;}
.y142{bottom:763.986894px;}
.y2b{bottom:764.159379px;}
.y1c2{bottom:764.621901px;}
.y153{bottom:765.208566px;}
.y165{bottom:766.430248px;}
.yda{bottom:767.199298px;}
.yc3{bottom:767.651931px;}
.y76{bottom:768.517885px;}
.yfb{bottom:769.515444px;}
.yad{bottom:770.350175px;}
.y111{bottom:773.558413px;}
.y75{bottom:778.867009px;}
.y17e{bottom:780.246654px;}
.y1dc{bottom:780.452439px;}
.y2a{bottom:789.357623px;}
.y11f{bottom:791.492266px;}
.yb{bottom:800.876408px;}
.y19d{bottom:801.397530px;}
.y1c1{bottom:804.584295px;}
.y163{bottom:805.383371px;}
.y141{bottom:806.605054px;}
.y152{bottom:807.826736px;}
.yd9{bottom:808.595775px;}
.yf9{bottom:808.890442px;}
.yc2{bottom:809.048408px;}
.yac{bottom:811.746652px;}
.y38{bottom:812.190499px;}
.ya{bottom:812.260440px;}
.y110{bottom:812.933411px;}
.y29{bottom:814.555856px;}
.y74{bottom:819.252747px;}
.y1db{bottom:820.414867px;}
.y17d{bottom:821.643142px;}
.y11e{bottom:832.888743px;}
.yf8{bottom:838.927064px;}
.y28{bottom:839.754100px;}
.y12f{bottom:841.572336px;}
.y19c{bottom:842.794019px;}
.y37{bottom:843.237865px;}
.y1c0{bottom:844.546679px;}
.y15e{bottom:848.001531px;}
.y151{bottom:849.223213px;}
.yf7{bottom:849.276184px;}
.yd8{bottom:849.992263px;}
.yc1{bottom:850.444896px;}
.y10f{bottom:852.308410px;}
.yab{bottom:853.143141px;}
.y73{bottom:858.627745px;}
.y1da{bottom:860.377262px;}
.y1f0{bottom:861.811355px;}
.y17c{bottom:863.039619px;}
.y27{bottom:864.952344px;}
.y9{bottom:870.622006px;}
.y11d{bottom:874.285231px;}
.y8{bottom:882.006038px;}
.y12e{bottom:882.968824px;}
.y19b{bottom:884.190496px;}
.y1bf{bottom:884.509107px;}
.y71{bottom:888.664367px;}
.y140{bottom:889.398019px;}
.yf6{bottom:889.661925px;}
.y26{bottom:890.150588px;}
.y150{bottom:890.619702px;}
.yd7{bottom:891.388740px;}
.y10e{bottom:891.683408px;}
.yc0{bottom:891.841373px;}
.y36{bottom:892.285230px;}
.yaa{bottom:894.539618px;}
.y70{bottom:899.013487px;}
.y1d9{bottom:900.339645px;}
.y1ef{bottom:901.773739px;}
.y17b{bottom:904.436107px;}
.y25{bottom:915.348821px;}
.y11c{bottom:915.681708px;}
.yf4{bottom:919.698543px;}
.y1be{bottom:924.471490px;}
.y12d{bottom:925.586984px;}
.yf3{bottom:930.047667px;}
.y6c{bottom:930.060849px;}
.y13f{bottom:930.794496px;}
.y10d{bottom:931.058407px;}
.y14f{bottom:932.016179px;}
.yd6{bottom:932.785229px;}
.ybf{bottom:933.237861px;}
.ya9{bottom:935.936106px;}
.y1d8{bottom:940.302073px;}
.y24{bottom:940.547065px;}
.y1ee{bottom:941.736133px;}
.y6{bottom:943.928274px;}
.y17a{bottom:945.832584px;}
.y35{bottom:950.332584px;}
.y6b{bottom:950.759089px;}
.y1ba{bottom:953.483462px;}
.y7{bottom:957.019933px;}
.y1bd{bottom:964.540107px;}
.y11b{bottom:964.729074px;}
.y23{bottom:965.745309px;}
.y12c{bottom:966.983461px;}
.yf2{bottom:970.433405px;}
.y162{bottom:972.190984px;}
.y13e{bottom:973.412667px;}
.yd5{bottom:974.181706px;}
.ybe{bottom:974.634338px;}
.ya8{bottom:977.332572px;}
.y1d7{bottom:980.370668px;}
.y179{bottom:981.379928px;}
.y1ed{bottom:981.698539px;}
.ya4{bottom:985.067174px;}
.y22{bottom:990.943530px;}
.y19a{bottom:994.879927px;}
.y69{bottom:1001.493930px;}
.y1bc{bottom:1005.936573px;}
.y12b{bottom:1008.379927px;}
.yf1{bottom:1009.808382px;}
.y5{bottom:1010.753710px;}
.y15d{bottom:1014.809133px;}
.y9f{bottom:1015.103792px;}
.yd4{bottom:1015.578171px;}
.ybd{bottom:1016.030804px;}
.y21{bottom:1016.141774px;}
.ya7{bottom:1018.729049px;}
.y1d6{bottom:1021.660945px;}
.y1b9{bottom:1021.879926px;}
.ya2{bottom:1025.452912px;}
.y66{bottom:1032.655548px;}
.y11a{bottom:1033.125538px;}
.y20{bottom:1036.840007px;}
.y64{bottom:1043.004672px;}
.y4{bottom:1046.975638px;}
.y1bb{bottom:1048.554733px;}
.yf0{bottom:1049.183380px;}
.y12a{bottom:1049.776415px;}
.yd3{bottom:1051.125537px;}
.y13d{bottom:1056.205610px;}
.ybc{bottom:1057.427292px;}
.ya6{bottom:1060.125537px;}
.y1d5{bottom:1061.623351px;}
.y1f{bottom:1062.038251px;}
.y199{bottom:1063.276414px;}
.y9d{bottom:1065.838653px;}
.y119{bottom:1082.172896px;}
.y1e{bottom:1087.236495px;}
.yef{bottom:1088.558378px;}
.y129{bottom:1091.172895px;}
.y3{bottom:1092.197560px;}
.y98{bottom:1095.875294px;}
.y13c{bottom:1097.602095px;}
.y63{bottom:1098.823775px;}
.y1d4{bottom:1101.585737px;}
.y198{bottom:1104.672895px;}
.ya5{bottom:1109.172895px;}
.y1d{bottom:1112.434735px;}
.y9c{bottom:1116.573538px;}
.yee{bottom:1127.933388px;}
.y2{bottom:1137.419481px;}
.y59{bottom:1140.220265px;}
.y1d3{bottom:1141.548143px;}
.y1b{bottom:1157.970007px;}
.h14{height:20.698219px;}
.h13{height:20.698230px;}
.hf{height:20.698241px;}
.he{height:21.823241px;}
.h9{height:36.597655px;}
.h8{height:37.520506px;}
.h16{height:39.980235px;}
.h10{height:41.396483px;}
.h15{height:43.969260px;}
.h7{height:45.805339px;}
.hc{height:48.796873px;}
.hd{height:49.042967px;}
.h6{height:49.992185px;}
.hb{height:50.027342px;}
.h3{height:56.909353px;}
.h5{height:57.491013px;}
.h4{height:58.303386px;}
.h11{height:62.094702px;}
.h12{height:62.094713px;}
.ha{height:106.349993px;}
.h2{height:1263.374947px;}
.h0{height:1264.320000px;}
.h1{height:1264.500000px;}
.w5{width:41.625042px;}
.w7{width:74.249997px;}
.w8{width:79.874997px;}
.wa{width:112.499995px;}
.w4{width:127.124995px;}
.w6{width:200.249992px;}
.wb{width:236.249990px;}
.w3{width:294.749988px;}
.w9{width:323.999987px;}
.wc{width:329.624986px;}
.w2{width:893.249963px;}
.w0{width:893.879970px;}
.w1{width:894.000000px;}
.x0{left:0.000000px;}
.xa{left:1.125002px;}
.x18{left:4.126455px;}
.x3f{left:5.422849px;}
.x13{left:13.499988px;}
.x1e{left:14.800769px;}
.x2c{left:17.011223px;}
.x17{left:18.760252px;}
.x23{left:21.177235px;}
.x10{left:22.499988px;}
.x22{left:25.294915px;}
.x1d{left:28.124988px;}
.xe{left:31.500021px;}
.x20{left:32.624987px;}
.x27{left:34.026850px;}
.x15{left:35.903312px;}
.x1a{left:37.687487px;}
.x2e{left:39.902331px;}
.x40{left:41.176753px;}
.x37{left:43.294914px;}
.x35{left:50.581044px;}
.x3e{left:53.389157px;}
.x25{left:57.893544px;}
.x21{left:62.011224px;}
.x36{left:63.241692px;}
.x45{left:67.016596px;}
.x3b{left:68.879877px;}
.xf{left:70.505851px;}
.x3a{left:71.881343px;}
.x33{left:73.177726px;}
.x34{left:74.184072px;}
.x43{left:76.139637px;}
.x30{left:78.473134px;}
.x11{left:79.505850px;}
.x38{left:81.518543px;}
.x12{left:84.005850px;}
.x41{left:94.095694px;}
.x28{left:97.264188px;}
.x31{left:100.309597px;}
.x46{left:109.309597px;}
.xc{left:111.005849px;}
.x24{left:112.754909px;}
.x47{left:114.249044px;}
.x26{left:115.756375px;}
.x44{left:117.461448px;}
.x3d{left:119.953143px;}
.x3c{left:122.203142px;}
.x42{left:125.666039px;}
.x1{left:127.574997px;}
.x32{left:129.405786px;}
.x48{left:134.314476px;}
.x5{left:136.574997px;}
.x1f{left:145.001975px;}
.x39{left:147.432155px;}
.x8{left:154.574987px;}
.x1c{left:159.750016px;}
.x2b{left:170.324986px;}
.x9{left:181.574986px;}
.x29{left:196.199981px;}
.x2a{left:223.199979px;}
.x4e{left:233.324979px;}
.x4d{left:235.574979px;}
.x2d{left:240.074990px;}
.x4c{left:246.824978px;}
.x2{left:257.988702px;}
.x4f{left:276.074977px;}
.x3{left:277.526340px;}
.x4a{left:289.574977px;}
.x49{left:294.074976px;}
.x16{left:327.824986px;}
.x4{left:378.747400px;}
.x4b{left:397.574972px;}
.x19{left:402.074983px;}
.x7{left:411.955217px;}
.xb{left:422.324982px;}
.x2f{left:476.324980px;}
.x1b{left:481.949980px;}
.xd{left:549.449977px;}
.x14{left:747.338346px;}
.x6{left:756.338346px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:0.000000pt;}
._23{margin-left:-31.997185pt;}
._0{margin-left:-18.659999pt;}
._5{margin-left:-15.999999pt;}
._6{margin-left:-14.659999pt;}
._7{margin-left:-11.999999pt;}
._1e{margin-left:-8.249992pt;}
._3{margin-left:-6.851882pt;}
._4{margin-left:-5.211784pt;}
._1b{margin-left:-4.276196pt;}
._2{margin-left:-2.770128pt;}
._1{margin-left:-1.348804pt;}
._21{width:1.180537pt;}
._52{width:3.723805pt;}
._4a{width:25.812498pt;}
._42{width:39.463693pt;}
._1f{width:43.997069pt;}
._20{width:59.997069pt;}
._b{width:67.800718pt;}
._46{width:69.414059pt;}
._25{width:84.499980pt;}
._39{width:88.036301pt;}
._51{width:92.499996pt;}
._4b{width:95.758129pt;}
._38{width:96.869893pt;}
._2f{width:99.562448pt;}
._26{width:101.281198pt;}
._48{width:105.473799pt;}
._2d{width:113.749947pt;}
._2c{width:124.499947pt;}
._36{width:150.961729pt;}
._3a{width:154.687494pt;}
._32{width:160.093695pt;}
._41{width:170.687493pt;}
._3f{width:171.999993pt;}
._45{width:175.656242pt;}
._4e{width:179.562493pt;}
._34{width:181.406194pt;}
._33{width:184.843694pt;}
._4f{width:191.906242pt;}
._24{width:194.687476pt;}
._30{width:197.419640pt;}
._29{width:199.963640pt;}
._50{width:202.687492pt;}
._35{width:206.156193pt;}
._37{width:210.687475pt;}
._3e{width:219.968742pt;}
._47{width:223.687490pt;}
._3d{width:225.812490pt;}
._49{width:229.383329pt;}
._4d{width:243.593740pt;}
._28{width:250.624942pt;}
._31{width:255.937441pt;}
._2e{width:264.812441pt;}
._4c{width:271.906240pt;}
._40{width:306.591826pt;}
._27{width:314.624939pt;}
._3b{width:321.437487pt;}
._12{width:336.986261pt;}
._43{width:342.749986pt;}
._3c{width:346.187486pt;}
._2a{width:353.812437pt;}
._1a{width:365.423759pt;}
._44{width:367.499985pt;}
._2b{width:442.687434pt;}
._22{width:488.874931pt;}
._11{width:788.517492pt;}
._15{width:854.509357pt;}
._1d{width:857.954989pt;}
._18{width:1039.353100pt;}
._f{width:1370.134336pt;}
._16{width:1375.509336pt;}
._e{width:1396.665585pt;}
._17{width:1435.665584pt;}
._d{width:1444.603084pt;}
._14{width:1478.252367pt;}
._c{width:1505.071831pt;}
._1c{width:1523.134330pt;}
._10{width:1609.915576pt;}
._8{width:1613.228045pt;}
._19{width:1629.353077pt;}
._13{width:1638.189859pt;}
._9{width:1641.814859pt;}
._a{width:1977.790561pt;}
.fs4{font-size:47.999998pt;}
.fs5{font-size:53.319997pt;}
.fs3{font-size:58.639997pt;}
.fs2{font-size:63.999997pt;}
.fs1{font-size:73.599997pt;}
.fs0{font-size:74.639997pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.840047pt;}
.y81{bottom:3.460915pt;}
.y100{bottom:3.460917pt;}
.y9b{bottom:3.460918pt;}
.y7e{bottom:3.460923pt;}
.y3e{bottom:3.460925pt;}
.y3c{bottom:3.460926pt;}
.y6f{bottom:3.460927pt;}
.y78{bottom:3.460929pt;}
.yfa{bottom:3.460930pt;}
.y3a{bottom:3.460931pt;}
.y6a{bottom:3.460933pt;}
.y65{bottom:3.460934pt;}
.y68{bottom:3.460936pt;}
.ya1{bottom:3.460938pt;}
.ya3{bottom:3.460939pt;}
.y9e{bottom:3.460941pt;}
.y4b{bottom:3.460947pt;}
.y4d{bottom:3.460949pt;}
.y46{bottom:3.460951pt;}
.y40{bottom:3.460953pt;}
.y49{bottom:3.460955pt;}
.y53{bottom:3.460957pt;}
.y55{bottom:3.460959pt;}
.y42{bottom:3.460962pt;}
.y44{bottom:3.460963pt;}
.y51{bottom:3.460965pt;}
.yec{bottom:3.460967pt;}
.y95{bottom:3.460969pt;}
.y4f{bottom:3.460973pt;}
.y8e{bottom:3.460975pt;}
.y84{bottom:3.460981pt;}
.y97{bottom:3.460983pt;}
.yea{bottom:3.460985pt;}
.y91{bottom:3.460991pt;}
.y9a{bottom:21.859363pt;}
.yf5{bottom:21.859366pt;}
.y6e{bottom:21.859367pt;}
.y77{bottom:21.859368pt;}
.y72{bottom:21.859372pt;}
.y67{bottom:21.859375pt;}
.ya0{bottom:21.859377pt;}
.y8a{bottom:21.859398pt;}
.y94{bottom:21.859408pt;}
.y8d{bottom:21.859414pt;}
.ye9{bottom:21.859424pt;}
.y1c{bottom:32.329164pt;}
.y99{bottom:40.257799pt;}
.y6d{bottom:40.257806pt;}
.y197{bottom:99.603386pt;}
.y60{bottom:104.685416pt;}
.y18e{bottom:104.802606pt;}
.y1b8{bottom:105.599486pt;}
.y93{bottom:114.142623pt;}
.y1d2{bottom:116.623595pt;}
.yed{bottom:117.080133pt;}
.y15c{bottom:122.802605pt;}
.y96{bottom:123.341828pt;}
.y14e{bottom:123.888545pt;}
.y10c{bottom:124.013700pt;}
.y1ec{bottom:124.106625pt;}
.y173{bottom:127.146355pt;}
.y1ab{bottom:129.599485pt;}
.yd2{bottom:130.404165pt;}
.ybb{bottom:132.802604pt;}
.y196{bottom:136.400264pt;}
.y5f{bottom:141.482294pt;}
.y18d{bottom:141.599484pt;}
.y1b7{bottom:142.396354pt;}
.ye8{bottom:144.779326pt;}
.y1d1{bottom:152.145684pt;}
.yeb{bottom:153.978563pt;}
.y13b{bottom:154.970574pt;}
.y10b{bottom:159.013699pt;}
.y92{bottom:159.240259pt;}
.y178{bottom:159.599483pt;}
.y1eb{bottom:159.628773pt;}
.y15b{bottom:160.685413pt;}
.y14d{bottom:161.771353pt;}
.y1a{bottom:163.551633pt;}
.y172{bottom:163.943233pt;}
.y1aa{bottom:166.396353pt;}
.yd1{bottom:167.201043pt;}
.yba{bottom:169.599483pt;}
.y195{bottom:173.197133pt;}
.y5e{bottom:178.279163pt;}
.y18c{bottom:178.396353pt;}
.y1b6{bottom:179.193233pt;}
.y19{bottom:184.249872pt;}
.y1d0{bottom:187.667842pt;}
.y13a{bottom:191.767452pt;}
.y10a{bottom:194.013697pt;}
.y90{bottom:194.240257pt;}
.y1ea{bottom:195.150932pt;}
.y15a{bottom:197.482292pt;}
.y161{bottom:198.568232pt;}
.y171{bottom:200.740102pt;}
.y1a9{bottom:203.193232pt;}
.ye7{bottom:203.595572pt;}
.yd0{bottom:203.997912pt;}
.y18{bottom:204.948111pt;}
.yb9{bottom:206.396351pt;}
.y194{bottom:209.994011pt;}
.y5d{bottom:215.076041pt;}
.y18b{bottom:215.193231pt;}
.y1b5{bottom:215.990101pt;}
.y8c{bottom:220.939483pt;}
.y1cf{bottom:223.189991pt;}
.y5a{bottom:224.872911pt;}
.y109{bottom:229.013696pt;}
.y139{bottom:229.650260pt;}
.y8f{bottom:230.138720pt;}
.y1e9{bottom:230.767450pt;}
.y159{bottom:234.279160pt;}
.y14c{bottom:235.365100pt;}
.y170{bottom:237.536980pt;}
.y1a8{bottom:239.990100pt;}
.ye6{bottom:240.392450pt;}
.ycf{bottom:240.794790pt;}
.y17{bottom:241.646350pt;}
.yb8{bottom:243.193230pt;}
.y193{bottom:246.790880pt;}
.y5c{bottom:251.872910pt;}
.y18a{bottom:251.990100pt;}
.y89{bottom:257.736377pt;}
.y1ce{bottom:258.712089pt;}
.y1b4{bottom:259.587759pt;}
.y108{bottom:264.013694pt;}
.y8b{bottom:266.935582pt;}
.y1e8{bottom:267.469899pt;}
.y177{bottom:271.076039pt;}
.y14b{bottom:272.161979pt;}
.y16f{bottom:274.333849pt;}
.y1a7{bottom:276.786978pt;}
.ye5{bottom:277.189318pt;}
.yce{bottom:277.591658pt;}
.y16{bottom:278.344588pt;}
.yb7{bottom:279.990098pt;}
.y58{bottom:281.600638pt;}
.y192{bottom:283.587758pt;}
.y5b{bottom:288.669788pt;}
.y189{bottom:288.786978pt;}
.y62{bottom:289.761038pt;}
.y1cd{bottom:294.234238pt;}
.y107{bottom:299.013693pt;}
.y15{bottom:299.042838pt;}
.y88{bottom:302.834013pt;}
.y1e7{bottom:302.992057pt;}
.y138{bottom:303.244007pt;}
.y176{bottom:307.872907pt;}
.y14a{bottom:308.958847pt;}
.y160{bottom:310.044787pt;}
.y16e{bottom:311.130727pt;}
.ye4{bottom:313.986197pt;}
.ycd{bottom:314.388537pt;}
.yb6{bottom:316.786977pt;}
.y57{bottom:318.397507pt;}
.y14{bottom:319.741077pt;}
.y191{bottom:320.384627pt;}
.y188{bottom:325.583846pt;}
.y61{bottom:326.557906pt;}
.y1cc{bottom:329.756396pt;}
.y106{bottom:334.013691pt;}
.y87{bottom:337.834011pt;}
.y1e6{bottom:338.514206pt;}
.y137{bottom:340.040876pt;}
.y13{bottom:340.439316pt;}
.y128{bottom:341.576036pt;}
.y149{bottom:345.755726pt;}
.y15f{bottom:346.841656pt;}
.y16d{bottom:347.927596pt;}
.ye3{bottom:350.783065pt;}
.ycc{bottom:351.185405pt;}
.yb5{bottom:353.583845pt;}
.y56{bottom:355.194385pt;}
.y190{bottom:357.181505pt;}
.y12{bottom:361.137555pt;}
.y187{bottom:362.380725pt;}
.y1cb{bottom:365.278485pt;}
.y105{bottom:369.013690pt;}
.y86{bottom:372.834010pt;}
.y1e5{bottom:374.036304pt;}
.y136{bottom:377.923694pt;}
.y127{bottom:378.372904pt;}
.y1a6{bottom:381.181504pt;}
.y164{bottom:382.552594pt;}
.y148{bottom:383.638534pt;}
.y16c{bottom:384.724474pt;}
.ye2{bottom:387.579944pt;}
.ycb{bottom:387.982284pt;}
.yb4{bottom:390.380724pt;}
.y1b3{bottom:393.978374pt;}
.y11{bottom:397.835803pt;}
.y186{bottom:399.177593pt;}
.y18f{bottom:400.779153pt;}
.y1ca{bottom:400.800643pt;}
.y54{bottom:401.959641pt;}
.y104{bottom:404.013689pt;}
.y85{bottom:407.834008pt;}
.y1e4{bottom:409.558453pt;}
.y126{bottom:415.169783pt;}
.y1a5{bottom:417.978373pt;}
.y10{bottom:418.534043pt;}
.y175{bottom:419.349473pt;}
.y158{bottom:420.435402pt;}
.y52{bottom:422.358072pt;}
.y118{bottom:422.541482pt;}
.y16b{bottom:422.607282pt;}
.ye1{bottom:424.376812pt;}
.yca{bottom:424.779152pt;}
.yb3{bottom:427.177592pt;}
.y1b2{bottom:430.775252pt;}
.y185{bottom:435.974472pt;}
.y1c9{bottom:436.322792pt;}
.y103{bottom:439.013687pt;}
.yf{bottom:439.232282pt;}
.y50{bottom:441.756503pt;}
.y83{bottom:442.834007pt;}
.y1e3{bottom:445.080611pt;}
.y135{bottom:451.517441pt;}
.y125{bottom:451.966651pt;}
.y1a4{bottom:454.775251pt;}
.y147{bottom:457.232281pt;}
.y16a{bottom:459.404151pt;}
.ye{bottom:459.930521pt;}
.y4e{bottom:461.154934pt;}
.ye0{bottom:461.173691pt;}
.yc9{bottom:461.576031pt;}
.yb2{bottom:463.974471pt;}
.y1b1{bottom:467.572121pt;}
.y1c8{bottom:469.188030pt;}
.y184{bottom:472.771340pt;}
.y102{bottom:474.013750pt;}
.y117{bottom:477.607477pt;}
.y34{bottom:477.666850pt;}
.y82{bottom:477.834037pt;}
.y4c{bottom:480.553397pt;}
.y1e2{bottom:480.602700pt;}
.yd{bottom:480.628760pt;}
.y134{bottom:488.314310pt;}
.y124{bottom:488.763530pt;}
.y1a3{bottom:491.572120pt;}
.y146{bottom:494.029149pt;}
.y157{bottom:495.115089pt;}
.y169{bottom:496.201029pt;}
.ydf{bottom:497.970559pt;}
.yc8{bottom:498.372899pt;}
.y4a{bottom:499.951829pt;}
.y33{bottom:500.065289pt;}
.yb1{bottom:500.771339pt;}
.y1c7{bottom:502.053259pt;}
.y1b0{bottom:504.368999pt;}
.y7f{bottom:504.533263pt;}
.y101{bottom:509.013748pt;}
.y183{bottom:509.568219pt;}
.y116{bottom:512.607476pt;}
.y80{bottom:513.732500pt;}
.y1e1{bottom:516.124858pt;}
.y48{bottom:519.350260pt;}
.yc{bottom:519.437048pt;}
.y32{bottom:522.463728pt;}
.y123{bottom:525.560398pt;}
.y133{bottom:526.197118pt;}
.y1a2{bottom:528.368998pt;}
.y174{bottom:530.826028pt;}
.y145{bottom:531.911968pt;}
.y168{bottom:532.997898pt;}
.yde{bottom:534.767438pt;}
.yc7{bottom:535.169778pt;}
.y1c6{bottom:537.575358pt;}
.y47{bottom:538.748691pt;}
.y1af{bottom:541.165867pt;}
.yff{bottom:544.013747pt;}
.y31{bottom:544.862157pt;}
.y182{bottom:546.365087pt;}
.y115{bottom:547.607475pt;}
.y7d{bottom:549.630930pt;}
.y1e0{bottom:551.647007pt;}
.y45{bottom:559.947922pt;}
.y43{bottom:561.748690pt;}
.y1a1{bottom:565.165866pt;}
.y30{bottom:567.260596pt;}
.y156{bottom:568.708836pt;}
.y122{bottom:569.158056pt;}
.y167{bottom:569.794776pt;}
.ydd{bottom:571.564306pt;}
.yc6{bottom:571.966646pt;}
.y1c5{bottom:573.097506pt;}
.yb0{bottom:574.365086pt;}
.y1ae{bottom:577.962746pt;}
.yfe{bottom:579.013732pt;}
.y41{bottom:581.147131pt;}
.y114{bottom:582.607483pt;}
.y181{bottom:583.161966pt;}
.y7c{bottom:584.630919pt;}
.y1df{bottom:587.169106pt;}
.y2f{bottom:589.659035pt;}
.y132{bottom:599.790865pt;}
.y3f{bottom:600.545568pt;}
.y1a0{bottom:601.962745pt;}
.y144{bottom:605.505715pt;}
.y155{bottom:606.591645pt;}
.ydc{bottom:608.361185pt;}
.y1c4{bottom:608.619665pt;}
.yc5{bottom:608.763525pt;}
.yaf{bottom:611.161965pt;}
.y2e{bottom:612.057474pt;}
.yfd{bottom:614.013731pt;}
.y1ad{bottom:614.759614pt;}
.y113{bottom:617.607481pt;}
.y7b{bottom:619.630918pt;}
.y3d{bottom:619.944006pt;}
.y180{bottom:619.958834pt;}
.y1de{bottom:622.691254pt;}
.y121{bottom:629.954934pt;}
.y2d{bottom:634.455904pt;}
.y131{bottom:636.587743pt;}
.y19f{bottom:638.759613pt;}
.y3b{bottom:639.342444pt;}
.y143{bottom:642.302583pt;}
.y154{bottom:643.388523pt;}
.y1c3{bottom:644.141753pt;}
.y166{bottom:644.474463pt;}
.ydb{bottom:645.158053pt;}
.yc4{bottom:645.560393pt;}
.y79{bottom:646.330137pt;}
.yae{bottom:647.958833pt;}
.yfc{bottom:649.013730pt;}
.y112{bottom:652.607480pt;}
.y7a{bottom:655.529355pt;}
.y17f{bottom:656.755713pt;}
.y2c{bottom:656.854343pt;}
.y1dd{bottom:658.213383pt;}
.y1ac{bottom:658.357273pt;}
.y39{bottom:659.740878pt;}
.y120{bottom:666.751802pt;}
.y130{bottom:674.470552pt;}
.y19e{bottom:675.556492pt;}
.y142{bottom:679.099462pt;}
.y2b{bottom:679.252782pt;}
.y1c2{bottom:679.663912pt;}
.y153{bottom:680.185392pt;}
.y165{bottom:681.271332pt;}
.yda{bottom:681.954932pt;}
.yc3{bottom:682.357272pt;}
.y76{bottom:683.127009pt;}
.yfb{bottom:684.013728pt;}
.yad{bottom:684.755711pt;}
.y111{bottom:687.607478pt;}
.y75{bottom:692.326230pt;}
.y17e{bottom:693.552581pt;}
.y1dc{bottom:693.735501pt;}
.y2a{bottom:701.651221pt;}
.y11f{bottom:703.548681pt;}
.yb{bottom:711.890140pt;}
.y19d{bottom:712.353360pt;}
.y1c1{bottom:715.186040pt;}
.y163{bottom:715.896330pt;}
.y141{bottom:716.982270pt;}
.y152{bottom:718.068210pt;}
.yd9{bottom:718.751800pt;}
.yf9{bottom:719.013727pt;}
.yc2{bottom:719.154140pt;}
.yac{bottom:721.552580pt;}
.y38{bottom:721.947110pt;}
.ya{bottom:722.009280pt;}
.y110{bottom:722.607477pt;}
.y29{bottom:724.049650pt;}
.y74{bottom:728.224664pt;}
.y1db{bottom:729.257660pt;}
.y17d{bottom:730.349460pt;}
.y11e{bottom:740.345549pt;}
.yf8{bottom:745.712946pt;}
.y28{bottom:746.448089pt;}
.y12f{bottom:748.064299pt;}
.y19c{bottom:749.150239pt;}
.y37{bottom:749.544769pt;}
.y1c0{bottom:750.708159pt;}
.y15e{bottom:753.779139pt;}
.y151{bottom:754.865079pt;}
.yf7{bottom:754.912164pt;}
.yd8{bottom:755.548679pt;}
.yc1{bottom:755.951019pt;}
.y10f{bottom:757.607475pt;}
.yab{bottom:758.349458pt;}
.y73{bottom:763.224662pt;}
.y1da{bottom:764.779788pt;}
.y1f0{bottom:766.054538pt;}
.y17c{bottom:767.146328pt;}
.y27{bottom:768.846528pt;}
.y9{bottom:773.886228pt;}
.y11d{bottom:777.142428pt;}
.y8{bottom:784.005367pt;}
.y12e{bottom:784.861177pt;}
.y19b{bottom:785.947107pt;}
.y1bf{bottom:786.230317pt;}
.y71{bottom:789.923881pt;}
.y140{bottom:790.576017pt;}
.yf6{bottom:790.810600pt;}
.y26{bottom:791.244967pt;}
.y150{bottom:791.661957pt;}
.yd7{bottom:792.345547pt;}
.y10e{bottom:792.607474pt;}
.yc0{bottom:792.747887pt;}
.y36{bottom:793.142427pt;}
.yaa{bottom:795.146327pt;}
.y70{bottom:799.123099pt;}
.y1d9{bottom:800.301907pt;}
.y1ef{bottom:801.576657pt;}
.y17b{bottom:803.943207pt;}
.y25{bottom:813.643396pt;}
.y11c{bottom:813.939296pt;}
.yf4{bottom:817.509816pt;}
.y1be{bottom:821.752436pt;}
.y12d{bottom:822.743986pt;}
.yf3{bottom:826.709037pt;}
.y6c{bottom:826.720755pt;}
.y13f{bottom:827.372886pt;}
.y10d{bottom:827.607473pt;}
.y14f{bottom:828.458825pt;}
.yd6{bottom:829.142425pt;}
.ybf{bottom:829.544765pt;}
.ya9{bottom:831.943205pt;}
.y1d8{bottom:835.824065pt;}
.y24{bottom:836.041835pt;}
.y1ee{bottom:837.098785pt;}
.y6{bottom:839.047355pt;}
.y17a{bottom:840.740075pt;}
.y35{bottom:844.740075pt;}
.y6b{bottom:845.119190pt;}
.y1ba{bottom:847.540855pt;}
.y7{bottom:850.684385pt;}
.y1bd{bottom:857.368984pt;}
.y11b{bottom:857.536954pt;}
.y23{bottom:858.440274pt;}
.y12c{bottom:859.540854pt;}
.yf2{bottom:862.607471pt;}
.y162{bottom:864.169764pt;}
.y13e{bottom:865.255704pt;}
.yd5{bottom:865.939294pt;}
.ybe{bottom:866.341634pt;}
.ya8{bottom:868.740064pt;}
.y1d7{bottom:871.440594pt;}
.y179{bottom:872.337714pt;}
.y1ed{bottom:872.620924pt;}
.ya4{bottom:875.615266pt;}
.y22{bottom:880.838693pt;}
.y19a{bottom:884.337713pt;}
.y69{bottom:890.216827pt;}
.y1bc{bottom:894.165843pt;}
.y12b{bottom:896.337713pt;}
.yf1{bottom:897.607450pt;}
.y5{bottom:898.447743pt;}
.y15d{bottom:902.052562pt;}
.y9f{bottom:902.314482pt;}
.yd4{bottom:902.736152pt;}
.ybd{bottom:903.138492pt;}
.y21{bottom:903.237132pt;}
.ya7{bottom:905.536932pt;}
.y1d6{bottom:908.143062pt;}
.y1b9{bottom:908.337712pt;}
.ya2{bottom:911.513699pt;}
.y66{bottom:917.916043pt;}
.y11a{bottom:918.333812pt;}
.y20{bottom:921.635562pt;}
.y64{bottom:927.115264pt;}
.y4{bottom:930.645011pt;}
.y1bb{bottom:932.048651pt;}
.yf0{bottom:932.607449pt;}
.y12a{bottom:933.134591pt;}
.yd3{bottom:934.333811pt;}
.y13d{bottom:938.849431pt;}
.ybc{bottom:939.935371pt;}
.ya6{bottom:942.333811pt;}
.y1d5{bottom:943.665201pt;}
.y1f{bottom:944.034001pt;}
.y199{bottom:945.134591pt;}
.y9d{bottom:947.412136pt;}
.y119{bottom:961.931463pt;}
.y1e{bottom:966.432440pt;}
.yef{bottom:967.607447pt;}
.y129{bottom:969.931463pt;}
.y3{bottom:970.842276pt;}
.y98{bottom:974.111373pt;}
.y13c{bottom:975.646306pt;}
.y63{bottom:976.732244pt;}
.y1d4{bottom:979.187322pt;}
.y198{bottom:981.931462pt;}
.ya5{bottom:985.931462pt;}
.y1d{bottom:988.830876pt;}
.y9c{bottom:992.509811pt;}
.yee{bottom:1002.607456pt;}
.y2{bottom:1011.039539pt;}
.y59{bottom:1013.529125pt;}
.y1d3{bottom:1014.709461pt;}
.y1b{bottom:1029.306673pt;}
.h14{height:18.398417pt;}
.h13{height:18.398427pt;}
.hf{height:18.398437pt;}
.he{height:19.398437pt;}
.h9{height:32.531249pt;}
.h8{height:33.351561pt;}
.h16{height:35.537987pt;}
.h10{height:36.796873pt;}
.h15{height:39.083787pt;}
.h7{height:40.715857pt;}
.hc{height:43.374998pt;}
.hd{height:43.593748pt;}
.h6{height:44.437498pt;}
.hb{height:44.468748pt;}
.h3{height:50.586092pt;}
.h5{height:51.103123pt;}
.h4{height:51.825232pt;}
.h11{height:55.195291pt;}
.h12{height:55.195300pt;}
.ha{height:94.533327pt;}
.h2{height:1122.999953pt;}
.h0{height:1123.840000pt;}
.h1{height:1124.000000pt;}
.w5{width:37.000037pt;}
.w7{width:65.999997pt;}
.w8{width:70.999997pt;}
.wa{width:99.999996pt;}
.w4{width:112.999995pt;}
.w6{width:177.999993pt;}
.wb{width:209.999991pt;}
.w3{width:261.999989pt;}
.w9{width:287.999988pt;}
.wc{width:292.999988pt;}
.w2{width:793.999967pt;}
.w0{width:794.559973pt;}
.w1{width:794.666667pt;}
.x0{left:0.000000pt;}
.xa{left:1.000002pt;}
.x18{left:3.667960pt;}
.x3f{left:4.820310pt;}
.x13{left:11.999990pt;}
.x1e{left:13.156239pt;}
.x2c{left:15.121087pt;}
.x17{left:16.675779pt;}
.x23{left:18.824209pt;}
.x10{left:19.999989pt;}
.x22{left:22.484369pt;}
.x1d{left:24.999989pt;}
.xe{left:28.000019pt;}
.x20{left:28.999989pt;}
.x27{left:30.246089pt;}
.x15{left:31.914055pt;}
.x1a{left:33.499989pt;}
.x2e{left:35.468739pt;}
.x40{left:36.601558pt;}
.x37{left:38.484368pt;}
.x35{left:44.960928pt;}
.x3e{left:47.457028pt;}
.x25{left:51.460928pt;}
.x21{left:55.121088pt;}
.x36{left:56.214838pt;}
.x45{left:59.570308pt;}
.x3b{left:61.226557pt;}
.xf{left:62.671867pt;}
.x3a{left:63.894527pt;}
.x33{left:65.046867pt;}
.x34{left:65.941397pt;}
.x43{left:67.679677pt;}
.x30{left:69.753897pt;}
.x11{left:70.671867pt;}
.x38{left:72.460927pt;}
.x12{left:74.671867pt;}
.x41{left:83.640617pt;}
.x28{left:86.457056pt;}
.x31{left:89.164086pt;}
.x46{left:97.164086pt;}
.xc{left:98.671866pt;}
.x24{left:100.226586pt;}
.x47{left:101.554706pt;}
.x26{left:102.894556pt;}
.x44{left:104.410176pt;}
.x3d{left:106.625016pt;}
.x3c{left:108.625015pt;}
.x42{left:111.703145pt;}
.x1{left:113.399997pt;}
.x32{left:115.027365pt;}
.x48{left:119.390645pt;}
.x5{left:121.399997pt;}
.x1f{left:128.890645pt;}
.x39{left:131.050805pt;}
.x8{left:137.399988pt;}
.x1c{left:142.000014pt;}
.x2b{left:151.399988pt;}
.x9{left:161.399987pt;}
.x29{left:174.399983pt;}
.x2a{left:198.399982pt;}
.x4e{left:207.399981pt;}
.x4d{left:209.399981pt;}
.x2d{left:213.399991pt;}
.x4c{left:219.399981pt;}
.x2{left:229.323290pt;}
.x4f{left:245.399980pt;}
.x3{left:246.690080pt;}
.x4a{left:257.399979pt;}
.x49{left:261.399979pt;}
.x16{left:291.399988pt;}
.x4{left:336.664356pt;}
.x4b{left:353.399975pt;}
.x19{left:357.399985pt;}
.x7{left:366.182415pt;}
.xb{left:375.399984pt;}
.x2f{left:423.399982pt;}
.x1b{left:428.399982pt;}
.xd{left:488.399980pt;}
.x14{left:664.300752pt;}
.x6{left:672.300752pt;}
}




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