
    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_f28f61637bbc385b81f62f43.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_937681ad0b63664665b82fc3.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_51d1f037fd759b5d1eacc1a1.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_77986802a9380db8f110dce0.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.040039;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_95cb44e8133e4b28d8619c78.woff2')format("woff");}.ff5{font-family:ff5;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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_a3dbedcd8382db3bb13b37b5.woff2')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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_f502ee973dd7fbf7d4ca11a6.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.942383;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_4030a32ce394e58d65c3e80f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.914062;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_112a22815b1f34150ee3ca26.woff2')format("woff");}.ff9{font-family:ff9;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;}
.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:-84.960000px;}
.v2{vertical-align:-82.800000px;}
.v0{vertical-align:0.000000px;}
.ls6{letter-spacing:-0.288000px;}
.ls9{letter-spacing:-0.180000px;}
.ls5{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.028080px;}
.ls3{letter-spacing:0.144000px;}
.ls7{letter-spacing:0.208080px;}
.ls8{letter-spacing:0.360000px;}
.lsc{letter-spacing:12.780000px;}
.lse{letter-spacing:16.380000px;}
.lsb{letter-spacing:20.700000px;}
.ls2{letter-spacing:25.920000px;}
.lsf{letter-spacing:33.984000px;}
.ls4{letter-spacing:37.440000px;}
.lsa{letter-spacing:43.740000px;}
.ls10{letter-spacing:48.240000px;}
.ls1{letter-spacing:144.000000px;}
.ls0{letter-spacing:966.240000px;}
.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;}
}
.ws2{word-spacing:-21.060000px;}
.ws0{word-spacing:-18.000000px;}
.ws1{word-spacing:0.000000px;}
._18{margin-left:-2.310480px;}
._0{margin-left:-1.010880px;}
._4{width:1.082880px;}
._a{width:2.229120px;}
._8{width:3.530880px;}
._6{width:4.752000px;}
._7{width:6.045120px;}
._5{width:7.272000px;}
._e{width:9.132480px;}
._b{width:10.800000px;}
._9{width:12.528000px;}
._19{width:14.007600px;}
._3{width:15.048000px;}
._2{width:16.056000px;}
._22{width:17.930880px;}
._1{width:19.272000px;}
._15{width:22.719360px;}
._10{width:24.056640px;}
._d{width:25.080000px;}
._c{width:26.472000px;}
._29{width:27.610080px;}
._23{width:29.412000px;}
._1e{width:30.663360px;}
._1f{width:32.011200px;}
._16{width:34.369920px;}
._17{width:35.911200px;}
._f{width:37.224000px;}
._25{width:38.880480px;}
._2c{width:40.519440px;}
._2a{width:42.230160px;}
._13{width:43.274880px;}
._24{width:44.556240px;}
._1a{width:45.995040px;}
._1b{width:47.355120px;}
._27{width:48.859200px;}
._2b{width:50.207040px;}
._1c{width:52.228800px;}
._1d{width:53.745120px;}
._21{width:54.840240px;}
._28{width:56.019600px;}
._2d{width:57.744000px;}
._2e{width:58.893120px;}
._11{width:59.904000px;}
._12{width:61.173120px;}
._2f{width:65.160000px;}
._26{width:109.071120px;}
._20{width:170.424000px;}
._14{width:176.544000px;}
.fc4{color:rgb(0,0,255);}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(7,57,118);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:59.760000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y4{bottom:1.252500px;}
.y6{bottom:3.960000px;}
.y3{bottom:23.983500px;}
.y2{bottom:31.716000px;}
.y36{bottom:97.236000px;}
.y5c{bottom:109.836000px;}
.y35{bottom:115.596000px;}
.y34{bottom:136.296000px;}
.y5b{bottom:137.556000px;}
.y33{bottom:156.990000px;}
.y5a{bottom:165.270000px;}
.y32{bottom:177.690000px;}
.y59{bottom:193.170000px;}
.y31{bottom:198.390000px;}
.y30{bottom:219.090000px;}
.y58{bottom:220.890000px;}
.y2f{bottom:239.790000px;}
.y57{bottom:248.610000px;}
.y2e{bottom:260.490000px;}
.y56{bottom:276.555000px;}
.y2d{bottom:281.235000px;}
.y2c{bottom:301.935000px;}
.y55{bottom:304.275000px;}
.y2b{bottom:322.635000px;}
.y54{bottom:331.995000px;}
.y53{bottom:359.715000px;}
.y2a{bottom:364.035000px;}
.y29{bottom:384.735000px;}
.y52{bottom:387.615000px;}
.y28{bottom:405.435000px;}
.y51{bottom:415.335000px;}
.y27{bottom:426.135000px;}
.y50{bottom:443.055000px;}
.y26{bottom:446.835000px;}
.y25{bottom:467.535000px;}
.y4f{bottom:470.775000px;}
.y24{bottom:488.235000px;}
.y4e{bottom:498.675000px;}
.y23{bottom:508.935000px;}
.y4d{bottom:526.395000px;}
.y22{bottom:529.635000px;}
.y21{bottom:550.335000px;}
.y4c{bottom:554.115000px;}
.y20{bottom:571.065000px;}
.y4b{bottom:582.045000px;}
.y1f{bottom:591.765000px;}
.y4a{bottom:609.765000px;}
.y1e{bottom:612.465000px;}
.y1d{bottom:633.165000px;}
.y49{bottom:637.485000px;}
.y1c{bottom:653.865000px;}
.y48{bottom:665.205000px;}
.y1b{bottom:674.565000px;}
.y47{bottom:693.105000px;}
.y1a{bottom:695.265000px;}
.y19{bottom:715.965000px;}
.y46{bottom:720.825000px;}
.y18{bottom:736.665000px;}
.y45{bottom:748.545000px;}
.y17{bottom:757.365000px;}
.y6f{bottom:757.725000px;}
.y44{bottom:776.445000px;}
.y16{bottom:778.065000px;}
.y6e{bottom:785.445000px;}
.y15{bottom:798.765000px;}
.y43{bottom:804.165000px;}
.y6d{bottom:809.025000px;}
.y14{bottom:819.465000px;}
.y6c{bottom:829.725000px;}
.y42{bottom:831.885000px;}
.y13{bottom:840.210000px;}
.y6b{bottom:850.470000px;}
.y41{bottom:859.650000px;}
.y12{bottom:860.910000px;}
.y6a{bottom:871.170000px;}
.y11{bottom:881.610000px;}
.y40{bottom:887.550000px;}
.y69{bottom:891.870000px;}
.y10{bottom:902.310000px;}
.y68{bottom:912.570000px;}
.y3f{bottom:915.270000px;}
.yf{bottom:923.010000px;}
.y67{bottom:933.270000px;}
.y3e{bottom:942.990000px;}
.ye{bottom:943.350000px;}
.y66{bottom:953.970000px;}
.y3d{bottom:970.710000px;}
.y65{bottom:974.670000px;}
.yd{bottom:984.750000px;}
.y64{bottom:995.370000px;}
.y3c{bottom:998.610000px;}
.yc{bottom:1005.810000px;}
.y63{bottom:1016.070000px;}
.y3b{bottom:1026.330000px;}
.yb{bottom:1026.510000px;}
.y62{bottom:1036.770000px;}
.ya{bottom:1047.210000px;}
.y3a{bottom:1054.050000px;}
.y61{bottom:1057.470000px;}
.y60{bottom:1078.170000px;}
.y39{bottom:1081.950000px;}
.y9{bottom:1088.790000px;}
.y5f{bottom:1098.870000px;}
.y38{bottom:1109.670000px;}
.y8{bottom:1112.910000px;}
.y5e{bottom:1119.570000px;}
.y7{bottom:1137.060000px;}
.y37{bottom:1137.420000px;}
.y5d{bottom:1139.940000px;}
.y1{bottom:1190.700000px;}
.y5{bottom:1237.500000px;}
.h3{height:20.692500px;}
.h5{height:23.220000px;}
.h9{height:58.621992px;}
.ha{height:58.819922px;}
.h8{height:59.343750px;}
.h7{height:70.628906px;}
.hc{height:70.664062px;}
.h6{height:72.562500px;}
.hb{height:74.004654px;}
.h2{height:82.676953px;}
.h4{height:84.898125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:36.885000px;}
.w3{width:36.900000px;}
.w2{width:75.780000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:13.140000px;}
.x3{left:22.140000px;}
.x1{left:53.100000px;}
.xf{left:58.140000px;}
.x11{left:80.100000px;}
.x10{left:85.140000px;}
.xd{left:106.236000px;}
.x7{left:210.630000px;}
.x8{left:274.350000px;}
.xb{left:282.630000px;}
.x9{left:299.775000px;}
.xe{left:308.415000px;}
.xa{left:354.495000px;}
.x2{left:406.695000px;}
.x4{left:420.015000px;}
.xc{left:446.475000px;}
.x6{left:499.980000px;}
@media print{
.v1{vertical-align:-75.520000pt;}
.v2{vertical-align:-73.600000pt;}
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-0.256000pt;}
.ls9{letter-spacing:-0.160000pt;}
.ls5{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.024960pt;}
.ls3{letter-spacing:0.128000pt;}
.ls7{letter-spacing:0.184960pt;}
.ls8{letter-spacing:0.320000pt;}
.lsc{letter-spacing:11.360000pt;}
.lse{letter-spacing:14.560000pt;}
.lsb{letter-spacing:18.400000pt;}
.ls2{letter-spacing:23.040000pt;}
.lsf{letter-spacing:30.208000pt;}
.ls4{letter-spacing:33.280000pt;}
.lsa{letter-spacing:38.880000pt;}
.ls10{letter-spacing:42.880000pt;}
.ls1{letter-spacing:128.000000pt;}
.ls0{letter-spacing:858.880000pt;}
.ws2{word-spacing:-18.720000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws1{word-spacing:0.000000pt;}
._18{margin-left:-2.053760pt;}
._0{margin-left:-0.898560pt;}
._4{width:0.962560pt;}
._a{width:1.981440pt;}
._8{width:3.138560pt;}
._6{width:4.224000pt;}
._7{width:5.373440pt;}
._5{width:6.464000pt;}
._e{width:8.117760pt;}
._b{width:9.600000pt;}
._9{width:11.136000pt;}
._19{width:12.451200pt;}
._3{width:13.376000pt;}
._2{width:14.272000pt;}
._22{width:15.938560pt;}
._1{width:17.130667pt;}
._15{width:20.194987pt;}
._10{width:21.383680pt;}
._d{width:22.293333pt;}
._c{width:23.530667pt;}
._29{width:24.542293pt;}
._23{width:26.144000pt;}
._1e{width:27.256320pt;}
._1f{width:28.454400pt;}
._16{width:30.551040pt;}
._17{width:31.921067pt;}
._f{width:33.088000pt;}
._25{width:34.560427pt;}
._2c{width:36.017280pt;}
._2a{width:37.537920pt;}
._13{width:38.466560pt;}
._24{width:39.605547pt;}
._1a{width:40.884480pt;}
._1b{width:42.093440pt;}
._27{width:43.430400pt;}
._2b{width:44.628480pt;}
._1c{width:46.425600pt;}
._1d{width:47.773440pt;}
._21{width:48.746880pt;}
._28{width:49.795200pt;}
._2d{width:51.328000pt;}
._2e{width:52.349440pt;}
._11{width:53.248000pt;}
._12{width:54.376107pt;}
._2f{width:57.920000pt;}
._26{width:96.952107pt;}
._20{width:151.488000pt;}
._14{width:156.928000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:1.113333pt;}
.y6{bottom:3.520000pt;}
.y3{bottom:21.318667pt;}
.y2{bottom:28.192000pt;}
.y36{bottom:86.432000pt;}
.y5c{bottom:97.632000pt;}
.y35{bottom:102.752000pt;}
.y34{bottom:121.152000pt;}
.y5b{bottom:122.272000pt;}
.y33{bottom:139.546667pt;}
.y5a{bottom:146.906667pt;}
.y32{bottom:157.946667pt;}
.y59{bottom:171.706667pt;}
.y31{bottom:176.346667pt;}
.y30{bottom:194.746667pt;}
.y58{bottom:196.346667pt;}
.y2f{bottom:213.146667pt;}
.y57{bottom:220.986667pt;}
.y2e{bottom:231.546667pt;}
.y56{bottom:245.826667pt;}
.y2d{bottom:249.986667pt;}
.y2c{bottom:268.386667pt;}
.y55{bottom:270.466667pt;}
.y2b{bottom:286.786667pt;}
.y54{bottom:295.106667pt;}
.y53{bottom:319.746667pt;}
.y2a{bottom:323.586667pt;}
.y29{bottom:341.986667pt;}
.y52{bottom:344.546667pt;}
.y28{bottom:360.386667pt;}
.y51{bottom:369.186667pt;}
.y27{bottom:378.786667pt;}
.y50{bottom:393.826667pt;}
.y26{bottom:397.186667pt;}
.y25{bottom:415.586667pt;}
.y4f{bottom:418.466667pt;}
.y24{bottom:433.986667pt;}
.y4e{bottom:443.266667pt;}
.y23{bottom:452.386667pt;}
.y4d{bottom:467.906667pt;}
.y22{bottom:470.786667pt;}
.y21{bottom:489.186667pt;}
.y4c{bottom:492.546667pt;}
.y20{bottom:507.613333pt;}
.y4b{bottom:517.373333pt;}
.y1f{bottom:526.013333pt;}
.y4a{bottom:542.013333pt;}
.y1e{bottom:544.413333pt;}
.y1d{bottom:562.813333pt;}
.y49{bottom:566.653333pt;}
.y1c{bottom:581.213333pt;}
.y48{bottom:591.293333pt;}
.y1b{bottom:599.613333pt;}
.y47{bottom:616.093333pt;}
.y1a{bottom:618.013333pt;}
.y19{bottom:636.413333pt;}
.y46{bottom:640.733333pt;}
.y18{bottom:654.813333pt;}
.y45{bottom:665.373333pt;}
.y17{bottom:673.213333pt;}
.y6f{bottom:673.533333pt;}
.y44{bottom:690.173333pt;}
.y16{bottom:691.613333pt;}
.y6e{bottom:698.173333pt;}
.y15{bottom:710.013333pt;}
.y43{bottom:714.813333pt;}
.y6d{bottom:719.133333pt;}
.y14{bottom:728.413333pt;}
.y6c{bottom:737.533333pt;}
.y42{bottom:739.453333pt;}
.y13{bottom:746.853333pt;}
.y6b{bottom:755.973333pt;}
.y41{bottom:764.133333pt;}
.y12{bottom:765.253333pt;}
.y6a{bottom:774.373333pt;}
.y11{bottom:783.653333pt;}
.y40{bottom:788.933333pt;}
.y69{bottom:792.773333pt;}
.y10{bottom:802.053333pt;}
.y68{bottom:811.173333pt;}
.y3f{bottom:813.573333pt;}
.yf{bottom:820.453333pt;}
.y67{bottom:829.573333pt;}
.y3e{bottom:838.213333pt;}
.ye{bottom:838.533333pt;}
.y66{bottom:847.973333pt;}
.y3d{bottom:862.853333pt;}
.y65{bottom:866.373333pt;}
.yd{bottom:875.333333pt;}
.y64{bottom:884.773333pt;}
.y3c{bottom:887.653333pt;}
.yc{bottom:894.053333pt;}
.y63{bottom:903.173333pt;}
.y3b{bottom:912.293333pt;}
.yb{bottom:912.453333pt;}
.y62{bottom:921.573333pt;}
.ya{bottom:930.853333pt;}
.y3a{bottom:936.933333pt;}
.y61{bottom:939.973333pt;}
.y60{bottom:958.373333pt;}
.y39{bottom:961.733333pt;}
.y9{bottom:967.813333pt;}
.y5f{bottom:976.773333pt;}
.y38{bottom:986.373333pt;}
.y8{bottom:989.253333pt;}
.y5e{bottom:995.173333pt;}
.y7{bottom:1010.720000pt;}
.y37{bottom:1011.040000pt;}
.y5d{bottom:1013.280000pt;}
.y1{bottom:1058.400000pt;}
.y5{bottom:1100.000000pt;}
.h3{height:18.393333pt;}
.h5{height:20.640000pt;}
.h9{height:52.108438pt;}
.ha{height:52.284375pt;}
.h8{height:52.750000pt;}
.h7{height:62.781250pt;}
.hc{height:62.812500pt;}
.h6{height:64.500000pt;}
.hb{height:65.781915pt;}
.h2{height:73.490625pt;}
.h4{height:75.465000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:32.786667pt;}
.w3{width:32.800000pt;}
.w2{width:67.360000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:11.680000pt;}
.x3{left:19.680000pt;}
.x1{left:47.200000pt;}
.xf{left:51.680000pt;}
.x11{left:71.200000pt;}
.x10{left:75.680000pt;}
.xd{left:94.432000pt;}
.x7{left:187.226667pt;}
.x8{left:243.866667pt;}
.xb{left:251.226667pt;}
.x9{left:266.466667pt;}
.xe{left:274.146667pt;}
.xa{left:315.106667pt;}
.x2{left:361.506667pt;}
.x4{left:373.346667pt;}
.xc{left:396.866667pt;}
.x6{left:444.426667pt;}
}




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