
    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_18f63b177aeea34ab62fffe9.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_645a45320d6ec608944b3401.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.752441;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_cb95dc295c226cae3b2df3bf.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.936035;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_85a8ccb24ca1e3b14d128f04.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_e22c4ddcc9972792dca6b926.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.935059;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_2ca22a07157d53987e0ebbf0.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.080566;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_359733deb25323c07f37a9e7.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.097168;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_58985701b4c755d552b4c977.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_81ed7a65ba170f157ba64b7b.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);}
.v0{vertical-align:0.000000px;}
.ls5{letter-spacing:-0.180000px;}
.ls29{letter-spacing:-0.144000px;}
.ls6{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.028080px;}
.ls3{letter-spacing:0.208080px;}
.ls7{letter-spacing:0.291600px;}
.ls1{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.748080px;}
.ls1d{letter-spacing:1.260000px;}
.ls1b{letter-spacing:1.980000px;}
.ls9{letter-spacing:2.106720px;}
.ls18{letter-spacing:4.140000px;}
.ls27{letter-spacing:4.860000px;}
.ls17{letter-spacing:6.300000px;}
.lsf{letter-spacing:7.020000px;}
.ls21{letter-spacing:7.740000px;}
.ls1a{letter-spacing:12.060000px;}
.lsa{letter-spacing:15.660000px;}
.ls19{letter-spacing:17.100000px;}
.ls2{letter-spacing:21.420000px;}
.ls1c{letter-spacing:25.020000px;}
.ls11{letter-spacing:29.340000px;}
.ls1e{letter-spacing:32.940000px;}
.lsd{letter-spacing:33.120000px;}
.lse{letter-spacing:33.660000px;}
.ls20{letter-spacing:34.380000px;}
.ls0{letter-spacing:35.100000px;}
.ls26{letter-spacing:43.020000px;}
.ls23{letter-spacing:43.740000px;}
.ls15{letter-spacing:47.520000px;}
.ls14{letter-spacing:53.820000px;}
.ls25{letter-spacing:53.940000px;}
.ls10{letter-spacing:54.540000px;}
.lsc{letter-spacing:57.420000px;}
.ls1f{letter-spacing:61.740000px;}
.ls22{letter-spacing:62.460000px;}
.lsb{letter-spacing:63.180000px;}
.ls28{letter-spacing:66.780000px;}
.ls13{letter-spacing:73.980000px;}
.ls24{letter-spacing:82.620000px;}
.ls16{letter-spacing:104.940000px;}
.ls12{letter-spacing:168.821280px;}
.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:-59.760000px;}
.ws4{word-spacing:-21.420000px;}
.ws1{word-spacing:-21.351600px;}
.ws0{word-spacing:-21.060000px;}
.ws5{word-spacing:-20.916000px;}
.ws2{word-spacing:0.000000px;}
._0{margin-left:-1.301760px;}
._18{width:1.103520px;}
._10{width:2.351040px;}
._5{width:4.127760px;}
._17{width:5.474880px;}
._8{width:6.823440px;}
._7{width:8.546400px;}
._6{width:9.557280px;}
._b{width:11.250000px;}
._2{width:12.842640px;}
._d{width:14.320800px;}
._1c{width:15.617520px;}
._1b{width:17.606160px;}
._2a{width:18.718560px;}
._1a{width:19.964880px;}
._2c{width:22.109040px;}
._c{width:23.587200px;}
._28{width:25.478640px;}
._23{width:28.051920px;}
._22{width:29.062800px;}
._19{width:30.872640px;}
._a{width:32.016720px;}
._9{width:33.312960px;}
._1{width:35.049600px;}
._2b{width:42.035760px;}
._3{width:43.046640px;}
._4{width:44.348400px;}
._2e{width:45.500400px;}
._27{width:46.713600px;}
._13{width:47.718000px;}
._14{width:48.989520px;}
._20{width:51.470640px;}
._1f{width:53.446320px;}
._f{width:55.383840px;}
._e{width:56.440800px;}
._1e{width:57.574800px;}
._11{width:59.304960px;}
._12{width:60.522480px;}
._21{width:61.617600px;}
._1d{width:62.650080px;}
._30{width:65.538720px;}
._2f{width:66.840480px;}
._34{width:69.114960px;}
._33{width:70.715520px;}
._24{width:73.338480px;}
._25{width:74.372400px;}
._32{width:77.735520px;}
._2d{width:79.354080px;}
._31{width:82.884960px;}
._16{width:85.924800px;}
._15{width:87.327120px;}
._29{width:104.623200px;}
._26{width:107.865360px;}
.fc1{color:rgb(0,103,152);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:59.760000px;}
.fs0{font-size:81.360000px;}
.fs1{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y5{bottom:14.220000px;}
.y3{bottom:28.800000px;}
.y4{bottom:36.540000px;}
.y2{bottom:52.560000px;}
.y43{bottom:104.580000px;}
.y22{bottom:125.676000px;}
.y42{bottom:140.796000px;}
.y3c{bottom:156.090000px;}
.y21{bottom:161.850000px;}
.y41{bottom:177.150000px;}
.y3b{bottom:192.270000px;}
.y20{bottom:198.030000px;}
.y40{bottom:213.330000px;}
.y1f{bottom:234.390000px;}
.y3a{bottom:249.330000px;}
.y3f{bottom:249.510000px;}
.y1e{bottom:270.570000px;}
.y39{bottom:285.690000px;}
.y1d{bottom:306.750000px;}
.y38{bottom:322.050000px;}
.y1c{bottom:342.930000px;}
.y37{bottom:358.230000px;}
.y1b{bottom:379.155000px;}
.y36{bottom:394.455000px;}
.y1a{bottom:415.515000px;}
.y35{bottom:430.635000px;}
.y19{bottom:451.695000px;}
.y34{bottom:466.815000px;}
.y3e{bottom:487.695000px;}
.y18{bottom:487.875000px;}
.y33{bottom:503.175000px;}
.y3d{bottom:523.695000px;}
.y17{bottom:524.055000px;}
.y32{bottom:539.355000px;}
.y16{bottom:560.415000px;}
.y31{bottom:575.535000px;}
.y15{bottom:596.595000px;}
.y30{bottom:611.715000px;}
.y45{bottom:632.445000px;}
.y14{bottom:632.805000px;}
.y2f{bottom:648.105000px;}
.y13{bottom:668.985000px;}
.y2e{bottom:684.285000px;}
.y12{bottom:705.345000px;}
.y2d{bottom:720.465000px;}
.y11{bottom:741.525000px;}
.y2c{bottom:756.645000px;}
.y10{bottom:777.705000px;}
.y2b{bottom:793.005000px;}
.y44{bottom:813.525000px;}
.yf{bottom:813.885000px;}
.y2a{bottom:829.185000px;}
.ye{bottom:850.065000px;}
.y28{bottom:886.110000px;}
.y29{bottom:886.290000px;}
.yd{bottom:886.470000px;}
.yc{bottom:922.650000px;}
.yb{bottom:958.470000px;}
.y27{bottom:958.830000px;}
.ya{bottom:994.650000px;}
.y26{bottom:995.010000px;}
.y9{bottom:1031.010000px;}
.y25{bottom:1031.370000px;}
.y8{bottom:1067.550000px;}
.y7{bottom:1103.370000px;}
.y24{bottom:1103.730000px;}
.y6{bottom:1139.550000px;}
.y23{bottom:1139.910000px;}
.y1{bottom:1209.060000px;}
.h4{height:46.620000px;}
.h5{height:69.144258px;}
.h9{height:72.846211px;}
.h7{height:74.244727px;}
.h2{height:81.995625px;}
.h3{height:82.676953px;}
.h6{height:84.898125px;}
.h8{height:86.585445px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:72.180000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:17.430000px;}
.x2{left:106.416000px;}
.x1{left:117.036000px;}
.x6{left:131.436000px;}
.xa{left:159.510000px;}
.x5{left:161.850000px;}
.xb{left:257.430000px;}
.x8{left:263.730000px;}
.x9{left:318.135000px;}
.x7{left:494.355000px;}
.x3{left:775.260000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-0.160000pt;}
.ls29{letter-spacing:-0.128000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.024960pt;}
.ls3{letter-spacing:0.184960pt;}
.ls7{letter-spacing:0.259200pt;}
.ls1{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.664960pt;}
.ls1d{letter-spacing:1.120000pt;}
.ls1b{letter-spacing:1.760000pt;}
.ls9{letter-spacing:1.872640pt;}
.ls18{letter-spacing:3.680000pt;}
.ls27{letter-spacing:4.320000pt;}
.ls17{letter-spacing:5.600000pt;}
.lsf{letter-spacing:6.240000pt;}
.ls21{letter-spacing:6.880000pt;}
.ls1a{letter-spacing:10.720000pt;}
.lsa{letter-spacing:13.920000pt;}
.ls19{letter-spacing:15.200000pt;}
.ls2{letter-spacing:19.040000pt;}
.ls1c{letter-spacing:22.240000pt;}
.ls11{letter-spacing:26.080000pt;}
.ls1e{letter-spacing:29.280000pt;}
.lsd{letter-spacing:29.440000pt;}
.lse{letter-spacing:29.920000pt;}
.ls20{letter-spacing:30.560000pt;}
.ls0{letter-spacing:31.200000pt;}
.ls26{letter-spacing:38.240000pt;}
.ls23{letter-spacing:38.880000pt;}
.ls15{letter-spacing:42.240000pt;}
.ls14{letter-spacing:47.840000pt;}
.ls25{letter-spacing:47.946667pt;}
.ls10{letter-spacing:48.480000pt;}
.lsc{letter-spacing:51.040000pt;}
.ls1f{letter-spacing:54.880000pt;}
.ls22{letter-spacing:55.520000pt;}
.lsb{letter-spacing:56.160000pt;}
.ls28{letter-spacing:59.360000pt;}
.ls13{letter-spacing:65.760000pt;}
.ls24{letter-spacing:73.440000pt;}
.ls16{letter-spacing:93.280000pt;}
.ls12{letter-spacing:150.063360pt;}
.ws3{word-spacing:-53.120000pt;}
.ws4{word-spacing:-19.040000pt;}
.ws1{word-spacing:-18.979200pt;}
.ws0{word-spacing:-18.720000pt;}
.ws5{word-spacing:-18.592000pt;}
.ws2{word-spacing:0.000000pt;}
._0{margin-left:-1.157120pt;}
._18{width:0.980907pt;}
._10{width:2.089813pt;}
._5{width:3.669120pt;}
._17{width:4.866560pt;}
._8{width:6.065280pt;}
._7{width:7.596800pt;}
._6{width:8.495360pt;}
._b{width:10.000000pt;}
._2{width:11.415680pt;}
._d{width:12.729600pt;}
._1c{width:13.882240pt;}
._1b{width:15.649920pt;}
._2a{width:16.638720pt;}
._1a{width:17.746560pt;}
._2c{width:19.652480pt;}
._c{width:20.966400pt;}
._28{width:22.647680pt;}
._23{width:24.935040pt;}
._22{width:25.833600pt;}
._19{width:27.442347pt;}
._a{width:28.459307pt;}
._9{width:29.611520pt;}
._1{width:31.155200pt;}
._2b{width:37.365120pt;}
._3{width:38.263680pt;}
._4{width:39.420800pt;}
._2e{width:40.444800pt;}
._27{width:41.523200pt;}
._13{width:42.416000pt;}
._14{width:43.546240pt;}
._20{width:45.751680pt;}
._1f{width:47.507840pt;}
._f{width:49.230080pt;}
._e{width:50.169600pt;}
._1e{width:51.177600pt;}
._11{width:52.715520pt;}
._12{width:53.797760pt;}
._21{width:54.771200pt;}
._1d{width:55.688960pt;}
._30{width:58.256640pt;}
._2f{width:59.413760pt;}
._34{width:61.435520pt;}
._33{width:62.858240pt;}
._24{width:65.189760pt;}
._25{width:66.108800pt;}
._32{width:69.098240pt;}
._2d{width:70.536960pt;}
._31{width:73.675520pt;}
._16{width:76.377600pt;}
._15{width:77.624107pt;}
._29{width:92.998400pt;}
._26{width:95.880320pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:72.320000pt;}
.fs1{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:12.640000pt;}
.y3{bottom:25.600000pt;}
.y4{bottom:32.480000pt;}
.y2{bottom:46.720000pt;}
.y43{bottom:92.960000pt;}
.y22{bottom:111.712000pt;}
.y42{bottom:125.152000pt;}
.y3c{bottom:138.746667pt;}
.y21{bottom:143.866667pt;}
.y41{bottom:157.466667pt;}
.y3b{bottom:170.906667pt;}
.y20{bottom:176.026667pt;}
.y40{bottom:189.626667pt;}
.y1f{bottom:208.346667pt;}
.y3a{bottom:221.626667pt;}
.y3f{bottom:221.786667pt;}
.y1e{bottom:240.506667pt;}
.y39{bottom:253.946667pt;}
.y1d{bottom:272.666667pt;}
.y38{bottom:286.266667pt;}
.y1c{bottom:304.826667pt;}
.y37{bottom:318.426667pt;}
.y1b{bottom:337.026667pt;}
.y36{bottom:350.626667pt;}
.y1a{bottom:369.346667pt;}
.y35{bottom:382.786667pt;}
.y19{bottom:401.506667pt;}
.y34{bottom:414.946667pt;}
.y3e{bottom:433.506667pt;}
.y18{bottom:433.666667pt;}
.y33{bottom:447.266667pt;}
.y3d{bottom:465.506667pt;}
.y17{bottom:465.826667pt;}
.y32{bottom:479.426667pt;}
.y16{bottom:498.146667pt;}
.y31{bottom:511.586667pt;}
.y15{bottom:530.306667pt;}
.y30{bottom:543.746667pt;}
.y45{bottom:562.173333pt;}
.y14{bottom:562.493333pt;}
.y2f{bottom:576.093333pt;}
.y13{bottom:594.653333pt;}
.y2e{bottom:608.253333pt;}
.y12{bottom:626.973333pt;}
.y2d{bottom:640.413333pt;}
.y11{bottom:659.133333pt;}
.y2c{bottom:672.573333pt;}
.y10{bottom:691.293333pt;}
.y2b{bottom:704.893333pt;}
.y44{bottom:723.133333pt;}
.yf{bottom:723.453333pt;}
.y2a{bottom:737.053333pt;}
.ye{bottom:755.613333pt;}
.y28{bottom:787.653333pt;}
.y29{bottom:787.813333pt;}
.yd{bottom:787.973333pt;}
.yc{bottom:820.133333pt;}
.yb{bottom:851.973333pt;}
.y27{bottom:852.293333pt;}
.ya{bottom:884.133333pt;}
.y26{bottom:884.453333pt;}
.y9{bottom:916.453333pt;}
.y25{bottom:916.773333pt;}
.y8{bottom:948.933333pt;}
.y7{bottom:980.773333pt;}
.y24{bottom:981.093333pt;}
.y6{bottom:1012.933333pt;}
.y23{bottom:1013.253333pt;}
.y1{bottom:1074.720000pt;}
.h4{height:41.440000pt;}
.h5{height:61.461562pt;}
.h9{height:64.752187pt;}
.h7{height:65.995312pt;}
.h2{height:72.885000pt;}
.h3{height:73.490625pt;}
.h6{height:75.465000pt;}
.h8{height:76.964840pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:64.160000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:15.493333pt;}
.x2{left:94.592000pt;}
.x1{left:104.032000pt;}
.x6{left:116.832000pt;}
.xa{left:141.786667pt;}
.x5{left:143.866667pt;}
.xb{left:228.826667pt;}
.x8{left:234.426667pt;}
.x9{left:282.786667pt;}
.x7{left:439.426667pt;}
.x3{left:689.120000pt;}
}




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