
    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_9840862e60a9367757c2d154.woff')format("woff");}.ff1{font-family:ff1;line-height:0.995605;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_b81fcc058dfff7f19a479c2c.woff')format("woff");}.ff2{font-family:ff2;line-height:0.967773;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_3a876f3440f9d4284a03c640.woff')format("woff");}.ff3{font-family:ff3;line-height:0.975586;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_2f7b11d43bce43a76bef2d56.woff')format("woff");}.ff4{font-family:ff4;line-height:0.936523;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_ffb1639c94b9a00511e51272.woff')format("woff");}.ff5{font-family:ff5;line-height:0.995605;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.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);}
.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;}
.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:-45.648000px;}
.ws7{word-spacing:-38.040002px;}
.ws6{word-spacing:-38.039998px;}
.ws1{word-spacing:-24.004638px;}
.ws2{word-spacing:-19.203710px;}
.ws3{word-spacing:-13.202550px;}
.ws4{word-spacing:-4.414733px;}
.ws8{word-spacing:0.000000px;}
.ws0{word-spacing:0.144000px;}
._f{margin-left:-23.616000px;}
._10{margin-left:-20.592000px;}
._0{margin-left:-19.440000px;}
._3{margin-left:-13.247999px;}
._11{margin-left:-10.512000px;}
._7{margin-left:-9.216000px;}
._1{margin-left:-7.344000px;}
._5{margin-left:-5.616000px;}
._8{margin-left:-4.320000px;}
._2{margin-left:-3.168000px;}
._6{margin-left:-1.872000px;}
._a{width:1.259220px;}
._4{width:2.736000px;}
._b{width:3.988328px;}
._c{width:5.716452px;}
._d{width:6.910531px;}
._e{width:9.808412px;}
._9{width:46.656000px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:41.648424px;}
.fs4{font-size:60.579528px;}
.fs3{font-size:75.724410px;}
.fs6{font-size:119.999994px;}
.fs7{font-size:120.000006px;}
.fs1{font-size:143.999994px;}
.fs2{font-size:144.000000px;}
.fs0{font-size:431.999994px;}
.y0{bottom:0.000000px;}
.yb3{bottom:235.151784px;}
.yb2{bottom:271.151783px;}
.yb1{bottom:307.151781px;}
.y81{bottom:313.392300px;}
.yb6{bottom:316.687354px;}
.yb0{bottom:343.151779px;}
.yaf{bottom:415.151776px;}
.yae{bottom:451.151775px;}
.yad{bottom:487.151774px;}
.yac{bottom:523.151772px;}
.yab{bottom:595.151769px;}
.yaa{bottom:631.151768px;}
.ya9{bottom:667.151766px;}
.y85{bottom:718.364023px;}
.ya8{bottom:739.151763px;}
.y84{bottom:754.364022px;}
.ya7{bottom:775.151762px;}
.ya6{bottom:811.151760px;}
.ya5{bottom:883.151757px;}
.ya4{bottom:919.151756px;}
.ya3{bottom:991.151752px;}
.ya2{bottom:1027.151751px;}
.y9b{bottom:1034.246576px;}
.ya1{bottom:1063.151750px;}
.y9a{bottom:1070.246576px;}
.ya0{bottom:1135.151747px;}
.y83{bottom:1363.854400px;}
.y82{bottom:1399.854399px;}
.ybd{bottom:1414.898658px;}
.ybc{bottom:1450.898660px;}
.ybb{bottom:1486.898656px;}
.yba{bottom:1522.898657px;}
.yb9{bottom:1594.898657px;}
.yb8{bottom:1630.898657px;}
.yb7{bottom:1666.898657px;}
.y92{bottom:1750.757325px;}
.y91{bottom:1786.757323px;}
.y58{bottom:1862.747126px;}
.y57{bottom:1898.747126px;}
.y1d{bottom:1920.745943px;}
.y56{bottom:1934.747126px;}
.y1c{bottom:1956.745943px;}
.y3c{bottom:1991.801387px;}
.y55{bottom:2006.747126px;}
.y3b{bottom:2010.998707px;}
.y1b{bottom:2028.745943px;}
.y3d{bottom:2040.773545px;}
.y54{bottom:2042.747126px;}
.y44{bottom:2074.675815px;}
.y40{bottom:2075.066766px;}
.y53{bottom:2078.747126px;}
.y3a{bottom:2082.347195px;}
.y43{bottom:2086.042806px;}
.y39{bottom:2101.278297px;}
.y42{bottom:2108.058542px;}
.y52{bottom:2114.747126px;}
.y38{bottom:2120.209400px;}
.y41{bottom:2122.299393px;}
.y37{bottom:2139.140502px;}
.y3f{bottom:2144.975115px;}
.y36{bottom:2158.337823px;}
.y3e{bottom:2159.215044px;}
.y80{bottom:2161.218337px;}
.y51{bottom:2186.747126px;}
.y7f{bottom:2197.218337px;}
.y50{bottom:2222.747126px;}
.y7e{bottom:2233.218337px;}
.y31{bottom:2251.455870px;}
.y4f{bottom:2258.747126px;}
.y7d{bottom:2269.218337px;}
.y30{bottom:2270.652268px;}
.y4e{bottom:2294.747126px;}
.y32{bottom:2300.428527px;}
.y7c{bottom:2305.218337px;}
.y33{bottom:2327.107183px;}
.y4d{bottom:2330.747126px;}
.y34{bottom:2331.015416px;}
.y35{bottom:2332.481250px;}
.y2f{bottom:2339.975341px;}
.yb5{bottom:2340.068132px;}
.y7b{bottom:2341.218337px;}
.y2e{bottom:2358.906444px;}
.y4c{bottom:2366.747126px;}
.yb4{bottom:2376.068131px;}
.y2d{bottom:2377.837546px;}
.y2c{bottom:2396.768649px;}
.y4b{bottom:2402.747126px;}
.y7a{bottom:2413.218337px;}
.y2b{bottom:2415.699751px;}
.y2a{bottom:2434.630854px;}
.y79{bottom:2449.218337px;}
.y29{bottom:2453.827252px;}
.y4a{bottom:2474.747126px;}
.y78{bottom:2485.218337px;}
.y49{bottom:2510.747126px;}
.y77{bottom:2521.218337px;}
.y27{bottom:2534.754166px;}
.y48{bottom:2546.747126px;}
.y26{bottom:2553.951487px;}
.y76{bottom:2557.218337px;}
.y47{bottom:2582.747126px;}
.y28{bottom:2583.725379px;}
.y75{bottom:2593.218337px;}
.y25{bottom:2617.722090px;}
.y46{bottom:2618.747126px;}
.y74{bottom:2629.218337px;}
.y24{bottom:2636.653192px;}
.y45{bottom:2654.747126px;}
.y23{bottom:2655.850513px;}
.y73{bottom:2665.218337px;}
.y72{bottom:2701.218337px;}
.y22{bottom:2707.784675px;}
.y71{bottom:2737.218337px;}
.y21{bottom:2743.784675px;}
.y70{bottom:2773.218337px;}
.y20{bottom:2779.784675px;}
.y1f{bottom:2815.784675px;}
.y6f{bottom:2845.218337px;}
.y6e{bottom:2881.218337px;}
.y1e{bottom:2887.784675px;}
.y6d{bottom:2917.218337px;}
.y6c{bottom:2953.218337px;}
.y6b{bottom:2989.218337px;}
.y9f{bottom:3006.874768px;}
.y6a{bottom:3025.218337px;}
.y9e{bottom:3042.874767px;}
.y69{bottom:3061.218337px;}
.y9d{bottom:3078.874765px;}
.y68{bottom:3097.218337px;}
.y9c{bottom:3114.874764px;}
.y67{bottom:3169.218337px;}
.y66{bottom:3205.218337px;}
.y99{bottom:3222.556599px;}
.y65{bottom:3241.218337px;}
.y98{bottom:3258.556597px;}
.y64{bottom:3277.218337px;}
.y63{bottom:3313.218337px;}
.y97{bottom:3330.556594px;}
.y62{bottom:3349.218337px;}
.y61{bottom:3385.218337px;}
.y96{bottom:3402.556589px;}
.y60{bottom:3421.218337px;}
.y95{bottom:3438.556587px;}
.y5f{bottom:3457.218337px;}
.y94{bottom:3474.556586px;}
.y5e{bottom:3493.218337px;}
.y93{bottom:3510.556584px;}
.y5d{bottom:3529.218337px;}
.y5c{bottom:3565.218337px;}
.y5b{bottom:3601.218337px;}
.y5a{bottom:3637.218337px;}
.y59{bottom:3673.218337px;}
.y1a{bottom:3770.648998px;}
.y19{bottom:3806.648998px;}
.y18{bottom:3842.648998px;}
.y17{bottom:3878.648998px;}
.y16{bottom:3914.648998px;}
.y15{bottom:3986.648998px;}
.y14{bottom:4022.648998px;}
.y13{bottom:4058.648998px;}
.y12{bottom:4094.648998px;}
.y11{bottom:4130.648998px;}
.y10{bottom:4166.648998px;}
.yf{bottom:4202.648998px;}
.ye{bottom:4274.648998px;}
.yd{bottom:4310.648998px;}
.yc{bottom:4346.648998px;}
.y90{bottom:4377.890454px;}
.y8f{bottom:4413.890454px;}
.yb{bottom:4418.648998px;}
.y8e{bottom:4449.890454px;}
.ya{bottom:4454.648998px;}
.y8d{bottom:4485.890454px;}
.y9{bottom:4490.648998px;}
.y8c{bottom:4521.890454px;}
.y8{bottom:4526.648998px;}
.y8b{bottom:4557.890454px;}
.y7{bottom:4562.648998px;}
.y8a{bottom:4593.890454px;}
.y6{bottom:4598.648998px;}
.y89{bottom:4629.890454px;}
.y88{bottom:4665.890454px;}
.y5{bottom:4670.648998px;}
.y87{bottom:4701.890454px;}
.y86{bottom:4773.890454px;}
.y4{bottom:4781.571359px;}
.y3{bottom:4817.571357px;}
.y2{bottom:4853.571356px;}
.y1{bottom:4988.571356px;}
.h6{height:31.643041px;}
.h5{height:46.026243px;}
.h4{height:57.532804px;}
.h7{height:91.171870px;}
.h8{height:91.171880px;}
.h2{height:109.406245px;}
.h3{height:109.406250px;}
.h1{height:328.218745px;}
.h0{height:5184.000000px;}
.w0{width:3888.000000px;}
.x0{left:0.000000px;}
.x17{left:106.048809px;}
.x1{left:108.185773px;}
.x3{left:115.557341px;}
.x2{left:117.701870px;}
.x1d{left:125.598547px;}
.x1c{left:1011.297821px;}
.x16{left:1037.309226px;}
.x1a{left:1166.546565px;}
.x18{left:2007.684563px;}
.x4{left:2009.621560px;}
.x19{left:2010.998790px;}
.x1e{left:2108.249973px;}
.x1b{left:2110.306675px;}
.x14{left:3223.609940px;}
.x15{left:3227.518171px;}
.x7{left:3278.699448px;}
.x5{left:3279.804552px;}
.x8{left:3281.412465px;}
.x6{left:3282.517568px;}
.xd{left:3287.372261px;}
.xe{left:3301.613111px;}
.xf{left:3314.628243px;}
.x10{left:3327.643376px;}
.x9{left:3349.920622px;}
.x11{left:3360.789442px;}
.xa{left:3387.297718px;}
.x12{left:3388.343663px;}
.xb{left:3390.010736px;}
.x13{left:3391.056678px;}
.xc{left:3458.369811px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws5{word-spacing:-40.576000pt;}
.ws7{word-spacing:-33.813335pt;}
.ws6{word-spacing:-33.813332pt;}
.ws1{word-spacing:-21.337456pt;}
.ws2{word-spacing:-17.069965pt;}
.ws3{word-spacing:-11.735600pt;}
.ws4{word-spacing:-3.924207pt;}
.ws8{word-spacing:0.000000pt;}
.ws0{word-spacing:0.128000pt;}
._f{margin-left:-20.992000pt;}
._10{margin-left:-18.304000pt;}
._0{margin-left:-17.280000pt;}
._3{margin-left:-11.776000pt;}
._11{margin-left:-9.344000pt;}
._7{margin-left:-8.192000pt;}
._1{margin-left:-6.528000pt;}
._5{margin-left:-4.992000pt;}
._8{margin-left:-3.840000pt;}
._2{margin-left:-2.816000pt;}
._6{margin-left:-1.664000pt;}
._a{width:1.119306pt;}
._4{width:2.432000pt;}
._b{width:3.545180pt;}
._c{width:5.081290pt;}
._d{width:6.142694pt;}
._e{width:8.718588pt;}
._9{width:41.472000pt;}
.fs5{font-size:37.020821pt;}
.fs4{font-size:53.848469pt;}
.fs3{font-size:67.310587pt;}
.fs6{font-size:106.666661pt;}
.fs7{font-size:106.666672pt;}
.fs1{font-size:127.999995pt;}
.fs2{font-size:128.000000pt;}
.fs0{font-size:383.999995pt;}
.y0{bottom:0.000000pt;}
.yb3{bottom:209.023808pt;}
.yb2{bottom:241.023807pt;}
.yb1{bottom:273.023805pt;}
.y81{bottom:278.570933pt;}
.yb6{bottom:281.499871pt;}
.yb0{bottom:305.023804pt;}
.yaf{bottom:369.023801pt;}
.yae{bottom:401.023800pt;}
.yad{bottom:433.023799pt;}
.yac{bottom:465.023797pt;}
.yab{bottom:529.023795pt;}
.yaa{bottom:561.023793pt;}
.ya9{bottom:593.023792pt;}
.y85{bottom:638.545798pt;}
.ya8{bottom:657.023789pt;}
.y84{bottom:670.545797pt;}
.ya7{bottom:689.023788pt;}
.ya6{bottom:721.023787pt;}
.ya5{bottom:785.023784pt;}
.ya4{bottom:817.023783pt;}
.ya3{bottom:881.023780pt;}
.ya2{bottom:913.023779pt;}
.y9b{bottom:919.330289pt;}
.ya1{bottom:945.023777pt;}
.y9a{bottom:951.330289pt;}
.ya0{bottom:1009.023775pt;}
.y83{bottom:1212.315022pt;}
.y82{bottom:1244.315021pt;}
.ybd{bottom:1257.687696pt;}
.ybc{bottom:1289.687697pt;}
.ybb{bottom:1321.687694pt;}
.yba{bottom:1353.687695pt;}
.yb9{bottom:1417.687695pt;}
.yb8{bottom:1449.687695pt;}
.yb7{bottom:1481.687695pt;}
.y92{bottom:1556.228733pt;}
.y91{bottom:1588.228732pt;}
.y58{bottom:1655.775223pt;}
.y57{bottom:1687.775223pt;}
.y1d{bottom:1707.329727pt;}
.y56{bottom:1719.775223pt;}
.y1c{bottom:1739.329727pt;}
.y3c{bottom:1770.490121pt;}
.y55{bottom:1783.775223pt;}
.y3b{bottom:1787.554407pt;}
.y1b{bottom:1803.329727pt;}
.y3d{bottom:1814.020929pt;}
.y54{bottom:1815.775223pt;}
.y44{bottom:1844.156280pt;}
.y40{bottom:1844.503792pt;}
.y53{bottom:1847.775223pt;}
.y3a{bottom:1850.975284pt;}
.y43{bottom:1854.260272pt;}
.y39{bottom:1867.802931pt;}
.y42{bottom:1873.829815pt;}
.y52{bottom:1879.775223pt;}
.y38{bottom:1884.630577pt;}
.y41{bottom:1886.488349pt;}
.y37{bottom:1901.458224pt;}
.y3f{bottom:1906.644547pt;}
.y36{bottom:1918.522509pt;}
.y3e{bottom:1919.302261pt;}
.y80{bottom:1921.082967pt;}
.y51{bottom:1943.775223pt;}
.y7f{bottom:1953.082967pt;}
.y50{bottom:1975.775223pt;}
.y7e{bottom:1985.082967pt;}
.y31{bottom:2001.294107pt;}
.y4f{bottom:2007.775223pt;}
.y7d{bottom:2017.082967pt;}
.y30{bottom:2018.357572pt;}
.y4e{bottom:2039.775223pt;}
.y32{bottom:2044.825357pt;}
.y7c{bottom:2049.082967pt;}
.y33{bottom:2068.539719pt;}
.y4d{bottom:2071.775223pt;}
.y34{bottom:2072.013703pt;}
.y35{bottom:2073.316667pt;}
.y2f{bottom:2079.978081pt;}
.yb5{bottom:2080.060562pt;}
.y7b{bottom:2081.082967pt;}
.y2e{bottom:2096.805728pt;}
.y4c{bottom:2103.775223pt;}
.yb4{bottom:2112.060561pt;}
.y2d{bottom:2113.633375pt;}
.y2c{bottom:2130.461021pt;}
.y4b{bottom:2135.775223pt;}
.y7a{bottom:2145.082967pt;}
.y2b{bottom:2147.288668pt;}
.y2a{bottom:2164.116315pt;}
.y79{bottom:2177.082967pt;}
.y29{bottom:2181.179780pt;}
.y4a{bottom:2199.775223pt;}
.y78{bottom:2209.082967pt;}
.y49{bottom:2231.775223pt;}
.y77{bottom:2241.082967pt;}
.y27{bottom:2253.114815pt;}
.y48{bottom:2263.775223pt;}
.y26{bottom:2270.179100pt;}
.y76{bottom:2273.082967pt;}
.y47{bottom:2295.775223pt;}
.y28{bottom:2296.644781pt;}
.y75{bottom:2305.082967pt;}
.y25{bottom:2326.864080pt;}
.y46{bottom:2327.775223pt;}
.y74{bottom:2337.082967pt;}
.y24{bottom:2343.691727pt;}
.y45{bottom:2359.775223pt;}
.y23{bottom:2360.756012pt;}
.y73{bottom:2369.082967pt;}
.y72{bottom:2401.082967pt;}
.y22{bottom:2406.919711pt;}
.y71{bottom:2433.082967pt;}
.y21{bottom:2438.919711pt;}
.y70{bottom:2465.082967pt;}
.y20{bottom:2470.919711pt;}
.y1f{bottom:2502.919711pt;}
.y6f{bottom:2529.082967pt;}
.y6e{bottom:2561.082967pt;}
.y1e{bottom:2566.919711pt;}
.y6d{bottom:2593.082967pt;}
.y6c{bottom:2625.082967pt;}
.y6b{bottom:2657.082967pt;}
.y9f{bottom:2672.777572pt;}
.y6a{bottom:2689.082967pt;}
.y9e{bottom:2704.777571pt;}
.y69{bottom:2721.082967pt;}
.y9d{bottom:2736.777569pt;}
.y68{bottom:2753.082967pt;}
.y9c{bottom:2768.777568pt;}
.y67{bottom:2817.082967pt;}
.y66{bottom:2849.082967pt;}
.y99{bottom:2864.494755pt;}
.y65{bottom:2881.082967pt;}
.y98{bottom:2896.494753pt;}
.y64{bottom:2913.082967pt;}
.y63{bottom:2945.082967pt;}
.y97{bottom:2960.494751pt;}
.y62{bottom:2977.082967pt;}
.y61{bottom:3009.082967pt;}
.y96{bottom:3024.494745pt;}
.y60{bottom:3041.082967pt;}
.y95{bottom:3056.494744pt;}
.y5f{bottom:3073.082967pt;}
.y94{bottom:3088.494743pt;}
.y5e{bottom:3105.082967pt;}
.y93{bottom:3120.494741pt;}
.y5d{bottom:3137.082967pt;}
.y5c{bottom:3169.082967pt;}
.y5b{bottom:3201.082967pt;}
.y5a{bottom:3233.082967pt;}
.y59{bottom:3265.082967pt;}
.y1a{bottom:3351.687999pt;}
.y19{bottom:3383.687999pt;}
.y18{bottom:3415.687999pt;}
.y17{bottom:3447.687999pt;}
.y16{bottom:3479.687999pt;}
.y15{bottom:3543.687999pt;}
.y14{bottom:3575.687999pt;}
.y13{bottom:3607.687999pt;}
.y12{bottom:3639.687999pt;}
.y11{bottom:3671.687999pt;}
.y10{bottom:3703.687999pt;}
.yf{bottom:3735.687999pt;}
.ye{bottom:3799.687999pt;}
.yd{bottom:3831.687999pt;}
.yc{bottom:3863.687999pt;}
.y90{bottom:3891.458181pt;}
.y8f{bottom:3923.458181pt;}
.yb{bottom:3927.687999pt;}
.y8e{bottom:3955.458181pt;}
.ya{bottom:3959.687999pt;}
.y8d{bottom:3987.458181pt;}
.y9{bottom:3991.687999pt;}
.y8c{bottom:4019.458181pt;}
.y8{bottom:4023.687999pt;}
.y8b{bottom:4051.458181pt;}
.y7{bottom:4055.687999pt;}
.y8a{bottom:4083.458181pt;}
.y6{bottom:4087.687999pt;}
.y89{bottom:4115.458181pt;}
.y88{bottom:4147.458181pt;}
.y5{bottom:4151.687999pt;}
.y87{bottom:4179.458181pt;}
.y86{bottom:4243.458181pt;}
.y4{bottom:4250.285652pt;}
.y3{bottom:4282.285651pt;}
.y2{bottom:4314.285649pt;}
.y1{bottom:4434.285649pt;}
.h6{height:28.127147pt;}
.h5{height:40.912216pt;}
.h4{height:51.140270pt;}
.h7{height:81.041663pt;}
.h8{height:81.041671pt;}
.h2{height:97.249996pt;}
.h3{height:97.250000pt;}
.h1{height:291.749996pt;}
.h0{height:4608.000000pt;}
.w0{width:3456.000000pt;}
.x0{left:0.000000pt;}
.x17{left:94.265608pt;}
.x1{left:96.165132pt;}
.x3{left:102.717636pt;}
.x2{left:104.623884pt;}
.x1d{left:111.643153pt;}
.x1c{left:898.931397pt;}
.x16{left:922.052645pt;}
.x1a{left:1036.930280pt;}
.x18{left:1784.608500pt;}
.x4{left:1786.330276pt;}
.x19{left:1787.554480pt;}
.x1e{left:1873.999976pt;}
.x1b{left:1875.828156pt;}
.x14{left:2865.431057pt;}
.x15{left:2868.905041pt;}
.x7{left:2914.399509pt;}
.x5{left:2915.381824pt;}
.x8{left:2916.811080pt;}
.x6{left:2917.793393pt;}
.xd{left:2922.108676pt;}
.xe{left:2934.767209pt;}
.xf{left:2946.336216pt;}
.x10{left:2957.905223pt;}
.x9{left:2977.707220pt;}
.x11{left:2987.368393pt;}
.xa{left:3010.931305pt;}
.x12{left:3011.861033pt;}
.xb{left:3013.342876pt;}
.x13{left:3014.272603pt;}
.xc{left:3074.106499pt;}
}




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