
    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_c54b7c06b5a3fe5e017da21b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;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_50a1c00d3f8d4dd233546ac7.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_236270ed8e2b22848e644cca.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.435059;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_d1c8598b86b9d8f45ec729c5.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.914062;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_ba8693280ad3f9fc4f6ad533.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.202148;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_36ee234146e1a25c57705650.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;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_cc5659a9c2bc4078e4792e45.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.401855;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_fc45fe31c7a34c2c66d37e09.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.402354;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_58985701b4c755d552b4c977.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_e61cda69249fdbc374cbae01.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.284180;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_e7c735c30e2a03fb693185ba.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5{transform:matrix(0.242425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242425,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.371200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371200,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-23.760000px;}
.v3{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls2f{letter-spacing:-2.106000px;}
.ls1e{letter-spacing:-1.800000px;}
.ls18{letter-spacing:-1.494000px;}
.ls20{letter-spacing:-1.386000px;}
.ls1d{letter-spacing:-1.182000px;}
.ls3{letter-spacing:-1.176000px;}
.ls12{letter-spacing:-1.080000px;}
.ls11{letter-spacing:-0.978000px;}
.ls1c{letter-spacing:-0.774000px;}
.ls19{letter-spacing:-0.666000px;}
.ls2b{letter-spacing:-0.540000px;}
.ls32{letter-spacing:-0.513600px;}
.ls1f{letter-spacing:-0.413400px;}
.ls9{letter-spacing:-0.360000px;}
.lsb{letter-spacing:-0.322800px;}
.ls8{letter-spacing:-0.270000px;}
.ls16{letter-spacing:-0.259800px;}
.ls23{letter-spacing:-0.206400px;}
.ls28{letter-spacing:-0.158400px;}
.ls14{letter-spacing:-0.106800px;}
.ls5{letter-spacing:-0.053280px;}
.ls1{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.053280px;}
.ls7{letter-spacing:0.106800px;}
.ls2d{letter-spacing:0.153600px;}
.ls1b{letter-spacing:0.156000px;}
.ls0{letter-spacing:0.180000px;}
.lsd{letter-spacing:0.198000px;}
.ls2e{letter-spacing:0.206400px;}
.ls10{letter-spacing:0.259800px;}
.ls2a{letter-spacing:0.298800px;}
.ls2{letter-spacing:0.305400px;}
.ls4{letter-spacing:0.360000px;}
.ls24{letter-spacing:0.460200px;}
.ls25{letter-spacing:0.513600px;}
.ls15{letter-spacing:0.562800px;}
.ls13{letter-spacing:0.612000px;}
.ls6{letter-spacing:0.666000px;}
.lsa{letter-spacing:0.720000px;}
.lsf{letter-spacing:0.828000px;}
.ls2c{letter-spacing:0.876000px;}
.ls22{letter-spacing:0.900000px;}
.ls1a{letter-spacing:0.924000px;}
.lse{letter-spacing:1.080000px;}
.ls17{letter-spacing:1.182000px;}
.ls21{letter-spacing:2.340000px;}
.ls29{letter-spacing:11.466720px;}
.ls26{letter-spacing:13.140000px;}
.ls31{letter-spacing:16.080000px;}
.ls30{letter-spacing:16.560000px;}
.ls27{letter-spacing:41.850720px;}
.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;}
}
.ws1a{word-spacing:-59.760000px;}
.ws0{word-spacing:-16.560000px;}
.ws15{word-spacing:-16.122000px;}
.wsd{word-spacing:-16.020000px;}
.ws18{word-spacing:-15.864000px;}
.ws21{word-spacing:-15.816000px;}
.wse{word-spacing:-15.768000px;}
.ws6{word-spacing:-15.606000px;}
.ws13{word-spacing:-15.552000px;}
.ws20{word-spacing:-15.453600px;}
.ws1f{word-spacing:-15.400200px;}
.ws1{word-spacing:-15.384000px;}
.ws4{word-spacing:-15.300000px;}
.wsf{word-spacing:-15.199800px;}
.ws23{word-spacing:-15.146400px;}
.ws22{word-spacing:-15.093600px;}
.ws7{word-spacing:-15.046800px;}
.wsa{word-spacing:-14.993280px;}
.wsb{word-spacing:-14.940000px;}
.ws5{word-spacing:-14.886720px;}
.ws12{word-spacing:-14.833200px;}
.ws1e{word-spacing:-14.733600px;}
.ws14{word-spacing:-14.680200px;}
.ws9{word-spacing:-14.647440px;}
.wsc{word-spacing:-14.580000px;}
.ws25{word-spacing:-14.426400px;}
.ws17{word-spacing:-14.274000px;}
.ws19{word-spacing:-14.166000px;}
.ws10{word-spacing:-13.962000px;}
.ws11{word-spacing:-13.860000px;}
.ws1b{word-spacing:-13.758000px;}
.ws1d{word-spacing:-13.554000px;}
.ws16{word-spacing:-13.446000px;}
.ws1c{word-spacing:-13.140000px;}
.ws24{word-spacing:-12.834000px;}
.ws2{word-spacing:-10.440000px;}
.ws3{word-spacing:-9.720000px;}
.ws8{word-spacing:0.000000px;}
._2{margin-left:-2535.520320px;}
._3{margin-left:-1450.271520px;}
._4{margin-left:-1444.384320px;}
._5{margin-left:-577.600560px;}
._6{margin-left:-8.036160px;}
._7{margin-left:-4.364400px;}
._a{margin-left:-2.739840px;}
._1{margin-left:-1.627920px;}
._0{width:1.244880px;}
._e{width:2.509920px;}
._c{width:3.711600px;}
._b{width:5.670720px;}
._d{width:6.976800px;}
._f{width:7.985520px;}
._8{width:9.161280px;}
._9{width:10.472160px;}
._13{width:11.892240px;}
._15{width:13.386240px;}
._2c{width:15.954960px;}
._12{width:16.971840px;}
._10{width:18.286560px;}
._11{width:19.316160px;}
._14{width:20.916000px;}
._29{width:22.370400px;}
._28{width:23.784480px;}
._1a{width:25.463280px;}
._19{width:26.773200px;}
._1b{width:28.741680px;}
._21{width:29.958240px;}
._17{width:32.987520px;}
._25{width:42.040080px;}
._22{width:47.484480px;}
._1d{width:52.436880px;}
._2a{width:76.217280px;}
._20{width:77.246400px;}
._1c{width:82.253040px;}
._1f{width:106.494480px;}
._16{width:108.109200px;}
._23{width:114.050880px;}
._24{width:149.178240px;}
._18{width:158.462400px;}
._27{width:175.634640px;}
._26{width:235.394640px;}
._2b{width:257.904000px;}
._1e{width:280.253040px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc3{color:rgb(31,31,31);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:2.880000px;}
.fs4{font-size:38.880000px;}
.fs3{font-size:41.760000px;}
.fs1{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y7f{bottom:5.760000px;}
.ycb{bottom:5.940000px;}
.y83{bottom:6.120000px;}
.y8f{bottom:6.294000px;}
.y87{bottom:6.300000px;}
.y18e{bottom:10.980000px;}
.yd2{bottom:22.710000px;}
.y134{bottom:25.560000px;}
.y82{bottom:25.920000px;}
.y91{bottom:25.956000px;}
.y8e{bottom:26.094000px;}
.y86{bottom:26.100000px;}
.y13b{bottom:26.145000px;}
.y101{bottom:26.280000px;}
.y125{bottom:26.460000px;}
.y18d{bottom:30.960000px;}
.y18a{bottom:34.920000px;}
.y81{bottom:45.720000px;}
.y93{bottom:45.750000px;}
.y8d{bottom:45.894000px;}
.y8b{bottom:45.900000px;}
.yd0{bottom:45.936000px;}
.y18c{bottom:50.796000px;}
.y6{bottom:67.140000px;}
.y18b{bottom:70.590000px;}
.y189{bottom:89.820000px;}
.ycf{bottom:96.300000px;}
.y183{bottom:97.560000px;}
.y143{bottom:100.800000px;}
.yff{bottom:102.060000px;}
.y34{bottom:105.120000px;}
.y90{bottom:106.380000px;}
.y166{bottom:108.360000px;}
.y133{bottom:109.260000px;}
.y6a{bottom:110.160000px;}
.y182{bottom:117.360000px;}
.ya9{bottom:119.340000px;}
.y142{bottom:120.600000px;}
.yfe{bottom:121.860000px;}
.y33{bottom:124.920000px;}
.yb4{bottom:126.180000px;}
.y165{bottom:128.196000px;}
.y132{bottom:129.096000px;}
.y69{bottom:130.176000px;}
.y181{bottom:137.196000px;}
.ya8{bottom:139.176000px;}
.y141{bottom:140.076000px;}
.yfd{bottom:141.876000px;}
.y131{bottom:143.856000px;}
.y32{bottom:144.756000px;}
.yb3{bottom:146.016000px;}
.y8c{bottom:146.736000px;}
.y164{bottom:148.176000px;}
.y68{bottom:149.976000px;}
.yce{bottom:156.630000px;}
.y180{bottom:157.170000px;}
.ya7{bottom:158.970000px;}
.yfc{bottom:161.670000px;}
.y31{bottom:164.550000px;}
.yb2{bottom:165.810000px;}
.y163{bottom:167.970000px;}
.y67{bottom:169.770000px;}
.y17f{bottom:176.970000px;}
.ya6{bottom:178.950000px;}
.yfb{bottom:181.470000px;}
.y30{bottom:184.350000px;}
.y130{bottom:185.250000px;}
.yb1{bottom:185.610000px;}
.y162{bottom:187.770000px;}
.y66{bottom:189.570000px;}
.y17e{bottom:196.770000px;}
.ya5{bottom:198.750000px;}
.yfa{bottom:201.270000px;}
.y2f{bottom:204.330000px;}
.yb0{bottom:205.590000px;}
.y12f{bottom:205.770000px;}
.y8a{bottom:207.030000px;}
.y161{bottom:207.570000px;}
.y65{bottom:209.010000px;}
.y17d{bottom:216.570000px;}
.ycd{bottom:216.930000px;}
.ya4{bottom:218.550000px;}
.yf9{bottom:222.150000px;}
.y2e{bottom:224.130000px;}
.yaf{bottom:225.390000px;}
.y12e{bottom:226.470000px;}
.y160{bottom:227.370000px;}
.y17c{bottom:236.370000px;}
.y64{bottom:238.350000px;}
.yf8{bottom:243.210000px;}
.y2d{bottom:243.930000px;}
.yae{bottom:244.830000px;}
.y12d{bottom:246.990000px;}
.y15f{bottom:247.350000px;}
.y17b{bottom:256.350000px;}
.y63{bottom:258.150000px;}
.yf7{bottom:263.010000px;}
.y2c{bottom:263.730000px;}
.y15e{bottom:267.150000px;}
.y89{bottom:267.330000px;}
.y12c{bottom:267.690000px;}
.y17a{bottom:276.150000px;}
.ycc{bottom:277.230000px;}
.y62{bottom:277.950000px;}
.ya3{bottom:278.130000px;}
.yf6{bottom:282.810000px;}
.y2b{bottom:283.530000px;}
.y15d{bottom:286.950000px;}
.y12b{bottom:288.210000px;}
.y179{bottom:295.950000px;}
.y61{bottom:297.750000px;}
.ya2{bottom:297.930000px;}
.y2a{bottom:303.510000px;}
.yf5{bottom:303.690000px;}
.y15c{bottom:306.750000px;}
.y12a{bottom:308.910000px;}
.y178{bottom:315.390000px;}
.y185{bottom:315.750000px;}
.y60{bottom:317.550000px;}
.ya1{bottom:317.730000px;}
.y29{bottom:323.310000px;}
.yf4{bottom:324.570000px;}
.y15b{bottom:326.550000px;}
.y88{bottom:327.630000px;}
.y129{bottom:329.430000px;}
.y177{bottom:335.550000px;}
.yca{bottom:337.350000px;}
.y5f{bottom:337.530000px;}
.y28{bottom:343.110000px;}
.yf3{bottom:345.450000px;}
.y15a{bottom:346.530000px;}
.y128{bottom:350.130000px;}
.y176{bottom:355.530000px;}
.ya0{bottom:356.970000px;}
.y5e{bottom:357.330000px;}
.y27{bottom:362.910000px;}
.yc9{bottom:363.810000px;}
.y159{bottom:366.330000px;}
.yf2{bottom:366.510000px;}
.y127{bottom:370.650000px;}
.y175{bottom:375.330000px;}
.y9f{bottom:376.950000px;}
.y5d{bottom:377.130000px;}
.y26{bottom:382.755000px;}
.yc8{bottom:384.015000px;}
.y158{bottom:386.175000px;}
.yf1{bottom:386.355000px;}
.y85{bottom:387.795000px;}
.y124{bottom:391.395000px;}
.y174{bottom:394.815000px;}
.y184{bottom:395.175000px;}
.y9e{bottom:396.795000px;}
.y5c{bottom:396.975000px;}
.y25{bottom:402.735000px;}
.yc7{bottom:403.815000px;}
.y157{bottom:405.975000px;}
.yf0{bottom:406.155000px;}
.y126{bottom:412.095000px;}
.y9d{bottom:413.535000px;}
.y173{bottom:414.975000px;}
.y5b{bottom:416.775000px;}
.y24{bottom:422.535000px;}
.yc6{bottom:423.795000px;}
.y156{bottom:425.775000px;}
.yef{bottom:425.955000px;}
.y84{bottom:428.295000px;}
.y172{bottom:434.775000px;}
.y5a{bottom:436.755000px;}
.y123{bottom:438.375000px;}
.y23{bottom:442.335000px;}
.yc5{bottom:443.595000px;}
.yee{bottom:445.395000px;}
.y155{bottom:445.755000px;}
.y171{bottom:454.755000px;}
.y59{bottom:456.195000px;}
.y122{bottom:458.535000px;}
.y22{bottom:462.135000px;}
.yc4{bottom:463.395000px;}
.y154{bottom:465.555000px;}
.y80{bottom:468.795000px;}
.y170{bottom:474.555000px;}
.yed{bottom:474.735000px;}
.y121{bottom:478.515000px;}
.y21{bottom:481.935000px;}
.yc3{bottom:482.835000px;}
.y58{bottom:485.355000px;}
.y16f{bottom:494.355000px;}
.yec{bottom:494.535000px;}
.y120{bottom:498.315000px;}
.y20{bottom:501.915000px;}
.y57{bottom:505.155000px;}
.yc2{bottom:511.995000px;}
.y16e{bottom:514.155000px;}
.yeb{bottom:514.335000px;}
.y11f{bottom:518.115000px;}
.y1f{bottom:521.715000px;}
.y56{bottom:524.955000px;}
.y7e{bottom:528.915000px;}
.yc1{bottom:531.975000px;}
.y16d{bottom:533.955000px;}
.yea{bottom:534.135000px;}
.y11e{bottom:537.915000px;}
.y140{bottom:540.795000px;}
.y1e{bottom:541.515000px;}
.y55{bottom:544.935000px;}
.yc0{bottom:551.775000px;}
.ye9{bottom:553.935000px;}
.y7d{bottom:555.735000px;}
.y11d{bottom:557.715000px;}
.y13f{bottom:560.595000px;}
.y1d{bottom:561.315000px;}
.y54{bottom:564.735000px;}
.ybf{bottom:571.575000px;}
.y16c{bottom:573.735000px;}
.ye8{bottom:573.915000px;}
.y146{bottom:575.355000px;}
.y7c{bottom:575.535000px;}
.y11c{bottom:577.515000px;}
.y1c{bottom:581.115000px;}
.y53{bottom:584.535000px;}
.ybe{bottom:591.375000px;}
.y16b{bottom:593.535000px;}
.ye7{bottom:593.715000px;}
.y7b{bottom:595.335000px;}
.y11b{bottom:597.495000px;}
.y1b{bottom:600.735000px;}
.y52{bottom:604.335000px;}
.ybd{bottom:611.175000px;}
.y16a{bottom:613.335000px;}
.ye6{bottom:613.515000px;}
.y7a{bottom:615.135000px;}
.y11a{bottom:617.295000px;}
.y1a{bottom:620.535000px;}
.y51{bottom:624.135000px;}
.ybc{bottom:630.975000px;}
.y169{bottom:633.165000px;}
.ye5{bottom:633.345000px;}
.y79{bottom:634.785000px;}
.y145{bottom:635.685000px;}
.y119{bottom:637.125000px;}
.y19{bottom:643.065000px;}
.y50{bottom:644.145000px;}
.ybb{bottom:650.985000px;}
.ye4{bottom:653.145000px;}
.y118{bottom:656.925000px;}
.y18{bottom:662.865000px;}
.yad{bottom:663.585000px;}
.y4f{bottom:663.945000px;}
.yba{bottom:670.785000px;}
.y168{bottom:672.945000px;}
.ye3{bottom:673.125000px;}
.y117{bottom:676.725000px;}
.y4e{bottom:683.385000px;}
.y78{bottom:683.745000px;}
.yb9{bottom:690.585000px;}
.y17{bottom:691.665000px;}
.yac{bottom:692.385000px;}
.y167{bottom:692.745000px;}
.ye2{bottom:692.925000px;}
.y144{bottom:695.985000px;}
.y116{bottom:696.705000px;}
.y77{bottom:703.545000px;}
.yb8{bottom:710.385000px;}
.y16{bottom:711.465000px;}
.y4d{bottom:712.545000px;}
.ye1{bottom:712.725000px;}
.y115{bottom:716.505000px;}
.y76{bottom:723.345000px;}
.yb7{bottom:730.185000px;}
.y15{bottom:731.265000px;}
.y4c{bottom:732.345000px;}
.ye0{bottom:732.525000px;}
.y114{bottom:737.385000px;}
.y13e{bottom:738.645000px;}
.y75{bottom:743.325000px;}
.yb6{bottom:750.165000px;}
.y14{bottom:751.245000px;}
.y4b{bottom:752.325000px;}
.y113{bottom:758.265000px;}
.y74{bottom:763.125000px;}
.yb5{bottom:769.965000px;}
.y13{bottom:771.045000px;}
.y4a{bottom:772.125000px;}
.ydf{bottom:772.305000px;}
.y13d{bottom:778.965000px;}
.y112{bottom:779.145000px;}
.y73{bottom:782.925000px;}
.y152{bottom:789.765000px;}
.y12{bottom:790.845000px;}
.y49{bottom:791.925000px;}
.yde{bottom:792.105000px;}
.y111{bottom:800.205000px;}
.y72{bottom:802.725000px;}
.y9c{bottom:807.945000px;}
.y151{bottom:809.565000px;}
.y11{bottom:810.645000px;}
.y48{bottom:811.725000px;}
.ydd{bottom:811.905000px;}
.y13c{bottom:819.465000px;}
.y110{bottom:820.005000px;}
.y71{bottom:822.525000px;}
.y9b{bottom:827.925000px;}
.y150{bottom:829.365000px;}
.y10{bottom:830.445000px;}
.y47{bottom:831.525000px;}
.ydc{bottom:831.705000px;}
.y10f{bottom:839.805000px;}
.y70{bottom:842.505000px;}
.y9a{bottom:847.725000px;}
.y14f{bottom:849.345000px;}
.yf{bottom:850.425000px;}
.y46{bottom:851.505000px;}
.y10e{bottom:854.205000px;}
.y13a{bottom:859.785000px;}
.y6f{bottom:862.305000px;}
.y99{bottom:867.525000px;}
.y14e{bottom:869.145000px;}
.ye{bottom:870.225000px;}
.y45{bottom:871.305000px;}
.ydb{bottom:871.485000px;}
.y10d{bottom:874.905000px;}
.y6e{bottom:882.105000px;}
.y98{bottom:887.010000px;}
.y14d{bottom:888.990000px;}
.yd{bottom:890.070000px;}
.y44{bottom:891.150000px;}
.yda{bottom:891.330000px;}
.y10c{bottom:895.470000px;}
.y139{bottom:900.330000px;}
.y6d{bottom:901.950000px;}
.y97{bottom:907.170000px;}
.y14c{bottom:908.790000px;}
.y153{bottom:910.590000px;}
.y43{bottom:910.950000px;}
.yd9{bottom:911.130000px;}
.yc{bottom:912.210000px;}
.y10b{bottom:915.990000px;}
.y6c{bottom:921.390000px;}
.y96{bottom:921.750000px;}
.y188{bottom:925.530000px;}
.y14b{bottom:928.590000px;}
.y42{bottom:930.390000px;}
.yab{bottom:930.750000px;}
.yd8{bottom:930.930000px;}
.y10a{bottom:936.690000px;}
.yb{bottom:937.230000px;}
.y138{bottom:940.830000px;}
.y187{bottom:947.490000px;}
.y14a{bottom:948.570000px;}
.y6b{bottom:950.370000px;}
.y41{bottom:950.730000px;}
.ya{bottom:952.170000px;}
.y109{bottom:957.210000px;}
.y149{bottom:968.370000px;}
.y186{bottom:969.270000px;}
.y40{bottom:970.530000px;}
.yd7{bottom:970.710000px;}
.y9{bottom:973.230000px;}
.y108{bottom:977.910000px;}
.y137{bottom:981.150000px;}
.y95{bottom:981.870000px;}
.y148{bottom:989.250000px;}
.y3f{bottom:990.330000px;}
.yd6{bottom:990.510000px;}
.y8{bottom:996.810000px;}
.y107{bottom:998.610000px;}
.y147{bottom:1009.050000px;}
.y3e{bottom:1010.130000px;}
.yd5{bottom:1010.310000px;}
.y106{bottom:1019.130000px;}
.y136{bottom:1021.650000px;}
.yd4{bottom:1024.710000px;}
.y7{bottom:1028.490000px;}
.y3d{bottom:1029.930000px;}
.y105{bottom:1039.830000px;}
.y94{bottom:1042.170000px;}
.y3c{bottom:1049.910000px;}
.y104{bottom:1060.530000px;}
.y135{bottom:1061.970000px;}
.y5{bottom:1064.490000px;}
.yd3{bottom:1065.210000px;}
.y3b{bottom:1069.710000px;}
.y103{bottom:1081.050000px;}
.y3a{bottom:1089.510000px;}
.y4{bottom:1092.570000px;}
.y100{bottom:1101.750000px;}
.y92{bottom:1102.470000px;}
.y39{bottom:1109.310000px;}
.y3{bottom:1120.470000px;}
.y102{bottom:1122.270000px;}
.yd1{bottom:1125.510000px;}
.y38{bottom:1129.110000px;}
.y2{bottom:1148.220000px;}
.yaa{bottom:1148.760000px;}
.y37{bottom:1149.120000px;}
.y36{bottom:1170.360000px;}
.y1{bottom:1177.740000px;}
.y35{bottom:1193.580000px;}
.h1e{height:2.826563px;}
.hc{height:19.800000px;}
.h19{height:19.836000px;}
.h15{height:19.980000px;}
.h1b{height:20.016000px;}
.h17{height:36.396000px;}
.h6{height:38.158594px;}
.he{height:39.600000px;}
.h12{height:39.636000px;}
.hf{height:39.780000px;}
.h1c{height:39.816000px;}
.h18{height:40.356000px;}
.h1a{height:40.500000px;}
.h14{height:41.493516px;}
.hb{height:41.726953px;}
.ha{height:58.621992px;}
.h7{height:58.651172px;}
.hd{height:59.400000px;}
.h10{height:59.436000px;}
.h11{height:59.580000px;}
.h16{height:59.616000px;}
.h5{height:60.226875px;}
.h13{height:61.423863px;}
.h8{height:62.211094px;}
.h4{height:65.010937px;}
.h3{height:66.757500px;}
.h9{height:67.824844px;}
.h1d{height:84.276000px;}
.h2{height:96.508125px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.wf{width:41.940000px;}
.we{width:42.120000px;}
.w10{width:42.300000px;}
.wc{width:42.336000px;}
.wd{width:42.480000px;}
.w16{width:43.020000px;}
.w15{width:43.200000px;}
.w14{width:43.236000px;}
.w11{width:45.000000px;}
.w18{width:45.900000px;}
.w17{width:46.080000px;}
.w3{width:48.276000px;}
.w19{width:53.136000px;}
.w22{width:53.676000px;}
.w24{width:59.940000px;}
.w1b{width:61.200000px;}
.w20{width:72.180000px;}
.w26{width:73.440000px;}
.w1e{width:76.680000px;}
.w25{width:80.100000px;}
.w1f{width:80.136000px;}
.w1c{width:80.820000px;}
.w1d{width:83.736000px;}
.w6{width:90.396000px;}
.wa{width:90.720000px;}
.w12{width:92.520000px;}
.w21{width:102.096000px;}
.w27{width:103.536000px;}
.w1a{width:125.856000px;}
.w23{width:127.476000px;}
.w8{width:153.390000px;}
.w7{width:155.010000px;}
.w28{width:210.855000px;}
.w4{width:218.010000px;}
.w5{width:410.475000px;}
.w9{width:435.885000px;}
.wb{width:522.105000px;}
.w13{width:531.825000px;}
.w29{width:580.965000px;}
.w1{width:893.250000px;}
.w2{width:893.339987px;}
.w0{width:893.340000px;}
.x0{left:0.000000px;}
.x54{left:8.100000px;}
.x37{left:14.796000px;}
.x19{left:35.454000px;}
.x52{left:45.900000px;}
.x5{left:52.739987px;}
.x1{left:54.179987px;}
.x9{left:56.519987px;}
.x14{left:60.839987px;}
.x2{left:63.179987px;}
.x12{left:65.159987px;}
.x7{left:66.239987px;}
.x3{left:67.499987px;}
.x8{left:70.199987px;}
.x25{left:71.999987px;}
.x6{left:74.339987px;}
.x4{left:75.599987px;}
.xa{left:77.039987px;}
.x40{left:78.659987px;}
.xb{left:80.999987px;}
.x17{left:87.875987px;}
.x41{left:92.555987px;}
.x3d{left:94.535987px;}
.x3f{left:108.035987px;}
.xc{left:116.136000px;}
.x38{left:128.556000px;}
.x30{left:129.636000px;}
.x26{left:134.136000px;}
.x18{left:139.896000px;}
.x3e{left:146.735987px;}
.x42{left:151.049987px;}
.x43{left:174.449987px;}
.x53{left:192.630000px;}
.x27{left:227.370000px;}
.x15{left:229.530000px;}
.x1a{left:231.330000px;}
.x44{left:254.234987px;}
.x31{left:256.215000px;}
.x36{left:267.194987px;}
.x28{left:271.335000px;}
.x1b{left:274.395000px;}
.x45{left:313.094987px;}
.x10{left:315.434987px;}
.x1c{left:317.595000px;}
.x13{left:318.674987px;}
.x46{left:324.614987px;}
.xd{left:334.875000px;}
.x29{left:359.175000px;}
.x1d{left:360.615000px;}
.x16{left:383.655000px;}
.x39{left:398.595000px;}
.x32{left:399.675000px;}
.x47{left:401.294987px;}
.x1e{left:403.275000px;}
.x48{left:412.814987px;}
.x11{left:446.684987px;}
.x49{left:457.124987px;}
.x3a{left:479.625000px;}
.x33{left:484.305000px;}
.x1f{left:489.345000px;}
.x2a{left:490.785000px;}
.x4a{left:492.764987px;}
.x4b{left:515.984987px;}
.x20{left:532.185000px;}
.x2b{left:534.705000px;}
.x3b{left:560.625000px;}
.x34{left:561.705000px;}
.x21{left:575.205000px;}
.x2c{left:578.445000px;}
.x4c{left:581.864987px;}
.x4d{left:605.129987px;}
.x22{left:618.270000px;}
.x2d{left:622.410000px;}
.x3c{left:641.670000px;}
.x35{left:642.750000px;}
.x23{left:663.990000px;}
.x2e{left:669.210000px;}
.x4e{left:675.509987px;}
.x4f{left:698.729987px;}
.x24{left:709.890000px;}
.x2f{left:716.010000px;}
.x50{left:725.189987px;}
.xf{left:731.309987px;}
.xe{left:746.070000px;}
.x51{left:748.229987px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v3{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls2f{letter-spacing:-1.872000pt;}
.ls1e{letter-spacing:-1.600000pt;}
.ls18{letter-spacing:-1.328000pt;}
.ls20{letter-spacing:-1.232000pt;}
.ls1d{letter-spacing:-1.050667pt;}
.ls3{letter-spacing:-1.045333pt;}
.ls12{letter-spacing:-0.960000pt;}
.ls11{letter-spacing:-0.869333pt;}
.ls1c{letter-spacing:-0.688000pt;}
.ls19{letter-spacing:-0.592000pt;}
.ls2b{letter-spacing:-0.480000pt;}
.ls32{letter-spacing:-0.456533pt;}
.ls1f{letter-spacing:-0.367467pt;}
.ls9{letter-spacing:-0.320000pt;}
.lsb{letter-spacing:-0.286933pt;}
.ls8{letter-spacing:-0.240000pt;}
.ls16{letter-spacing:-0.230933pt;}
.ls23{letter-spacing:-0.183467pt;}
.ls28{letter-spacing:-0.140800pt;}
.ls14{letter-spacing:-0.094933pt;}
.ls5{letter-spacing:-0.047360pt;}
.ls1{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.047360pt;}
.ls7{letter-spacing:0.094933pt;}
.ls2d{letter-spacing:0.136533pt;}
.ls1b{letter-spacing:0.138667pt;}
.ls0{letter-spacing:0.160000pt;}
.lsd{letter-spacing:0.176000pt;}
.ls2e{letter-spacing:0.183467pt;}
.ls10{letter-spacing:0.230933pt;}
.ls2a{letter-spacing:0.265600pt;}
.ls2{letter-spacing:0.271467pt;}
.ls4{letter-spacing:0.320000pt;}
.ls24{letter-spacing:0.409067pt;}
.ls25{letter-spacing:0.456533pt;}
.ls15{letter-spacing:0.500267pt;}
.ls13{letter-spacing:0.544000pt;}
.ls6{letter-spacing:0.592000pt;}
.lsa{letter-spacing:0.640000pt;}
.lsf{letter-spacing:0.736000pt;}
.ls2c{letter-spacing:0.778667pt;}
.ls22{letter-spacing:0.800000pt;}
.ls1a{letter-spacing:0.821333pt;}
.lse{letter-spacing:0.960000pt;}
.ls17{letter-spacing:1.050667pt;}
.ls21{letter-spacing:2.080000pt;}
.ls29{letter-spacing:10.192640pt;}
.ls26{letter-spacing:11.680000pt;}
.ls31{letter-spacing:14.293333pt;}
.ls30{letter-spacing:14.720000pt;}
.ls27{letter-spacing:37.200640pt;}
.ws1a{word-spacing:-53.120000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws15{word-spacing:-14.330667pt;}
.wsd{word-spacing:-14.240000pt;}
.ws18{word-spacing:-14.101333pt;}
.ws21{word-spacing:-14.058667pt;}
.wse{word-spacing:-14.016000pt;}
.ws6{word-spacing:-13.872000pt;}
.ws13{word-spacing:-13.824000pt;}
.ws20{word-spacing:-13.736533pt;}
.ws1f{word-spacing:-13.689067pt;}
.ws1{word-spacing:-13.674667pt;}
.ws4{word-spacing:-13.600000pt;}
.wsf{word-spacing:-13.510933pt;}
.ws23{word-spacing:-13.463467pt;}
.ws22{word-spacing:-13.416533pt;}
.ws7{word-spacing:-13.374933pt;}
.wsa{word-spacing:-13.327360pt;}
.wsb{word-spacing:-13.280000pt;}
.ws5{word-spacing:-13.232640pt;}
.ws12{word-spacing:-13.185067pt;}
.ws1e{word-spacing:-13.096533pt;}
.ws14{word-spacing:-13.049067pt;}
.ws9{word-spacing:-13.019947pt;}
.wsc{word-spacing:-12.960000pt;}
.ws25{word-spacing:-12.823467pt;}
.ws17{word-spacing:-12.688000pt;}
.ws19{word-spacing:-12.592000pt;}
.ws10{word-spacing:-12.410667pt;}
.ws11{word-spacing:-12.320000pt;}
.ws1b{word-spacing:-12.229333pt;}
.ws1d{word-spacing:-12.048000pt;}
.ws16{word-spacing:-11.952000pt;}
.ws1c{word-spacing:-11.680000pt;}
.ws24{word-spacing:-11.408000pt;}
.ws2{word-spacing:-9.280000pt;}
.ws3{word-spacing:-8.640000pt;}
.ws8{word-spacing:0.000000pt;}
._2{margin-left:-2253.795840pt;}
._3{margin-left:-1289.130240pt;}
._4{margin-left:-1283.897173pt;}
._5{margin-left:-513.422720pt;}
._6{margin-left:-7.143253pt;}
._7{margin-left:-3.879467pt;}
._a{margin-left:-2.435413pt;}
._1{margin-left:-1.447040pt;}
._0{width:1.106560pt;}
._e{width:2.231040pt;}
._c{width:3.299200pt;}
._b{width:5.040640pt;}
._d{width:6.201600pt;}
._f{width:7.098240pt;}
._8{width:8.143360pt;}
._9{width:9.308587pt;}
._13{width:10.570880pt;}
._15{width:11.898880pt;}
._2c{width:14.182187pt;}
._12{width:15.086080pt;}
._10{width:16.254720pt;}
._11{width:17.169920pt;}
._14{width:18.592000pt;}
._29{width:19.884800pt;}
._28{width:21.141760pt;}
._1a{width:22.634027pt;}
._19{width:23.798400pt;}
._1b{width:25.548160pt;}
._21{width:26.629547pt;}
._17{width:29.322240pt;}
._25{width:37.368960pt;}
._22{width:42.208427pt;}
._1d{width:46.610560pt;}
._2a{width:67.748693pt;}
._20{width:68.663467pt;}
._1c{width:73.113813pt;}
._1f{width:94.661760pt;}
._16{width:96.097067pt;}
._23{width:101.378560pt;}
._24{width:132.602880pt;}
._18{width:140.855467pt;}
._27{width:156.119680pt;}
._26{width:209.239680pt;}
._2b{width:229.248000pt;}
._1e{width:249.113813pt;}
.fs5{font-size:2.560000pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:37.120000pt;}
.fs1{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y7f{bottom:5.120000pt;}
.ycb{bottom:5.280000pt;}
.y83{bottom:5.440000pt;}
.y8f{bottom:5.594667pt;}
.y87{bottom:5.600000pt;}
.y18e{bottom:9.760000pt;}
.yd2{bottom:20.186667pt;}
.y134{bottom:22.720000pt;}
.y82{bottom:23.040000pt;}
.y91{bottom:23.072000pt;}
.y8e{bottom:23.194667pt;}
.y86{bottom:23.200000pt;}
.y13b{bottom:23.240000pt;}
.y101{bottom:23.360000pt;}
.y125{bottom:23.520000pt;}
.y18d{bottom:27.520000pt;}
.y18a{bottom:31.040000pt;}
.y81{bottom:40.640000pt;}
.y93{bottom:40.666667pt;}
.y8d{bottom:40.794667pt;}
.y8b{bottom:40.800000pt;}
.yd0{bottom:40.832000pt;}
.y18c{bottom:45.152000pt;}
.y6{bottom:59.680000pt;}
.y18b{bottom:62.746667pt;}
.y189{bottom:79.840000pt;}
.ycf{bottom:85.600000pt;}
.y183{bottom:86.720000pt;}
.y143{bottom:89.600000pt;}
.yff{bottom:90.720000pt;}
.y34{bottom:93.440000pt;}
.y90{bottom:94.560000pt;}
.y166{bottom:96.320000pt;}
.y133{bottom:97.120000pt;}
.y6a{bottom:97.920000pt;}
.y182{bottom:104.320000pt;}
.ya9{bottom:106.080000pt;}
.y142{bottom:107.200000pt;}
.yfe{bottom:108.320000pt;}
.y33{bottom:111.040000pt;}
.yb4{bottom:112.160000pt;}
.y165{bottom:113.952000pt;}
.y132{bottom:114.752000pt;}
.y69{bottom:115.712000pt;}
.y181{bottom:121.952000pt;}
.ya8{bottom:123.712000pt;}
.y141{bottom:124.512000pt;}
.yfd{bottom:126.112000pt;}
.y131{bottom:127.872000pt;}
.y32{bottom:128.672000pt;}
.yb3{bottom:129.792000pt;}
.y8c{bottom:130.432000pt;}
.y164{bottom:131.712000pt;}
.y68{bottom:133.312000pt;}
.yce{bottom:139.226667pt;}
.y180{bottom:139.706667pt;}
.ya7{bottom:141.306667pt;}
.yfc{bottom:143.706667pt;}
.y31{bottom:146.266667pt;}
.yb2{bottom:147.386667pt;}
.y163{bottom:149.306667pt;}
.y67{bottom:150.906667pt;}
.y17f{bottom:157.306667pt;}
.ya6{bottom:159.066667pt;}
.yfb{bottom:161.306667pt;}
.y30{bottom:163.866667pt;}
.y130{bottom:164.666667pt;}
.yb1{bottom:164.986667pt;}
.y162{bottom:166.906667pt;}
.y66{bottom:168.506667pt;}
.y17e{bottom:174.906667pt;}
.ya5{bottom:176.666667pt;}
.yfa{bottom:178.906667pt;}
.y2f{bottom:181.626667pt;}
.yb0{bottom:182.746667pt;}
.y12f{bottom:182.906667pt;}
.y8a{bottom:184.026667pt;}
.y161{bottom:184.506667pt;}
.y65{bottom:185.786667pt;}
.y17d{bottom:192.506667pt;}
.ycd{bottom:192.826667pt;}
.ya4{bottom:194.266667pt;}
.yf9{bottom:197.466667pt;}
.y2e{bottom:199.226667pt;}
.yaf{bottom:200.346667pt;}
.y12e{bottom:201.306667pt;}
.y160{bottom:202.106667pt;}
.y17c{bottom:210.106667pt;}
.y64{bottom:211.866667pt;}
.yf8{bottom:216.186667pt;}
.y2d{bottom:216.826667pt;}
.yae{bottom:217.626667pt;}
.y12d{bottom:219.546667pt;}
.y15f{bottom:219.866667pt;}
.y17b{bottom:227.866667pt;}
.y63{bottom:229.466667pt;}
.yf7{bottom:233.786667pt;}
.y2c{bottom:234.426667pt;}
.y15e{bottom:237.466667pt;}
.y89{bottom:237.626667pt;}
.y12c{bottom:237.946667pt;}
.y17a{bottom:245.466667pt;}
.ycc{bottom:246.426667pt;}
.y62{bottom:247.066667pt;}
.ya3{bottom:247.226667pt;}
.yf6{bottom:251.386667pt;}
.y2b{bottom:252.026667pt;}
.y15d{bottom:255.066667pt;}
.y12b{bottom:256.186667pt;}
.y179{bottom:263.066667pt;}
.y61{bottom:264.666667pt;}
.ya2{bottom:264.826667pt;}
.y2a{bottom:269.786667pt;}
.yf5{bottom:269.946667pt;}
.y15c{bottom:272.666667pt;}
.y12a{bottom:274.586667pt;}
.y178{bottom:280.346667pt;}
.y185{bottom:280.666667pt;}
.y60{bottom:282.266667pt;}
.ya1{bottom:282.426667pt;}
.y29{bottom:287.386667pt;}
.yf4{bottom:288.506667pt;}
.y15b{bottom:290.266667pt;}
.y88{bottom:291.226667pt;}
.y129{bottom:292.826667pt;}
.y177{bottom:298.266667pt;}
.yca{bottom:299.866667pt;}
.y5f{bottom:300.026667pt;}
.y28{bottom:304.986667pt;}
.yf3{bottom:307.066667pt;}
.y15a{bottom:308.026667pt;}
.y128{bottom:311.226667pt;}
.y176{bottom:316.026667pt;}
.ya0{bottom:317.306667pt;}
.y5e{bottom:317.626667pt;}
.y27{bottom:322.586667pt;}
.yc9{bottom:323.386667pt;}
.y159{bottom:325.626667pt;}
.yf2{bottom:325.786667pt;}
.y127{bottom:329.466667pt;}
.y175{bottom:333.626667pt;}
.y9f{bottom:335.066667pt;}
.y5d{bottom:335.226667pt;}
.y26{bottom:340.226667pt;}
.yc8{bottom:341.346667pt;}
.y158{bottom:343.266667pt;}
.yf1{bottom:343.426667pt;}
.y85{bottom:344.706667pt;}
.y124{bottom:347.906667pt;}
.y174{bottom:350.946667pt;}
.y184{bottom:351.266667pt;}
.y9e{bottom:352.706667pt;}
.y5c{bottom:352.866667pt;}
.y25{bottom:357.986667pt;}
.yc7{bottom:358.946667pt;}
.y157{bottom:360.866667pt;}
.yf0{bottom:361.026667pt;}
.y126{bottom:366.306667pt;}
.y9d{bottom:367.586667pt;}
.y173{bottom:368.866667pt;}
.y5b{bottom:370.466667pt;}
.y24{bottom:375.586667pt;}
.yc6{bottom:376.706667pt;}
.y156{bottom:378.466667pt;}
.yef{bottom:378.626667pt;}
.y84{bottom:380.706667pt;}
.y172{bottom:386.466667pt;}
.y5a{bottom:388.226667pt;}
.y123{bottom:389.666667pt;}
.y23{bottom:393.186667pt;}
.yc5{bottom:394.306667pt;}
.yee{bottom:395.906667pt;}
.y155{bottom:396.226667pt;}
.y171{bottom:404.226667pt;}
.y59{bottom:405.506667pt;}
.y122{bottom:407.586667pt;}
.y22{bottom:410.786667pt;}
.yc4{bottom:411.906667pt;}
.y154{bottom:413.826667pt;}
.y80{bottom:416.706667pt;}
.y170{bottom:421.826667pt;}
.yed{bottom:421.986667pt;}
.y121{bottom:425.346667pt;}
.y21{bottom:428.386667pt;}
.yc3{bottom:429.186667pt;}
.y58{bottom:431.426667pt;}
.y16f{bottom:439.426667pt;}
.yec{bottom:439.586667pt;}
.y120{bottom:442.946667pt;}
.y20{bottom:446.146667pt;}
.y57{bottom:449.026667pt;}
.yc2{bottom:455.106667pt;}
.y16e{bottom:457.026667pt;}
.yeb{bottom:457.186667pt;}
.y11f{bottom:460.546667pt;}
.y1f{bottom:463.746667pt;}
.y56{bottom:466.626667pt;}
.y7e{bottom:470.146667pt;}
.yc1{bottom:472.866667pt;}
.y16d{bottom:474.626667pt;}
.yea{bottom:474.786667pt;}
.y11e{bottom:478.146667pt;}
.y140{bottom:480.706667pt;}
.y1e{bottom:481.346667pt;}
.y55{bottom:484.386667pt;}
.yc0{bottom:490.466667pt;}
.ye9{bottom:492.386667pt;}
.y7d{bottom:493.986667pt;}
.y11d{bottom:495.746667pt;}
.y13f{bottom:498.306667pt;}
.y1d{bottom:498.946667pt;}
.y54{bottom:501.986667pt;}
.ybf{bottom:508.066667pt;}
.y16c{bottom:509.986667pt;}
.ye8{bottom:510.146667pt;}
.y146{bottom:511.426667pt;}
.y7c{bottom:511.586667pt;}
.y11c{bottom:513.346667pt;}
.y1c{bottom:516.546667pt;}
.y53{bottom:519.586667pt;}
.ybe{bottom:525.666667pt;}
.y16b{bottom:527.586667pt;}
.ye7{bottom:527.746667pt;}
.y7b{bottom:529.186667pt;}
.y11b{bottom:531.106667pt;}
.y1b{bottom:533.986667pt;}
.y52{bottom:537.186667pt;}
.ybd{bottom:543.266667pt;}
.y16a{bottom:545.186667pt;}
.ye6{bottom:545.346667pt;}
.y7a{bottom:546.786667pt;}
.y11a{bottom:548.706667pt;}
.y1a{bottom:551.586667pt;}
.y51{bottom:554.786667pt;}
.ybc{bottom:560.866667pt;}
.y169{bottom:562.813333pt;}
.ye5{bottom:562.973333pt;}
.y79{bottom:564.253333pt;}
.y145{bottom:565.053333pt;}
.y119{bottom:566.333333pt;}
.y19{bottom:571.613333pt;}
.y50{bottom:572.573333pt;}
.ybb{bottom:578.653333pt;}
.ye4{bottom:580.573333pt;}
.y118{bottom:583.933333pt;}
.y18{bottom:589.213333pt;}
.yad{bottom:589.853333pt;}
.y4f{bottom:590.173333pt;}
.yba{bottom:596.253333pt;}
.y168{bottom:598.173333pt;}
.ye3{bottom:598.333333pt;}
.y117{bottom:601.533333pt;}
.y4e{bottom:607.453333pt;}
.y78{bottom:607.773333pt;}
.yb9{bottom:613.853333pt;}
.y17{bottom:614.813333pt;}
.yac{bottom:615.453333pt;}
.y167{bottom:615.773333pt;}
.ye2{bottom:615.933333pt;}
.y144{bottom:618.653333pt;}
.y116{bottom:619.293333pt;}
.y77{bottom:625.373333pt;}
.yb8{bottom:631.453333pt;}
.y16{bottom:632.413333pt;}
.y4d{bottom:633.373333pt;}
.ye1{bottom:633.533333pt;}
.y115{bottom:636.893333pt;}
.y76{bottom:642.973333pt;}
.yb7{bottom:649.053333pt;}
.y15{bottom:650.013333pt;}
.y4c{bottom:650.973333pt;}
.ye0{bottom:651.133333pt;}
.y114{bottom:655.453333pt;}
.y13e{bottom:656.573333pt;}
.y75{bottom:660.733333pt;}
.yb6{bottom:666.813333pt;}
.y14{bottom:667.773333pt;}
.y4b{bottom:668.733333pt;}
.y113{bottom:674.013333pt;}
.y74{bottom:678.333333pt;}
.yb5{bottom:684.413333pt;}
.y13{bottom:685.373333pt;}
.y4a{bottom:686.333333pt;}
.ydf{bottom:686.493333pt;}
.y13d{bottom:692.413333pt;}
.y112{bottom:692.573333pt;}
.y73{bottom:695.933333pt;}
.y152{bottom:702.013333pt;}
.y12{bottom:702.973333pt;}
.y49{bottom:703.933333pt;}
.yde{bottom:704.093333pt;}
.y111{bottom:711.293333pt;}
.y72{bottom:713.533333pt;}
.y9c{bottom:718.173333pt;}
.y151{bottom:719.613333pt;}
.y11{bottom:720.573333pt;}
.y48{bottom:721.533333pt;}
.ydd{bottom:721.693333pt;}
.y13c{bottom:728.413333pt;}
.y110{bottom:728.893333pt;}
.y71{bottom:731.133333pt;}
.y9b{bottom:735.933333pt;}
.y150{bottom:737.213333pt;}
.y10{bottom:738.173333pt;}
.y47{bottom:739.133333pt;}
.ydc{bottom:739.293333pt;}
.y10f{bottom:746.493333pt;}
.y70{bottom:748.893333pt;}
.y9a{bottom:753.533333pt;}
.y14f{bottom:754.973333pt;}
.yf{bottom:755.933333pt;}
.y46{bottom:756.893333pt;}
.y10e{bottom:759.293333pt;}
.y13a{bottom:764.253333pt;}
.y6f{bottom:766.493333pt;}
.y99{bottom:771.133333pt;}
.y14e{bottom:772.573333pt;}
.ye{bottom:773.533333pt;}
.y45{bottom:774.493333pt;}
.ydb{bottom:774.653333pt;}
.y10d{bottom:777.693333pt;}
.y6e{bottom:784.093333pt;}
.y98{bottom:788.453333pt;}
.y14d{bottom:790.213333pt;}
.yd{bottom:791.173333pt;}
.y44{bottom:792.133333pt;}
.yda{bottom:792.293333pt;}
.y10c{bottom:795.973333pt;}
.y139{bottom:800.293333pt;}
.y6d{bottom:801.733333pt;}
.y97{bottom:806.373333pt;}
.y14c{bottom:807.813333pt;}
.y153{bottom:809.413333pt;}
.y43{bottom:809.733333pt;}
.yd9{bottom:809.893333pt;}
.yc{bottom:810.853333pt;}
.y10b{bottom:814.213333pt;}
.y6c{bottom:819.013333pt;}
.y96{bottom:819.333333pt;}
.y188{bottom:822.693333pt;}
.y14b{bottom:825.413333pt;}
.y42{bottom:827.013333pt;}
.yab{bottom:827.333333pt;}
.yd8{bottom:827.493333pt;}
.y10a{bottom:832.613333pt;}
.yb{bottom:833.093333pt;}
.y138{bottom:836.293333pt;}
.y187{bottom:842.213333pt;}
.y14a{bottom:843.173333pt;}
.y6b{bottom:844.773333pt;}
.y41{bottom:845.093333pt;}
.ya{bottom:846.373333pt;}
.y109{bottom:850.853333pt;}
.y149{bottom:860.773333pt;}
.y186{bottom:861.573333pt;}
.y40{bottom:862.693333pt;}
.yd7{bottom:862.853333pt;}
.y9{bottom:865.093333pt;}
.y108{bottom:869.253333pt;}
.y137{bottom:872.133333pt;}
.y95{bottom:872.773333pt;}
.y148{bottom:879.333333pt;}
.y3f{bottom:880.293333pt;}
.yd6{bottom:880.453333pt;}
.y8{bottom:886.053333pt;}
.y107{bottom:887.653333pt;}
.y147{bottom:896.933333pt;}
.y3e{bottom:897.893333pt;}
.yd5{bottom:898.053333pt;}
.y106{bottom:905.893333pt;}
.y136{bottom:908.133333pt;}
.yd4{bottom:910.853333pt;}
.y7{bottom:914.213333pt;}
.y3d{bottom:915.493333pt;}
.y105{bottom:924.293333pt;}
.y94{bottom:926.373333pt;}
.y3c{bottom:933.253333pt;}
.y104{bottom:942.693333pt;}
.y135{bottom:943.973333pt;}
.y5{bottom:946.213333pt;}
.yd3{bottom:946.853333pt;}
.y3b{bottom:950.853333pt;}
.y103{bottom:960.933333pt;}
.y3a{bottom:968.453333pt;}
.y4{bottom:971.173333pt;}
.y100{bottom:979.333333pt;}
.y92{bottom:979.973333pt;}
.y39{bottom:986.053333pt;}
.y3{bottom:995.973333pt;}
.y102{bottom:997.573333pt;}
.yd1{bottom:1000.453333pt;}
.y38{bottom:1003.653333pt;}
.y2{bottom:1020.640000pt;}
.yaa{bottom:1021.120000pt;}
.y37{bottom:1021.440000pt;}
.y36{bottom:1040.320000pt;}
.y1{bottom:1046.880000pt;}
.y35{bottom:1060.960000pt;}
.h1e{height:2.512500pt;}
.hc{height:17.600000pt;}
.h19{height:17.632000pt;}
.h15{height:17.760000pt;}
.h1b{height:17.792000pt;}
.h17{height:32.352000pt;}
.h6{height:33.918750pt;}
.he{height:35.200000pt;}
.h12{height:35.232000pt;}
.hf{height:35.360000pt;}
.h1c{height:35.392000pt;}
.h18{height:35.872000pt;}
.h1a{height:36.000000pt;}
.h14{height:36.883125pt;}
.hb{height:37.090625pt;}
.ha{height:52.108438pt;}
.h7{height:52.134375pt;}
.hd{height:52.800000pt;}
.h10{height:52.832000pt;}
.h11{height:52.960000pt;}
.h16{height:52.992000pt;}
.h5{height:53.535000pt;}
.h13{height:54.598989pt;}
.h8{height:55.298750pt;}
.h4{height:57.787500pt;}
.h3{height:59.340000pt;}
.h9{height:60.288750pt;}
.h1d{height:74.912000pt;}
.h2{height:85.785000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.wf{width:37.280000pt;}
.we{width:37.440000pt;}
.w10{width:37.600000pt;}
.wc{width:37.632000pt;}
.wd{width:37.760000pt;}
.w16{width:38.240000pt;}
.w15{width:38.400000pt;}
.w14{width:38.432000pt;}
.w11{width:40.000000pt;}
.w18{width:40.800000pt;}
.w17{width:40.960000pt;}
.w3{width:42.912000pt;}
.w19{width:47.232000pt;}
.w22{width:47.712000pt;}
.w24{width:53.280000pt;}
.w1b{width:54.400000pt;}
.w20{width:64.160000pt;}
.w26{width:65.280000pt;}
.w1e{width:68.160000pt;}
.w25{width:71.200000pt;}
.w1f{width:71.232000pt;}
.w1c{width:71.840000pt;}
.w1d{width:74.432000pt;}
.w6{width:80.352000pt;}
.wa{width:80.640000pt;}
.w12{width:82.240000pt;}
.w21{width:90.752000pt;}
.w27{width:92.032000pt;}
.w1a{width:111.872000pt;}
.w23{width:113.312000pt;}
.w8{width:136.346667pt;}
.w7{width:137.786667pt;}
.w28{width:187.426667pt;}
.w4{width:193.786667pt;}
.w5{width:364.866667pt;}
.w9{width:387.453333pt;}
.wb{width:464.093333pt;}
.w13{width:472.733333pt;}
.w29{width:516.413333pt;}
.w1{width:794.000000pt;}
.w2{width:794.079988pt;}
.w0{width:794.080000pt;}
.x0{left:0.000000pt;}
.x54{left:7.200000pt;}
.x37{left:13.152000pt;}
.x19{left:31.514667pt;}
.x52{left:40.800000pt;}
.x5{left:46.879988pt;}
.x1{left:48.159988pt;}
.x9{left:50.239988pt;}
.x14{left:54.079988pt;}
.x2{left:56.159988pt;}
.x12{left:57.919988pt;}
.x7{left:58.879988pt;}
.x3{left:59.999988pt;}
.x8{left:62.399988pt;}
.x25{left:63.999988pt;}
.x6{left:66.079988pt;}
.x4{left:67.199988pt;}
.xa{left:68.479988pt;}
.x40{left:69.919988pt;}
.xb{left:71.999988pt;}
.x17{left:78.111988pt;}
.x41{left:82.271988pt;}
.x3d{left:84.031988pt;}
.x3f{left:96.031988pt;}
.xc{left:103.232000pt;}
.x38{left:114.272000pt;}
.x30{left:115.232000pt;}
.x26{left:119.232000pt;}
.x18{left:124.352000pt;}
.x3e{left:130.431988pt;}
.x42{left:134.266655pt;}
.x43{left:155.066655pt;}
.x53{left:171.226667pt;}
.x27{left:202.106667pt;}
.x15{left:204.026667pt;}
.x1a{left:205.626667pt;}
.x44{left:225.986655pt;}
.x31{left:227.746667pt;}
.x36{left:237.506655pt;}
.x28{left:241.186667pt;}
.x1b{left:243.906667pt;}
.x45{left:278.306655pt;}
.x10{left:280.386655pt;}
.x1c{left:282.306667pt;}
.x13{left:283.266655pt;}
.x46{left:288.546655pt;}
.xd{left:297.666667pt;}
.x29{left:319.266667pt;}
.x1d{left:320.546667pt;}
.x16{left:341.026667pt;}
.x39{left:354.306667pt;}
.x32{left:355.266667pt;}
.x47{left:356.706655pt;}
.x1e{left:358.466667pt;}
.x48{left:366.946655pt;}
.x11{left:397.053321pt;}
.x49{left:406.333321pt;}
.x3a{left:426.333333pt;}
.x33{left:430.493333pt;}
.x1f{left:434.973333pt;}
.x2a{left:436.253333pt;}
.x4a{left:438.013321pt;}
.x4b{left:458.653321pt;}
.x20{left:473.053333pt;}
.x2b{left:475.293333pt;}
.x3b{left:498.333333pt;}
.x34{left:499.293333pt;}
.x21{left:511.293333pt;}
.x2c{left:514.173333pt;}
.x4c{left:517.213322pt;}
.x4d{left:537.893321pt;}
.x22{left:549.573333pt;}
.x2d{left:553.253333pt;}
.x3c{left:570.373333pt;}
.x35{left:571.333333pt;}
.x23{left:590.213333pt;}
.x2e{left:594.853333pt;}
.x4e{left:600.453322pt;}
.x4f{left:621.093322pt;}
.x24{left:631.013333pt;}
.x2f{left:636.453333pt;}
.x50{left:644.613321pt;}
.xf{left:650.053322pt;}
.xe{left:663.173333pt;}
.x51{left:665.093322pt;}
}




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