
    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_29a8cb696f097e3364d46058.woff')format("woff");}.ff1{font-family:ff1;line-height:0.729004;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_cb831bfc45030f6d94299355.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_a9faf7a0b45fd321a625639c.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_92613d095aabe9f462617ac5.woff')format("woff");}.ff4{font-family:ff4;line-height:0.943359;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_740f33845257763d13bd2ff4.woff')format("woff");}.ff5{font-family:ff5;line-height:0.943359;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_338bc7ed668d0073f2a433f1.woff')format("woff");}.ff6{font-family:ff6;line-height:0.850586;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_d29d964332fb95a54c29e539.woff')format("woff");}.ff7{font-family:ff7;line-height:0.740723;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_87495da120b6f5d47c548b9d.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_5617d23d46b234cadb34c987.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_f01bd635cf94187791e0deaa.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_77e64353b93f659eab010ed4.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_9a175dcfe7761b8a8e311281.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_086f1dacdb6ebaec6bc37df3.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_a74439bbc1bf6d192c3ddf7f.woff')format("woff");}.ffe{font-family:ffe;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);}
.v0{vertical-align:0.000000px;}
.ls6{letter-spacing:-1.752000px;}
.ls4{letter-spacing:-1.440000px;}
.ls3{letter-spacing:-0.720000px;}
.ls5{letter-spacing:-0.372000px;}
.ls2{letter-spacing:-0.240000px;}
.ls9{letter-spacing:-0.096000px;}
.ls1{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.060000px;}
.ls14{letter-spacing:0.096000px;}
.lsa{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.480000px;}
.ls16{letter-spacing:0.540000px;}
.ls7{letter-spacing:0.600000px;}
.ls10{letter-spacing:1.200000px;}
.lsc{letter-spacing:4.200000px;}
.lsd{letter-spacing:10.320000px;}
.lse{letter-spacing:15.060000px;}
.ls15{letter-spacing:17.460000px;}
.lsf{letter-spacing:34.140000px;}
.ls11{letter-spacing:48.600000px;}
.ls8{letter-spacing:89.400000px;}
.ls13{letter-spacing:125.448000px;}
.lsb{letter-spacing:167.448000px;}
.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;}
}
.ws3{word-spacing:-72.000000px;}
.ws5{word-spacing:-24.480000px;}
.ws1{word-spacing:-24.240000px;}
.ws2{word-spacing:-23.760000px;}
.ws4{word-spacing:-23.040000px;}
.ws6{word-spacing:-22.800000px;}
.wsb{word-spacing:-21.096000px;}
.ws7{word-spacing:-21.000000px;}
.ws9{word-spacing:-20.904000px;}
.wsa{word-spacing:-20.628000px;}
.ws0{word-spacing:-18.000000px;}
.ws8{word-spacing:0.000000px;}
._20{margin-left:-5.076000px;}
._c{margin-left:-4.014000px;}
._3{margin-left:-2.376000px;}
._0{margin-left:-1.152000px;}
._2{width:1.296000px;}
._1{width:2.688000px;}
._6{width:3.924000px;}
._d{width:5.094000px;}
._11{width:6.318000px;}
._10{width:8.064000px;}
._24{width:9.150000px;}
._8{width:10.560000px;}
._7{width:12.072000px;}
._5{width:13.080000px;}
._12{width:14.664000px;}
._13{width:15.924000px;}
._1b{width:17.004000px;}
._23{width:19.044000px;}
._a{width:22.236000px;}
._b{width:23.742000px;}
._27{width:25.440000px;}
._28{width:26.568000px;}
._1c{width:28.284000px;}
._21{width:29.304000px;}
._2b{width:31.560000px;}
._2c{width:32.676000px;}
._e{width:34.344000px;}
._f{width:35.448000px;}
._9{width:36.684000px;}
._19{width:39.648000px;}
._25{width:40.752000px;}
._26{width:42.108000px;}
._17{width:43.176000px;}
._16{width:44.244000px;}
._18{width:45.474000px;}
._2a{width:47.196000px;}
._1a{width:48.468000px;}
._29{width:51.462000px;}
._14{width:52.500000px;}
._15{width:54.048000px;}
._2d{width:60.540000px;}
._1d{width:68.436000px;}
._1e{width:69.708000px;}
._22{width:78.264000px;}
._1f{width:89.772000px;}
._4{width:1466.574000px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fs3{font-size:84.000000px;}
.fs0{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y5{bottom:57.037500px;}
.y4{bottom:92.137500px;}
.y21{bottom:135.337500px;}
.y3e{bottom:140.737500px;}
.y20{bottom:171.675000px;}
.y3c{bottom:176.775000px;}
.y1f{bottom:207.975000px;}
.y3b{bottom:213.075000px;}
.y1e{bottom:243.375000px;}
.y3a{bottom:249.375000px;}
.y1d{bottom:280.275000px;}
.y39{bottom:285.375000px;}
.y1c{bottom:316.575000px;}
.y38{bottom:321.675000px;}
.y1b{bottom:352.905000px;}
.y37{bottom:358.005000px;}
.y1a{bottom:388.920000px;}
.y36{bottom:394.320000px;}
.y19{bottom:425.205000px;}
.y35{bottom:430.320000px;}
.y18{bottom:461.505000px;}
.y34{bottom:466.620000px;}
.y17{bottom:497.820000px;}
.y33{bottom:502.305000px;}
.y3d{bottom:502.905000px;}
.y16{bottom:533.850000px;}
.y32{bottom:539.250000px;}
.y15{bottom:570.150000px;}
.y31{bottom:575.250000px;}
.y14{bottom:606.450000px;}
.y30{bottom:611.550000px;}
.y13{bottom:642.750000px;}
.y2f{bottom:647.850000px;}
.y12{bottom:678.780000px;}
.y2e{bottom:684.180000px;}
.y11{bottom:715.080000px;}
.y2d{bottom:720.195000px;}
.y10{bottom:751.380000px;}
.y2c{bottom:756.480000px;}
.y3f{bottom:759.780000px;}
.yf{bottom:787.695000px;}
.y2b{bottom:792.780000px;}
.ye{bottom:825.795000px;}
.y2a{bottom:829.080000px;}
.yd{bottom:864.525000px;}
.y29{bottom:865.125000px;}
.yc{bottom:900.825000px;}
.y28{bottom:901.425000px;}
.yb{bottom:937.125000px;}
.y27{bottom:937.725000px;}
.ya{bottom:973.425000px;}
.y26{bottom:974.025000px;}
.y9{bottom:1009.425000px;}
.y25{bottom:1010.025000px;}
.y8{bottom:1045.755000px;}
.y24{bottom:1046.370000px;}
.y7{bottom:1082.070000px;}
.y23{bottom:1082.655000px;}
.y6{bottom:1118.070000px;}
.y22{bottom:1118.670000px;}
.y3{bottom:1155.870000px;}
.y2{bottom:1191.600000px;}
.y1{bottom:1227.900000px;}
.h4{height:47.340820px;}
.h5{height:55.623047px;}
.ha{height:58.898438px;}
.hd{height:65.645508px;}
.h2{height:68.859375px;}
.hb{height:69.234375px;}
.h3{height:72.562500px;}
.h7{height:82.400391px;}
.h9{height:82.441406px;}
.h6{height:84.656250px;}
.hc{height:86.338763px;}
.h8{height:96.750000px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:127.537500px;}
.x1{left:157.830000px;}
.xc{left:170.130000px;}
.x9{left:171.330000px;}
.xa{left:204.375000px;}
.x4{left:206.175000px;}
.x6{left:210.075000px;}
.x5{left:223.575000px;}
.x8{left:300.705000px;}
.xb{left:309.420000px;}
.x7{left:499.650000px;}
.x2{left:614.880000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-1.557333pt;}
.ls4{letter-spacing:-1.280000pt;}
.ls3{letter-spacing:-0.640000pt;}
.ls5{letter-spacing:-0.330667pt;}
.ls2{letter-spacing:-0.213333pt;}
.ls9{letter-spacing:-0.085333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.053333pt;}
.ls14{letter-spacing:0.085333pt;}
.lsa{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.426667pt;}
.ls16{letter-spacing:0.480000pt;}
.ls7{letter-spacing:0.533333pt;}
.ls10{letter-spacing:1.066667pt;}
.lsc{letter-spacing:3.733333pt;}
.lsd{letter-spacing:9.173333pt;}
.lse{letter-spacing:13.386667pt;}
.ls15{letter-spacing:15.520000pt;}
.lsf{letter-spacing:30.346667pt;}
.ls11{letter-spacing:43.200000pt;}
.ls8{letter-spacing:79.466667pt;}
.ls13{letter-spacing:111.509333pt;}
.lsb{letter-spacing:148.842667pt;}
.ws3{word-spacing:-64.000000pt;}
.ws5{word-spacing:-21.760000pt;}
.ws1{word-spacing:-21.546667pt;}
.ws2{word-spacing:-21.120000pt;}
.ws4{word-spacing:-20.480000pt;}
.ws6{word-spacing:-20.266667pt;}
.wsb{word-spacing:-18.752000pt;}
.ws7{word-spacing:-18.666667pt;}
.ws9{word-spacing:-18.581333pt;}
.wsa{word-spacing:-18.336000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws8{word-spacing:0.000000pt;}
._20{margin-left:-4.512000pt;}
._c{margin-left:-3.568000pt;}
._3{margin-left:-2.112000pt;}
._0{margin-left:-1.024000pt;}
._2{width:1.152000pt;}
._1{width:2.389333pt;}
._6{width:3.488000pt;}
._d{width:4.528000pt;}
._11{width:5.616000pt;}
._10{width:7.168000pt;}
._24{width:8.133333pt;}
._8{width:9.386667pt;}
._7{width:10.730667pt;}
._5{width:11.626667pt;}
._12{width:13.034667pt;}
._13{width:14.154667pt;}
._1b{width:15.114667pt;}
._23{width:16.928000pt;}
._a{width:19.765333pt;}
._b{width:21.104000pt;}
._27{width:22.613333pt;}
._28{width:23.616000pt;}
._1c{width:25.141333pt;}
._21{width:26.048000pt;}
._2b{width:28.053333pt;}
._2c{width:29.045333pt;}
._e{width:30.528000pt;}
._f{width:31.509333pt;}
._9{width:32.608000pt;}
._19{width:35.242667pt;}
._25{width:36.224000pt;}
._26{width:37.429333pt;}
._17{width:38.378667pt;}
._16{width:39.328000pt;}
._18{width:40.421333pt;}
._2a{width:41.952000pt;}
._1a{width:43.082667pt;}
._29{width:45.744000pt;}
._14{width:46.666667pt;}
._15{width:48.042667pt;}
._2d{width:53.813333pt;}
._1d{width:60.832000pt;}
._1e{width:61.962667pt;}
._22{width:69.568000pt;}
._1f{width:79.797333pt;}
._4{width:1303.621333pt;}
.fs1{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fs3{font-size:74.666667pt;}
.fs0{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:50.700000pt;}
.y4{bottom:81.900000pt;}
.y21{bottom:120.300000pt;}
.y3e{bottom:125.100000pt;}
.y20{bottom:152.600000pt;}
.y3c{bottom:157.133333pt;}
.y1f{bottom:184.866667pt;}
.y3b{bottom:189.400000pt;}
.y1e{bottom:216.333333pt;}
.y3a{bottom:221.666667pt;}
.y1d{bottom:249.133333pt;}
.y39{bottom:253.666667pt;}
.y1c{bottom:281.400000pt;}
.y38{bottom:285.933333pt;}
.y1b{bottom:313.693333pt;}
.y37{bottom:318.226667pt;}
.y1a{bottom:345.706667pt;}
.y36{bottom:350.506667pt;}
.y19{bottom:377.960000pt;}
.y35{bottom:382.506667pt;}
.y18{bottom:410.226667pt;}
.y34{bottom:414.773333pt;}
.y17{bottom:442.506667pt;}
.y33{bottom:446.493333pt;}
.y3d{bottom:447.026667pt;}
.y16{bottom:474.533333pt;}
.y32{bottom:479.333333pt;}
.y15{bottom:506.800000pt;}
.y31{bottom:511.333333pt;}
.y14{bottom:539.066667pt;}
.y30{bottom:543.600000pt;}
.y13{bottom:571.333333pt;}
.y2f{bottom:575.866667pt;}
.y12{bottom:603.360000pt;}
.y2e{bottom:608.160000pt;}
.y11{bottom:635.626667pt;}
.y2d{bottom:640.173333pt;}
.y10{bottom:667.893333pt;}
.y2c{bottom:672.426667pt;}
.y3f{bottom:675.360000pt;}
.yf{bottom:700.173333pt;}
.y2b{bottom:704.693333pt;}
.ye{bottom:734.040000pt;}
.y2a{bottom:736.960000pt;}
.yd{bottom:768.466667pt;}
.y29{bottom:769.000000pt;}
.yc{bottom:800.733333pt;}
.y28{bottom:801.266667pt;}
.yb{bottom:833.000000pt;}
.y27{bottom:833.533333pt;}
.ya{bottom:865.266667pt;}
.y26{bottom:865.800000pt;}
.y9{bottom:897.266667pt;}
.y25{bottom:897.800000pt;}
.y8{bottom:929.560000pt;}
.y24{bottom:930.106667pt;}
.y7{bottom:961.840000pt;}
.y23{bottom:962.360000pt;}
.y6{bottom:993.840000pt;}
.y22{bottom:994.373333pt;}
.y3{bottom:1027.440000pt;}
.y2{bottom:1059.200000pt;}
.y1{bottom:1091.466667pt;}
.h4{height:42.080729pt;}
.h5{height:49.442708pt;}
.ha{height:52.354167pt;}
.hd{height:58.351562pt;}
.h2{height:61.208333pt;}
.hb{height:61.541667pt;}
.h3{height:64.500000pt;}
.h7{height:73.244792pt;}
.h9{height:73.281250pt;}
.h6{height:75.250000pt;}
.hc{height:76.745567pt;}
.h8{height:86.000000pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:113.366667pt;}
.x1{left:140.293333pt;}
.xc{left:151.226667pt;}
.x9{left:152.293333pt;}
.xa{left:181.666667pt;}
.x4{left:183.266667pt;}
.x6{left:186.733333pt;}
.x5{left:198.733333pt;}
.x8{left:267.293333pt;}
.xb{left:275.040000pt;}
.x7{left:444.133333pt;}
.x2{left:546.560000pt;}
}




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