
    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_6dc7a217fce3f86d88dd7e8a.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_843733805d3c4f02ffb9c6e1.woff2')format("woff");}.ff2{font-family:ff2;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;}
@font-face{font-family:ff3;src:url('chunks/assets/font_4d2b8d265341457f8b3dfe7e.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_4b64bd94c097f8e028f82d9e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.942383;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_b9b74ada37bf640325b2fe82.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.040039;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_9d504c012bf88cddb5138a6f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.894531;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_f9ce1e51e147239fc5e0e31e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.879395;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_b239b029a1a466050d434851.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.915082;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_bbf67065685d6c4e5e2e5291.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.899414;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;}
.m1{transform:matrix(0.236547,0.000000,-0.080904,0.236547,0,0);-ms-transform:matrix(0.236547,0.000000,-0.080904,0.236547,0,0);-webkit-transform:matrix(0.236547,0.000000,-0.080904,0.236547,0,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);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:40.744604px;}
.ls0{letter-spacing:191.231940px;}
.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;}
}
.ws1{word-spacing:-89.034192px;}
.ws3{word-spacing:-84.243145px;}
.ws2{word-spacing:-21.060786px;}
.ws0{word-spacing:0.000000px;}
._2{margin-left:-190.389509px;}
._d{margin-left:-6.810861px;}
._c{margin-left:-5.500156px;}
._e{margin-left:-3.639896px;}
._29{margin-left:-2.428902px;}
._1{margin-left:-1.218563px;}
._0{width:1.398851px;}
._9{width:2.786322px;}
._1a{width:4.505034px;}
._b{width:5.939470px;}
._a{width:7.413397px;}
._2b{width:8.424315px;}
._28{width:10.461617px;}
._2c{width:12.111641px;}
._20{width:13.321935px;}
._21{width:14.360494px;}
._3{width:16.045522px;}
._4{width:17.279387px;}
._2a{width:18.405531px;}
._5{width:19.897177px;}
._2f{width:22.796749px;}
._26{width:24.026646px;}
._22{width:25.238766px;}
._16{width:26.864396px;}
._15{width:28.134577px;}
._39{width:29.321881px;}
._3e{width:30.833320px;}
._1e{width:32.173639px;}
._1d{width:33.531734px;}
._27{width:34.590696px;}
._2d{width:36.003085px;}
._7{width:37.950550px;}
._34{width:39.661739px;}
._3f{width:40.699641px;}
._1c{width:41.871475px;}
._19{width:42.906086px;}
._32{width:44.659727px;}
._3c{width:46.234111px;}
._3b{width:47.334117px;}
._17{width:48.509288px;}
._18{width:49.645073px;}
._43{width:51.266401px;}
._1b{width:52.792152px;}
._14{width:54.147610px;}
._13{width:55.612651px;}
._1f{width:57.357077px;}
._11{width:59.744843px;}
._2e{width:61.671338px;}
._6{width:63.397619px;}
._3d{width:64.780495px;}
._33{width:67.307970px;}
._12{width:68.491323px;}
._3a{width:72.955222px;}
._38{width:74.160011px;}
._37{width:75.241634px;}
._31{width:76.974871px;}
._30{width:78.729168px;}
._41{width:81.425605px;}
._40{width:82.487532px;}
._25{width:83.921639px;}
._23{width:84.963161px;}
._24{width:86.380859px;}
._44{width:91.557865px;}
._45{width:92.622376px;}
._8{width:94.529036px;}
._42{width:95.655459px;}
._48{width:97.829705px;}
._47{width:98.830044px;}
._46{width:105.456952px;}
._10{width:114.531847px;}
._f{width:115.989977px;}
._49{width:120.121669px;}
._4a{width:121.264559px;}
._36{width:124.514485px;}
._35{width:126.267970px;}
._4d{width:183.329532px;}
._4c{width:184.902187px;}
._4e{width:235.880807px;}
._4b{width:741.339680px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(15,36,62);}
.fc1{color:rgb(192,0,0);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:41.761620px;}
.fs4{font-size:66.242700px;}
.fs0{font-size:72.002705px;}
.fs2{font-size:84.243145px;}
.fs3{font-size:89.034192px;}
.y0{bottom:0.000000px;}
.y8{bottom:55.440033px;}
.y7{bottom:67.500000px;}
.y6{bottom:79.560104px;}
.y5{bottom:91.440033px;}
.y41{bottom:117.360077px;}
.y25{bottom:127.440033px;}
.y64{bottom:129.780052px;}
.y53{bottom:135.720085px;}
.y40{bottom:153.720085px;}
.y24{bottom:163.620072px;}
.y63{bottom:165.960091px;}
.y52{bottom:171.900055px;}
.y3f{bottom:189.900055px;}
.y23{bottom:199.800041px;}
.y62{bottom:202.140060px;}
.y51{bottom:208.080093px;}
.y3e{bottom:226.080093px;}
.y22{bottom:235.980079px;}
.y61{bottom:238.320099px;}
.y50{bottom:244.260064px;}
.y3d{bottom:262.260064px;}
.y21{bottom:272.340088px;}
.y60{bottom:274.680039px;}
.y4f{bottom:280.620072px;}
.y3c{bottom:298.440033px;}
.y20{bottom:308.520058px;}
.y5f{bottom:310.860077px;}
.y4e{bottom:316.800041px;}
.y3b{bottom:334.800041px;}
.y1f{bottom:344.700096px;}
.y5e{bottom:347.040047px;}
.y4d{bottom:352.980079px;}
.y3a{bottom:370.980079px;}
.y1e{bottom:380.880066px;}
.y5d{bottom:383.220085px;}
.y4c{bottom:389.160049px;}
.y39{bottom:407.160049px;}
.y1d{bottom:417.240074px;}
.y68{bottom:419.580093px;}
.y5c{bottom:423.900055px;}
.y4b{bottom:425.520058px;}
.y38{bottom:443.340088px;}
.y1c{bottom:453.420043px;}
.y67{bottom:455.760064px;}
.y4a{bottom:461.700096px;}
.y37{bottom:479.700096px;}
.y1b{bottom:489.600083px;}
.y66{bottom:491.940033px;}
.y49{bottom:497.880066px;}
.y36{bottom:515.880066px;}
.y1a{bottom:525.780052px;}
.y72{bottom:528.120072px;}
.y65{bottom:532.440033px;}
.y48{bottom:534.060036px;}
.y35{bottom:552.060036px;}
.y19{bottom:562.140060px;}
.y71{bottom:564.480079px;}
.y47{bottom:570.420043px;}
.y34{bottom:588.240074px;}
.y18{bottom:598.320099px;}
.y70{bottom:600.660049px;}
.y46{bottom:606.600083px;}
.y73{bottom:610.740074px;}
.y33{bottom:624.600083px;}
.y17{bottom:634.500068px;}
.y6f{bottom:636.840088px;}
.y45{bottom:642.780052px;}
.y32{bottom:660.780052px;}
.y16{bottom:670.680039px;}
.y6e{bottom:673.020058px;}
.y44{bottom:678.960091px;}
.y31{bottom:696.960056px;}
.y15{bottom:706.860077px;}
.y6d{bottom:709.200061px;}
.y43{bottom:715.140060px;}
.y5b{bottom:733.140060px;}
.y14{bottom:743.220051px;}
.y30{bottom:744.300076px;}
.y6c{bottom:745.560070px;}
.y42{bottom:751.500068px;}
.y5a{bottom:769.500068px;}
.y13{bottom:779.400055px;}
.y6b{bottom:781.740074px;}
.y2f{bottom:787.680073px;}
.y59{bottom:805.680073px;}
.y12{bottom:815.580059px;}
.y6a{bottom:817.920078px;}
.y2e{bottom:823.860077px;}
.y58{bottom:841.860077px;}
.y11{bottom:851.760064px;}
.y69{bottom:858.420078px;}
.y2d{bottom:860.040081px;}
.y57{bottom:878.040081px;}
.y10{bottom:888.120072px;}
.y2c{bottom:896.400055px;}
.y56{bottom:914.220051px;}
.yf{bottom:924.300076px;}
.y2b{bottom:932.580059px;}
.y55{bottom:950.580059px;}
.ye{bottom:960.480079px;}
.y2a{bottom:968.760064px;}
.yd{bottom:996.660067px;}
.y54{bottom:997.740074px;}
.y29{bottom:1004.940067px;}
.yc{bottom:1030.680073px;}
.y28{bottom:1041.300058px;}
.yb{bottom:1061.640060px;}
.y27{bottom:1077.480063px;}
.ya{bottom:1092.780069px;}
.y26{bottom:1113.660067px;}
.y9{bottom:1116.540064px;}
.y4{bottom:1137.240066px;}
.y3{bottom:1157.940067px;}
.y2{bottom:1178.640069px;}
.y1{bottom:1199.340066px;}
.h4{height:29.282073px;}
.h3{height:30.403601px;}
.hc{height:46.447518px;}
.h2{height:50.802689px;}
.h6{height:59.068924px;}
.h5{height:59.439133px;}
.h7{height:60.837701px;}
.hb{height:61.331313px;}
.ha{height:68.776631px;}
.h8{height:69.434780px;}
.h9{height:73.296703px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:84.959997px;}
.x4{left:87.480002px;}
.x10{left:104.219999px;}
.x8{left:120.060001px;}
.xd{left:138.060001px;}
.x5{left:151.199993px;}
.x19{left:154.439999px;}
.x1{left:163.979994px;}
.x9{left:167.219999px;}
.x14{left:197.460005px;}
.xc{left:216.719999px;}
.x11{left:222.479994px;}
.x13{left:242.460005px;}
.xa{left:268.199993px;}
.xb{left:281.520006px;}
.x15{left:285.120002px;}
.x6{left:287.099997px;}
.x18{left:330.660015px;}
.x12{left:408.060001px;}
.x7{left:410.040012px;}
.x3{left:446.399987px;}
.x16{left:628.019989px;}
.x17{left:670.139992px;}
.xe{left:753.659981px;}
.xf{left:795.779983px;}
.x1a{left:807.840019px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:36.217426pt;}
.ls0{letter-spacing:169.983947pt;}
.ws1{word-spacing:-79.141504pt;}
.ws3{word-spacing:-74.882796pt;}
.ws2{word-spacing:-18.720699pt;}
.ws0{word-spacing:0.000000pt;}
._2{margin-left:-169.235119pt;}
._d{margin-left:-6.054099pt;}
._c{margin-left:-4.889028pt;}
._e{margin-left:-3.235463pt;}
._29{margin-left:-2.159024pt;}
._1{margin-left:-1.083167pt;}
._0{width:1.243423pt;}
._9{width:2.476731pt;}
._1a{width:4.004475pt;}
._b{width:5.279529pt;}
._a{width:6.589686pt;}
._2b{width:7.488280pt;}
._28{width:9.299215pt;}
._2c{width:10.765903pt;}
._20{width:11.841720pt;}
._21{width:12.764883pt;}
._3{width:14.262687pt;}
._4{width:15.359455pt;}
._2a{width:16.360472pt;}
._5{width:17.686380pt;}
._2f{width:20.263776pt;}
._26{width:21.357018pt;}
._22{width:22.434458pt;}
._16{width:23.879463pt;}
._15{width:25.008513pt;}
._39{width:26.063894pt;}
._3e{width:27.407396pt;}
._1e{width:28.598790pt;}
._1d{width:29.805985pt;}
._27{width:30.747285pt;}
._2d{width:32.002743pt;}
._7{width:33.733822pt;}
._34{width:35.254879pt;}
._3f{width:36.177458pt;}
._1c{width:37.219089pt;}
._19{width:38.138743pt;}
._32{width:39.697535pt;}
._3c{width:41.096988pt;}
._3b{width:42.074771pt;}
._17{width:43.119367pt;}
._18{width:44.128954pt;}
._43{width:45.570135pt;}
._1b{width:46.926357pt;}
._14{width:48.131209pt;}
._13{width:49.433467pt;}
._1f{width:50.984069pt;}
._11{width:53.106527pt;}
._2e{width:54.818967pt;}
._6{width:56.353439pt;}
._3d{width:57.582662pt;}
._33{width:59.829306pt;}
._12{width:60.881176pt;}
._3a{width:64.849086pt;}
._38{width:65.920010pt;}
._37{width:66.881452pt;}
._31{width:68.422107pt;}
._30{width:69.981483pt;}
._41{width:72.378316pt;}
._40{width:73.322250pt;}
._25{width:74.597013pt;}
._23{width:75.522810pt;}
._24{width:76.782986pt;}
._44{width:81.384769pt;}
._45{width:82.331001pt;}
._8{width:84.025810pt;}
._42{width:85.027075pt;}
._48{width:86.959737pt;}
._47{width:87.848928pt;}
._46{width:93.739513pt;}
._10{width:101.806086pt;}
._f{width:103.102202pt;}
._49{width:106.774817pt;}
._4a{width:107.790719pt;}
._36{width:110.679542pt;}
._35{width:112.238196pt;}
._4d{width:162.959584pt;}
._4c{width:164.357499pt;}
._4e{width:209.671829pt;}
._4b{width:658.968605pt;}
.fs1{font-size:37.121440pt;}
.fs4{font-size:58.882400pt;}
.fs0{font-size:64.002404pt;}
.fs2{font-size:74.882796pt;}
.fs3{font-size:79.141504pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:49.280030pt;}
.y7{bottom:60.000000pt;}
.y6{bottom:70.720093pt;}
.y5{bottom:81.280030pt;}
.y41{bottom:104.320069pt;}
.y25{bottom:113.280030pt;}
.y64{bottom:115.360047pt;}
.y53{bottom:120.640076pt;}
.y40{bottom:136.640076pt;}
.y24{bottom:145.440064pt;}
.y63{bottom:147.520081pt;}
.y52{bottom:152.800049pt;}
.y3f{bottom:168.800049pt;}
.y23{bottom:177.600037pt;}
.y62{bottom:179.680054pt;}
.y51{bottom:184.960083pt;}
.y3e{bottom:200.960083pt;}
.y22{bottom:209.760071pt;}
.y61{bottom:211.840088pt;}
.y50{bottom:217.120057pt;}
.y3d{bottom:233.120057pt;}
.y21{bottom:242.080079pt;}
.y60{bottom:244.160035pt;}
.y4f{bottom:249.440064pt;}
.y3c{bottom:265.280030pt;}
.y20{bottom:274.240052pt;}
.y5f{bottom:276.320069pt;}
.y4e{bottom:281.600037pt;}
.y3b{bottom:297.600037pt;}
.y1f{bottom:306.400086pt;}
.y5e{bottom:308.480042pt;}
.y4d{bottom:313.760071pt;}
.y3a{bottom:329.760071pt;}
.y1e{bottom:338.560059pt;}
.y5d{bottom:340.640076pt;}
.y4c{bottom:345.920044pt;}
.y39{bottom:361.920044pt;}
.y1d{bottom:370.880066pt;}
.y68{bottom:372.960083pt;}
.y5c{bottom:376.800049pt;}
.y4b{bottom:378.240052pt;}
.y38{bottom:394.080079pt;}
.y1c{bottom:403.040039pt;}
.y67{bottom:405.120057pt;}
.y4a{bottom:410.400086pt;}
.y37{bottom:426.400086pt;}
.y1b{bottom:435.200074pt;}
.y66{bottom:437.280030pt;}
.y49{bottom:442.560059pt;}
.y36{bottom:458.560059pt;}
.y1a{bottom:467.360047pt;}
.y72{bottom:469.440064pt;}
.y65{bottom:473.280030pt;}
.y48{bottom:474.720032pt;}
.y35{bottom:490.720032pt;}
.y19{bottom:499.680054pt;}
.y71{bottom:501.760071pt;}
.y47{bottom:507.040039pt;}
.y34{bottom:522.880066pt;}
.y18{bottom:531.840088pt;}
.y70{bottom:533.920044pt;}
.y46{bottom:539.200074pt;}
.y73{bottom:542.880066pt;}
.y33{bottom:555.200074pt;}
.y17{bottom:564.000061pt;}
.y6f{bottom:566.080079pt;}
.y45{bottom:571.360047pt;}
.y32{bottom:587.360047pt;}
.y16{bottom:596.160035pt;}
.y6e{bottom:598.240052pt;}
.y44{bottom:603.520081pt;}
.y31{bottom:619.520050pt;}
.y15{bottom:628.320069pt;}
.y6d{bottom:630.400055pt;}
.y43{bottom:635.680054pt;}
.y5b{bottom:651.680054pt;}
.y14{bottom:660.640046pt;}
.y30{bottom:661.600068pt;}
.y6c{bottom:662.720063pt;}
.y42{bottom:668.000061pt;}
.y5a{bottom:684.000061pt;}
.y13{bottom:692.800049pt;}
.y6b{bottom:694.880066pt;}
.y2f{bottom:700.160065pt;}
.y59{bottom:716.160065pt;}
.y12{bottom:724.960053pt;}
.y6a{bottom:727.040070pt;}
.y2e{bottom:732.320069pt;}
.y58{bottom:748.320069pt;}
.y11{bottom:757.120057pt;}
.y69{bottom:763.040070pt;}
.y2d{bottom:764.480072pt;}
.y57{bottom:780.480072pt;}
.y10{bottom:789.440064pt;}
.y2c{bottom:796.800049pt;}
.y56{bottom:812.640046pt;}
.yf{bottom:821.600068pt;}
.y2b{bottom:828.960053pt;}
.y55{bottom:844.960053pt;}
.ye{bottom:853.760071pt;}
.y2a{bottom:861.120057pt;}
.yd{bottom:885.920060pt;}
.y54{bottom:886.880066pt;}
.y29{bottom:893.280060pt;}
.yc{bottom:916.160065pt;}
.y28{bottom:925.600052pt;}
.yb{bottom:943.680054pt;}
.y27{bottom:957.760056pt;}
.ya{bottom:971.360062pt;}
.y26{bottom:989.920060pt;}
.y9{bottom:992.480057pt;}
.y4{bottom:1010.880059pt;}
.y3{bottom:1029.280060pt;}
.y2{bottom:1047.680062pt;}
.y1{bottom:1066.080059pt;}
.h4{height:26.028510pt;}
.h3{height:27.025423pt;}
.hc{height:41.286683pt;}
.h2{height:45.157946pt;}
.h6{height:52.505710pt;}
.h5{height:52.834785pt;}
.h7{height:54.077957pt;}
.hb{height:54.516723pt;}
.ha{height:61.134783pt;}
.h8{height:61.719805pt;}
.h9{height:65.152625pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:75.519997pt;}
.x4{left:77.760002pt;}
.x10{left:92.639999pt;}
.x8{left:106.720001pt;}
.xd{left:122.720001pt;}
.x5{left:134.399994pt;}
.x19{left:137.279999pt;}
.x1{left:145.759995pt;}
.x9{left:148.639999pt;}
.x14{left:175.520004pt;}
.xc{left:192.639999pt;}
.x11{left:197.759995pt;}
.x13{left:215.520004pt;}
.xa{left:238.399994pt;}
.xb{left:250.240005pt;}
.x15{left:253.440002pt;}
.x6{left:255.199997pt;}
.x18{left:293.920013pt;}
.x12{left:362.720001pt;}
.x7{left:364.480011pt;}
.x3{left:396.799988pt;}
.x16{left:558.239990pt;}
.x17{left:595.679993pt;}
.xe{left:669.919983pt;}
.xf{left:707.359985pt;}
.x1a{left:718.080017pt;}
}




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