
    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_5179b6dc64e5d8e44873f3d0.woff')format("woff");}.ff1{font-family:ff1;line-height:1.017000;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_5f30a3ccc1228226142e9755.woff')format("woff");}.ff2{font-family:ff2;line-height:1.017000;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_21d78e5a92e67d6c9ab738d6.woff')format("woff");}.ff3{font-family:ff3;line-height:1.029297;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_56b478e860c12148aba3f75a.woff')format("woff");}.ff4{font-family:ff4;line-height:1.023000;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_f6a8c4f75a7f4bfb163d4724.woff')format("woff");}.ff5{font-family:ff5;line-height:1.008000;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_dbecef59c0f2ec6e162efd68.woff')format("woff");}.ff6{font-family:ff6;line-height:0.707031;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_8678a2ddb8bf47fef23ca77a.woff')format("woff");}.ff7{font-family:ff7;line-height:0.932129;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:ff8;src:url('chunks/assets/font_b762aa55281980318bb5fbf5.woff')format("woff");}.ff8{font-family:ff8;line-height:0.932129;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.246202,0.000000,-0.043412,0.246202,0,0);-ms-transform:matrix(0.246202,0.000000,-0.043412,0.246202,0,0);-webkit-transform:matrix(0.246202,0.000000,-0.043412,0.246202,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(0.363636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363636,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.v3{vertical-align:-108.961107px;}
.v2{vertical-align:-24.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.048000px;}
.ls2{letter-spacing:0.000000px;}
.ls3{letter-spacing:3.780000px;}
.ls5{letter-spacing:3.993339px;}
.ls1{letter-spacing:4.169067px;}
.ls0{letter-spacing:5.040000px;}
.ls4{letter-spacing:27.060000px;}
.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:-19.140000px;}
.ws6{word-spacing:-12.249600px;}
.ws5{word-spacing:-10.527000px;}
.ws4{word-spacing:-4.169067px;}
.wsa{word-spacing:-3.993339px;}
.ws2{word-spacing:-2.448000px;}
.ws3{word-spacing:-2.024975px;}
.ws9{word-spacing:-1.939622px;}
.ws7{word-spacing:-1.836000px;}
.ws1{word-spacing:-0.067018px;}
.ws0{word-spacing:0.000000px;}
._6{margin-left:-84.084000px;}
._2{margin-left:-6.600000px;}
._0{margin-left:-4.950000px;}
._4{margin-left:-3.502871px;}
._1{margin-left:-2.310000px;}
._5{margin-left:-1.265195px;}
._3{width:1.072046px;}
._7{width:912.974577px;}
.fc4{color:transparent;}
.fc3{color:rgb(39,91,155);}
.fc1{color:rgb(39,91,155);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:36.300000px;}
.fs5{font-size:42.240000px;}
.fs6{font-size:54.000000px;}
.fs0{font-size:66.000000px;}
.fs1{font-size:67.018160px;}
.fs8{font-size:81.000000px;}
.fs7{font-size:108.000000px;}
.fs9{font-size:114.095400px;}
.fs4{font-size:119.116200px;}
.fs2{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y5e{bottom:69.238950px;}
.y68{bottom:69.351600px;}
.y2f{bottom:71.566950px;}
.y98{bottom:87.000000px;}
.y67{bottom:87.347100px;}
.y2e{bottom:89.562450px;}
.y5d{bottom:90.540450px;}
.y66{bottom:105.342600px;}
.y2d{bottom:107.557950px;}
.y99{bottom:109.500000px;}
.y5c{bottom:111.841950px;}
.y65{bottom:123.338100px;}
.y2c{bottom:125.553450px;}
.y2b{bottom:131.553450px;}
.y5b{bottom:133.143450px;}
.y7d{bottom:141.280950px;}
.y64{bottom:141.333600px;}
.y5a{bottom:154.444950px;}
.y63{bottom:159.329100px;}
.y97{bottom:159.609000px;}
.y7c{bottom:163.786950px;}
.y59{bottom:175.746450px;}
.y96{bottom:180.613500px;}
.y62{bottom:183.324600px;}
.y7b{bottom:196.918950px;}
.y95{bottom:201.618000px;}
.y58{bottom:209.109450px;}
.y7a{bottom:219.424950px;}
.y94{bottom:222.622500px;}
.y57{bottom:230.410950px;}
.y27{bottom:241.486350px;}
.y93{bottom:243.627000px;}
.y56{bottom:251.712450px;}
.y79{bottom:252.556950px;}
.y26{bottom:263.992350px;}
.y92{bottom:264.631500px;}
.yb{bottom:266.477550px;}
.yc{bottom:266.489550px;}
.y55{bottom:273.013950px;}
.y78{bottom:275.062950px;}
.y91{bottom:285.636000px;}
.y25{bottom:286.498350px;}
.ya{bottom:288.983550px;}
.y54{bottom:294.315450px;}
.y42{bottom:302.895450px;}
.y90{bottom:306.640500px;}
.y77{bottom:308.194950px;}
.y24{bottom:309.004350px;}
.y8{bottom:311.461650px;}
.y9{bottom:311.489550px;}
.y41{bottom:325.401450px;}
.y53{bottom:327.678450px;}
.y76{bottom:330.700950px;}
.y23{bottom:331.510350px;}
.y8f{bottom:339.195000px;}
.y7{bottom:346.012650px;}
.y40{bottom:347.907450px;}
.y52{bottom:348.979950px;}
.y22{bottom:354.016350px;}
.y8e{bottom:360.199500px;}
.y75{bottom:363.830850px;}
.y6{bottom:368.518650px;}
.y51{bottom:370.281450px;}
.y3f{bottom:370.413450px;}
.y8d{bottom:381.204000px;}
.y21{bottom:388.567350px;}
.y5{bottom:391.024650px;}
.y50{bottom:391.582950px;}
.y8c{bottom:402.208500px;}
.y3e{bottom:404.964450px;}
.y74{bottom:407.590200px;}
.y20{bottom:411.073350px;}
.y4f{bottom:412.884450px;}
.y4{bottom:413.530650px;}
.y8b{bottom:423.213000px;}
.y3d{bottom:427.470450px;}
.y73{bottom:430.096200px;}
.y1d{bottom:433.515300px;}
.y1f{bottom:433.579350px;}
.y4e{bottom:434.185950px;}
.y3{bottom:436.036650px;}
.y1e{bottom:439.579350px;}
.y8a{bottom:444.217500px;}
.y3c{bottom:449.976450px;}
.y1c{bottom:456.021300px;}
.y72{bottom:456.842700px;}
.y2{bottom:458.542650px;}
.y4d{bottom:467.548950px;}
.y3b{bottom:472.482450px;}
.y89{bottom:476.772000px;}
.y1{bottom:481.048650px;}
.y71{bottom:483.594600px;}
.y4c{bottom:488.850450px;}
.y1b{bottom:490.572300px;}
.y3a{bottom:494.988450px;}
.y88{bottom:497.776500px;}
.y1a{bottom:513.078300px;}
.y39{bottom:517.494450px;}
.y87{bottom:518.781000px;}
.y4b{bottom:522.213450px;}
.y70{bottom:527.353500px;}
.y29{bottom:532.069663px;}
.y19{bottom:535.584300px;}
.y86{bottom:539.785500px;}
.y38{bottom:540.000450px;}
.y4a{bottom:543.514950px;}
.y6f{bottom:554.100000px;}
.y18{bottom:558.090300px;}
.y85{bottom:560.790000px;}
.y37{bottom:562.506450px;}
.y49{bottom:564.816450px;}
.y28{bottom:565.064850px;}
.y17{bottom:580.596300px;}
.y6e{bottom:580.846500px;}
.y84{bottom:581.794500px;}
.y48{bottom:586.117950px;}
.y36{bottom:597.057450px;}
.y83{bottom:602.799000px;}
.y16{bottom:603.102300px;}
.y6d{bottom:603.352500px;}
.y47{bottom:619.480950px;}
.y35{bottom:619.563450px;}
.y15{bottom:625.608300px;}
.y6c{bottom:625.858500px;}
.y82{bottom:635.353500px;}
.y46{bottom:640.782450px;}
.y34{bottom:642.069450px;}
.y14{bottom:648.114300px;}
.y6b{bottom:652.610400px;}
.y81{bottom:656.358000px;}
.y45{bottom:662.083950px;}
.y33{bottom:664.575450px;}
.y13{bottom:670.620300px;}
.y80{bottom:677.362500px;}
.y44{bottom:683.385450px;}
.yf{bottom:684.437400px;}
.y32{bottom:687.069450px;}
.y12{bottom:693.126300px;}
.y6a{bottom:696.370200px;}
.y7f{bottom:698.367000px;}
.y43{bottom:704.686950px;}
.y31{bottom:709.575450px;}
.y11{bottom:715.632300px;}
.y69{bottom:723.122250px;}
.ye{bottom:729.113400px;}
.y30{bottom:732.081450px;}
.y10{bottom:738.138300px;}
.y60{bottom:752.719950px;}
.yd{bottom:773.789400px;}
.y61{bottom:784.580550px;}
.y7e{bottom:784.611750px;}
.y5f{bottom:785.713950px;}
.y2a{bottom:786.829435px;}
.h5{height:29.040000px;}
.h7{height:33.792000px;}
.h8{height:43.200000px;}
.hd{height:47.824219px;}
.h2{height:52.800000px;}
.h9{height:53.088000px;}
.h3{height:53.614528px;}
.hb{height:64.800000px;}
.ha{height:97.611328px;}
.hc{height:103.120403px;}
.h6{height:107.658245px;}
.h4{height:130.148438px;}
.h0{height:892.914000px;}
.h1{height:893.250000px;}
.w0{width:1262.835000px;}
.w1{width:1263.000000px;}
.x0{left:0.000000px;}
.x1{left:68.490750px;}
.x11{left:85.500000px;}
.xd{left:89.178000px;}
.xf{left:90.266400px;}
.x8{left:95.599800px;}
.x4{left:101.763600px;}
.xe{left:108.546450px;}
.x2{left:167.620650px;}
.x3{left:316.943400px;}
.xb{left:615.484500px;}
.xc{left:638.475900px;}
.x5{left:662.656650px;}
.xa{left:669.583800px;}
.x9{left:687.220186px;}
.x10{left:781.401150px;}
.x6{left:926.321850px;}
.x7{left:932.274750px;}
@media print{
.v3{vertical-align:-96.854317pt;}
.v2{vertical-align:-21.333333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.376000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls3{letter-spacing:3.360000pt;}
.ls5{letter-spacing:3.549635pt;}
.ls1{letter-spacing:3.705837pt;}
.ls0{letter-spacing:4.480000pt;}
.ls4{letter-spacing:24.053333pt;}
.ws8{word-spacing:-17.013333pt;}
.ws6{word-spacing:-10.888533pt;}
.ws5{word-spacing:-9.357333pt;}
.ws4{word-spacing:-3.705837pt;}
.wsa{word-spacing:-3.549635pt;}
.ws2{word-spacing:-2.176000pt;}
.ws3{word-spacing:-1.799978pt;}
.ws9{word-spacing:-1.724108pt;}
.ws7{word-spacing:-1.632000pt;}
.ws1{word-spacing:-0.059572pt;}
.ws0{word-spacing:0.000000pt;}
._6{margin-left:-74.741333pt;}
._2{margin-left:-5.866667pt;}
._0{margin-left:-4.400000pt;}
._4{margin-left:-3.113663pt;}
._1{margin-left:-2.053333pt;}
._5{margin-left:-1.124617pt;}
._3{width:0.952930pt;}
._7{width:811.532958pt;}
.fs3{font-size:32.266667pt;}
.fs5{font-size:37.546667pt;}
.fs6{font-size:48.000000pt;}
.fs0{font-size:58.666667pt;}
.fs1{font-size:59.571698pt;}
.fs8{font-size:72.000000pt;}
.fs7{font-size:96.000000pt;}
.fs9{font-size:101.418133pt;}
.fs4{font-size:105.881067pt;}
.fs2{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y5e{bottom:61.545733pt;}
.y68{bottom:61.645867pt;}
.y2f{bottom:63.615067pt;}
.y98{bottom:77.333333pt;}
.y67{bottom:77.641867pt;}
.y2e{bottom:79.611067pt;}
.y5d{bottom:80.480400pt;}
.y66{bottom:93.637867pt;}
.y2d{bottom:95.607067pt;}
.y99{bottom:97.333333pt;}
.y5c{bottom:99.415067pt;}
.y65{bottom:109.633867pt;}
.y2c{bottom:111.603067pt;}
.y2b{bottom:116.936400pt;}
.y5b{bottom:118.349733pt;}
.y7d{bottom:125.583067pt;}
.y64{bottom:125.629867pt;}
.y5a{bottom:137.284400pt;}
.y63{bottom:141.625867pt;}
.y97{bottom:141.874667pt;}
.y7c{bottom:145.588400pt;}
.y59{bottom:156.219067pt;}
.y96{bottom:160.545333pt;}
.y62{bottom:162.955200pt;}
.y7b{bottom:175.039067pt;}
.y95{bottom:179.216000pt;}
.y58{bottom:185.875067pt;}
.y7a{bottom:195.044400pt;}
.y94{bottom:197.886667pt;}
.y57{bottom:204.809733pt;}
.y27{bottom:214.654533pt;}
.y93{bottom:216.557333pt;}
.y56{bottom:223.744400pt;}
.y79{bottom:224.495067pt;}
.y26{bottom:234.659867pt;}
.y92{bottom:235.228000pt;}
.yb{bottom:236.868933pt;}
.yc{bottom:236.879600pt;}
.y55{bottom:242.679067pt;}
.y78{bottom:244.500400pt;}
.y91{bottom:253.898667pt;}
.y25{bottom:254.665200pt;}
.ya{bottom:256.874267pt;}
.y54{bottom:261.613733pt;}
.y42{bottom:269.240400pt;}
.y90{bottom:272.569333pt;}
.y77{bottom:273.951067pt;}
.y24{bottom:274.670533pt;}
.y8{bottom:276.854800pt;}
.y9{bottom:276.879600pt;}
.y41{bottom:289.245733pt;}
.y53{bottom:291.269733pt;}
.y76{bottom:293.956400pt;}
.y23{bottom:294.675867pt;}
.y8f{bottom:301.506667pt;}
.y7{bottom:307.566800pt;}
.y40{bottom:309.251067pt;}
.y52{bottom:310.204400pt;}
.y22{bottom:314.681200pt;}
.y8e{bottom:320.177333pt;}
.y75{bottom:323.405200pt;}
.y6{bottom:327.572133pt;}
.y51{bottom:329.139067pt;}
.y3f{bottom:329.256400pt;}
.y8d{bottom:338.848000pt;}
.y21{bottom:345.393200pt;}
.y5{bottom:347.577467pt;}
.y50{bottom:348.073733pt;}
.y8c{bottom:357.518667pt;}
.y3e{bottom:359.968400pt;}
.y74{bottom:362.302400pt;}
.y20{bottom:365.398533pt;}
.y4f{bottom:367.008400pt;}
.y4{bottom:367.582800pt;}
.y8b{bottom:376.189333pt;}
.y3d{bottom:379.973733pt;}
.y73{bottom:382.307733pt;}
.y1d{bottom:385.346933pt;}
.y1f{bottom:385.403867pt;}
.y4e{bottom:385.943067pt;}
.y3{bottom:387.588133pt;}
.y1e{bottom:390.737200pt;}
.y8a{bottom:394.860000pt;}
.y3c{bottom:399.979067pt;}
.y1c{bottom:405.352267pt;}
.y72{bottom:406.082400pt;}
.y2{bottom:407.593467pt;}
.y4d{bottom:415.599067pt;}
.y3b{bottom:419.984400pt;}
.y89{bottom:423.797333pt;}
.y1{bottom:427.598800pt;}
.y71{bottom:429.861867pt;}
.y4c{bottom:434.533733pt;}
.y1b{bottom:436.064267pt;}
.y3a{bottom:439.989733pt;}
.y88{bottom:442.468000pt;}
.y1a{bottom:456.069600pt;}
.y39{bottom:459.995067pt;}
.y87{bottom:461.138667pt;}
.y4b{bottom:464.189733pt;}
.y70{bottom:468.758667pt;}
.y29{bottom:472.950811pt;}
.y19{bottom:476.074933pt;}
.y86{bottom:479.809333pt;}
.y38{bottom:480.000400pt;}
.y4a{bottom:483.124400pt;}
.y6f{bottom:492.533333pt;}
.y18{bottom:496.080267pt;}
.y85{bottom:498.480000pt;}
.y37{bottom:500.005733pt;}
.y49{bottom:502.059067pt;}
.y28{bottom:502.279867pt;}
.y17{bottom:516.085600pt;}
.y6e{bottom:516.308000pt;}
.y84{bottom:517.150667pt;}
.y48{bottom:520.993733pt;}
.y36{bottom:530.717733pt;}
.y83{bottom:535.821333pt;}
.y16{bottom:536.090933pt;}
.y6d{bottom:536.313333pt;}
.y47{bottom:550.649733pt;}
.y35{bottom:550.723067pt;}
.y15{bottom:556.096267pt;}
.y6c{bottom:556.318667pt;}
.y82{bottom:564.758667pt;}
.y46{bottom:569.584400pt;}
.y34{bottom:570.728400pt;}
.y14{bottom:576.101600pt;}
.y6b{bottom:580.098133pt;}
.y81{bottom:583.429333pt;}
.y45{bottom:588.519067pt;}
.y33{bottom:590.733733pt;}
.y13{bottom:596.106933pt;}
.y80{bottom:602.100000pt;}
.y44{bottom:607.453733pt;}
.yf{bottom:608.388800pt;}
.y32{bottom:610.728400pt;}
.y12{bottom:616.112267pt;}
.y6a{bottom:618.995733pt;}
.y7f{bottom:620.770667pt;}
.y43{bottom:626.388400pt;}
.y31{bottom:630.733733pt;}
.y11{bottom:636.117600pt;}
.y69{bottom:642.775333pt;}
.ye{bottom:648.100800pt;}
.y30{bottom:650.739067pt;}
.y10{bottom:656.122933pt;}
.y60{bottom:669.084400pt;}
.yd{bottom:687.812800pt;}
.y61{bottom:697.404933pt;}
.y7e{bottom:697.432667pt;}
.y5f{bottom:698.412400pt;}
.y2a{bottom:699.403943pt;}
.h5{height:25.813333pt;}
.h7{height:30.037333pt;}
.h8{height:38.400000pt;}
.hd{height:42.510417pt;}
.h2{height:46.933333pt;}
.h9{height:47.189333pt;}
.h3{height:47.657358pt;}
.hb{height:57.600000pt;}
.ha{height:86.765625pt;}
.hc{height:91.662580pt;}
.h6{height:95.696218pt;}
.h4{height:115.687500pt;}
.h0{height:793.701333pt;}
.h1{height:794.000000pt;}
.w0{width:1122.520000pt;}
.w1{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x1{left:60.880667pt;}
.x11{left:76.000000pt;}
.xd{left:79.269333pt;}
.xf{left:80.236800pt;}
.x8{left:84.977600pt;}
.x4{left:90.456533pt;}
.xe{left:96.485733pt;}
.x2{left:148.996133pt;}
.x3{left:281.727467pt;}
.xb{left:547.097333pt;}
.xc{left:567.534133pt;}
.x5{left:589.028133pt;}
.xa{left:595.185600pt;}
.x9{left:610.862388pt;}
.x10{left:694.578800pt;}
.x6{left:823.397200pt;}
.x7{left:828.688667pt;}
}




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