
    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_ac285675292fc719e61f2f22.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.986000;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_de4c3dabf123217e05bbc64e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.956000;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_244d2de3adb7679071677fa8.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938965;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_0ce387ac4dbec3f9e3350966.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.946000;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_925fce12dda3049ce8b2d0b5.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938477;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_7a89295655d50cf381e1ee38.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.944000;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_f946d7dced11778527d18dc3.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:107.972030px;}
.ls1{letter-spacing:108.000426px;}
.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:-72.576002px;}
.ws9{word-spacing:-69.888005px;}
.ws2{word-spacing:-40.320001px;}
.wsa{word-spacing:-21.600001px;}
.wsb{word-spacing:-16.800000px;}
.ws1{word-spacing:0.000000px;}
.ws7{word-spacing:86.399760px;}
.ws3{word-spacing:91.078431px;}
.ws5{word-spacing:91.162296px;}
.ws8{word-spacing:91.164726px;}
.ws6{word-spacing:91.165101px;}
.ws4{word-spacing:91.166931px;}
._b{margin-left:-19.032001px;}
._31{margin-left:-14.256000px;}
._3{margin-left:-12.960000px;}
._c{margin-left:-10.980000px;}
._16{margin-left:-9.720000px;}
._6{margin-left:-8.208000px;}
._a{margin-left:-6.984000px;}
._2{margin-left:-5.184000px;}
._1{margin-left:-3.240000px;}
._0{margin-left:-1.944000px;}
._4{width:1.254000px;}
._7{width:2.412000px;}
._5{width:3.672000px;}
._32{width:4.800000px;}
._9{width:5.827500px;}
._8{width:107.999760px;}
._d{width:113.832004px;}
._26{width:276.525452px;}
._24{width:298.389453px;}
._28{width:366.405453px;}
._1c{width:383.085453px;}
._2b{width:386.445453px;}
._2d{width:406.365453px;}
._21{width:426.525453px;}
._18{width:434.501687px;}
._22{width:436.172518px;}
._17{width:454.131047px;}
._30{width:456.285454px;}
._f{width:467.514425px;}
._1d{width:470.888518px;}
._2e{width:504.188518px;}
._1a{width:520.868518px;}
._23{width:554.079116px;}
._1f{width:564.308518px;}
._29{width:610.868519px;}
._2f{width:622.095116px;}
._1b{width:638.775116px;}
._10{width:664.308068px;}
._2a{width:665.415116px;}
._13{width:678.000158px;}
._20{width:682.215117px;}
._11{width:687.408158px;}
._12{width:691.944068px;}
._e{width:711.645158px;}
._15{width:752.592158px;}
._14{width:845.832068px;}
._19{width:1014.772213px;}
._1e{width:1208.460571px;}
._2c{width:1416.203636px;}
._27{width:1439.603636px;}
._25{width:1446.263636px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(19,30,41);}
.fc0{color:rgb(68,0,153);}
.fs9{font-size:60.000000px;}
.fs5{font-size:78.000005px;}
.fs6{font-size:84.000000px;}
.fs2{font-size:102.000000px;}
.fs4{font-size:108.000003px;}
.fs1{font-size:138.000001px;}
.fs8{font-size:162.000005px;}
.fs3{font-size:180.000006px;}
.fs7{font-size:312.000022px;}
.fs0{font-size:324.000010px;}
.y0{bottom:0.000000px;}
.ya{bottom:18.136196px;}
.y67{bottom:30.596205px;}
.y66{bottom:51.296203px;}
.y23{bottom:55.359084px;}
.y82{bottom:68.679118px;}
.y3d{bottom:80.559118px;}
.y4b{bottom:84.519085px;}
.y65{bottom:89.862127px;}
.y22{bottom:92.619085px;}
.y81{bottom:95.139141px;}
.y59{bottom:98.559119px;}
.y3c{bottom:109.539130px;}
.y42{bottom:116.967506px;}
.y76{bottom:117.639108px;}
.y4a{bottom:118.539086px;}
.y16{bottom:119.259086px;}
.y80{bottom:123.399142px;}
.y21{bottom:129.879086px;}
.y58{bottom:130.059120px;}
.y64{bottom:135.437915px;}
.y35{bottom:137.422897px;}
.y3b{bottom:141.039131px;}
.y15{bottom:144.459109px;}
.y86{bottom:145.999110px;}
.y4f{bottom:146.619087px;}
.y75{bottom:154.899109px;}
.y6f{bottom:155.079109px;}
.y7f{bottom:155.619154px;}
.y57{bottom:164.799121px;}
.y49{bottom:170.559121px;}
.y14{bottom:171.099132px;}
.y63{bottom:174.003872px;}
.y3a{bottom:175.779132px;}
.y7e{bottom:182.079178px;}
.y4e{bottom:183.879088px;}
.y6e{bottom:184.059121px;}
.y20{bottom:185.139088px;}
.y2b{bottom:185.499121px;}
.y74{bottom:192.159088px;}
.y56{bottom:193.779122px;}
.y85{bottom:201.259112px;}
.y34{bottom:202.222888px;}
.y13{bottom:203.499133px;}
.y2f{bottom:204.399088px;}
.y39{bottom:204.759111px;}
.y7d{bottom:208.539145px;}
.y6d{bottom:213.039111px;}
.y2a{bottom:214.479111px;}
.y62{bottom:219.579660px;}
.y4d{bottom:221.139089px;}
.y1f{bottom:222.399089px;}
.y48{bottom:222.579123px;}
.y41{bottom:223.079165px;}
.y55{bottom:225.279123px;}
.y73{bottom:229.419112px;}
.y38{bottom:233.739112px;}
.y18{bottom:234.172957px;}
.y12{bottom:234.459123px;}
.y33{bottom:234.622896px;}
.y7c{bottom:236.799146px;}
.y6c{bottom:242.019112px;}
.y29{bottom:245.979112px;}
.y47{bottom:256.599124px;}
.y4{bottom:257.245628px;}
.y4c{bottom:258.399090px;}
.y36{bottom:259.659090px;}
.y11{bottom:259.659124px;}
.y54{bottom:260.019113px;}
.y37{bottom:262.719101px;}
.y61{bottom:265.155448px;}
.y72{bottom:266.679113px;}
.y32{bottom:267.022902px;}
.y7b{bottom:269.019124px;}
.y40{bottom:269.874441px;}
.y6b{bottom:270.999102px;}
.y1e{bottom:277.659091px;}
.y30{bottom:278.919091px;}
.y28{bottom:283.239113px;}
.y10{bottom:284.859113px;}
.y53{bottom:288.999102px;}
.y46{bottom:290.619114px;}
.y1c{bottom:291.699091px;}
.y2e{bottom:295.659091px;}
.y7a{bottom:297.279125px;}
.y6a{bottom:299.979091px;}
.y71{bottom:303.939103px;}
.y60{bottom:308.274539px;}
.yf{bottom:310.059103px;}
.y3{bottom:314.215618px;}
.y1d{bottom:314.919081px;}
.y3f{bottom:316.669718px;}
.y27{bottom:317.979092px;}
.y17{bottom:318.412948px;}
.y1b{bottom:320.679092px;}
.y45{bottom:324.639092px;}
.y69{bottom:328.959092px;}
.y79{bottom:329.499104px;}
.y2d{bottom:332.919081px;}
.ye{bottom:335.259104px;}
.y70{bottom:341.199093px;}
.y26{bottom:346.959093px;}
.y9{bottom:347.499082px;}
.y84{bottom:349.479104px;}
.y5f{bottom:351.393653px;}
.y1a{bottom:352.179082px;}
.y78{bottom:355.959104px;}
.y68{bottom:357.939093px;}
.y44{bottom:358.659093px;}
.yd{bottom:361.899105px;}
.y3e{bottom:363.464994px;}
.y2c{bottom:370.179082px;}
.y31{bottom:372.294555px;}
.y25{bottom:375.939094px;}
.y52{bottom:378.459094px;}
.y8{bottom:379.899083px;}
.y77{bottom:382.419101px;}
.y83{bottom:384.219100px;}
.y19{bottom:389.439094px;}
.y5e{bottom:389.959599px;}
.yc{bottom:392.859100px;}
.y24{bottom:407.439095px;}
.y2{bottom:410.247618px;}
.y43{bottom:410.679095px;}
.y7{bottom:412.299091px;}
.y51{bottom:413.199095px;}
.yb{bottom:418.059095px;}
.y5d{bottom:435.535387px;}
.y6{bottom:444.699096px;}
.y5c{bottom:474.101326px;}
.y1{bottom:497.727621px;}
.y5b{bottom:517.220413px;}
.y5{bottom:533.511613px;}
.y50{bottom:537.831613px;}
.y5a{bottom:554.604596px;}
.he{height:43.681641px;}
.hf{height:43.710938px;}
.h6{height:57.096004px;}
.hb{height:61.154297px;}
.hc{height:61.195312px;}
.h7{height:61.488000px;}
.ha{height:61.740000px;}
.h3{height:74.664000px;}
.h5{height:79.056003px;}
.h9{height:79.380003px;}
.h2{height:101.016001px;}
.hd{height:120.366004px;}
.h4{height:133.740004px;}
.h8{height:231.816016px;}
.h1{height:240.732008px;}
.h0{height:607.500000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x16{left:15.144685px;}
.x1{left:45.380907px;}
.x2{left:48.620078px;}
.x5{left:54.506686px;}
.x3{left:58.340520px;}
.x9{left:65.004925px;}
.xb{left:101.648627px;}
.x8{left:111.774055px;}
.x6{left:112.844447px;}
.x7{left:113.851896px;}
.xa{left:115.971621px;}
.x15{left:122.625004px;}
.x10{left:130.219508px;}
.xc{left:155.648628px;}
.x14{left:201.340514px;}
.x18{left:307.120089px;}
.x11{left:340.172268px;}
.xf{left:360.806097px;}
.x19{left:399.945804px;}
.x12{left:550.125051px;}
.xe{left:560.648650px;}
.x17{left:572.441958px;}
.x13{left:754.774640px;}
.xd{left:1032.667334px;}
.x4{left:1042.355868px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:95.975138pt;}
.ls1{letter-spacing:96.000379pt;}
.ws0{word-spacing:-64.512002pt;}
.ws9{word-spacing:-62.122671pt;}
.ws2{word-spacing:-35.840001pt;}
.wsa{word-spacing:-19.200001pt;}
.wsb{word-spacing:-14.933333pt;}
.ws1{word-spacing:0.000000pt;}
.ws7{word-spacing:76.799786pt;}
.ws3{word-spacing:80.958605pt;}
.ws5{word-spacing:81.033152pt;}
.ws8{word-spacing:81.035312pt;}
.ws6{word-spacing:81.035645pt;}
.ws4{word-spacing:81.037272pt;}
._b{margin-left:-16.917335pt;}
._31{margin-left:-12.672000pt;}
._3{margin-left:-11.520000pt;}
._c{margin-left:-9.760000pt;}
._16{margin-left:-8.640000pt;}
._6{margin-left:-7.296000pt;}
._a{margin-left:-6.208000pt;}
._2{margin-left:-4.608000pt;}
._1{margin-left:-2.880000pt;}
._0{margin-left:-1.728000pt;}
._4{width:1.114667pt;}
._7{width:2.144000pt;}
._5{width:3.264000pt;}
._32{width:4.266667pt;}
._9{width:5.180000pt;}
._8{width:95.999787pt;}
._d{width:101.184003pt;}
._26{width:245.800402pt;}
._24{width:265.235069pt;}
._28{width:325.693736pt;}
._1c{width:340.520403pt;}
._2b{width:343.507070pt;}
._2d{width:361.213736pt;}
._21{width:379.133736pt;}
._18{width:386.223722pt;}
._22{width:387.708905pt;}
._17{width:403.672042pt;}
._30{width:405.587070pt;}
._f{width:415.568378pt;}
._1d{width:418.567571pt;}
._2e{width:448.167572pt;}
._1a{width:462.994238pt;}
._23{width:492.514770pt;}
._1f{width:501.607572pt;}
._29{width:542.994239pt;}
._2f{width:552.973437pt;}
._1b{width:567.800103pt;}
._10{width:590.496061pt;}
._2a{width:591.480104pt;}
._13{width:602.666807pt;}
._20{width:606.413437pt;}
._11{width:611.029474pt;}
._12{width:615.061394pt;}
._e{width:632.573474pt;}
._15{width:668.970807pt;}
._14{width:751.850727pt;}
._19{width:902.019745pt;}
._1e{width:1074.187174pt;}
._2c{width:1258.847677pt;}
._27{width:1279.647677pt;}
._25{width:1285.567677pt;}
.fs9{font-size:53.333334pt;}
.fs5{font-size:69.333338pt;}
.fs6{font-size:74.666666pt;}
.fs2{font-size:90.666667pt;}
.fs4{font-size:96.000003pt;}
.fs1{font-size:122.666668pt;}
.fs8{font-size:144.000005pt;}
.fs3{font-size:160.000005pt;}
.fs7{font-size:277.333353pt;}
.fs0{font-size:288.000009pt;}
.y0{bottom:0.000000pt;}
.ya{bottom:16.121063pt;}
.y67{bottom:27.196627pt;}
.y66{bottom:45.596625pt;}
.y23{bottom:49.208074pt;}
.y82{bottom:61.048105pt;}
.y3d{bottom:71.608105pt;}
.y4b{bottom:75.128075pt;}
.y65{bottom:79.877446pt;}
.y22{bottom:82.328075pt;}
.y81{bottom:84.568125pt;}
.y59{bottom:87.608106pt;}
.y3c{bottom:97.368116pt;}
.y42{bottom:103.971116pt;}
.y76{bottom:104.568096pt;}
.y4a{bottom:105.368076pt;}
.y16{bottom:106.008076pt;}
.y80{bottom:109.688126pt;}
.y21{bottom:115.448076pt;}
.y58{bottom:115.608106pt;}
.y64{bottom:120.389258pt;}
.y35{bottom:122.153687pt;}
.y3b{bottom:125.368117pt;}
.y15{bottom:128.408097pt;}
.y86{bottom:129.776987pt;}
.y4f{bottom:130.328077pt;}
.y75{bottom:137.688097pt;}
.y6f{bottom:137.848097pt;}
.y7f{bottom:138.328137pt;}
.y57{bottom:146.488107pt;}
.y49{bottom:151.608108pt;}
.y14{bottom:152.088118pt;}
.y63{bottom:154.670109pt;}
.y3a{bottom:156.248118pt;}
.y7e{bottom:161.848158pt;}
.y4e{bottom:163.448078pt;}
.y6e{bottom:163.608108pt;}
.y20{bottom:164.568078pt;}
.y2b{bottom:164.888108pt;}
.y74{bottom:170.808078pt;}
.y56{bottom:172.248108pt;}
.y85{bottom:178.896988pt;}
.y34{bottom:179.753678pt;}
.y13{bottom:180.888119pt;}
.y2f{bottom:181.688079pt;}
.y39{bottom:182.008099pt;}
.y7d{bottom:185.368129pt;}
.y6d{bottom:189.368099pt;}
.y2a{bottom:190.648099pt;}
.y62{bottom:195.181920pt;}
.y4d{bottom:196.568079pt;}
.y1f{bottom:197.688079pt;}
.y48{bottom:197.848109pt;}
.y41{bottom:198.292591pt;}
.y55{bottom:200.248109pt;}
.y73{bottom:203.928099pt;}
.y38{bottom:207.768099pt;}
.y18{bottom:208.153739pt;}
.y12{bottom:208.408109pt;}
.y33{bottom:208.553685pt;}
.y7c{bottom:210.488129pt;}
.y6c{bottom:215.128100pt;}
.y29{bottom:218.648100pt;}
.y47{bottom:228.088110pt;}
.y4{bottom:228.662780pt;}
.y4c{bottom:229.688080pt;}
.y36{bottom:230.808080pt;}
.y11{bottom:230.808110pt;}
.y54{bottom:231.128100pt;}
.y37{bottom:233.528090pt;}
.y61{bottom:235.693731pt;}
.y72{bottom:237.048100pt;}
.y32{bottom:237.353690pt;}
.y7b{bottom:239.128110pt;}
.y40{bottom:239.888392pt;}
.y6b{bottom:240.888090pt;}
.y1e{bottom:246.808081pt;}
.y30{bottom:247.928081pt;}
.y28{bottom:251.768101pt;}
.y10{bottom:253.208101pt;}
.y53{bottom:256.888091pt;}
.y46{bottom:258.328101pt;}
.y1c{bottom:259.288081pt;}
.y2e{bottom:262.808081pt;}
.y7a{bottom:264.248111pt;}
.y6a{bottom:266.648081pt;}
.y71{bottom:270.168091pt;}
.y60{bottom:274.021812pt;}
.yf{bottom:275.608092pt;}
.y3{bottom:279.302772pt;}
.y1d{bottom:279.928072pt;}
.y3f{bottom:281.484194pt;}
.y27{bottom:282.648082pt;}
.y17{bottom:283.033732pt;}
.y1b{bottom:285.048082pt;}
.y45{bottom:288.568082pt;}
.y69{bottom:292.408082pt;}
.y79{bottom:292.888092pt;}
.y2d{bottom:295.928072pt;}
.ye{bottom:298.008092pt;}
.y70{bottom:303.288082pt;}
.y26{bottom:308.408083pt;}
.y9{bottom:308.888073pt;}
.y84{bottom:310.648093pt;}
.y5f{bottom:312.349914pt;}
.y1a{bottom:313.048073pt;}
.y78{bottom:316.408093pt;}
.y68{bottom:318.168083pt;}
.y44{bottom:318.808083pt;}
.yd{bottom:321.688093pt;}
.y3e{bottom:323.079995pt;}
.y2c{bottom:329.048073pt;}
.y31{bottom:330.928493pt;}
.y25{bottom:334.168083pt;}
.y52{bottom:336.408083pt;}
.y8{bottom:337.688074pt;}
.y77{bottom:339.928090pt;}
.y83{bottom:341.528089pt;}
.y19{bottom:346.168084pt;}
.y5e{bottom:346.630755pt;}
.yc{bottom:349.208089pt;}
.y24{bottom:362.168084pt;}
.y2{bottom:364.664549pt;}
.y43{bottom:365.048084pt;}
.y7{bottom:366.488080pt;}
.y51{bottom:367.288084pt;}
.yb{bottom:371.608085pt;}
.y5d{bottom:387.142566pt;}
.y6{bottom:395.288085pt;}
.y5c{bottom:421.423401pt;}
.y1{bottom:442.424552pt;}
.y5b{bottom:459.751478pt;}
.y5{bottom:474.232545pt;}
.y50{bottom:478.072545pt;}
.y5a{bottom:492.981863pt;}
.he{height:38.828125pt;}
.hf{height:38.854167pt;}
.h6{height:50.752004pt;}
.hb{height:54.359375pt;}
.hc{height:54.395833pt;}
.h7{height:54.656000pt;}
.ha{height:54.880000pt;}
.h3{height:66.368000pt;}
.h5{height:70.272002pt;}
.h9{height:70.560002pt;}
.h2{height:89.792001pt;}
.hd{height:106.992003pt;}
.h4{height:118.880004pt;}
.h8{height:206.058681pt;}
.h1{height:213.984007pt;}
.h0{height:540.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x16{left:13.461942pt;}
.x1{left:40.338584pt;}
.x2{left:43.217847pt;}
.x5{left:48.450388pt;}
.x3{left:51.858240pt;}
.x9{left:57.782156pt;}
.xb{left:90.354335pt;}
.x8{left:99.354715pt;}
.x6{left:100.306175pt;}
.x7{left:101.201685pt;}
.xa{left:103.085885pt;}
.x15{left:109.000003pt;}
.x10{left:115.750674pt;}
.xc{left:138.354336pt;}
.x14{left:178.969346pt;}
.x18{left:272.995635pt;}
.x11{left:302.375350pt;}
.xf{left:320.716530pt;}
.x19{left:355.507381pt;}
.x12{left:489.000046pt;}
.xe{left:498.354356pt;}
.x17{left:508.837296pt;}
.x13{left:670.910791pt;}
.xd{left:917.926519pt;}
.x4{left:926.538550pt;}
}




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