
    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_7430fd7d3ac10453babf087f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.966797;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_dd5e735a4ea6322aad8d91d7.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_84a91c95b3f1cd4986858630.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.941406;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_8bc9b18ff664eb956465453e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.090332;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_2c89e34ae9dbd542a12caadc.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.172852;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_d65b572275eec1ea14fbedb7.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.091797;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_aaa2cfddbbd0046980e80f4b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.914062;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_17a95c61500f6372f03a6bb2.woff2')format("woff");}.ff8{font-family:ff8;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;}
.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);}
.v3{vertical-align:-3.542226px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:28.087693px;}
.v2{vertical-align:33.087732px;}
.ls0{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.032002px;}
.lsb{letter-spacing:0.214299px;}
.ls8{letter-spacing:57.549050px;}
.lsf{letter-spacing:84.793330px;}
.lsa{letter-spacing:84.793348px;}
.lse{letter-spacing:84.839746px;}
.ls5{letter-spacing:84.839799px;}
.ls2{letter-spacing:97.711269px;}
.ls7{letter-spacing:108.553283px;}
.ls3{letter-spacing:108.553285px;}
.ls9{letter-spacing:108.553288px;}
.lsd{letter-spacing:108.553297px;}
.ls4{letter-spacing:108.553314px;}
.ls1{letter-spacing:108.599695px;}
.ls6{letter-spacing:108.599704px;}
.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:-131.638351px;}
.ws1{word-spacing:-46.669036px;}
.wsa{word-spacing:-27.770268px;}
.wsc{word-spacing:-27.539988px;}
.wsb{word-spacing:-22.362470px;}
.ws8{word-spacing:-19.293082px;}
.ws9{word-spacing:-14.908413px;}
.wsd{word-spacing:-11.878716px;}
.ws7{word-spacing:-10.669820px;}
.ws4{word-spacing:-2.185916px;}
.ws5{word-spacing:-0.721362px;}
.ws3{word-spacing:-0.285119px;}
.ws2{word-spacing:0.000000px;}
.ws6{word-spacing:78.394877px;}
.wse{word-spacing:453.079629px;}
._4{margin-left:-10.951218px;}
._b{margin-left:-9.890946px;}
._a{margin-left:-8.868178px;}
._0{margin-left:-7.380025px;}
._f{margin-left:-6.355433px;}
._3{margin-left:-5.313618px;}
._7{margin-left:-4.262747px;}
._8{margin-left:-3.217661px;}
._5{margin-left:-2.044085px;}
._1{margin-left:-1.033204px;}
._2{width:1.033204px;}
._6{width:2.645993px;}
._9{width:4.453178px;}
._e{width:13.292723px;}
._d{width:23.893155px;}
._c{width:52.952326px;}
.fc3{color:rgb(70,120,134);}
.fc1{color:rgb(32,33,34);}
.fc4{color:rgb(2,114,177);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:52.560690px;}
.fs4{font-size:63.360367px;}
.fs7{font-size:73.440459px;}
.fs2{font-size:95.039814px;}
.fs6{font-size:105.119906px;}
.fs9{font-size:110.159952px;}
.fs3{font-size:125.999675px;}
.fs8{font-size:136.799352px;}
.fs0{font-size:147.600504px;}
.fs1{font-size:168.480273px;}
.y0{bottom:0.000000px;}
.y6c{bottom:6.485266px;}
.y28{bottom:100.070352px;}
.y39{bottom:100.431258px;}
.y85{bottom:101.696989px;}
.y7f{bottom:109.622277px;}
.y6d{bottom:113.030843px;}
.y13{bottom:114.299148px;}
.y27{bottom:115.906105px;}
.y17{bottom:121.131169px;}
.y7c{bottom:125.626512px;}
.y69{bottom:139.317655px;}
.y7e{bottom:142.382111px;}
.y12{bottom:142.744659px;}
.y66{bottom:150.473385px;}
.y83{bottom:152.273377px;}
.y82{bottom:152.468243px;}
.y68{bottom:159.471882px;}
.y78{bottom:169.743091px;}
.y67{bottom:179.810998px;}
.y37{bottom:192.954786px;}
.y23{bottom:201.597833px;}
.y11{bottom:212.224812px;}
.y84{bottom:216.714315px;}
.y36{bottom:221.223763px;}
.y22{bottom:230.044832px;}
.y10{bottom:240.660198px;}
.y35{bottom:249.659525px;}
.y4{bottom:267.122680px;}
.yf{bottom:269.095584px;}
.y34{bottom:278.095286px;}
.y21{bottom:286.915533px;}
.ye{bottom:297.542583px;}
.y5b{bottom:307.616854px;}
.y16{bottom:308.332948px;}
.y20{bottom:315.362531px;}
.y72{bottom:320.399890px;}
.y54{bottom:321.120235px;}
.y15{bottom:324.172695px;}
.yd{bottom:325.977933px;}
.y3{bottom:327.773091px;}
.y5a{bottom:327.955971px;}
.y53{bottom:341.280043px;}
.y65{bottom:343.978486px;}
.y59{bottom:348.120266px;}
.y60{bottom:348.299575px;}
.y33{bottom:350.634693px;}
.yc{bottom:354.239303px;}
.y52{bottom:361.612484px;}
.y64{bottom:364.140538px;}
.y5f{bottom:368.452652px;}
.y58{bottom:371.697996px;}
.y71{bottom:372.601418px;}
.y32{bottom:379.083259px;}
.y51{bottom:381.774535px;}
.yb{bottom:382.686266px;}
.y63{bottom:384.293670px;}
.y5e{bottom:388.614758px;}
.y57{bottom:391.860048px;}
.y50{bottom:401.936587px;}
.y31{bottom:407.519020px;}
.y70{bottom:410.040861px;}
.y62{bottom:412.380662px;}
.y5d{bottom:416.692777px;}
.y56{bottom:419.938121px;}
.y1e{bottom:420.298475px;}
.y1f{bottom:421.563038px;}
.y4f{bottom:422.277947px;}
.y61{bottom:432.713104px;}
.y30{bottom:435.954781px;}
.y5c{bottom:437.034165px;}
.y55{bottom:440.279454px;}
.y2{bottom:446.755132px;}
.y4e{bottom:450.355993px;}
.ya{bottom:454.685421px;}
.y2f{bottom:464.223720px;}
.y2e{bottom:492.659481px;}
.y74{bottom:494.645273px;}
.y1{bottom:513.006002px;}
.y9{bottom:532.079320px;}
.y73{bottom:536.762101px;}
.y1c{bottom:549.005962px;}
.y1d{bottom:549.899268px;}
.y2d{bottom:565.198888px;}
.y4d{bottom:570.234637px;}
.y42{bottom:576.536960px;}
.y1b{bottom:577.441313px;}
.y48{bottom:580.320149px;}
.y77{bottom:583.921631px;}
.y4c{bottom:590.396716px;}
.y2c{bottom:593.634650px;}
.y47{bottom:600.661510px;}
.y41{bottom:604.615034px;}
.y1a{bottom:605.876699px;}
.y3c{bottom:610.558767px;}
.y4b{bottom:610.738076px;}
.y46{bottom:620.814615px;}
.y2b{bottom:622.083235px;}
.y40{bottom:624.777085px;}
.y76{bottom:626.226720px;}
.y3b{bottom:630.900127px;}
.y45{bottom:640.976666px;}
.y3f{bottom:644.939164px;}
.y2a{bottom:650.518997px;}
.y3a{bottom:658.978201px;}
.y44{bottom:661.318026px;}
.y19{bottom:665.995888px;}
.y75{bottom:668.343528px;}
.y3e{bottom:673.017224px;}
.y8{bottom:677.516208px;}
.y29{bottom:678.954758px;}
.y4a{bottom:679.140252px;}
.y25{bottom:679.685690px;}
.y43{bottom:689.396100px;}
.y3d{bottom:693.358584px;}
.y18{bottom:694.442851px;}
.y49{bottom:699.481612px;}
.y7{bottom:705.963189px;}
.y81{bottom:718.736478px;}
.y26{bottom:724.142800px;}
.y6f{bottom:744.839943px;}
.y7a{bottom:746.638186px;}
.y38{bottom:763.738853px;}
.y6{bottom:764.457882px;}
.y5{bottom:766.616039px;}
.y7d{bottom:767.161313px;}
.y24{bottom:768.785521px;}
.y80{bottom:771.303062px;}
.y6b{bottom:772.556022px;}
.y6e{bottom:773.275320px;}
.y14{bottom:773.820594px;}
.y7b{bottom:773.994619px;}
.y79{bottom:775.085158px;}
.y6a{bottom:779.041287px;}
.he{height:28.980651px;}
.ha{height:45.554309px;}
.h14{height:52.278382px;}
.hd{height:63.650789px;}
.hc{height:63.758367px;}
.h13{height:67.056900px;}
.h6{height:69.470020px;}
.h4{height:71.465485px;}
.h7{height:82.370932px;}
.h9{height:82.510151px;}
.hf{height:83.094887px;}
.h15{height:90.987120px;}
.hb{height:91.107340px;}
.h8{height:94.529346px;}
.h5{height:94.745849px;}
.h11{height:95.475544px;}
.h12{height:109.203820px;}
.h2{height:110.988660px;}
.h16{height:117.640034px;}
.h10{height:118.563891px;}
.h3{height:123.151840px;}
.h0{height:892.980015px;}
.h1{height:893.250000px;}
.w3{width:11.694372px;}
.w2{width:433.085483px;}
.w0{width:1262.880060px;}
.w1{width:1263.000000px;}
.x0{left:0.000000px;}
.x1a{left:4.501398px;}
.xd{left:6.844909px;}
.x1b{left:9.720391px;}
.x6{left:14.581017px;}
.x1d{left:20.163476px;}
.x5{left:23.574329px;}
.x59{left:29.340296px;}
.x56{left:31.138534px;}
.x16{left:35.825555px;}
.x45{left:39.236408px;}
.x55{left:47.705531px;}
.x1c{left:53.458195px;}
.x5a{left:55.617781px;}
.x19{left:58.135318px;}
.x18{left:59.585510px;}
.x54{left:60.838474px;}
.x14{left:66.778466px;}
.x57{left:70.200917px;}
.x4c{left:72.359708px;}
.xf{left:76.140904px;}
.x17{left:79.923008px;}
.x3c{left:87.838093px;}
.x1f{left:92.159175px;}
.x4b{left:102.414337px;}
.x40{left:103.858365px;}
.x9{left:107.279442px;}
.x3e{left:112.500528px;}
.x1e{left:117.538804px;}
.xa{left:120.423989px;}
.x53{left:148.859357px;}
.x3f{left:154.259041px;}
.x3d{left:156.240276px;}
.x2{left:158.212892px;}
.x1{left:176.212525px;}
.x15{left:195.114691px;}
.x52{left:198.181875px;}
.x12{left:222.656754px;}
.x48{left:225.000270px;}
.xb{left:226.798512px;}
.x4f{left:282.594161px;}
.x3{left:286.202587px;}
.x4e{left:300.963123px;}
.x8{left:304.377986px;}
.x13{left:306.176246px;}
.x49{left:314.812194px;}
.x4d{left:320.394409px;}
.x58{left:326.885002px;}
.x4a{left:334.617375px;}
.x44{left:363.247517px;}
.x47{left:377.282095px;}
.x3a{left:386.458897px;}
.xc{left:387.723481px;}
.x25{left:391.138576px;}
.x20{left:395.459664px;}
.x3b{left:398.346363px;}
.x23{left:400.318652px;}
.x22{left:424.981074px;}
.x21{left:445.143152px;}
.x24{left:455.766564px;}
.x46{left:472.321891px;}
.x51{left:494.818828px;}
.x50{left:545.393953px;}
.x5b{left:567.909046px;}
.x4{left:572.405173px;}
.x11{left:601.922720px;}
.x10{left:668.890487px;}
.x38{left:682.559493px;}
.x39{left:694.449147px;}
.x29{left:705.789768px;}
.x27{left:707.762057px;}
.x2a{left:716.760553px;}
.x28{left:734.046001px;}
.x26{left:739.083176px;}
.x2b{left:742.321735px;}
.x42{left:907.931465px;}
.x41{left:922.505063px;}
.x7{left:924.838528px;}
.x33{left:968.226053px;}
.x32{left:978.126621px;}
.x35{left:981.370816px;}
.x36{left:992.890690px;}
.x37{left:999.552754px;}
.x2f{left:1004.231311px;}
.x43{left:1006.567744px;}
.x34{left:1009.268486px;}
.xe{left:1010.535750px;}
.x2e{left:1012.506990px;}
.x2c{left:1014.484915px;}
.x31{left:1018.804854px;}
.x2d{left:1029.243404px;}
.x30{left:1040.583915px;}
@media print{
.v3{vertical-align:-3.148645pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.966838pt;}
.v2{vertical-align:29.411317pt;}
.ls0{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.028446pt;}
.lsb{letter-spacing:0.190488pt;}
.ls8{letter-spacing:51.154711pt;}
.lsf{letter-spacing:75.371849pt;}
.lsa{letter-spacing:75.371865pt;}
.lse{letter-spacing:75.413107pt;}
.ls5{letter-spacing:75.413155pt;}
.ls2{letter-spacing:86.854462pt;}
.ls7{letter-spacing:96.491807pt;}
.ls3{letter-spacing:96.491809pt;}
.ls9{letter-spacing:96.491811pt;}
.lsd{letter-spacing:96.491819pt;}
.ls4{letter-spacing:96.491835pt;}
.ls1{letter-spacing:96.533062pt;}
.ls6{letter-spacing:96.533070pt;}
.ws0{word-spacing:-117.011867pt;}
.ws1{word-spacing:-41.483587pt;}
.wsa{word-spacing:-24.684683pt;}
.wsc{word-spacing:-24.479989pt;}
.wsb{word-spacing:-19.877751pt;}
.ws8{word-spacing:-17.149406pt;}
.ws9{word-spacing:-13.251923pt;}
.wsd{word-spacing:-10.558859pt;}
.ws7{word-spacing:-9.484285pt;}
.ws4{word-spacing:-1.943036pt;}
.ws5{word-spacing:-0.641211pt;}
.ws3{word-spacing:-0.253440pt;}
.ws2{word-spacing:0.000000pt;}
.ws6{word-spacing:69.684335pt;}
.wse{word-spacing:402.737448pt;}
._4{margin-left:-9.734416pt;}
._b{margin-left:-8.791952pt;}
._a{margin-left:-7.882825pt;}
._0{margin-left:-6.560022pt;}
._f{margin-left:-5.649274pt;}
._3{margin-left:-4.723216pt;}
._7{margin-left:-3.789108pt;}
._8{margin-left:-2.860143pt;}
._5{margin-left:-1.816965pt;}
._1{margin-left:-0.918403pt;}
._2{width:0.918403pt;}
._6{width:2.351994pt;}
._9{width:3.958381pt;}
._e{width:11.815754pt;}
._d{width:21.238360pt;}
._c{width:47.068734pt;}
.fs5{font-size:46.720613pt;}
.fs4{font-size:56.320326pt;}
.fs7{font-size:65.280408pt;}
.fs2{font-size:84.479834pt;}
.fs6{font-size:93.439916pt;}
.fs9{font-size:97.919957pt;}
.fs3{font-size:111.999711pt;}
.fs8{font-size:121.599424pt;}
.fs0{font-size:131.200448pt;}
.fs1{font-size:149.760243pt;}
.y0{bottom:0.000000pt;}
.y6c{bottom:5.764680pt;}
.y28{bottom:88.951424pt;}
.y39{bottom:89.272229pt;}
.y85{bottom:90.397324pt;}
.y7f{bottom:97.442024pt;}
.y6d{bottom:100.471860pt;}
.y13{bottom:101.599242pt;}
.y27{bottom:103.027649pt;}
.y17{bottom:107.672150pt;}
.y7c{bottom:111.668011pt;}
.y69{bottom:123.837915pt;}
.y7e{bottom:126.561877pt;}
.y12{bottom:126.884142pt;}
.y66{bottom:133.754120pt;}
.y83{bottom:135.354113pt;}
.y82{bottom:135.527327pt;}
.y68{bottom:141.752784pt;}
.y78{bottom:150.882747pt;}
.y67{bottom:159.831999pt;}
.y37{bottom:171.515365pt;}
.y23{bottom:179.198074pt;}
.y11{bottom:188.644278pt;}
.y84{bottom:192.634947pt;}
.y36{bottom:196.643345pt;}
.y22{bottom:204.484295pt;}
.y10{bottom:213.920176pt;}
.y35{bottom:221.919577pt;}
.y4{bottom:237.442382pt;}
.yf{bottom:239.196075pt;}
.y34{bottom:247.195809pt;}
.y21{bottom:255.036029pt;}
.ye{bottom:264.482296pt;}
.y5b{bottom:273.437204pt;}
.y16{bottom:274.073732pt;}
.y20{bottom:280.322250pt;}
.y72{bottom:284.799902pt;}
.y54{bottom:285.440209pt;}
.y15{bottom:288.153507pt;}
.yd{bottom:289.758163pt;}
.y3{bottom:291.353859pt;}
.y5a{bottom:291.516419pt;}
.y53{bottom:303.360038pt;}
.y65{bottom:305.758654pt;}
.y59{bottom:309.440236pt;}
.y60{bottom:309.599622pt;}
.y33{bottom:311.675283pt;}
.yc{bottom:314.879381pt;}
.y52{bottom:321.433319pt;}
.y64{bottom:323.680478pt;}
.y5f{bottom:327.513469pt;}
.y58{bottom:330.398219pt;}
.y71{bottom:331.201260pt;}
.y32{bottom:336.962897pt;}
.y51{bottom:339.355142pt;}
.yb{bottom:340.165570pt;}
.y63{bottom:341.594373pt;}
.y5e{bottom:345.435341pt;}
.y57{bottom:348.320042pt;}
.y50{bottom:357.276966pt;}
.y31{bottom:362.239129pt;}
.y70{bottom:364.480766pt;}
.y62{bottom:366.560589pt;}
.y5d{bottom:370.393580pt;}
.y56{bottom:373.278330pt;}
.y1e{bottom:373.598644pt;}
.y1f{bottom:374.722701pt;}
.y4f{bottom:375.358175pt;}
.y61{bottom:384.633870pt;}
.y30{bottom:387.515361pt;}
.y5c{bottom:388.474813pt;}
.y55{bottom:391.359515pt;}
.y2{bottom:397.115673pt;}
.y4e{bottom:400.316438pt;}
.ya{bottom:404.164819pt;}
.y2f{bottom:412.643307pt;}
.y2e{bottom:437.919539pt;}
.y74{bottom:439.684687pt;}
.y1{bottom:456.005335pt;}
.y9{bottom:472.959395pt;}
.y73{bottom:477.121868pt;}
.y1c{bottom:488.005300pt;}
.y1d{bottom:488.799349pt;}
.y2d{bottom:502.399012pt;}
.y4d{bottom:506.875233pt;}
.y42{bottom:512.477298pt;}
.y1b{bottom:513.281167pt;}
.y48{bottom:515.840133pt;}
.y77{bottom:519.041450pt;}
.y4c{bottom:524.797080pt;}
.y2c{bottom:527.675244pt;}
.y47{bottom:533.921342pt;}
.y41{bottom:537.435586pt;}
.y1a{bottom:538.557065pt;}
.y3c{bottom:542.718904pt;}
.y4b{bottom:542.878290pt;}
.y46{bottom:551.835213pt;}
.y2b{bottom:552.962876pt;}
.y40{bottom:555.357409pt;}
.y76{bottom:556.645974pt;}
.y3b{bottom:560.800113pt;}
.y45{bottom:569.757036pt;}
.y3f{bottom:573.279257pt;}
.y2a{bottom:578.239108pt;}
.y3a{bottom:585.758400pt;}
.y44{bottom:587.838246pt;}
.y19{bottom:591.996344pt;}
.y75{bottom:594.083136pt;}
.y3e{bottom:598.237532pt;}
.y8{bottom:602.236629pt;}
.y29{bottom:603.515340pt;}
.y4a{bottom:603.680224pt;}
.y25{bottom:604.165058pt;}
.y43{bottom:612.796533pt;}
.y3d{bottom:616.318741pt;}
.y18{bottom:617.282534pt;}
.y49{bottom:621.761433pt;}
.y7{bottom:627.522835pt;}
.y81{bottom:638.876870pt;}
.y26{bottom:643.682489pt;}
.y6f{bottom:662.079950pt;}
.y7a{bottom:663.678387pt;}
.y38{bottom:678.878981pt;}
.y6{bottom:679.518118pt;}
.y5{bottom:681.436479pt;}
.y7d{bottom:681.921167pt;}
.y24{bottom:683.364908pt;}
.y80{bottom:685.602722pt;}
.y6b{bottom:686.716464pt;}
.y6e{bottom:687.355840pt;}
.y14{bottom:687.840528pt;}
.y7b{bottom:687.995217pt;}
.y79{bottom:688.964585pt;}
.y6a{bottom:692.481144pt;}
.he{height:25.760579pt;}
.ha{height:40.492719pt;}
.h14{height:46.469673pt;}
.hd{height:56.578479pt;}
.hc{height:56.674104pt;}
.h13{height:59.606133pt;}
.h6{height:61.751129pt;}
.h4{height:63.524875pt;}
.h7{height:73.218606pt;}
.h9{height:73.342356pt;}
.hf{height:73.862122pt;}
.h15{height:80.877440pt;}
.hb{height:80.984302pt;}
.h8{height:84.026085pt;}
.h5{height:84.218533pt;}
.h11{height:84.867150pt;}
.h12{height:97.070062pt;}
.h2{height:98.656587pt;}
.h16{height:104.568919pt;}
.h10{height:105.390126pt;}
.h3{height:109.468302pt;}
.h0{height:793.760013pt;}
.h1{height:794.000000pt;}
.w3{width:10.394997pt;}
.w2{width:384.964874pt;}
.w0{width:1122.560053pt;}
.w1{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x1a{left:4.001242pt;}
.xd{left:6.084363pt;}
.x1b{left:8.640348pt;}
.x6{left:12.960904pt;}
.x1d{left:17.923089pt;}
.x5{left:20.954959pt;}
.x59{left:26.080263pt;}
.x56{left:27.678696pt;}
.x16{left:31.844937pt;}
.x45{left:34.876807pt;}
.x55{left:42.404917pt;}
.x1c{left:47.518396pt;}
.x5a{left:49.438028pt;}
.x19{left:51.675838pt;}
.x18{left:52.964898pt;}
.x54{left:54.078644pt;}
.x14{left:59.358636pt;}
.x57{left:62.400815pt;}
.x4c{left:64.319740pt;}
.xf{left:67.680803pt;}
.x17{left:71.042674pt;}
.x3c{left:78.078305pt;}
.x1f{left:81.919266pt;}
.x4b{left:91.034966pt;}
.x40{left:92.318547pt;}
.x9{left:95.359504pt;}
.x3e{left:100.000470pt;}
.x1e{left:104.478937pt;}
.xa{left:107.043546pt;}
.x53{left:132.319428pt;}
.x3f{left:137.119147pt;}
.x3d{left:138.880245pt;}
.x2{left:140.633682pt;}
.x1{left:156.633355pt;}
.x15{left:173.435281pt;}
.x52{left:176.161667pt;}
.x12{left:197.917114pt;}
.x48{left:200.000240pt;}
.xb{left:201.598677pt;}
.x4f{left:251.194809pt;}
.x3{left:254.402299pt;}
.x4e{left:267.522776pt;}
.x8{left:270.558210pt;}
.x13{left:272.156663pt;}
.x49{left:279.833062pt;}
.x4d{left:284.795031pt;}
.x58{left:290.564447pt;}
.x4a{left:297.437667pt;}
.x44{left:322.886682pt;}
.x47{left:335.361862pt;}
.x3a{left:343.519020pt;}
.xc{left:344.643094pt;}
.x25{left:347.678734pt;}
.x20{left:351.519702pt;}
.x3b{left:354.085656pt;}
.x23{left:355.838802pt;}
.x22{left:377.760954pt;}
.x21{left:395.682802pt;}
.x24{left:405.125835pt;}
.x46{left:419.841681pt;}
.x51{left:439.838958pt;}
.x50{left:484.794625pt;}
.x5b{left:504.808041pt;}
.x4{left:508.804598pt;}
.x11{left:535.042417pt;}
.x10{left:594.569321pt;}
.x38{left:606.719549pt;}
.x39{left:617.288131pt;}
.x29{left:627.368683pt;}
.x27{left:629.121828pt;}
.x2a{left:637.120492pt;}
.x28{left:652.485334pt;}
.x26{left:656.962823pt;}
.x2b{left:659.841543pt;}
.x42{left:807.050191pt;}
.x41{left:820.004500pt;}
.x7{left:822.078692pt;}
.x33{left:860.645380pt;}
.x32{left:869.445885pt;}
.x35{left:872.329614pt;}
.x36{left:882.569503pt;}
.x37{left:888.491336pt;}
.x2f{left:892.650054pt;}
.x43{left:894.726884pt;}
.x34{left:897.127543pt;}
.xe{left:898.254000pt;}
.x2e{left:900.006214pt;}
.x2c{left:901.764369pt;}
.x31{left:905.604315pt;}
.x2d{left:914.883025pt;}
.x30{left:924.963480pt;}
}




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