
    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_29fbf19804bf921aa9ed43fd.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_e4b55604b2dee1ea14e293d4.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.715000;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_ccc31dbfaa874d8436e8b8fc.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.905000;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_b74499a8c009a2253a4f0635.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.888000;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_c0d1c56442a88c71fc961d76.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.901000;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_2cc13d77209c15ff6f3eb2e2.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.699000;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_9689ead75bead4bddd71c021.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.923000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls3{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.003150px;}
.lsc{letter-spacing:19.028338px;}
.ls7{letter-spacing:31.382190px;}
.ls0{letter-spacing:71.728363px;}
.lsa{letter-spacing:188.293140px;}
.lsb{letter-spacing:197.260363px;}
.ls8{letter-spacing:260.020363px;}
.ls5{letter-spacing:260.026363px;}
.ls9{letter-spacing:448.318363px;}
.ls4{letter-spacing:730.756363px;}
.ls2{letter-spacing:762.136363px;}
.ls6{letter-spacing:1107.340363px;}
.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;}
}
.ws32{word-spacing:-31.382190px;}
.ws17{word-spacing:-19.092327px;}
.ws0{word-spacing:-16.605662px;}
.ws10{word-spacing:-8.788470px;}
.wsf{word-spacing:-8.784660px;}
.ws25{word-spacing:-5.223947px;}
.ws1d{word-spacing:-2.992473px;}
.ws24{word-spacing:-2.737722px;}
.ws2d{word-spacing:-2.061947px;}
.ws1c{word-spacing:-1.482435px;}
.ws18{word-spacing:-1.064006px;}
.ws29{word-spacing:-1.045137px;}
.ws27{word-spacing:-0.984712px;}
.ws1a{word-spacing:-0.467428px;}
.wsb{word-spacing:0.000000px;}
.ws2c{word-spacing:0.430384px;}
.wsa{word-spacing:0.518802px;}
.wsd{word-spacing:0.831618px;}
.ws1e{word-spacing:0.835308px;}
.ws15{word-spacing:0.835878px;}
.ws30{word-spacing:0.836526px;}
.ws6{word-spacing:1.267243px;}
.ws2a{word-spacing:1.446570px;}
.ws28{word-spacing:1.469246px;}
.ws26{word-spacing:1.506345px;}
.ws19{word-spacing:2.044326px;}
.ws31{word-spacing:2.402979px;}
.ws9{word-spacing:3.000735px;}
.ws13{word-spacing:3.290929px;}
.ws4{word-spacing:3.299613px;}
.wse{word-spacing:3.359389px;}
.ws5{word-spacing:5.379825px;}
.ws7{word-spacing:5.630862px;}
.ws1b{word-spacing:5.650529px;}
.ws23{word-spacing:5.651494px;}
.ws2f{word-spacing:5.652572px;}
.ws3{word-spacing:6.168842px;}
.ws1{word-spacing:6.496290px;}
.ws33{word-spacing:8.048218px;}
.ws2e{word-spacing:9.038071px;}
.ws8{word-spacing:23.432035px;}
.ws14{word-spacing:24.435066px;}
.ws11{word-spacing:31.382190px;}
.wsc{word-spacing:58.281600px;}
.ws2{word-spacing:69.937725px;}
.ws12{word-spacing:71.696839px;}
.ws22{word-spacing:103.082839px;}
.ws2b{word-spacing:125.528760px;}
.ws1f{word-spacing:197.228839px;}
.ws16{word-spacing:259.988839px;}
.ws20{word-spacing:282.439710px;}
.ws21{word-spacing:313.821900px;}
._2{margin-left:-56.904525px;}
._17{margin-left:-51.129857px;}
._3{margin-left:-48.375386px;}
._15{margin-left:-31.382190px;}
._4{margin-left:-29.887800px;}
._d{margin-left:-28.214083px;}
._b{margin-left:-23.252708px;}
._13{margin-left:-8.091257px;}
._a{margin-left:-6.635092px;}
._14{margin-left:-5.336786px;}
._1{margin-left:-3.223350px;}
._0{margin-left:-1.673717px;}
._5{width:1.733492px;}
._9{width:3.287658px;}
._7{width:5.336786px;}
._16{width:20.457872px;}
._8{width:21.500819px;}
._10{width:22.593150px;}
._c{width:24.794015px;}
._f{width:31.382190px;}
._e{width:62.764380px;}
._6{width:96.836850px;}
._12{width:188.293140px;}
._11{width:407.968470px;}
.fc6{color:rgb(0,135,0);}
.fc5{color:rgb(102,0,237);}
.fc3{color:rgb(153,102,51);}
.fc1{color:rgb(0,112,33);}
.fc4{color:rgb(51,51,51);}
.fc2{color:rgb(135,135,135);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:29.887800px;}
.fs0{font-size:59.775600px;}
.fs4{font-size:71.731200px;}
.fs2{font-size:86.077200px;}
.fs1{font-size:123.975000px;}
.y0{bottom:0.000000px;}
.y20{bottom:40.207500px;}
.y9d{bottom:99.984000px;}
.y8b{bottom:104.877000px;}
.y7a{bottom:108.714000px;}
.y9c{bottom:117.916500px;}
.y5a{bottom:123.066000px;}
.y79{bottom:126.646500px;}
.y9b{bottom:135.849000px;}
.y8a{bottom:142.524000px;}
.y78{bottom:144.579000px;}
.y9a{bottom:153.781500px;}
.y59{bottom:162.787500px;}
.y99{bottom:171.714000px;}
.y1f{bottom:176.403000px;}
.y77{bottom:177.310500px;}
.y89{bottom:182.130000px;}
.y98{bottom:189.646500px;}
.y90{bottom:200.683500px;}
.y58{bottom:201.148500px;}
.y1e{bottom:212.803500px;}
.y88{bottom:221.851500px;}
.y97{bottom:222.523500px;}
.y76{bottom:226.729500px;}
.y1d{bottom:230.737500px;}
.y8f{bottom:233.415000px;}
.y57{bottom:240.870000px;}
.y75{bottom:244.662000px;}
.y56{bottom:258.802500px;}
.y87{bottom:261.457500px;}
.y1c{bottom:270.343500px;}
.y55{bottom:276.735000px;}
.y74{bottom:284.383500px;}
.y8e{bottom:285.739500px;}
.y54{bottom:294.669000px;}
.y86{bottom:297.858000px;}
.y1b{bottom:306.744000px;}
.y53{bottom:312.601500px;}
.y73{bottom:323.989500px;}
.y43{bottom:325.443000px;}
.y52{bottom:330.534000px;}
.y85{bottom:336.219000px;}
.y72{bottom:341.922000px;}
.y1a{bottom:345.105000px;}
.y42{bottom:361.843500px;}
.y51{bottom:368.895000px;}
.y19{bottom:372.688500px;}
.y84{bottom:374.989500px;}
.y71{bottom:378.324000px;}
.y41{bottom:379.776000px;}
.y70{bottom:396.256500px;}
.y40{bottom:397.708500px;}
.y50{bottom:408.616500px;}
.y6f{bottom:414.189000px;}
.y18{bottom:414.520500px;}
.y3f{bottom:415.641000px;}
.y6e{bottom:432.121500px;}
.y3e{bottom:433.575000px;}
.y4f{bottom:446.976000px;}
.y17{bottom:447.252000px;}
.y6d{bottom:450.054000px;}
.y3d{bottom:451.507500px;}
.y6c{bottom:467.988000px;}
.y3c{bottom:469.440000px;}
.y4e{bottom:474.561000px;}
.y6b{bottom:485.920500px;}
.y3b{bottom:487.372500px;}
.y6a{bottom:503.853000px;}
.y3a{bottom:505.305000px;}
.y16{bottom:509.494500px;}
.y4d{bottom:516.393000px;}
.y69{bottom:521.785500px;}
.y39{bottom:523.237500px;}
.y4c{bottom:534.325500px;}
.y68{bottom:539.718000px;}
.y38{bottom:541.171500px;}
.y15{bottom:549.100500px;}
.y67{bottom:557.650500px;}
.y37{bottom:559.104000px;}
.y4b{bottom:567.057000px;}
.y66{bottom:575.584500px;}
.y36{bottom:577.036500px;}
.y14{bottom:585.501000px;}
.y65{bottom:593.517000px;}
.y13{bottom:603.433500px;}
.y64{bottom:611.449500px;}
.y96{bottom:612.006000px;}
.y35{bottom:615.397500px;}
.y12{bottom:621.366000px;}
.y4a{bottom:629.299500px;}
.y63{bottom:629.382000px;}
.y95{bottom:629.938500px;}
.y11{bottom:639.298500px;}
.y62{bottom:647.314500px;}
.y94{bottom:647.871000px;}
.y34{bottom:648.129000px;}
.y10{bottom:657.232500px;}
.y61{bottom:665.247000px;}
.y49{bottom:668.905500px;}
.yf{bottom:675.165000px;}
.y8d{bottom:682.666500px;}
.y60{bottom:683.181000px;}
.y33{bottom:697.546500px;}
.y5f{bottom:701.113500px;}
.y48{bottom:701.637000px;}
.ye{bottom:713.524500px;}
.y32{bottom:715.480500px;}
.y5e{bottom:719.046000px;}
.y8c{bottom:721.437000px;}
.y5d{bottom:736.978500px;}
.y47{bottom:751.054500px;}
.y31{bottom:751.881000px;}
.yd{bottom:753.247500px;}
.y5c{bottom:754.911000px;}
.yc{bottom:771.180000px;}
.y5b{bottom:772.843500px;}
.y83{bottom:778.846500px;}
.y30{bottom:790.242000px;}
.y46{bottom:790.777500px;}
.ya5{bottom:793.807500px;}
.y82{bottom:796.779000px;}
.y45{bottom:808.710000px;}
.yb{bottom:809.541000px;}
.y2f{bottom:826.642500px;}
.ya{bottom:827.473500px;}
.ya4{bottom:829.672500px;}
.y81{bottom:834.601500px;}
.y2e{bottom:844.575000px;}
.y80{bottom:852.534000px;}
.ya3{bottom:862.404000px;}
.y2d{bottom:862.507500px;}
.y9{bottom:863.338500px;}
.y7f{bottom:870.468000px;}
.y44{bottom:880.440000px;}
.y2c{bottom:880.441500px;}
.y8{bottom:881.271000px;}
.y2b{bottom:898.374000px;}
.y7{bottom:899.203500px;}
.y7e{bottom:908.827500px;}
.y2a{bottom:916.306500px;}
.y7d{bottom:926.760000px;}
.ya2{bottom:929.755500px;}
.y6{bottom:931.935000px;}
.y29{bottom:934.239000px;}
.ya1{bottom:947.688000px;}
.y28{bottom:952.171500px;}
.y7c{bottom:964.407000px;}
.ya0{bottom:965.622000px;}
.y27{bottom:970.104000px;}
.y5{bottom:981.354000px;}
.y9f{bottom:983.554500px;}
.y26{bottom:988.038000px;}
.y4{bottom:999.286500px;}
.y7b{bottom:1004.013000px;}
.y25{bottom:1005.970500px;}
.y9e{bottom:1019.419500px;}
.y24{bottom:1023.903000px;}
.y3{bottom:1032.018000px;}
.y93{bottom:1037.352000px;}
.y23{bottom:1041.835500px;}
.y92{bottom:1055.286000px;}
.y22{bottom:1059.768000px;}
.y21{bottom:1077.700500px;}
.y2{bottom:1081.437000px;}
.y91{bottom:1088.016000px;}
.y1{bottom:1145.700000px;}
.h6{height:20.234041px;}
.h4{height:41.484266px;}
.h1{height:44.831700px;}
.h5{height:50.498765px;}
.h3{height:60.598349px;}
.h2{height:86.658525px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x6{left:67.566000px;}
.x4{left:72.651000px;}
.x1{left:85.039500px;}
.x3{left:107.455500px;}
.xa{left:122.400000px;}
.x9{left:127.720500px;}
.x7{left:152.419500px;}
.x8{left:197.418000px;}
.x2{left:316.152000px;}
.x5{left:339.087000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.002800pt;}
.lsc{letter-spacing:16.914079pt;}
.ls7{letter-spacing:27.895280pt;}
.ls0{letter-spacing:63.758545pt;}
.lsa{letter-spacing:167.371680pt;}
.lsb{letter-spacing:175.342545pt;}
.ls8{letter-spacing:231.129212pt;}
.ls5{letter-spacing:231.134545pt;}
.ls9{letter-spacing:398.505212pt;}
.ls4{letter-spacing:649.561212pt;}
.ls2{letter-spacing:677.454545pt;}
.ls6{letter-spacing:984.302545pt;}
.ws32{word-spacing:-27.895280pt;}
.ws17{word-spacing:-16.970957pt;}
.ws0{word-spacing:-14.760588pt;}
.ws10{word-spacing:-7.811973pt;}
.wsf{word-spacing:-7.808587pt;}
.ws25{word-spacing:-4.643508pt;}
.ws1d{word-spacing:-2.659976pt;}
.ws24{word-spacing:-2.433531pt;}
.ws2d{word-spacing:-1.832841pt;}
.ws1c{word-spacing:-1.317720pt;}
.ws18{word-spacing:-0.945783pt;}
.ws29{word-spacing:-0.929010pt;}
.ws27{word-spacing:-0.875300pt;}
.ws1a{word-spacing:-0.415492pt;}
.wsb{word-spacing:0.000000pt;}
.ws2c{word-spacing:0.382564pt;}
.wsa{word-spacing:0.461157pt;}
.wsd{word-spacing:0.739216pt;}
.ws1e{word-spacing:0.742496pt;}
.ws15{word-spacing:0.743003pt;}
.ws30{word-spacing:0.743579pt;}
.ws6{word-spacing:1.126438pt;}
.ws2a{word-spacing:1.285840pt;}
.ws28{word-spacing:1.305996pt;}
.ws26{word-spacing:1.338973pt;}
.ws19{word-spacing:1.817178pt;}
.ws31{word-spacing:2.135981pt;}
.ws9{word-spacing:2.667320pt;}
.ws13{word-spacing:2.925270pt;}
.ws4{word-spacing:2.932989pt;}
.wse{word-spacing:2.986123pt;}
.ws5{word-spacing:4.782067pt;}
.ws7{word-spacing:5.005210pt;}
.ws1b{word-spacing:5.022693pt;}
.ws23{word-spacing:5.023550pt;}
.ws2f{word-spacing:5.024508pt;}
.ws3{word-spacing:5.483415pt;}
.ws1{word-spacing:5.774480pt;}
.ws33{word-spacing:7.153972pt;}
.ws2e{word-spacing:8.033841pt;}
.ws8{word-spacing:20.828476pt;}
.ws14{word-spacing:21.720059pt;}
.ws11{word-spacing:27.895280pt;}
.wsc{word-spacing:51.805867pt;}
.ws2{word-spacing:62.166867pt;}
.ws12{word-spacing:63.730523pt;}
.ws22{word-spacing:91.629190pt;}
.ws2b{word-spacing:111.581120pt;}
.ws1f{word-spacing:175.314523pt;}
.ws16{word-spacing:231.101190pt;}
.ws20{word-spacing:251.057520pt;}
.ws21{word-spacing:278.952800pt;}
._2{margin-left:-50.581800pt;}
._17{margin-left:-45.448762pt;}
._3{margin-left:-43.000343pt;}
._15{margin-left:-27.895280pt;}
._4{margin-left:-26.566933pt;}
._d{margin-left:-25.079185pt;}
._b{margin-left:-20.669074pt;}
._13{margin-left:-7.192228pt;}
._a{margin-left:-5.897859pt;}
._14{margin-left:-4.743810pt;}
._1{margin-left:-2.865200pt;}
._0{margin-left:-1.487748pt;}
._5{width:1.540882pt;}
._9{width:2.922363pt;}
._7{width:4.743810pt;}
._16{width:18.184775pt;}
._8{width:19.111839pt;}
._10{width:20.082800pt;}
._c{width:22.039124pt;}
._f{width:27.895280pt;}
._e{width:55.790560pt;}
._6{width:86.077200pt;}
._12{width:167.371680pt;}
._11{width:362.638640pt;}
.fs3{font-size:26.566933pt;}
.fs0{font-size:53.133867pt;}
.fs4{font-size:63.761067pt;}
.fs2{font-size:76.513067pt;}
.fs1{font-size:110.200000pt;}
.y0{bottom:0.000000pt;}
.y20{bottom:35.740000pt;}
.y9d{bottom:88.874667pt;}
.y8b{bottom:93.224000pt;}
.y7a{bottom:96.634667pt;}
.y9c{bottom:104.814667pt;}
.y5a{bottom:109.392000pt;}
.y79{bottom:112.574667pt;}
.y9b{bottom:120.754667pt;}
.y8a{bottom:126.688000pt;}
.y78{bottom:128.514667pt;}
.y9a{bottom:136.694667pt;}
.y59{bottom:144.700000pt;}
.y99{bottom:152.634667pt;}
.y1f{bottom:156.802667pt;}
.y77{bottom:157.609333pt;}
.y89{bottom:161.893333pt;}
.y98{bottom:168.574667pt;}
.y90{bottom:178.385333pt;}
.y58{bottom:178.798667pt;}
.y1e{bottom:189.158667pt;}
.y88{bottom:197.201333pt;}
.y97{bottom:197.798667pt;}
.y76{bottom:201.537333pt;}
.y1d{bottom:205.100000pt;}
.y8f{bottom:207.480000pt;}
.y57{bottom:214.106667pt;}
.y75{bottom:217.477333pt;}
.y56{bottom:230.046667pt;}
.y87{bottom:232.406667pt;}
.y1c{bottom:240.305333pt;}
.y55{bottom:245.986667pt;}
.y74{bottom:252.785333pt;}
.y8e{bottom:253.990667pt;}
.y54{bottom:261.928000pt;}
.y86{bottom:264.762667pt;}
.y1b{bottom:272.661333pt;}
.y53{bottom:277.868000pt;}
.y73{bottom:287.990667pt;}
.y43{bottom:289.282667pt;}
.y52{bottom:293.808000pt;}
.y85{bottom:298.861333pt;}
.y72{bottom:303.930667pt;}
.y1a{bottom:306.760000pt;}
.y42{bottom:321.638667pt;}
.y51{bottom:327.906667pt;}
.y19{bottom:331.278667pt;}
.y84{bottom:333.324000pt;}
.y71{bottom:336.288000pt;}
.y41{bottom:337.578667pt;}
.y70{bottom:352.228000pt;}
.y40{bottom:353.518667pt;}
.y50{bottom:363.214667pt;}
.y6f{bottom:368.168000pt;}
.y18{bottom:368.462667pt;}
.y3f{bottom:369.458667pt;}
.y6e{bottom:384.108000pt;}
.y3e{bottom:385.400000pt;}
.y4f{bottom:397.312000pt;}
.y17{bottom:397.557333pt;}
.y6d{bottom:400.048000pt;}
.y3d{bottom:401.340000pt;}
.y6c{bottom:415.989333pt;}
.y3c{bottom:417.280000pt;}
.y4e{bottom:421.832000pt;}
.y6b{bottom:431.929333pt;}
.y3b{bottom:433.220000pt;}
.y6a{bottom:447.869333pt;}
.y3a{bottom:449.160000pt;}
.y16{bottom:452.884000pt;}
.y4d{bottom:459.016000pt;}
.y69{bottom:463.809333pt;}
.y39{bottom:465.100000pt;}
.y4c{bottom:474.956000pt;}
.y68{bottom:479.749333pt;}
.y38{bottom:481.041333pt;}
.y15{bottom:488.089333pt;}
.y67{bottom:495.689333pt;}
.y37{bottom:496.981333pt;}
.y4b{bottom:504.050667pt;}
.y66{bottom:511.630667pt;}
.y36{bottom:512.921333pt;}
.y14{bottom:520.445333pt;}
.y65{bottom:527.570667pt;}
.y13{bottom:536.385333pt;}
.y64{bottom:543.510667pt;}
.y96{bottom:544.005333pt;}
.y35{bottom:547.020000pt;}
.y12{bottom:552.325333pt;}
.y4a{bottom:559.377333pt;}
.y63{bottom:559.450667pt;}
.y95{bottom:559.945333pt;}
.y11{bottom:568.265333pt;}
.y62{bottom:575.390667pt;}
.y94{bottom:575.885333pt;}
.y34{bottom:576.114667pt;}
.y10{bottom:584.206667pt;}
.y61{bottom:591.330667pt;}
.y49{bottom:594.582667pt;}
.yf{bottom:600.146667pt;}
.y8d{bottom:606.814667pt;}
.y60{bottom:607.272000pt;}
.y33{bottom:620.041333pt;}
.y5f{bottom:623.212000pt;}
.y48{bottom:623.677333pt;}
.ye{bottom:634.244000pt;}
.y32{bottom:635.982667pt;}
.y5e{bottom:639.152000pt;}
.y8c{bottom:641.277333pt;}
.y5d{bottom:655.092000pt;}
.y47{bottom:667.604000pt;}
.y31{bottom:668.338667pt;}
.yd{bottom:669.553333pt;}
.y5c{bottom:671.032000pt;}
.yc{bottom:685.493333pt;}
.y5b{bottom:686.972000pt;}
.y83{bottom:692.308000pt;}
.y30{bottom:702.437333pt;}
.y46{bottom:702.913333pt;}
.ya5{bottom:705.606667pt;}
.y82{bottom:708.248000pt;}
.y45{bottom:718.853333pt;}
.yb{bottom:719.592000pt;}
.y2f{bottom:734.793333pt;}
.ya{bottom:735.532000pt;}
.ya4{bottom:737.486667pt;}
.y81{bottom:741.868000pt;}
.y2e{bottom:750.733333pt;}
.y80{bottom:757.808000pt;}
.ya3{bottom:766.581333pt;}
.y2d{bottom:766.673333pt;}
.y9{bottom:767.412000pt;}
.y7f{bottom:773.749333pt;}
.y44{bottom:782.613333pt;}
.y2c{bottom:782.614667pt;}
.y8{bottom:783.352000pt;}
.y2b{bottom:798.554667pt;}
.y7{bottom:799.292000pt;}
.y7e{bottom:807.846667pt;}
.y2a{bottom:814.494667pt;}
.y7d{bottom:823.786667pt;}
.ya2{bottom:826.449333pt;}
.y6{bottom:828.386667pt;}
.y29{bottom:830.434667pt;}
.ya1{bottom:842.389333pt;}
.y28{bottom:846.374667pt;}
.y7c{bottom:857.250667pt;}
.ya0{bottom:858.330667pt;}
.y27{bottom:862.314667pt;}
.y5{bottom:872.314667pt;}
.y9f{bottom:874.270667pt;}
.y26{bottom:878.256000pt;}
.y4{bottom:888.254667pt;}
.y7b{bottom:892.456000pt;}
.y25{bottom:894.196000pt;}
.y9e{bottom:906.150667pt;}
.y24{bottom:910.136000pt;}
.y3{bottom:917.349333pt;}
.y93{bottom:922.090667pt;}
.y23{bottom:926.076000pt;}
.y92{bottom:938.032000pt;}
.y22{bottom:942.016000pt;}
.y21{bottom:957.956000pt;}
.y2{bottom:961.277333pt;}
.y91{bottom:967.125333pt;}
.y1{bottom:1018.400000pt;}
.h6{height:17.985814pt;}
.h4{height:36.874903pt;}
.h1{height:39.850400pt;}
.h5{height:44.887791pt;}
.h3{height:53.865199pt;}
.h2{height:77.029800pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x6{left:60.058667pt;}
.x4{left:64.578667pt;}
.x1{left:75.590667pt;}
.x3{left:95.516000pt;}
.xa{left:108.800000pt;}
.x9{left:113.529333pt;}
.x7{left:135.484000pt;}
.x8{left:175.482667pt;}
.x2{left:281.024000pt;}
.x5{left:301.410667pt;}
}




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