
    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_4ec4d1c91990dcc2cee6def1.woff')format("woff");}.ff1{font-family:ff1;line-height:1.082031;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_e46844f9b87f0d2d2c298d61.woff')format("woff");}.ff2{font-family:ff2;line-height:0.899414;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_b408e654ba9eb7c752b2e476.woff')format("woff");}.ff3{font-family:ff3;line-height:0.902344;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_a6edd1e05de320d87785231a.woff')format("woff");}.ff4{font-family:ff4;line-height:0.922852;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_731c4df2edddfaa50943d3c5.woff')format("woff");}.ff5{font-family:ff5;line-height:1.044434;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_d45ea91c852c4c62f5aa8845.woff')format("woff");}.ff6{font-family:ff6;line-height:0.907715;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_f7aeb14d3624d49080d0f9c7.woff')format("woff");}.ff7{font-family:ff7;line-height:0.678711;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_6b1729375c958c7a146fd119.woff')format("woff");}.ff8{font-family:ff8;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.v4{vertical-align:-22.200000px;}
.v2{vertical-align:-2.982000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:2.982000px;}
.v3{vertical-align:26.640000px;}
.lsb{letter-spacing:-3.894000px;}
.lsa{letter-spacing:-2.808000px;}
.ls11{letter-spacing:-0.360000px;}
.ls16{letter-spacing:-0.315000px;}
.ls4{letter-spacing:0.000000px;}
.lse{letter-spacing:0.315000px;}
.ls1b{letter-spacing:0.330000px;}
.ls18{letter-spacing:0.360000px;}
.ls1a{letter-spacing:3.366000px;}
.lsc{letter-spacing:3.888000px;}
.ls13{letter-spacing:4.095000px;}
.ls0{letter-spacing:4.200000px;}
.ls10{letter-spacing:4.599000px;}
.ls5{letter-spacing:5.400000px;}
.ls12{letter-spacing:6.000000px;}
.ls1{letter-spacing:6.600000px;}
.lsd{letter-spacing:6.840000px;}
.ls15{letter-spacing:7.119000px;}
.ls1c{letter-spacing:7.200000px;}
.ls14{letter-spacing:8.757000px;}
.lsf{letter-spacing:9.954000px;}
.ls2{letter-spacing:10.200000px;}
.ls3{letter-spacing:10.404000px;}
.ls19{letter-spacing:10.956000px;}
.ls17{letter-spacing:13.104000px;}
.ls1d{letter-spacing:19.800000px;}
.ls8{letter-spacing:432.630000px;}
.ls6{letter-spacing:435.402000px;}
.ls7{letter-spacing:437.382000px;}
.ls9{letter-spacing:439.956000px;}
.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;}
}
.ws6{word-spacing:-453.948000px;}
.ws1e{word-spacing:-22.860000px;}
.ws1b{word-spacing:-20.232000px;}
.ws20{word-spacing:-18.876000px;}
.ws1f{word-spacing:-18.546000px;}
.ws1d{word-spacing:-18.144000px;}
.ws1{word-spacing:-17.784000px;}
.ws15{word-spacing:-17.703000px;}
.ws14{word-spacing:-17.424000px;}
.ws19{word-spacing:-17.388000px;}
.ws3{word-spacing:-16.860000px;}
.wsb{word-spacing:-16.302000px;}
.ws1c{word-spacing:-14.079000px;}
.ws1a{word-spacing:-12.139200px;}
.ws0{word-spacing:-11.856000px;}
.ws2{word-spacing:0.000000px;}
.ws5{word-spacing:263.406000px;}
.ws4{word-spacing:308.088000px;}
.wsc{word-spacing:322.872000px;}
.wsa{word-spacing:418.836000px;}
.wsf{word-spacing:423.456000px;}
.ws10{word-spacing:459.228000px;}
.ws11{word-spacing:470.712000px;}
.ws8{word-spacing:479.028000px;}
.wse{word-spacing:503.580000px;}
.ws9{word-spacing:507.936000px;}
.ws12{word-spacing:573.672000px;}
.ws17{word-spacing:586.608000px;}
.ws7{word-spacing:588.984000px;}
.wsd{word-spacing:618.222000px;}
.ws18{word-spacing:619.608000px;}
.ws13{word-spacing:635.382000px;}
.ws16{word-spacing:746.130000px;}
._12{margin-left:-435.402000px;}
._20{margin-left:-22.002000px;}
._15{margin-left:-19.630800px;}
._1f{margin-left:-18.294000px;}
._14{margin-left:-14.196000px;}
._21{margin-left:-12.282000px;}
._1d{margin-left:-10.206000px;}
._f{margin-left:-7.800000px;}
._4{margin-left:-6.630000px;}
._2{margin-left:-5.250000px;}
._1{margin-left:-4.226667px;}
._8{margin-left:-3.090000px;}
._0{margin-left:-1.680000px;}
._6{width:1.080000px;}
._3{width:2.400000px;}
._5{width:3.600000px;}
._7{width:5.136000px;}
._9{width:6.432000px;}
._d{width:8.288667px;}
._b{width:9.354000px;}
._a{width:10.656000px;}
._c{width:11.760000px;}
._1c{width:12.804000px;}
._e{width:13.824000px;}
._10{width:15.216000px;}
._1b{width:16.560000px;}
._1e{width:56.923800px;}
._19{width:240.906000px;}
._18{width:305.982000px;}
._11{width:328.614000px;}
._17{width:345.972000px;}
._13{width:442.002000px;}
._16{width:634.224000px;}
._1a{width:1119.324000px;}
.fc1{color:rgb(0,79,128);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:36.000000px;}
.fs0{font-size:42.000000px;}
.fs8{font-size:43.200000px;}
.fs1{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fsa{font-size:57.000000px;}
.fs2{font-size:60.000000px;}
.fs7{font-size:63.000000px;}
.fs3{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs4{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y21{bottom:76.325850px;}
.y1{bottom:76.337550px;}
.y99{bottom:140.311500px;}
.y20{bottom:142.648650px;}
.y75{bottom:144.106500px;}
.y3f{bottom:146.621850px;}
.y53{bottom:153.396150px;}
.y98{bottom:162.363000px;}
.y1f{bottom:164.248650px;}
.y74{bottom:165.112500px;}
.y3e{bottom:168.221850px;}
.y52{bottom:181.380150px;}
.y1e{bottom:185.848650px;}
.y3d{bottom:189.821850px;}
.y97{bottom:193.312350px;}
.y73{bottom:203.512500px;}
.y1d{bottom:207.448650px;}
.y51{bottom:209.364150px;}
.y96{bottom:214.912350px;}
.y1c{bottom:229.048650px;}
.y3c{bottom:232.648800px;}
.y95{bottom:236.512350px;}
.y50{bottom:237.348150px;}
.y72{bottom:238.912500px;}
.y1b{bottom:250.648650px;}
.y94{bottom:258.112350px;}
.y71{bottom:260.512500px;}
.y3b{bottom:264.147300px;}
.y4f{bottom:265.332150px;}
.y1a{bottom:272.248650px;}
.y93{bottom:279.712350px;}
.y70{bottom:282.112500px;}
.yb0{bottom:287.004600px;}
.y19{bottom:293.848650px;}
.y3a{bottom:295.645800px;}
.y4e{bottom:299.500800px;}
.y92{bottom:301.312350px;}
.y18{bottom:315.448650px;}
.y4d{bottom:319.300800px;}
.y6f{bottom:321.710250px;}
.y91{bottom:322.912350px;}
.yaf{bottom:325.704600px;}
.y39{bottom:327.144300px;}
.y17{bottom:337.048650px;}
.y6e{bottom:340.311000px;}
.y90{bottom:344.512350px;}
.yae{bottom:345.504600px;}
.y38{bottom:358.642800px;}
.y16{bottom:358.648650px;}
.y6d{bottom:358.911750px;}
.y4c{bottom:360.682800px;}
.yad{bottom:365.304600px;}
.y8f{bottom:366.112350px;}
.y6c{bottom:377.512500px;}
.y15{bottom:380.248650px;}
.y4b{bottom:381.688800px;}
.yac{bottom:385.104600px;}
.y8e{bottom:387.712350px;}
.y37{bottom:390.141300px;}
.y14{bottom:401.848650px;}
.y4a{bottom:402.694800px;}
.yab{bottom:404.904600px;}
.y8d{bottom:409.312350px;}
.y6b{bottom:413.512500px;}
.y36{bottom:421.639800px;}
.y13{bottom:423.448650px;}
.y49{bottom:423.700800px;}
.yaa{bottom:424.704600px;}
.y8c{bottom:430.912350px;}
.y6a{bottom:435.112500px;}
.ya9{bottom:444.504600px;}
.y12{bottom:445.048650px;}
.y8b{bottom:452.512350px;}
.y35{bottom:453.138300px;}
.y48{bottom:462.691800px;}
.ya8{bottom:464.304600px;}
.y11{bottom:466.648650px;}
.y69{bottom:474.109500px;}
.y8a{bottom:474.112350px;}
.y47{bottom:480.694050px;}
.ya7{bottom:484.104600px;}
.y34{bottom:484.636800px;}
.y10{bottom:488.248650px;}
.y68{bottom:492.710250px;}
.y89{bottom:495.712350px;}
.y46{bottom:498.696300px;}
.ya6{bottom:503.904600px;}
.yf{bottom:509.848650px;}
.y67{bottom:511.311000px;}
.y33{bottom:516.135300px;}
.y45{bottom:516.698550px;}
.y88{bottom:517.312350px;}
.ya5{bottom:523.704600px;}
.y66{bottom:529.911750px;}
.ye{bottom:531.448650px;}
.y44{bottom:534.700800px;}
.y87{bottom:538.912350px;}
.ya4{bottom:543.504600px;}
.y32{bottom:547.633800px;}
.y65{bottom:548.512500px;}
.yd{bottom:553.048650px;}
.y86{bottom:560.512500px;}
.ya3{bottom:563.304600px;}
.ybf{bottom:568.208550px;}
.y43{bottom:570.598800px;}
.yc{bottom:574.648650px;}
.y31{bottom:579.132300px;}
.y85{bottom:582.112500px;}
.ya2{bottom:583.104600px;}
.y64{bottom:584.416500px;}
.ybe{bottom:586.208550px;}
.y42{bottom:591.604800px;}
.yb{bottom:596.248650px;}
.ya1{bottom:602.904600px;}
.y84{bottom:603.712500px;}
.ybd{bottom:604.208550px;}
.y63{bottom:605.872500px;}
.y41{bottom:612.610800px;}
.y30{bottom:613.300800px;}
.ya{bottom:617.848650px;}
.ybc{bottom:622.208550px;}
.ya0{bottom:622.704600px;}
.y83{bottom:625.312500px;}
.y62{bottom:627.328500px;}
.y40{bottom:633.616800px;}
.y9{bottom:639.448500px;}
.y9f{bottom:642.504600px;}
.y82{bottom:646.912500px;}
.y61{bottom:648.784500px;}
.y2f{bottom:654.622800px;}
.y8{bottom:661.048500px;}
.y9e{bottom:662.304600px;}
.y81{bottom:668.512500px;}
.y60{bottom:670.240500px;}
.y2e{bottom:675.628800px;}
.ybb{bottom:681.608550px;}
.y9d{bottom:682.104600px;}
.y7{bottom:682.648500px;}
.y80{bottom:690.112500px;}
.y5f{bottom:691.696500px;}
.y2d{bottom:696.634800px;}
.yba{bottom:701.408550px;}
.y9c{bottom:701.904600px;}
.y6{bottom:704.248500px;}
.y7f{bottom:711.712500px;}
.y5e{bottom:713.152500px;}
.y2c{bottom:717.640800px;}
.yb9{bottom:721.208550px;}
.y9b{bottom:721.704600px;}
.y5{bottom:725.848500px;}
.y7e{bottom:733.312500px;}
.y5d{bottom:734.608500px;}
.y2b{bottom:738.646800px;}
.yb8{bottom:741.008550px;}
.y9a{bottom:750.008400px;}
.y7d{bottom:754.912500px;}
.y5c{bottom:756.064500px;}
.y2a{bottom:759.652800px;}
.yb7{bottom:760.808550px;}
.y7c{bottom:776.512500px;}
.y5b{bottom:777.520500px;}
.yb6{bottom:780.608550px;}
.y29{bottom:780.658800px;}
.y7b{bottom:798.112500px;}
.y5a{bottom:798.976500px;}
.yb5{bottom:800.408550px;}
.y28{bottom:801.664800px;}
.y7a{bottom:819.712500px;}
.yb4{bottom:820.208550px;}
.y59{bottom:820.432500px;}
.y27{bottom:822.670800px;}
.yb3{bottom:840.008550px;}
.y79{bottom:841.312500px;}
.y58{bottom:841.888500px;}
.y26{bottom:843.676800px;}
.y4{bottom:855.448650px;}
.yb2{bottom:859.808550px;}
.y78{bottom:862.912500px;}
.y57{bottom:863.344500px;}
.y25{bottom:864.682800px;}
.y77{bottom:884.512500px;}
.y56{bottom:884.800500px;}
.y24{bottom:885.688800px;}
.yb1{bottom:899.408550px;}
.y76{bottom:906.112500px;}
.y55{bottom:906.256500px;}
.y23{bottom:906.694800px;}
.y3{bottom:910.710000px;}
.y22{bottom:927.700800px;}
.y54{bottom:927.712500px;}
.y2{bottom:928.710000px;}
.h10{height:26.199902px;}
.ha{height:28.977539px;}
.h9{height:35.663086px;}
.h13{height:39.990234px;}
.h2{height:40.757812px;}
.h3{height:41.396484px;}
.h12{height:43.989258px;}
.hc{height:45.536133px;}
.hd{height:47.988281px;}
.h11{height:48.399902px;}
.hf{height:49.675781px;}
.h5{height:50.947266px;}
.h4{height:53.367188px;}
.he{height:53.494629px;}
.hb{height:56.041992px;}
.h7{height:61.136719px;}
.h8{height:61.137319px;}
.h6{height:86.610352px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x3{left:76.535400px;}
.xb{left:85.039350px;}
.x4{left:97.799550px;}
.x9{left:106.293900px;}
.x7{left:119.055150px;}
.xc{left:140.307150px;}
.x5{left:150.670350px;}
.xa{left:170.078700px;}
.x6{left:270.577950px;}
.x1{left:328.448100px;}
.x8{left:330.957900px;}
.xd{left:543.209400px;}
.x2{left:572.164350px;}
@media print{
.v4{vertical-align:-19.733333pt;}
.v2{vertical-align:-2.650667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.650667pt;}
.v3{vertical-align:23.680000pt;}
.lsb{letter-spacing:-3.461333pt;}
.lsa{letter-spacing:-2.496000pt;}
.ls11{letter-spacing:-0.320000pt;}
.ls16{letter-spacing:-0.280000pt;}
.ls4{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.280000pt;}
.ls1b{letter-spacing:0.293333pt;}
.ls18{letter-spacing:0.320000pt;}
.ls1a{letter-spacing:2.992000pt;}
.lsc{letter-spacing:3.456000pt;}
.ls13{letter-spacing:3.640000pt;}
.ls0{letter-spacing:3.733333pt;}
.ls10{letter-spacing:4.088000pt;}
.ls5{letter-spacing:4.800000pt;}
.ls12{letter-spacing:5.333333pt;}
.ls1{letter-spacing:5.866667pt;}
.lsd{letter-spacing:6.080000pt;}
.ls15{letter-spacing:6.328000pt;}
.ls1c{letter-spacing:6.400000pt;}
.ls14{letter-spacing:7.784000pt;}
.lsf{letter-spacing:8.848000pt;}
.ls2{letter-spacing:9.066667pt;}
.ls3{letter-spacing:9.248000pt;}
.ls19{letter-spacing:9.738667pt;}
.ls17{letter-spacing:11.648000pt;}
.ls1d{letter-spacing:17.600000pt;}
.ls8{letter-spacing:384.560000pt;}
.ls6{letter-spacing:387.024000pt;}
.ls7{letter-spacing:388.784000pt;}
.ls9{letter-spacing:391.072000pt;}
.ws6{word-spacing:-403.509333pt;}
.ws1e{word-spacing:-20.320000pt;}
.ws1b{word-spacing:-17.984000pt;}
.ws20{word-spacing:-16.778667pt;}
.ws1f{word-spacing:-16.485333pt;}
.ws1d{word-spacing:-16.128000pt;}
.ws1{word-spacing:-15.808000pt;}
.ws15{word-spacing:-15.736000pt;}
.ws14{word-spacing:-15.488000pt;}
.ws19{word-spacing:-15.456000pt;}
.ws3{word-spacing:-14.986667pt;}
.wsb{word-spacing:-14.490667pt;}
.ws1c{word-spacing:-12.514667pt;}
.ws1a{word-spacing:-10.790400pt;}
.ws0{word-spacing:-10.538667pt;}
.ws2{word-spacing:0.000000pt;}
.ws5{word-spacing:234.138667pt;}
.ws4{word-spacing:273.856000pt;}
.wsc{word-spacing:286.997333pt;}
.wsa{word-spacing:372.298667pt;}
.wsf{word-spacing:376.405333pt;}
.ws10{word-spacing:408.202667pt;}
.ws11{word-spacing:418.410667pt;}
.ws8{word-spacing:425.802667pt;}
.wse{word-spacing:447.626667pt;}
.ws9{word-spacing:451.498667pt;}
.ws12{word-spacing:509.930667pt;}
.ws17{word-spacing:521.429333pt;}
.ws7{word-spacing:523.541333pt;}
.wsd{word-spacing:549.530667pt;}
.ws18{word-spacing:550.762667pt;}
.ws13{word-spacing:564.784000pt;}
.ws16{word-spacing:663.226667pt;}
._12{margin-left:-387.024000pt;}
._20{margin-left:-19.557333pt;}
._15{margin-left:-17.449600pt;}
._1f{margin-left:-16.261333pt;}
._14{margin-left:-12.618667pt;}
._21{margin-left:-10.917333pt;}
._1d{margin-left:-9.072000pt;}
._f{margin-left:-6.933333pt;}
._4{margin-left:-5.893333pt;}
._2{margin-left:-4.666667pt;}
._1{margin-left:-3.757037pt;}
._8{margin-left:-2.746667pt;}
._0{margin-left:-1.493333pt;}
._6{width:0.960000pt;}
._3{width:2.133333pt;}
._5{width:3.200000pt;}
._7{width:4.565333pt;}
._9{width:5.717333pt;}
._d{width:7.367704pt;}
._b{width:8.314667pt;}
._a{width:9.472000pt;}
._c{width:10.453333pt;}
._1c{width:11.381333pt;}
._e{width:12.288000pt;}
._10{width:13.525333pt;}
._1b{width:14.720000pt;}
._1e{width:50.598933pt;}
._19{width:214.138667pt;}
._18{width:271.984000pt;}
._11{width:292.101333pt;}
._17{width:307.530667pt;}
._13{width:392.890667pt;}
._16{width:563.754667pt;}
._1a{width:994.954667pt;}
.fs9{font-size:32.000000pt;}
.fs0{font-size:37.333333pt;}
.fs8{font-size:38.400000pt;}
.fs1{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fsa{font-size:50.666667pt;}
.fs2{font-size:53.333333pt;}
.fs7{font-size:56.000000pt;}
.fs3{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs4{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y21{bottom:67.845200pt;}
.y1{bottom:67.855600pt;}
.y99{bottom:124.721333pt;}
.y20{bottom:126.798800pt;}
.y75{bottom:128.094667pt;}
.y3f{bottom:130.330533pt;}
.y53{bottom:136.352133pt;}
.y98{bottom:144.322667pt;}
.y1f{bottom:145.998800pt;}
.y74{bottom:146.766667pt;}
.y3e{bottom:149.530533pt;}
.y52{bottom:161.226800pt;}
.y1e{bottom:165.198800pt;}
.y3d{bottom:168.730533pt;}
.y97{bottom:171.833200pt;}
.y73{bottom:180.900000pt;}
.y1d{bottom:184.398800pt;}
.y51{bottom:186.101467pt;}
.y96{bottom:191.033200pt;}
.y1c{bottom:203.598800pt;}
.y3c{bottom:206.798933pt;}
.y95{bottom:210.233200pt;}
.y50{bottom:210.976133pt;}
.y72{bottom:212.366667pt;}
.y1b{bottom:222.798800pt;}
.y94{bottom:229.433200pt;}
.y71{bottom:231.566667pt;}
.y3b{bottom:234.797600pt;}
.y4f{bottom:235.850800pt;}
.y1a{bottom:241.998800pt;}
.y93{bottom:248.633200pt;}
.y70{bottom:250.766667pt;}
.yb0{bottom:255.115200pt;}
.y19{bottom:261.198800pt;}
.y3a{bottom:262.796267pt;}
.y4e{bottom:266.222933pt;}
.y92{bottom:267.833200pt;}
.y18{bottom:280.398800pt;}
.y4d{bottom:283.822933pt;}
.y6f{bottom:285.964667pt;}
.y91{bottom:287.033200pt;}
.yaf{bottom:289.515200pt;}
.y39{bottom:290.794933pt;}
.y17{bottom:299.598800pt;}
.y6e{bottom:302.498667pt;}
.y90{bottom:306.233200pt;}
.yae{bottom:307.115200pt;}
.y38{bottom:318.793600pt;}
.y16{bottom:318.798800pt;}
.y6d{bottom:319.032667pt;}
.y4c{bottom:320.606933pt;}
.yad{bottom:324.715200pt;}
.y8f{bottom:325.433200pt;}
.y6c{bottom:335.566667pt;}
.y15{bottom:337.998800pt;}
.y4b{bottom:339.278933pt;}
.yac{bottom:342.315200pt;}
.y8e{bottom:344.633200pt;}
.y37{bottom:346.792267pt;}
.y14{bottom:357.198800pt;}
.y4a{bottom:357.950933pt;}
.yab{bottom:359.915200pt;}
.y8d{bottom:363.833200pt;}
.y6b{bottom:367.566667pt;}
.y36{bottom:374.790933pt;}
.y13{bottom:376.398800pt;}
.y49{bottom:376.622933pt;}
.yaa{bottom:377.515200pt;}
.y8c{bottom:383.033200pt;}
.y6a{bottom:386.766667pt;}
.ya9{bottom:395.115200pt;}
.y12{bottom:395.598800pt;}
.y8b{bottom:402.233200pt;}
.y35{bottom:402.789600pt;}
.y48{bottom:411.281600pt;}
.ya8{bottom:412.715200pt;}
.y11{bottom:414.798800pt;}
.y69{bottom:421.430667pt;}
.y8a{bottom:421.433200pt;}
.y47{bottom:427.283600pt;}
.ya7{bottom:430.315200pt;}
.y34{bottom:430.788267pt;}
.y10{bottom:433.998800pt;}
.y68{bottom:437.964667pt;}
.y89{bottom:440.633200pt;}
.y46{bottom:443.285600pt;}
.ya6{bottom:447.915200pt;}
.yf{bottom:453.198800pt;}
.y67{bottom:454.498667pt;}
.y33{bottom:458.786933pt;}
.y45{bottom:459.287600pt;}
.y88{bottom:459.833200pt;}
.ya5{bottom:465.515200pt;}
.y66{bottom:471.032667pt;}
.ye{bottom:472.398800pt;}
.y44{bottom:475.289600pt;}
.y87{bottom:479.033200pt;}
.ya4{bottom:483.115200pt;}
.y32{bottom:486.785600pt;}
.y65{bottom:487.566667pt;}
.yd{bottom:491.598800pt;}
.y86{bottom:498.233333pt;}
.ya3{bottom:500.715200pt;}
.ybf{bottom:505.074267pt;}
.y43{bottom:507.198933pt;}
.yc{bottom:510.798800pt;}
.y31{bottom:514.784267pt;}
.y85{bottom:517.433333pt;}
.ya2{bottom:518.315200pt;}
.y64{bottom:519.481333pt;}
.ybe{bottom:521.074267pt;}
.y42{bottom:525.870933pt;}
.yb{bottom:529.998800pt;}
.ya1{bottom:535.915200pt;}
.y84{bottom:536.633333pt;}
.ybd{bottom:537.074267pt;}
.y63{bottom:538.553333pt;}
.y41{bottom:544.542933pt;}
.y30{bottom:545.156267pt;}
.ya{bottom:549.198800pt;}
.ybc{bottom:553.074267pt;}
.ya0{bottom:553.515200pt;}
.y83{bottom:555.833333pt;}
.y62{bottom:557.625333pt;}
.y40{bottom:563.214933pt;}
.y9{bottom:568.398667pt;}
.y9f{bottom:571.115200pt;}
.y82{bottom:575.033333pt;}
.y61{bottom:576.697333pt;}
.y2f{bottom:581.886933pt;}
.y8{bottom:587.598667pt;}
.y9e{bottom:588.715200pt;}
.y81{bottom:594.233333pt;}
.y60{bottom:595.769333pt;}
.y2e{bottom:600.558933pt;}
.ybb{bottom:605.874267pt;}
.y9d{bottom:606.315200pt;}
.y7{bottom:606.798667pt;}
.y80{bottom:613.433333pt;}
.y5f{bottom:614.841333pt;}
.y2d{bottom:619.230933pt;}
.yba{bottom:623.474267pt;}
.y9c{bottom:623.915200pt;}
.y6{bottom:625.998667pt;}
.y7f{bottom:632.633333pt;}
.y5e{bottom:633.913333pt;}
.y2c{bottom:637.902933pt;}
.yb9{bottom:641.074267pt;}
.y9b{bottom:641.515200pt;}
.y5{bottom:645.198667pt;}
.y7e{bottom:651.833333pt;}
.y5d{bottom:652.985333pt;}
.y2b{bottom:656.574933pt;}
.yb8{bottom:658.674267pt;}
.y9a{bottom:666.674133pt;}
.y7d{bottom:671.033333pt;}
.y5c{bottom:672.057333pt;}
.y2a{bottom:675.246933pt;}
.yb7{bottom:676.274267pt;}
.y7c{bottom:690.233333pt;}
.y5b{bottom:691.129333pt;}
.yb6{bottom:693.874267pt;}
.y29{bottom:693.918933pt;}
.y7b{bottom:709.433333pt;}
.y5a{bottom:710.201333pt;}
.yb5{bottom:711.474267pt;}
.y28{bottom:712.590933pt;}
.y7a{bottom:728.633333pt;}
.yb4{bottom:729.074267pt;}
.y59{bottom:729.273333pt;}
.y27{bottom:731.262933pt;}
.yb3{bottom:746.674267pt;}
.y79{bottom:747.833333pt;}
.y58{bottom:748.345333pt;}
.y26{bottom:749.934933pt;}
.y4{bottom:760.398800pt;}
.yb2{bottom:764.274267pt;}
.y78{bottom:767.033333pt;}
.y57{bottom:767.417333pt;}
.y25{bottom:768.606933pt;}
.y77{bottom:786.233333pt;}
.y56{bottom:786.489333pt;}
.y24{bottom:787.278933pt;}
.yb1{bottom:799.474267pt;}
.y76{bottom:805.433333pt;}
.y55{bottom:805.561333pt;}
.y23{bottom:805.950933pt;}
.y3{bottom:809.520000pt;}
.y22{bottom:824.622933pt;}
.y54{bottom:824.633333pt;}
.y2{bottom:825.520000pt;}
.h10{height:23.288802pt;}
.ha{height:25.757812pt;}
.h9{height:31.700521pt;}
.h13{height:35.546875pt;}
.h2{height:36.229167pt;}
.h3{height:36.796875pt;}
.h12{height:39.101562pt;}
.hc{height:40.476562pt;}
.hd{height:42.656250pt;}
.h11{height:43.022135pt;}
.hf{height:44.156250pt;}
.h5{height:45.286458pt;}
.h4{height:47.437500pt;}
.he{height:47.550781pt;}
.hb{height:49.815104pt;}
.h7{height:54.343750pt;}
.h8{height:54.344283pt;}
.h6{height:76.986979pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x3{left:68.031467pt;}
.xb{left:75.590533pt;}
.x4{left:86.932933pt;}
.x9{left:94.483467pt;}
.x7{left:105.826800pt;}
.xc{left:124.717467pt;}
.x5{left:133.929200pt;}
.xa{left:151.181067pt;}
.x6{left:240.513733pt;}
.x1{left:291.953867pt;}
.x8{left:294.184800pt;}
.xd{left:482.852800pt;}
.x2{left:508.590533pt;}
}




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