
    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_9e84e92f87ea257738ab4df0.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.873535;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_5ae1c44591baebae169aa8c3.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.338867;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_5854a66a108989853c2ff5f9.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_47822ade8956c19793654c1f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.994000;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_1e3d2909685e66c8995b5ff9.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.987000;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_a335e71686790cbf61137997.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.000000;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_b4869825a232789ebf323161.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.987000;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_dc99d72175f15ccbe29e7bc5.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.053000;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_0fc681ea59e66915e1c9dfdd.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.764000;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_7eb70ddf0c26ae8842b5b756.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.006000;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:ffb;src:url('chunks/assets/font_e596b45cf86ac343111248a4.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.004000;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;}
.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:-18.984000px;}
.ws4{word-spacing:-15.757321px;}
.ws3{word-spacing:-14.262627px;}
.ws2{word-spacing:-13.335936px;}
.ws1{word-spacing:0.000000px;}
._d{margin-left:-8.720754px;}
._2{margin-left:-7.353600px;}
._9{margin-left:-6.232919px;}
._3{margin-left:-4.284000px;}
._8{margin-left:-3.060936px;}
._1{margin-left:-1.996800px;}
._7{width:1.298491px;}
._4{width:2.501400px;}
._6{width:4.485018px;}
._0{width:5.587200px;}
._5{width:6.719385px;}
._b{width:8.207044px;}
._c{width:9.900590px;}
._a{width:72.134128px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs3{font-size:47.999996px;}
.fs4{font-size:49.523009px;}
.fs8{font-size:57.626775px;}
.fs7{font-size:58.527192px;}
.fs2{font-size:66.000000px;}
.fs9{font-size:72.033467px;}
.fs1{font-size:84.000000px;}
.fsc{font-size:84.234131px;}
.fs6{font-size:85.539742px;}
.fsa{font-size:90.041834px;}
.fs0{font-size:96.000000px;}
.fs5{font-size:103.548109px;}
.fsb{font-size:121.556476px;}
.y0{bottom:0.000000px;}
.y1d{bottom:3.000001px;}
.y1f{bottom:3.000037px;}
.yc{bottom:8.040000px;}
.y1e{bottom:22.380034px;}
.y56{bottom:34.891212px;}
.y34{bottom:41.644340px;}
.yd1{bottom:42.082767px;}
.y57{bottom:42.082942px;}
.y20{bottom:42.083005px;}
.y35{bottom:42.083030px;}
.y77{bottom:42.083118px;}
.y55{bottom:63.029285px;}
.y76{bottom:67.531384px;}
.y33{bottom:69.782413px;}
.y15{bottom:77.715000px;}
.y97{bottom:82.163178px;}
.yb5{bottom:85.539738px;}
.y54{bottom:91.167358px;}
.y1a{bottom:91.590000px;}
.y75{bottom:95.669457px;}
.y32{bottom:99.046009px;}
.y14{bottom:99.795000px;}
.y96{bottom:110.301251px;}
.y19{bottom:113.670000px;}
.yb4{bottom:113.677811px;}
.y53{bottom:119.305431px;}
.y74{bottom:124.933053px;}
.y10{bottom:133.935000px;}
.y18{bottom:135.750000px;}
.y95{bottom:138.439324px;}
.yb3{bottom:141.815884px;}
.y31{bottom:146.317972px;}
.y73{bottom:153.071126px;}
.y16{bottom:154.950000px;}
.yf{bottom:156.015000px;}
.y17{bottom:157.830000px;}
.y52{bottom:165.451871px;}
.yb2{bottom:171.079480px;}
.y30{bottom:174.456045px;}
.y94{bottom:185.711287px;}
.y51{bottom:191.338899px;}
.y72{bottom:200.343089px;}
.y2f{bottom:202.594118px;}
.y93{bottom:213.849360px;}
.ye7{bottom:216.100506px;}
.yb1{bottom:217.225920px;}
.y71{bottom:228.481162px;}
.y2e{bottom:231.857714px;}
.yd0{bottom:235.234278px;}
.yb0{bottom:243.112947px;}
.y92{bottom:243.112956px;}
.y50{bottom:255.493705px;}
.y70{bottom:256.619235px;}
.ydd{bottom:261.121252px;}
.ycf{bottom:263.372351px;}
.y91{bottom:271.251029px;}
.y4f{bottom:284.757301px;}
.y6f{bottom:285.882831px;}
.ydc{bottom:287.008279px;}
.yce{bottom:291.510424px;}
.y2d{bottom:296.012521px;}
.y90{bottom:299.389102px;}
.yaf{bottom:307.267754px;}
.y4e{bottom:312.895374px;}
.y2c{bottom:317.397456px;}
.ycd{bottom:319.648497px;}
.y8f{bottom:327.527175px;}
.yae{bottom:335.405827px;}
.y2b{bottom:337.656869px;}
.ydb{bottom:344.409948px;}
.ya{bottom:344.680500px;}
.ycc{bottom:348.912093px;}
.y4d{bottom:360.167337px;}
.yad{bottom:363.543900px;}
.y6e{bottom:364.669436px;}
.ye6{bottom:374.799239px;}
.y8e{bottom:375.924661px;}
.ycb{bottom:377.050167px;}
.yd{bottom:386.490000px;}
.y4c{bottom:388.305410px;}
.yac{bottom:391.681973px;}
.y9{bottom:395.689500px;}
.y6d{bottom:399.560647px;}
.y8d{bottom:404.062734px;}
.yca{bottom:405.188240px;}
.ye5{bottom:408.564926px;}
.y4b{bottom:416.443484px;}
.y6c{bottom:434.451858px;}
.yb{bottom:434.850000px;}
.yab{bottom:438.953936px;}
.y8{bottom:446.698500px;}
.y8c{bottom:450.209174px;}
.yc9{bottom:452.460202px;}
.y4a{bottom:463.715446px;}
.yaa{bottom:468.217532px;}
.y8b{bottom:476.096201px;}
.y11{bottom:488.055000px;}
.y49{bottom:492.979042px;}
.ya9{bottom:496.355605px;}
.y7{bottom:497.707500px;}
.yc8{bottom:499.732165px;}
.y6b{bottom:508.736371px;}
.yc7{bottom:527.870238px;}
.yda{bottom:533.497800px;}
.y6a{bottom:537.999967px;}
.y12{bottom:538.230000px;}
.y48{bottom:540.251005px;}
.y8a{bottom:540.251008px;}
.y6{bottom:548.716500px;}
.y69{bottom:566.138040px;}
.y47{bottom:568.389078px;}
.y89{bottom:568.389081px;}
.yc6{bottom:575.142201px;}
.ya8{bottom:575.142210px;}
.y1b{bottom:589.605000px;}
.yd9{bottom:589.773946px;}
.y68{bottom:594.276113px;}
.y46{bottom:596.527152px;}
.y88{bottom:596.527154px;}
.y5{bottom:599.725500px;}
.yc5{bottom:604.405797px;}
.ya7{bottom:610.033421px;}
.yea{bottom:611.159053px;}
.y45{bottom:625.790748px;}
.y87{bottom:625.790750px;}
.ye9{bottom:630.292943px;}
.ye{bottom:631.920000px;}
.yc4{bottom:632.543871px;}
.y67{bottom:641.548076px;}
.ya6{bottom:644.924631px;}
.yc3{bottom:660.681944px;}
.y66{bottom:669.686149px;}
.y44{bottom:671.937188px;}
.y86{bottom:673.062713px;}
.ye8{bottom:692.196703px;}
.y43{bottom:697.824215px;}
.y65{bottom:698.949745px;}
.y85{bottom:701.200786px;}
.yc2{bottom:707.953906px;}
.ya5{bottom:720.334667px;}
.y64{bottom:727.087818px;}
.y84{bottom:729.338859px;}
.yc1{bottom:737.217503px;}
.ya4{bottom:748.472741px;}
.y83{bottom:757.476933px;}
.y2a{bottom:759.727966px;}
.y42{bottom:761.979022px;}
.yc0{bottom:765.355576px;}
.y63{bottom:773.234258px;}
.ya3{bottom:776.610814px;}
.y4{bottom:778.225500px;}
.y29{bottom:785.614993px;}
.y82{bottom:786.740529px;}
.yd8{bottom:790.117027px;}
.y41{bottom:790.117095px;}
.ybf{bottom:793.493649px;}
.ya2{bottom:804.748887px;}
.y13{bottom:815.670000px;}
.yd7{bottom:816.004054px;}
.y28{bottom:825.008295px;}
.ya1{bottom:834.012483px;}
.y81{bottom:834.012492px;}
.y40{bottom:837.389058px;}
.y62{bottom:837.389065px;}
.yd6{bottom:841.891081px;}
.y27{bottom:848.644277px;}
.y80{bottom:862.150565px;}
.ye4{bottom:864.401711px;}
.y3f{bottom:865.527131px;}
.y61{bottom:865.527138px;}
.ybe{bottom:872.280254px;}
.y26{bottom:873.405781px;}
.ya0{bottom:881.284446px;}
.y7f{bottom:890.288638px;}
.y3e{bottom:893.665204px;}
.y60{bottom:893.665211px;}
.y25{bottom:897.041763px;}
.yd5{bottom:899.292750px;}
.y3{bottom:905.716500px;}
.ybd{bottom:907.171464px;}
.y9f{bottom:909.422519px;}
.ye3{bottom:916.175766px;}
.y24{bottom:921.803267px;}
.y5f{bottom:922.928807px;}
.y9e{bottom:937.560592px;}
.y7e{bottom:937.560601px;}
.y3d{bottom:940.937167px;}
.ybc{bottom:942.062675px;}
.y23{bottom:954.443432px;}
.y2{bottom:964.228500px;}
.y9d{bottom:965.698665px;}
.y7d{bottom:965.698674px;}
.ye2{bottom:967.949820px;}
.y3c{bottom:970.200763px;}
.y5e{bottom:970.200770px;}
.y22{bottom:984.832551px;}
.y1{bottom:989.716500px;}
.ye1{bottom:993.836847px;}
.y7c{bottom:994.962270px;}
.y3b{bottom:998.338836px;}
.y5d{bottom:998.338843px;}
.y9c{bottom:1012.970628px;}
.ybb{bottom:1017.472711px;}
.ye0{bottom:1018.598352px;}
.y21{bottom:1020.849284px;}
.y3a{bottom:1026.476909px;}
.y9b{bottom:1038.857655px;}
.y7b{bottom:1041.108710px;}
.yba{bottom:1045.610784px;}
.y5c{bottom:1045.610806px;}
.y7a{bottom:1066.995737px;}
.yb9{bottom:1073.748857px;}
.y39{bottom:1073.748872px;}
.y5b{bottom:1073.748879px;}
.yd4{bottom:1077.125373px;}
.yb8{bottom:1101.886930px;}
.y9a{bottom:1101.886939px;}
.y38{bottom:1101.886945px;}
.y5a{bottom:1101.886952px;}
.yd3{bottom:1103.012400px;}
.ydf{bottom:1103.012571px;}
.yb7{bottom:1131.150526px;}
.y99{bottom:1131.150535px;}
.y37{bottom:1131.150541px;}
.y79{bottom:1131.150544px;}
.y59{bottom:1131.150548px;}
.yb6{bottom:1159.288599px;}
.y98{bottom:1159.288608px;}
.y36{bottom:1159.288614px;}
.y78{bottom:1159.288617px;}
.y58{bottom:1159.288621px;}
.yd2{bottom:1160.414069px;}
.yde{bottom:1160.414240px;}
.y1c{bottom:1226.879972px;}
.hc{height:13.499999px;}
.ha{height:13.500001px;}
.h4{height:33.000000px;}
.hb{height:34.945310px;}
.he{height:39.024131px;}
.h12{height:45.409898px;}
.h11{height:46.119427px;}
.h16{height:53.736967px;}
.h13{height:57.482707px;}
.h19{height:57.824866px;}
.h3{height:58.406250px;}
.h17{height:63.091364px;}
.h10{height:63.812648px;}
.h2{height:66.750000px;}
.h14{height:67.441334px;}
.h5{height:67.740234px;}
.hf{height:77.557534px;}
.h18{height:84.513265px;}
.h15{height:90.681131px;}
.h7{height:115.215000px;}
.h6{height:171.435000px;}
.h8{height:173.250000px;}
.hd{height:1177.296971px;}
.h0{height:1262.835000px;}
.h9{height:1262.879970px;}
.h1{height:1263.000000px;}
.we{width:61.439987px;}
.wb{width:136.499992px;}
.w8{width:301.170000px;}
.w6{width:366.465000px;}
.w2{width:494.625000px;}
.w5{width:552.660000px;}
.w3{width:553.275000px;}
.w4{width:597.405000px;}
.w7{width:651.810000px;}
.wc{width:755.939948px;}
.wf{width:806.999906px;}
.wd{width:830.999953px;}
.w9{width:892.439940px;}
.wa{width:892.500000px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:3.000000px;}
.xe{left:5.109353px;}
.x11{left:22.862184px;}
.x10{left:28.138073px;}
.xa{left:39.679684px;}
.xf{left:43.499994px;}
.x12{left:81.600412px;}
.xc{left:104.953113px;}
.x22{left:111.637805px;}
.x14{left:116.526795px;}
.x20{left:123.526141px;}
.x9{left:126.345000px;}
.x1{left:127.559100px;}
.xb{left:136.499992px;}
.x18{left:137.894145px;}
.x17{left:140.092432px;}
.x1d{left:161.301504px;}
.x23{left:166.348771px;}
.x5{left:174.105000px;}
.x1b{left:177.797450px;}
.x21{left:183.284374px;}
.x2{left:191.040000px;}
.x7{left:200.715000px;}
.x8{left:217.320000px;}
.x4{left:220.050000px;}
.x6{left:222.480000px;}
.x15{left:226.194935px;}
.x25{left:254.227491px;}
.x16{left:265.605830px;}
.x1e{left:267.944801px;}
.x26{left:270.442055px;}
.x1a{left:298.404266px;}
.x13{left:314.249524px;}
.x24{left:317.766783px;}
.x1c{left:324.115430px;}
.x1f{left:329.444083px;}
.x19{left:361.978730px;}
.xd{left:830.999953px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:-16.874667pt;}
.ws4{word-spacing:-14.006508pt;}
.ws3{word-spacing:-12.677890pt;}
.ws2{word-spacing:-11.854166pt;}
.ws1{word-spacing:0.000000pt;}
._d{margin-left:-7.751781pt;}
._2{margin-left:-6.536533pt;}
._9{margin-left:-5.540372pt;}
._3{margin-left:-3.808000pt;}
._8{margin-left:-2.720832pt;}
._1{margin-left:-1.774933pt;}
._7{width:1.154214pt;}
._4{width:2.223466pt;}
._6{width:3.986683pt;}
._0{width:4.966400pt;}
._5{width:5.972786pt;}
._b{width:7.295151pt;}
._c{width:8.800524pt;}
._a{width:64.119225pt;}
.fs3{font-size:42.666663pt;}
.fs4{font-size:44.020452pt;}
.fs8{font-size:51.223800pt;}
.fs7{font-size:52.024171pt;}
.fs2{font-size:58.666667pt;}
.fs9{font-size:64.029749pt;}
.fs1{font-size:74.666667pt;}
.fsc{font-size:74.874783pt;}
.fs6{font-size:76.035326pt;}
.fsa{font-size:80.037186pt;}
.fs0{font-size:85.333333pt;}
.fs5{font-size:92.042764pt;}
.fsb{font-size:108.050201pt;}
.y0{bottom:0.000000pt;}
.y1d{bottom:2.666668pt;}
.y1f{bottom:2.666700pt;}
.yc{bottom:7.146667pt;}
.y1e{bottom:19.893363pt;}
.y56{bottom:31.014411pt;}
.y34{bottom:37.017191pt;}
.yd1{bottom:37.406904pt;}
.y57{bottom:37.407060pt;}
.y20{bottom:37.407116pt;}
.y35{bottom:37.407138pt;}
.y77{bottom:37.407216pt;}
.y55{bottom:56.026031pt;}
.y76{bottom:60.027897pt;}
.y33{bottom:62.028811pt;}
.y15{bottom:69.080000pt;}
.y97{bottom:73.033936pt;}
.yb5{bottom:76.035322pt;}
.y54{bottom:81.037652pt;}
.y1a{bottom:81.413333pt;}
.y75{bottom:85.039517pt;}
.y32{bottom:88.040897pt;}
.y14{bottom:88.706667pt;}
.y96{bottom:98.045556pt;}
.y19{bottom:101.040000pt;}
.yb4{bottom:101.046943pt;}
.y53{bottom:106.049272pt;}
.y74{bottom:111.051603pt;}
.y10{bottom:119.053333pt;}
.y18{bottom:120.666667pt;}
.y95{bottom:123.057177pt;}
.yb3{bottom:126.058563pt;}
.y31{bottom:130.060419pt;}
.y73{bottom:136.063223pt;}
.y16{bottom:137.733333pt;}
.yf{bottom:138.680000pt;}
.y17{bottom:140.293333pt;}
.y52{bottom:147.068330pt;}
.yb2{bottom:152.070649pt;}
.y30{bottom:155.072040pt;}
.y94{bottom:165.076699pt;}
.y51{bottom:170.079021pt;}
.y72{bottom:178.082746pt;}
.y2f{bottom:180.083660pt;}
.y93{bottom:190.088320pt;}
.ye7{bottom:192.089339pt;}
.yb1{bottom:193.089707pt;}
.y71{bottom:203.094366pt;}
.y2e{bottom:206.095746pt;}
.yd0{bottom:209.097136pt;}
.yb0{bottom:216.100397pt;}
.y92{bottom:216.100405pt;}
.y50{bottom:227.105516pt;}
.y70{bottom:228.105987pt;}
.ydd{bottom:232.107779pt;}
.ycf{bottom:234.108757pt;}
.y91{bottom:241.112026pt;}
.y4f{bottom:253.117601pt;}
.y6f{bottom:254.118072pt;}
.ydc{bottom:255.118470pt;}
.yce{bottom:259.120377pt;}
.y2d{bottom:263.122241pt;}
.y90{bottom:266.123646pt;}
.yaf{bottom:273.126892pt;}
.y4e{bottom:278.129222pt;}
.y2c{bottom:282.131072pt;}
.ycd{bottom:284.131998pt;}
.y8f{bottom:291.135267pt;}
.yae{bottom:298.138513pt;}
.y2b{bottom:300.139439pt;}
.ydb{bottom:306.142176pt;}
.ya{bottom:306.382667pt;}
.ycc{bottom:310.144083pt;}
.y4d{bottom:320.148744pt;}
.yad{bottom:323.150133pt;}
.y6e{bottom:324.150610pt;}
.ye6{bottom:333.154879pt;}
.y8e{bottom:334.155254pt;}
.ycb{bottom:335.155704pt;}
.yd{bottom:343.546667pt;}
.y4c{bottom:345.160365pt;}
.yac{bottom:348.161754pt;}
.y9{bottom:351.724000pt;}
.y6d{bottom:355.165019pt;}
.y8d{bottom:359.166875pt;}
.yca{bottom:360.167324pt;}
.ye5{bottom:363.168823pt;}
.y4b{bottom:370.171985pt;}
.y6c{bottom:386.179429pt;}
.yb{bottom:386.533333pt;}
.yab{bottom:390.181277pt;}
.y8{bottom:397.065333pt;}
.y8c{bottom:400.185933pt;}
.yc9{bottom:402.186847pt;}
.y4a{bottom:412.191508pt;}
.yaa{bottom:416.193362pt;}
.y8b{bottom:423.196623pt;}
.y11{bottom:433.826667pt;}
.y49{bottom:438.203593pt;}
.ya9{bottom:441.204982pt;}
.y7{bottom:442.406667pt;}
.yc8{bottom:444.206369pt;}
.y6b{bottom:452.210107pt;}
.yc7{bottom:469.217990pt;}
.yda{bottom:474.220266pt;}
.y6a{bottom:478.222193pt;}
.y12{bottom:478.426667pt;}
.y48{bottom:480.223116pt;}
.y8a{bottom:480.223118pt;}
.y6{bottom:487.748000pt;}
.y69{bottom:503.233813pt;}
.y47{bottom:505.234736pt;}
.y89{bottom:505.234739pt;}
.yc6{bottom:511.237512pt;}
.ya8{bottom:511.237520pt;}
.y1b{bottom:524.093333pt;}
.yd9{bottom:524.243508pt;}
.y68{bottom:528.245434pt;}
.y46{bottom:530.246357pt;}
.y88{bottom:530.246359pt;}
.y5{bottom:533.089333pt;}
.yc5{bottom:537.249598pt;}
.ya7{bottom:542.251930pt;}
.yea{bottom:543.252491pt;}
.y45{bottom:556.258442pt;}
.y87{bottom:556.258445pt;}
.ye9{bottom:560.260393pt;}
.ye{bottom:561.706667pt;}
.yc4{bottom:562.261218pt;}
.y67{bottom:570.264956pt;}
.ya6{bottom:573.266339pt;}
.yc3{bottom:587.272839pt;}
.y66{bottom:595.276577pt;}
.y44{bottom:597.277500pt;}
.y86{bottom:598.277967pt;}
.ye8{bottom:615.285959pt;}
.y43{bottom:620.288191pt;}
.y65{bottom:621.288662pt;}
.y85{bottom:623.289588pt;}
.yc2{bottom:629.292361pt;}
.ya5{bottom:640.297482pt;}
.y64{bottom:646.300283pt;}
.y84{bottom:648.301208pt;}
.yc1{bottom:655.304447pt;}
.ya4{bottom:665.309103pt;}
.y83{bottom:673.312829pt;}
.y2a{bottom:675.313747pt;}
.y42{bottom:677.314686pt;}
.yc0{bottom:680.316067pt;}
.y63{bottom:687.319340pt;}
.ya3{bottom:690.320723pt;}
.y4{bottom:691.756000pt;}
.y29{bottom:698.324438pt;}
.y82{bottom:699.324914pt;}
.yd8{bottom:702.326246pt;}
.y41{bottom:702.326306pt;}
.ybf{bottom:705.327688pt;}
.ya2{bottom:715.332344pt;}
.y13{bottom:725.040000pt;}
.yd7{bottom:725.336937pt;}
.y28{bottom:733.340707pt;}
.ya1{bottom:741.344429pt;}
.y81{bottom:741.344437pt;}
.y40{bottom:744.345829pt;}
.y62{bottom:744.345835pt;}
.yd6{bottom:748.347628pt;}
.y27{bottom:754.350468pt;}
.y80{bottom:766.356057pt;}
.ye4{bottom:768.357076pt;}
.y3f{bottom:769.357450pt;}
.y61{bottom:769.357456pt;}
.ybe{bottom:775.360225pt;}
.y26{bottom:776.360694pt;}
.ya0{bottom:783.363952pt;}
.y7f{bottom:791.367678pt;}
.y3e{bottom:794.369070pt;}
.y60{bottom:794.369076pt;}
.y25{bottom:797.370456pt;}
.yd5{bottom:799.371334pt;}
.y3{bottom:805.081333pt;}
.ybd{bottom:806.374635pt;}
.y9f{bottom:808.375572pt;}
.ye3{bottom:814.378458pt;}
.y24{bottom:819.380682pt;}
.y5f{bottom:820.381162pt;}
.y9e{bottom:833.387193pt;}
.y7e{bottom:833.387201pt;}
.y3d{bottom:836.388593pt;}
.ybc{bottom:837.389044pt;}
.y23{bottom:848.394162pt;}
.y2{bottom:857.092000pt;}
.y9d{bottom:858.398813pt;}
.y7d{bottom:858.398821pt;}
.ye2{bottom:860.399840pt;}
.y3c{bottom:862.400678pt;}
.y5e{bottom:862.400684pt;}
.y22{bottom:875.406712pt;}
.y1{bottom:879.748000pt;}
.ye1{bottom:883.410531pt;}
.y7c{bottom:884.410907pt;}
.y3b{bottom:887.412299pt;}
.y5d{bottom:887.412305pt;}
.y9c{bottom:900.418336pt;}
.ybb{bottom:904.420187pt;}
.ye0{bottom:905.420757pt;}
.y21{bottom:907.421586pt;}
.y3a{bottom:912.423919pt;}
.y9b{bottom:923.429027pt;}
.y7b{bottom:925.429964pt;}
.yba{bottom:929.431808pt;}
.y5c{bottom:929.431827pt;}
.y7a{bottom:948.440655pt;}
.yb9{bottom:954.443429pt;}
.y39{bottom:954.443442pt;}
.y5b{bottom:954.443448pt;}
.yd4{bottom:957.444776pt;}
.yb8{bottom:979.455049pt;}
.y9a{bottom:979.455057pt;}
.y38{bottom:979.455062pt;}
.y5a{bottom:979.455069pt;}
.yd3{bottom:980.455467pt;}
.ydf{bottom:980.455619pt;}
.yb7{bottom:1005.467135pt;}
.y99{bottom:1005.467142pt;}
.y37{bottom:1005.467148pt;}
.y79{bottom:1005.467150pt;}
.y59{bottom:1005.467154pt;}
.yb6{bottom:1030.478755pt;}
.y98{bottom:1030.478763pt;}
.y36{bottom:1030.478768pt;}
.y78{bottom:1030.478771pt;}
.y58{bottom:1030.478774pt;}
.yd2{bottom:1031.479172pt;}
.yde{bottom:1031.479325pt;}
.y1c{bottom:1090.559975pt;}
.hc{height:12.000000pt;}
.ha{height:12.000001pt;}
.h4{height:29.333333pt;}
.hb{height:31.062497pt;}
.he{height:34.688116pt;}
.h12{height:40.364354pt;}
.h11{height:40.995047pt;}
.h16{height:47.766192pt;}
.h13{height:51.095739pt;}
.h19{height:51.399881pt;}
.h3{height:51.916667pt;}
.h17{height:56.081213pt;}
.h10{height:56.722354pt;}
.h2{height:59.333333pt;}
.h14{height:59.947852pt;}
.h5{height:60.213542pt;}
.hf{height:68.940030pt;}
.h18{height:75.122903pt;}
.h15{height:80.605450pt;}
.h7{height:102.413333pt;}
.h6{height:152.386667pt;}
.h8{height:154.000000pt;}
.hd{height:1046.486196pt;}
.h0{height:1122.520000pt;}
.h9{height:1122.559973pt;}
.h1{height:1122.666667pt;}
.we{width:54.613321pt;}
.wb{width:121.333326pt;}
.w8{width:267.706667pt;}
.w6{width:325.746667pt;}
.w2{width:439.666667pt;}
.w5{width:491.253333pt;}
.w3{width:491.800000pt;}
.w4{width:531.026667pt;}
.w7{width:579.386667pt;}
.wc{width:671.946621pt;}
.wf{width:717.333250pt;}
.wd{width:738.666625pt;}
.w9{width:793.279947pt;}
.wa{width:793.333333pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:2.666667pt;}
.xe{left:4.541647pt;}
.x11{left:20.321942pt;}
.x10{left:25.011621pt;}
.xa{left:35.270830pt;}
.xf{left:38.666661pt;}
.x12{left:72.533700pt;}
.xc{left:93.291656pt;}
.x22{left:99.233605pt;}
.x14{left:103.579374pt;}
.x20{left:109.801014pt;}
.x9{left:112.306667pt;}
.x1{left:113.385867pt;}
.xb{left:121.333326pt;}
.x18{left:122.572573pt;}
.x17{left:124.526606pt;}
.x1d{left:143.379115pt;}
.x23{left:147.865574pt;}
.x5{left:154.760000pt;}
.x1b{left:158.042177pt;}
.x21{left:162.919443pt;}
.x2{left:169.813333pt;}
.x7{left:178.413333pt;}
.x8{left:193.173333pt;}
.x4{left:195.600000pt;}
.x6{left:197.760000pt;}
.x15{left:201.062165pt;}
.x25{left:225.979992pt;}
.x16{left:236.094071pt;}
.x1e{left:238.173157pt;}
.x26{left:240.392938pt;}
.x1a{left:265.248236pt;}
.x13{left:279.332910pt;}
.x24{left:282.459362pt;}
.x1c{left:288.102604pt;}
.x1f{left:292.839185pt;}
.x19{left:321.758871pt;}
.xd{left:738.666625pt;}
}




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