
    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_182031565bf534c89cd3d1b8.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.976562;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_1183e8a87aa9d90fe303ebf3.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.976562;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_1d691695eeced5cf8a1e4d47.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.976562;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_10bbf1ae7d111a11c1c2a46a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.976562;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_baf8f82e86c664ae724ecf5e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.976562;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_23f1ed4b141173b482195f6a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.976562;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_c3e874f6a2f4c83fa27e5024.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.172852;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.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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);}
.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);}
.v1{vertical-align:-70.980000px;}
.v2{vertical-align:-2.580000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:2.580000px;}
.v4{vertical-align:82.800000px;}
.ls6{letter-spacing:-0.000006px;}
.ls4{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.036000px;}
.ls2{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.360000px;}
.ls8{letter-spacing:1.620000px;}
.ls3{letter-spacing:3.060000px;}
.ls1{letter-spacing:87.233904px;}
.ls0{letter-spacing:87.300000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6{word-spacing:-63.180000px;}
.wsa{word-spacing:-48.816000px;}
.ws0{word-spacing:-44.506800px;}
.ws7{word-spacing:-43.446240px;}
.ws1{word-spacing:-36.998279px;}
.ws2{word-spacing:-35.460000px;}
.ws5{word-spacing:-35.100000px;}
.ws3{word-spacing:-35.099994px;}
.ws4{word-spacing:-3.240000px;}
.wsb{word-spacing:0.000000px;}
.ws8{word-spacing:5.081520px;}
.ws9{word-spacing:1823.487120px;}
._8{margin-left:-12.466080px;}
._7{margin-left:-4.641840px;}
._3{margin-left:-3.240000px;}
._0{margin-left:-1.980000px;}
._1{width:1.260000px;}
._2{width:2.640000px;}
._5{width:32.940000px;}
._4{width:36.120000px;}
._6{width:107.523984px;}
._a{width:914.087040px;}
._9{width:954.714960px;}
._b{width:2451.009840px;}
.fc1{color:rgb(0,0,0);}
.fc2{color:rgb(5,99,193);}
.fc0{color:rgb(30,100,200);}
.fse{font-size:167.760000px;}
.fs1{font-size:180.000000px;}
.fs3{font-size:180.144000px;}
.fs4{font-size:189.734762px;}
.fs9{font-size:192.240000px;}
.fsa{font-size:192.384000px;}
.fsd{font-size:216.000000px;}
.fsf{font-size:216.144000px;}
.fs0{font-size:228.240000px;}
.fs2{font-size:228.384000px;}
.fsb{font-size:264.240000px;}
.fsc{font-size:288.000000px;}
.fs7{font-size:300.240000px;}
.fs8{font-size:324.000000px;}
.fs10{font-size:396.000000px;}
.fs6{font-size:540.000000px;}
.fs5{font-size:540.144000px;}
.y0{bottom:0.000000px;}
.y23{bottom:100.044000px;}
.y1e{bottom:475.125000px;}
.y1d{bottom:523.725000px;}
.y1c{bottom:575.205000px;}
.y33{bottom:712.050000px;}
.y35{bottom:1143.930000px;}
.y37{bottom:1321.665000px;}
.y36{bottom:1386.465000px;}
.y32{bottom:1454.220000px;}
.y11{bottom:1533.930000px;}
.y10{bottom:1582.530000px;}
.yf{bottom:1631.130000px;}
.y34{bottom:1651.935000px;}
.ye{bottom:1682.610000px;}
.y1b{bottom:1742.010000px;}
.y1a{bottom:1790.610000px;}
.y19{bottom:1839.210000px;}
.y18{bottom:1887.810000px;}
.y17{bottom:1939.290000px;}
.y16{bottom:2134.050000px;}
.y15{bottom:2182.650000px;}
.yd{bottom:2227.290000px;}
.y14{bottom:2231.250000px;}
.yc{bottom:2275.890000px;}
.y13{bottom:2279.850000px;}
.yb{bottom:2324.520000px;}
.y12{bottom:2331.360000px;}
.ya{bottom:2376.000000px;}
.y9{bottom:2480.040000px;}
.y8{bottom:2528.640000px;}
.y7{bottom:2577.240000px;}
.y6{bottom:2625.840000px;}
.y5{bottom:2674.440000px;}
.y4{bottom:2723.040000px;}
.y3{bottom:2771.640000px;}
.y2{bottom:2820.240000px;}
.y1{bottom:2876.580000px;}
.y29{bottom:3326.865000px;}
.y2f{bottom:3360.930000px;}
.y26{bottom:3364.560000px;}
.y2a{bottom:3378.345000px;}
.y2e{bottom:3436.275000px;}
.y25{bottom:3467.910000px;}
.y2d{bottom:3493.875000px;}
.y24{bottom:3525.330000px;}
.y28{bottom:3528.750000px;}
.y27{bottom:3586.350000px;}
.y31{bottom:3985.230000px;}
.y2c{bottom:3986.025000px;}
.y2b{bottom:4049.205000px;}
.y30{bottom:4050.030000px;}
.y20{bottom:4158.105000px;}
.y1f{bottom:4315.650000px;}
.y22{bottom:4551.765000px;}
.y21{bottom:4656.210000px;}
.h10{height:122.871094px;}
.h3{height:131.835938px;}
.h5{height:131.941406px;}
.h6{height:138.965890px;}
.h11{height:158.203125px;}
.h2{height:167.167969px;}
.h4{height:167.273438px;}
.hb{height:191.207461px;}
.hc{height:191.350688px;}
.hf{height:214.839844px;}
.h12{height:214.983070px;}
.h9{height:219.902344px;}
.ha{height:237.304688px;}
.hd{height:262.820742px;}
.he{height:286.453125px;}
.h13{height:372.839062px;}
.h8{height:395.507812px;}
.h7{height:395.613281px;}
.h0{height:5055.480000px;}
.h1{height:5055.750000px;}
.w2{width:3575.879947px;}
.w0{width:3575.880000px;}
.w1{width:3576.000000px;}
.x0{left:0.000000px;}
.x8{left:185.579947px;}
.x1{left:189.329947px;}
.xb{left:224.849947px;}
.x2{left:231.809947px;}
.xa{left:302.969947px;}
.x3{left:363.569947px;}
.x18{left:376.094947px;}
.x19{left:412.049947px;}
.x4{left:601.709947px;}
.xc{left:651.569947px;}
.x5{left:740.489947px;}
.xe{left:948.449947px;}
.x12{left:959.549947px;}
.x11{left:977.189947px;}
.xd{left:982.829947px;}
.x9{left:1248.149947px;}
.x10{left:1414.184947px;}
.x13{left:1653.764947px;}
.x14{left:1676.444947px;}
.x6{left:1955.009947px;}
.x1a{left:1978.709947px;}
.x7{left:1997.489947px;}
.x1b{left:2008.049947px;}
.x16{left:2329.199947px;}
.x15{left:2343.704947px;}
.x17{left:2384.279947px;}
.x1e{left:2540.414947px;}
.x1f{left:2642.654947px;}
.xf{left:2919.884947px;}
.x1d{left:3095.714947px;}
.x1c{left:3110.834947px;}
@media print{
.v1{vertical-align:-63.093333pt;}
.v2{vertical-align:-2.293333pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:2.293333pt;}
.v4{vertical-align:73.600000pt;}
.ls6{letter-spacing:-0.000005pt;}
.ls4{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.032000pt;}
.ls2{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.320000pt;}
.ls8{letter-spacing:1.440000pt;}
.ls3{letter-spacing:2.720000pt;}
.ls1{letter-spacing:77.541248pt;}
.ls0{letter-spacing:77.600000pt;}
.ws6{word-spacing:-56.160000pt;}
.wsa{word-spacing:-43.392000pt;}
.ws0{word-spacing:-39.561600pt;}
.ws7{word-spacing:-38.618880pt;}
.ws1{word-spacing:-32.887359pt;}
.ws2{word-spacing:-31.520000pt;}
.ws5{word-spacing:-31.200000pt;}
.ws3{word-spacing:-31.199995pt;}
.ws4{word-spacing:-2.880000pt;}
.wsb{word-spacing:0.000000pt;}
.ws8{word-spacing:4.516907pt;}
.ws9{word-spacing:1620.877440pt;}
._8{margin-left:-11.080960pt;}
._7{margin-left:-4.126080pt;}
._3{margin-left:-2.880000pt;}
._0{margin-left:-1.760000pt;}
._1{width:1.120000pt;}
._2{width:2.346667pt;}
._5{width:29.280000pt;}
._4{width:32.106667pt;}
._6{width:95.576875pt;}
._a{width:812.521813pt;}
._9{width:848.635520pt;}
._b{width:2178.675413pt;}
.fse{font-size:149.120000pt;}
.fs1{font-size:160.000000pt;}
.fs3{font-size:160.128000pt;}
.fs4{font-size:168.653122pt;}
.fs9{font-size:170.880000pt;}
.fsa{font-size:171.008000pt;}
.fsd{font-size:192.000000pt;}
.fsf{font-size:192.128000pt;}
.fs0{font-size:202.880000pt;}
.fs2{font-size:203.008000pt;}
.fsb{font-size:234.880000pt;}
.fsc{font-size:256.000000pt;}
.fs7{font-size:266.880000pt;}
.fs8{font-size:288.000000pt;}
.fs10{font-size:352.000000pt;}
.fs6{font-size:480.000000pt;}
.fs5{font-size:480.128000pt;}
.y0{bottom:0.000000pt;}
.y23{bottom:88.928000pt;}
.y1e{bottom:422.333333pt;}
.y1d{bottom:465.533333pt;}
.y1c{bottom:511.293333pt;}
.y33{bottom:632.933333pt;}
.y35{bottom:1016.826667pt;}
.y37{bottom:1174.813333pt;}
.y36{bottom:1232.413333pt;}
.y32{bottom:1292.640000pt;}
.y11{bottom:1363.493333pt;}
.y10{bottom:1406.693333pt;}
.yf{bottom:1449.893333pt;}
.y34{bottom:1468.386667pt;}
.ye{bottom:1495.653333pt;}
.y1b{bottom:1548.453333pt;}
.y1a{bottom:1591.653333pt;}
.y19{bottom:1634.853333pt;}
.y18{bottom:1678.053333pt;}
.y17{bottom:1723.813333pt;}
.y16{bottom:1896.933333pt;}
.y15{bottom:1940.133333pt;}
.yd{bottom:1979.813333pt;}
.y14{bottom:1983.333333pt;}
.yc{bottom:2023.013333pt;}
.y13{bottom:2026.533333pt;}
.yb{bottom:2066.240000pt;}
.y12{bottom:2072.320000pt;}
.ya{bottom:2112.000000pt;}
.y9{bottom:2204.480000pt;}
.y8{bottom:2247.680000pt;}
.y7{bottom:2290.880000pt;}
.y6{bottom:2334.080000pt;}
.y5{bottom:2377.280000pt;}
.y4{bottom:2420.480000pt;}
.y3{bottom:2463.680000pt;}
.y2{bottom:2506.880000pt;}
.y1{bottom:2556.960000pt;}
.y29{bottom:2957.213333pt;}
.y2f{bottom:2987.493333pt;}
.y26{bottom:2990.720000pt;}
.y2a{bottom:3002.973333pt;}
.y2e{bottom:3054.466667pt;}
.y25{bottom:3082.586667pt;}
.y2d{bottom:3105.666667pt;}
.y24{bottom:3133.626667pt;}
.y28{bottom:3136.666667pt;}
.y27{bottom:3187.866667pt;}
.y31{bottom:3542.426667pt;}
.y2c{bottom:3543.133333pt;}
.y2b{bottom:3599.293333pt;}
.y30{bottom:3600.026667pt;}
.y20{bottom:3696.093333pt;}
.y1f{bottom:3836.133333pt;}
.y22{bottom:4046.013333pt;}
.y21{bottom:4138.853333pt;}
.h10{height:109.218750pt;}
.h3{height:117.187500pt;}
.h5{height:117.281250pt;}
.h6{height:123.525236pt;}
.h11{height:140.625000pt;}
.h2{height:148.593750pt;}
.h4{height:148.687500pt;}
.hb{height:169.962187pt;}
.hc{height:170.089500pt;}
.hf{height:190.968750pt;}
.h12{height:191.096063pt;}
.h9{height:195.468750pt;}
.ha{height:210.937500pt;}
.hd{height:233.618437pt;}
.he{height:254.625000pt;}
.h13{height:331.412500pt;}
.h8{height:351.562500pt;}
.h7{height:351.656250pt;}
.h0{height:4493.760000pt;}
.h1{height:4494.000000pt;}
.w2{width:3178.559953pt;}
.w0{width:3178.560000pt;}
.w1{width:3178.666667pt;}
.x0{left:0.000000pt;}
.x8{left:164.959953pt;}
.x1{left:168.293286pt;}
.xb{left:199.866619pt;}
.x2{left:206.053286pt;}
.xa{left:269.306619pt;}
.x3{left:323.173286pt;}
.x18{left:334.306619pt;}
.x19{left:366.266619pt;}
.x4{left:534.853286pt;}
.xc{left:579.173286pt;}
.x5{left:658.213286pt;}
.xe{left:843.066619pt;}
.x12{left:852.933286pt;}
.x11{left:868.613286pt;}
.xd{left:873.626619pt;}
.x9{left:1109.466619pt;}
.x10{left:1257.053286pt;}
.x13{left:1470.013286pt;}
.x14{left:1490.173286pt;}
.x6{left:1737.786619pt;}
.x1a{left:1758.853286pt;}
.x7{left:1775.546619pt;}
.x1b{left:1784.933286pt;}
.x16{left:2070.399953pt;}
.x15{left:2083.293286pt;}
.x17{left:2119.359953pt;}
.x1e{left:2258.146619pt;}
.x1f{left:2349.026619pt;}
.xf{left:2595.453286pt;}
.x1d{left:2751.746619pt;}
.x1c{left:2765.186619pt;}
}




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