
    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_ec830f7d0f44d32d6541bb56.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_c3457a13512329ef72a996f1.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.950195;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_a62a2d496487d7c976fc4cb8.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.863281;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_615b061557172483b4e5067c.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_f77f24ed7929ae9a4cdff501.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.965820;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_341c011565f0118ce65531b0.woff2')format("woff");}.ff6{font-family:ff6;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.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);}
.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:-11.394000px;}
.v0{vertical-align:0.000000px;}
.ls7{letter-spacing:0.000000px;}
.ls3{letter-spacing:1.080000px;}
.ls0{letter-spacing:1.187838px;}
.ls1{letter-spacing:1.199910px;}
.ls5{letter-spacing:1.223880px;}
.ls2{letter-spacing:1.296000px;}
.ls6{letter-spacing:1.428306px;}
.ls4{letter-spacing:153.666000px;}
.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;}
}
.ws4{word-spacing:-98.216370px;}
.ws2{word-spacing:-76.248000px;}
.wsb{word-spacing:-69.768000px;}
.ws0{word-spacing:-55.154196px;}
.ws1{word-spacing:-37.584000px;}
.ws8{word-spacing:-29.916000px;}
.ws6{word-spacing:-28.062012px;}
.ws5{word-spacing:-26.633706px;}
.ws7{word-spacing:-23.272986px;}
.ws9{word-spacing:-19.929042px;}
.ws3{word-spacing:-0.216000px;}
.wsc{word-spacing:0.000000px;}
.wsa{word-spacing:959.518506px;}
._27{margin-left:-2061.521976px;}
._11{margin-left:-22.880982px;}
._17{margin-left:-19.801446px;}
._1b{margin-left:-18.576000px;}
._4{margin-left:-15.658920px;}
._10{margin-left:-12.538290px;}
._20{margin-left:-10.855080px;}
._8{margin-left:-9.047376px;}
._9{margin-left:-7.133508px;}
._a{margin-left:-5.219640px;}
._1{margin-left:-3.827736px;}
._6{margin-left:-2.783808px;}
._b{margin-left:-1.170420px;}
._3{width:1.043928px;}
._7{width:2.226276px;}
._1a{width:3.941244px;}
._19{width:5.112288px;}
._14{width:6.637788px;}
._2b{width:7.944048px;}
._5{width:10.219788px;}
._e{width:11.861028px;}
._2{width:13.223088px;}
._0{width:14.267016px;}
._21{width:16.848000px;}
._2e{width:25.164504px;}
._16{width:26.291736px;}
._18{width:27.936432px;}
._2f{width:29.032596px;}
._f{width:31.279734px;}
._c{width:33.031284px;}
._1d{width:41.472000px;}
._d{width:43.838298px;}
._1f{width:62.934012px;}
._13{width:80.671188px;}
._12{width:82.516572px;}
._23{width:97.632000px;}
._22{width:98.759808px;}
._30{width:100.944144px;}
._1e{width:104.058072px;}
._25{width:118.224144px;}
._15{width:129.830262px;}
._24{width:142.842912px;}
._1c{width:156.083976px;}
._2d{width:201.816144px;}
._28{width:413.833176px;}
._2c{width:740.269176px;}
._2a{width:754.729176px;}
._29{width:1110.180000px;}
._26{width:2661.349056px;}
.fc6{color:rgb(116,181,73);}
.fc4{color:rgb(0,0,0);}
.fc3{color:rgb(96,165,97);}
.fc2{color:rgb(32,86,174);}
.fc1{color:rgb(5,99,193);}
.fc5{color:rgb(0,145,122);}
.fc0{color:rgb(2,52,82);}
.fsa{font-size:71.946000px;}
.fs9{font-size:84.018000px;}
.fsb{font-size:95.922000px;}
.fs2{font-size:108.000000px;}
.fsc{font-size:111.060000px;}
.fs1{font-size:120.078000px;}
.fs3{font-size:131.982000px;}
.fs4{font-size:135.552000px;}
.fs0{font-size:173.988000px;}
.fs7{font-size:216.000000px;}
.fs6{font-size:239.982000px;}
.fs8{font-size:305.970000px;}
.fs5{font-size:414.654000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.042000px;}
.y6{bottom:19.602000px;}
.y5{bottom:52.002000px;}
.y3{bottom:57.826500px;}
.y2{bottom:110.041500px;}
.y4{bottom:294.661500px;}
.y33{bottom:463.209000px;}
.y2f{bottom:505.048500px;}
.y36{bottom:590.556000px;}
.y2e{bottom:596.424000px;}
.y35{bottom:612.156000px;}
.y2d{bottom:621.637500px;}
.y34{bottom:642.259500px;}
.y2c{bottom:646.852500px;}
.y37{bottom:655.951500px;}
.y30{bottom:696.345000px;}
.y2b{bottom:715.308000px;}
.y32{bottom:715.479000px;}
.y31{bottom:740.692500px;}
.y2a{bottom:789.802500px;}
.y58{bottom:825.307500px;}
.y57{bottom:888.151500px;}
.y56{bottom:950.995500px;}
.y55{bottom:1013.839500px;}
.y54{bottom:1094.371500px;}
.y4b{bottom:1137.571500px;}
.y61{bottom:1190.551500px;}
.y4a{bottom:1247.017500px;}
.y1a{bottom:1306.204500px;}
.y3a{bottom:1438.780500px;}
.y39{bottom:1463.995500px;}
.y3b{bottom:1488.402000px;}
.y48{bottom:1531.176000px;}
.y38{bottom:1534.024500px;}
.y3e{bottom:1615.747500px;}
.y3d{bottom:1637.347500px;}
.y3c{bottom:1667.452500px;}
.y3f{bottom:1681.143000px;}
.y49{bottom:1851.859500px;}
.y53{bottom:1856.494500px;}
.y52{bottom:1919.338500px;}
.y51{bottom:1994.641500px;}
.y50{bottom:2057.485500px;}
.y60{bottom:2155.747500px;}
.y19{bottom:2268.340500px;}
.y42{bottom:2396.664000px;}
.y41{bottom:2421.879000px;}
.y43{bottom:2446.285500px;}
.y40{bottom:2491.908000px;}
.y5e{bottom:2507.259000px;}
.y46{bottom:2573.631000px;}
.y5d{bottom:2581.752000px;}
.y45{bottom:2595.231000px;}
.y44{bottom:2625.336000px;}
.y47{bottom:2639.026500px;}
.y5c{bottom:2656.246500px;}
.y5b{bottom:2730.741000px;}
.y5a{bottom:2805.235500px;}
.y4f{bottom:2807.490000px;}
.y4e{bottom:2870.334000px;}
.y59{bottom:2947.591500px;}
.y4d{bottom:2957.754000px;}
.y4c{bottom:3020.598000px;}
.y5f{bottom:3116.692500px;}
.y29{bottom:3186.127500px;}
.y25{bottom:3189.231000px;}
.y28{bottom:3211.341000px;}
.y18{bottom:3230.475000px;}
.y27{bottom:3236.556000px;}
.y26{bottom:3261.769500px;}
.y24{bottom:3266.575500px;}
.y17{bottom:3340.347000px;}
.y23{bottom:3380.740500px;}
.y16{bottom:3414.841500px;}
.y22{bottom:3458.083500px;}
.y15{bottom:3489.336000px;}
.y14{bottom:3563.830500px;}
.y21{bottom:3572.248500px;}
.y13{bottom:3638.325000px;}
.y20{bottom:3649.591500px;}
.y1f{bottom:3763.758000px;}
.y12{bottom:3763.800000px;}
.y1e{bottom:3838.252500px;}
.y11{bottom:3838.294500px;}
.y1d{bottom:3912.747000px;}
.y10{bottom:3912.789000px;}
.y1c{bottom:3987.241500px;}
.yf{bottom:3987.283500px;}
.y1b{bottom:4102.002000px;}
.ye{bottom:4242.231000px;}
.yd{bottom:4324.975500px;}
.yc{bottom:4407.718500px;}
.yb{bottom:4490.461500px;}
.y9{bottom:4633.200000px;}
.y8{bottom:4682.692500px;}
.y7{bottom:4732.356000px;}
.ya{bottom:4850.092500px;}
.h10{height:52.132746px;}
.he{height:60.880230px;}
.hd{height:63.833988px;}
.h11{height:69.505980px;}
.hf{height:78.257812px;}
.h5{height:80.156250px;}
.h12{height:84.379570px;}
.h4{height:91.231137px;}
.h7{height:100.275387px;}
.h6{height:102.987750px;}
.h3{height:132.190102px;}
.hb{height:156.515625px;}
.ha{height:164.109375px;}
.h9{height:182.330074px;}
.hc{height:232.465488px;}
.h8{height:286.694367px;}
.h2{height:5055.505500px;}
.h0{height:5055.548031px;}
.h1{height:5055.750000px;}
.w2{width:3575.776500px;}
.w0{width:3575.820472px;}
.w1{width:3576.000000px;}
.x0{left:0.000000px;}
.x1{left:37.119000px;}
.x4{left:265.747500px;}
.x8{left:278.503500px;}
.x1f{left:434.424000px;}
.x6{left:499.606500px;}
.x7{left:556.923000px;}
.x1e{left:609.136500px;}
.x21{left:899.292000px;}
.x20{left:994.408500px;}
.x22{left:1241.277000px;}
.x5{left:1902.756000px;}
.x23{left:1967.088000px;}
.x11{left:2144.055000px;}
.x18{left:2145.160500px;}
.x1d{left:2148.180000px;}
.x24{left:2212.681500px;}
.xf{left:2304.439500px;}
.x16{left:2305.545000px;}
.xe{left:2308.435500px;}
.x15{left:2309.541000px;}
.x10{left:2311.965000px;}
.x17{left:2313.070500px;}
.x1c{left:2316.090000px;}
.xb{left:2400.235500px;}
.x19{left:2403.255000px;}
.xa{left:2442.714000px;}
.xd{left:2618.872500px;}
.x14{left:2619.978000px;}
.x1b{left:2622.997500px;}
.x13{left:2741.499000px;}
.x1a{left:2744.518500px;}
.x9{left:2748.855000px;}
.x12{left:2761.611000px;}
.x2{left:2993.343000px;}
.xc{left:3080.551500px;}
.x3{left:3341.367000px;}
@media print{
.v1{vertical-align:-10.128000pt;}
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.960000pt;}
.ls0{letter-spacing:1.055856pt;}
.ls1{letter-spacing:1.066587pt;}
.ls5{letter-spacing:1.087893pt;}
.ls2{letter-spacing:1.152000pt;}
.ls6{letter-spacing:1.269605pt;}
.ls4{letter-spacing:136.592000pt;}
.ws4{word-spacing:-87.303440pt;}
.ws2{word-spacing:-67.776000pt;}
.wsb{word-spacing:-62.016000pt;}
.ws0{word-spacing:-49.025952pt;}
.ws1{word-spacing:-33.408000pt;}
.ws8{word-spacing:-26.592000pt;}
.ws6{word-spacing:-24.944011pt;}
.ws5{word-spacing:-23.674405pt;}
.ws7{word-spacing:-20.687099pt;}
.ws9{word-spacing:-17.714704pt;}
.ws3{word-spacing:-0.192000pt;}
.wsc{word-spacing:0.000000pt;}
.wsa{word-spacing:852.905339pt;}
._27{margin-left:-1832.463979pt;}
._11{margin-left:-20.338651pt;}
._17{margin-left:-17.601285pt;}
._1b{margin-left:-16.512000pt;}
._4{margin-left:-13.919040pt;}
._10{margin-left:-11.145147pt;}
._20{margin-left:-9.648960pt;}
._8{margin-left:-8.042112pt;}
._9{margin-left:-6.340896pt;}
._a{margin-left:-4.639680pt;}
._1{margin-left:-3.402432pt;}
._6{margin-left:-2.474496pt;}
._b{margin-left:-1.040373pt;}
._3{width:0.927936pt;}
._7{width:1.978912pt;}
._1a{width:3.503328pt;}
._19{width:4.544256pt;}
._14{width:5.900256pt;}
._2b{width:7.061376pt;}
._5{width:9.084256pt;}
._e{width:10.543136pt;}
._2{width:11.753856pt;}
._0{width:12.681792pt;}
._21{width:14.976000pt;}
._2e{width:22.368448pt;}
._16{width:23.370432pt;}
._18{width:24.832384pt;}
._2f{width:25.806752pt;}
._f{width:27.804208pt;}
._c{width:29.361141pt;}
._1d{width:36.864000pt;}
._d{width:38.967376pt;}
._1f{width:55.941344pt;}
._13{width:71.707723pt;}
._12{width:73.348064pt;}
._23{width:86.784000pt;}
._22{width:87.786496pt;}
._30{width:89.728128pt;}
._1e{width:92.496064pt;}
._25{width:105.088128pt;}
._15{width:115.404677pt;}
._24{width:126.971477pt;}
._1c{width:138.741312pt;}
._2d{width:179.392128pt;}
._28{width:367.851712pt;}
._2c{width:658.017045pt;}
._2a{width:670.870379pt;}
._29{width:986.826667pt;}
._26{width:2365.643605pt;}
.fsa{font-size:63.952000pt;}
.fs9{font-size:74.682667pt;}
.fsb{font-size:85.264000pt;}
.fs2{font-size:96.000000pt;}
.fsc{font-size:98.720000pt;}
.fs1{font-size:106.736000pt;}
.fs3{font-size:117.317333pt;}
.fs4{font-size:120.490667pt;}
.fs0{font-size:154.656000pt;}
.fs7{font-size:192.000000pt;}
.fs6{font-size:213.317333pt;}
.fs8{font-size:271.973333pt;}
.fs5{font-size:368.581333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.037333pt;}
.y6{bottom:17.424000pt;}
.y5{bottom:46.224000pt;}
.y3{bottom:51.401333pt;}
.y2{bottom:97.814667pt;}
.y4{bottom:261.921333pt;}
.y33{bottom:411.741333pt;}
.y2f{bottom:448.932000pt;}
.y36{bottom:524.938667pt;}
.y2e{bottom:530.154667pt;}
.y35{bottom:544.138667pt;}
.y2d{bottom:552.566667pt;}
.y34{bottom:570.897333pt;}
.y2c{bottom:574.980000pt;}
.y37{bottom:583.068000pt;}
.y30{bottom:618.973333pt;}
.y2b{bottom:635.829333pt;}
.y32{bottom:635.981333pt;}
.y31{bottom:658.393333pt;}
.y2a{bottom:702.046667pt;}
.y58{bottom:733.606667pt;}
.y57{bottom:789.468000pt;}
.y56{bottom:845.329333pt;}
.y55{bottom:901.190667pt;}
.y54{bottom:972.774667pt;}
.y4b{bottom:1011.174667pt;}
.y61{bottom:1058.268000pt;}
.y4a{bottom:1108.460000pt;}
.y1a{bottom:1161.070667pt;}
.y3a{bottom:1278.916000pt;}
.y39{bottom:1301.329333pt;}
.y3b{bottom:1323.024000pt;}
.y48{bottom:1361.045333pt;}
.y38{bottom:1363.577333pt;}
.y3e{bottom:1436.220000pt;}
.y3d{bottom:1455.420000pt;}
.y3c{bottom:1482.180000pt;}
.y3f{bottom:1494.349333pt;}
.y49{bottom:1646.097333pt;}
.y53{bottom:1650.217333pt;}
.y52{bottom:1706.078667pt;}
.y51{bottom:1773.014667pt;}
.y50{bottom:1828.876000pt;}
.y60{bottom:1916.220000pt;}
.y19{bottom:2016.302667pt;}
.y42{bottom:2130.368000pt;}
.y41{bottom:2152.781333pt;}
.y43{bottom:2174.476000pt;}
.y40{bottom:2215.029333pt;}
.y5e{bottom:2228.674667pt;}
.y46{bottom:2287.672000pt;}
.y5d{bottom:2294.890667pt;}
.y45{bottom:2306.872000pt;}
.y44{bottom:2333.632000pt;}
.y47{bottom:2345.801333pt;}
.y5c{bottom:2361.108000pt;}
.y5b{bottom:2427.325333pt;}
.y5a{bottom:2493.542667pt;}
.y4f{bottom:2495.546667pt;}
.y4e{bottom:2551.408000pt;}
.y59{bottom:2620.081333pt;}
.y4d{bottom:2629.114667pt;}
.y4c{bottom:2684.976000pt;}
.y5f{bottom:2770.393333pt;}
.y29{bottom:2832.113333pt;}
.y25{bottom:2834.872000pt;}
.y28{bottom:2854.525333pt;}
.y18{bottom:2871.533333pt;}
.y27{bottom:2876.938667pt;}
.y26{bottom:2899.350667pt;}
.y24{bottom:2903.622667pt;}
.y17{bottom:2969.197333pt;}
.y23{bottom:3005.102667pt;}
.y16{bottom:3035.414667pt;}
.y22{bottom:3073.852000pt;}
.y15{bottom:3101.632000pt;}
.y14{bottom:3167.849333pt;}
.y21{bottom:3175.332000pt;}
.y13{bottom:3234.066667pt;}
.y20{bottom:3244.081333pt;}
.y1f{bottom:3345.562667pt;}
.y12{bottom:3345.600000pt;}
.y1e{bottom:3411.780000pt;}
.y11{bottom:3411.817333pt;}
.y1d{bottom:3477.997333pt;}
.y10{bottom:3478.034667pt;}
.y1c{bottom:3544.214667pt;}
.yf{bottom:3544.252000pt;}
.y1b{bottom:3646.224000pt;}
.ye{bottom:3770.872000pt;}
.yd{bottom:3844.422667pt;}
.yc{bottom:3917.972000pt;}
.yb{bottom:3991.521333pt;}
.y9{bottom:4118.400000pt;}
.y8{bottom:4162.393333pt;}
.y7{bottom:4206.538667pt;}
.ya{bottom:4311.193333pt;}
.h10{height:46.340219pt;}
.he{height:54.115760pt;}
.hd{height:56.741323pt;}
.h11{height:61.783094pt;}
.hf{height:69.562500pt;}
.h5{height:71.250000pt;}
.h12{height:75.004063pt;}
.h4{height:81.094344pt;}
.h7{height:89.133677pt;}
.h6{height:91.544667pt;}
.h3{height:117.502312pt;}
.hb{height:139.125000pt;}
.ha{height:145.875000pt;}
.h9{height:162.071177pt;}
.hc{height:206.635990pt;}
.h8{height:254.839438pt;}
.h2{height:4493.782667pt;}
.h0{height:4493.820472pt;}
.h1{height:4494.000000pt;}
.w2{width:3178.468000pt;}
.w0{width:3178.507087pt;}
.w1{width:3178.666667pt;}
.x0{left:0.000000pt;}
.x1{left:32.994667pt;}
.x4{left:236.220000pt;}
.x8{left:247.558667pt;}
.x1f{left:386.154667pt;}
.x6{left:444.094667pt;}
.x7{left:495.042667pt;}
.x1e{left:541.454667pt;}
.x21{left:799.370667pt;}
.x20{left:883.918667pt;}
.x22{left:1103.357333pt;}
.x5{left:1691.338667pt;}
.x23{left:1748.522667pt;}
.x11{left:1905.826667pt;}
.x18{left:1906.809333pt;}
.x1d{left:1909.493333pt;}
.x24{left:1966.828000pt;}
.xf{left:2048.390667pt;}
.x16{left:2049.373333pt;}
.xe{left:2051.942667pt;}
.x15{left:2052.925333pt;}
.x10{left:2055.080000pt;}
.x17{left:2056.062667pt;}
.x1c{left:2058.746667pt;}
.xb{left:2133.542667pt;}
.x19{left:2136.226667pt;}
.xa{left:2171.301333pt;}
.xd{left:2327.886667pt;}
.x14{left:2328.869333pt;}
.x1b{left:2331.553333pt;}
.x13{left:2436.888000pt;}
.x1a{left:2439.572000pt;}
.x9{left:2443.426667pt;}
.x12{left:2454.765333pt;}
.x2{left:2660.749333pt;}
.xc{left:2738.268000pt;}
.x3{left:2970.104000pt;}
}




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