
    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_71e9cded87eb0eb769091c7a.woff')format("woff");}.ff1{font-family:ff1;line-height:1.174000;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_cdbb2576a1bb6038b8779694.woff')format("woff");}.ff2{font-family:ff2;line-height:1.080000;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_b3d133751fc968e8427b9cd3.woff')format("woff");}.ff3{font-family:ff3;line-height:1.224121;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_aebc27a4bfdb0addf31e008d.woff')format("woff");}.ff4{font-family:ff4;line-height:1.146973;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_f17d1dd3bc6489127ce0d70b.woff')format("woff");}.ff5{font-family:ff5;line-height:0.952000;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(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);}
.v2{vertical-align:-87.025800px;}
.v3{vertical-align:-61.786320px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:87.025800px;}
.ls5{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.000600px;}
.ls2{letter-spacing:0.001320px;}
.ls0{letter-spacing:0.001800px;}
.ls3{letter-spacing:49.200000px;}
.ls1{letter-spacing:136.062000px;}
.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;}
}
.ws8{word-spacing:-87.261600px;}
.ws0{word-spacing:-54.480000px;}
.ws2{word-spacing:-49.440000px;}
.ws1{word-spacing:-48.000000px;}
.ws5{word-spacing:-32.688000px;}
.ws3{word-spacing:-32.630400px;}
.ws9{word-spacing:-27.240000px;}
.ws7{word-spacing:-24.720000px;}
.ws4{word-spacing:-23.167584px;}
.ws6{word-spacing:-14.832000px;}
.wsa{word-spacing:0.000000px;}
._8{margin-left:-25.764835px;}
._a{margin-left:-24.564564px;}
._4{margin-left:-21.840000px;}
._17{margin-left:-14.881200px;}
._18{margin-left:-12.479400px;}
._c{margin-left:-11.082985px;}
._1a{margin-left:-8.517648px;}
._9{margin-left:-6.771006px;}
._16{margin-left:-5.040000px;}
._10{margin-left:-3.596880px;}
._2{margin-left:-1.800000px;}
._1{width:1.440000px;}
._3{width:2.520000px;}
._6{width:3.840000px;}
._5{width:5.520000px;}
._19{width:7.200000px;}
._7{width:8.656322px;}
._d{width:11.612510px;}
._b{width:20.337565px;}
._13{width:29.572800px;}
._14{width:31.252800px;}
._15{width:36.010800px;}
._f{width:47.030400px;}
._e{width:48.109680px;}
._11{width:56.989680px;}
._12{width:58.068000px;}
._0{width:136.063200px;}
.fc3{color:transparent;}
.fc1{color:rgb(255,255,255);}
.fc2{color:rgb(0,73,147);}
.fc0{color:rgb(23,23,21);}
.fs8{font-size:72.000000px;}
.fs5{font-size:112.464000px;}
.fs9{font-size:120.000000px;}
.fs7{font-size:144.000000px;}
.fs4{font-size:158.400000px;}
.fs6{font-size:170.400000px;}
.fs0{font-size:240.000000px;}
.fs3{font-size:423.600000px;}
.fs2{font-size:533.400000px;}
.fs1{font-size:635.400000px;}
.y0{bottom:0.000000px;}
.y31{bottom:10.352970px;}
.y2a{bottom:31.515045px;}
.y28{bottom:38.265045px;}
.y26{bottom:38.400045px;}
.y3d{bottom:59.588670px;}
.y3c{bottom:120.188970px;}
.y3f{bottom:126.267300px;}
.y4a{bottom:536.447850px;}
.y49{bottom:566.747850px;}
.y48{bottom:597.047850px;}
.y12{bottom:620.052000px;}
.y47{bottom:627.347850px;}
.y46{bottom:657.647850px;}
.y11{bottom:680.652000px;}
.y45{bottom:687.948000px;}
.y10{bottom:741.252000px;}
.y44{bottom:743.227500px;}
.y3a{bottom:745.314000px;}
.y39{bottom:781.674000px;}
.yf{bottom:828.852000px;}
.y38{bottom:882.513150px;}
.ye{bottom:889.452000px;}
.y37{bottom:943.113150px;}
.yd{bottom:950.052000px;}
.y36{bottom:1030.713150px;}
.yc{bottom:1037.652000px;}
.yb{bottom:1098.252000px;}
.y35{bottom:1118.313150px;}
.y34{bottom:1178.913150px;}
.ya{bottom:1185.851250px;}
.y9{bottom:1246.451250px;}
.y33{bottom:1266.513150px;}
.y32{bottom:1327.113000px;}
.y30{bottom:1428.105855px;}
.y2e{bottom:1642.105800px;}
.y2d{bottom:1789.597500px;}
.y3b{bottom:1820.189550px;}
.y8{bottom:1847.055750px;}
.y7{bottom:1907.655750px;}
.y6{bottom:1968.255750px;}
.y5{bottom:2055.855750px;}
.y4{bottom:2116.455750px;}
.y3{bottom:2177.055750px;}
.y2{bottom:2237.655000px;}
.y1{bottom:2298.255000px;}
.y3e{bottom:2308.912500px;}
.y2f{bottom:2598.402300px;}
.y16{bottom:2598.403500px;}
.y2c{bottom:2737.056600px;}
.y2b{bottom:2980.228500px;}
.y29{bottom:3061.971585px;}
.y27{bottom:3181.979100px;}
.y25{bottom:3301.986615px;}
.y20{bottom:3459.398850px;}
.y1f{bottom:3546.998850px;}
.y1e{bottom:3607.598850px;}
.y1d{bottom:3695.198850px;}
.y1c{bottom:3755.798850px;}
.y1b{bottom:3843.398850px;}
.y1a{bottom:3903.998850px;}
.y19{bottom:3991.598850px;}
.y18{bottom:4052.198850px;}
.y17{bottom:4112.799000px;}
.y24{bottom:4112.799300px;}
.y15{bottom:4224.435000px;}
.y43{bottom:4250.573400px;}
.y42{bottom:4280.873400px;}
.y41{bottom:4311.173400px;}
.y40{bottom:4341.473700px;}
.y4b{bottom:4424.029500px;}
.y23{bottom:4490.028300px;}
.y22{bottom:4559.139180px;}
.y21{bottom:4612.804350px;}
.y14{bottom:4703.983500px;}
.y13{bottom:4898.434500px;}
.h13{height:66.023438px;}
.h12{height:66.024637px;}
.h16{height:85.440000px;}
.h8{height:103.128609px;}
.ha{height:103.500000px;}
.h14{height:110.039062px;}
.h15{height:110.040000px;}
.he{height:132.048000px;}
.hc{height:132.049200px;}
.h9{height:220.078200px;}
.h2{height:220.080000px;}
.hf{height:220.080600px;}
.hb{height:220.082400px;}
.h3{height:220.083000px;}
.h11{height:230.625000px;}
.h7{height:232.275563px;}
.h10{height:237.651000px;}
.h6{height:388.437891px;}
.h5{height:512.564063px;}
.h4{height:610.579688px;}
.hd{height:846.051000px;}
.h0{height:5055.590550px;}
.h1{height:5055.750000px;}
.w4{width:564.378000px;}
.w2{width:1123.846500px;}
.w3{width:1663.275000px;}
.w0{width:3575.905515px;}
.w1{width:3576.000000px;}
.x0{left:0.000000px;}
.xb{left:24.448500px;}
.x6{left:133.987500px;}
.x3{left:150.009300px;}
.x4{left:207.424800px;}
.x7{left:283.996500px;}
.x9{left:1007.401500px;}
.x1{left:1080.850500px;}
.x2{left:1138.266000px;}
.x5{left:1860.117900px;}
.xf{left:1888.167150px;}
.x8{left:1917.532950px;}
.xa{left:2824.541580px;}
.xe{left:2926.466250px;}
.x10{left:3128.725500px;}
.xd{left:3199.588200px;}
.xc{left:3213.840000px;}
@media print{
.v2{vertical-align:-77.356267pt;}
.v3{vertical-align:-54.921173pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:77.356267pt;}
.ls5{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.000533pt;}
.ls2{letter-spacing:0.001173pt;}
.ls0{letter-spacing:0.001600pt;}
.ls3{letter-spacing:43.733333pt;}
.ls1{letter-spacing:120.944000pt;}
.ws8{word-spacing:-77.565867pt;}
.ws0{word-spacing:-48.426667pt;}
.ws2{word-spacing:-43.946667pt;}
.ws1{word-spacing:-42.666667pt;}
.ws5{word-spacing:-29.056000pt;}
.ws3{word-spacing:-29.004800pt;}
.ws9{word-spacing:-24.213333pt;}
.ws7{word-spacing:-21.973333pt;}
.ws4{word-spacing:-20.593408pt;}
.ws6{word-spacing:-13.184000pt;}
.wsa{word-spacing:0.000000pt;}
._8{margin-left:-22.902075pt;}
._a{margin-left:-21.835168pt;}
._4{margin-left:-19.413333pt;}
._17{margin-left:-13.227733pt;}
._18{margin-left:-11.092800pt;}
._c{margin-left:-9.851542pt;}
._1a{margin-left:-7.571243pt;}
._9{margin-left:-6.018672pt;}
._16{margin-left:-4.480000pt;}
._10{margin-left:-3.197227pt;}
._2{margin-left:-1.600000pt;}
._1{width:1.280000pt;}
._3{width:2.240000pt;}
._6{width:3.413333pt;}
._5{width:4.906667pt;}
._19{width:6.400000pt;}
._7{width:7.694509pt;}
._d{width:10.322231pt;}
._b{width:18.077836pt;}
._13{width:26.286933pt;}
._14{width:27.780267pt;}
._15{width:32.009600pt;}
._f{width:41.804800pt;}
._e{width:42.764160pt;}
._11{width:50.657493pt;}
._12{width:51.616000pt;}
._0{width:120.945067pt;}
.fs8{font-size:64.000000pt;}
.fs5{font-size:99.968000pt;}
.fs9{font-size:106.666667pt;}
.fs7{font-size:128.000000pt;}
.fs4{font-size:140.800000pt;}
.fs6{font-size:151.466667pt;}
.fs0{font-size:213.333333pt;}
.fs3{font-size:376.533333pt;}
.fs2{font-size:474.133333pt;}
.fs1{font-size:564.800000pt;}
.y0{bottom:0.000000pt;}
.y31{bottom:9.202640pt;}
.y2a{bottom:28.013373pt;}
.y28{bottom:34.013373pt;}
.y26{bottom:34.133373pt;}
.y3d{bottom:52.967707pt;}
.y3c{bottom:106.834640pt;}
.y3f{bottom:112.237600pt;}
.y4a{bottom:476.842533pt;}
.y49{bottom:503.775867pt;}
.y48{bottom:530.709200pt;}
.y12{bottom:551.157333pt;}
.y47{bottom:557.642533pt;}
.y46{bottom:584.575867pt;}
.y11{bottom:605.024000pt;}
.y45{bottom:611.509333pt;}
.y10{bottom:658.890667pt;}
.y44{bottom:660.646667pt;}
.y3a{bottom:662.501333pt;}
.y39{bottom:694.821333pt;}
.yf{bottom:736.757333pt;}
.y38{bottom:784.456133pt;}
.ye{bottom:790.624000pt;}
.y37{bottom:838.322800pt;}
.yd{bottom:844.490667pt;}
.y36{bottom:916.189467pt;}
.yc{bottom:922.357333pt;}
.yb{bottom:976.224000pt;}
.y35{bottom:994.056133pt;}
.y34{bottom:1047.922800pt;}
.ya{bottom:1054.090000pt;}
.y9{bottom:1107.956667pt;}
.y33{bottom:1125.789467pt;}
.y32{bottom:1179.656000pt;}
.y30{bottom:1269.427427pt;}
.y2e{bottom:1459.649600pt;}
.y2d{bottom:1590.753333pt;}
.y3b{bottom:1617.946267pt;}
.y8{bottom:1641.827333pt;}
.y7{bottom:1695.694000pt;}
.y6{bottom:1749.560667pt;}
.y5{bottom:1827.427333pt;}
.y4{bottom:1881.294000pt;}
.y3{bottom:1935.160667pt;}
.y2{bottom:1989.026667pt;}
.y1{bottom:2042.893333pt;}
.y3e{bottom:2052.366667pt;}
.y2f{bottom:2309.690933pt;}
.y16{bottom:2309.692000pt;}
.y2c{bottom:2432.939200pt;}
.y2b{bottom:2649.092000pt;}
.y29{bottom:2721.752520pt;}
.y27{bottom:2828.425867pt;}
.y25{bottom:2935.099213pt;}
.y20{bottom:3075.021200pt;}
.y1f{bottom:3152.887867pt;}
.y1e{bottom:3206.754533pt;}
.y1d{bottom:3284.621200pt;}
.y1c{bottom:3338.487867pt;}
.y1b{bottom:3416.354533pt;}
.y1a{bottom:3470.221200pt;}
.y19{bottom:3548.087867pt;}
.y18{bottom:3601.954533pt;}
.y17{bottom:3655.821333pt;}
.y24{bottom:3655.821600pt;}
.y15{bottom:3755.053333pt;}
.y43{bottom:3778.287467pt;}
.y42{bottom:3805.220800pt;}
.y41{bottom:3832.154133pt;}
.y40{bottom:3859.087733pt;}
.y4b{bottom:3932.470667pt;}
.y23{bottom:3991.136267pt;}
.y22{bottom:4052.568160pt;}
.y21{bottom:4100.270533pt;}
.y14{bottom:4181.318667pt;}
.y13{bottom:4354.164000pt;}
.h13{height:58.687500pt;}
.h12{height:58.688567pt;}
.h16{height:75.946667pt;}
.h8{height:91.669875pt;}
.ha{height:92.000000pt;}
.h14{height:97.812500pt;}
.h15{height:97.813333pt;}
.he{height:117.376000pt;}
.hc{height:117.377067pt;}
.h9{height:195.625067pt;}
.h2{height:195.626667pt;}
.hf{height:195.627200pt;}
.hb{height:195.628800pt;}
.h3{height:195.629333pt;}
.h11{height:205.000000pt;}
.h7{height:206.467167pt;}
.h10{height:211.245333pt;}
.h6{height:345.278125pt;}
.h5{height:455.612500pt;}
.h4{height:542.737500pt;}
.hd{height:752.045333pt;}
.h0{height:4493.858267pt;}
.h1{height:4494.000000pt;}
.w4{width:501.669333pt;}
.w2{width:998.974667pt;}
.w3{width:1478.466667pt;}
.w0{width:3178.582680pt;}
.w1{width:3178.666667pt;}
.x0{left:0.000000pt;}
.xb{left:21.732000pt;}
.x6{left:119.100000pt;}
.x3{left:133.341600pt;}
.x4{left:184.377600pt;}
.x7{left:252.441333pt;}
.x9{left:895.468000pt;}
.x1{left:960.756000pt;}
.x2{left:1011.792000pt;}
.x5{left:1653.438133pt;}
.xf{left:1678.370800pt;}
.x8{left:1704.473733pt;}
.xa{left:2510.703627pt;}
.xe{left:2601.303333pt;}
.x10{left:2781.089333pt;}
.xd{left:2844.078400pt;}
.xc{left:2856.746667pt;}
}




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