
    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_120c0c6ea31be7739731871d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;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_5f8aa509789b3feec5da030f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.035156;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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003906;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_0e82c96ee69f72b501362ee6.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;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_2d7b26fffdc4fb461a456a9b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.080566;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_27725a26ba13785943d52b3e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.916992;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_64e6a7f740290b5eee0b725f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.908691;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_bab64254c496e5753fa554ce.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.946777;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:ff9;src:url('chunks/assets/font_95236a753d4110f18054dc74.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.372070;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:ffa;src:url('chunks/assets/font_6b447fac9d6253d57fcceb72.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.435059;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);}
.v3{vertical-align:-110.400000px;}
.v1{vertical-align:-56.580000px;}
.v2{vertical-align:-30.000000px;}
.v0{vertical-align:0.000000px;}
.ls6{letter-spacing:-1.752000px;}
.ls3{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.600000px;}
.lsa{letter-spacing:0.660000px;}
.ls7{letter-spacing:6.600000px;}
.ls5{letter-spacing:13.800000px;}
.ls9{letter-spacing:41.400000px;}
.ls0{letter-spacing:87.300000px;}
.ls8{letter-spacing:123.000000px;}
.ls4{letter-spacing:125.628000px;}
.ls2{letter-spacing:974.100000px;}
.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;}
}
.ws0{word-spacing:-24.000000px;}
.ws3{word-spacing:-21.660000px;}
.ws1{word-spacing:-21.000000px;}
.ws2{word-spacing:0.000000px;}
._7{margin-left:-4.734000px;}
._6{margin-left:-3.444000px;}
._1e{margin-left:-2.310000px;}
._0{margin-left:-1.224000px;}
._1{width:1.098000px;}
._2{width:2.538000px;}
._c{width:3.576000px;}
._23{width:4.680000px;}
._e{width:5.748000px;}
._d{width:6.852000px;}
._37{width:8.268000px;}
._47{width:9.654000px;}
._18{width:10.842000px;}
._17{width:12.096000px;}
._13{width:13.146000px;}
._14{width:14.208000px;}
._15{width:15.318000px;}
._40{width:17.154000px;}
._2f{width:18.222000px;}
._3a{width:19.782000px;}
._22{width:22.296000px;}
._19{width:23.598000px;}
._45{width:25.614000px;}
._2c{width:27.246000px;}
._1f{width:29.028000px;}
._10{width:30.996000px;}
._11{width:32.004000px;}
._41{width:33.042000px;}
._44{width:37.128000px;}
._16{width:38.808000px;}
._2e{width:40.044000px;}
._2d{width:41.286000px;}
._38{width:42.786000px;}
._39{width:43.890000px;}
._b{width:47.760000px;}
._a{width:49.104000px;}
._9{width:50.244000px;}
._8{width:51.996000px;}
._3c{width:53.466000px;}
._2b{width:55.350000px;}
._25{width:56.424000px;}
._24{width:57.582000px;}
._32{width:59.766000px;}
._30{width:60.900000px;}
._31{width:62.658000px;}
._46{width:65.472000px;}
._27{width:66.528000px;}
._28{width:67.746000px;}
._2a{width:70.446000px;}
._29{width:72.450000px;}
._4b{width:75.600000px;}
._4a{width:76.608000px;}
._3b{width:77.952000px;}
._34{width:79.248000px;}
._35{width:80.388000px;}
._33{width:81.600000px;}
._1d{width:82.992000px;}
._1b{width:85.092000px;}
._1a{width:86.352000px;}
._1c{width:87.612000px;}
._3e{width:89.904000px;}
._3f{width:91.260000px;}
._3d{width:92.268000px;}
._21{width:94.668000px;}
._20{width:95.676000px;}
._4{width:101.556000px;}
._5{width:102.648000px;}
._3{width:103.788000px;}
._12{width:104.790000px;}
._f{width:117.684000px;}
._36{width:122.304000px;}
._48{width:139.020000px;}
._49{width:140.100000px;}
._42{width:171.528000px;}
._43{width:172.638000px;}
._26{width:254.520000px;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:6.000000px;}
.fs1{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:84.000000px;}
.fs5{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:3.900000px;}
.ya{bottom:5.137500px;}
.y3{bottom:5.700000px;}
.y9{bottom:7.237500px;}
.y6{bottom:9.000000px;}
.yb{bottom:11.700000px;}
.y5{bottom:20.445000px;}
.y8{bottom:36.000000px;}
.y30{bottom:99.037500px;}
.y2f{bottom:126.637500px;}
.y2e{bottom:154.530000px;}
.y2d{bottom:182.430000px;}
.y2c{bottom:210.075000px;}
.y2b{bottom:237.975000px;}
.y2a{bottom:265.575000px;}
.y29{bottom:293.475000px;}
.y28{bottom:321.075000px;}
.y27{bottom:348.975000px;}
.y26{bottom:376.905000px;}
.y25{bottom:404.505000px;}
.y35{bottom:432.405000px;}
.y24{bottom:460.005000px;}
.y23{bottom:487.905000px;}
.y22{bottom:515.505000px;}
.y21{bottom:543.450000px;}
.y20{bottom:571.350000px;}
.y1f{bottom:598.950000px;}
.y1e{bottom:626.850000px;}
.y1d{bottom:654.450000px;}
.y1c{bottom:682.350000px;}
.y1b{bottom:709.995000px;}
.y1a{bottom:737.880000px;}
.y19{bottom:765.480000px;}
.y34{bottom:793.380000px;}
.y18{bottom:800.880000px;}
.y17{bottom:821.280000px;}
.y33{bottom:848.880000px;}
.y16{bottom:856.380000px;}
.y15{bottom:876.825000px;}
.y32{bottom:904.425000px;}
.y14{bottom:911.925000px;}
.y13{bottom:932.325000px;}
.y31{bottom:959.925000px;}
.y12{bottom:967.425000px;}
.y11{bottom:987.825000px;}
.y10{bottom:1015.725000px;}
.yf{bottom:1043.355000px;}
.ye{bottom:1071.255000px;}
.yd{bottom:1098.870000px;}
.yc{bottom:1126.755000px;}
.y7{bottom:1151.070000px;}
.y4{bottom:1166.655000px;}
.y1{bottom:1199.400000px;}
.h6{height:15.982500px;}
.h2{height:20.700000px;}
.h5{height:21.937500px;}
.h8{height:27.637500px;}
.hf{height:52.998047px;}
.h4{height:53.709961px;}
.he{height:54.656250px;}
.h12{height:58.898438px;}
.h10{height:61.400391px;}
.h7{height:65.645508px;}
.h9{height:70.664062px;}
.h3{height:72.562500px;}
.hd{height:72.638672px;}
.hb{height:82.441406px;}
.h11{height:83.794922px;}
.hc{height:84.656250px;}
.h13{height:87.445312px;}
.ha{height:96.750000px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w3{width:44.437500px;}
.w6{width:54.000000px;}
.w5{width:743.025000px;}
.w2{width:839.970000px;}
.w4{width:893.099987px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:4.500000px;}
.x6{left:8.700000px;}
.xb{left:15.000000px;}
.x4{left:35.730000px;}
.x9{left:48.000000px;}
.x8{left:54.637500px;}
.x2{left:63.637500px;}
.x7{left:84.937487px;}
.xd{left:91.837487px;}
.x1b{left:97.237487px;}
.x15{left:117.637487px;}
.x18{left:127.537487px;}
.x13{left:135.937487px;}
.x1a{left:138.037487px;}
.x1c{left:197.174987px;}
.x14{left:226.874987px;}
.xe{left:248.174987px;}
.x11{left:259.574987px;}
.xf{left:287.204987px;}
.x12{left:315.119987px;}
.x10{left:341.819987px;}
.x16{left:350.819987px;}
.x19{left:387.719987px;}
.x5{left:419.850000px;}
.xc{left:446.249987px;}
.x1d{left:473.249987px;}
.xa{left:797.670000px;}
.x17{left:807.869987px;}
.x3{left:844.470000px;}
@media print{
.v3{vertical-align:-98.133333pt;}
.v1{vertical-align:-50.293333pt;}
.v2{vertical-align:-26.666667pt;}
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-1.557333pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.533333pt;}
.lsa{letter-spacing:0.586667pt;}
.ls7{letter-spacing:5.866667pt;}
.ls5{letter-spacing:12.266667pt;}
.ls9{letter-spacing:36.800000pt;}
.ls0{letter-spacing:77.600000pt;}
.ls8{letter-spacing:109.333333pt;}
.ls4{letter-spacing:111.669333pt;}
.ls2{letter-spacing:865.866667pt;}
.ws0{word-spacing:-21.333333pt;}
.ws3{word-spacing:-19.253333pt;}
.ws1{word-spacing:-18.666667pt;}
.ws2{word-spacing:0.000000pt;}
._7{margin-left:-4.208000pt;}
._6{margin-left:-3.061333pt;}
._1e{margin-left:-2.053333pt;}
._0{margin-left:-1.088000pt;}
._1{width:0.976000pt;}
._2{width:2.256000pt;}
._c{width:3.178667pt;}
._23{width:4.160000pt;}
._e{width:5.109333pt;}
._d{width:6.090667pt;}
._37{width:7.349333pt;}
._47{width:8.581333pt;}
._18{width:9.637333pt;}
._17{width:10.752000pt;}
._13{width:11.685333pt;}
._14{width:12.629333pt;}
._15{width:13.616000pt;}
._40{width:15.248000pt;}
._2f{width:16.197333pt;}
._3a{width:17.584000pt;}
._22{width:19.818667pt;}
._19{width:20.976000pt;}
._45{width:22.768000pt;}
._2c{width:24.218667pt;}
._1f{width:25.802667pt;}
._10{width:27.552000pt;}
._11{width:28.448000pt;}
._41{width:29.370667pt;}
._44{width:33.002667pt;}
._16{width:34.496000pt;}
._2e{width:35.594667pt;}
._2d{width:36.698667pt;}
._38{width:38.032000pt;}
._39{width:39.013333pt;}
._b{width:42.453333pt;}
._a{width:43.648000pt;}
._9{width:44.661333pt;}
._8{width:46.218667pt;}
._3c{width:47.525333pt;}
._2b{width:49.200000pt;}
._25{width:50.154667pt;}
._24{width:51.184000pt;}
._32{width:53.125333pt;}
._30{width:54.133333pt;}
._31{width:55.696000pt;}
._46{width:58.197333pt;}
._27{width:59.136000pt;}
._28{width:60.218667pt;}
._2a{width:62.618667pt;}
._29{width:64.400000pt;}
._4b{width:67.200000pt;}
._4a{width:68.096000pt;}
._3b{width:69.290667pt;}
._34{width:70.442667pt;}
._35{width:71.456000pt;}
._33{width:72.533333pt;}
._1d{width:73.770667pt;}
._1b{width:75.637333pt;}
._1a{width:76.757333pt;}
._1c{width:77.877333pt;}
._3e{width:79.914667pt;}
._3f{width:81.120000pt;}
._3d{width:82.016000pt;}
._21{width:84.149333pt;}
._20{width:85.045333pt;}
._4{width:90.272000pt;}
._5{width:91.242667pt;}
._3{width:92.256000pt;}
._12{width:93.146667pt;}
._f{width:104.608000pt;}
._36{width:108.714667pt;}
._48{width:123.573333pt;}
._49{width:124.533333pt;}
._42{width:152.469333pt;}
._43{width:153.456000pt;}
._26{width:226.240000pt;}
.fs2{font-size:5.333333pt;}
.fs1{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:74.666667pt;}
.fs5{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:3.466667pt;}
.ya{bottom:4.566667pt;}
.y3{bottom:5.066667pt;}
.y9{bottom:6.433333pt;}
.y6{bottom:8.000000pt;}
.yb{bottom:10.400000pt;}
.y5{bottom:18.173333pt;}
.y8{bottom:32.000000pt;}
.y30{bottom:88.033333pt;}
.y2f{bottom:112.566667pt;}
.y2e{bottom:137.360000pt;}
.y2d{bottom:162.160000pt;}
.y2c{bottom:186.733333pt;}
.y2b{bottom:211.533333pt;}
.y2a{bottom:236.066667pt;}
.y29{bottom:260.866667pt;}
.y28{bottom:285.400000pt;}
.y27{bottom:310.200000pt;}
.y26{bottom:335.026667pt;}
.y25{bottom:359.560000pt;}
.y35{bottom:384.360000pt;}
.y24{bottom:408.893333pt;}
.y23{bottom:433.693333pt;}
.y22{bottom:458.226667pt;}
.y21{bottom:483.066667pt;}
.y20{bottom:507.866667pt;}
.y1f{bottom:532.400000pt;}
.y1e{bottom:557.200000pt;}
.y1d{bottom:581.733333pt;}
.y1c{bottom:606.533333pt;}
.y1b{bottom:631.106667pt;}
.y1a{bottom:655.893333pt;}
.y19{bottom:680.426667pt;}
.y34{bottom:705.226667pt;}
.y18{bottom:711.893333pt;}
.y17{bottom:730.026667pt;}
.y33{bottom:754.560000pt;}
.y16{bottom:761.226667pt;}
.y15{bottom:779.400000pt;}
.y32{bottom:803.933333pt;}
.y14{bottom:810.600000pt;}
.y13{bottom:828.733333pt;}
.y31{bottom:853.266667pt;}
.y12{bottom:859.933333pt;}
.y11{bottom:878.066667pt;}
.y10{bottom:902.866667pt;}
.yf{bottom:927.426667pt;}
.ye{bottom:952.226667pt;}
.yd{bottom:976.773333pt;}
.yc{bottom:1001.560000pt;}
.y7{bottom:1023.173333pt;}
.y4{bottom:1037.026667pt;}
.y1{bottom:1066.133333pt;}
.h6{height:14.206667pt;}
.h2{height:18.400000pt;}
.h5{height:19.500000pt;}
.h8{height:24.566667pt;}
.hf{height:47.109375pt;}
.h4{height:47.742188pt;}
.he{height:48.583333pt;}
.h12{height:52.354167pt;}
.h10{height:54.578125pt;}
.h7{height:58.351562pt;}
.h9{height:62.812500pt;}
.h3{height:64.500000pt;}
.hd{height:64.567708pt;}
.hb{height:73.281250pt;}
.h11{height:74.484375pt;}
.hc{height:75.250000pt;}
.h13{height:77.729167pt;}
.ha{height:86.000000pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w3{width:39.500000pt;}
.w6{width:48.000000pt;}
.w5{width:660.466667pt;}
.w2{width:746.640000pt;}
.w4{width:793.866655pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:4.000000pt;}
.x6{left:7.733333pt;}
.xb{left:13.333333pt;}
.x4{left:31.760000pt;}
.x9{left:42.666667pt;}
.x8{left:48.566667pt;}
.x2{left:56.566667pt;}
.x7{left:75.499988pt;}
.xd{left:81.633322pt;}
.x1b{left:86.433322pt;}
.x15{left:104.566655pt;}
.x18{left:113.366655pt;}
.x13{left:120.833322pt;}
.x1a{left:122.699988pt;}
.x1c{left:175.266655pt;}
.x14{left:201.666655pt;}
.xe{left:220.599988pt;}
.x11{left:230.733322pt;}
.xf{left:255.293322pt;}
.x12{left:280.106655pt;}
.x10{left:303.839988pt;}
.x16{left:311.839988pt;}
.x19{left:344.639988pt;}
.x5{left:373.200000pt;}
.xc{left:396.666655pt;}
.x1d{left:420.666655pt;}
.xa{left:709.040000pt;}
.x17{left:718.106655pt;}
.x3{left:750.640000pt;}
}




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