
    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_1087dce2514c003964a25f9d.woff')format("woff");}.ff1{font-family:ff1;line-height:0.997000;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_249740db67bc1b9cc858cc72.woff')format("woff");}.ff2{font-family:ff2;line-height:0.997000;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_f77b8a7e0a02aed8c650e868.woff')format("woff");}.ff3{font-family:ff3;line-height:0.997000;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_9745d8ba81834a8d57952756.woff')format("woff");}.ff4{font-family:ff4;line-height:1.032000;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_4a72ec205bb25631cbec9c1e.woff')format("woff");}.ff5{font-family:ff5;line-height:0.997000;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_95a3b4bb6545136062b4823a.woff')format("woff");}.ff6{font-family:ff6;line-height:1.006348;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;}
.ff7{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff8;src:url('chunks/assets/font_ebd0a7a8fdf79f5a356fd3e3.woff')format("woff");}.ff8{font-family:ff8;line-height:0.997000;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_44f8c8dd73a6a85554a97075.woff')format("woff");}.ff9{font-family:ff9;line-height:0.997000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_04a78102e2d1ddf9389da6d3.woff')format("woff");}.ffa{font-family:ffa;line-height:0.997000;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;}
.ffb{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ffc;src:url('chunks/assets/font_7270b48bcfd69be127699369.woff')format("woff");}.ffc{font-family:ffc;line-height:0.997000;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;}
.ffd{font-family:sans-serif;visibility:hidden;}
.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;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.003734px;}
.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:-25.427204px;}
.ws2{word-spacing:-20.739751px;}
.ws4{word-spacing:-20.667162px;}
.ws1{word-spacing:-15.969608px;}
.ws3{word-spacing:-15.520499px;}
.ws5{word-spacing:0.000000px;}
._8{margin-left:-15.726965px;}
._6{margin-left:-9.750707px;}
._5{margin-left:-8.457936px;}
._4{margin-left:-7.304069px;}
._3{margin-left:-4.455881px;}
._7{margin-left:-3.449965px;}
._2{margin-left:-2.413845px;}
._1{margin-left:-1.265665px;}
._0{width:1.131831px;}
.fc6{color:transparent;}
.fc5{color:rgb(22,74,123);}
.fc4{color:rgb(196,149,0);}
.fc3{color:rgb(26,77,125);}
.fc1{color:rgb(209,163,0);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs5{font-size:53.986336px;}
.fs3{font-size:59.969821px;}
.fsa{font-size:65.953306px;}
.fs1{font-size:66.538159px;}
.fs0{font-size:66.581390px;}
.fs7{font-size:69.282463px;}
.fsb{font-size:69.822330px;}
.fs6{font-size:71.981782px;}
.fse{font-size:73.196476px;}
.fsd{font-size:73.209899px;}
.fs9{font-size:83.948753px;}
.fsf{font-size:89.662307px;}
.fs8{font-size:89.977227px;}
.fsc{font-size:95.960713px;}
.fs10{font-size:119.937062px;}
.fs2{font-size:119.939644px;}
.fs4{font-size:311.906066px;}
.y0{bottom:0.000000px;}
.y4{bottom:0.135021px;}
.y3{bottom:4.430450px;}
.y3e{bottom:4.648739px;}
.y59{bottom:4.664199px;}
.y39{bottom:4.747968px;}
.y36{bottom:4.764351px;}
.y32{bottom:4.820996px;}
.y53{bottom:7.398640px;}
.y51{bottom:7.488068px;}
.y5c{bottom:14.512103px;}
.y2{bottom:27.733936px;}
.y3d{bottom:30.272204px;}
.y58{bottom:30.287664px;}
.y38{bottom:30.371433px;}
.y35{bottom:30.387815px;}
.y31{bottom:30.444461px;}
.y5b{bottom:34.756979px;}
.y57{bottom:55.911129px;}
.y34{bottom:56.011280px;}
.y30{bottom:56.067926px;}
.ye{bottom:58.874541px;}
.yd{bottom:79.119417px;}
.yc{bottom:104.218724px;}
.y15{bottom:136.235743px;}
.y60{bottom:145.533380px;}
.y14{bottom:154.231188px;}
.y5f{bottom:168.027686px;}
.y13{bottom:172.226634px;}
.y12{bottom:190.222079px;}
.y5e{bottom:190.521993px;}
.y11{bottom:208.217525px;}
.y5d{bottom:213.016300px;}
.y10{bottom:226.212970px;}
.y5a{bottom:245.483031px;}
.yb{bottom:248.857167px;}
.y56{bottom:274.815009px;}
.y55{bottom:308.594271px;}
.y8{bottom:327.148683px;}
.y54{bottom:333.338008px;}
.y26{bottom:338.056805px;}
.y7{bottom:349.642990px;}
.y25{bottom:362.800542px;}
.y3c{bottom:375.975005px;}
.y24{bottom:390.918425px;}
.y6{bottom:409.525932px;}
.y23{bottom:415.662163px;}
.y5{bottom:432.020239px;}
.y22{bottom:443.780046px;}
.y37{bottom:452.655002px;}
.y3b{bottom:457.918844px;}
.y21{bottom:468.523784px;}
.y3a{bottom:482.662582px;}
.y1{bottom:492.975000px;}
.y20{bottom:496.641667px;}
.y1f{bottom:520.260689px;}
.y33{bottom:531.494999px;}
.y2f{bottom:534.374998px;}
.y1e{bottom:548.378573px;}
.y1d{bottom:571.997595px;}
.ya{bottom:576.426032px;}
.y1c{bottom:603.489624px;}
.y9{bottom:618.040499px;}
.y2e{bottom:631.411603px;}
.y2d{bottom:675.237131px;}
.y47{bottom:687.745779px;}
.y4f{bottom:700.994037px;}
.y2c{bottom:706.729161px;}
.y46{bottom:718.113093px;}
.y4e{bottom:732.486067px;}
.y2b{bottom:738.221190px;}
.y45{bottom:748.480407px;}
.y4d{bottom:763.978096px;}
.y2a{bottom:771.992854px;}
.y44{bottom:778.847721px;}
.y4c{bottom:795.470126px;}
.y29{bottom:803.484883px;}
.y43{bottom:809.215036px;}
.y4b{bottom:826.962155px;}
.y28{bottom:834.976913px;}
.y42{bottom:839.582350px;}
.y4a{bottom:858.454184px;}
.y27{bottom:866.468942px;}
.y41{bottom:869.949664px;}
.y49{bottom:889.946214px;}
.y40{bottom:900.316978px;}
.y1b{bottom:902.459774px;}
.y48{bottom:921.438243px;}
.y3f{bottom:930.684292px;}
.y1a{bottom:933.951803px;}
.y52{bottom:970.694980px;}
.y50{bottom:972.854980px;}
.y19{bottom:976.525443px;}
.y18{bottom:1034.551677px;}
.y17{bottom:1071.509277px;}
.y16{bottom:1096.253015px;}
.yf{bottom:1147.798182px;}
.h1b{height:34.919999px;}
.h19{height:35.279999px;}
.h2{height:43.559998px;}
.h9{height:44.592714px;}
.h16{height:47.879998px;}
.h7{height:49.535072px;}
.hf{height:54.477431px;}
.h5{height:54.960520px;}
.h3{height:54.996228px;}
.hb{height:57.227314px;}
.h10{height:57.673245px;}
.ha{height:59.456952px;}
.h17{height:60.460289px;}
.h14{height:60.471377px;}
.hc{height:65.818340px;}
.he{height:69.341670px;}
.h15{height:73.439997px;}
.h13{height:73.799997px;}
.h18{height:74.061065px;}
.hd{height:74.321189px;}
.h12{height:79.263549px;}
.h11{height:85.478366px;}
.h1a{height:99.068013px;}
.h6{height:99.070146px;}
.h8{height:238.955380px;}
.h1{height:1263.000000px;}
.h4{height:1263.239947px;}
.h0{height:1263.374968px;}
.w7{width:91.799996px;}
.w4{width:92.519996px;}
.w8{width:109.439995px;}
.w5{width:115.559995px;}
.w6{width:121.319995px;}
.wb{width:202.679992px;}
.w9{width:301.319987px;}
.wa{width:321.119987px;}
.w2{width:341.639986px;}
.w3{width:1785.374926px;}
.w0{width:1785.375000px;}
.w1{width:1785.750000px;}
.x0{left:0.000000px;}
.x3{left:1.110843px;}
.x23{left:3.995841px;}
.x2c{left:8.296681px;}
.x24{left:10.416006px;}
.x9{left:13.749168px;}
.x2a{left:17.425093px;}
.x2{left:37.405503px;}
.x2e{left:51.031725px;}
.x31{left:71.999997px;}
.x21{left:121.275708px;}
.x34{left:134.563865px;}
.x33{left:170.625051px;}
.x26{left:190.079992px;}
.x22{left:192.599992px;}
.x29{left:198.719992px;}
.xc{left:279.864459px;}
.x2f{left:286.395145px;}
.xb{left:290.347328px;}
.x30{left:308.889429px;}
.x37{left:393.158478px;}
.x35{left:434.159982px;}
.x28{left:458.060549px;}
.x32{left:463.679981px;}
.x2d{left:477.571599px;}
.x25{left:480.599980px;}
.x2b{left:485.639980px;}
.xd{left:491.855732px;}
.x27{left:494.086588px;}
.xe{left:509.165798px;}
.xa{left:614.237704px;}
.x6{left:755.830589px;}
.x4{left:756.928455px;}
.x5{left:759.125164px;}
.x1{left:800.999967px;}
.x7{left:817.017609px;}
.x8{left:836.260785px;}
.x10{left:848.032244px;}
.x1c{left:886.272565px;}
.x36{left:906.303382px;}
.x1f{left:1077.720204px;}
.x1d{left:1079.846625px;}
.x20{left:1100.214494px;}
.x1e{left:1102.340914px;}
.xf{left:1121.260080px;}
.x17{left:1283.805950px;}
.x13{left:1315.192537px;}
.x12{left:1322.819513px;}
.x15{left:1325.596154px;}
.x1b{left:1349.355766px;}
.x16{left:1350.744086px;}
.x19{left:1377.438502px;}
.x11{left:1382.517294px;}
.x14{left:1387.859692px;}
.x1a{left:1397.929409px;}
.x18{left:1408.069421px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.003319pt;}
.ws0{word-spacing:-22.601959pt;}
.ws2{word-spacing:-18.435334pt;}
.ws4{word-spacing:-18.370810pt;}
.ws1{word-spacing:-14.195207pt;}
.ws3{word-spacing:-13.795999pt;}
.ws5{word-spacing:0.000000pt;}
._8{margin-left:-13.979525pt;}
._6{margin-left:-8.667296pt;}
._5{margin-left:-7.518165pt;}
._4{margin-left:-6.492506pt;}
._3{margin-left:-3.960783pt;}
._7{margin-left:-3.066635pt;}
._2{margin-left:-2.145640pt;}
._1{margin-left:-1.125035pt;}
._0{width:1.006072pt;}
.fs5{font-size:47.987854pt;}
.fs3{font-size:53.306508pt;}
.fsa{font-size:58.625161pt;}
.fs1{font-size:59.145031pt;}
.fs0{font-size:59.183457pt;}
.fs7{font-size:61.584412pt;}
.fsb{font-size:62.064294pt;}
.fs6{font-size:63.983806pt;}
.fse{font-size:65.063535pt;}
.fsd{font-size:65.075466pt;}
.fs9{font-size:74.621114pt;}
.fsf{font-size:79.699828pt;}
.fs8{font-size:79.979757pt;}
.fsc{font-size:85.298411pt;}
.fs10{font-size:106.610722pt;}
.fs2{font-size:106.613016pt;}
.fs4{font-size:277.249837pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:0.120018pt;}
.y3{bottom:3.938178pt;}
.y3e{bottom:4.132213pt;}
.y59{bottom:4.145955pt;}
.y39{bottom:4.220416pt;}
.y36{bottom:4.234978pt;}
.y32{bottom:4.285330pt;}
.y53{bottom:6.576569pt;}
.y51{bottom:6.656061pt;}
.y5c{bottom:12.899647pt;}
.y2{bottom:24.652388pt;}
.y3d{bottom:26.908626pt;}
.y58{bottom:26.922368pt;}
.y38{bottom:26.996829pt;}
.y35{bottom:27.011391pt;}
.y31{bottom:27.061743pt;}
.y5b{bottom:30.895093pt;}
.y57{bottom:49.698781pt;}
.y34{bottom:49.787805pt;}
.y30{bottom:49.838156pt;}
.ye{bottom:52.332926pt;}
.yd{bottom:70.328371pt;}
.yc{bottom:92.638866pt;}
.y15{bottom:121.098438pt;}
.y60{bottom:129.363004pt;}
.y14{bottom:137.094390pt;}
.y5f{bottom:149.357943pt;}
.y13{bottom:153.090341pt;}
.y12{bottom:169.086293pt;}
.y5e{bottom:169.352883pt;}
.y11{bottom:185.082244pt;}
.y5d{bottom:189.347822pt;}
.y10{bottom:201.078196pt;}
.y5a{bottom:218.207139pt;}
.yb{bottom:221.206371pt;}
.y56{bottom:244.280008pt;}
.y55{bottom:274.306018pt;}
.y8{bottom:290.798830pt;}
.y54{bottom:296.300452pt;}
.y26{bottom:300.494937pt;}
.y7{bottom:310.793769pt;}
.y25{bottom:322.489371pt;}
.y3c{bottom:334.200004pt;}
.y24{bottom:347.483045pt;}
.y6{bottom:364.023051pt;}
.y23{bottom:369.477478pt;}
.y5{bottom:384.017990pt;}
.y22{bottom:394.471152pt;}
.y37{bottom:402.360002pt;}
.y3b{bottom:407.038973pt;}
.y21{bottom:416.465585pt;}
.y3a{bottom:429.033406pt;}
.y1{bottom:438.200000pt;}
.y20{bottom:441.459260pt;}
.y1f{bottom:462.453946pt;}
.y33{bottom:472.439999pt;}
.y2f{bottom:474.999999pt;}
.y1e{bottom:487.447620pt;}
.y1d{bottom:508.442306pt;}
.ya{bottom:512.378695pt;}
.y1c{bottom:536.435221pt;}
.y9{bottom:549.369333pt;}
.y2e{bottom:561.254758pt;}
.y2d{bottom:600.210783pt;}
.y47{bottom:611.329581pt;}
.y4f{bottom:623.105811pt;}
.y2c{bottom:628.203698pt;}
.y46{bottom:638.322750pt;}
.y4e{bottom:651.098726pt;}
.y2b{bottom:656.196613pt;}
.y45{bottom:665.315918pt;}
.y4d{bottom:679.091641pt;}
.y2a{bottom:686.215870pt;}
.y44{bottom:692.309086pt;}
.y4c{bottom:707.084556pt;}
.y29{bottom:714.208785pt;}
.y43{bottom:719.302254pt;}
.y4b{bottom:735.077471pt;}
.y28{bottom:742.201700pt;}
.y42{bottom:746.295422pt;}
.y4a{bottom:763.070386pt;}
.y27{bottom:770.194615pt;}
.y41{bottom:773.288590pt;}
.y49{bottom:791.063301pt;}
.y40{bottom:800.281758pt;}
.y1b{bottom:802.186466pt;}
.y48{bottom:819.056216pt;}
.y3f{bottom:827.274926pt;}
.y1a{bottom:830.179381pt;}
.y52{bottom:862.839982pt;}
.y50{bottom:864.759982pt;}
.y19{bottom:868.022616pt;}
.y18{bottom:919.601491pt;}
.y17{bottom:952.452691pt;}
.y16{bottom:974.447124pt;}
.yf{bottom:1020.265051pt;}
.h1b{height:31.039999pt;}
.h19{height:31.359999pt;}
.h2{height:38.719998pt;}
.h9{height:39.637968pt;}
.h16{height:42.559998pt;}
.h7{height:44.031175pt;}
.hf{height:48.424383pt;}
.h5{height:48.853795pt;}
.h3{height:48.885536pt;}
.hb{height:50.868724pt;}
.h10{height:51.265107pt;}
.ha{height:52.850624pt;}
.h17{height:53.742480pt;}
.h14{height:53.752335pt;}
.hc{height:58.505191pt;}
.he{height:61.637040pt;}
.h15{height:65.279997pt;}
.h13{height:65.599997pt;}
.h18{height:65.832058pt;}
.hd{height:66.063280pt;}
.h12{height:70.456488pt;}
.h11{height:75.980769pt;}
.h1a{height:88.060456pt;}
.h6{height:88.062352pt;}
.h8{height:212.404782pt;}
.h1{height:1122.666667pt;}
.h4{height:1122.879953pt;}
.h0{height:1122.999972pt;}
.w7{width:81.599997pt;}
.w4{width:82.239997pt;}
.w8{width:97.279996pt;}
.w5{width:102.719996pt;}
.w6{width:107.839996pt;}
.wb{width:180.159992pt;}
.w9{width:267.839989pt;}
.wa{width:285.439988pt;}
.w2{width:303.679987pt;}
.w3{width:1586.999934pt;}
.w0{width:1587.000000pt;}
.w1{width:1587.333333pt;}
.x0{left:0.000000pt;}
.x3{left:0.987416pt;}
.x23{left:3.551858pt;}
.x2c{left:7.374828pt;}
.x24{left:9.258672pt;}
.x9{left:12.221483pt;}
.x2a{left:15.488972pt;}
.x2{left:33.249336pt;}
.x2e{left:45.361533pt;}
.x31{left:63.999997pt;}
.x21{left:107.800629pt;}
.x34{left:119.612325pt;}
.x33{left:151.666712pt;}
.x26{left:168.959993pt;}
.x22{left:171.199993pt;}
.x29{left:176.639993pt;}
.xc{left:248.768408pt;}
.x2f{left:254.573462pt;}
.xb{left:258.086514pt;}
.x30{left:274.568381pt;}
.x37{left:349.474203pt;}
.x35{left:385.919984pt;}
.x28{left:407.164933pt;}
.x32{left:412.159983pt;}
.x2d{left:424.508088pt;}
.x25{left:427.199982pt;}
.x2b{left:431.679982pt;}
.xd{left:437.205095pt;}
.x27{left:439.188078pt;}
.xe{left:452.591820pt;}
.xa{left:545.989070pt;}
.x6{left:671.849412pt;}
.x4{left:672.825293pt;}
.x5{left:674.777924pt;}
.x1{left:711.999970pt;}
.x7{left:726.237874pt;}
.x8{left:743.342920pt;}
.x10{left:753.806439pt;}
.x1c{left:787.797836pt;}
.x36{left:805.603006pt;}
.x1f{left:957.973515pt;}
.x1d{left:959.863666pt;}
.x20{left:977.968439pt;}
.x1e{left:979.858591pt;}
.xf{left:996.675626pt;}
.x17{left:1141.160844pt;}
.x13{left:1169.060033pt;}
.x12{left:1175.839567pt;}
.x15{left:1178.307692pt;}
.x1b{left:1199.427347pt;}
.x16{left:1200.661410pt;}
.x19{left:1224.389779pt;}
.x11{left:1228.904262pt;}
.x14{left:1233.653060pt;}
.x1a{left:1242.603919pt;}
.x18{left:1251.617263pt;}
}




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