
    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_53fddbb8405a6efe39fb9aef.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_40a9811f592a188339d1f640.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_164ca830cdc7eacd41fb62a5.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.921387;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_c84bf9bdb66577282c98ec2a.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_832e9489532982b7c159f7d6.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.097168;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_20cd9002bde827f342025a27.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.402354;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;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);}
.v1{vertical-align:-97.200000px;}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.ls1b{letter-spacing:-0.288000px;}
.ls9{letter-spacing:-0.259800px;}
.lsd{letter-spacing:-0.216000px;}
.ls1c{letter-spacing:-0.144000px;}
.ls8{letter-spacing:-0.053280px;}
.ls7{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.144000px;}
.lsc{letter-spacing:0.153600px;}
.ls6{letter-spacing:0.180000px;}
.lsb{letter-spacing:0.259920px;}
.ls16{letter-spacing:0.288000px;}
.ls5{letter-spacing:0.360000px;}
.lse{letter-spacing:0.504000px;}
.ls4{letter-spacing:3.600000px;}
.ls18{letter-spacing:3.720000px;}
.ls1{letter-spacing:6.480000px;}
.lsf{letter-spacing:7.200000px;}
.ls2{letter-spacing:8.640000px;}
.ls15{letter-spacing:18.000000px;}
.ls11{letter-spacing:20.160000px;}
.ls17{letter-spacing:26.640000px;}
.ls13{letter-spacing:41.760000px;}
.ls12{letter-spacing:42.480000px;}
.ls14{letter-spacing:50.400000px;}
.ls19{letter-spacing:102.384000px;}
.ls10{letter-spacing:138.384000px;}
.ls3{letter-spacing:141.984000px;}
.lsa{letter-spacing:172.026720px;}
.ls0{letter-spacing:1039.457280px;}
.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:-59.760000px;}
.ws9{word-spacing:-18.288000px;}
.wsa{word-spacing:-18.144000px;}
.ws0{word-spacing:-18.000000px;}
.ws8{word-spacing:-17.856000px;}
.ws6{word-spacing:-17.784000px;}
.ws7{word-spacing:-17.712000px;}
.ws1{word-spacing:-15.300000px;}
.ws2{word-spacing:-14.940000px;}
.ws3{word-spacing:-14.680200px;}
.ws4{word-spacing:0.000000px;}
._8{margin-left:-4.824000px;}
._9{margin-left:-3.312000px;}
._14{margin-left:-2.088000px;}
._0{margin-left:-1.072320px;}
._1{width:1.092000px;}
._a{width:2.868000px;}
._e{width:3.992640px;}
._d{width:5.124000px;}
._2{width:6.456000px;}
._4{width:7.776000px;}
._3{width:8.952000px;}
._5{width:10.044000px;}
._f{width:11.232000px;}
._10{width:12.516000px;}
._11{width:13.956000px;}
._17{width:15.324000px;}
._c{width:16.984320px;}
._16{width:19.008000px;}
._7{width:20.088000px;}
._b{width:23.184000px;}
._15{width:25.704000px;}
._20{width:26.928000px;}
._1b{width:28.656000px;}
._1c{width:29.748000px;}
._1d{width:36.360000px;}
._12{width:42.192000px;}
._22{width:44.412000px;}
._21{width:46.008000px;}
._13{width:48.240000px;}
._1e{width:50.112000px;}
._1f{width:51.276000px;}
._6{width:62.712000px;}
._18{width:119.232000px;}
._19{width:120.292320px;}
._1a{width:287.078400px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(57,127,172);}
.fs4{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs3{font-size:48.240000px;}
.fs5{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y6{bottom:3.600000px;}
.y9{bottom:3.780000px;}
.y7{bottom:18.000000px;}
.y5{bottom:22.500000px;}
.y8{bottom:22.680000px;}
.y4{bottom:41.400000px;}
.y3e{bottom:88.236000px;}
.y4d{bottom:92.016000px;}
.y3d{bottom:105.516000px;}
.y3c{bottom:110.736000px;}
.y4c{bottom:115.776000px;}
.y3b{bottom:122.616000px;}
.y4b{bottom:139.536000px;}
.y3a{bottom:139.896000px;}
.y48{bottom:145.116000px;}
.y39{bottom:157.170000px;}
.y47{bottom:157.530000px;}
.y38{bottom:162.390000px;}
.y4a{bottom:163.290000px;}
.y46{bottom:163.470000px;}
.y37{bottom:174.450000px;}
.y45{bottom:176.610000px;}
.y49{bottom:187.230000px;}
.y36{bottom:191.730000px;}
.y44{bottom:210.990000px;}
.y35{bottom:214.230000px;}
.y34{bottom:226.110000px;}
.y43{bottom:234.750000px;}
.y33{bottom:248.610000px;}
.y42{bottom:258.510000px;}
.y32{bottom:261.030000px;}
.y41{bottom:282.450000px;}
.y31{bottom:306.210000px;}
.y30{bottom:329.970000px;}
.y2f{bottom:353.775000px;}
.y2e{bottom:377.715000px;}
.y2d{bottom:401.475000px;}
.y2c{bottom:425.235000px;}
.y2b{bottom:448.995000px;}
.y2a{bottom:472.935000px;}
.y28{bottom:496.695000px;}
.y29{bottom:503.535000px;}
.y27{bottom:520.455000px;}
.y26{bottom:544.215000px;}
.y24{bottom:567.975000px;}
.y25{bottom:574.815000px;}
.y22{bottom:591.915000px;}
.y23{bottom:598.755000px;}
.y20{bottom:615.705000px;}
.y21{bottom:622.545000px;}
.y1f{bottom:639.465000px;}
.y1e{bottom:663.225000px;}
.y1d{bottom:687.165000px;}
.y1c{bottom:710.925000px;}
.y1b{bottom:734.685000px;}
.y1a{bottom:758.445000px;}
.y40{bottom:765.285000px;}
.y19{bottom:782.385000px;}
.y18{bottom:806.145000px;}
.y3f{bottom:812.985000px;}
.y17{bottom:829.905000px;}
.y16{bottom:853.665000px;}
.y15{bottom:877.650000px;}
.y14{bottom:901.410000px;}
.y13{bottom:925.170000px;}
.y12{bottom:948.930000px;}
.y11{bottom:972.870000px;}
.y10{bottom:996.630000px;}
.yf{bottom:1020.390000px;}
.ye{bottom:1044.150000px;}
.yd{bottom:1067.910000px;}
.yc{bottom:1091.850000px;}
.yb{bottom:1115.610000px;}
.ya{bottom:1139.400000px;}
.y3{bottom:1184.940000px;}
.y2{bottom:1209.060000px;}
.y1{bottom:1233.180000px;}
.h4{height:37.980000px;}
.hb{height:38.158594px;}
.hd{height:40.985156px;}
.h9{height:47.344922px;}
.h5{height:50.800781px;}
.hc{height:58.651172px;}
.h8{height:63.457031px;}
.h3{height:65.010937px;}
.h7{height:70.664062px;}
.h6{height:72.562500px;}
.ha{height:74.004654px;}
.h2{height:87.859687px;}
.h0{height:1263.420000px;}
.h1{height:1263.750000px;}
.w3{width:23.760000px;}
.w1{width:894.000000px;}
.w4{width:894.059973px;}
.w2{width:894.059987px;}
.w0{width:894.060000px;}
.x0{left:0.000000px;}
.x4{left:3.600000px;}
.x1{left:84.995987px;}
.x16{left:89.855987px;}
.x5{left:121.895987px;}
.x11{left:124.955973px;}
.x12{left:131.075987px;}
.xf{left:187.229973px;}
.x17{left:191.189973px;}
.x10{left:193.349987px;}
.x18{left:197.309987px;}
.x19{left:206.489973px;}
.x1a{left:212.609987px;}
.x8{left:228.809987px;}
.xb{left:280.334987px;}
.x6{left:287.354987px;}
.x15{left:301.034987px;}
.x13{left:320.474973px;}
.x9{left:322.454987px;}
.x14{left:326.594987px;}
.x1d{left:328.034987px;}
.xd{left:335.054973px;}
.xe{left:341.174987px;}
.xa{left:369.254987px;}
.x7{left:432.824987px;}
.x3{left:442.365000px;}
.x2{left:457.664987px;}
.x1b{left:501.404973px;}
.x1c{left:507.524987px;}
.xc{left:780.659987px;}
@media print{
.v1{vertical-align:-86.400000pt;}
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.ls1b{letter-spacing:-0.256000pt;}
.ls9{letter-spacing:-0.230933pt;}
.lsd{letter-spacing:-0.192000pt;}
.ls1c{letter-spacing:-0.128000pt;}
.ls8{letter-spacing:-0.047360pt;}
.ls7{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.128000pt;}
.lsc{letter-spacing:0.136533pt;}
.ls6{letter-spacing:0.160000pt;}
.lsb{letter-spacing:0.231040pt;}
.ls16{letter-spacing:0.256000pt;}
.ls5{letter-spacing:0.320000pt;}
.lse{letter-spacing:0.448000pt;}
.ls4{letter-spacing:3.200000pt;}
.ls18{letter-spacing:3.306667pt;}
.ls1{letter-spacing:5.760000pt;}
.lsf{letter-spacing:6.400000pt;}
.ls2{letter-spacing:7.680000pt;}
.ls15{letter-spacing:16.000000pt;}
.ls11{letter-spacing:17.920000pt;}
.ls17{letter-spacing:23.680000pt;}
.ls13{letter-spacing:37.120000pt;}
.ls12{letter-spacing:37.760000pt;}
.ls14{letter-spacing:44.800000pt;}
.ls19{letter-spacing:91.008000pt;}
.ls10{letter-spacing:123.008000pt;}
.ls3{letter-spacing:126.208000pt;}
.lsa{letter-spacing:152.912640pt;}
.ls0{letter-spacing:923.962027pt;}
.ws5{word-spacing:-53.120000pt;}
.ws9{word-spacing:-16.256000pt;}
.wsa{word-spacing:-16.128000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.872000pt;}
.ws6{word-spacing:-15.808000pt;}
.ws7{word-spacing:-15.744000pt;}
.ws1{word-spacing:-13.600000pt;}
.ws2{word-spacing:-13.280000pt;}
.ws3{word-spacing:-13.049067pt;}
.ws4{word-spacing:0.000000pt;}
._8{margin-left:-4.288000pt;}
._9{margin-left:-2.944000pt;}
._14{margin-left:-1.856000pt;}
._0{margin-left:-0.953173pt;}
._1{width:0.970667pt;}
._a{width:2.549333pt;}
._e{width:3.549013pt;}
._d{width:4.554667pt;}
._2{width:5.738667pt;}
._4{width:6.912000pt;}
._3{width:7.957333pt;}
._5{width:8.928000pt;}
._f{width:9.984000pt;}
._10{width:11.125333pt;}
._11{width:12.405333pt;}
._17{width:13.621333pt;}
._c{width:15.097173pt;}
._16{width:16.896000pt;}
._7{width:17.856000pt;}
._b{width:20.608000pt;}
._15{width:22.848000pt;}
._20{width:23.936000pt;}
._1b{width:25.472000pt;}
._1c{width:26.442667pt;}
._1d{width:32.320000pt;}
._12{width:37.504000pt;}
._22{width:39.477333pt;}
._21{width:40.896000pt;}
._13{width:42.880000pt;}
._1e{width:44.544000pt;}
._1f{width:45.578667pt;}
._6{width:55.744000pt;}
._18{width:105.984000pt;}
._19{width:106.926507pt;}
._1a{width:255.180800pt;}
.fs4{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs3{font-size:42.880000pt;}
.fs5{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:3.200000pt;}
.y9{bottom:3.360000pt;}
.y7{bottom:16.000000pt;}
.y5{bottom:20.000000pt;}
.y8{bottom:20.160000pt;}
.y4{bottom:36.800000pt;}
.y3e{bottom:78.432000pt;}
.y4d{bottom:81.792000pt;}
.y3d{bottom:93.792000pt;}
.y3c{bottom:98.432000pt;}
.y4c{bottom:102.912000pt;}
.y3b{bottom:108.992000pt;}
.y4b{bottom:124.032000pt;}
.y3a{bottom:124.352000pt;}
.y48{bottom:128.992000pt;}
.y39{bottom:139.706667pt;}
.y47{bottom:140.026667pt;}
.y38{bottom:144.346667pt;}
.y4a{bottom:145.146667pt;}
.y46{bottom:145.306667pt;}
.y37{bottom:155.066667pt;}
.y45{bottom:156.986667pt;}
.y49{bottom:166.426667pt;}
.y36{bottom:170.426667pt;}
.y44{bottom:187.546667pt;}
.y35{bottom:190.426667pt;}
.y34{bottom:200.986667pt;}
.y43{bottom:208.666667pt;}
.y33{bottom:220.986667pt;}
.y42{bottom:229.786667pt;}
.y32{bottom:232.026667pt;}
.y41{bottom:251.066667pt;}
.y31{bottom:272.186667pt;}
.y30{bottom:293.306667pt;}
.y2f{bottom:314.466667pt;}
.y2e{bottom:335.746667pt;}
.y2d{bottom:356.866667pt;}
.y2c{bottom:377.986667pt;}
.y2b{bottom:399.106667pt;}
.y2a{bottom:420.386667pt;}
.y28{bottom:441.506667pt;}
.y29{bottom:447.586667pt;}
.y27{bottom:462.626667pt;}
.y26{bottom:483.746667pt;}
.y24{bottom:504.866667pt;}
.y25{bottom:510.946667pt;}
.y22{bottom:526.146667pt;}
.y23{bottom:532.226667pt;}
.y20{bottom:547.293333pt;}
.y21{bottom:553.373333pt;}
.y1f{bottom:568.413333pt;}
.y1e{bottom:589.533333pt;}
.y1d{bottom:610.813333pt;}
.y1c{bottom:631.933333pt;}
.y1b{bottom:653.053333pt;}
.y1a{bottom:674.173333pt;}
.y40{bottom:680.253333pt;}
.y19{bottom:695.453333pt;}
.y18{bottom:716.573333pt;}
.y3f{bottom:722.653333pt;}
.y17{bottom:737.693333pt;}
.y16{bottom:758.813333pt;}
.y15{bottom:780.133333pt;}
.y14{bottom:801.253333pt;}
.y13{bottom:822.373333pt;}
.y12{bottom:843.493333pt;}
.y11{bottom:864.773333pt;}
.y10{bottom:885.893333pt;}
.yf{bottom:907.013333pt;}
.ye{bottom:928.133333pt;}
.yd{bottom:949.253333pt;}
.yc{bottom:970.533333pt;}
.yb{bottom:991.653333pt;}
.ya{bottom:1012.800000pt;}
.y3{bottom:1053.280000pt;}
.y2{bottom:1074.720000pt;}
.y1{bottom:1096.160000pt;}
.h4{height:33.760000pt;}
.hb{height:33.918750pt;}
.hd{height:36.431250pt;}
.h9{height:42.084375pt;}
.h5{height:45.156250pt;}
.hc{height:52.134375pt;}
.h8{height:56.406250pt;}
.h3{height:57.787500pt;}
.h7{height:62.812500pt;}
.h6{height:64.500000pt;}
.ha{height:65.781915pt;}
.h2{height:78.097500pt;}
.h0{height:1123.040000pt;}
.h1{height:1123.333333pt;}
.w3{width:21.120000pt;}
.w1{width:794.666667pt;}
.w4{width:794.719976pt;}
.w2{width:794.719988pt;}
.w0{width:794.720000pt;}
.x0{left:0.000000pt;}
.x4{left:3.200000pt;}
.x1{left:75.551988pt;}
.x16{left:79.871988pt;}
.x5{left:108.351988pt;}
.x11{left:111.071976pt;}
.x12{left:116.511988pt;}
.xf{left:166.426643pt;}
.x17{left:169.946643pt;}
.x10{left:171.866655pt;}
.x18{left:175.386655pt;}
.x19{left:183.546643pt;}
.x1a{left:188.986655pt;}
.x8{left:203.386655pt;}
.xb{left:249.186655pt;}
.x6{left:255.426655pt;}
.x15{left:267.586655pt;}
.x13{left:284.866643pt;}
.x9{left:286.626655pt;}
.x14{left:290.306655pt;}
.x1d{left:291.586655pt;}
.xd{left:297.826643pt;}
.xe{left:303.266655pt;}
.xa{left:328.226655pt;}
.x7{left:384.733321pt;}
.x3{left:393.213333pt;}
.x2{left:406.813321pt;}
.x1b{left:445.693310pt;}
.x1c{left:451.133321pt;}
.xc{left:693.919988pt;}
}




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