
    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_fba1763bc3a2cd7ffee21c8a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.740723;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_ace49df2f1ad9d11f2c1a3b5.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.740723;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_4aacb7af8d7165f5d8c06544.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.115234;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_c0cf6dce911da4366a32cc5a.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.106934;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_a9c275a960dbccaa0fc2a349.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.106934;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_997a7e03cfbfecde96662178.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.115234;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_f27493468107ca4c8eaef263.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.892578;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_407d60bb168a9ba825e2ff36.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.720703;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_d611441931b4f12779557cfa.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.003906;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_36643499a0468c3396de74ed.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.892578;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_31f91054e92a0aedee5e2f14.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.003906;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_5e2bd915246ee1c9a2bba149.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.104492;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;}
.ls48{letter-spacing:-7.440000px;}
.ls1e{letter-spacing:-5.760000px;}
.ls56{letter-spacing:-5.298000px;}
.ls42{letter-spacing:-1.632000px;}
.ls10{letter-spacing:-1.152000px;}
.ls11{letter-spacing:-0.864000px;}
.ls12{letter-spacing:-0.720000px;}
.ls1f{letter-spacing:-0.576000px;}
.lse{letter-spacing:-0.432000px;}
.ls49{letter-spacing:-0.306600px;}
.ls44{letter-spacing:-0.305400px;}
.ls4f{letter-spacing:-0.259800px;}
.ls39{letter-spacing:-0.223800px;}
.ls3f{letter-spacing:-0.189600px;}
.ls37{letter-spacing:-0.181200px;}
.lsf{letter-spacing:-0.144000px;}
.ls43{letter-spacing:-0.109200px;}
.ls8{letter-spacing:-0.106800px;}
.ls4b{letter-spacing:-0.100200px;}
.ls20{letter-spacing:-0.072000px;}
.ls7{letter-spacing:-0.053280px;}
.ls6{letter-spacing:-0.018720px;}
.ls5{letter-spacing:0.000000px;}
.ls41{letter-spacing:0.018720px;}
.ls59{letter-spacing:0.053280px;}
.ls57{letter-spacing:0.060600px;}
.ls1d{letter-spacing:0.072000px;}
.ls38{letter-spacing:0.090600px;}
.ls3{letter-spacing:0.108000px;}
.lsc{letter-spacing:0.144000px;}
.ls45{letter-spacing:0.208200px;}
.ls2{letter-spacing:0.216000px;}
.ls55{letter-spacing:0.259920px;}
.ls46{letter-spacing:0.262200px;}
.ls36{letter-spacing:0.269280px;}
.ls3b{letter-spacing:0.281280px;}
.ls9{letter-spacing:0.288000px;}
.ls47{letter-spacing:0.305400px;}
.ls5a{letter-spacing:0.306600px;}
.ls1c{letter-spacing:0.341280px;}
.ls58{letter-spacing:0.360000px;}
.ls4c{letter-spacing:0.413400px;}
.ls4d{letter-spacing:0.460200px;}
.ls4a{letter-spacing:0.612000px;}
.ls3d{letter-spacing:0.666720px;}
.ls40{letter-spacing:0.702000px;}
.ls0{letter-spacing:0.738720px;}
.ls4e{letter-spacing:0.774000px;}
.ls21{letter-spacing:0.864000px;}
.ls51{letter-spacing:0.894240px;}
.ls1{letter-spacing:0.979920px;}
.ls3c{letter-spacing:1.025280px;}
.ls3a{letter-spacing:1.421280px;}
.ls27{letter-spacing:1.584000px;}
.ls50{letter-spacing:2.106720px;}
.ls19{letter-spacing:2.280000px;}
.lsa{letter-spacing:2.304000px;}
.ls32{letter-spacing:3.149280px;}
.ls18{letter-spacing:3.744000px;}
.ls23{letter-spacing:4.464000px;}
.ls1a{letter-spacing:5.184000px;}
.ls15{letter-spacing:6.624000px;}
.ls4{letter-spacing:7.308000px;}
.ls24{letter-spacing:7.344000px;}
.ls52{letter-spacing:8.586720px;}
.ls3e{letter-spacing:10.746720px;}
.lsd{letter-spacing:10.944000px;}
.ls33{letter-spacing:11.069280px;}
.ls25{letter-spacing:12.384000px;}
.ls54{letter-spacing:13.626720px;}
.ls31{letter-spacing:13.949280px;}
.ls13{letter-spacing:15.384000px;}
.ls1b{letter-spacing:16.704000px;}
.ls22{letter-spacing:18.144000px;}
.ls17{letter-spacing:20.304000px;}
.ls2a{letter-spacing:20.609280px;}
.ls28{letter-spacing:22.464000px;}
.ls26{letter-spacing:23.184000px;}
.ls35{letter-spacing:24.588000px;}
.ls2d{letter-spacing:24.749280px;}
.ls14{letter-spacing:29.664000px;}
.ls53{letter-spacing:30.186720px;}
.ls2e{letter-spacing:30.509280px;}
.lsb{letter-spacing:31.104000px;}
.ls29{letter-spacing:31.229280px;}
.ls2b{letter-spacing:32.849280px;}
.ls16{letter-spacing:47.064000px;}
.ls2f{letter-spacing:49.409280px;}
.ls30{letter-spacing:52.289280px;}
.ls34{letter-spacing:56.549280px;}
.ls2c{letter-spacing:56.609280px;}
.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;}
}
.ws19{word-spacing:-27.323280px;}
.ws4{word-spacing:-27.000000px;}
.ws1f{word-spacing:-26.829480px;}
.ws1a{word-spacing:-26.640000px;}
.ws0{word-spacing:-26.621280px;}
.ws1{word-spacing:-26.602560px;}
.ws18{word-spacing:-26.431680px;}
.ws1b{word-spacing:-24.989280px;}
.wsa{word-spacing:-20.304000px;}
.ws10{word-spacing:-20.232000px;}
.ws8{word-spacing:-20.016000px;}
.ws12{word-spacing:-19.944000px;}
.wsc{word-spacing:-19.872000px;}
.wsb{word-spacing:-19.584000px;}
.ws13{word-spacing:-19.440000px;}
.wsf{word-spacing:-19.296000px;}
.wse{word-spacing:-19.152000px;}
.wsd{word-spacing:-18.864000px;}
.ws22{word-spacing:-18.720120px;}
.ws21{word-spacing:-18.676920px;}
.ws1e{word-spacing:-18.414720px;}
.ws1c{word-spacing:-18.305520px;}
.ws1d{word-spacing:-18.109320px;}
.ws29{word-spacing:-17.387280px;}
.ws25{word-spacing:-17.225280px;}
.ws28{word-spacing:-17.073480px;}
.ws27{word-spacing:-17.026680px;}
.ws2c{word-spacing:-16.973280px;}
.ws2e{word-spacing:-16.919880px;}
.ws2d{word-spacing:-16.666560px;}
.ws2{word-spacing:-16.613280px;}
.ws26{word-spacing:-16.513080px;}
.ws3{word-spacing:-16.506480px;}
.ws2a{word-spacing:-16.353480px;}
.ws24{word-spacing:-16.306680px;}
.ws7{word-spacing:-15.228000px;}
.ws6{word-spacing:-15.012000px;}
.ws20{word-spacing:-14.970240px;}
.ws11{word-spacing:-14.256000px;}
.ws16{word-spacing:-13.501320px;}
.ws14{word-spacing:-13.410720px;}
.ws15{word-spacing:-13.229520px;}
.ws17{word-spacing:-13.186920px;}
.ws2b{word-spacing:-11.315280px;}
.ws23{word-spacing:-9.173280px;}
.ws5{word-spacing:-1.601280px;}
.ws9{word-spacing:0.000000px;}
._6{margin-left:-8.748000px;}
._7{margin-left:-6.848880px;}
._5{margin-left:-4.936560px;}
._4{margin-left:-3.886800px;}
._3{margin-left:-2.400720px;}
._1{margin-left:-1.138320px;}
._0{width:1.792800px;}
._2{width:2.850000px;}
._b{width:4.566000px;}
._a{width:6.060000px;}
._e{width:7.068720px;}
._c{width:8.370000px;}
._9{width:9.990000px;}
._8{width:11.016000px;}
._15{width:12.415440px;}
._f{width:13.443840px;}
._16{width:15.384000px;}
._d{width:16.848000px;}
._10{width:18.148320px;}
._11{width:19.663680px;}
._1c{width:21.144000px;}
._1d{width:22.319040px;}
._1b{width:23.525040px;}
._14{width:24.690960px;}
._13{width:25.752000px;}
._20{width:27.232560px;}
._18{width:28.531200px;}
._17{width:29.640000px;}
._12{width:31.224000px;}
._21{width:32.892000px;}
._30{width:35.540640px;}
._26{width:37.844640px;}
._25{width:39.171360px;}
._24{width:40.558320px;}
._23{width:41.664000px;}
._45{width:43.427040px;}
._1e{width:44.928000px;}
._1a{width:46.656000px;}
._19{width:47.784000px;}
._22{width:49.560720px;}
._2f{width:53.004480px;}
._2b{width:55.543440px;}
._38{width:57.276720px;}
._3e{width:58.541040px;}
._48{width:60.467040px;}
._44{width:74.460960px;}
._40{width:76.447440px;}
._28{width:82.768320px;}
._3c{width:100.391760px;}
._27{width:102.256560px;}
._36{width:109.217520px;}
._37{width:119.420640px;}
._2d{width:128.087760px;}
._34{width:148.268880px;}
._31{width:150.306720px;}
._42{width:153.308400px;}
._3a{width:154.929840px;}
._32{width:169.971120px;}
._3b{width:175.695360px;}
._3d{width:192.186960px;}
._43{width:193.802880px;}
._29{width:197.427360px;}
._46{width:200.160720px;}
._47{width:201.514320px;}
._33{width:205.523280px;}
._39{width:212.079600px;}
._35{width:237.695040px;}
._2a{width:240.360960px;}
._2e{width:247.024800px;}
._41{width:248.436720px;}
._2c{width:272.537040px;}
._3f{width:322.331760px;}
._1f{width:844.140000px;}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(255,0,0);}
.fs4{font-size:5.760000px;}
.fs8{font-size:36.000000px;}
.fs7{font-size:38.880000px;}
.fsa{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs9{font-size:84.240000px;}
.fs0{font-size:95.760000px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y114{bottom:2.520000px;}
.yf{bottom:3.780000px;}
.y113{bottom:16.200000px;}
.y14f{bottom:16.380000px;}
.yb0{bottom:21.780000px;}
.y115{bottom:22.680000px;}
.y110{bottom:23.220000px;}
.y112{bottom:30.060000px;}
.y14e{bottom:30.240000px;}
.yb1{bottom:32.220000px;}
.yaf{bottom:42.480000px;}
.y111{bottom:43.920000px;}
.y14d{bottom:57.780000px;}
.y8{bottom:58.896000px;}
.y14c{bottom:71.685000px;}
.y14b{bottom:85.365000px;}
.y14a{bottom:99.225000px;}
.y149{bottom:113.085000px;}
.y148{bottom:126.765000px;}
.y36{bottom:130.356000px;}
.yc8{bottom:137.016000px;}
.y147{bottom:140.625000px;}
.ye5{bottom:144.396000px;}
.yfd{bottom:145.656000px;}
.y35{bottom:145.836000px;}
.y81{bottom:147.816000px;}
.y5b{bottom:147.996000px;}
.y146{bottom:154.485000px;}
.yc7{bottom:157.710000px;}
.y34{bottom:161.310000px;}
.y16c{bottom:164.550000px;}
.ye4{bottom:165.090000px;}
.yfc{bottom:166.350000px;}
.y145{bottom:168.165000px;}
.y80{bottom:168.510000px;}
.y5a{bottom:168.690000px;}
.y9c{bottom:169.590000px;}
.y33{bottom:176.970000px;}
.yc6{bottom:178.410000px;}
.y18e{bottom:178.950000px;}
.y32{bottom:181.470000px;}
.y16b{bottom:181.830000px;}
.y144{bottom:182.025000px;}
.yfb{bottom:187.050000px;}
.y7f{bottom:189.210000px;}
.y9b{bottom:190.290000px;}
.y31{bottom:192.450000px;}
.y143{bottom:195.885000px;}
.y18d{bottom:196.230000px;}
.yad{bottom:198.030000px;}
.yc5{bottom:199.110000px;}
.y59{bottom:201.450000px;}
.ye3{bottom:203.790000px;}
.y30{bottom:207.930000px;}
.y142{bottom:209.565000px;}
.y7e{bottom:209.910000px;}
.y9a{bottom:210.990000px;}
.y18c{bottom:213.510000px;}
.y16a{bottom:216.210000px;}
.y58{bottom:222.150000px;}
.y2f{bottom:223.410000px;}
.y141{bottom:223.425000px;}
.yfa{bottom:225.750000px;}
.y116{bottom:227.550000px;}
.y7d{bottom:230.610000px;}
.yac{bottom:230.790000px;}
.y140{bottom:237.285000px;}
.yc4{bottom:237.810000px;}
.y2e{bottom:239.070000px;}
.y57{bottom:242.850000px;}
.ye2{bottom:243.390000px;}
.y2d{bottom:243.570000px;}
.y99{bottom:243.750000px;}
.yf9{bottom:246.450000px;}
.y13f{bottom:250.965000px;}
.y7c{bottom:251.310000px;}
.yab{bottom:251.490000px;}
.y2c{bottom:254.910000px;}
.yc3{bottom:258.510000px;}
.y2b{bottom:259.410000px;}
.y56{bottom:263.550000px;}
.y98{bottom:264.450000px;}
.y13e{bottom:264.825000px;}
.y18b{bottom:265.890000px;}
.ye1{bottom:266.790000px;}
.yf8{bottom:267.150000px;}
.y169{bottom:268.770000px;}
.y7b{bottom:272.010000px;}
.yaa{bottom:272.190000px;}
.y2a{bottom:273.450000px;}
.y13d{bottom:278.685000px;}
.yc2{bottom:279.210000px;}
.y18a{bottom:283.170000px;}
.y97{bottom:285.150000px;}
.y168{bottom:286.050000px;}
.ye0{bottom:287.490000px;}
.yf7{bottom:287.850000px;}
.y13c{bottom:292.365000px;}
.ya9{bottom:292.935000px;}
.y55{bottom:296.175000px;}
.yc1{bottom:299.955000px;}
.y189{bottom:300.495000px;}
.y167{bottom:303.375000px;}
.y7a{bottom:304.815000px;}
.y13b{bottom:306.225000px;}
.ydf{bottom:308.235000px;}
.yf6{bottom:308.595000px;}
.ya8{bottom:313.635000px;}
.y29{bottom:316.155000px;}
.y54{bottom:316.875000px;}
.y96{bottom:317.775000px;}
.y150{bottom:318.645000px;}
.y131{bottom:320.085000px;}
.yc0{bottom:320.655000px;}
.y79{bottom:325.515000px;}
.yf5{bottom:329.295000px;}
.y28{bottom:332.535000px;}
.y130{bottom:333.795000px;}
.ya7{bottom:334.335000px;}
.y53{bottom:337.575000px;}
.y95{bottom:338.475000px;}
.y78{bottom:346.215000px;}
.yde{bottom:346.935000px;}
.y12f{bottom:347.655000px;}
.yf4{bottom:349.995000px;}
.y188{bottom:352.875000px;}
.y27{bottom:353.235000px;}
.y166{bottom:355.755000px;}
.y10e{bottom:358.095000px;}
.y52{bottom:358.275000px;}
.y94{bottom:359.175000px;}
.ybf{bottom:359.355000px;}
.y12e{bottom:361.515000px;}
.y77{bottom:366.915000px;}
.ya6{bottom:367.095000px;}
.ydd{bottom:367.635000px;}
.y187{bottom:370.155000px;}
.yf3{bottom:370.695000px;}
.y165{bottom:373.035000px;}
.y26{bottom:373.935000px;}
.y12d{bottom:375.195000px;}
.y10d{bottom:378.795000px;}
.y51{bottom:378.975000px;}
.ybe{bottom:380.055000px;}
.y186{bottom:387.435000px;}
.y76{bottom:387.615000px;}
.ya5{bottom:387.795000px;}
.ydc{bottom:388.155000px;}
.y12c{bottom:389.055000px;}
.yf2{bottom:391.395000px;}
.y93{bottom:391.935000px;}
.y25{bottom:394.635000px;}
.y10c{bottom:399.495000px;}
.y50{bottom:399.675000px;}
.ybd{bottom:400.755000px;}
.y12b{bottom:402.915000px;}
.y75{bottom:408.315000px;}
.ya4{bottom:408.495000px;}
.ydb{bottom:408.855000px;}
.y164{bottom:410.115000px;}
.y92{bottom:412.635000px;}
.y24{bottom:414.435000px;}
.y12a{bottom:416.595000px;}
.ybc{bottom:421.455000px;}
.y185{bottom:422.715000px;}
.y74{bottom:429.015000px;}
.ya3{bottom:429.195000px;}
.yda{bottom:429.555000px;}
.y23{bottom:429.915000px;}
.yf1{bottom:430.095000px;}
.y129{bottom:430.455000px;}
.y4f{bottom:432.435000px;}
.y91{bottom:433.335000px;}
.y10b{bottom:438.195000px;}
.y184{bottom:439.995000px;}
.ybb{bottom:442.155000px;}
.y128{bottom:444.315000px;}
.y22{bottom:445.395000px;}
.y73{bottom:449.715000px;}
.ya2{bottom:449.895000px;}
.yf0{bottom:450.795000px;}
.y4e{bottom:453.135000px;}
.y90{bottom:454.035000px;}
.y163{bottom:455.475000px;}
.y127{bottom:457.995000px;}
.y10a{bottom:458.895000px;}
.y21{bottom:460.875000px;}
.yba{bottom:462.855000px;}
.yd9{bottom:468.255000px;}
.y72{bottom:470.415000px;}
.ya1{bottom:470.595000px;}
.yef{bottom:471.495000px;}
.y126{bottom:471.855000px;}
.y4d{bottom:473.835000px;}
.y8f{bottom:474.735000px;}
.y183{bottom:475.275000px;}
.y20{bottom:476.535000px;}
.y162{bottom:477.255000px;}
.y109{bottom:479.595000px;}
.y13a{bottom:482.655000px;}
.yb9{bottom:483.555000px;}
.y125{bottom:485.715000px;}
.yd8{bottom:488.955000px;}
.y1f{bottom:492.015000px;}
.yee{bottom:492.195000px;}
.y182{bottom:492.555000px;}
.y4c{bottom:494.535000px;}
.y124{bottom:499.395000px;}
.y71{bottom:502.995000px;}
.y139{bottom:505.335000px;}
.y1e{bottom:507.495000px;}
.yd7{bottom:509.655000px;}
.ya0{bottom:510.555000px;}
.yed{bottom:512.895000px;}
.y123{bottom:513.255000px;}
.y4b{bottom:515.235000px;}
.y161{bottom:518.115000px;}
.y108{bottom:518.295000px;}
.y1d{bottom:522.975000px;}
.yb8{bottom:523.515000px;}
.y70{bottom:523.695000px;}
.y122{bottom:527.115000px;}
.y8e{bottom:528.195000px;}
.yd6{bottom:530.355000px;}
.yec{bottom:533.595000px;}
.y4a{bottom:535.935000px;}
.y1c{bottom:538.635000px;}
.y107{bottom:538.995000px;}
.y121{bottom:540.795000px;}
.y6f{bottom:544.395000px;}
.y181{bottom:544.935000px;}
.y8d{bottom:548.895000px;}
.y138{bottom:550.875000px;}
.y1b{bottom:554.145000px;}
.yeb{bottom:554.325000px;}
.y120{bottom:554.655000px;}
.y49{bottom:556.665000px;}
.y180{bottom:562.245000px;}
.y160{bottom:563.505000px;}
.y6e{bottom:565.125000px;}
.y11f{bottom:568.335000px;}
.yd5{bottom:569.085000px;}
.y1a{bottom:569.625000px;}
.yb7{bottom:570.525000px;}
.y137{bottom:573.735000px;}
.yea{bottom:575.025000px;}
.y48{bottom:577.365000px;}
.y106{bottom:577.725000px;}
.y17f{bottom:579.525000px;}
.y11e{bottom:582.240000px;}
.y19{bottom:585.105000px;}
.y6d{bottom:585.825000px;}
.yb6{bottom:588.165000px;}
.yd4{bottom:589.785000px;}
.y8c{bottom:590.325000px;}
.y11d{bottom:596.100000px;}
.y136{bottom:596.640000px;}
.y17e{bottom:596.805000px;}
.y105{bottom:598.425000px;}
.y18{bottom:600.765000px;}
.y15f{bottom:604.545000px;}
.y6c{bottom:606.525000px;}
.y11c{bottom:609.780000px;}
.y47{bottom:610.125000px;}
.yd3{bottom:610.485000px;}
.y135{bottom:610.500000px;}
.y8b{bottom:611.025000px;}
.ye9{bottom:613.725000px;}
.y17{bottom:616.245000px;}
.y104{bottom:619.125000px;}
.y11b{bottom:623.640000px;}
.y46{bottom:630.825000px;}
.yd2{bottom:631.185000px;}
.y16{bottom:631.725000px;}
.y17d{bottom:631.905000px;}
.y134{bottom:633.180000px;}
.y11a{bottom:637.500000px;}
.yb5{bottom:645.765000px;}
.y6b{bottom:646.125000px;}
.y15{bottom:647.205000px;}
.y15e{bottom:648.825000px;}
.y17c{bottom:649.185000px;}
.y119{bottom:651.180000px;}
.y45{bottom:651.525000px;}
.yd1{bottom:651.885000px;}
.y8a{bottom:652.425000px;}
.y133{bottom:656.040000px;}
.y103{bottom:657.825000px;}
.y14{bottom:662.865000px;}
.y118{bottom:665.040000px;}
.y17b{bottom:666.465000px;}
.y6a{bottom:669.525000px;}
.y44{bottom:672.225000px;}
.yd0{bottom:672.585000px;}
.y89{bottom:673.125000px;}
.y13{bottom:678.345000px;}
.y132{bottom:678.720000px;}
.y117{bottom:678.900000px;}
.y17a{bottom:683.745000px;}
.y15d{bottom:690.225000px;}
.y69{bottom:691.485000px;}
.y43{bottom:692.925000px;}
.ycf{bottom:693.285000px;}
.y12{bottom:693.825000px;}
.y102{bottom:696.345000px;}
.yb4{bottom:703.185000px;}
.y88{bottom:705.705000px;}
.y11{bottom:709.305000px;}
.y15c{bottom:710.925000px;}
.y42{bottom:713.625000px;}
.ye8{bottom:714.525000px;}
.y101{bottom:717.045000px;}
.y68{bottom:717.765000px;}
.y179{bottom:719.025000px;}
.y10{bottom:724.965000px;}
.y87{bottom:726.405000px;}
.yce{bottom:729.465000px;}
.y15b{bottom:731.625000px;}
.y41{bottom:734.145000px;}
.ye7{bottom:735.045000px;}
.y178{bottom:737.025000px;}
.ye{bottom:737.565000px;}
.y100{bottom:737.745000px;}
.y67{bottom:738.465000px;}
.y86{bottom:747.105000px;}
.y15a{bottom:752.145000px;}
.y177{bottom:754.485000px;}
.y40{bottom:754.845000px;}
.yd{bottom:758.265000px;}
.y66{bottom:759.165000px;}
.yb3{bottom:760.605000px;}
.y85{bottom:767.805000px;}
.y176{bottom:771.765000px;}
.y159{bottom:772.845000px;}
.ycd{bottom:773.745000px;}
.y3f{bottom:775.545000px;}
.yff{bottom:776.445000px;}
.y65{bottom:779.865000px;}
.y84{bottom:788.505000px;}
.y158{bottom:793.545000px;}
.ycc{bottom:794.445000px;}
.y64{bottom:800.565000px;}
.y175{bottom:807.045000px;}
.y3e{bottom:808.350000px;}
.y9f{bottom:809.250000px;}
.y157{bottom:814.290000px;}
.ycb{bottom:815.190000px;}
.yb2{bottom:818.070000px;}
.y63{bottom:821.310000px;}
.y174{bottom:824.370000px;}
.y3d{bottom:829.050000px;}
.y9e{bottom:829.950000px;}
.y156{bottom:834.990000px;}
.yca{bottom:835.890000px;}
.y190{bottom:838.590000px;}
.y173{bottom:841.650000px;}
.y62{bottom:842.010000px;}
.y3c{bottom:849.750000px;}
.y155{bottom:855.690000px;}
.yc9{bottom:856.590000px;}
.y61{bottom:862.710000px;}
.yc{bottom:864.870000px;}
.y3b{bottom:870.450000px;}
.yae{bottom:875.490000px;}
.y154{bottom:876.390000px;}
.y172{bottom:876.750000px;}
.ye6{bottom:877.290000px;}
.y83{bottom:883.410000px;}
.y3a{bottom:891.150000px;}
.yb{bottom:892.410000px;}
.y171{bottom:894.030000px;}
.y60{bottom:895.290000px;}
.y153{bottom:897.090000px;}
.yfe{bottom:897.990000px;}
.y82{bottom:904.110000px;}
.y170{bottom:911.310000px;}
.y39{bottom:911.850000px;}
.y5f{bottom:915.990000px;}
.y152{bottom:917.790000px;}
.y10f{bottom:918.510000px;}
.y9d{bottom:924.810000px;}
.y18f{bottom:928.590000px;}
.y38{bottom:932.550000px;}
.y5e{bottom:936.690000px;}
.y151{bottom:938.490000px;}
.ya{bottom:938.850000px;}
.y16f{bottom:946.590000px;}
.y5d{bottom:957.390000px;}
.y16e{bottom:963.870000px;}
.y9{bottom:969.810000px;}
.y37{bottom:972.510000px;}
.y5c{bottom:978.090000px;}
.y16d{bottom:981.150000px;}
.y7{bottom:1006.890000px;}
.y6{bottom:1024.170000px;}
.y5{bottom:1041.450000px;}
.y4{bottom:1058.730000px;}
.y3{bottom:1076.040000px;}
.y2{bottom:1093.140000px;}
.y1{bottom:1112.400000px;}
.h7{height:5.211563px;}
.h9{height:20.700000px;}
.h11{height:32.273438px;}
.h10{height:34.855313px;}
.h1a{height:43.246406px;}
.h18{height:43.646836px;}
.hc{height:48.410156px;}
.hb{height:48.858398px;}
.h3{height:53.573906px;}
.h2{height:54.069961px;}
.h17{height:55.080000px;}
.h15{height:56.700000px;}
.h16{height:56.736000px;}
.h1b{height:59.383125px;}
.h12{height:59.439023px;}
.hd{height:64.546875px;}
.he{height:65.144531px;}
.hf{height:65.884219px;}
.h1{height:69.715898px;}
.h5{height:74.408203px;}
.h4{height:74.988281px;}
.h13{height:76.219102px;}
.h14{height:77.400000px;}
.ha{height:85.847344px;}
.h6{height:86.642227px;}
.h8{height:101.556000px;}
.h19{height:690.045000px;}
.h0{height:1188.000000px;}
.w7{width:117.036000px;}
.w8{width:149.976000px;}
.wa{width:165.270000px;}
.wb{width:170.310000px;}
.w9{width:183.810000px;}
.w5{width:188.850000px;}
.w6{width:212.610000px;}
.w4{width:330.915000px;}
.w3{width:331.995000px;}
.w2{width:917.999973px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x21{left:8.100000px;}
.x16{left:12.465000px;}
.x22{left:14.400000px;}
.x1d{left:17.820000px;}
.x29{left:21.060000px;}
.x19{left:23.445000px;}
.x1a{left:24.840000px;}
.x1c{left:28.485000px;}
.x11{left:29.700000px;}
.x14{left:33.120000px;}
.x1b{left:36.180000px;}
.x27{left:39.240000px;}
.x26{left:40.320000px;}
.x12{left:43.920000px;}
.x17{left:45.360000px;}
.x1f{left:51.330000px;}
.x20{left:53.280000px;}
.x18{left:54.750000px;}
.x24{left:61.200000px;}
.x1e{left:71.670000px;}
.xb{left:102.054000px;}
.xc{left:103.500000px;}
.x1{left:127.655986px;}
.xf{left:132.875986px;}
.x5{left:154.829986px;}
.x2a{left:170.129986px;}
.x10{left:199.830000px;}
.xa{left:207.405000px;}
.x3{left:211.349986px;}
.x8{left:215.679000px;}
.x23{left:277.635000px;}
.x4{left:293.114986px;}
.x6{left:302.294986px;}
.xe{left:343.694986px;}
.x13{left:388.695000px;}
.xd{left:418.394986px;}
.x2{left:428.294986px;}
.x9{left:459.645000px;}
.x25{left:461.445000px;}
.x15{left:601.305000px;}
.x7{left:615.209973px;}
.x28{left:626.730000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls48{letter-spacing:-6.613333pt;}
.ls1e{letter-spacing:-5.120000pt;}
.ls56{letter-spacing:-4.709333pt;}
.ls42{letter-spacing:-1.450667pt;}
.ls10{letter-spacing:-1.024000pt;}
.ls11{letter-spacing:-0.768000pt;}
.ls12{letter-spacing:-0.640000pt;}
.ls1f{letter-spacing:-0.512000pt;}
.lse{letter-spacing:-0.384000pt;}
.ls49{letter-spacing:-0.272533pt;}
.ls44{letter-spacing:-0.271467pt;}
.ls4f{letter-spacing:-0.230933pt;}
.ls39{letter-spacing:-0.198933pt;}
.ls3f{letter-spacing:-0.168533pt;}
.ls37{letter-spacing:-0.161067pt;}
.lsf{letter-spacing:-0.128000pt;}
.ls43{letter-spacing:-0.097067pt;}
.ls8{letter-spacing:-0.094933pt;}
.ls4b{letter-spacing:-0.089067pt;}
.ls20{letter-spacing:-0.064000pt;}
.ls7{letter-spacing:-0.047360pt;}
.ls6{letter-spacing:-0.016640pt;}
.ls5{letter-spacing:0.000000pt;}
.ls41{letter-spacing:0.016640pt;}
.ls59{letter-spacing:0.047360pt;}
.ls57{letter-spacing:0.053867pt;}
.ls1d{letter-spacing:0.064000pt;}
.ls38{letter-spacing:0.080533pt;}
.ls3{letter-spacing:0.096000pt;}
.lsc{letter-spacing:0.128000pt;}
.ls45{letter-spacing:0.185067pt;}
.ls2{letter-spacing:0.192000pt;}
.ls55{letter-spacing:0.231040pt;}
.ls46{letter-spacing:0.233067pt;}
.ls36{letter-spacing:0.239360pt;}
.ls3b{letter-spacing:0.250027pt;}
.ls9{letter-spacing:0.256000pt;}
.ls47{letter-spacing:0.271467pt;}
.ls5a{letter-spacing:0.272533pt;}
.ls1c{letter-spacing:0.303360pt;}
.ls58{letter-spacing:0.320000pt;}
.ls4c{letter-spacing:0.367467pt;}
.ls4d{letter-spacing:0.409067pt;}
.ls4a{letter-spacing:0.544000pt;}
.ls3d{letter-spacing:0.592640pt;}
.ls40{letter-spacing:0.624000pt;}
.ls0{letter-spacing:0.656640pt;}
.ls4e{letter-spacing:0.688000pt;}
.ls21{letter-spacing:0.768000pt;}
.ls51{letter-spacing:0.794880pt;}
.ls1{letter-spacing:0.871040pt;}
.ls3c{letter-spacing:0.911360pt;}
.ls3a{letter-spacing:1.263360pt;}
.ls27{letter-spacing:1.408000pt;}
.ls50{letter-spacing:1.872640pt;}
.ls19{letter-spacing:2.026667pt;}
.lsa{letter-spacing:2.048000pt;}
.ls32{letter-spacing:2.799360pt;}
.ls18{letter-spacing:3.328000pt;}
.ls23{letter-spacing:3.968000pt;}
.ls1a{letter-spacing:4.608000pt;}
.ls15{letter-spacing:5.888000pt;}
.ls4{letter-spacing:6.496000pt;}
.ls24{letter-spacing:6.528000pt;}
.ls52{letter-spacing:7.632640pt;}
.ls3e{letter-spacing:9.552640pt;}
.lsd{letter-spacing:9.728000pt;}
.ls33{letter-spacing:9.839360pt;}
.ls25{letter-spacing:11.008000pt;}
.ls54{letter-spacing:12.112640pt;}
.ls31{letter-spacing:12.399360pt;}
.ls13{letter-spacing:13.674667pt;}
.ls1b{letter-spacing:14.848000pt;}
.ls22{letter-spacing:16.128000pt;}
.ls17{letter-spacing:18.048000pt;}
.ls2a{letter-spacing:18.319360pt;}
.ls28{letter-spacing:19.968000pt;}
.ls26{letter-spacing:20.608000pt;}
.ls35{letter-spacing:21.856000pt;}
.ls2d{letter-spacing:21.999360pt;}
.ls14{letter-spacing:26.368000pt;}
.ls53{letter-spacing:26.832640pt;}
.ls2e{letter-spacing:27.119360pt;}
.lsb{letter-spacing:27.648000pt;}
.ls29{letter-spacing:27.759360pt;}
.ls2b{letter-spacing:29.199360pt;}
.ls16{letter-spacing:41.834667pt;}
.ls2f{letter-spacing:43.919360pt;}
.ls30{letter-spacing:46.479360pt;}
.ls34{letter-spacing:50.266027pt;}
.ls2c{letter-spacing:50.319360pt;}
.ws19{word-spacing:-24.287360pt;}
.ws4{word-spacing:-24.000000pt;}
.ws1f{word-spacing:-23.848427pt;}
.ws1a{word-spacing:-23.680000pt;}
.ws0{word-spacing:-23.663360pt;}
.ws1{word-spacing:-23.646720pt;}
.ws18{word-spacing:-23.494827pt;}
.ws1b{word-spacing:-22.212693pt;}
.wsa{word-spacing:-18.048000pt;}
.ws10{word-spacing:-17.984000pt;}
.ws8{word-spacing:-17.792000pt;}
.ws12{word-spacing:-17.728000pt;}
.wsc{word-spacing:-17.664000pt;}
.wsb{word-spacing:-17.408000pt;}
.ws13{word-spacing:-17.280000pt;}
.wsf{word-spacing:-17.152000pt;}
.wse{word-spacing:-17.024000pt;}
.wsd{word-spacing:-16.768000pt;}
.ws22{word-spacing:-16.640107pt;}
.ws21{word-spacing:-16.601707pt;}
.ws1e{word-spacing:-16.368640pt;}
.ws1c{word-spacing:-16.271573pt;}
.ws1d{word-spacing:-16.097173pt;}
.ws29{word-spacing:-15.455360pt;}
.ws25{word-spacing:-15.311360pt;}
.ws28{word-spacing:-15.176427pt;}
.ws27{word-spacing:-15.134827pt;}
.ws2c{word-spacing:-15.087360pt;}
.ws2e{word-spacing:-15.039893pt;}
.ws2d{word-spacing:-14.814720pt;}
.ws2{word-spacing:-14.767360pt;}
.ws26{word-spacing:-14.678293pt;}
.ws3{word-spacing:-14.672427pt;}
.ws2a{word-spacing:-14.536427pt;}
.ws24{word-spacing:-14.494827pt;}
.ws7{word-spacing:-13.536000pt;}
.ws6{word-spacing:-13.344000pt;}
.ws20{word-spacing:-13.306880pt;}
.ws11{word-spacing:-12.672000pt;}
.ws16{word-spacing:-12.001173pt;}
.ws14{word-spacing:-11.920640pt;}
.ws15{word-spacing:-11.759573pt;}
.ws17{word-spacing:-11.721707pt;}
.ws2b{word-spacing:-10.058027pt;}
.ws23{word-spacing:-8.154027pt;}
.ws5{word-spacing:-1.423360pt;}
.ws9{word-spacing:0.000000pt;}
._6{margin-left:-7.776000pt;}
._7{margin-left:-6.087893pt;}
._5{margin-left:-4.388053pt;}
._4{margin-left:-3.454933pt;}
._3{margin-left:-2.133973pt;}
._1{margin-left:-1.011840pt;}
._0{width:1.593600pt;}
._2{width:2.533333pt;}
._b{width:4.058667pt;}
._a{width:5.386667pt;}
._e{width:6.283307pt;}
._c{width:7.440000pt;}
._9{width:8.880000pt;}
._8{width:9.792000pt;}
._15{width:11.035947pt;}
._f{width:11.950080pt;}
._16{width:13.674667pt;}
._d{width:14.976000pt;}
._10{width:16.131840pt;}
._11{width:17.478827pt;}
._1c{width:18.794667pt;}
._1d{width:19.839147pt;}
._1b{width:20.911147pt;}
._14{width:21.947520pt;}
._13{width:22.890667pt;}
._20{width:24.206720pt;}
._18{width:25.361067pt;}
._17{width:26.346667pt;}
._12{width:27.754667pt;}
._21{width:29.237333pt;}
._30{width:31.591680pt;}
._26{width:33.639680pt;}
._25{width:34.818987pt;}
._24{width:36.051840pt;}
._23{width:37.034667pt;}
._45{width:38.601813pt;}
._1e{width:39.936000pt;}
._1a{width:41.472000pt;}
._19{width:42.474667pt;}
._22{width:44.053973pt;}
._2f{width:47.115093pt;}
._2b{width:49.371947pt;}
._38{width:50.912640pt;}
._3e{width:52.036480pt;}
._48{width:53.748480pt;}
._44{width:66.187520pt;}
._40{width:67.953280pt;}
._28{width:73.571840pt;}
._3c{width:89.237120pt;}
._27{width:90.894720pt;}
._36{width:97.082240pt;}
._37{width:106.151680pt;}
._2d{width:113.855787pt;}
._34{width:131.794560pt;}
._31{width:133.605973pt;}
._42{width:136.274133pt;}
._3a{width:137.715413pt;}
._32{width:151.085440pt;}
._3b{width:156.173653pt;}
._3d{width:170.832853pt;}
._43{width:172.269227pt;}
._29{width:175.490987pt;}
._46{width:177.920640pt;}
._47{width:179.123840pt;}
._33{width:182.687360pt;}
._39{width:188.515200pt;}
._35{width:211.284480pt;}
._2a{width:213.654187pt;}
._2e{width:219.577600pt;}
._41{width:220.832640pt;}
._2c{width:242.255147pt;}
._3f{width:286.517120pt;}
._1f{width:750.346667pt;}
.fs4{font-size:5.120000pt;}
.fs8{font-size:32.000000pt;}
.fs7{font-size:34.560000pt;}
.fsa{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs9{font-size:74.880000pt;}
.fs0{font-size:85.120000pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y114{bottom:2.240000pt;}
.yf{bottom:3.360000pt;}
.y113{bottom:14.400000pt;}
.y14f{bottom:14.560000pt;}
.yb0{bottom:19.360000pt;}
.y115{bottom:20.160000pt;}
.y110{bottom:20.640000pt;}
.y112{bottom:26.720000pt;}
.y14e{bottom:26.880000pt;}
.yb1{bottom:28.640000pt;}
.yaf{bottom:37.760000pt;}
.y111{bottom:39.040000pt;}
.y14d{bottom:51.360000pt;}
.y8{bottom:52.352000pt;}
.y14c{bottom:63.720000pt;}
.y14b{bottom:75.880000pt;}
.y14a{bottom:88.200000pt;}
.y149{bottom:100.520000pt;}
.y148{bottom:112.680000pt;}
.y36{bottom:115.872000pt;}
.yc8{bottom:121.792000pt;}
.y147{bottom:125.000000pt;}
.ye5{bottom:128.352000pt;}
.yfd{bottom:129.472000pt;}
.y35{bottom:129.632000pt;}
.y81{bottom:131.392000pt;}
.y5b{bottom:131.552000pt;}
.y146{bottom:137.320000pt;}
.yc7{bottom:140.186667pt;}
.y34{bottom:143.386667pt;}
.y16c{bottom:146.266667pt;}
.ye4{bottom:146.746667pt;}
.yfc{bottom:147.866667pt;}
.y145{bottom:149.480000pt;}
.y80{bottom:149.786667pt;}
.y5a{bottom:149.946667pt;}
.y9c{bottom:150.746667pt;}
.y33{bottom:157.306667pt;}
.yc6{bottom:158.586667pt;}
.y18e{bottom:159.066667pt;}
.y32{bottom:161.306667pt;}
.y16b{bottom:161.626667pt;}
.y144{bottom:161.800000pt;}
.yfb{bottom:166.266667pt;}
.y7f{bottom:168.186667pt;}
.y9b{bottom:169.146667pt;}
.y31{bottom:171.066667pt;}
.y143{bottom:174.120000pt;}
.y18d{bottom:174.426667pt;}
.yad{bottom:176.026667pt;}
.yc5{bottom:176.986667pt;}
.y59{bottom:179.066667pt;}
.ye3{bottom:181.146667pt;}
.y30{bottom:184.826667pt;}
.y142{bottom:186.280000pt;}
.y7e{bottom:186.586667pt;}
.y9a{bottom:187.546667pt;}
.y18c{bottom:189.786667pt;}
.y16a{bottom:192.186667pt;}
.y58{bottom:197.466667pt;}
.y2f{bottom:198.586667pt;}
.y141{bottom:198.600000pt;}
.yfa{bottom:200.666667pt;}
.y116{bottom:202.266667pt;}
.y7d{bottom:204.986667pt;}
.yac{bottom:205.146667pt;}
.y140{bottom:210.920000pt;}
.yc4{bottom:211.386667pt;}
.y2e{bottom:212.506667pt;}
.y57{bottom:215.866667pt;}
.ye2{bottom:216.346667pt;}
.y2d{bottom:216.506667pt;}
.y99{bottom:216.666667pt;}
.yf9{bottom:219.066667pt;}
.y13f{bottom:223.080000pt;}
.y7c{bottom:223.386667pt;}
.yab{bottom:223.546667pt;}
.y2c{bottom:226.586667pt;}
.yc3{bottom:229.786667pt;}
.y2b{bottom:230.586667pt;}
.y56{bottom:234.266667pt;}
.y98{bottom:235.066667pt;}
.y13e{bottom:235.400000pt;}
.y18b{bottom:236.346667pt;}
.ye1{bottom:237.146667pt;}
.yf8{bottom:237.466667pt;}
.y169{bottom:238.906667pt;}
.y7b{bottom:241.786667pt;}
.yaa{bottom:241.946667pt;}
.y2a{bottom:243.066667pt;}
.y13d{bottom:247.720000pt;}
.yc2{bottom:248.186667pt;}
.y18a{bottom:251.706667pt;}
.y97{bottom:253.466667pt;}
.y168{bottom:254.266667pt;}
.ye0{bottom:255.546667pt;}
.yf7{bottom:255.866667pt;}
.y13c{bottom:259.880000pt;}
.ya9{bottom:260.386667pt;}
.y55{bottom:263.266667pt;}
.yc1{bottom:266.626667pt;}
.y189{bottom:267.106667pt;}
.y167{bottom:269.666667pt;}
.y7a{bottom:270.946667pt;}
.y13b{bottom:272.200000pt;}
.ydf{bottom:273.986667pt;}
.yf6{bottom:274.306667pt;}
.ya8{bottom:278.786667pt;}
.y29{bottom:281.026667pt;}
.y54{bottom:281.666667pt;}
.y96{bottom:282.466667pt;}
.y150{bottom:283.240000pt;}
.y131{bottom:284.520000pt;}
.yc0{bottom:285.026667pt;}
.y79{bottom:289.346667pt;}
.yf5{bottom:292.706667pt;}
.y28{bottom:295.586667pt;}
.y130{bottom:296.706667pt;}
.ya7{bottom:297.186667pt;}
.y53{bottom:300.066667pt;}
.y95{bottom:300.866667pt;}
.y78{bottom:307.746667pt;}
.yde{bottom:308.386667pt;}
.y12f{bottom:309.026667pt;}
.yf4{bottom:311.106667pt;}
.y188{bottom:313.666667pt;}
.y27{bottom:313.986667pt;}
.y166{bottom:316.226667pt;}
.y10e{bottom:318.306667pt;}
.y52{bottom:318.466667pt;}
.y94{bottom:319.266667pt;}
.ybf{bottom:319.426667pt;}
.y12e{bottom:321.346667pt;}
.y77{bottom:326.146667pt;}
.ya6{bottom:326.306667pt;}
.ydd{bottom:326.786667pt;}
.y187{bottom:329.026667pt;}
.yf3{bottom:329.506667pt;}
.y165{bottom:331.586667pt;}
.y26{bottom:332.386667pt;}
.y12d{bottom:333.506667pt;}
.y10d{bottom:336.706667pt;}
.y51{bottom:336.866667pt;}
.ybe{bottom:337.826667pt;}
.y186{bottom:344.386667pt;}
.y76{bottom:344.546667pt;}
.ya5{bottom:344.706667pt;}
.ydc{bottom:345.026667pt;}
.y12c{bottom:345.826667pt;}
.yf2{bottom:347.906667pt;}
.y93{bottom:348.386667pt;}
.y25{bottom:350.786667pt;}
.y10c{bottom:355.106667pt;}
.y50{bottom:355.266667pt;}
.ybd{bottom:356.226667pt;}
.y12b{bottom:358.146667pt;}
.y75{bottom:362.946667pt;}
.ya4{bottom:363.106667pt;}
.ydb{bottom:363.426667pt;}
.y164{bottom:364.546667pt;}
.y92{bottom:366.786667pt;}
.y24{bottom:368.386667pt;}
.y12a{bottom:370.306667pt;}
.ybc{bottom:374.626667pt;}
.y185{bottom:375.746667pt;}
.y74{bottom:381.346667pt;}
.ya3{bottom:381.506667pt;}
.yda{bottom:381.826667pt;}
.y23{bottom:382.146667pt;}
.yf1{bottom:382.306667pt;}
.y129{bottom:382.626667pt;}
.y4f{bottom:384.386667pt;}
.y91{bottom:385.186667pt;}
.y10b{bottom:389.506667pt;}
.y184{bottom:391.106667pt;}
.ybb{bottom:393.026667pt;}
.y128{bottom:394.946667pt;}
.y22{bottom:395.906667pt;}
.y73{bottom:399.746667pt;}
.ya2{bottom:399.906667pt;}
.yf0{bottom:400.706667pt;}
.y4e{bottom:402.786667pt;}
.y90{bottom:403.586667pt;}
.y163{bottom:404.866667pt;}
.y127{bottom:407.106667pt;}
.y10a{bottom:407.906667pt;}
.y21{bottom:409.666667pt;}
.yba{bottom:411.426667pt;}
.yd9{bottom:416.226667pt;}
.y72{bottom:418.146667pt;}
.ya1{bottom:418.306667pt;}
.yef{bottom:419.106667pt;}
.y126{bottom:419.426667pt;}
.y4d{bottom:421.186667pt;}
.y8f{bottom:421.986667pt;}
.y183{bottom:422.466667pt;}
.y20{bottom:423.586667pt;}
.y162{bottom:424.226667pt;}
.y109{bottom:426.306667pt;}
.y13a{bottom:429.026667pt;}
.yb9{bottom:429.826667pt;}
.y125{bottom:431.746667pt;}
.yd8{bottom:434.626667pt;}
.y1f{bottom:437.346667pt;}
.yee{bottom:437.506667pt;}
.y182{bottom:437.826667pt;}
.y4c{bottom:439.586667pt;}
.y124{bottom:443.906667pt;}
.y71{bottom:447.106667pt;}
.y139{bottom:449.186667pt;}
.y1e{bottom:451.106667pt;}
.yd7{bottom:453.026667pt;}
.ya0{bottom:453.826667pt;}
.yed{bottom:455.906667pt;}
.y123{bottom:456.226667pt;}
.y4b{bottom:457.986667pt;}
.y161{bottom:460.546667pt;}
.y108{bottom:460.706667pt;}
.y1d{bottom:464.866667pt;}
.yb8{bottom:465.346667pt;}
.y70{bottom:465.506667pt;}
.y122{bottom:468.546667pt;}
.y8e{bottom:469.506667pt;}
.yd6{bottom:471.426667pt;}
.yec{bottom:474.306667pt;}
.y4a{bottom:476.386667pt;}
.y1c{bottom:478.786667pt;}
.y107{bottom:479.106667pt;}
.y121{bottom:480.706667pt;}
.y6f{bottom:483.906667pt;}
.y181{bottom:484.386667pt;}
.y8d{bottom:487.906667pt;}
.y138{bottom:489.666667pt;}
.y1b{bottom:492.573333pt;}
.yeb{bottom:492.733333pt;}
.y120{bottom:493.026667pt;}
.y49{bottom:494.813333pt;}
.y180{bottom:499.773333pt;}
.y160{bottom:500.893333pt;}
.y6e{bottom:502.333333pt;}
.y11f{bottom:505.186667pt;}
.yd5{bottom:505.853333pt;}
.y1a{bottom:506.333333pt;}
.yb7{bottom:507.133333pt;}
.y137{bottom:509.986667pt;}
.yea{bottom:511.133333pt;}
.y48{bottom:513.213333pt;}
.y106{bottom:513.533333pt;}
.y17f{bottom:515.133333pt;}
.y11e{bottom:517.546667pt;}
.y19{bottom:520.093333pt;}
.y6d{bottom:520.733333pt;}
.yb6{bottom:522.813333pt;}
.yd4{bottom:524.253333pt;}
.y8c{bottom:524.733333pt;}
.y11d{bottom:529.866667pt;}
.y136{bottom:530.346667pt;}
.y17e{bottom:530.493333pt;}
.y105{bottom:531.933333pt;}
.y18{bottom:534.013333pt;}
.y15f{bottom:537.373333pt;}
.y6c{bottom:539.133333pt;}
.y11c{bottom:542.026667pt;}
.y47{bottom:542.333333pt;}
.yd3{bottom:542.653333pt;}
.y135{bottom:542.666667pt;}
.y8b{bottom:543.133333pt;}
.ye9{bottom:545.533333pt;}
.y17{bottom:547.773333pt;}
.y104{bottom:550.333333pt;}
.y11b{bottom:554.346667pt;}
.y46{bottom:560.733333pt;}
.yd2{bottom:561.053333pt;}
.y16{bottom:561.533333pt;}
.y17d{bottom:561.693333pt;}
.y134{bottom:562.826667pt;}
.y11a{bottom:566.666667pt;}
.yb5{bottom:574.013333pt;}
.y6b{bottom:574.333333pt;}
.y15{bottom:575.293333pt;}
.y15e{bottom:576.733333pt;}
.y17c{bottom:577.053333pt;}
.y119{bottom:578.826667pt;}
.y45{bottom:579.133333pt;}
.yd1{bottom:579.453333pt;}
.y8a{bottom:579.933333pt;}
.y133{bottom:583.146667pt;}
.y103{bottom:584.733333pt;}
.y14{bottom:589.213333pt;}
.y118{bottom:591.146667pt;}
.y17b{bottom:592.413333pt;}
.y6a{bottom:595.133333pt;}
.y44{bottom:597.533333pt;}
.yd0{bottom:597.853333pt;}
.y89{bottom:598.333333pt;}
.y13{bottom:602.973333pt;}
.y132{bottom:603.306667pt;}
.y117{bottom:603.466667pt;}
.y17a{bottom:607.773333pt;}
.y15d{bottom:613.533333pt;}
.y69{bottom:614.653333pt;}
.y43{bottom:615.933333pt;}
.ycf{bottom:616.253333pt;}
.y12{bottom:616.733333pt;}
.y102{bottom:618.973333pt;}
.yb4{bottom:625.053333pt;}
.y88{bottom:627.293333pt;}
.y11{bottom:630.493333pt;}
.y15c{bottom:631.933333pt;}
.y42{bottom:634.333333pt;}
.ye8{bottom:635.133333pt;}
.y101{bottom:637.373333pt;}
.y68{bottom:638.013333pt;}
.y179{bottom:639.133333pt;}
.y10{bottom:644.413333pt;}
.y87{bottom:645.693333pt;}
.yce{bottom:648.413333pt;}
.y15b{bottom:650.333333pt;}
.y41{bottom:652.573333pt;}
.ye7{bottom:653.373333pt;}
.y178{bottom:655.133333pt;}
.ye{bottom:655.613333pt;}
.y100{bottom:655.773333pt;}
.y67{bottom:656.413333pt;}
.y86{bottom:664.093333pt;}
.y15a{bottom:668.573333pt;}
.y177{bottom:670.653333pt;}
.y40{bottom:670.973333pt;}
.yd{bottom:674.013333pt;}
.y66{bottom:674.813333pt;}
.yb3{bottom:676.093333pt;}
.y85{bottom:682.493333pt;}
.y176{bottom:686.013333pt;}
.y159{bottom:686.973333pt;}
.ycd{bottom:687.773333pt;}
.y3f{bottom:689.373333pt;}
.yff{bottom:690.173333pt;}
.y65{bottom:693.213333pt;}
.y84{bottom:700.893333pt;}
.y158{bottom:705.373333pt;}
.ycc{bottom:706.173333pt;}
.y64{bottom:711.613333pt;}
.y175{bottom:717.373333pt;}
.y3e{bottom:718.533333pt;}
.y9f{bottom:719.333333pt;}
.y157{bottom:723.813333pt;}
.ycb{bottom:724.613333pt;}
.yb2{bottom:727.173333pt;}
.y63{bottom:730.053333pt;}
.y174{bottom:732.773333pt;}
.y3d{bottom:736.933333pt;}
.y9e{bottom:737.733333pt;}
.y156{bottom:742.213333pt;}
.yca{bottom:743.013333pt;}
.y190{bottom:745.413333pt;}
.y173{bottom:748.133333pt;}
.y62{bottom:748.453333pt;}
.y3c{bottom:755.333333pt;}
.y155{bottom:760.613333pt;}
.yc9{bottom:761.413333pt;}
.y61{bottom:766.853333pt;}
.yc{bottom:768.773333pt;}
.y3b{bottom:773.733333pt;}
.yae{bottom:778.213333pt;}
.y154{bottom:779.013333pt;}
.y172{bottom:779.333333pt;}
.ye6{bottom:779.813333pt;}
.y83{bottom:785.253333pt;}
.y3a{bottom:792.133333pt;}
.yb{bottom:793.253333pt;}
.y171{bottom:794.693333pt;}
.y60{bottom:795.813333pt;}
.y153{bottom:797.413333pt;}
.yfe{bottom:798.213333pt;}
.y82{bottom:803.653333pt;}
.y170{bottom:810.053333pt;}
.y39{bottom:810.533333pt;}
.y5f{bottom:814.213333pt;}
.y152{bottom:815.813333pt;}
.y10f{bottom:816.453333pt;}
.y9d{bottom:822.053333pt;}
.y18f{bottom:825.413333pt;}
.y38{bottom:828.933333pt;}
.y5e{bottom:832.613333pt;}
.y151{bottom:834.213333pt;}
.ya{bottom:834.533333pt;}
.y16f{bottom:841.413333pt;}
.y5d{bottom:851.013333pt;}
.y16e{bottom:856.773333pt;}
.y9{bottom:862.053333pt;}
.y37{bottom:864.453333pt;}
.y5c{bottom:869.413333pt;}
.y16d{bottom:872.133333pt;}
.y7{bottom:895.013333pt;}
.y6{bottom:910.373333pt;}
.y5{bottom:925.733333pt;}
.y4{bottom:941.093333pt;}
.y3{bottom:956.480000pt;}
.y2{bottom:971.680000pt;}
.y1{bottom:988.800000pt;}
.h7{height:4.632500pt;}
.h9{height:18.400000pt;}
.h11{height:28.687500pt;}
.h10{height:30.982500pt;}
.h1a{height:38.441250pt;}
.h18{height:38.797187pt;}
.hc{height:43.031250pt;}
.hb{height:43.429688pt;}
.h3{height:47.621250pt;}
.h2{height:48.062188pt;}
.h17{height:48.960000pt;}
.h15{height:50.400000pt;}
.h16{height:50.432000pt;}
.h1b{height:52.785000pt;}
.h12{height:52.834688pt;}
.hd{height:57.375000pt;}
.he{height:57.906250pt;}
.hf{height:58.563750pt;}
.h1{height:61.969687pt;}
.h5{height:66.140625pt;}
.h4{height:66.656250pt;}
.h13{height:67.750312pt;}
.h14{height:68.800000pt;}
.ha{height:76.308750pt;}
.h6{height:77.015312pt;}
.h8{height:90.272000pt;}
.h19{height:613.373333pt;}
.h0{height:1056.000000pt;}
.w7{width:104.032000pt;}
.w8{width:133.312000pt;}
.wa{width:146.906667pt;}
.wb{width:151.386667pt;}
.w9{width:163.386667pt;}
.w5{width:167.866667pt;}
.w6{width:188.986667pt;}
.w4{width:294.146667pt;}
.w3{width:295.106667pt;}
.w2{width:815.999976pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x21{left:7.200000pt;}
.x16{left:11.080000pt;}
.x22{left:12.800000pt;}
.x1d{left:15.840000pt;}
.x29{left:18.720000pt;}
.x19{left:20.840000pt;}
.x1a{left:22.080000pt;}
.x1c{left:25.320000pt;}
.x11{left:26.400000pt;}
.x14{left:29.440000pt;}
.x1b{left:32.160000pt;}
.x27{left:34.880000pt;}
.x26{left:35.840000pt;}
.x12{left:39.040000pt;}
.x17{left:40.320000pt;}
.x1f{left:45.626667pt;}
.x20{left:47.360000pt;}
.x18{left:48.666667pt;}
.x24{left:54.400000pt;}
.x1e{left:63.706667pt;}
.xb{left:90.714667pt;}
.xc{left:92.000000pt;}
.x1{left:113.471988pt;}
.xf{left:118.111988pt;}
.x5{left:137.626655pt;}
.x2a{left:151.226655pt;}
.x10{left:177.626667pt;}
.xa{left:184.360000pt;}
.x3{left:187.866655pt;}
.x8{left:191.714667pt;}
.x23{left:246.786667pt;}
.x4{left:260.546655pt;}
.x6{left:268.706655pt;}
.xe{left:305.506655pt;}
.x13{left:345.506667pt;}
.xd{left:371.906655pt;}
.x2{left:380.706655pt;}
.x9{left:408.573333pt;}
.x25{left:410.173333pt;}
.x15{left:534.493333pt;}
.x7{left:546.853309pt;}
.x28{left:557.093333pt;}
}




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