
    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_40f9931a00267eb56b80f348.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005371;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_953ba82a008244585777042e.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_6adde80d960f0084c8f91e05.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005859;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_5bb8850124107d414f7b8419.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.005859;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_4ad8dea2132b62a675a66c4b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.005371;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_76b7a41894ffbcb7a59356eb.woff2')format("woff");}.ff6{font-family:ff6;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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_71c118f0e9ca59cd07bdbeff.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.923340;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_a6a6dd5d71f8729fb8788b58.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.005859;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_0c42cb41bfb95789c239919d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.895996;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_b97b664c3728c0844c87e5b9.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.939453;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_0d9835f377b1514a51847138.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.769531;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_b3786560c61b9c33656ae03b.woff2')format("woff");}.ffc{font-family:ffc;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.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v4{vertical-align:-42.980460px;}
.v3{vertical-align:-29.245320px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:66.839400px;}
.v2{vertical-align:250.077000px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:77.986254px;}
.ls5{letter-spacing:78.000435px;}
.ls2{letter-spacing:107.972016px;}
.ls1{letter-spacing:108.000495px;}
.ls3{letter-spacing:1103.026346px;}
.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;}
}
.ws8{word-spacing:-402.000030px;}
.ws7{word-spacing:-288.000000px;}
.ws5{word-spacing:-275.999985px;}
.ws9{word-spacing:-239.999985px;}
.wsa{word-spacing:-216.000000px;}
.wsd{word-spacing:-32.760000px;}
.ws2{word-spacing:-29.639996px;}
.ws0{word-spacing:-28.080000px;}
.ws13{word-spacing:-26.687996px;}
.ws12{word-spacing:-24.959996px;}
.ws4{word-spacing:-23.400000px;}
.wsf{word-spacing:-21.840004px;}
.wsb{word-spacing:-20.279996px;}
.ws11{word-spacing:-18.984003px;}
.ws10{word-spacing:-18.720000px;}
.wse{word-spacing:-12.480004px;}
.ws1{word-spacing:0.000000px;}
.ws6{word-spacing:59.031450px;}
.wsc{word-spacing:394.689646px;}
.ws3{word-spacing:726.556875px;}
._2{margin-left:-2.256001px;}
._0{margin-left:-1.056000px;}
._4{width:1.372580px;}
._1{width:2.380050px;}
._3{width:3.852001px;}
.fc7{color:rgb(229,116,65);}
.fc6{color:transparent;}
.fc4{color:rgb(24,130,149);}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(89,89,89);}
.fc8{color:rgb(24,83,148);}
.fc5{color:rgb(0,151,167);}
.fc1{color:rgb(224,105,0);}
.fc0{color:rgb(22,77,109);}
.fsf{font-size:48.000015px;}
.fs10{font-size:72.000000px;}
.fsd{font-size:77.999985px;}
.fs2{font-size:84.000015px;}
.fs4{font-size:90.000000px;}
.fs12{font-size:95.999985px;}
.fs1{font-size:108.000000px;}
.fs3{font-size:113.999985px;}
.fs15{font-size:123.120000px;}
.fse{font-size:126.000000px;}
.fs0{font-size:131.999985px;}
.fs13{font-size:133.200000px;}
.fs14{font-size:145.200015px;}
.fsb{font-size:145.800000px;}
.fs11{font-size:156.000015px;}
.fsc{font-size:162.000000px;}
.fsa{font-size:216.000000px;}
.fs9{font-size:239.999985px;}
.fs5{font-size:275.999985px;}
.fs7{font-size:288.000000px;}
.fs6{font-size:396.000000px;}
.fs8{font-size:402.000030px;}
.y0{bottom:0.000000px;}
.y24{bottom:11.525985px;}
.y46{bottom:20.691375px;}
.y2e{bottom:21.075795px;}
.y6{bottom:24.378765px;}
.y4b{bottom:25.070265px;}
.y7f{bottom:25.141185px;}
.y52{bottom:35.974830px;}
.y14{bottom:36.991170px;}
.y1d{bottom:43.175385px;}
.y71{bottom:49.247460px;}
.y70{bottom:50.688405px;}
.y13{bottom:62.383950px;}
.y2c{bottom:63.498000px;}
.y61{bottom:64.054837px;}
.y89{bottom:69.348600px;}
.y5{bottom:72.996735px;}
.y6e{bottom:73.835738px;}
.y2b{bottom:77.898022px;}
.y1e{bottom:82.076835px;}
.y60{bottom:89.254950px;}
.y2a{bottom:92.298022px;}
.y6d{bottom:96.515738px;}
.y4{bottom:102.156735px;}
.y88{bottom:103.728600px;}
.y48{bottom:105.976800px;}
.y29{bottom:106.698011px;}
.y5f{bottom:114.454950px;}
.y1c{bottom:114.793605px;}
.y7e{bottom:119.634300px;}
.y28{bottom:121.098011px;}
.y47{bottom:132.976800px;}
.y6c{bottom:134.195700px;}
.y27{bottom:135.498000px;}
.y5e{bottom:139.654950px;}
.yf{bottom:141.871800px;}
.y12{bottom:146.672100px;}
.y7d{bottom:148.614300px;}
.y26{bottom:149.898000px;}
.y87{bottom:151.728638px;}
.y6b{bottom:156.875700px;}
.ye{bottom:157.561950px;}
.y3{bottom:162.331841px;}
.y25{bottom:164.298000px;}
.y23{bottom:176.976712px;}
.y7c{bottom:177.594300px;}
.y6a{bottom:179.555700px;}
.y5d{bottom:179.855025px;}
.y15{bottom:184.195950px;}
.yd{bottom:184.561950px;}
.y86{bottom:186.108638px;}
.y2{bottom:197.971841px;}
.y11{bottom:199.603500px;}
.y2d{bottom:200.339100px;}
.y5c{bottom:205.055025px;}
.y7b{bottom:206.574300px;}
.yc{bottom:211.561950px;}
.y69{bottom:217.235775px;}
.y16{bottom:220.443000px;}
.y45{bottom:226.334100px;}
.y10{bottom:226.603500px;}
.y3d{bottom:229.310550px;}
.y5b{bottom:230.255025px;}
.y1{bottom:233.611841px;}
.y22{bottom:233.676712px;}
.y85{bottom:234.108563px;}
.y68{bottom:239.915775px;}
.y44{bottom:247.934100px;}
.y3c{bottom:250.910550px;}
.y7a{bottom:251.184375px;}
.y5a{bottom:255.454912px;}
.y67{bottom:262.595775px;}
.y84{bottom:267.228563px;}
.y43{bottom:269.534100px;}
.y3b{bottom:272.510550px;}
.y21{bottom:290.376712px;}
.y42{bottom:291.134100px;}
.y51{bottom:293.893987px;}
.y3a{bottom:294.110550px;}
.y59{bottom:295.654987px;}
.y79{bottom:296.604337px;}
.y66{bottom:300.275738px;}
.y41{bottom:312.734100px;}
.y83{bottom:315.348525px;}
.y39{bottom:315.710550px;}
.y50{bottom:319.093987px;}
.y58{bottom:320.854987px;}
.y65{bottom:322.955715px;}
.y78{bottom:325.584337px;}
.yb{bottom:331.125300px;}
.y40{bottom:334.334100px;}
.y38{bottom:337.310550px;}
.y4f{bottom:344.293987px;}
.y20{bottom:347.076769px;}
.y82{bottom:348.468638px;}
.y77{bottom:354.564337px;}
.y3f{bottom:355.934100px;}
.y37{bottom:358.910550px;}
.y64{bottom:360.635711px;}
.y57{bottom:361.054961px;}
.ya{bottom:365.325300px;}
.y4e{bottom:369.493954px;}
.y3e{bottom:377.894100px;}
.y36{bottom:380.870550px;}
.y63{bottom:383.315711px;}
.y76{bottom:383.544337px;}
.y8b{bottom:385.838100px;}
.y56{bottom:386.254961px;}
.y81{bottom:397.848600px;}
.y9{bottom:399.525300px;}
.y62{bottom:405.995700px;}
.y4d{bottom:410.413950px;}
.y55{bottom:411.454950px;}
.y1f{bottom:415.776750px;}
.y35{bottom:419.651850px;}
.y1b{bottom:423.712050px;}
.y75{bottom:428.154311px;}
.y8{bottom:433.725300px;}
.y80{bottom:435.108600px;}
.y54{bottom:436.654950px;}
.y4c{bottom:439.213950px;}
.y19{bottom:440.365200px;}
.y34{bottom:444.851850px;}
.y74{bottom:459.204311px;}
.y7{bottom:467.925300px;}
.y33{bottom:470.051850px;}
.y4a{bottom:484.100550px;}
.y73{bottom:490.254300px;}
.y32{bottom:495.251861px;}
.y1a{bottom:497.335500px;}
.y18{bottom:509.821050px;}
.y53{bottom:512.845050px;}
.y31{bottom:520.451861px;}
.y17{bottom:522.960750px;}
.y8a{bottom:522.961500px;}
.y8d{bottom:523.912800px;}
.y49{bottom:530.900550px;}
.y6f{bottom:538.478239px;}
.y72{bottom:539.491579px;}
.y30{bottom:545.651850px;}
.y8c{bottom:550.912800px;}
.y2f{bottom:570.851850px;}
.h11{height:36.726574px;}
.h12{height:55.089844px;}
.he{height:59.680653px;}
.h18{height:60.292980px;}
.h3{height:63.820324px;}
.h10{height:64.271496px;}
.h13{height:64.423828px;}
.h1c{height:68.378906px;}
.h5{height:68.862305px;}
.h1a{height:69.984364px;}
.h15{height:73.453114px;}
.h1b{height:78.732422px;}
.h2{height:82.634766px;}
.h4{height:87.225574px;}
.h19{height:94.203633px;}
.hf{height:96.407227px;}
.h1{height:100.998035px;}
.h16{height:101.916211px;}
.h17{height:111.097863px;}
.hc{height:111.556934px;}
.h14{height:119.361340px;}
.hd{height:123.952148px;}
.hb{height:143.964844px;}
.h6{height:149.474166px;}
.ha{height:159.960928px;}
.h7{height:183.955068px;}
.h9{height:267.934590px;}
.h8{height:442.030125px;}
.h0{height:607.500000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x18{left:25.184055px;}
.x23{left:28.777560px;}
.x21{left:31.343505px;}
.x6{left:37.736220px;}
.x24{left:43.100554px;}
.x2d{left:45.743269px;}
.x10{left:46.939965px;}
.x32{left:51.631856px;}
.x30{left:53.447404px;}
.x17{left:54.913841px;}
.xf{left:64.829295px;}
.x2c{left:69.243225px;}
.x2f{left:80.763780px;}
.x2e{left:85.420275px;}
.x31{left:87.439965px;}
.x2{left:89.705678px;}
.x1{left:97.148678px;}
.x25{left:134.858404px;}
.x8{left:150.795904px;}
.x1b{left:161.118480px;}
.x4{left:172.089600px;}
.x7{left:177.734389px;}
.x26{left:208.939965px;}
.xb{left:317.874450px;}
.xc{left:333.225900px;}
.x2b{left:363.850350px;}
.x3{left:374.062613px;}
.x5{left:431.848800px;}
.x9{left:459.116895px;}
.x34{left:509.828700px;}
.x14{left:519.747000px;}
.x22{left:571.899769px;}
.x11{left:573.924900px;}
.x29{left:601.652794px;}
.x15{left:628.726350px;}
.x27{left:631.835794px;}
.xd{left:633.326250px;}
.x2a{left:641.329800px;}
.x28{left:671.512800px;}
.x1d{left:710.988150px;}
.x1c{left:714.345450px;}
.x1f{left:726.818111px;}
.x12{left:739.704600px;}
.xa{left:781.454782px;}
.x33{left:853.356349px;}
.x13{left:882.273600px;}
.x1a{left:886.515949px;}
.x16{left:900.161700px;}
.x1e{left:909.865200px;}
.x19{left:910.937100px;}
.x20{left:923.979300px;}
.xe{left:936.813900px;}
@media print{
.v4{vertical-align:-38.204853pt;}
.v3{vertical-align:-25.995840pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:59.412800pt;}
.v2{vertical-align:222.290667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:69.321115pt;}
.ls5{letter-spacing:69.333720pt;}
.ls2{letter-spacing:95.975125pt;}
.ls1{letter-spacing:96.000440pt;}
.ls3{letter-spacing:980.467863pt;}
.ws8{word-spacing:-357.333360pt;}
.ws7{word-spacing:-256.000000pt;}
.ws5{word-spacing:-245.333320pt;}
.ws9{word-spacing:-213.333320pt;}
.wsa{word-spacing:-192.000000pt;}
.wsd{word-spacing:-29.120000pt;}
.ws2{word-spacing:-26.346663pt;}
.ws0{word-spacing:-24.960000pt;}
.ws13{word-spacing:-23.722663pt;}
.ws12{word-spacing:-22.186663pt;}
.ws4{word-spacing:-20.800000pt;}
.wsf{word-spacing:-19.413337pt;}
.wsb{word-spacing:-18.026663pt;}
.ws11{word-spacing:-16.874670pt;}
.ws10{word-spacing:-16.640000pt;}
.wse{word-spacing:-11.093337pt;}
.ws1{word-spacing:0.000000pt;}
.ws6{word-spacing:52.472400pt;}
.wsc{word-spacing:350.835241pt;}
.ws3{word-spacing:645.828333pt;}
._2{margin-left:-2.005334pt;}
._0{margin-left:-0.938667pt;}
._4{width:1.220071pt;}
._1{width:2.115600pt;}
._3{width:3.424001pt;}
.fsf{font-size:42.666680pt;}
.fs10{font-size:64.000000pt;}
.fsd{font-size:69.333320pt;}
.fs2{font-size:74.666680pt;}
.fs4{font-size:80.000000pt;}
.fs12{font-size:85.333320pt;}
.fs1{font-size:96.000000pt;}
.fs3{font-size:101.333320pt;}
.fs15{font-size:109.440000pt;}
.fse{font-size:112.000000pt;}
.fs0{font-size:117.333320pt;}
.fs13{font-size:118.400000pt;}
.fs14{font-size:129.066680pt;}
.fsb{font-size:129.600000pt;}
.fs11{font-size:138.666680pt;}
.fsc{font-size:144.000000pt;}
.fsa{font-size:192.000000pt;}
.fs9{font-size:213.333320pt;}
.fs5{font-size:245.333320pt;}
.fs7{font-size:256.000000pt;}
.fs6{font-size:352.000000pt;}
.fs8{font-size:357.333360pt;}
.y0{bottom:0.000000pt;}
.y24{bottom:10.245320pt;}
.y46{bottom:18.392333pt;}
.y2e{bottom:18.734040pt;}
.y6{bottom:21.670013pt;}
.y4b{bottom:22.284680pt;}
.y7f{bottom:22.347720pt;}
.y52{bottom:31.977627pt;}
.y14{bottom:32.881040pt;}
.y1d{bottom:38.378120pt;}
.y71{bottom:43.775520pt;}
.y70{bottom:45.056360pt;}
.y13{bottom:55.452400pt;}
.y2c{bottom:56.442667pt;}
.y61{bottom:56.937633pt;}
.y89{bottom:61.643200pt;}
.y5{bottom:64.885987pt;}
.y6e{bottom:65.631767pt;}
.y2b{bottom:69.242687pt;}
.y1e{bottom:72.957187pt;}
.y60{bottom:79.337733pt;}
.y2a{bottom:82.042687pt;}
.y6d{bottom:85.791767pt;}
.y4{bottom:90.805987pt;}
.y88{bottom:92.203200pt;}
.y48{bottom:94.201600pt;}
.y29{bottom:94.842677pt;}
.y5f{bottom:101.737733pt;}
.y1c{bottom:102.038760pt;}
.y7e{bottom:106.341600pt;}
.y28{bottom:107.642677pt;}
.y47{bottom:118.201600pt;}
.y6c{bottom:119.285067pt;}
.y27{bottom:120.442667pt;}
.y5e{bottom:124.137733pt;}
.yf{bottom:126.108267pt;}
.y12{bottom:130.375200pt;}
.y7d{bottom:132.101600pt;}
.y26{bottom:133.242667pt;}
.y87{bottom:134.869900pt;}
.y6b{bottom:139.445067pt;}
.ye{bottom:140.055067pt;}
.y3{bottom:144.294970pt;}
.y25{bottom:146.042667pt;}
.y23{bottom:157.312633pt;}
.y7c{bottom:157.861600pt;}
.y6a{bottom:159.605067pt;}
.y5d{bottom:159.871133pt;}
.y15{bottom:163.729733pt;}
.yd{bottom:164.055067pt;}
.y86{bottom:165.429900pt;}
.y2{bottom:175.974970pt;}
.y11{bottom:177.425333pt;}
.y2d{bottom:178.079200pt;}
.y5c{bottom:182.271133pt;}
.y7b{bottom:183.621600pt;}
.yc{bottom:188.055067pt;}
.y69{bottom:193.098467pt;}
.y16{bottom:195.949333pt;}
.y45{bottom:201.185867pt;}
.y10{bottom:201.425333pt;}
.y3d{bottom:203.831600pt;}
.y5b{bottom:204.671133pt;}
.y1{bottom:207.654970pt;}
.y22{bottom:207.712633pt;}
.y85{bottom:208.096500pt;}
.y68{bottom:213.258467pt;}
.y44{bottom:220.385867pt;}
.y3c{bottom:223.031600pt;}
.y7a{bottom:223.275000pt;}
.y5a{bottom:227.071033pt;}
.y67{bottom:233.418467pt;}
.y84{bottom:237.536500pt;}
.y43{bottom:239.585867pt;}
.y3b{bottom:242.231600pt;}
.y21{bottom:258.112633pt;}
.y42{bottom:258.785867pt;}
.y51{bottom:261.239100pt;}
.y3a{bottom:261.431600pt;}
.y59{bottom:262.804433pt;}
.y79{bottom:263.648300pt;}
.y66{bottom:266.911767pt;}
.y41{bottom:277.985867pt;}
.y83{bottom:280.309800pt;}
.y39{bottom:280.631600pt;}
.y50{bottom:283.639100pt;}
.y58{bottom:285.204433pt;}
.y65{bottom:287.071747pt;}
.y78{bottom:289.408300pt;}
.yb{bottom:294.333600pt;}
.y40{bottom:297.185867pt;}
.y38{bottom:299.831600pt;}
.y4f{bottom:306.039100pt;}
.y20{bottom:308.512683pt;}
.y82{bottom:309.749900pt;}
.y77{bottom:315.168300pt;}
.y3f{bottom:316.385867pt;}
.y37{bottom:319.031600pt;}
.y64{bottom:320.565077pt;}
.y57{bottom:320.937743pt;}
.ya{bottom:324.733600pt;}
.y4e{bottom:328.439070pt;}
.y3e{bottom:335.905867pt;}
.y36{bottom:338.551600pt;}
.y63{bottom:340.725077pt;}
.y76{bottom:340.928300pt;}
.y8b{bottom:342.967200pt;}
.y56{bottom:343.337743pt;}
.y81{bottom:353.643200pt;}
.y9{bottom:355.133600pt;}
.y62{bottom:360.885067pt;}
.y4d{bottom:364.812400pt;}
.y55{bottom:365.737733pt;}
.y1f{bottom:369.579333pt;}
.y35{bottom:373.023867pt;}
.y1b{bottom:376.632933pt;}
.y75{bottom:380.581610pt;}
.y8{bottom:385.533600pt;}
.y80{bottom:386.763200pt;}
.y54{bottom:388.137733pt;}
.y4c{bottom:390.412400pt;}
.y19{bottom:391.435733pt;}
.y34{bottom:395.423867pt;}
.y74{bottom:408.181610pt;}
.y7{bottom:415.933600pt;}
.y33{bottom:417.823867pt;}
.y4a{bottom:430.311600pt;}
.y73{bottom:435.781600pt;}
.y32{bottom:440.223877pt;}
.y1a{bottom:442.076000pt;}
.y18{bottom:453.174267pt;}
.y53{bottom:455.862267pt;}
.y31{bottom:462.623877pt;}
.y17{bottom:464.854000pt;}
.y8a{bottom:464.854667pt;}
.y8d{bottom:465.700267pt;}
.y49{bottom:471.911600pt;}
.y6f{bottom:478.647323pt;}
.y72{bottom:479.548070pt;}
.y30{bottom:485.023867pt;}
.y8c{bottom:489.700267pt;}
.y2f{bottom:507.423867pt;}
.h11{height:32.645844pt;}
.h12{height:48.968750pt;}
.he{height:53.049469pt;}
.h18{height:53.593760pt;}
.h3{height:56.729177pt;}
.h10{height:57.130219pt;}
.h13{height:57.265625pt;}
.h1c{height:60.781250pt;}
.h5{height:61.210938pt;}
.h1a{height:62.208324pt;}
.h15{height:65.291656pt;}
.h1b{height:69.984375pt;}
.h2{height:73.453125pt;}
.h4{height:77.533844pt;}
.h19{height:83.736563pt;}
.hf{height:85.695313pt;}
.h1{height:89.776031pt;}
.h16{height:90.592188pt;}
.h17{height:98.753656pt;}
.hc{height:99.161719pt;}
.h14{height:106.098969pt;}
.hd{height:110.179688pt;}
.hb{height:127.968750pt;}
.h6{height:132.865925pt;}
.ha{height:142.187491pt;}
.h7{height:163.515616pt;}
.h9{height:238.164080pt;}
.h8{height:392.915667pt;}
.h0{height:540.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x18{left:22.385827pt;}
.x23{left:25.580053pt;}
.x21{left:27.860893pt;}
.x6{left:33.543307pt;}
.x24{left:38.311603pt;}
.x2d{left:40.660683pt;}
.x10{left:41.724413pt;}
.x32{left:45.894983pt;}
.x30{left:47.508803pt;}
.x17{left:48.812303pt;}
.xf{left:57.626040pt;}
.x2c{left:61.549533pt;}
.x2f{left:71.790027pt;}
.x2e{left:75.929133pt;}
.x31{left:77.724413pt;}
.x2{left:79.738380pt;}
.x1{left:86.354380pt;}
.x25{left:119.874137pt;}
.x8{left:134.040803pt;}
.x1b{left:143.216427pt;}
.x4{left:152.968533pt;}
.x7{left:157.986123pt;}
.x26{left:185.724413pt;}
.xb{left:282.555067pt;}
.xc{left:296.200800pt;}
.x2b{left:323.422533pt;}
.x3{left:332.500100pt;}
.x5{left:383.865600pt;}
.x9{left:408.103907pt;}
.x34{left:453.181067pt;}
.x14{left:461.997333pt;}
.x22{left:508.355350pt;}
.x11{left:510.155467pt;}
.x29{left:534.802483pt;}
.x15{left:558.867867pt;}
.x27{left:561.631817pt;}
.xd{left:562.956667pt;}
.x2a{left:570.070933pt;}
.x28{left:596.900267pt;}
.x1d{left:631.989467pt;}
.x1c{left:634.973733pt;}
.x1f{left:646.060543pt;}
.x12{left:657.515200pt;}
.xa{left:694.626473pt;}
.x33{left:758.538977pt;}
.x13{left:784.243200pt;}
.x1a{left:788.014177pt;}
.x16{left:800.143733pt;}
.x1e{left:808.769067pt;}
.x19{left:809.721867pt;}
.x20{left:821.314933pt;}
.xe{left:832.723467pt;}
}




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