
    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_2341e98dfe67f14cf4af28ec.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.865000;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_0ced8fd8bd00de2aa88a96a8.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.848000;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_af485bf39ebab0088ee06372.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.920000;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_3e0d66143823bd5f91079c96.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.948000;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_db9c14651f37c7ecbd2bcd7d.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_f410d2106414fc14863c804c.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_7360a75a9ae8aaad91f06348.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.933594;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_8951263ad5ce67f56e5a5f6a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.951000;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_18cd28103eadf30ee449e735.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.702000;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_b101a44a25f43fb13598caa7.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.010254;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_6ce07721d5e0c89adc322d15.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.914000;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:ffc;src:url('chunks/assets/font_ac3fba080485e3d4a4dcabe0.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.911133;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:ffd;src:url('chunks/assets/font_a36a913e270d8e6ddd6d0332.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.900879;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;}
.m3{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);}
.m2{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);}
.m1{transform:matrix(0.245145,0.000000,-0.049029,0.245145,0,0);-ms-transform:matrix(0.245145,0.000000,-0.049029,0.245145,0,0);-webkit-transform:matrix(0.245145,0.000000,-0.049029,0.245145,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);}
.m4{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);}
.v1{vertical-align:-71.634931px;}
.v4{vertical-align:-18.479003px;}
.v3{vertical-align:-7.203528px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:6.224535px;}
.v5{vertical-align:9.448785px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.000045px;}
.ls7{letter-spacing:0.043817px;}
.ls6{letter-spacing:0.043862px;}
.ls5{letter-spacing:107.972021px;}
.ls3{letter-spacing:107.986253px;}
.ls2{letter-spacing:108.000354px;}
.ls1{letter-spacing:213.557828px;}
.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:-60.025660px;}
.ws8{word-spacing:-45.780003px;}
.wsb{word-spacing:-26.418000px;}
.ws9{word-spacing:-19.200001px;}
.ws5{word-spacing:-18.000001px;}
.ws2{word-spacing:-16.800000px;}
.ws7{word-spacing:-15.600001px;}
.wsa{word-spacing:-14.400000px;}
.ws3{word-spacing:-13.560120px;}
.ws1{word-spacing:0.000000px;}
.ws6{word-spacing:101.491929px;}
.ws4{word-spacing:138.975654px;}
._f{margin-left:-331.449453px;}
._9{margin-left:-5.751383px;}
._13{margin-left:-3.990000px;}
._3{margin-left:-2.790000px;}
._0{margin-left:-1.620986px;}
._2{width:1.674000px;}
._7{width:2.880986px;}
._8{width:5.940986px;}
._1{width:7.440000px;}
._14{width:19.821301px;}
._c{width:117.350289px;}
._e{width:144.021312px;}
._4{width:181.987581px;}
._5{width:185.793191px;}
._a{width:210.270079px;}
._b{width:445.719148px;}
._d{width:570.911708px;}
._10{width:603.199378px;}
._11{width:717.919008px;}
._6{width:754.369411px;}
._12{width:1911.546445px;}
.fcb{color:rgb(136,201,237);}
.fcc{color:rgb(251,216,62);}
.fc9{color:rgb(193,226,133);}
.fca{color:rgb(244,156,102);}
.fc3{color:transparent;}
.fc2{color:rgb(147,125,255);}
.fc5{color:rgb(0,8,10);}
.fc4{color:rgb(64,197,197);}
.fc1{color:rgb(245,149,255);}
.fc8{color:rgb(143,143,143);}
.fc7{color:rgb(223,223,223);}
.fc6{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs13{font-size:36.000001px;}
.fs14{font-size:60.000000px;}
.fs11{font-size:65.208607px;}
.fs8{font-size:66.000004px;}
.fsa{font-size:67.497608px;}
.fs9{font-size:67.800598px;}
.fs4{font-size:72.000002px;}
.fs6{font-size:78.000005px;}
.fs10{font-size:79.291803px;}
.fs5{font-size:84.000000px;}
.fsb{font-size:90.000003px;}
.fsf{font-size:91.291800px;}
.fs3{font-size:96.000006px;}
.fs16{font-size:102.000000px;}
.fs12{font-size:108.000003px;}
.fsc{font-size:126.000004px;}
.fs15{font-size:138.000001px;}
.fs2{font-size:186.000000px;}
.fs7{font-size:210.000013px;}
.fse{font-size:214.158833px;}
.fsd{font-size:216.000007px;}
.fs0{font-size:270.000009px;}
.fs1{font-size:275.347063px;}
.y0{bottom:0.000000px;}
.yf{bottom:17.648981px;}
.y44{bottom:22.268732px;}
.y5c{bottom:23.325827px;}
.y50{bottom:38.659131px;}
.y14{bottom:48.063537px;}
.y72{bottom:54.973895px;}
.y27{bottom:58.871435px;}
.y75{bottom:78.578241px;}
.y8{bottom:79.939479px;}
.y66{bottom:85.346808px;}
.y26{bottom:85.871436px;}
.y60{bottom:86.339155px;}
.y4a{bottom:92.942590px;}
.y46{bottom:95.526251px;}
.y7{bottom:101.314480px;}
.y49{bottom:107.309128px;}
.y5f{bottom:111.407204px;}
.y42{bottom:112.215544px;}
.y65{bottom:112.256806px;}
.y25{bottom:112.871437px;}
.y1a{bottom:115.143621px;}
.y74{bottom:124.236727px;}
.y41{bottom:125.188117px;}
.y16{bottom:125.753609px;}
.y62{bottom:128.315194px;}
.y4f{bottom:134.356327px;}
.y36{bottom:136.164197px;}
.y47{bottom:138.088211px;}
.y5e{bottom:138.407205px;}
.y64{bottom:139.166805px;}
.y10{bottom:142.005878px;}
.y6{bottom:144.064481px;}
.y34{bottom:147.292976px;}
.y40{bottom:148.975658px;}
.y73{bottom:148.986728px;}
.y61{bottom:153.515193px;}
.y48{bottom:153.803888px;}
.y35{bottom:161.364203px;}
.y5{bottom:165.439482px;}
.y24{bottom:166.871438px;}
.y69{bottom:170.427507px;}
.y3f{bottom:172.763195px;}
.y53{bottom:178.409869px;}
.y5d{bottom:178.881253px;}
.y55{bottom:180.820626px;}
.y2c{bottom:183.166751px;}
.y23{bottom:193.871439px;}
.y17{bottom:195.083345px;}
.y63{bottom:200.006314px;}
.y71{bottom:215.040149px;}
.y15{bottom:215.709499px;}
.y1c{bottom:217.150053px;}
.y54{bottom:219.285955px;}
.y76{bottom:220.154095px;}
.y38{bottom:222.564198px;}
.y2b{bottom:225.184468px;}
.y80{bottom:229.230359px;}
.y52{bottom:229.313915px;}
.y4{bottom:230.234095px;}
.y33{bottom:242.270779px;}
.y1b{bottom:242.350053px;}
.y37{bottom:247.764197px;}
.y22{bottom:247.871441px;}
.y70{bottom:248.160139px;}
.y7d{bottom:248.559097px;}
.y5b{bottom:252.953959px;}
.y7f{bottom:254.430353px;}
.y18{bottom:262.144642px;}
.y3c{bottom:262.409996px;}
.y11{bottom:262.612676px;}
.y32{bottom:263.870775px;}
.y68{bottom:267.254280px;}
.y21{bottom:274.871442px;}
.y5a{bottom:278.153958px;}
.y7e{bottom:279.630352px;}
.y7c{bottom:286.359093px;}
.y31{bottom:286.910776px;}
.y4e{bottom:291.865382px;}
.y6f{bottom:296.280114px;}
.ya{bottom:299.515978px;}
.y3{bottom:300.365343px;}
.y3a{bottom:315.350653px;}
.y2a{bottom:316.124387px;}
.y4d{bottom:317.065380px;}
.y7b{bottom:324.159092px;}
.y9{bottom:324.715977px;}
.y3b{bottom:327.660004px;}
.y20{bottom:328.871444px;}
.y6e{bottom:329.400115px;}
.y19{bottom:333.210039px;}
.y59{bottom:344.275293px;}
.y29{bottom:347.624385px;}
.y2{bottom:355.346334px;}
.y1f{bottom:355.871448px;}
.y7a{bottom:361.959092px;}
.y6a{bottom:364.081042px;}
.y58{bottom:373.525296px;}
.ye{bottom:375.111184px;}
.y6d{bottom:377.520113px;}
.y30{bottom:381.386040px;}
.y1e{bottom:382.871446px;}
.y1d{bottom:400.780179px;}
.yd{bottom:402.111185px;}
.y39{bottom:403.100658px;}
.y2f{bottom:404.426041px;}
.y28{bottom:410.584246px;}
.y3e{bottom:416.621646px;}
.y6c{bottom:425.640110px;}
.y1{bottom:428.471341px;}
.y2e{bottom:428.918934px;}
.y45{bottom:431.848463px;}
.y57{bottom:432.393204px;}
.y51{bottom:434.028630px;}
.yc{bottom:459.292788px;}
.y13{bottom:462.872479px;}
.y67{bottom:471.599996px;}
.y4c{bottom:480.234677px;}
.y79{bottom:482.092672px;}
.y56{bottom:495.393207px;}
.y6b{bottom:503.073424px;}
.y2d{bottom:508.618707px;}
.y12{bottom:514.662989px;}
.y4b{bottom:516.636906px;}
.y3d{bottom:520.385431px;}
.y43{bottom:522.966138px;}
.y78{bottom:547.663462px;}
.y77{bottom:553.009957px;}
.yb{bottom:561.157951px;}
.h1c{height:27.720704px;}
.h1e{height:46.201172px;}
.h18{height:47.732700px;}
.hb{height:48.510003px;}
.hc{height:49.630037px;}
.h5{height:52.488002px;}
.h20{height:52.704002px;}
.h11{height:52.920002px;}
.h7{height:57.096004px;}
.h8{height:57.330004px;}
.h17{height:58.041599px;}
.h1f{height:60.213871px;}
.hf{height:61.154297px;}
.h6{height:61.488000px;}
.h1a{height:61.494345px;}
.h13{height:61.656000px;}
.ha{height:61.740000px;}
.h1b{height:64.681640px;}
.he{height:65.880002px;}
.hd{height:66.150002px;}
.h4{height:68.064004px;}
.h10{height:70.272004px;}
.h1d{height:70.560004px;}
.h19{height:71.104785px;}
.h16{height:73.324008px;}
.h22{height:78.741211px;}
.h12{height:92.232003px;}
.h24{height:97.268558px;}
.h21{height:97.842001px;}
.h23{height:106.262696px;}
.h3{height:123.876000px;}
.h9{height:139.860008px;}
.h15{height:142.629782px;}
.h14{height:143.856005px;}
.h1{height:179.820006px;}
.h2{height:183.381144px;}
.h0{height:607.500000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x46{left:55.000148px;}
.x3d{left:56.599629px;}
.x43{left:59.625002px;}
.x42{left:64.694882px;}
.x2d{left:69.766983px;}
.xc{left:75.631362px;}
.x2c{left:83.591080px;}
.xb{left:87.437013px;}
.x4d{left:88.535440px;}
.x37{left:90.532797px;}
.x14{left:95.164372px;}
.x31{left:102.651789px;}
.x15{left:114.462111px;}
.x1f{left:119.121936px;}
.x44{left:120.834258px;}
.x35{left:127.379490px;}
.x16{left:134.554674px;}
.x45{left:139.837954px;}
.x17{left:141.140295px;}
.x1{left:144.042663px;}
.x58{left:148.245239px;}
.x57{left:157.888254px;}
.x18{left:160.359637px;}
.x4e{left:162.805658px;}
.x47{left:164.432622px;}
.x20{left:170.714386px;}
.x3e{left:175.638311px;}
.x26{left:176.826466px;}
.x36{left:181.582791px;}
.x29{left:185.652169px;}
.x21{left:187.125002px;}
.x3f{left:190.550211px;}
.x33{left:194.541125px;}
.x5{left:213.815909px;}
.x24{left:220.310760px;}
.x2b{left:233.016746px;}
.x27{left:239.097602px;}
.x1b{left:240.953920px;}
.x25{left:248.990588px;}
.x23{left:251.290786px;}
.x2a{left:254.073658px;}
.x28{left:266.744934px;}
.x22{left:274.124934px;}
.x53{left:290.825486px;}
.x54{left:296.315492px;}
.x19{left:298.162569px;}
.x1a{left:310.839547px;}
.x2{left:320.386285px;}
.x4b{left:336.937944px;}
.xd{left:348.633664px;}
.x49{left:354.051797px;}
.x13{left:360.192544px;}
.x4a{left:364.892135px;}
.x4f{left:371.064004px;}
.x50{left:383.571442px;}
.x55{left:405.503754px;}
.x6{left:413.010823px;}
.x38{left:418.958999px;}
.x51{left:425.064006px;}
.x9{left:446.885834px;}
.x56{left:457.952617px;}
.x7{left:475.154891px;}
.x3{left:478.808655px;}
.x8{left:489.248926px;}
.xa{left:490.337903px;}
.x52{left:509.530880px;}
.x3c{left:517.656494px;}
.x3b{left:534.216316px;}
.x40{left:559.125018px;}
.x41{left:568.807106px;}
.x1c{left:624.407532px;}
.x1d{left:637.817445px;}
.x59{left:643.674227px;}
.x4{left:648.975958px;}
.x1e{left:678.407534px;}
.x34{left:714.341723px;}
.x2f{left:739.059279px;}
.x39{left:746.600930px;}
.x32{left:764.502142px;}
.xe{left:778.234300px;}
.x3a{left:801.684592px;}
.x12{left:804.575804px;}
.xf{left:817.729683px;}
.x4c{left:820.225410px;}
.x30{left:829.758840px;}
.x10{left:839.026894px;}
.x48{left:870.482165px;}
.x2e{left:1045.948803px;}
.x11{left:1055.637338px;}
@media print{
.v1{vertical-align:-63.675494pt;}
.v4{vertical-align:-16.425781pt;}
.v3{vertical-align:-6.403136pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:5.532920pt;}
.v5{vertical-align:8.398920pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.000040pt;}
.ls7{letter-spacing:0.038948pt;}
.ls6{letter-spacing:0.038988pt;}
.ls5{letter-spacing:95.975130pt;}
.ls3{letter-spacing:95.987780pt;}
.ls2{letter-spacing:96.000315pt;}
.ls1{letter-spacing:189.829180pt;}
.ws0{word-spacing:-53.356142pt;}
.ws8{word-spacing:-40.693336pt;}
.wsb{word-spacing:-23.482667pt;}
.ws9{word-spacing:-17.066668pt;}
.ws5{word-spacing:-16.000001pt;}
.ws2{word-spacing:-14.933333pt;}
.ws7{word-spacing:-13.866668pt;}
.wsa{word-spacing:-12.800000pt;}
.ws3{word-spacing:-12.053440pt;}
.ws1{word-spacing:0.000000pt;}
.ws6{word-spacing:90.215048pt;}
.ws4{word-spacing:123.533915pt;}
._f{margin-left:-294.621736pt;}
._9{margin-left:-5.112341pt;}
._13{margin-left:-3.546667pt;}
._3{margin-left:-2.480000pt;}
._0{margin-left:-1.440876pt;}
._2{width:1.488000pt;}
._7{width:2.560876pt;}
._8{width:5.280876pt;}
._1{width:6.613333pt;}
._14{width:17.618934pt;}
._c{width:104.311368pt;}
._e{width:128.018944pt;}
._4{width:161.766738pt;}
._5{width:165.149503pt;}
._a{width:186.906737pt;}
._b{width:396.194799pt;}
._d{width:507.477074pt;}
._10{width:536.177225pt;}
._11{width:638.150229pt;}
._6{width:670.550588pt;}
._12{width:1699.152396pt;}
.fs13{font-size:32.000001pt;}
.fs14{font-size:53.333334pt;}
.fs11{font-size:57.963206pt;}
.fs8{font-size:58.666670pt;}
.fsa{font-size:59.997874pt;}
.fs9{font-size:60.267198pt;}
.fs4{font-size:64.000002pt;}
.fs6{font-size:69.333338pt;}
.fs10{font-size:70.481602pt;}
.fs5{font-size:74.666666pt;}
.fsb{font-size:80.000003pt;}
.fsf{font-size:81.148267pt;}
.fs3{font-size:85.333339pt;}
.fs16{font-size:90.666667pt;}
.fs12{font-size:96.000003pt;}
.fsc{font-size:112.000004pt;}
.fs15{font-size:122.666668pt;}
.fs2{font-size:165.333333pt;}
.fs7{font-size:186.666678pt;}
.fse{font-size:190.363407pt;}
.fsd{font-size:192.000006pt;}
.fs0{font-size:240.000008pt;}
.fs1{font-size:244.752944pt;}
.y0{bottom:0.000000pt;}
.yf{bottom:15.687983pt;}
.y44{bottom:19.794428pt;}
.y5c{bottom:20.734068pt;}
.y50{bottom:34.363672pt;}
.y14{bottom:42.723144pt;}
.y72{bottom:48.865684pt;}
.y27{bottom:52.330164pt;}
.y75{bottom:69.847325pt;}
.y8{bottom:71.057315pt;}
.y66{bottom:75.863829pt;}
.y26{bottom:76.330165pt;}
.y60{bottom:76.745915pt;}
.y4a{bottom:82.615635pt;}
.y46{bottom:84.912223pt;}
.y7{bottom:90.057316pt;}
.y49{bottom:95.385892pt;}
.y5f{bottom:99.028626pt;}
.y42{bottom:99.747150pt;}
.y65{bottom:99.783828pt;}
.y25{bottom:100.330166pt;}
.y1a{bottom:102.349885pt;}
.y74{bottom:110.432646pt;}
.y41{bottom:111.278326pt;}
.y16{bottom:111.780986pt;}
.y62{bottom:114.057950pt;}
.y4f{bottom:119.427847pt;}
.y36{bottom:121.034842pt;}
.y47{bottom:122.745077pt;}
.y5e{bottom:123.028627pt;}
.y64{bottom:123.703827pt;}
.y10{bottom:126.227447pt;}
.y6{bottom:128.057317pt;}
.y34{bottom:130.927090pt;}
.y40{bottom:132.422807pt;}
.y73{bottom:132.432647pt;}
.y61{bottom:136.457949pt;}
.y48{bottom:136.714567pt;}
.y35{bottom:143.434847pt;}
.y5{bottom:147.057317pt;}
.y24{bottom:148.330167pt;}
.y69{bottom:151.491118pt;}
.y3f{bottom:153.567285pt;}
.y53{bottom:158.586550pt;}
.y5d{bottom:159.005558pt;}
.y55{bottom:160.729445pt;}
.y2c{bottom:162.814890pt;}
.y23{bottom:172.330168pt;}
.y17{bottom:173.407418pt;}
.y63{bottom:177.783390pt;}
.y71{bottom:191.146799pt;}
.y15{bottom:191.741777pt;}
.y1c{bottom:193.022269pt;}
.y54{bottom:194.920849pt;}
.y76{bottom:195.692529pt;}
.y38{bottom:197.834843pt;}
.y2b{bottom:200.163971pt;}
.y80{bottom:203.760319pt;}
.y52{bottom:203.834591pt;}
.y4{bottom:204.652529pt;}
.y33{bottom:215.351804pt;}
.y1b{bottom:215.422270pt;}
.y37{bottom:220.234842pt;}
.y22{bottom:220.330170pt;}
.y70{bottom:220.586790pt;}
.y7d{bottom:220.941420pt;}
.y5b{bottom:224.847964pt;}
.y7f{bottom:226.160314pt;}
.y18{bottom:233.017460pt;}
.y3c{bottom:233.253330pt;}
.y11{bottom:233.433490pt;}
.y32{bottom:234.551800pt;}
.y68{bottom:237.559360pt;}
.y21{bottom:244.330171pt;}
.y5a{bottom:247.247963pt;}
.y7e{bottom:248.560313pt;}
.y7c{bottom:254.541416pt;}
.y31{bottom:255.031801pt;}
.y4e{bottom:259.435895pt;}
.y6f{bottom:263.360101pt;}
.ya{bottom:266.236425pt;}
.y3{bottom:266.991416pt;}
.y3a{bottom:280.311692pt;}
.y2a{bottom:280.999455pt;}
.y4d{bottom:281.835894pt;}
.y7b{bottom:288.141415pt;}
.y9{bottom:288.636424pt;}
.y3b{bottom:291.253337pt;}
.y20{bottom:292.330172pt;}
.y6e{bottom:292.800102pt;}
.y19{bottom:296.186702pt;}
.y59{bottom:306.022483pt;}
.y29{bottom:308.999454pt;}
.y2{bottom:315.863408pt;}
.y1f{bottom:316.330176pt;}
.y7a{bottom:321.741415pt;}
.y6a{bottom:323.627593pt;}
.y58{bottom:332.022485pt;}
.ye{bottom:333.432163pt;}
.y6d{bottom:335.573433pt;}
.y30{bottom:339.009814pt;}
.y1e{bottom:340.330175pt;}
.y1d{bottom:356.249048pt;}
.yd{bottom:357.432164pt;}
.y39{bottom:358.311696pt;}
.y2f{bottom:359.489814pt;}
.y28{bottom:364.963774pt;}
.y3e{bottom:370.330352pt;}
.y6c{bottom:378.346765pt;}
.y1{bottom:380.863414pt;}
.y2e{bottom:381.261275pt;}
.y45{bottom:383.865300pt;}
.y57{bottom:384.349515pt;}
.y51{bottom:385.803227pt;}
.yc{bottom:408.260256pt;}
.y13{bottom:411.442204pt;}
.y67{bottom:419.199996pt;}
.y4c{bottom:426.875268pt;}
.y79{bottom:428.526819pt;}
.y56{bottom:440.349517pt;}
.y6b{bottom:447.176377pt;}
.y2d{bottom:452.105517pt;}
.y12{bottom:457.478212pt;}
.y4b{bottom:459.232805pt;}
.y3d{bottom:462.564828pt;}
.y43{bottom:464.858790pt;}
.y78{bottom:486.811966pt;}
.y77{bottom:491.564406pt;}
.yb{bottom:498.807068pt;}
.h1c{height:24.640626pt;}
.h1e{height:41.067709pt;}
.h18{height:42.429067pt;}
.hb{height:43.120002pt;}
.hc{height:44.115589pt;}
.h5{height:46.656001pt;}
.h20{height:46.848001pt;}
.h11{height:47.040002pt;}
.h7{height:50.752004pt;}
.h8{height:50.960004pt;}
.h17{height:51.592533pt;}
.h1f{height:53.523441pt;}
.hf{height:54.359375pt;}
.h6{height:54.656000pt;}
.h1a{height:54.661640pt;}
.h13{height:54.805333pt;}
.ha{height:54.880000pt;}
.h1b{height:57.494791pt;}
.he{height:58.560002pt;}
.hd{height:58.800002pt;}
.h4{height:60.501337pt;}
.h10{height:62.464004pt;}
.h1d{height:62.720004pt;}
.h19{height:63.204253pt;}
.h16{height:65.176896pt;}
.h22{height:69.992188pt;}
.h12{height:81.984003pt;}
.h24{height:86.460940pt;}
.h21{height:86.970668pt;}
.h23{height:94.455730pt;}
.h3{height:110.112000pt;}
.h9{height:124.320008pt;}
.h15{height:126.782029pt;}
.h14{height:127.872004pt;}
.h1{height:159.840005pt;}
.h2{height:163.005461pt;}
.h0{height:540.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x46{left:48.889021pt;}
.x3d{left:50.310782pt;}
.x43{left:53.000002pt;}
.x42{left:57.506562pt;}
.x2d{left:62.015096pt;}
.xc{left:67.227877pt;}
.x2c{left:74.303182pt;}
.xb{left:77.721789pt;}
.x4d{left:78.698169pt;}
.x37{left:80.473598pt;}
.x14{left:84.590553pt;}
.x31{left:91.246035pt;}
.x15{left:101.744098pt;}
.x1f{left:105.886165pt;}
.x44{left:107.408229pt;}
.x35{left:113.226214pt;}
.x16{left:119.604154pt;}
.x45{left:124.300404pt;}
.x17{left:125.458040pt;}
.x1{left:128.037923pt;}
.x58{left:131.773546pt;}
.x57{left:140.345114pt;}
.x18{left:142.541900pt;}
.x4e{left:144.716141pt;}
.x47{left:146.162331pt;}
.x20{left:151.746121pt;}
.x3e{left:156.122943pt;}
.x26{left:157.179081pt;}
.x36{left:161.406925pt;}
.x29{left:165.024150pt;}
.x21{left:166.333335pt;}
.x3f{left:169.377965pt;}
.x33{left:172.925445pt;}
.x5{left:190.058586pt;}
.x24{left:195.831786pt;}
.x2b{left:207.125997pt;}
.x27{left:212.531202pt;}
.x1b{left:214.181262pt;}
.x25{left:221.324967pt;}
.x23{left:223.369587pt;}
.x2a{left:225.843251pt;}
.x28{left:237.106608pt;}
.x22{left:243.666608pt;}
.x53{left:258.511543pt;}
.x54{left:263.391548pt;}
.x19{left:265.033394pt;}
.x1a{left:276.301820pt;}
.x2{left:284.787809pt;}
.x4b{left:299.500395pt;}
.xd{left:309.896590pt;}
.x49{left:314.712708pt;}
.x13{left:320.171150pt;}
.x4a{left:324.348564pt;}
.x4f{left:329.834671pt;}
.x50{left:340.952393pt;}
.x55{left:360.447782pt;}
.x6{left:367.120732pt;}
.x38{left:372.407999pt;}
.x51{left:377.834672pt;}
.x9{left:397.231853pt;}
.x56{left:407.068993pt;}
.x7{left:422.359904pt;}
.x3{left:425.607694pt;}
.x8{left:434.887934pt;}
.xa{left:435.855914pt;}
.x52{left:452.916337pt;}
.x3c{left:460.139106pt;}
.x3b{left:474.858947pt;}
.x40{left:497.000016pt;}
.x41{left:505.606316pt;}
.x1c{left:555.028918pt;}
.x1d{left:566.948840pt;}
.x59{left:572.154868pt;}
.x4{left:576.867518pt;}
.x1e{left:603.028919pt;}
.x34{left:634.970420pt;}
.x2f{left:656.941581pt;}
.x39{left:663.645271pt;}
.x32{left:679.557460pt;}
.xe{left:691.763822pt;}
.x3a{left:712.608526pt;}
.x12{left:715.178493pt;}
.xf{left:726.870829pt;}
.x4c{left:729.089253pt;}
.x30{left:737.563414pt;}
.x10{left:745.801684pt;}
.x48{left:773.761925pt;}
.x2e{left:929.732270pt;}
.x11{left:938.344300pt;}
}




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