
    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_5b6388ba46f288c58d6b6788.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.967285;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_e9e7ca8d60ef77d377e49c2c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.966309;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_94bb69809707751d8c448a2e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.750000;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_4492542d853dfd7200537a29.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.971191;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_74702ca845b683243d4ecb2c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.942000;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_3f76a490a49e195c336ff3a2.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.952148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m1{transform:matrix(0.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);}
.m0{transform:matrix(0.250392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250392,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-138.178800px;}
.v1{vertical-align:-77.463600px;}
.v2{vertical-align:-27.808800px;}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:-1.440000px;}
.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;}
}
.ws5{word-spacing:-75.906982px;}
.ws0{word-spacing:-61.056000px;}
.ws6{word-spacing:-50.880000px;}
.ws3{word-spacing:-33.072000px;}
.ws1b{word-spacing:-8.880000px;}
.ws1e{word-spacing:-6.960000px;}
.ws8{word-spacing:-4.320000px;}
.ws21{word-spacing:-2.880000px;}
.ws7{word-spacing:0.000000px;}
.ws19{word-spacing:0.720000px;}
.ws1c{word-spacing:4.560000px;}
.ws11{word-spacing:5.760000px;}
.ws14{word-spacing:7.200000px;}
.wsf{word-spacing:8.880000px;}
.ws1a{word-spacing:20.400000px;}
.ws1f{word-spacing:25.920000px;}
.ws22{word-spacing:30.960000px;}
.ws1d{word-spacing:31.920000px;}
.ws15{word-spacing:33.600000px;}
.ws9{word-spacing:34.080000px;}
.wsa{word-spacing:35.520000px;}
.ws16{word-spacing:46.800000px;}
.ws17{word-spacing:57.840000px;}
.wsd{word-spacing:65.760000px;}
.ws18{word-spacing:78.000000px;}
.wsc{word-spacing:81.600000px;}
.ws20{word-spacing:97.440000px;}
.wse{word-spacing:100.080000px;}
.wsb{word-spacing:104.640000px;}
.ws13{word-spacing:111.360000px;}
.ws12{word-spacing:131.520000px;}
.ws10{word-spacing:164.880000px;}
.ws1{word-spacing:2125.820995px;}
.ws2{word-spacing:2876.566200px;}
.ws4{word-spacing:5655.774595px;}
._9{margin-left:-132.480000px;}
._8{margin-left:-130.560000px;}
._1a{margin-left:-97.464000px;}
._16{margin-left:-78.360000px;}
._17{margin-left:-77.280000px;}
._e{margin-left:-47.544000px;}
._f{margin-left:-46.056000px;}
._19{margin-left:-31.519800px;}
._1d{margin-left:-30.207600px;}
._1{margin-left:-11.976000px;}
._18{margin-left:-9.360000px;}
._a{margin-left:-8.163600px;}
._10{margin-left:-5.304000px;}
._6{margin-left:-3.840000px;}
._0{margin-left:-2.400000px;}
._3{margin-left:-1.200000px;}
._2{width:1.663800px;}
._15{width:2.760000px;}
._5{width:3.840000px;}
._d{width:5.760000px;}
._4{width:7.056000px;}
._14{width:14.424000px;}
._12{width:56.971200px;}
._11{width:58.800000px;}
._b{width:87.936000px;}
._c{width:88.936200px;}
._13{width:121.872000px;}
._7{width:147.312000px;}
._1b{width:225.000000px;}
._1c{width:226.848000px;}
.fc6{color:transparent;}
.fc5{color:rgb(79,76,77);}
.fc1{color:rgb(5,6,6);}
.fc4{color:rgb(35,31,32);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(20,36,58);}
.fs7{font-size:156.000000px;}
.fsa{font-size:180.000000px;}
.fs6{font-size:205.756800px;}
.fs8{font-size:205.768800px;}
.fsb{font-size:210.000000px;}
.fs3{font-size:236.434200px;}
.fs4{font-size:240.000000px;}
.fs5{font-size:288.000000px;}
.fs2{font-size:324.245400px;}
.fs1{font-size:356.313000px;}
.fs9{font-size:358.051800px;}
.fs0{font-size:377.303400px;}
.y0{bottom:0.000000px;}
.y2a{bottom:14.750250px;}
.y3d{bottom:85.039950px;}
.y29{bottom:140.140800px;}
.y28{bottom:212.140800px;}
.y27{bottom:284.140800px;}
.y3e{bottom:325.016700px;}
.y26{bottom:356.140800px;}
.y21{bottom:367.788600px;}
.y3c{bottom:381.325200px;}
.y20{bottom:439.788600px;}
.y25{bottom:508.702200px;}
.y1f{bottom:511.788600px;}
.y24{bottom:580.702200px;}
.y1e{bottom:583.788600px;}
.y23{bottom:652.702200px;}
.y1d{bottom:655.788600px;}
.y22{bottom:724.702200px;}
.y1c{bottom:727.788600px;}
.y38{bottom:841.691850px;}
.y37{bottom:895.691850px;}
.y3a{bottom:948.746850px;}
.y36{bottom:949.691850px;}
.y39{bottom:1002.746850px;}
.y35{bottom:1003.691850px;}
.y1b{bottom:1446.369150px;}
.y3f{bottom:1514.951700px;}
.y34{bottom:1875.161850px;}
.y3b{bottom:1934.271900px;}
.y2e{bottom:2149.831050px;}
.y2d{bottom:2221.831050px;}
.y2c{bottom:2293.831050px;}
.y19{bottom:2310.555150px;}
.y1a{bottom:2352.648150px;}
.y2b{bottom:2365.831050px;}
.y17{bottom:2497.281750px;}
.y16{bottom:2569.281750px;}
.y15{bottom:2641.281750px;}
.y14{bottom:2713.281750px;}
.y13{bottom:2785.281750px;}
.y12{bottom:2857.281750px;}
.y33{bottom:2906.786850px;}
.y11{bottom:2929.281750px;}
.y32{bottom:2960.786850px;}
.y10{bottom:3001.281750px;}
.y31{bottom:3014.786850px;}
.y30{bottom:3068.786850px;}
.yf{bottom:3073.281750px;}
.y2f{bottom:3122.786850px;}
.yd{bottom:3388.551300px;}
.yc{bottom:3460.551300px;}
.y18{bottom:3493.541700px;}
.yb{bottom:3532.551300px;}
.ya{bottom:3604.551300px;}
.y9{bottom:3676.551300px;}
.y8{bottom:3748.551300px;}
.y7{bottom:3820.551300px;}
.y6{bottom:3892.551300px;}
.y5{bottom:3964.551300px;}
.y3{bottom:4170.459900px;}
.y4{bottom:4245.527759px;}
.y2{bottom:4353.763950px;}
.y1{bottom:4482.114300px;}
.ye{bottom:4891.608450px;}
.h8{height:112.476000px;}
.ha{height:122.080078px;}
.h7{height:148.350653px;}
.hb{height:151.410000px;}
.h5{height:173.040000px;}
.h4{height:180.789042px;}
.h6{height:207.648000px;}
.h3{height:246.350509px;}
.h9{height:258.155348px;}
.h2{height:286.662154px;}
.hc{height:325.016550px;}
.h0{height:5055.585000px;}
.h1{height:5055.750000px;}
.w3{width:65.220000px;}
.w2{width:3575.908500px;}
.w0{width:3575.910000px;}
.w1{width:3576.000000px;}
.x0{left:0.000000px;}
.x15{left:15.001050px;}
.xa{left:55.195350px;}
.x2{left:56.976600px;}
.x1{left:59.566350px;}
.x10{left:72.688050px;}
.x5{left:85.461900px;}
.x3{left:122.833050px;}
.x9{left:650.750250px;}
.x12{left:881.334900px;}
.x6{left:1664.016300px;}
.x8{left:1709.110800px;}
.xc{left:1834.926300px;}
.xb{left:1841.400150px;}
.xf{left:1914.988050px;}
.x11{left:2298.343050px;}
.xe{left:2388.613050px;}
.x7{left:2397.434400px;}
.xd{left:2401.174800px;}
.x4{left:2827.481700px;}
.x13{left:3029.219250px;}
.x16{left:3073.299300px;}
.x14{left:3466.395000px;}
@media print{
.v3{vertical-align:-122.825600pt;}
.v1{vertical-align:-68.856533pt;}
.v2{vertical-align:-24.718933pt;}
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:-1.280000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws5{word-spacing:-67.472873pt;}
.ws0{word-spacing:-54.272000pt;}
.ws6{word-spacing:-45.226667pt;}
.ws3{word-spacing:-29.397333pt;}
.ws1b{word-spacing:-7.893333pt;}
.ws1e{word-spacing:-6.186667pt;}
.ws8{word-spacing:-3.840000pt;}
.ws21{word-spacing:-2.560000pt;}
.ws7{word-spacing:0.000000pt;}
.ws19{word-spacing:0.640000pt;}
.ws1c{word-spacing:4.053333pt;}
.ws11{word-spacing:5.120000pt;}
.ws14{word-spacing:6.400000pt;}
.wsf{word-spacing:7.893333pt;}
.ws1a{word-spacing:18.133333pt;}
.ws1f{word-spacing:23.040000pt;}
.ws22{word-spacing:27.520000pt;}
.ws1d{word-spacing:28.373333pt;}
.ws15{word-spacing:29.866667pt;}
.ws9{word-spacing:30.293333pt;}
.wsa{word-spacing:31.573333pt;}
.ws16{word-spacing:41.600000pt;}
.ws17{word-spacing:51.413333pt;}
.wsd{word-spacing:58.453333pt;}
.ws18{word-spacing:69.333333pt;}
.wsc{word-spacing:72.533333pt;}
.ws20{word-spacing:86.613333pt;}
.wse{word-spacing:88.960000pt;}
.wsb{word-spacing:93.013333pt;}
.ws13{word-spacing:98.986667pt;}
.ws12{word-spacing:116.906667pt;}
.ws10{word-spacing:146.560000pt;}
.ws1{word-spacing:1889.618662pt;}
.ws2{word-spacing:2556.947733pt;}
.ws4{word-spacing:5027.355196pt;}
._9{margin-left:-117.760000pt;}
._8{margin-left:-116.053333pt;}
._1a{margin-left:-86.634667pt;}
._16{margin-left:-69.653333pt;}
._17{margin-left:-68.693333pt;}
._e{margin-left:-42.261333pt;}
._f{margin-left:-40.938667pt;}
._19{margin-left:-28.017600pt;}
._1d{margin-left:-26.851200pt;}
._1{margin-left:-10.645333pt;}
._18{margin-left:-8.320000pt;}
._a{margin-left:-7.256533pt;}
._10{margin-left:-4.714667pt;}
._6{margin-left:-3.413333pt;}
._0{margin-left:-2.133333pt;}
._3{margin-left:-1.066667pt;}
._2{width:1.478933pt;}
._15{width:2.453333pt;}
._5{width:3.413333pt;}
._d{width:5.120000pt;}
._4{width:6.272000pt;}
._14{width:12.821333pt;}
._12{width:50.641067pt;}
._11{width:52.266667pt;}
._b{width:78.165333pt;}
._c{width:79.054400pt;}
._13{width:108.330667pt;}
._7{width:130.944000pt;}
._1b{width:200.000000pt;}
._1c{width:201.642667pt;}
.fs7{font-size:138.666667pt;}
.fsa{font-size:160.000000pt;}
.fs6{font-size:182.894933pt;}
.fs8{font-size:182.905600pt;}
.fsb{font-size:186.666667pt;}
.fs3{font-size:210.163733pt;}
.fs4{font-size:213.333333pt;}
.fs5{font-size:256.000000pt;}
.fs2{font-size:288.218133pt;}
.fs1{font-size:316.722667pt;}
.fs9{font-size:318.268267pt;}
.fs0{font-size:335.380800pt;}
.y0{bottom:0.000000pt;}
.y2a{bottom:13.111333pt;}
.y3d{bottom:75.591067pt;}
.y29{bottom:124.569600pt;}
.y28{bottom:188.569600pt;}
.y27{bottom:252.569600pt;}
.y3e{bottom:288.903733pt;}
.y26{bottom:316.569600pt;}
.y21{bottom:326.923200pt;}
.y3c{bottom:338.955733pt;}
.y20{bottom:390.923200pt;}
.y25{bottom:452.179733pt;}
.y1f{bottom:454.923200pt;}
.y24{bottom:516.179733pt;}
.y1e{bottom:518.923200pt;}
.y23{bottom:580.179733pt;}
.y1d{bottom:582.923200pt;}
.y22{bottom:644.179733pt;}
.y1c{bottom:646.923200pt;}
.y38{bottom:748.170533pt;}
.y37{bottom:796.170533pt;}
.y3a{bottom:843.330533pt;}
.y36{bottom:844.170533pt;}
.y39{bottom:891.330533pt;}
.y35{bottom:892.170533pt;}
.y1b{bottom:1285.661467pt;}
.y3f{bottom:1346.623733pt;}
.y34{bottom:1666.810533pt;}
.y3b{bottom:1719.352800pt;}
.y2e{bottom:1910.960933pt;}
.y2d{bottom:1974.960933pt;}
.y2c{bottom:2038.960933pt;}
.y19{bottom:2053.826800pt;}
.y1a{bottom:2091.242800pt;}
.y2b{bottom:2102.960933pt;}
.y17{bottom:2219.806000pt;}
.y16{bottom:2283.806000pt;}
.y15{bottom:2347.806000pt;}
.y14{bottom:2411.806000pt;}
.y13{bottom:2475.806000pt;}
.y12{bottom:2539.806000pt;}
.y33{bottom:2583.810533pt;}
.y11{bottom:2603.806000pt;}
.y32{bottom:2631.810533pt;}
.y10{bottom:2667.806000pt;}
.y31{bottom:2679.810533pt;}
.y30{bottom:2727.810533pt;}
.yf{bottom:2731.806000pt;}
.y2f{bottom:2775.810533pt;}
.yd{bottom:3012.045600pt;}
.yc{bottom:3076.045600pt;}
.y18{bottom:3105.370400pt;}
.yb{bottom:3140.045600pt;}
.ya{bottom:3204.045600pt;}
.y9{bottom:3268.045600pt;}
.y8{bottom:3332.045600pt;}
.y7{bottom:3396.045600pt;}
.y6{bottom:3460.045600pt;}
.y5{bottom:3524.045600pt;}
.y3{bottom:3707.075467pt;}
.y4{bottom:3773.802452pt;}
.y2{bottom:3870.012400pt;}
.y1{bottom:3984.101600pt;}
.ye{bottom:4348.096400pt;}
.h8{height:99.978667pt;}
.ha{height:108.515625pt;}
.h7{height:131.867247pt;}
.hb{height:134.586667pt;}
.h5{height:153.813333pt;}
.h4{height:160.701370pt;}
.h6{height:184.576000pt;}
.h3{height:218.978230pt;}
.h9{height:229.471420pt;}
.h2{height:254.810803pt;}
.hc{height:288.903600pt;}
.h0{height:4493.853333pt;}
.h1{height:4494.000000pt;}
.w3{width:57.973333pt;}
.w2{width:3178.585333pt;}
.w0{width:3178.586667pt;}
.w1{width:3178.666667pt;}
.x0{left:0.000000pt;}
.x15{left:13.334267pt;}
.xa{left:49.062533pt;}
.x2{left:50.645867pt;}
.x1{left:52.947867pt;}
.x10{left:64.611600pt;}
.x5{left:75.966133pt;}
.x3{left:109.184933pt;}
.x9{left:578.444667pt;}
.x12{left:783.408800pt;}
.x6{left:1479.125600pt;}
.x8{left:1519.209600pt;}
.xc{left:1631.045600pt;}
.xb{left:1636.800133pt;}
.xf{left:1702.211600pt;}
.x11{left:2042.971600pt;}
.xe{left:2123.211600pt;}
.x7{left:2131.052800pt;}
.xd{left:2134.377600pt;}
.x4{left:2513.317067pt;}
.x13{left:2692.639333pt;}
.x16{left:2731.821600pt;}
.x14{left:3081.240000pt;}
}




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