
    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_0cde36d1ac9bb17ec64b496f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.962402;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_d1aa08d6879aeae5b8481d00.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.147461;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_01c1ad22d768c2521761bd47.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.987305;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_62e77107a4f5497d2076795a.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.147461;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_4edca3c15fc03ad562dfbbfc.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.962402;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_0fb0383fa1079af7abd7ede6.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.758789;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;}
.m5{transform:matrix(0.000000,-0.266434,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.266434,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.266434,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.000000,-0.250004,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250004,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250004,0.250000,0.000000,0,0);}
.m4{transform:matrix(0.234580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234580,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249996,0.000000,0.000000,0.250000,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);}
.m6{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;}
.ls13{letter-spacing:-0.384000px;}
.lsb{letter-spacing:-0.288000px;}
.ls12{letter-spacing:-0.223800px;}
.lsc{letter-spacing:-0.144000px;}
.lsa{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.003223px;}
.ls10{letter-spacing:0.018326px;}
.lse{letter-spacing:0.037440px;}
.lsd{letter-spacing:0.072000px;}
.ls2{letter-spacing:0.216000px;}
.ls3{letter-spacing:0.253401px;}
.ls0{letter-spacing:0.288000px;}
.ls1{letter-spacing:0.299520px;}
.ls11{letter-spacing:0.319222px;}
.ls4{letter-spacing:0.360000px;}
.ls14{letter-spacing:0.400200px;}
.ls15{letter-spacing:0.432000px;}
.ls8{letter-spacing:0.576000px;}
.ls7{letter-spacing:20.448000px;}
.ls6{letter-spacing:28.684224px;}
.ls5{letter-spacing:28.798560px;}
.ls9{letter-spacing:62.208000px;}
.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;}
}
.ws2{word-spacing:-144.000000px;}
.ws8{word-spacing:-60.120000px;}
.ws1{word-spacing:-60.048000px;}
.ws0{word-spacing:-46.637280px;}
.ws7{word-spacing:-40.608000px;}
.ws17{word-spacing:-40.472232px;}
.ws18{word-spacing:-40.464000px;}
.ws4{word-spacing:-40.320000px;}
.ws6{word-spacing:-40.032000px;}
.ws5{word-spacing:-39.888000px;}
.ws15{word-spacing:-39.848232px;}
.ws3{word-spacing:-39.744000px;}
.ws16{word-spacing:-39.688032px;}
.wse{word-spacing:-29.736000px;}
.wsd{word-spacing:-29.140165px;}
.wsc{word-spacing:-24.020717px;}
.ws11{word-spacing:-21.395676px;}
.ws19{word-spacing:0.000000px;}
.ws14{word-spacing:0.144000px;}
.wsa{word-spacing:82.202744px;}
.ws9{word-spacing:95.816160px;}
.wsb{word-spacing:111.000778px;}
.wsf{word-spacing:118.610818px;}
.ws10{word-spacing:144.294427px;}
.ws13{word-spacing:256.058356px;}
.ws12{word-spacing:273.005442px;}
._4{margin-left:-23.964000px;}
._3{margin-left:-15.768000px;}
._2{margin-left:-12.132000px;}
._20{margin-left:-9.198144px;}
._b{margin-left:-7.944000px;}
._28{margin-left:-4.752000px;}
._1{margin-left:-3.672000px;}
._1f{margin-left:-2.558880px;}
._0{margin-left:-1.440000px;}
._5{width:1.080000px;}
._e{width:2.424000px;}
._21{width:3.710880px;}
._6{width:4.728000px;}
._7{width:6.228000px;}
._26{width:8.784000px;}
._27{width:9.936000px;}
._25{width:10.944000px;}
._13{width:13.656000px;}
._11{width:15.096000px;}
._12{width:16.140000px;}
._2b{width:19.296000px;}
._22{width:20.448000px;}
._23{width:21.864000px;}
._10{width:23.160000px;}
._9{width:26.208000px;}
._f{width:27.516000px;}
._16{width:34.860000px;}
._a{width:36.000000px;}
._8{width:37.872000px;}
._30{width:45.216000px;}
._2f{width:46.512000px;}
._d{width:58.524000px;}
._c{width:60.312000px;}
._2a{width:62.064000px;}
._29{width:63.360000px;}
._24{width:64.944000px;}
._15{width:70.020000px;}
._14{width:71.136000px;}
._2c{width:81.792000px;}
._2e{width:85.536000px;}
._2d{width:87.552000px;}
._1b{width:105.090982px;}
._1c{width:118.964966px;}
._17{width:121.001280px;}
._1d{width:133.074957px;}
._18{width:134.681280px;}
._19{width:153.277440px;}
._1a{width:154.657440px;}
._1e{width:306.754633px;}
.fc2{color:rgb(70,120,134);}
.fc4{color:rgb(192,0,0);}
.fc1{color:rgb(0,112,192);}
.fc3{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fsc{font-size:59.864875px;}
.fs9{font-size:76.962862px;}
.fs5{font-size:86.405457px;}
.fsa{font-size:88.254890px;}
.fsb{font-size:94.056464px;}
.fs4{font-size:95.760000px;}
.fs6{font-size:104.820737px;}
.fs7{font-size:104.822250px;}
.fs8{font-size:108.000000px;}
.fsd{font-size:120.240000px;}
.fs3{font-size:144.000000px;}
.fsf{font-size:144.144000px;}
.fs2{font-size:167.760000px;}
.fse{font-size:167.904000px;}
.fs1{font-size:216.000000px;}
.fs0{font-size:360.000000px;}
.y0{bottom:0.000000px;}
.y37{bottom:9.205196px;}
.y2c{bottom:10.653601px;}
.y6{bottom:28.872000px;}
.y24{bottom:47.515278px;}
.y2f{bottom:48.954090px;}
.y25{bottom:74.584146px;}
.y43{bottom:75.976391px;}
.y30{bottom:76.022958px;}
.y42{bottom:101.792194px;}
.y5{bottom:104.472000px;}
.y26{bottom:124.129158px;}
.y31{bottom:125.567970px;}
.y36{bottom:129.596647px;}
.y41{bottom:156.720529px;}
.y27{bottom:173.662659px;}
.y32{bottom:175.101471px;}
.y2b{bottom:180.864397px;}
.y3a{bottom:187.961661px;}
.y65{bottom:197.610000px;}
.y4a{bottom:210.165000px;}
.y3b{bottom:211.975573px;}
.y28{bottom:223.483923px;}
.y33{bottom:224.922735px;}
.y51{bottom:241.125000px;}
.y64{bottom:245.670000px;}
.y29{bottom:273.025097px;}
.y34{bottom:274.463909px;}
.y63{bottom:293.730000px;}
.y3c{bottom:300.775503px;}
.y50{bottom:308.625000px;}
.y2a{bottom:322.558599px;}
.y35{bottom:323.997411px;}
.y62{bottom:341.610000px;}
.y40{bottom:370.175795px;}
.y4f{bottom:376.125000px;}
.y3d{bottom:389.582007px;}
.y61{bottom:389.670000px;}
.y60{bottom:437.730000px;}
.y4e{bottom:443.670000px;}
.y3e{bottom:478.381937px;}
.y5f{bottom:485.610000px;}
.y4d{bottom:511.170000px;}
.y5e{bottom:533.670000px;}
.y3f{bottom:567.186250px;}
.y4c{bottom:578.670000px;}
.y5d{bottom:581.730000px;}
.y5c{bottom:629.610000px;}
.y4b{bottom:646.170000px;}
.y5b{bottom:677.670000px;}
.y5a{bottom:725.730000px;}
.y49{bottom:732.420000px;}
.y59{bottom:773.640000px;}
.y58{bottom:821.700000px;}
.y57{bottom:869.760000px;}
.y56{bottom:917.640000px;}
.y55{bottom:965.700000px;}
.y54{bottom:1013.760000px;}
.y53{bottom:1061.640000px;}
.y52{bottom:1109.700000px;}
.y48{bottom:1162.410000px;}
.y39{bottom:2233.935000px;}
.y45{bottom:2242.005000px;}
.y22{bottom:2309.910000px;}
.y1a{bottom:2342.190000px;}
.y1b{bottom:2405.775000px;}
.y1c{bottom:2476.620000px;}
.y21{bottom:2480.250000px;}
.y1d{bottom:2547.465000px;}
.y1e{bottom:2618.280000px;}
.y1f{bottom:2689.125000px;}
.y47{bottom:2691.030000px;}
.y46{bottom:2735.430000px;}
.y20{bottom:2760.225000px;}
.y44{bottom:2775.135000px;}
.y2e{bottom:2807.415000px;}
.y23{bottom:3325.260000px;}
.y19{bottom:3583.260000px;}
.y38{bottom:3621.390000px;}
.y2d{bottom:3632.865000px;}
.y18{bottom:3712.500000px;}
.y17{bottom:3760.560000px;}
.y16{bottom:3808.440000px;}
.y15{bottom:3856.500000px;}
.y14{bottom:3904.560000px;}
.y13{bottom:3952.440000px;}
.y12{bottom:4000.500000px;}
.y11{bottom:4048.560000px;}
.y10{bottom:4096.440000px;}
.yf{bottom:4192.560000px;}
.ye{bottom:4240.440000px;}
.yd{bottom:4288.500000px;}
.yc{bottom:4336.560000px;}
.yb{bottom:4384.440000px;}
.ya{bottom:4432.500000px;}
.y9{bottom:4480.560000px;}
.y8{bottom:4528.440000px;}
.y7{bottom:4576.500000px;}
.y4{bottom:4687.275000px;}
.y3{bottom:4752.075000px;}
.y2{bottom:4825.155000px;}
.y1{bottom:4933.155000px;}
.h11{height:56.094089px;}
.he{height:72.115103px;}
.h9{height:80.962925px;}
.h12{height:81.210938px;}
.hf{height:82.695866px;}
.h10{height:88.132009px;}
.h7{height:89.728242px;}
.h13{height:90.414844px;}
.ha{height:98.218259px;}
.hb{height:98.219677px;}
.hc{height:101.197266px;}
.h6{height:134.929688px;}
.h15{height:135.064617px;}
.h4{height:157.193086px;}
.h14{height:157.328016px;}
.h5{height:162.421875px;}
.h3{height:202.394531px;}
.h2{height:270.703125px;}
.h8{height:345.598806px;}
.hd{height:592.017797px;}
.h0{height:5055.480000px;}
.h1{height:5055.750000px;}
.w3{width:1027.105489px;}
.w4{width:1110.847858px;}
.w2{width:3575.879947px;}
.w0{width:3575.880000px;}
.w1{width:3576.000000px;}
.x0{left:0.000000px;}
.x14{left:5.347650px;}
.x24{left:40.643947px;}
.x17{left:43.043490px;}
.x6{left:53.855947px;}
.x16{left:59.401538px;}
.xf{left:76.958456px;}
.xe{left:89.044303px;}
.x19{left:91.955145px;}
.x25{left:94.679947px;}
.x1c{left:107.747947px;}
.x15{left:114.788126px;}
.xd{left:149.204960px;}
.x1a{left:331.558493px;}
.x1b{left:357.734947px;}
.x18{left:393.426183px;}
.x10{left:405.662782px;}
.x12{left:408.540364px;}
.x11{left:410.399947px;}
.x1{left:450.179947px;}
.x1f{left:482.294947px;}
.x13{left:519.089947px;}
.x4{left:562.499947px;}
.xb{left:776.414947px;}
.x7{left:783.569947px;}
.xa{left:800.489947px;}
.x9{left:811.874947px;}
.x8{left:855.974947px;}
.x1d{left:907.049947px;}
.x2{left:955.079947px;}
.xc{left:1149.914947px;}
.x3{left:1246.529947px;}
.x1e{left:1262.009947px;}
.x21{left:1992.854947px;}
.x5{left:2001.419947px;}
.x22{left:2055.989947px;}
.x23{left:2096.489947px;}
.x20{left:2346.119947px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls13{letter-spacing:-0.341333pt;}
.lsb{letter-spacing:-0.256000pt;}
.ls12{letter-spacing:-0.198933pt;}
.lsc{letter-spacing:-0.128000pt;}
.lsa{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.002865pt;}
.ls10{letter-spacing:0.016289pt;}
.lse{letter-spacing:0.033280pt;}
.lsd{letter-spacing:0.064000pt;}
.ls2{letter-spacing:0.192000pt;}
.ls3{letter-spacing:0.225245pt;}
.ls0{letter-spacing:0.256000pt;}
.ls1{letter-spacing:0.266240pt;}
.ls11{letter-spacing:0.283753pt;}
.ls4{letter-spacing:0.320000pt;}
.ls14{letter-spacing:0.355733pt;}
.ls15{letter-spacing:0.384000pt;}
.ls8{letter-spacing:0.512000pt;}
.ls7{letter-spacing:18.176000pt;}
.ls6{letter-spacing:25.497088pt;}
.ls5{letter-spacing:25.598720pt;}
.ls9{letter-spacing:55.296000pt;}
.ws2{word-spacing:-128.000000pt;}
.ws8{word-spacing:-53.440000pt;}
.ws1{word-spacing:-53.376000pt;}
.ws0{word-spacing:-41.455360pt;}
.ws7{word-spacing:-36.096000pt;}
.ws17{word-spacing:-35.975317pt;}
.ws18{word-spacing:-35.968000pt;}
.ws4{word-spacing:-35.840000pt;}
.ws6{word-spacing:-35.584000pt;}
.ws5{word-spacing:-35.456000pt;}
.ws15{word-spacing:-35.420651pt;}
.ws3{word-spacing:-35.328000pt;}
.ws16{word-spacing:-35.278251pt;}
.wse{word-spacing:-26.432000pt;}
.wsd{word-spacing:-25.902369pt;}
.wsc{word-spacing:-21.351748pt;}
.ws11{word-spacing:-19.018378pt;}
.ws19{word-spacing:0.000000pt;}
.ws14{word-spacing:0.128000pt;}
.wsa{word-spacing:73.069106pt;}
.ws9{word-spacing:85.169920pt;}
.wsb{word-spacing:98.667358pt;}
.wsf{word-spacing:105.431838pt;}
.ws10{word-spacing:128.261713pt;}
.ws13{word-spacing:227.607428pt;}
.ws12{word-spacing:242.671504pt;}
._4{margin-left:-21.301333pt;}
._3{margin-left:-14.016000pt;}
._2{margin-left:-10.784000pt;}
._20{margin-left:-8.176128pt;}
._b{margin-left:-7.061333pt;}
._28{margin-left:-4.224000pt;}
._1{margin-left:-3.264000pt;}
._1f{margin-left:-2.274560pt;}
._0{margin-left:-1.280000pt;}
._5{width:0.960000pt;}
._e{width:2.154667pt;}
._21{width:3.298560pt;}
._6{width:4.202667pt;}
._7{width:5.536000pt;}
._26{width:7.808000pt;}
._27{width:8.832000pt;}
._25{width:9.728000pt;}
._13{width:12.138667pt;}
._11{width:13.418667pt;}
._12{width:14.346667pt;}
._2b{width:17.152000pt;}
._22{width:18.176000pt;}
._23{width:19.434667pt;}
._10{width:20.586667pt;}
._9{width:23.296000pt;}
._f{width:24.458667pt;}
._16{width:30.986667pt;}
._a{width:32.000000pt;}
._8{width:33.664000pt;}
._30{width:40.192000pt;}
._2f{width:41.344000pt;}
._d{width:52.021333pt;}
._c{width:53.610667pt;}
._2a{width:55.168000pt;}
._29{width:56.320000pt;}
._24{width:57.728000pt;}
._15{width:62.240000pt;}
._14{width:63.232000pt;}
._2c{width:72.704000pt;}
._2e{width:76.032000pt;}
._2d{width:77.824000pt;}
._1b{width:93.414206pt;}
._1c{width:105.746637pt;}
._17{width:107.556693pt;}
._1d{width:118.288851pt;}
._18{width:119.716693pt;}
._19{width:136.246613pt;}
._1a{width:137.473280pt;}
._1e{width:272.670784pt;}
.fsc{font-size:53.213222pt;}
.fs9{font-size:68.411433pt;}
.fs5{font-size:76.804850pt;}
.fsa{font-size:78.448791pt;}
.fsb{font-size:83.605746pt;}
.fs4{font-size:85.120000pt;}
.fs6{font-size:93.173988pt;}
.fs7{font-size:93.175334pt;}
.fs8{font-size:96.000000pt;}
.fsd{font-size:106.880000pt;}
.fs3{font-size:128.000000pt;}
.fsf{font-size:128.128000pt;}
.fs2{font-size:149.120000pt;}
.fse{font-size:149.248000pt;}
.fs1{font-size:192.000000pt;}
.fs0{font-size:320.000000pt;}
.y0{bottom:0.000000pt;}
.y37{bottom:8.182397pt;}
.y2c{bottom:9.469868pt;}
.y6{bottom:25.664000pt;}
.y24{bottom:42.235802pt;}
.y2f{bottom:43.514746pt;}
.y25{bottom:66.297019pt;}
.y43{bottom:67.534570pt;}
.y30{bottom:67.575963pt;}
.y42{bottom:90.481950pt;}
.y5{bottom:92.864000pt;}
.y26{bottom:110.337029pt;}
.y31{bottom:111.615973pt;}
.y36{bottom:115.197020pt;}
.y41{bottom:139.307137pt;}
.y27{bottom:154.366808pt;}
.y32{bottom:155.645752pt;}
.y2b{bottom:160.768353pt;}
.y3a{bottom:167.077032pt;}
.y65{bottom:175.653333pt;}
.y4a{bottom:186.813333pt;}
.y3b{bottom:188.422732pt;}
.y28{bottom:198.652376pt;}
.y33{bottom:199.931320pt;}
.y51{bottom:214.333333pt;}
.y64{bottom:218.373333pt;}
.y29{bottom:242.688976pt;}
.y34{bottom:243.967920pt;}
.y63{bottom:261.093333pt;}
.y3c{bottom:267.356002pt;}
.y50{bottom:274.333333pt;}
.y2a{bottom:286.718754pt;}
.y35{bottom:287.997698pt;}
.y62{bottom:303.653333pt;}
.y40{bottom:329.045151pt;}
.y4f{bottom:334.333333pt;}
.y3d{bottom:346.295118pt;}
.y61{bottom:346.373333pt;}
.y60{bottom:389.093333pt;}
.y4e{bottom:394.373333pt;}
.y3e{bottom:425.228388pt;}
.y5f{bottom:431.653333pt;}
.y4d{bottom:454.373333pt;}
.y5e{bottom:474.373333pt;}
.y3f{bottom:504.165556pt;}
.y4c{bottom:514.373333pt;}
.y5d{bottom:517.093333pt;}
.y5c{bottom:559.653333pt;}
.y4b{bottom:574.373333pt;}
.y5b{bottom:602.373333pt;}
.y5a{bottom:645.093333pt;}
.y49{bottom:651.040000pt;}
.y59{bottom:687.680000pt;}
.y58{bottom:730.400000pt;}
.y57{bottom:773.120000pt;}
.y56{bottom:815.680000pt;}
.y55{bottom:858.400000pt;}
.y54{bottom:901.120000pt;}
.y53{bottom:943.680000pt;}
.y52{bottom:986.400000pt;}
.y48{bottom:1033.253333pt;}
.y39{bottom:1985.720000pt;}
.y45{bottom:1992.893333pt;}
.y22{bottom:2053.253333pt;}
.y1a{bottom:2081.946667pt;}
.y1b{bottom:2138.466667pt;}
.y1c{bottom:2201.440000pt;}
.y21{bottom:2204.666667pt;}
.y1d{bottom:2264.413333pt;}
.y1e{bottom:2327.360000pt;}
.y1f{bottom:2390.333333pt;}
.y47{bottom:2392.026667pt;}
.y46{bottom:2431.493333pt;}
.y20{bottom:2453.533333pt;}
.y44{bottom:2466.786667pt;}
.y2e{bottom:2495.480000pt;}
.y23{bottom:2955.786667pt;}
.y19{bottom:3185.120000pt;}
.y38{bottom:3219.013333pt;}
.y2d{bottom:3229.213333pt;}
.y18{bottom:3300.000000pt;}
.y17{bottom:3342.720000pt;}
.y16{bottom:3385.280000pt;}
.y15{bottom:3428.000000pt;}
.y14{bottom:3470.720000pt;}
.y13{bottom:3513.280000pt;}
.y12{bottom:3556.000000pt;}
.y11{bottom:3598.720000pt;}
.y10{bottom:3641.280000pt;}
.yf{bottom:3726.720000pt;}
.ye{bottom:3769.280000pt;}
.yd{bottom:3812.000000pt;}
.yc{bottom:3854.720000pt;}
.yb{bottom:3897.280000pt;}
.ya{bottom:3940.000000pt;}
.y9{bottom:3982.720000pt;}
.y8{bottom:4025.280000pt;}
.y7{bottom:4068.000000pt;}
.y4{bottom:4166.466667pt;}
.y3{bottom:4224.066667pt;}
.y2{bottom:4289.026667pt;}
.y1{bottom:4385.026667pt;}
.h11{height:49.861413pt;}
.he{height:64.102314pt;}
.h9{height:71.967045pt;}
.h12{height:72.187500pt;}
.hf{height:73.507437pt;}
.h10{height:78.339564pt;}
.h7{height:79.758437pt;}
.h13{height:80.368750pt;}
.ha{height:87.305119pt;}
.hb{height:87.306379pt;}
.hc{height:89.953125pt;}
.h6{height:119.937500pt;}
.h15{height:120.057437pt;}
.h4{height:139.727187pt;}
.h14{height:139.847125pt;}
.h5{height:144.375000pt;}
.h3{height:179.906250pt;}
.h2{height:240.625000pt;}
.h8{height:307.198938pt;}
.hd{height:526.238042pt;}
.h0{height:4493.760000pt;}
.h1{height:4494.000000pt;}
.w3{width:912.982657pt;}
.w4{width:987.420318pt;}
.w2{width:3178.559953pt;}
.w0{width:3178.560000pt;}
.w1{width:3178.666667pt;}
.x0{left:0.000000pt;}
.x14{left:4.753467pt;}
.x24{left:36.127953pt;}
.x17{left:38.260880pt;}
.x6{left:47.871953pt;}
.x16{left:52.801368pt;}
.xf{left:68.407517pt;}
.xe{left:79.150491pt;}
.x19{left:81.737907pt;}
.x25{left:84.159953pt;}
.x1c{left:95.775953pt;}
.x15{left:102.033890pt;}
.xd{left:132.626631pt;}
.x1a{left:294.718660pt;}
.x1b{left:317.986619pt;}
.x18{left:349.712162pt;}
.x10{left:360.589140pt;}
.x12{left:363.146991pt;}
.x11{left:364.799953pt;}
.x1{left:400.159953pt;}
.x1f{left:428.706619pt;}
.x13{left:461.413286pt;}
.x4{left:499.999953pt;}
.xb{left:690.146619pt;}
.x7{left:696.506619pt;}
.xa{left:711.546619pt;}
.x9{left:721.666619pt;}
.x8{left:760.866619pt;}
.x1d{left:806.266619pt;}
.x2{left:848.959953pt;}
.xc{left:1022.146619pt;}
.x3{left:1108.026619pt;}
.x1e{left:1121.786619pt;}
.x21{left:1771.426619pt;}
.x5{left:1779.039953pt;}
.x22{left:1827.546619pt;}
.x23{left:1863.546619pt;}
.x20{left:2085.439953pt;}
}




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