
    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_4306d5d8ba86a56eaa1b75d2.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_c35a816e29abe88b08700cee.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.026367;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_c78279e80bcc7715baee2e22.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.940000;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_a510a93251f1fbb7c7b9a4be.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.968262;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_9afdf519008165d93f7245d7.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.031738;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_6b31a768a153aebe03e4cbbf.woff2')format("woff");}.ff6{font-family:ff6;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.250180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250180,0.000000,0.000000,0.250000,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;}
}
.ws5{word-spacing:-17.496000px;}
.ws1{word-spacing:-16.434000px;}
.ws2{word-spacing:-16.368000px;}
.ws0{word-spacing:-16.038000px;}
.ws7{word-spacing:-2.820000px;}
.ws3{word-spacing:0.000000px;}
.ws9{word-spacing:5.220000px;}
.ws8{word-spacing:7.380000px;}
.wsa{word-spacing:8.100000px;}
.ws6{word-spacing:12.300000px;}
.wsb{word-spacing:20.400000px;}
.ws4{word-spacing:69.366000px;}
._6{margin-left:-6.724800px;}
._7{margin-left:-4.560600px;}
._1{margin-left:-2.678029px;}
._0{margin-left:-1.217286px;}
._2{width:1.450429px;}
._5{width:3.758515px;}
._3{width:6.342060px;}
._4{width:84.942000px;}
.fc5{color:rgb(5,6,7);}
.fc6{color:rgb(0,0,0);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(52,99,172);}
.fc4{color:transparent;}
.fc1{color:rgb(21,48,79);}
.fc0{color:rgb(238,116,68);}
.fs7{font-size:32.905200px;}
.fs6{font-size:51.837000px;}
.fs5{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.fs8{font-size:108.000000px;}
.fs4{font-size:120.000000px;}
.fs0{font-size:121.728600px;}
.fs2{font-size:188.656800px;}
.y0{bottom:0.000000px;}
.y5d{bottom:12.493680px;}
.ya{bottom:17.780100px;}
.y74{bottom:20.645550px;}
.y5a{bottom:21.199200px;}
.y5c{bottom:22.365240px;}
.y5b{bottom:32.236800px;}
.y3a{bottom:34.645500px;}
.y2b{bottom:34.695000px;}
.y9{bottom:37.283100px;}
.y39{bottom:54.148500px;}
.y2a{bottom:54.198000px;}
.y8{bottom:56.786100px;}
.y38{bottom:73.651500px;}
.y29{bottom:73.701000px;}
.y7{bottom:76.289100px;}
.y59{bottom:86.213400px;}
.y37{bottom:93.154500px;}
.y28{bottom:93.204000px;}
.y6{bottom:100.296600px;}
.y58{bottom:104.213400px;}
.y36{bottom:112.657500px;}
.y27{bottom:112.707000px;}
.y50{bottom:116.861250px;}
.y5{bottom:119.799600px;}
.y57{bottom:122.213400px;}
.y35{bottom:132.160500px;}
.y26{bottom:132.210000px;}
.y4f{bottom:136.661250px;}
.y4{bottom:139.302600px;}
.y56{bottom:140.213400px;}
.y34{bottom:151.663500px;}
.y25{bottom:151.713000px;}
.y55{bottom:158.213400px;}
.y3{bottom:158.805600px;}
.y33{bottom:171.166500px;}
.y4e{bottom:174.462750px;}
.y24{bottom:175.720500px;}
.y54{bottom:176.213400px;}
.y53{bottom:194.213400px;}
.y4d{bottom:194.262750px;}
.y32{bottom:195.174000px;}
.y23{bottom:195.223500px;}
.y31{bottom:214.677000px;}
.y22{bottom:214.726500px;}
.y52{bottom:229.045950px;}
.y30{bottom:234.180000px;}
.y21{bottom:234.229500px;}
.y20{bottom:253.732500px;}
.y51{bottom:254.890200px;}
.y2f{bottom:258.187500px;}
.y41{bottom:262.557150px;}
.y2e{bottom:277.690500px;}
.y1f{bottom:277.740000px;}
.y1e{bottom:297.243000px;}
.y2d{bottom:301.698000px;}
.y2c{bottom:321.201000px;}
.y1d{bottom:321.250500px;}
.y7c{bottom:355.075050px;}
.y1c{bottom:355.407750px;}
.y7b{bottom:374.578050px;}
.y7a{bottom:403.073550px;}
.y3e{bottom:414.169050px;}
.y79{bottom:422.576550px;}
.y3d{bottom:433.969050px;}
.y78{bottom:442.079550px;}
.y3c{bottom:453.769050px;}
.y73{bottom:475.139700px;}
.y3b{bottom:482.560500px;}
.y1b{bottom:538.702050px;}
.y72{bottom:560.448300px;}
.y68{bottom:560.464800px;}
.y1a{bottom:567.494550px;}
.y71{bottom:579.951300px;}
.y67{bottom:579.967800px;}
.y19{bottom:596.287050px;}
.y70{bottom:599.454300px;}
.y66{bottom:599.470800px;}
.y6f{bottom:618.957300px;}
.y65{bottom:618.973800px;}
.y18{bottom:625.079550px;}
.y64{bottom:638.476800px;}
.y6e{bottom:647.452800px;}
.yb{bottom:652.943850px;}
.y6d{bottom:666.955800px;}
.y63{bottom:666.972300px;}
.y2{bottom:674.731500px;}
.y6c{bottom:686.458800px;}
.y62{bottom:686.475300px;}
.y6b{bottom:705.961800px;}
.y61{bottom:705.978300px;}
.y12{bottom:716.228100px;}
.y6a{bottom:725.464800px;}
.y60{bottom:725.481300px;}
.y11{bottom:736.028100px;}
.y69{bottom:744.967800px;}
.y5f{bottom:744.984300px;}
.y10{bottom:755.828100px;}
.y5e{bottom:777.887700px;}
.yf{bottom:780.132600px;}
.ye{bottom:799.932600px;}
.yd{bottom:824.237100px;}
.yc{bottom:844.037100px;}
.y1{bottom:865.700700px;}
.y4c{bottom:869.162250px;}
.y17{bottom:873.200700px;}
.y4b{bottom:888.962250px;}
.y4a{bottom:908.762250px;}
.y49{bottom:933.066750px;}
.y40{bottom:943.582050px;}
.y16{bottom:950.715900px;}
.y3f{bottom:960.082050px;}
.y48{bottom:972.666750px;}
.y47{bottom:992.466750px;}
.y46{bottom:1012.266750px;}
.y45{bottom:1032.066750px;}
.y15{bottom:1042.299900px;}
.y44{bottom:1051.866750px;}
.y14{bottom:1063.899900px;}
.y43{bottom:1076.171250px;}
.y42{bottom:1095.971250px;}
.y13{bottom:1101.232950px;}
.y77{bottom:1134.859950px;}
.y76{bottom:1164.856950px;}
.y75{bottom:1194.853950px;}
.hf{height:23.724649px;}
.he{height:37.374477px;}
.hb{height:47.812500px;}
.hd{height:48.134766px;}
.h5{height:50.176758px;}
.h4{height:52.593750px;}
.h6{height:52.948242px;}
.h8{height:53.280000px;}
.h9{height:54.738281px;}
.hc{height:57.375000px;}
.h10{height:79.920000px;}
.ha{height:88.800000px;}
.h2{height:90.079164px;}
.h7{height:139.606032px;}
.h3{height:172.921500px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:374.616900px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:44.704800px;}
.x8{left:47.106450px;}
.x9{left:49.388700px;}
.x12{left:58.760700px;}
.x10{left:71.469900px;}
.x11{left:78.125250px;}
.xc{left:96.175050px;}
.xe{left:137.953050px;}
.xb{left:164.020800px;}
.xf{left:193.267050px;}
.x6{left:203.111550px;}
.x14{left:206.510700px;}
.xd{left:259.970550px;}
.x7{left:285.047550px;}
.x5{left:287.115900px;}
.x13{left:387.710400px;}
.x17{left:459.731400px;}
.x15{left:462.552900px;}
.xa{left:464.215200px;}
.x2{left:482.348100px;}
.x3{left:487.850850px;}
.x4{left:514.844850px;}
.x16{left:595.146300px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws5{word-spacing:-15.552000pt;}
.ws1{word-spacing:-14.608000pt;}
.ws2{word-spacing:-14.549333pt;}
.ws0{word-spacing:-14.256000pt;}
.ws7{word-spacing:-2.506667pt;}
.ws3{word-spacing:0.000000pt;}
.ws9{word-spacing:4.640000pt;}
.ws8{word-spacing:6.560000pt;}
.wsa{word-spacing:7.200000pt;}
.ws6{word-spacing:10.933333pt;}
.wsb{word-spacing:18.133333pt;}
.ws4{word-spacing:61.658667pt;}
._6{margin-left:-5.977600pt;}
._7{margin-left:-4.053867pt;}
._1{margin-left:-2.380470pt;}
._0{margin-left:-1.082032pt;}
._2{width:1.289270pt;}
._5{width:3.340902pt;}
._3{width:5.637387pt;}
._4{width:75.504000pt;}
.fs7{font-size:29.249067pt;}
.fs6{font-size:46.077333pt;}
.fs5{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.fs8{font-size:96.000000pt;}
.fs4{font-size:106.666667pt;}
.fs0{font-size:108.203200pt;}
.fs2{font-size:167.694933pt;}
.y0{bottom:0.000000pt;}
.y5d{bottom:11.105493pt;}
.ya{bottom:15.804533pt;}
.y74{bottom:18.351600pt;}
.y5a{bottom:18.843733pt;}
.y5c{bottom:19.880213pt;}
.y5b{bottom:28.654933pt;}
.y3a{bottom:30.796000pt;}
.y2b{bottom:30.840000pt;}
.y9{bottom:33.140533pt;}
.y39{bottom:48.132000pt;}
.y2a{bottom:48.176000pt;}
.y8{bottom:50.476533pt;}
.y38{bottom:65.468000pt;}
.y29{bottom:65.512000pt;}
.y7{bottom:67.812533pt;}
.y59{bottom:76.634133pt;}
.y37{bottom:82.804000pt;}
.y28{bottom:82.848000pt;}
.y6{bottom:89.152533pt;}
.y58{bottom:92.634133pt;}
.y36{bottom:100.140000pt;}
.y27{bottom:100.184000pt;}
.y50{bottom:103.876667pt;}
.y5{bottom:106.488533pt;}
.y57{bottom:108.634133pt;}
.y35{bottom:117.476000pt;}
.y26{bottom:117.520000pt;}
.y4f{bottom:121.476667pt;}
.y4{bottom:123.824533pt;}
.y56{bottom:124.634133pt;}
.y34{bottom:134.812000pt;}
.y25{bottom:134.856000pt;}
.y55{bottom:140.634133pt;}
.y3{bottom:141.160533pt;}
.y33{bottom:152.148000pt;}
.y4e{bottom:155.078000pt;}
.y24{bottom:156.196000pt;}
.y54{bottom:156.634133pt;}
.y53{bottom:172.634133pt;}
.y4d{bottom:172.678000pt;}
.y32{bottom:173.488000pt;}
.y23{bottom:173.532000pt;}
.y31{bottom:190.824000pt;}
.y22{bottom:190.868000pt;}
.y52{bottom:203.596400pt;}
.y30{bottom:208.160000pt;}
.y21{bottom:208.204000pt;}
.y20{bottom:225.540000pt;}
.y51{bottom:226.569067pt;}
.y2f{bottom:229.500000pt;}
.y41{bottom:233.384133pt;}
.y2e{bottom:246.836000pt;}
.y1f{bottom:246.880000pt;}
.y1e{bottom:264.216000pt;}
.y2d{bottom:268.176000pt;}
.y2c{bottom:285.512000pt;}
.y1d{bottom:285.556000pt;}
.y7c{bottom:315.622267pt;}
.y1c{bottom:315.918000pt;}
.y7b{bottom:332.958267pt;}
.y7a{bottom:358.287600pt;}
.y3e{bottom:368.150267pt;}
.y79{bottom:375.623600pt;}
.y3d{bottom:385.750267pt;}
.y78{bottom:392.959600pt;}
.y3c{bottom:403.350267pt;}
.y73{bottom:422.346400pt;}
.y3b{bottom:428.942667pt;}
.y1b{bottom:478.846267pt;}
.y72{bottom:498.176267pt;}
.y68{bottom:498.190933pt;}
.y1a{bottom:504.439600pt;}
.y71{bottom:515.512267pt;}
.y67{bottom:515.526933pt;}
.y19{bottom:530.032933pt;}
.y70{bottom:532.848267pt;}
.y66{bottom:532.862933pt;}
.y6f{bottom:550.184267pt;}
.y65{bottom:550.198933pt;}
.y18{bottom:555.626267pt;}
.y64{bottom:567.534933pt;}
.y6e{bottom:575.513600pt;}
.yb{bottom:580.394533pt;}
.y6d{bottom:592.849600pt;}
.y63{bottom:592.864267pt;}
.y2{bottom:599.761333pt;}
.y6c{bottom:610.185600pt;}
.y62{bottom:610.200267pt;}
.y6b{bottom:627.521600pt;}
.y61{bottom:627.536267pt;}
.y12{bottom:636.647200pt;}
.y6a{bottom:644.857600pt;}
.y60{bottom:644.872267pt;}
.y11{bottom:654.247200pt;}
.y69{bottom:662.193600pt;}
.y5f{bottom:662.208267pt;}
.y10{bottom:671.847200pt;}
.y5e{bottom:691.455733pt;}
.yf{bottom:693.451200pt;}
.ye{bottom:711.051200pt;}
.yd{bottom:732.655200pt;}
.yc{bottom:750.255200pt;}
.y1{bottom:769.511733pt;}
.y4c{bottom:772.588667pt;}
.y17{bottom:776.178400pt;}
.y4b{bottom:790.188667pt;}
.y4a{bottom:807.788667pt;}
.y49{bottom:829.392667pt;}
.y40{bottom:838.739600pt;}
.y16{bottom:845.080800pt;}
.y3f{bottom:853.406267pt;}
.y48{bottom:864.592667pt;}
.y47{bottom:882.192667pt;}
.y46{bottom:899.792667pt;}
.y45{bottom:917.392667pt;}
.y15{bottom:926.488800pt;}
.y44{bottom:934.992667pt;}
.y14{bottom:945.688800pt;}
.y43{bottom:956.596667pt;}
.y42{bottom:974.196667pt;}
.y13{bottom:978.873733pt;}
.y77{bottom:1008.764400pt;}
.y76{bottom:1035.428400pt;}
.y75{bottom:1062.092400pt;}
.hf{height:21.088577pt;}
.he{height:33.221757pt;}
.hb{height:42.500000pt;}
.hd{height:42.786458pt;}
.h5{height:44.601562pt;}
.h4{height:46.750000pt;}
.h6{height:47.065104pt;}
.h8{height:47.360000pt;}
.h9{height:48.656250pt;}
.hc{height:51.000000pt;}
.h10{height:71.040000pt;}
.ha{height:78.933333pt;}
.h2{height:80.070368pt;}
.h7{height:124.094251pt;}
.h3{height:153.708000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:332.992800pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:39.737600pt;}
.x8{left:41.872400pt;}
.x9{left:43.901067pt;}
.x12{left:52.231733pt;}
.x10{left:63.528800pt;}
.x11{left:69.444667pt;}
.xc{left:85.488933pt;}
.xe{left:122.624933pt;}
.xb{left:145.796267pt;}
.xf{left:171.792933pt;}
.x6{left:180.543600pt;}
.x14{left:183.565067pt;}
.xd{left:231.084933pt;}
.x7{left:253.375600pt;}
.x5{left:255.214133pt;}
.x13{left:344.631467pt;}
.x17{left:408.650133pt;}
.x15{left:411.158133pt;}
.xa{left:412.635733pt;}
.x2{left:428.753867pt;}
.x3{left:433.645200pt;}
.x4{left:457.639867pt;}
.x16{left:529.018933pt;}
}




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