
    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_2b60399f9828a0d246420166.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_7c630063fdd85d8aa540527c.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_1b3090e8c3de9bdf3e318e50.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_91f67e3796ca997fb0a4d122.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_a7525df181f9368e0832b69f.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_2a5b1c5e9b3c06c8b3c7e6e9.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_5e85330aa734e2dbc315b91e.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;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.028080px;}
.ls1{letter-spacing:0.360000px;}
.ls2{letter-spacing:1.260000px;}
.ls4{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;}
}
.ws0{word-spacing:-21.420000px;}
.ws1{word-spacing:-21.060000px;}
.ws2{word-spacing:0.000000px;}
._40{margin-left:-5.812560px;}
._12{margin-left:-4.464720px;}
._41{margin-left:-3.369600px;}
._21{margin-left:-2.274480px;}
._2{margin-left:-1.179360px;}
._0{width:1.149120px;}
._1{width:2.764560px;}
._29{width:4.212000px;}
._15{width:5.307120px;}
._35{width:6.402240px;}
._2d{width:7.750080px;}
._a{width:9.266400px;}
._9{width:10.782720px;}
._20{width:11.962080px;}
._28{width:13.141440px;}
._8{width:14.657760px;}
._1f{width:16.174080px;}
._1e{width:17.353440px;}
._2a{width:19.627920px;}
._d{width:22.070880px;}
._2b{width:23.502960px;}
._37{width:25.019280px;}
._38{width:26.198640px;}
._1a{width:28.136160px;}
._1b{width:29.399760px;}
._32{width:31.572960px;}
._31{width:32.769360px;}
._3b{width:35.212320px;}
._27{width:36.475920px;}
._19{width:37.571040px;}
._42{width:38.918880px;}
._36{width:40.772160px;}
._47{width:42.372720px;}
._3f{width:44.815680px;}
._43{width:46.072560px;}
._44{width:47.595600px;}
._3{width:50.796720px;}
._3c{width:51.837840px;}
._18{width:53.576640px;}
._17{width:54.840240px;}
._c{width:61.747920px;}
._45{width:62.758800px;}
._22{width:63.938160px;}
._5{width:66.970800px;}
._24{width:68.065920px;}
._46{width:72.277920px;}
._f{width:73.457280px;}
._3a{width:76.152960px;}
._39{width:77.248080px;}
._3d{width:81.291600px;}
._3e{width:82.501920px;}
._34{width:84.576960px;}
._33{width:85.756320px;}
._16{width:95.359680px;}
._25{width:98.982000px;}
._13{width:101.846160px;}
._7{width:107.827200px;}
._6{width:108.922320px;}
._14{width:123.580080px;}
._23{width:124.675200px;}
._4{width:141.775920px;}
._1d{width:143.560560px;}
._1c{width:144.640080px;}
._10{width:148.093920px;}
._30{width:155.085840px;}
._b{width:163.594080px;}
._11{width:186.086160px;}
._26{width:188.697600px;}
._2c{width:190.972080px;}
._2f{width:229.638240px;}
._e{width:241.010640px;}
._2e{width:242.021520px;}
.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;}
.yd{bottom:8.100000px;}
.y1c{bottom:8.280000px;}
.y1a{bottom:35.820000px;}
.y2b{bottom:36.000000px;}
.y2{bottom:52.560000px;}
.y1{bottom:57.600000px;}
.y2a{bottom:63.714000px;}
.y38{bottom:63.720000px;}
.y19{bottom:63.750000px;}
.y29{bottom:91.434000px;}
.y37{bottom:91.440000px;}
.y18{bottom:91.470000px;}
.y1d{bottom:104.796000px;}
.y50{bottom:118.476000px;}
.y28{bottom:119.154000px;}
.y17{bottom:119.190000px;}
.y36{bottom:119.205000px;}
.y74{bottom:119.916000px;}
.y4f{bottom:146.196000px;}
.y27{bottom:147.054000px;}
.y16{bottom:147.090000px;}
.y35{bottom:147.105000px;}
.y73{bottom:147.636000px;}
.y4e{bottom:173.910000px;}
.y26{bottom:174.774000px;}
.y15{bottom:174.810000px;}
.y34{bottom:174.825000px;}
.y72{bottom:175.530000px;}
.y4d{bottom:201.810000px;}
.y25{bottom:202.494000px;}
.y14{bottom:202.530000px;}
.y33{bottom:202.545000px;}
.y71{bottom:203.250000px;}
.y4c{bottom:229.530000px;}
.y13{bottom:230.250000px;}
.y24{bottom:230.394000px;}
.y32{bottom:230.445000px;}
.y70{bottom:230.970000px;}
.y4b{bottom:257.250000px;}
.y12{bottom:258.150000px;}
.y23{bottom:258.159000px;}
.y31{bottom:258.165000px;}
.y6f{bottom:258.690000px;}
.y4a{bottom:284.970000px;}
.y11{bottom:285.870000px;}
.y22{bottom:285.879000px;}
.y30{bottom:285.885000px;}
.y6e{bottom:286.590000px;}
.y49{bottom:312.870000px;}
.y10{bottom:313.590000px;}
.y21{bottom:313.599000px;}
.y2f{bottom:313.605000px;}
.y6d{bottom:314.310000px;}
.y48{bottom:340.635000px;}
.yf{bottom:341.355000px;}
.y20{bottom:341.499000px;}
.y2e{bottom:341.505000px;}
.y6c{bottom:342.075000px;}
.y47{bottom:368.355000px;}
.y1f{bottom:369.219000px;}
.y6b{bottom:369.975000px;}
.y46{bottom:396.075000px;}
.y1e{bottom:396.939000px;}
.y6a{bottom:397.695000px;}
.y45{bottom:423.975000px;}
.y69{bottom:425.415000px;}
.y44{bottom:451.695000px;}
.y68{bottom:453.135000px;}
.y43{bottom:479.415000px;}
.y67{bottom:481.035000px;}
.y42{bottom:507.315000px;}
.y66{bottom:508.755000px;}
.y1b{bottom:522.075000px;}
.y41{bottom:535.035000px;}
.y65{bottom:536.475000px;}
.ye{bottom:550.695000px;}
.y40{bottom:562.755000px;}
.y64{bottom:564.195000px;}
.y3f{bottom:590.475000px;}
.y63{bottom:592.095000px;}
.y3e{bottom:618.405000px;}
.y62{bottom:619.845000px;}
.y3d{bottom:646.125000px;}
.y61{bottom:647.565000px;}
.y3c{bottom:673.845000px;}
.y60{bottom:675.465000px;}
.y3b{bottom:701.745000px;}
.y5f{bottom:703.185000px;}
.y3a{bottom:729.465000px;}
.y5e{bottom:730.905000px;}
.y39{bottom:757.185000px;}
.y5d{bottom:758.625000px;}
.y2d{bottom:776.805000px;}
.y5c{bottom:786.525000px;}
.y5b{bottom:814.245000px;}
.y5a{bottom:841.965000px;}
.y59{bottom:869.865000px;}
.y58{bottom:897.630000px;}
.yc{bottom:912.570000px;}
.y57{bottom:925.350000px;}
.yb{bottom:949.110000px;}
.y56{bottom:953.070000px;}
.ya{bottom:977.010000px;}
.y55{bottom:980.970000px;}
.y9{bottom:1004.730000px;}
.y54{bottom:1008.690000px;}
.y8{bottom:1032.450000px;}
.y53{bottom:1036.410000px;}
.y7{bottom:1060.170000px;}
.y52{bottom:1064.130000px;}
.y6{bottom:1089.330000px;}
.y51{bottom:1092.030000px;}
.y5{bottom:1119.750000px;}
.y2c{bottom:1138.680000px;}
.y4{bottom:1147.500000px;}
.h3{height:22.536000px;}
.h7{height:27.720000px;}
.h9{height:27.900000px;}
.h5{height:58.984453px;}
.h2{height:59.066719px;}
.h4{height:59.436914px;}
.hc{height:61.329023px;}
.h6{height:67.565039px;}
.h8{height:360.975000px;}
.hb{height:361.155000px;}
.ha{height:416.550000px;}
.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;}
.xa{left:8.100000px;}
.x3{left:18.900000px;}
.xc{left:61.194000px;}
.x1{left:95.795987px;}
.xe{left:127.835987px;}
.xd{left:148.895987px;}
.x5{left:181.469987px;}
.x7{left:232.949987px;}
.x9{left:270.569987px;}
.x2{left:421.815000px;}
.x4{left:446.474987px;}
.xb{left:574.305000px;}
.x8{left:583.844987px;}
.x6{left:632.084987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.024960pt;}
.ls1{letter-spacing:0.320000pt;}
.ls2{letter-spacing:1.120000pt;}
.ls4{letter-spacing:36.783360pt;}
.ws0{word-spacing:-19.040000pt;}
.ws1{word-spacing:-18.720000pt;}
.ws2{word-spacing:0.000000pt;}
._40{margin-left:-5.166720pt;}
._12{margin-left:-3.968640pt;}
._41{margin-left:-2.995200pt;}
._21{margin-left:-2.021760pt;}
._2{margin-left:-1.048320pt;}
._0{width:1.021440pt;}
._1{width:2.457387pt;}
._29{width:3.744000pt;}
._15{width:4.717440pt;}
._35{width:5.690880pt;}
._2d{width:6.888960pt;}
._a{width:8.236800pt;}
._9{width:9.584640pt;}
._20{width:10.632960pt;}
._28{width:11.681280pt;}
._8{width:13.029120pt;}
._1f{width:14.376960pt;}
._1e{width:15.425280pt;}
._2a{width:17.447040pt;}
._d{width:19.618560pt;}
._2b{width:20.891520pt;}
._37{width:22.239360pt;}
._38{width:23.287680pt;}
._1a{width:25.009920pt;}
._1b{width:26.133120pt;}
._32{width:28.064853pt;}
._31{width:29.128320pt;}
._3b{width:31.299840pt;}
._27{width:32.423040pt;}
._19{width:33.396480pt;}
._42{width:34.594560pt;}
._36{width:36.241920pt;}
._47{width:37.664640pt;}
._3f{width:39.836160pt;}
._43{width:40.953387pt;}
._44{width:42.307200pt;}
._3{width:45.152640pt;}
._3c{width:46.078080pt;}
._18{width:47.623680pt;}
._17{width:48.746880pt;}
._c{width:54.887040pt;}
._45{width:55.785600pt;}
._22{width:56.833920pt;}
._5{width:59.529600pt;}
._24{width:60.503040pt;}
._46{width:64.247040pt;}
._f{width:65.295360pt;}
._3a{width:67.691520pt;}
._39{width:68.664960pt;}
._3d{width:72.259200pt;}
._3e{width:73.335040pt;}
._34{width:75.179520pt;}
._33{width:76.227840pt;}
._16{width:84.764160pt;}
._25{width:87.984000pt;}
._13{width:90.529920pt;}
._7{width:95.846400pt;}
._6{width:96.819840pt;}
._14{width:109.848960pt;}
._23{width:110.822400pt;}
._4{width:126.023040pt;}
._1d{width:127.609387pt;}
._1c{width:128.568960pt;}
._10{width:131.639040pt;}
._30{width:137.854080pt;}
._b{width:145.416960pt;}
._11{width:165.409920pt;}
._26{width:167.731200pt;}
._2c{width:169.752960pt;}
._2f{width:204.122880pt;}
._e{width:214.231680pt;}
._2e{width:215.130240pt;}
.fs0{font-size:74.880000pt;}
.fs1{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:2.560000pt;}
.yd{bottom:7.200000pt;}
.y1c{bottom:7.360000pt;}
.y1a{bottom:31.840000pt;}
.y2b{bottom:32.000000pt;}
.y2{bottom:46.720000pt;}
.y1{bottom:51.200000pt;}
.y2a{bottom:56.634667pt;}
.y38{bottom:56.640000pt;}
.y19{bottom:56.666667pt;}
.y29{bottom:81.274667pt;}
.y37{bottom:81.280000pt;}
.y18{bottom:81.306667pt;}
.y1d{bottom:93.152000pt;}
.y50{bottom:105.312000pt;}
.y28{bottom:105.914667pt;}
.y17{bottom:105.946667pt;}
.y36{bottom:105.960000pt;}
.y74{bottom:106.592000pt;}
.y4f{bottom:129.952000pt;}
.y27{bottom:130.714667pt;}
.y16{bottom:130.746667pt;}
.y35{bottom:130.760000pt;}
.y73{bottom:131.232000pt;}
.y4e{bottom:154.586667pt;}
.y26{bottom:155.354667pt;}
.y15{bottom:155.386667pt;}
.y34{bottom:155.400000pt;}
.y72{bottom:156.026667pt;}
.y4d{bottom:179.386667pt;}
.y25{bottom:179.994667pt;}
.y14{bottom:180.026667pt;}
.y33{bottom:180.040000pt;}
.y71{bottom:180.666667pt;}
.y4c{bottom:204.026667pt;}
.y13{bottom:204.666667pt;}
.y24{bottom:204.794667pt;}
.y32{bottom:204.840000pt;}
.y70{bottom:205.306667pt;}
.y4b{bottom:228.666667pt;}
.y12{bottom:229.466667pt;}
.y23{bottom:229.474667pt;}
.y31{bottom:229.480000pt;}
.y6f{bottom:229.946667pt;}
.y4a{bottom:253.306667pt;}
.y11{bottom:254.106667pt;}
.y22{bottom:254.114667pt;}
.y30{bottom:254.120000pt;}
.y6e{bottom:254.746667pt;}
.y49{bottom:278.106667pt;}
.y10{bottom:278.746667pt;}
.y21{bottom:278.754667pt;}
.y2f{bottom:278.760000pt;}
.y6d{bottom:279.386667pt;}
.y48{bottom:302.786667pt;}
.yf{bottom:303.426667pt;}
.y20{bottom:303.554667pt;}
.y2e{bottom:303.560000pt;}
.y6c{bottom:304.066667pt;}
.y47{bottom:327.426667pt;}
.y1f{bottom:328.194667pt;}
.y6b{bottom:328.866667pt;}
.y46{bottom:352.066667pt;}
.y1e{bottom:352.834667pt;}
.y6a{bottom:353.506667pt;}
.y45{bottom:376.866667pt;}
.y69{bottom:378.146667pt;}
.y44{bottom:401.506667pt;}
.y68{bottom:402.786667pt;}
.y43{bottom:426.146667pt;}
.y67{bottom:427.586667pt;}
.y42{bottom:450.946667pt;}
.y66{bottom:452.226667pt;}
.y1b{bottom:464.066667pt;}
.y41{bottom:475.586667pt;}
.y65{bottom:476.866667pt;}
.ye{bottom:489.506667pt;}
.y40{bottom:500.226667pt;}
.y64{bottom:501.506667pt;}
.y3f{bottom:524.866667pt;}
.y63{bottom:526.306667pt;}
.y3e{bottom:549.693333pt;}
.y62{bottom:550.973333pt;}
.y3d{bottom:574.333333pt;}
.y61{bottom:575.613333pt;}
.y3c{bottom:598.973333pt;}
.y60{bottom:600.413333pt;}
.y3b{bottom:623.773333pt;}
.y5f{bottom:625.053333pt;}
.y3a{bottom:648.413333pt;}
.y5e{bottom:649.693333pt;}
.y39{bottom:673.053333pt;}
.y5d{bottom:674.333333pt;}
.y2d{bottom:690.493333pt;}
.y5c{bottom:699.133333pt;}
.y5b{bottom:723.773333pt;}
.y5a{bottom:748.413333pt;}
.y59{bottom:773.213333pt;}
.y58{bottom:797.893333pt;}
.yc{bottom:811.173333pt;}
.y57{bottom:822.533333pt;}
.yb{bottom:843.653333pt;}
.y56{bottom:847.173333pt;}
.ya{bottom:868.453333pt;}
.y55{bottom:871.973333pt;}
.y9{bottom:893.093333pt;}
.y54{bottom:896.613333pt;}
.y8{bottom:917.733333pt;}
.y53{bottom:921.253333pt;}
.y7{bottom:942.373333pt;}
.y52{bottom:945.893333pt;}
.y6{bottom:968.293333pt;}
.y51{bottom:970.693333pt;}
.y5{bottom:995.333333pt;}
.y2c{bottom:1012.160000pt;}
.y4{bottom:1020.000000pt;}
.h3{height:20.032000pt;}
.h7{height:24.640000pt;}
.h9{height:24.800000pt;}
.h5{height:52.430625pt;}
.h2{height:52.503750pt;}
.h4{height:52.832812pt;}
.hc{height:54.514687pt;}
.h6{height:60.057813pt;}
.h8{height:320.866667pt;}
.hb{height:321.026667pt;}
.ha{height:370.266667pt;}
.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;}
.xa{left:7.200000pt;}
.x3{left:16.800000pt;}
.xc{left:54.394667pt;}
.x1{left:85.151988pt;}
.xe{left:113.631988pt;}
.xd{left:132.351988pt;}
.x5{left:161.306655pt;}
.x7{left:207.066655pt;}
.x9{left:240.506655pt;}
.x2{left:374.946667pt;}
.x4{left:396.866655pt;}
.xb{left:510.493333pt;}
.x8{left:518.973322pt;}
.x6{left:561.853322pt;}
}




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