
    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_1ed535b5aa9d7575c550fce0.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_1b7c9d7c44c3851ec62f12a9.woff')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_0dffbdadb627d454fe86f505.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_4551315c90f8e01667ebff74.woff')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_ae159473d6a13f57ed240284.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_03501f38373e859f141ff67a.woff')format("woff");}.ff6{font-family:ff6;line-height:1.284180;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.320000px;}
.v0{vertical-align:0.000000px;}
.lsf{letter-spacing:-1.200000px;}
.ls10{letter-spacing:-0.828000px;}
.ls4{letter-spacing:-0.648000px;}
.lse{letter-spacing:-0.552000px;}
.lsd{letter-spacing:-0.372000px;}
.ls9{letter-spacing:-0.096000px;}
.ls3{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.552000px;}
.ls0{letter-spacing:0.600000px;}
.lsb{letter-spacing:0.828000px;}
.lsc{letter-spacing:0.948000px;}
.ls11{letter-spacing:1.104000px;}
.ls7{letter-spacing:1.200000px;}
.ls6{letter-spacing:1.260000px;}
.ls5{letter-spacing:1.800000px;}
.ls8{letter-spacing:7.800000px;}
.ls1{letter-spacing:35.400000px;}
.lsa{letter-spacing:49.800000px;}
.ls2{letter-spacing:66.660000px;}
.ls13{letter-spacing:1109.730000px;}
.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:-22.200000px;}
.ws8{word-spacing:-22.104000px;}
.ws9{word-spacing:-21.552000px;}
.ws0{word-spacing:-21.000000px;}
.ws3{word-spacing:-20.904000px;}
.wsa{word-spacing:-20.628000px;}
.ws5{word-spacing:-20.448000px;}
.ws1{word-spacing:-20.352000px;}
.ws7{word-spacing:-20.172000px;}
.ws6{word-spacing:-19.800000px;}
.ws2{word-spacing:0.000000px;}
._31{margin-left:-3.360000px;}
._2{margin-left:-2.268000px;}
._0{margin-left:-1.038000px;}
._1{width:1.500000px;}
._8{width:3.486000px;}
._a{width:5.484000px;}
._25{width:6.738000px;}
._22{width:8.412000px;}
._24{width:9.618000px;}
._23{width:10.812000px;}
._26{width:12.048000px;}
._c{width:13.086000px;}
._b{width:14.784000px;}
._e{width:16.050000px;}
._6{width:17.892000px;}
._7{width:19.020000px;}
._9{width:22.734000px;}
._2f{width:23.964000px;}
._1c{width:24.978000px;}
._19{width:26.178000px;}
._18{width:27.762000px;}
._17{width:29.682000px;}
._2c{width:30.810000px;}
._4{width:32.046000px;}
._3{width:33.180000px;}
._5{width:34.842000px;}
._30{width:35.922000px;}
._d{width:36.990000px;}
._29{width:38.682000px;}
._16{width:40.248000px;}
._32{width:41.658000px;}
._2e{width:42.954000px;}
._21{width:44.166000px;}
._20{width:45.222000px;}
._2b{width:47.688000px;}
._14{width:49.236000px;}
._15{width:50.292000px;}
._1f{width:51.732000px;}
._1e{width:52.974000px;}
._28{width:54.216000px;}
._2a{width:55.422000px;}
._1b{width:57.594000px;}
._1a{width:58.614000px;}
._2d{width:59.838000px;}
._1d{width:66.642000px;}
._27{width:70.368000px;}
._11{width:78.876000px;}
._12{width:79.926000px;}
._13{width:81.144000px;}
._f{width:87.390000px;}
._10{width:88.812000px;}
._33{width:843.330000px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:60.000000px;}
.fs0{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y3a{bottom:5.070000px;}
.y46{bottom:5.085000px;}
.y4d{bottom:5.370000px;}
.y3f{bottom:5.385000px;}
.y43{bottom:17.085000px;}
.y4a{bottom:17.370000px;}
.y5d{bottom:17.430000px;}
.y4c{bottom:29.370000px;}
.y3d{bottom:29.385000px;}
.y59{bottom:29.430000px;}
.y48{bottom:41.370000px;}
.y41{bottom:41.385000px;}
.y5c{bottom:41.430000px;}
.y2{bottom:53.137500px;}
.y45{bottom:53.385000px;}
.y52{bottom:53.415000px;}
.y56{bottom:53.670000px;}
.y4b{bottom:53.685000px;}
.y3c{bottom:53.715000px;}
.y1{bottom:59.137500px;}
.y42{bottom:65.385000px;}
.y4f{bottom:65.415000px;}
.y49{bottom:65.685000px;}
.y5b{bottom:65.715000px;}
.y44{bottom:77.685000px;}
.y3e{bottom:77.715000px;}
.y51{bottom:77.730000px;}
.y5a{bottom:89.715000px;}
.y2f{bottom:96.037500px;}
.y50{bottom:101.730000px;}
.y58{bottom:102.015000px;}
.y66{bottom:113.437500px;}
.y2e{bottom:120.037500px;}
.y53{bottom:126.015000px;}
.y65{bottom:137.437500px;}
.y2d{bottom:144.337500px;}
.y64{bottom:161.745000px;}
.y2c{bottom:168.375000px;}
.y63{bottom:185.775000px;}
.y2b{bottom:192.675000px;}
.y62{bottom:210.075000px;}
.y2a{bottom:216.675000px;}
.y61{bottom:234.075000px;}
.y29{bottom:240.975000px;}
.y60{bottom:258.375000px;}
.y28{bottom:264.975000px;}
.y5f{bottom:282.375000px;}
.y27{bottom:289.275000px;}
.y5e{bottom:306.675000px;}
.y26{bottom:313.275000px;}
.y57{bottom:326.190000px;}
.y25{bottom:337.620000px;}
.y24{bottom:361.620000px;}
.y23{bottom:385.905000px;}
.y22{bottom:409.905000px;}
.y21{bottom:434.205000px;}
.y55{bottom:447.735000px;}
.y20{bottom:458.205000px;}
.y1f{bottom:482.505000px;}
.y1e{bottom:505.950000px;}
.y38{bottom:506.550000px;}
.y68{bottom:530.250000px;}
.y1d{bottom:530.850000px;}
.y54{bottom:545.265000px;}
.y1c{bottom:554.850000px;}
.y1b{bottom:579.150000px;}
.y1a{bottom:603.150000px;}
.y4e{bottom:618.465000px;}
.y19{bottom:627.450000px;}
.y18{bottom:651.450000px;}
.y17{bottom:675.780000px;}
.y16{bottom:699.780000px;}
.y15{bottom:724.080000px;}
.y14{bottom:748.080000px;}
.y47{bottom:764.010000px;}
.y13{bottom:772.380000px;}
.y12{bottom:796.380000px;}
.y11{bottom:820.695000px;}
.y10{bottom:844.725000px;}
.y40{bottom:861.540000px;}
.yf{bottom:869.025000px;}
.ye{bottom:892.425000px;}
.y37{bottom:893.025000px;}
.yd{bottom:917.325000px;}
.yc{bottom:941.325000px;}
.y3b{bottom:958.740000px;}
.yb{bottom:965.025000px;}
.y36{bottom:965.625000px;}
.ya{bottom:989.625000px;}
.y67{bottom:1013.355000px;}
.y9{bottom:1013.955000px;}
.y35{bottom:1037.355000px;}
.y8{bottom:1037.955000px;}
.y39{bottom:1056.285000px;}
.y7{bottom:1061.670000px;}
.y34{bottom:1062.255000px;}
.y6{bottom:1085.655000px;}
.y33{bottom:1086.255000px;}
.y5{bottom:1109.955000px;}
.y32{bottom:1110.570000px;}
.y4{bottom:1133.955000px;}
.y31{bottom:1134.570000px;}
.y3{bottom:1158.255000px;}
.y30{bottom:1158.870000px;}
.h6{height:23.970000px;}
.h5{height:58.898438px;}
.h3{height:61.670545px;}
.ha{height:72.285000px;}
.he{height:82.400391px;}
.h2{height:82.441406px;}
.h4{height:84.656250px;}
.hd{height:86.338763px;}
.h8{height:96.585000px;}
.hb{height:96.607500px;}
.h7{height:96.622500px;}
.hc{height:120.922500px;}
.h9{height:144.922500px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w3{width:245.745000px;}
.w2{width:245.757000px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1d{left:9.300000px;}
.x17{left:11.085000px;}
.x2c{left:12.585000px;}
.x21{left:15.300000px;}
.x1a{left:17.685000px;}
.x1e{left:21.300000px;}
.x30{left:23.085000px;}
.x23{left:24.585000px;}
.x13{left:26.085000px;}
.x2e{left:27.300000px;}
.x15{left:28.500000px;}
.x24{left:29.685000px;}
.x26{left:31.500000px;}
.x19{left:34.185000px;}
.x1b{left:36.000000px;}
.x11{left:38.400000px;}
.x27{left:41.400000px;}
.x20{left:45.300000px;}
.x16{left:48.900000px;}
.x2a{left:50.700000px;}
.x29{left:53.400000px;}
.x28{left:61.800000px;}
.x2d{left:64.200000px;}
.x1c{left:67.800000px;}
.x2b{left:74.092500px;}
.xe{left:77.437500px;}
.x1f{left:78.900000px;}
.x22{left:80.685000px;}
.xf{left:82.492500px;}
.x2{left:84.937500px;}
.x14{left:88.792500px;}
.x18{left:90.000000px;}
.x3{left:93.037500px;}
.x2f{left:96.630000px;}
.x25{left:99.330000px;}
.xc{left:103.237500px;}
.x4{left:109.837500px;}
.xd{left:127.537500px;}
.x8{left:142.837500px;}
.xa{left:270.375000px;}
.x10{left:323.820000px;}
.x9{left:334.905000px;}
.x7{left:349.320000px;}
.x5{left:353.220000px;}
.xb{left:362.220000px;}
.x1{left:430.650000px;}
.x6{left:446.250000px;}
.x12{left:570.195000px;}
@media print{
.v1{vertical-align:-86.506667pt;}
.v0{vertical-align:0.000000pt;}
.lsf{letter-spacing:-1.066667pt;}
.ls10{letter-spacing:-0.736000pt;}
.ls4{letter-spacing:-0.576000pt;}
.lse{letter-spacing:-0.490667pt;}
.lsd{letter-spacing:-0.330667pt;}
.ls9{letter-spacing:-0.085333pt;}
.ls3{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.490667pt;}
.ls0{letter-spacing:0.533333pt;}
.lsb{letter-spacing:0.736000pt;}
.lsc{letter-spacing:0.842667pt;}
.ls11{letter-spacing:0.981333pt;}
.ls7{letter-spacing:1.066667pt;}
.ls6{letter-spacing:1.120000pt;}
.ls5{letter-spacing:1.600000pt;}
.ls8{letter-spacing:6.933333pt;}
.ls1{letter-spacing:31.466667pt;}
.lsa{letter-spacing:44.266667pt;}
.ls2{letter-spacing:59.253333pt;}
.ls13{letter-spacing:986.426667pt;}
.ws4{word-spacing:-19.733333pt;}
.ws8{word-spacing:-19.648000pt;}
.ws9{word-spacing:-19.157333pt;}
.ws0{word-spacing:-18.666667pt;}
.ws3{word-spacing:-18.581333pt;}
.wsa{word-spacing:-18.336000pt;}
.ws5{word-spacing:-18.176000pt;}
.ws1{word-spacing:-18.090667pt;}
.ws7{word-spacing:-17.930667pt;}
.ws6{word-spacing:-17.600000pt;}
.ws2{word-spacing:0.000000pt;}
._31{margin-left:-2.986667pt;}
._2{margin-left:-2.016000pt;}
._0{margin-left:-0.922667pt;}
._1{width:1.333333pt;}
._8{width:3.098667pt;}
._a{width:4.874667pt;}
._25{width:5.989333pt;}
._22{width:7.477333pt;}
._24{width:8.549333pt;}
._23{width:9.610667pt;}
._26{width:10.709333pt;}
._c{width:11.632000pt;}
._b{width:13.141333pt;}
._e{width:14.266667pt;}
._6{width:15.904000pt;}
._7{width:16.906667pt;}
._9{width:20.208000pt;}
._2f{width:21.301333pt;}
._1c{width:22.202667pt;}
._19{width:23.269333pt;}
._18{width:24.677333pt;}
._17{width:26.384000pt;}
._2c{width:27.386667pt;}
._4{width:28.485333pt;}
._3{width:29.493333pt;}
._5{width:30.970667pt;}
._30{width:31.930667pt;}
._d{width:32.880000pt;}
._29{width:34.384000pt;}
._16{width:35.776000pt;}
._32{width:37.029333pt;}
._2e{width:38.181333pt;}
._21{width:39.258667pt;}
._20{width:40.197333pt;}
._2b{width:42.389333pt;}
._14{width:43.765333pt;}
._15{width:44.704000pt;}
._1f{width:45.984000pt;}
._1e{width:47.088000pt;}
._28{width:48.192000pt;}
._2a{width:49.264000pt;}
._1b{width:51.194667pt;}
._1a{width:52.101333pt;}
._2d{width:53.189333pt;}
._1d{width:59.237333pt;}
._27{width:62.549333pt;}
._11{width:70.112000pt;}
._12{width:71.045333pt;}
._13{width:72.128000pt;}
._f{width:77.680000pt;}
._10{width:78.944000pt;}
._33{width:749.626667pt;}
.fs1{font-size:53.333333pt;}
.fs0{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y3a{bottom:4.506667pt;}
.y46{bottom:4.520000pt;}
.y4d{bottom:4.773333pt;}
.y3f{bottom:4.786667pt;}
.y43{bottom:15.186667pt;}
.y4a{bottom:15.440000pt;}
.y5d{bottom:15.493333pt;}
.y4c{bottom:26.106667pt;}
.y3d{bottom:26.120000pt;}
.y59{bottom:26.160000pt;}
.y48{bottom:36.773333pt;}
.y41{bottom:36.786667pt;}
.y5c{bottom:36.826667pt;}
.y2{bottom:47.233333pt;}
.y45{bottom:47.453333pt;}
.y52{bottom:47.480000pt;}
.y56{bottom:47.706667pt;}
.y4b{bottom:47.720000pt;}
.y3c{bottom:47.746667pt;}
.y1{bottom:52.566667pt;}
.y42{bottom:58.120000pt;}
.y4f{bottom:58.146667pt;}
.y49{bottom:58.386667pt;}
.y5b{bottom:58.413333pt;}
.y44{bottom:69.053333pt;}
.y3e{bottom:69.080000pt;}
.y51{bottom:69.093333pt;}
.y5a{bottom:79.746667pt;}
.y2f{bottom:85.366667pt;}
.y50{bottom:90.426667pt;}
.y58{bottom:90.680000pt;}
.y66{bottom:100.833333pt;}
.y2e{bottom:106.700000pt;}
.y53{bottom:112.013333pt;}
.y65{bottom:122.166667pt;}
.y2d{bottom:128.300000pt;}
.y64{bottom:143.773333pt;}
.y2c{bottom:149.666667pt;}
.y63{bottom:165.133333pt;}
.y2b{bottom:171.266667pt;}
.y62{bottom:186.733333pt;}
.y2a{bottom:192.600000pt;}
.y61{bottom:208.066667pt;}
.y29{bottom:214.200000pt;}
.y60{bottom:229.666667pt;}
.y28{bottom:235.533333pt;}
.y5f{bottom:251.000000pt;}
.y27{bottom:257.133333pt;}
.y5e{bottom:272.600000pt;}
.y26{bottom:278.466667pt;}
.y57{bottom:289.946667pt;}
.y25{bottom:300.106667pt;}
.y24{bottom:321.440000pt;}
.y23{bottom:343.026667pt;}
.y22{bottom:364.360000pt;}
.y21{bottom:385.960000pt;}
.y55{bottom:397.986667pt;}
.y20{bottom:407.293333pt;}
.y1f{bottom:428.893333pt;}
.y1e{bottom:449.733333pt;}
.y38{bottom:450.266667pt;}
.y68{bottom:471.333333pt;}
.y1d{bottom:471.866667pt;}
.y54{bottom:484.680000pt;}
.y1c{bottom:493.200000pt;}
.y1b{bottom:514.800000pt;}
.y1a{bottom:536.133333pt;}
.y4e{bottom:549.746667pt;}
.y19{bottom:557.733333pt;}
.y18{bottom:579.066667pt;}
.y17{bottom:600.693333pt;}
.y16{bottom:622.026667pt;}
.y15{bottom:643.626667pt;}
.y14{bottom:664.960000pt;}
.y47{bottom:679.120000pt;}
.y13{bottom:686.560000pt;}
.y12{bottom:707.893333pt;}
.y11{bottom:729.506667pt;}
.y10{bottom:750.866667pt;}
.y40{bottom:765.813333pt;}
.yf{bottom:772.466667pt;}
.ye{bottom:793.266667pt;}
.y37{bottom:793.800000pt;}
.yd{bottom:815.400000pt;}
.yc{bottom:836.733333pt;}
.y3b{bottom:852.213333pt;}
.yb{bottom:857.800000pt;}
.y36{bottom:858.333333pt;}
.ya{bottom:879.666667pt;}
.y67{bottom:900.760000pt;}
.y9{bottom:901.293333pt;}
.y35{bottom:922.093333pt;}
.y8{bottom:922.626667pt;}
.y39{bottom:938.920000pt;}
.y7{bottom:943.706667pt;}
.y34{bottom:944.226667pt;}
.y6{bottom:965.026667pt;}
.y33{bottom:965.560000pt;}
.y5{bottom:986.626667pt;}
.y32{bottom:987.173333pt;}
.y4{bottom:1007.960000pt;}
.y31{bottom:1008.506667pt;}
.y3{bottom:1029.560000pt;}
.y30{bottom:1030.106667pt;}
.h6{height:21.306667pt;}
.h5{height:52.354167pt;}
.h3{height:54.818262pt;}
.ha{height:64.253333pt;}
.he{height:73.244792pt;}
.h2{height:73.281250pt;}
.h4{height:75.250000pt;}
.hd{height:76.745567pt;}
.h8{height:85.853333pt;}
.hb{height:85.873333pt;}
.h7{height:85.886667pt;}
.hc{height:107.486667pt;}
.h9{height:128.820000pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w3{width:218.440000pt;}
.w2{width:218.450667pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1d{left:8.266667pt;}
.x17{left:9.853333pt;}
.x2c{left:11.186667pt;}
.x21{left:13.600000pt;}
.x1a{left:15.720000pt;}
.x1e{left:18.933333pt;}
.x30{left:20.520000pt;}
.x23{left:21.853333pt;}
.x13{left:23.186667pt;}
.x2e{left:24.266667pt;}
.x15{left:25.333333pt;}
.x24{left:26.386667pt;}
.x26{left:28.000000pt;}
.x19{left:30.386667pt;}
.x1b{left:32.000000pt;}
.x11{left:34.133333pt;}
.x27{left:36.800000pt;}
.x20{left:40.266667pt;}
.x16{left:43.466667pt;}
.x2a{left:45.066667pt;}
.x29{left:47.466667pt;}
.x28{left:54.933333pt;}
.x2d{left:57.066667pt;}
.x1c{left:60.266667pt;}
.x2b{left:65.860000pt;}
.xe{left:68.833333pt;}
.x1f{left:70.133333pt;}
.x22{left:71.720000pt;}
.xf{left:73.326667pt;}
.x2{left:75.500000pt;}
.x14{left:78.926667pt;}
.x18{left:80.000000pt;}
.x3{left:82.700000pt;}
.x2f{left:85.893333pt;}
.x25{left:88.293333pt;}
.xc{left:91.766667pt;}
.x4{left:97.633333pt;}
.xd{left:113.366667pt;}
.x8{left:126.966667pt;}
.xa{left:240.333333pt;}
.x10{left:287.840000pt;}
.x9{left:297.693333pt;}
.x7{left:310.506667pt;}
.x5{left:313.973333pt;}
.xb{left:321.973333pt;}
.x1{left:382.800000pt;}
.x6{left:396.666667pt;}
.x12{left:506.840000pt;}
}




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