
    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_fc9baeefc075aad6c5b09116.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.916992;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_1d8fd918e5eb7e4a968c4958.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_3215c7b1365fd3870ca342f3.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.916016;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_bd6e628e5dc40aba5d311d46.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_fbd7996dba75ff565716252e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.946777;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_51e0199f61f867b67f272177.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.946777;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_c88f33de02db2c263de07513.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;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(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls9{letter-spacing:-0.900000px;}
.ls6{letter-spacing:-0.378600px;}
.ls5{letter-spacing:-0.360000px;}
.ls7{letter-spacing:-0.180000px;}
.ls8{letter-spacing:-0.018720px;}
.ls3{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.028080px;}
.ls0{letter-spacing:0.208080px;}
.ls2{letter-spacing:0.341400px;}
.ls4{letter-spacing:0.360000px;}
.lsa{letter-spacing:0.378600px;}
.lsc{letter-spacing:2.700000px;}
.lsb{letter-spacing:41.381280px;}
.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;}
}
.ws8{word-spacing:-21.438600px;}
.ws0{word-spacing:-21.420000px;}
.ws5{word-spacing:-21.401400px;}
.ws6{word-spacing:-21.088080px;}
.ws1{word-spacing:-21.060000px;}
.ws4{word-spacing:-21.041280px;}
.ws2{word-spacing:-20.700000px;}
.ws3{word-spacing:-20.681400px;}
.ws7{word-spacing:0.000000px;}
._9{margin-left:-5.803440px;}
._8{margin-left:-4.781040px;}
._1a{margin-left:-3.622320px;}
._29{margin-left:-2.106000px;}
._1{margin-left:-1.095120px;}
._0{width:1.149120px;}
._1d{width:2.419200px;}
._16{width:3.453840px;}
._2c{width:4.548960px;}
._2d{width:5.812560px;}
._3a{width:7.328880px;}
._b{width:8.833440px;}
._3e{width:9.940320px;}
._12{width:10.989360px;}
._24{width:12.467520px;}
._3c{width:13.478400px;}
._3d{width:15.084240px;}
._2e{width:16.639440px;}
._d{width:17.814720px;}
._c{width:19.061280px;}
._15{width:22.492080px;}
._5{width:23.887920px;}
._6{width:25.461960px;}
._3b{width:26.872560px;}
._1f{width:27.883440px;}
._a{width:29.381520px;}
._38{width:30.589200px;}
._39{width:32.794560px;}
._3f{width:33.912720px;}
._40{width:35.212320px;}
._e{width:36.277680px;}
._f{width:37.284480px;}
._41{width:38.733600px;}
._2f{width:40.266720px;}
._2b{width:42.456960px;}
._1b{width:44.310240px;}
._30{width:45.658080px;}
._13{width:49.162800px;}
._14{width:50.229360px;}
._7{width:53.076000px;}
._25{width:56.132400px;}
._20{width:60.484320px;}
._1c{width:61.495200px;}
._37{width:63.121440px;}
._34{width:69.582240px;}
._26{width:70.593120px;}
._36{width:71.856720px;}
._42{width:74.704320px;}
._31{width:77.487360px;}
._4{width:78.555360px;}
._11{width:93.827280px;}
._17{width:98.308080px;}
._23{width:107.574480px;}
._10{width:109.320240px;}
._3{width:120.534240px;}
._2{width:121.869360px;}
._19{width:136.047600px;}
._27{width:137.732400px;}
._1e{width:138.743280px;}
._28{width:145.987920px;}
._22{width:158.792400px;}
._21{width:181.705680px;}
._35{width:185.749200px;}
._32{width:194.341680px;}
._18{width:252.720000px;}
._2a{width:254.365200px;}
._33{width:440.069760px;}
.fc2{color:rgb(192,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:84.240000px;}
.fs1{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y3{bottom:2.880000px;}
.yf{bottom:8.100000px;}
.y20{bottom:8.280000px;}
.y31{bottom:35.820000px;}
.y1f{bottom:36.000000px;}
.y2{bottom:52.560000px;}
.y1{bottom:57.600000px;}
.y30{bottom:63.540000px;}
.y2a{bottom:63.714000px;}
.y1e{bottom:63.720000px;}
.y29{bottom:91.434000px;}
.y1d{bottom:91.440000px;}
.y22{bottom:96.876000px;}
.y28{bottom:119.154000px;}
.y2f{bottom:119.160000px;}
.y1c{bottom:119.340000px;}
.y63{bottom:119.916000px;}
.y3f{bottom:145.476000px;}
.y2e{bottom:146.880000px;}
.y27{bottom:147.054000px;}
.y1b{bottom:147.060000px;}
.y62{bottom:147.636000px;}
.y3e{bottom:173.190000px;}
.y26{bottom:174.774000px;}
.y1a{bottom:174.780000px;}
.y61{bottom:175.530000px;}
.y3d{bottom:200.910000px;}
.y25{bottom:202.494000px;}
.y2d{bottom:202.500000px;}
.y19{bottom:202.710000px;}
.y60{bottom:203.250000px;}
.y3c{bottom:228.810000px;}
.y24{bottom:230.214000px;}
.y2c{bottom:230.250000px;}
.y18{bottom:230.430000px;}
.y5f{bottom:230.970000px;}
.y3b{bottom:256.530000px;}
.y17{bottom:258.150000px;}
.y23{bottom:258.159000px;}
.y5e{bottom:258.690000px;}
.y3a{bottom:284.250000px;}
.y16{bottom:285.870000px;}
.y5d{bottom:286.590000px;}
.y39{bottom:311.970000px;}
.y15{bottom:313.770000px;}
.y5c{bottom:314.310000px;}
.y38{bottom:339.915000px;}
.y14{bottom:341.490000px;}
.y5b{bottom:342.075000px;}
.y37{bottom:367.635000px;}
.y13{bottom:369.210000px;}
.y5a{bottom:369.975000px;}
.y21{bottom:375.375000px;}
.y36{bottom:395.355000px;}
.y35{bottom:396.930000px;}
.y12{bottom:397.110000px;}
.y59{bottom:397.695000px;}
.y10{bottom:403.815000px;}
.y33{bottom:414.975000px;}
.y11{bottom:424.830000px;}
.y58{bottom:425.415000px;}
.y34{bottom:452.550000px;}
.y57{bottom:453.135000px;}
.y56{bottom:481.035000px;}
.y55{bottom:508.755000px;}
.y54{bottom:536.475000px;}
.y53{bottom:564.195000px;}
.y52{bottom:592.095000px;}
.y51{bottom:619.845000px;}
.y50{bottom:647.565000px;}
.y4f{bottom:675.465000px;}
.y4e{bottom:703.185000px;}
.y4d{bottom:730.905000px;}
.y4c{bottom:758.625000px;}
.y4b{bottom:786.525000px;}
.y4a{bottom:814.245000px;}
.y49{bottom:841.965000px;}
.ye{bottom:848.985000px;}
.y48{bottom:869.865000px;}
.yd{bottom:885.750000px;}
.y32{bottom:887.910000px;}
.y47{bottom:897.630000px;}
.yc{bottom:913.470000px;}
.y2b{bottom:916.530000px;}
.y46{bottom:925.350000px;}
.yb{bottom:941.190000px;}
.y45{bottom:953.070000px;}
.ya{bottom:969.090000px;}
.y44{bottom:980.970000px;}
.y9{bottom:996.810000px;}
.y43{bottom:1008.690000px;}
.y8{bottom:1025.790000px;}
.y42{bottom:1036.410000px;}
.y7{bottom:1057.470000px;}
.y41{bottom:1064.130000px;}
.y6{bottom:1089.330000px;}
.y40{bottom:1092.030000px;}
.y5{bottom:1119.750000px;}
.y4{bottom:1147.500000px;}
.h3{height:22.536000px;}
.ha{height:27.720000px;}
.h8{height:27.756000px;}
.h5{height:58.984453px;}
.h2{height:59.066719px;}
.h4{height:59.436914px;}
.he{height:61.329023px;}
.h7{height:61.575820px;}
.h6{height:67.565039px;}
.hc{height:249.870000px;}
.hb{height:277.770000px;}
.h9{height:444.450000px;}
.hd{height:472.215000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:58.896000px;}
.w5{width:244.650000px;}
.w4{width:478.515000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:8.100000px;}
.x3{left:18.900000px;}
.xf{left:61.194000px;}
.xe{left:63.894000px;}
.x1{left:95.795987px;}
.x12{left:127.835987px;}
.x10{left:148.895987px;}
.x11{left:159.689987px;}
.x5{left:163.469987px;}
.x9{left:174.809987px;}
.x6{left:201.809987px;}
.xb{left:270.569987px;}
.x7{left:343.154987px;}
.x2{left:421.815000px;}
.x4{left:446.474987px;}
.x8{left:511.484987px;}
.xd{left:574.305000px;}
.xa{left:698.189987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-0.800000pt;}
.ls6{letter-spacing:-0.336533pt;}
.ls5{letter-spacing:-0.320000pt;}
.ls7{letter-spacing:-0.160000pt;}
.ls8{letter-spacing:-0.016640pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.024960pt;}
.ls0{letter-spacing:0.184960pt;}
.ls2{letter-spacing:0.303467pt;}
.ls4{letter-spacing:0.320000pt;}
.lsa{letter-spacing:0.336533pt;}
.lsc{letter-spacing:2.400000pt;}
.lsb{letter-spacing:36.783360pt;}
.ws8{word-spacing:-19.056533pt;}
.ws0{word-spacing:-19.040000pt;}
.ws5{word-spacing:-19.023467pt;}
.ws6{word-spacing:-18.744960pt;}
.ws1{word-spacing:-18.720000pt;}
.ws4{word-spacing:-18.703360pt;}
.ws2{word-spacing:-18.400000pt;}
.ws3{word-spacing:-18.383467pt;}
.ws7{word-spacing:0.000000pt;}
._9{margin-left:-5.158613pt;}
._8{margin-left:-4.249813pt;}
._1a{margin-left:-3.219840pt;}
._29{margin-left:-1.872000pt;}
._1{margin-left:-0.973440pt;}
._0{width:1.021440pt;}
._1d{width:2.150400pt;}
._16{width:3.070080pt;}
._2c{width:4.043520pt;}
._2d{width:5.166720pt;}
._3a{width:6.514560pt;}
._b{width:7.851947pt;}
._3e{width:8.835840pt;}
._12{width:9.768320pt;}
._24{width:11.082240pt;}
._3c{width:11.980800pt;}
._3d{width:13.408213pt;}
._2e{width:14.790613pt;}
._d{width:15.835307pt;}
._c{width:16.943360pt;}
._15{width:19.992960pt;}
._5{width:21.233707pt;}
._6{width:22.632853pt;}
._3b{width:23.886720pt;}
._1f{width:24.785280pt;}
._a{width:26.116907pt;}
._38{width:27.190400pt;}
._39{width:29.150720pt;}
._3f{width:30.144640pt;}
._40{width:31.299840pt;}
._e{width:32.246827pt;}
._f{width:33.141760pt;}
._41{width:34.429867pt;}
._2f{width:35.792640pt;}
._2b{width:37.739520pt;}
._1b{width:39.386880pt;}
._30{width:40.584960pt;}
._13{width:43.700267pt;}
._14{width:44.648320pt;}
._7{width:47.178667pt;}
._25{width:49.895467pt;}
._20{width:53.763840pt;}
._1c{width:54.662400pt;}
._37{width:56.107947pt;}
._34{width:61.850880pt;}
._26{width:62.749440pt;}
._36{width:63.872640pt;}
._42{width:66.403840pt;}
._31{width:68.877653pt;}
._4{width:69.826987pt;}
._11{width:83.402027pt;}
._17{width:87.384960pt;}
._23{width:95.621760pt;}
._10{width:97.173547pt;}
._3{width:107.141547pt;}
._2{width:108.328320pt;}
._19{width:120.931200pt;}
._27{width:122.428800pt;}
._1e{width:123.327360pt;}
._28{width:129.767040pt;}
._22{width:141.148800pt;}
._21{width:161.516160pt;}
._35{width:165.110400pt;}
._32{width:172.748160pt;}
._18{width:224.640000pt;}
._2a{width:226.102400pt;}
._33{width:391.173120pt;}
.fs0{font-size:74.880000pt;}
.fs1{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:2.560000pt;}
.yf{bottom:7.200000pt;}
.y20{bottom:7.360000pt;}
.y31{bottom:31.840000pt;}
.y1f{bottom:32.000000pt;}
.y2{bottom:46.720000pt;}
.y1{bottom:51.200000pt;}
.y30{bottom:56.480000pt;}
.y2a{bottom:56.634667pt;}
.y1e{bottom:56.640000pt;}
.y29{bottom:81.274667pt;}
.y1d{bottom:81.280000pt;}
.y22{bottom:86.112000pt;}
.y28{bottom:105.914667pt;}
.y2f{bottom:105.920000pt;}
.y1c{bottom:106.080000pt;}
.y63{bottom:106.592000pt;}
.y3f{bottom:129.312000pt;}
.y2e{bottom:130.560000pt;}
.y27{bottom:130.714667pt;}
.y1b{bottom:130.720000pt;}
.y62{bottom:131.232000pt;}
.y3e{bottom:153.946667pt;}
.y26{bottom:155.354667pt;}
.y1a{bottom:155.360000pt;}
.y61{bottom:156.026667pt;}
.y3d{bottom:178.586667pt;}
.y25{bottom:179.994667pt;}
.y2d{bottom:180.000000pt;}
.y19{bottom:180.186667pt;}
.y60{bottom:180.666667pt;}
.y3c{bottom:203.386667pt;}
.y24{bottom:204.634667pt;}
.y2c{bottom:204.666667pt;}
.y18{bottom:204.826667pt;}
.y5f{bottom:205.306667pt;}
.y3b{bottom:228.026667pt;}
.y17{bottom:229.466667pt;}
.y23{bottom:229.474667pt;}
.y5e{bottom:229.946667pt;}
.y3a{bottom:252.666667pt;}
.y16{bottom:254.106667pt;}
.y5d{bottom:254.746667pt;}
.y39{bottom:277.306667pt;}
.y15{bottom:278.906667pt;}
.y5c{bottom:279.386667pt;}
.y38{bottom:302.146667pt;}
.y14{bottom:303.546667pt;}
.y5b{bottom:304.066667pt;}
.y37{bottom:326.786667pt;}
.y13{bottom:328.186667pt;}
.y5a{bottom:328.866667pt;}
.y21{bottom:333.666667pt;}
.y36{bottom:351.426667pt;}
.y35{bottom:352.826667pt;}
.y12{bottom:352.986667pt;}
.y59{bottom:353.506667pt;}
.y10{bottom:358.946667pt;}
.y33{bottom:368.866667pt;}
.y11{bottom:377.626667pt;}
.y58{bottom:378.146667pt;}
.y34{bottom:402.266667pt;}
.y57{bottom:402.786667pt;}
.y56{bottom:427.586667pt;}
.y55{bottom:452.226667pt;}
.y54{bottom:476.866667pt;}
.y53{bottom:501.506667pt;}
.y52{bottom:526.306667pt;}
.y51{bottom:550.973333pt;}
.y50{bottom:575.613333pt;}
.y4f{bottom:600.413333pt;}
.y4e{bottom:625.053333pt;}
.y4d{bottom:649.693333pt;}
.y4c{bottom:674.333333pt;}
.y4b{bottom:699.133333pt;}
.y4a{bottom:723.773333pt;}
.y49{bottom:748.413333pt;}
.ye{bottom:754.653333pt;}
.y48{bottom:773.213333pt;}
.yd{bottom:787.333333pt;}
.y32{bottom:789.253333pt;}
.y47{bottom:797.893333pt;}
.yc{bottom:811.973333pt;}
.y2b{bottom:814.693333pt;}
.y46{bottom:822.533333pt;}
.yb{bottom:836.613333pt;}
.y45{bottom:847.173333pt;}
.ya{bottom:861.413333pt;}
.y44{bottom:871.973333pt;}
.y9{bottom:886.053333pt;}
.y43{bottom:896.613333pt;}
.y8{bottom:911.813333pt;}
.y42{bottom:921.253333pt;}
.y7{bottom:939.973333pt;}
.y41{bottom:945.893333pt;}
.y6{bottom:968.293333pt;}
.y40{bottom:970.693333pt;}
.y5{bottom:995.333333pt;}
.y4{bottom:1020.000000pt;}
.h3{height:20.032000pt;}
.ha{height:24.640000pt;}
.h8{height:24.672000pt;}
.h5{height:52.430625pt;}
.h2{height:52.503750pt;}
.h4{height:52.832812pt;}
.he{height:54.514687pt;}
.h7{height:54.734062pt;}
.h6{height:60.057813pt;}
.hc{height:222.106667pt;}
.hb{height:246.906667pt;}
.h9{height:395.066667pt;}
.hd{height:419.746667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:52.352000pt;}
.w5{width:217.466667pt;}
.w4{width:425.346667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:7.200000pt;}
.x3{left:16.800000pt;}
.xf{left:54.394667pt;}
.xe{left:56.794667pt;}
.x1{left:85.151988pt;}
.x12{left:113.631988pt;}
.x10{left:132.351988pt;}
.x11{left:141.946655pt;}
.x5{left:145.306655pt;}
.x9{left:155.386655pt;}
.x6{left:179.386655pt;}
.xb{left:240.506655pt;}
.x7{left:305.026655pt;}
.x2{left:374.946667pt;}
.x4{left:396.866655pt;}
.x8{left:454.653322pt;}
.xd{left:510.493333pt;}
.xa{left:620.613322pt;}
}




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