
    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_2adb5e1c12b4f146e1164f7b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.936523;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_402a76d5fb8ecf0161e2c693.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_2afe770ab8e6fcb6e58c9614.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_819060c2197b7a27b64a2f9b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_2b9bc8f6b3e3340ce9be7315.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_08fab944a1ffe12d1c77c539.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.768555;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_7e71db8a274eac6e8d542370.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_48e73d31816f766590312268.woff2')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;}
.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;}
.lsc{letter-spacing:-1.800000px;}
.ls6{letter-spacing:-1.620000px;}
.lsd{letter-spacing:-1.440000px;}
.ls9{letter-spacing:-0.570000px;}
.ls5{letter-spacing:-0.178800px;}
.ls4{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.360000px;}
.ls10{letter-spacing:0.630000px;}
.lsf{letter-spacing:0.630720px;}
.ls0{letter-spacing:0.720000px;}
.ls8{letter-spacing:0.731520px;}
.lsa{letter-spacing:0.840000px;}
.ls3{letter-spacing:0.987840px;}
.ls11{letter-spacing:1.260000px;}
.ls2{letter-spacing:1.440000px;}
.lse{letter-spacing:1.797120px;}
.ls7{letter-spacing:2.070000px;}
.lsb{letter-spacing:33.840000px;}
.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:-22.950000px;}
.ws2{word-spacing:-22.320000px;}
.ws9{word-spacing:-22.140000px;}
.ws8{word-spacing:-21.510000px;}
.ws0{word-spacing:-20.880000px;}
.ws1{word-spacing:-20.701200px;}
.ws7{word-spacing:-19.440000px;}
.ws6{word-spacing:-19.080000px;}
.ws5{word-spacing:-15.120000px;}
.ws4{word-spacing:0.000000px;}
._13{margin-left:-3.657120px;}
._1{margin-left:-2.508000px;}
._2{margin-left:-1.080000px;}
._0{width:1.296000px;}
._3{width:2.329440px;}
._c{width:3.608160px;}
._27{width:5.556960px;}
._30{width:7.217760px;}
._2a{width:8.295360px;}
._1d{width:9.618720px;}
._1c{width:10.736640px;}
._29{width:12.526080px;}
._21{width:13.820640px;}
._9{width:14.935680px;}
._a{width:16.000800px;}
._18{width:17.953920px;}
._19{width:19.150080px;}
._e{width:22.170720px;}
._15{width:23.182560px;}
._4{width:24.689280px;}
._10{width:26.199360px;}
._5{width:27.252480px;}
._f{width:28.700160px;}
._1e{width:30.453120px;}
._20{width:31.477920px;}
._1f{width:33.211680px;}
._24{width:34.372800px;}
._23{width:36.789120px;}
._12{width:38.581920px;}
._11{width:39.735360px;}
._1b{width:41.802240px;}
._1a{width:43.116480px;}
._33{width:45.704640px;}
._2c{width:46.728000px;}
._2d{width:49.341120px;}
._36{width:50.343840px;}
._8{width:52.366080px;}
._7{width:53.864640px;}
._6{width:54.950400px;}
._34{width:57.245760px;}
._35{width:58.448160px;}
._16{width:63.210240px;}
._17{width:64.617600px;}
._22{width:66.294720px;}
._d{width:67.386240px;}
._b{width:68.981280px;}
._2b{width:70.717920px;}
._2e{width:78.326880px;}
._2f{width:80.834880px;}
._28{width:89.853120px;}
._25{width:98.300160px;}
._26{width:99.518400px;}
._31{width:115.882560px;}
._32{width:117.198720px;}
._14{width:843.576000px;}
.fc4{color:rgb(0,0,255);}
.fc2{color:rgb(91,155,213);}
.fc1{color:rgb(0,176,240);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs5{font-size:54.720000px;}
.fs7{font-size:60.480000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:83.520000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.ye{bottom:4.320000px;}
.y9{bottom:4.680000px;}
.y8{bottom:27.720000px;}
.y7{bottom:54.045000px;}
.y11{bottom:75.276000px;}
.y6{bottom:85.005000px;}
.y10{bottom:113.436000px;}
.y5{bottom:115.605000px;}
.yf{bottom:133.596000px;}
.y4{bottom:146.565000px;}
.yd{bottom:154.830000px;}
.y3{bottom:177.525000px;}
.y38{bottom:185.070000px;}
.y2{bottom:186.915000px;}
.y37{bottom:190.470000px;}
.y36{bottom:206.715000px;}
.y39{bottom:215.355000px;}
.y35{bottom:251.715000px;}
.y34{bottom:287.715000px;}
.y33{bottom:324.105000px;}
.y22{bottom:344.625000px;}
.y32{bottom:360.105000px;}
.y21{bottom:380.985000px;}
.y31{bottom:396.465000px;}
.y3b{bottom:399.705000px;}
.y20{bottom:417.345000px;}
.y30{bottom:432.825000px;}
.y1f{bottom:453.390000px;}
.y2f{bottom:468.870000px;}
.y1e{bottom:489.750000px;}
.y2e{bottom:505.230000px;}
.y1d{bottom:525.750000px;}
.y3a{bottom:540.870000px;}
.y2d{bottom:541.230000px;}
.y1c{bottom:562.110000px;}
.y2b{bottom:577.620000px;}
.y2c{bottom:585.180000px;}
.y1b{bottom:598.500000px;}
.y2a{bottom:613.980000px;}
.y1a{bottom:634.500000px;}
.y29{bottom:649.980000px;}
.y19{bottom:670.860000px;}
.y28{bottom:686.340000px;}
.y18{bottom:706.530000px;}
.y27{bottom:722.730000px;}
.y17{bottom:733.530000px;}
.y16{bottom:758.730000px;}
.y15{bottom:794.730000px;}
.y26{bottom:795.090000px;}
.y14{bottom:830.775000px;}
.y25{bottom:831.135000px;}
.y13{bottom:867.135000px;}
.y24{bottom:867.495000px;}
.y12{bottom:903.495000px;}
.y23{bottom:903.855000px;}
.yc{bottom:945.255000px;}
.yb{bottom:983.445000px;}
.ya{bottom:1003.605000px;}
.y1{bottom:1023.765000px;}
.h8{height:19.800000px;}
.he{height:29.482734px;}
.hb{height:35.332031px;}
.h3{height:50.229844px;}
.hd{height:53.704687px;}
.h7{height:54.738281px;}
.hc{height:58.317187px;}
.hf{height:59.357813px;}
.h6{height:63.781875px;}
.ha{height:81.970312px;}
.h9{height:84.172500px;}
.h5{height:105.996094px;}
.h4{height:108.843750px;}
.h2{height:202.755000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:19.440000px;}
.w6{width:71.676000px;}
.w3{width:611.175000px;}
.w5{width:647.535000px;}
.w1{width:892.500000px;}
.w7{width:892.799973px;}
.w4{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x2{left:8.640000px;}
.x1{left:84.996000px;}
.x3{left:104.436000px;}
.x5{left:118.836000px;}
.x4{left:127.475987px;}
.x13{left:132.515987px;}
.x9{left:157.034987px;}
.x8{left:165.314987px;}
.x14{left:169.994987px;}
.xf{left:180.434987px;}
.xc{left:311.144987px;}
.xb{left:330.989987px;}
.x12{left:343.589987px;}
.x15{left:347.909987px;}
.xe{left:424.259987px;}
.xa{left:467.819987px;}
.xd{left:478.259987px;}
.x6{left:524.379000px;}
.x10{left:697.574973px;}
.x11{left:704.414987px;}
.x7{left:766.365000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsc{letter-spacing:-1.600000pt;}
.ls6{letter-spacing:-1.440000pt;}
.lsd{letter-spacing:-1.280000pt;}
.ls9{letter-spacing:-0.506667pt;}
.ls5{letter-spacing:-0.158933pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.320000pt;}
.ls10{letter-spacing:0.560000pt;}
.lsf{letter-spacing:0.560640pt;}
.ls0{letter-spacing:0.640000pt;}
.ls8{letter-spacing:0.650240pt;}
.lsa{letter-spacing:0.746667pt;}
.ls3{letter-spacing:0.878080pt;}
.ls11{letter-spacing:1.120000pt;}
.ls2{letter-spacing:1.280000pt;}
.lse{letter-spacing:1.597440pt;}
.ls7{letter-spacing:1.840000pt;}
.lsb{letter-spacing:30.080000pt;}
.ws3{word-spacing:-20.400000pt;}
.ws2{word-spacing:-19.840000pt;}
.ws9{word-spacing:-19.680000pt;}
.ws8{word-spacing:-19.120000pt;}
.ws0{word-spacing:-18.560000pt;}
.ws1{word-spacing:-18.401067pt;}
.ws7{word-spacing:-17.280000pt;}
.ws6{word-spacing:-16.960000pt;}
.ws5{word-spacing:-13.440000pt;}
.ws4{word-spacing:0.000000pt;}
._13{margin-left:-3.250773pt;}
._1{margin-left:-2.229333pt;}
._2{margin-left:-0.960000pt;}
._0{width:1.152000pt;}
._3{width:2.070613pt;}
._c{width:3.207253pt;}
._27{width:4.939520pt;}
._30{width:6.415787pt;}
._2a{width:7.373653pt;}
._1d{width:8.549973pt;}
._1c{width:9.543680pt;}
._29{width:11.134293pt;}
._21{width:12.285013pt;}
._9{width:13.276160pt;}
._a{width:14.222933pt;}
._18{width:15.959040pt;}
._19{width:17.022293pt;}
._e{width:19.707307pt;}
._15{width:20.606720pt;}
._4{width:21.946027pt;}
._10{width:23.288320pt;}
._5{width:24.224427pt;}
._f{width:25.511253pt;}
._1e{width:27.069440pt;}
._20{width:27.980373pt;}
._1f{width:29.521493pt;}
._24{width:30.553600pt;}
._23{width:32.701440pt;}
._12{width:34.295040pt;}
._11{width:35.320320pt;}
._1b{width:37.157547pt;}
._1a{width:38.325760pt;}
._33{width:40.626347pt;}
._2c{width:41.536000pt;}
._2d{width:43.858773pt;}
._36{width:44.750080pt;}
._8{width:46.547627pt;}
._7{width:47.879680pt;}
._6{width:48.844800pt;}
._34{width:50.885120pt;}
._35{width:51.953920pt;}
._16{width:56.186880pt;}
._17{width:57.437867pt;}
._22{width:58.928640pt;}
._d{width:59.898880pt;}
._b{width:61.316693pt;}
._2b{width:62.860373pt;}
._2e{width:69.623893pt;}
._2f{width:71.853227pt;}
._28{width:79.869440pt;}
._25{width:87.377920pt;}
._26{width:88.460800pt;}
._31{width:103.006720pt;}
._32{width:104.176640pt;}
._14{width:749.845333pt;}
.fs4{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:48.640000pt;}
.fs7{font-size:53.760000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:74.240000pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.ye{bottom:3.840000pt;}
.y9{bottom:4.160000pt;}
.y8{bottom:24.640000pt;}
.y7{bottom:48.040000pt;}
.y11{bottom:66.912000pt;}
.y6{bottom:75.560000pt;}
.y10{bottom:100.832000pt;}
.y5{bottom:102.760000pt;}
.yf{bottom:118.752000pt;}
.y4{bottom:130.280000pt;}
.yd{bottom:137.626667pt;}
.y3{bottom:157.800000pt;}
.y38{bottom:164.506667pt;}
.y2{bottom:166.146667pt;}
.y37{bottom:169.306667pt;}
.y36{bottom:183.746667pt;}
.y39{bottom:191.426667pt;}
.y35{bottom:223.746667pt;}
.y34{bottom:255.746667pt;}
.y33{bottom:288.093333pt;}
.y22{bottom:306.333333pt;}
.y32{bottom:320.093333pt;}
.y21{bottom:338.653333pt;}
.y31{bottom:352.413333pt;}
.y3b{bottom:355.293333pt;}
.y20{bottom:370.973333pt;}
.y30{bottom:384.733333pt;}
.y1f{bottom:403.013333pt;}
.y2f{bottom:416.773333pt;}
.y1e{bottom:435.333333pt;}
.y2e{bottom:449.093333pt;}
.y1d{bottom:467.333333pt;}
.y3a{bottom:480.773333pt;}
.y2d{bottom:481.093333pt;}
.y1c{bottom:499.653333pt;}
.y2b{bottom:513.440000pt;}
.y2c{bottom:520.160000pt;}
.y1b{bottom:532.000000pt;}
.y2a{bottom:545.760000pt;}
.y1a{bottom:564.000000pt;}
.y29{bottom:577.760000pt;}
.y19{bottom:596.320000pt;}
.y28{bottom:610.080000pt;}
.y18{bottom:628.026667pt;}
.y27{bottom:642.426667pt;}
.y17{bottom:652.026667pt;}
.y16{bottom:674.426667pt;}
.y15{bottom:706.426667pt;}
.y26{bottom:706.746667pt;}
.y14{bottom:738.466667pt;}
.y25{bottom:738.786667pt;}
.y13{bottom:770.786667pt;}
.y24{bottom:771.106667pt;}
.y12{bottom:803.106667pt;}
.y23{bottom:803.426667pt;}
.yc{bottom:840.226667pt;}
.yb{bottom:874.173333pt;}
.ya{bottom:892.093333pt;}
.y1{bottom:910.013333pt;}
.h8{height:17.600000pt;}
.he{height:26.206875pt;}
.hb{height:31.406250pt;}
.h3{height:44.648750pt;}
.hd{height:47.737500pt;}
.h7{height:48.656250pt;}
.hc{height:51.837500pt;}
.hf{height:52.762500pt;}
.h6{height:56.695000pt;}
.ha{height:72.862500pt;}
.h9{height:74.820000pt;}
.h5{height:94.218750pt;}
.h4{height:96.750000pt;}
.h2{height:180.226667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:17.280000pt;}
.w6{width:63.712000pt;}
.w3{width:543.266667pt;}
.w5{width:575.586667pt;}
.w1{width:793.333333pt;}
.w7{width:793.599976pt;}
.w4{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x2{left:7.680000pt;}
.x1{left:75.552000pt;}
.x3{left:92.832000pt;}
.x5{left:105.632000pt;}
.x4{left:113.311988pt;}
.x13{left:117.791988pt;}
.x9{left:139.586655pt;}
.x8{left:146.946655pt;}
.x14{left:151.106655pt;}
.xf{left:160.386655pt;}
.xc{left:276.573322pt;}
.xb{left:294.213322pt;}
.x12{left:305.413322pt;}
.x15{left:309.253322pt;}
.xe{left:377.119988pt;}
.xa{left:415.839988pt;}
.xd{left:425.119988pt;}
.x6{left:466.114667pt;}
.x10{left:620.066643pt;}
.x11{left:626.146655pt;}
.x7{left:681.213333pt;}
}




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