
    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_7bb775f75d5cf8953904bcd4.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.704000;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_9e0bfb51fa8b16278bdc35ac.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.931000;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_37000d3f6fc1d82850401734.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.930000;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_88f49b5a233df1dedf17c271.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.880000;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_929a8520b9fc2ab26aa245ad.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.824000;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_b2364af8203e90f28b74873a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.700000;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.242500,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.242500,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.242500,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.584000px;}
.ls1{letter-spacing:-0.360000px;}
.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;}
}
.ws1{word-spacing:-32.472000px;}
.ws0{word-spacing:-31.416000px;}
.ws2{word-spacing:-16.632000px;}
.ws4{word-spacing:-0.036000px;}
.ws5{word-spacing:0.000000px;}
.ws6{word-spacing:0.360000px;}
.ws3{word-spacing:2481.912000px;}
._9{margin-left:-3088.596000px;}
._a{margin-left:-2938.968000px;}
._2{margin-left:-12.540000px;}
._5{margin-left:-11.365200px;}
._4{margin-left:-9.108000px;}
._6{margin-left:-7.788000px;}
._8{margin-left:-6.432000px;}
._3{margin-left:-5.016000px;}
._0{margin-left:-3.841200px;}
._7{margin-left:-2.805600px;}
._1{margin-left:-1.716000px;}
.fc4{color:rgb(40,115,59);}
.fc3{color:rgb(72,136,88);}
.fc2{color:rgb(77,77,79);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs3{font-size:36.000000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:96.000000px;}
.fs0{font-size:132.000000px;}
.fs4{font-size:252.000000px;}
.y0{bottom:0.000000px;}
.y3f{bottom:34.494000px;}
.y2e{bottom:110.407800px;}
.y3c{bottom:136.858350px;}
.y2d{bottom:143.407800px;}
.y17{bottom:159.907650px;}
.y4d{bottom:170.796150px;}
.y2c{bottom:176.407800px;}
.y3d{bottom:190.425630px;}
.y16{bottom:192.907650px;}
.y3e{bottom:195.331890px;}
.y2b{bottom:209.407800px;}
.y15{bottom:225.907650px;}
.y2a{bottom:242.407800px;}
.y14{bottom:258.907650px;}
.y29{bottom:275.407800px;}
.y28{bottom:308.407800px;}
.y3b{bottom:399.321150px;}
.y27{bottom:462.473100px;}
.y21{bottom:478.973100px;}
.y3a{bottom:491.991720px;}
.y26{bottom:495.473100px;}
.y20{bottom:511.973100px;}
.y25{bottom:528.473100px;}
.y1f{bottom:544.973100px;}
.y24{bottom:561.473100px;}
.y1e{bottom:577.973100px;}
.y23{bottom:594.473100px;}
.y1d{bottom:610.973100px;}
.y22{bottom:627.473100px;}
.y13{bottom:765.038400px;}
.y12{bottom:798.038400px;}
.y11{bottom:831.038400px;}
.y4b{bottom:836.270850px;}
.y38{bottom:844.247220px;}
.y10{bottom:864.038400px;}
.y4a{bottom:869.270850px;}
.yf{bottom:897.038400px;}
.y49{bottom:902.270850px;}
.ye{bottom:930.038400px;}
.y48{bottom:935.270850px;}
.yd{bottom:963.038400px;}
.y47{bottom:968.270850px;}
.yc{bottom:996.038400px;}
.y46{bottom:1001.270850px;}
.y45{bottom:1034.270850px;}
.y44{bottom:1067.270850px;}
.y43{bottom:1100.270850px;}
.y6{bottom:1133.603700px;}
.y1c{bottom:1150.103700px;}
.y42{bottom:1162.022850px;}
.y5{bottom:1166.603700px;}
.y1b{bottom:1183.103700px;}
.y4c{bottom:1196.571150px;}
.y4{bottom:1199.603700px;}
.y39{bottom:1204.237500px;}
.y1a{bottom:1216.103700px;}
.y41{bottom:1228.046850px;}
.y3{bottom:1232.603700px;}
.y19{bottom:1249.103700px;}
.y2{bottom:1265.603700px;}
.y18{bottom:1282.103700px;}
.y40{bottom:1294.070850px;}
.y1{bottom:1298.603700px;}
.y34{bottom:1469.169000px;}
.yb{bottom:1485.669000px;}
.y33{bottom:1502.169000px;}
.y35{bottom:1517.461200px;}
.ya{bottom:1518.669000px;}
.y37{bottom:1534.144200px;}
.y32{bottom:1535.169000px;}
.y36{bottom:1544.009100px;}
.y9{bottom:1551.669000px;}
.y31{bottom:1568.169000px;}
.y8{bottom:1584.669000px;}
.y30{bottom:1601.169000px;}
.y7{bottom:1617.669000px;}
.y2f{bottom:1634.169000px;}
.h7{height:26.640000px;}
.h5{height:49.680000px;}
.h6{height:51.264000px;}
.h3{height:71.040000px;}
.h2{height:91.344000px;}
.h4{height:97.680000px;}
.h8{height:173.880000px;}
.h1{height:1785.750000px;}
.h0{height:1785.825000px;}
.w0{width:2525.670000px;}
.w1{width:2526.000000px;}
.x0{left:0.000000px;}
.x40{left:76.003950px;}
.x2d{left:78.307350px;}
.x3{left:92.209050px;}
.x1{left:93.718800px;}
.x2f{left:99.360150px;}
.x4{left:108.409050px;}
.x5{left:110.929050px;}
.x2e{left:123.072150px;}
.x2c{left:129.853350px;}
.x2{left:151.039800px;}
.x4a{left:422.258250px;}
.x8{left:425.256450px;}
.x33{left:431.600490px;}
.x32{left:433.693770px;}
.x9{left:439.414650px;}
.x1d{left:445.330050px;}
.x1c{left:450.082050px;}
.x6{left:457.596450px;}
.x34{left:459.871530px;}
.x30{left:461.655450px;}
.x1e{left:464.146050px;}
.x7{left:468.288450px;}
.xa{left:474.214650px;}
.x1b{left:476.949900px;}
.x31{left:511.947450px;}
.x4c{left:563.415600px;}
.x46{left:767.480250px;}
.x53{left:788.885160px;}
.x50{left:797.731560px;}
.x51{left:799.151640px;}
.x29{left:801.031350px;}
.x26{left:802.763250px;}
.x54{left:804.622440px;}
.x27{left:808.670250px;}
.x4f{left:815.494200px;}
.x52{left:822.338520px;}
.x2a{left:828.367350px;}
.x4d{left:840.521550px;}
.x28{left:843.947250px;}
.x2b{left:856.831350px;}
.x4e{left:881.534550px;}
.x42{left:1124.885700px;}
.x44{left:1126.181700px;}
.x43{left:1129.589700px;}
.x13{left:1144.034850px;}
.x15{left:1175.813850px;}
.x45{left:1189.709700px;}
.x12{left:1199.243850px;}
.x14{left:1200.629850px;}
.x4b{left:1219.953750px;}
.x41{left:1224.060000px;}
.x21{left:1476.877500px;}
.x1f{left:1498.228500px;}
.x22{left:1519.117500px;}
.x20{left:1521.877500px;}
.x47{left:1771.412250px;}
.x39{left:1803.287700px;}
.xf{left:1804.486950px;}
.x3a{left:1806.335700px;}
.x3f{left:1811.699850px;}
.x38{left:1819.919700px;}
.x3e{left:1823.627850px;}
.x3d{left:1829.683350px;}
.x36{left:1832.851350px;}
.xe{left:1834.750950px;}
.x37{left:1837.127700px;}
.x10{left:1839.646950px;}
.x35{left:1843.345350px;}
.xc{left:1850.770200px;}
.xd{left:1851.910950px;}
.x3b{left:1854.335700px;}
.x3c{left:1855.423350px;}
.xb{left:1875.256200px;}
.x11{left:1879.342950px;}
.x49{left:2116.832250px;}
.x1a{left:2190.739650px;}
.x25{left:2198.047950px;}
.x17{left:2201.052300px;}
.x24{left:2202.823950px;}
.x19{left:2207.011650px;}
.x16{left:2208.708300px;}
.x18{left:2235.115650px;}
.x23{left:2244.182700px;}
.x48{left:2463.764250px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.408000pt;}
.ls1{letter-spacing:-0.320000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws1{word-spacing:-28.864000pt;}
.ws0{word-spacing:-27.925333pt;}
.ws2{word-spacing:-14.784000pt;}
.ws4{word-spacing:-0.032000pt;}
.ws5{word-spacing:0.000000pt;}
.ws6{word-spacing:0.320000pt;}
.ws3{word-spacing:2206.144000pt;}
._9{margin-left:-2745.418667pt;}
._a{margin-left:-2612.416000pt;}
._2{margin-left:-11.146667pt;}
._5{margin-left:-10.102400pt;}
._4{margin-left:-8.096000pt;}
._6{margin-left:-6.922667pt;}
._8{margin-left:-5.717333pt;}
._3{margin-left:-4.458667pt;}
._0{margin-left:-3.414400pt;}
._7{margin-left:-2.493867pt;}
._1{margin-left:-1.525333pt;}
.fs3{font-size:32.000000pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:85.333333pt;}
.fs0{font-size:117.333333pt;}
.fs4{font-size:224.000000pt;}
.y0{bottom:0.000000pt;}
.y3f{bottom:30.661333pt;}
.y2e{bottom:98.140267pt;}
.y3c{bottom:121.651867pt;}
.y2d{bottom:127.473600pt;}
.y17{bottom:142.140133pt;}
.y4d{bottom:151.818800pt;}
.y2c{bottom:156.806933pt;}
.y3d{bottom:169.267227pt;}
.y16{bottom:171.473467pt;}
.y3e{bottom:173.628347pt;}
.y2b{bottom:186.140267pt;}
.y15{bottom:200.806800pt;}
.y2a{bottom:215.473600pt;}
.y14{bottom:230.140133pt;}
.y29{bottom:244.806933pt;}
.y28{bottom:274.140267pt;}
.y3b{bottom:354.952133pt;}
.y27{bottom:411.087200pt;}
.y21{bottom:425.753867pt;}
.y3a{bottom:437.325973pt;}
.y26{bottom:440.420533pt;}
.y20{bottom:455.087200pt;}
.y25{bottom:469.753867pt;}
.y1f{bottom:484.420533pt;}
.y24{bottom:499.087200pt;}
.y1e{bottom:513.753867pt;}
.y23{bottom:528.420533pt;}
.y1d{bottom:543.087200pt;}
.y22{bottom:557.753867pt;}
.y13{bottom:680.034133pt;}
.y12{bottom:709.367467pt;}
.y11{bottom:738.700800pt;}
.y4b{bottom:743.351867pt;}
.y38{bottom:750.441973pt;}
.y10{bottom:768.034133pt;}
.y4a{bottom:772.685200pt;}
.yf{bottom:797.367467pt;}
.y49{bottom:802.018533pt;}
.ye{bottom:826.700800pt;}
.y48{bottom:831.351867pt;}
.yd{bottom:856.034133pt;}
.y47{bottom:860.685200pt;}
.yc{bottom:885.367467pt;}
.y46{bottom:890.018533pt;}
.y45{bottom:919.351867pt;}
.y44{bottom:948.685200pt;}
.y43{bottom:978.018533pt;}
.y6{bottom:1007.647733pt;}
.y1c{bottom:1022.314400pt;}
.y42{bottom:1032.909200pt;}
.y5{bottom:1036.981067pt;}
.y1b{bottom:1051.647733pt;}
.y4c{bottom:1063.618800pt;}
.y4{bottom:1066.314400pt;}
.y39{bottom:1070.433333pt;}
.y1a{bottom:1080.981067pt;}
.y41{bottom:1091.597200pt;}
.y3{bottom:1095.647733pt;}
.y19{bottom:1110.314400pt;}
.y2{bottom:1124.981067pt;}
.y18{bottom:1139.647733pt;}
.y40{bottom:1150.285200pt;}
.y1{bottom:1154.314400pt;}
.y34{bottom:1305.928000pt;}
.yb{bottom:1320.594667pt;}
.y33{bottom:1335.261333pt;}
.y35{bottom:1348.854400pt;}
.ya{bottom:1349.928000pt;}
.y37{bottom:1363.683733pt;}
.y32{bottom:1364.594667pt;}
.y36{bottom:1372.452533pt;}
.y9{bottom:1379.261333pt;}
.y31{bottom:1393.928000pt;}
.y8{bottom:1408.594667pt;}
.y30{bottom:1423.261333pt;}
.y7{bottom:1437.928000pt;}
.y2f{bottom:1452.594667pt;}
.h7{height:23.680000pt;}
.h5{height:44.160000pt;}
.h6{height:45.568000pt;}
.h3{height:63.146667pt;}
.h2{height:81.194667pt;}
.h4{height:86.826667pt;}
.h8{height:154.560000pt;}
.h1{height:1587.333333pt;}
.h0{height:1587.400000pt;}
.w0{width:2245.040000pt;}
.w1{width:2245.333333pt;}
.x0{left:0.000000pt;}
.x40{left:67.559067pt;}
.x2d{left:69.606533pt;}
.x3{left:81.963600pt;}
.x1{left:83.305600pt;}
.x2f{left:88.320133pt;}
.x4{left:96.363600pt;}
.x5{left:98.603600pt;}
.x2e{left:109.397467pt;}
.x2c{left:115.425200pt;}
.x2{left:134.257600pt;}
.x4a{left:375.340667pt;}
.x8{left:378.005733pt;}
.x33{left:383.644880pt;}
.x32{left:385.505573pt;}
.x9{left:390.590800pt;}
.x1d{left:395.848933pt;}
.x1c{left:400.072933pt;}
.x6{left:406.752400pt;}
.x34{left:408.774693pt;}
.x30{left:410.360400pt;}
.x1e{left:412.574267pt;}
.x7{left:416.256400pt;}
.xa{left:421.524133pt;}
.x1b{left:423.955467pt;}
.x31{left:455.064400pt;}
.x4c{left:500.813867pt;}
.x46{left:682.204667pt;}
.x53{left:701.231253pt;}
.x50{left:709.094720pt;}
.x51{left:710.357013pt;}
.x29{left:712.027867pt;}
.x26{left:713.567333pt;}
.x54{left:715.219947pt;}
.x27{left:718.818000pt;}
.x4f{left:724.883733pt;}
.x52{left:730.967573pt;}
.x2a{left:736.326533pt;}
.x4d{left:747.130267pt;}
.x28{left:750.175333pt;}
.x2b{left:761.627867pt;}
.x4e{left:783.586267pt;}
.x42{left:999.898400pt;}
.x44{left:1001.050400pt;}
.x43{left:1004.079733pt;}
.x13{left:1016.919867pt;}
.x15{left:1045.167867pt;}
.x45{left:1057.519733pt;}
.x12{left:1065.994533pt;}
.x14{left:1067.226533pt;}
.x4b{left:1084.403333pt;}
.x41{left:1088.053333pt;}
.x21{left:1312.780000pt;}
.x1f{left:1331.758667pt;}
.x22{left:1350.326667pt;}
.x20{left:1352.780000pt;}
.x47{left:1574.588667pt;}
.x39{left:1602.922400pt;}
.xf{left:1603.988400pt;}
.x3a{left:1605.631733pt;}
.x3f{left:1610.399867pt;}
.x38{left:1617.706400pt;}
.x3e{left:1621.002533pt;}
.x3d{left:1626.385200pt;}
.x36{left:1629.201200pt;}
.xe{left:1630.889733pt;}
.x37{left:1633.002400pt;}
.x10{left:1635.241733pt;}
.x35{left:1638.529200pt;}
.xc{left:1645.129067pt;}
.xd{left:1646.143067pt;}
.x3b{left:1648.298400pt;}
.x3c{left:1649.265200pt;}
.xb{left:1666.894400pt;}
.x11{left:1670.527067pt;}
.x49{left:1881.628667pt;}
.x1a{left:1947.324133pt;}
.x25{left:1953.820400pt;}
.x17{left:1956.490933pt;}
.x24{left:1958.065733pt;}
.x19{left:1961.788133pt;}
.x16{left:1963.296267pt;}
.x18{left:1986.769467pt;}
.x23{left:1994.829067pt;}
.x48{left:2190.012667pt;}
}




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