
    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_45b2812263730563513809e6.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.919922;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_ff438e9832c15d534fc2a745.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.916992;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_a4d64c994ec9276f46148ca1.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.704102;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_37ff8836e1400677f6699f84.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.932129;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_3907fcb07d7c33855604da43.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.926758;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_85d35c375b2289879082eb4a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.209325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209325,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);}
.m3{transform:matrix(0.253286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253286,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-18.000000px;}
.ws8{word-spacing:-3.917554px;}
.ws9{word-spacing:-3.882494px;}
.wsa{word-spacing:-3.837325px;}
.wsb{word-spacing:-3.743803px;}
.wsc{word-spacing:-3.650281px;}
.wsd{word-spacing:-3.556758px;}
.ws6{word-spacing:-2.376000px;}
.ws5{word-spacing:-2.364000px;}
.ws4{word-spacing:-2.256000px;}
.ws7{word-spacing:-2.052000px;}
.ws1{word-spacing:0.000000px;}
.ws3{word-spacing:107.280000px;}
.ws2{word-spacing:860.256000px;}
._5{margin-left:-9.216000px;}
._25{margin-left:-6.552000px;}
._1{margin-left:-4.764000px;}
._17{margin-left:-3.732000px;}
._3{margin-left:-2.664000px;}
._0{margin-left:-1.368000px;}
._2{width:1.320000px;}
._4{width:2.532000px;}
._19{width:17.472000px;}
._24{width:23.436000px;}
._8{width:39.816000px;}
._2e{width:48.567807px;}
._a{width:55.224000px;}
._6{width:57.312000px;}
._e{width:59.148000px;}
._c{width:67.872000px;}
._b{width:72.024000px;}
._2d{width:82.570033px;}
._35{width:85.404731px;}
._9{width:87.360000px;}
._2b{width:89.145629px;}
._d{width:93.648000px;}
._27{width:98.045284px;}
._2c{width:116.565092px;}
._34{width:118.693133px;}
._20{width:141.348000px;}
._1f{width:143.736000px;}
._10{width:147.936000px;}
._29{width:150.560152px;}
._f{width:152.124000px;}
._2a{width:153.692869px;}
._30{width:156.872206px;}
._1e{width:161.136000px;}
._32{width:182.046553px;}
._31{width:185.269938px;}
._12{width:187.968000px;}
._11{width:192.036000px;}
._33{width:196.136599px;}
._13{width:209.616000px;}
._14{width:295.464000px;}
._1d{width:306.564000px;}
._15{width:377.472000px;}
._23{width:454.584000px;}
._16{width:481.152000px;}
._7{width:509.376000px;}
._2f{width:510.998355px;}
._26{width:512.517690px;}
._28{width:565.973778px;}
._1b{width:659.220000px;}
._18{width:983.616000px;}
._1c{width:991.680000px;}
._22{width:1139.364000px;}
._21{width:1207.788000px;}
._1a{width:1227.552000px;}
.fc2{color:rgb(47,111,167);}
.fc1{color:rgb(0,0,128);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:58.752000px;}
.fs1{font-size:60.000000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.042000px;}
.y47{bottom:5.982000px;}
.y46{bottom:25.104000px;}
.y5b{bottom:43.731000px;}
.y45{bottom:44.227500px;}
.y5a{bottom:62.497500px;}
.y44{bottom:63.349500px;}
.y59{bottom:81.262500px;}
.y43{bottom:82.471500px;}
.y58{bottom:100.029000px;}
.y42{bottom:101.593500px;}
.y57{bottom:118.794000px;}
.y41{bottom:120.717000px;}
.y56{bottom:137.560500px;}
.y40{bottom:139.839000px;}
.y55{bottom:156.325500px;}
.y3f{bottom:158.961000px;}
.y39{bottom:161.791500px;}
.y54{bottom:175.092000px;}
.y3e{bottom:178.083000px;}
.y3a{bottom:189.058500px;}
.y53{bottom:193.857000px;}
.y3d{bottom:197.205000px;}
.y52{bottom:212.623500px;}
.y3c{bottom:216.328500px;}
.y51{bottom:231.388500px;}
.y3b{bottom:235.450500px;}
.y38{bottom:246.541500px;}
.y50{bottom:250.155000px;}
.y19{bottom:260.491500px;}
.y4f{bottom:268.920000px;}
.y37{bottom:277.591500px;}
.y36{bottom:308.641500px;}
.y18{bottom:322.591500px;}
.y35{bottom:339.691500px;}
.y17{bottom:353.641500px;}
.y34{bottom:370.741500px;}
.y16{bottom:384.691500px;}
.y33{bottom:401.791500px;}
.y15{bottom:415.741500px;}
.y32{bottom:432.841500px;}
.y14{bottom:446.791500px;}
.y31{bottom:463.891500px;}
.y13{bottom:477.841500px;}
.y30{bottom:494.941500px;}
.y12{bottom:508.891500px;}
.y11{bottom:539.941500px;}
.y2f{bottom:557.041500px;}
.y2e{bottom:588.091500px;}
.y4d{bottom:600.616500px;}
.y10{bottom:602.041500px;}
.y2d{bottom:619.141500px;}
.y4c{bottom:631.666500px;}
.yf{bottom:633.091500px;}
.y2c{bottom:650.191500px;}
.ye{bottom:664.141500px;}
.y2b{bottom:681.241500px;}
.y4b{bottom:693.766500px;}
.yd{bottom:695.191500px;}
.y2a{bottom:712.291500px;}
.y4a{bottom:724.816500px;}
.yc{bottom:726.241500px;}
.y29{bottom:743.341500px;}
.yb{bottom:757.291500px;}
.y28{bottom:774.391500px;}
.y49{bottom:786.916500px;}
.ya{bottom:788.341500px;}
.y27{bottom:805.441500px;}
.y26{bottom:846.766500px;}
.y48{bottom:849.016500px;}
.y9{bottom:850.441500px;}
.y25{bottom:871.066500px;}
.y4e{bottom:876.283500px;}
.y8{bottom:881.491500px;}
.y24{bottom:891.766500px;}
.y23{bottom:912.466500px;}
.y7{bottom:912.541500px;}
.y22{bottom:933.166500px;}
.y6{bottom:943.591500px;}
.y21{bottom:953.866500px;}
.y20{bottom:974.566500px;}
.y5{bottom:974.641500px;}
.y1f{bottom:995.266500px;}
.y1e{bottom:1015.966500px;}
.y1d{bottom:1036.666500px;}
.y4{bottom:1036.741500px;}
.y1c{bottom:1057.366500px;}
.y1b{bottom:1078.066500px;}
.y1a{bottom:1098.766500px;}
.y3{bottom:1098.841500px;}
.y2{bottom:1129.891500px;}
.h9{height:42.773062px;}
.h6{height:43.681641px;}
.h7{height:49.992188px;}
.h3{height:50.695312px;}
.h4{height:52.171875px;}
.h5{height:249.600000px;}
.h8{height:301.500000px;}
.h2{height:1262.791500px;}
.h0{height:1262.834646px;}
.h1{height:1263.000000px;}
.w3{width:338.325000px;}
.w4{width:417.600000px;}
.w2{width:892.912500px;}
.w0{width:892.955906px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:1.294500px;}
.xa{left:70.570500px;}
.x4{left:85.200000px;}
.x6{left:99.148500px;}
.x8{left:136.215000px;}
.x9{left:146.323500px;}
.x1{left:157.500000px;}
.x2{left:354.450000px;}
.x3{left:393.450000px;}
.x5{left:395.700000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws8{word-spacing:-3.482270pt;}
.ws9{word-spacing:-3.451106pt;}
.wsa{word-spacing:-3.410956pt;}
.wsb{word-spacing:-3.327825pt;}
.wsc{word-spacing:-3.244694pt;}
.wsd{word-spacing:-3.161563pt;}
.ws6{word-spacing:-2.112000pt;}
.ws5{word-spacing:-2.101333pt;}
.ws4{word-spacing:-2.005333pt;}
.ws7{word-spacing:-1.824000pt;}
.ws1{word-spacing:0.000000pt;}
.ws3{word-spacing:95.360000pt;}
.ws2{word-spacing:764.672000pt;}
._5{margin-left:-8.192000pt;}
._25{margin-left:-5.824000pt;}
._1{margin-left:-4.234667pt;}
._17{margin-left:-3.317333pt;}
._3{margin-left:-2.368000pt;}
._0{margin-left:-1.216000pt;}
._2{width:1.173333pt;}
._4{width:2.250667pt;}
._19{width:15.530667pt;}
._24{width:20.832000pt;}
._8{width:35.392000pt;}
._2e{width:43.171384pt;}
._a{width:49.088000pt;}
._6{width:50.944000pt;}
._e{width:52.576000pt;}
._c{width:60.330667pt;}
._b{width:64.021333pt;}
._2d{width:73.395585pt;}
._35{width:75.915316pt;}
._9{width:77.653333pt;}
._2b{width:79.240559pt;}
._d{width:83.242667pt;}
._27{width:87.151363pt;}
._2c{width:103.613415pt;}
._34{width:105.505007pt;}
._20{width:125.642667pt;}
._1f{width:127.765333pt;}
._10{width:131.498667pt;}
._29{width:133.831246pt;}
._f{width:135.221333pt;}
._2a{width:136.615884pt;}
._30{width:139.441961pt;}
._1e{width:143.232000pt;}
._32{width:161.819158pt;}
._31{width:164.684390pt;}
._12{width:167.082667pt;}
._11{width:170.698667pt;}
._33{width:174.343644pt;}
._13{width:186.325333pt;}
._14{width:262.634667pt;}
._1d{width:272.501333pt;}
._15{width:335.530667pt;}
._23{width:404.074667pt;}
._16{width:427.690667pt;}
._7{width:452.778667pt;}
._2f{width:454.220760pt;}
._26{width:455.571280pt;}
._28{width:503.087802pt;}
._1b{width:585.973333pt;}
._18{width:874.325333pt;}
._1c{width:881.493333pt;}
._22{width:1012.768000pt;}
._21{width:1073.589333pt;}
._1a{width:1091.157333pt;}
.fs2{font-size:52.224000pt;}
.fs1{font-size:53.333333pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.037333pt;}
.y47{bottom:5.317333pt;}
.y46{bottom:22.314667pt;}
.y5b{bottom:38.872000pt;}
.y45{bottom:39.313333pt;}
.y5a{bottom:55.553333pt;}
.y44{bottom:56.310667pt;}
.y59{bottom:72.233333pt;}
.y43{bottom:73.308000pt;}
.y58{bottom:88.914667pt;}
.y42{bottom:90.305333pt;}
.y57{bottom:105.594667pt;}
.y41{bottom:107.304000pt;}
.y56{bottom:122.276000pt;}
.y40{bottom:124.301333pt;}
.y55{bottom:138.956000pt;}
.y3f{bottom:141.298667pt;}
.y39{bottom:143.814667pt;}
.y54{bottom:155.637333pt;}
.y3e{bottom:158.296000pt;}
.y3a{bottom:168.052000pt;}
.y53{bottom:172.317333pt;}
.y3d{bottom:175.293333pt;}
.y52{bottom:188.998667pt;}
.y3c{bottom:192.292000pt;}
.y51{bottom:205.678667pt;}
.y3b{bottom:209.289333pt;}
.y38{bottom:219.148000pt;}
.y50{bottom:222.360000pt;}
.y19{bottom:231.548000pt;}
.y4f{bottom:239.040000pt;}
.y37{bottom:246.748000pt;}
.y36{bottom:274.348000pt;}
.y18{bottom:286.748000pt;}
.y35{bottom:301.948000pt;}
.y17{bottom:314.348000pt;}
.y34{bottom:329.548000pt;}
.y16{bottom:341.948000pt;}
.y33{bottom:357.148000pt;}
.y15{bottom:369.548000pt;}
.y32{bottom:384.748000pt;}
.y14{bottom:397.148000pt;}
.y31{bottom:412.348000pt;}
.y13{bottom:424.748000pt;}
.y30{bottom:439.948000pt;}
.y12{bottom:452.348000pt;}
.y11{bottom:479.948000pt;}
.y2f{bottom:495.148000pt;}
.y2e{bottom:522.748000pt;}
.y4d{bottom:533.881333pt;}
.y10{bottom:535.148000pt;}
.y2d{bottom:550.348000pt;}
.y4c{bottom:561.481333pt;}
.yf{bottom:562.748000pt;}
.y2c{bottom:577.948000pt;}
.ye{bottom:590.348000pt;}
.y2b{bottom:605.548000pt;}
.y4b{bottom:616.681333pt;}
.yd{bottom:617.948000pt;}
.y2a{bottom:633.148000pt;}
.y4a{bottom:644.281333pt;}
.yc{bottom:645.548000pt;}
.y29{bottom:660.748000pt;}
.yb{bottom:673.148000pt;}
.y28{bottom:688.348000pt;}
.y49{bottom:699.481333pt;}
.ya{bottom:700.748000pt;}
.y27{bottom:715.948000pt;}
.y26{bottom:752.681333pt;}
.y48{bottom:754.681333pt;}
.y9{bottom:755.948000pt;}
.y25{bottom:774.281333pt;}
.y4e{bottom:778.918667pt;}
.y8{bottom:783.548000pt;}
.y24{bottom:792.681333pt;}
.y23{bottom:811.081333pt;}
.y7{bottom:811.148000pt;}
.y22{bottom:829.481333pt;}
.y6{bottom:838.748000pt;}
.y21{bottom:847.881333pt;}
.y20{bottom:866.281333pt;}
.y5{bottom:866.348000pt;}
.y1f{bottom:884.681333pt;}
.y1e{bottom:903.081333pt;}
.y1d{bottom:921.481333pt;}
.y4{bottom:921.548000pt;}
.y1c{bottom:939.881333pt;}
.y1b{bottom:958.281333pt;}
.y1a{bottom:976.681333pt;}
.y3{bottom:976.748000pt;}
.y2{bottom:1004.348000pt;}
.h9{height:38.020500pt;}
.h6{height:38.828125pt;}
.h7{height:44.437500pt;}
.h3{height:45.062500pt;}
.h4{height:46.375000pt;}
.h5{height:221.866667pt;}
.h8{height:268.000000pt;}
.h2{height:1122.481333pt;}
.h0{height:1122.519685pt;}
.h1{height:1122.666667pt;}
.w3{width:300.733333pt;}
.w4{width:371.200000pt;}
.w2{width:793.700000pt;}
.w0{width:793.738583pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:1.150667pt;}
.xa{left:62.729333pt;}
.x4{left:75.733333pt;}
.x6{left:88.132000pt;}
.x8{left:121.080000pt;}
.x9{left:130.065333pt;}
.x1{left:140.000000pt;}
.x2{left:315.066667pt;}
.x3{left:349.733333pt;}
.x5{left:351.733333pt;}
}




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