
    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_44981b795411b604ef7bd738.woff')format("woff");}.ff1{font-family:ff1;line-height:0.898000;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_46a54f8001ed419ac9c50158.woff')format("woff");}.ff2{font-family:ff2;line-height:0.906000;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_ad93eee2d6ed5e9457533d7d.woff')format("woff");}.ff3{font-family:ff3;line-height:0.665000;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_854e764009da8d7d33b403a2.woff')format("woff");}.ff4{font-family:ff4;line-height:0.664000;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_ca6770c70ea6d9ee7fa21635.woff')format("woff");}.ff5{font-family:ff5;line-height:0.740723;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;}
.ff6{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff7;src:url('chunks/assets/font_908ed895b71884f6d2f4b0c8.woff')format("woff");}.ff7{font-family:ff7;line-height:0.889000;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;}
.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.105655,-0.226577,0.226577,0.105655,0,0);-ms-transform:matrix(0.105655,-0.226577,0.226577,0.105655,0,0);-webkit-transform:matrix(0.105655,-0.226577,0.226577,0.105655,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);}
.v2{vertical-align:-21.690000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:11.730000px;}
.v1{vertical-align:26.034000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:2.990525px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-14.943900px;}
.ws6b{word-spacing:-13.449600px;}
.ws4a{word-spacing:-3.108331px;}
.ws51{word-spacing:-2.988780px;}
.ws5a{word-spacing:-2.929004px;}
.wse{word-spacing:-2.636122px;}
.ws5d{word-spacing:-2.570351px;}
.ws23{word-spacing:-2.510575px;}
.ws19{word-spacing:-2.331248px;}
.wsd{word-spacing:-2.044339px;}
.ws1c{word-spacing:-1.912819px;}
.ws2f{word-spacing:-1.793268px;}
.ws69{word-spacing:-1.667750px;}
.wsb{word-spacing:-1.613952px;}
.ws2c{word-spacing:-1.613941px;}
.ws34{word-spacing:-1.494390px;}
.ws59{word-spacing:-1.434614px;}
.ws75{word-spacing:-1.398758px;}
.ws58{word-spacing:-1.374839px;}
.ws74{word-spacing:-1.129766px;}
.ws20{word-spacing:-1.075961px;}
.ws8{word-spacing:-1.022170px;}
.ws1a{word-spacing:-1.016185px;}
.ws55{word-spacing:-0.956410px;}
.ws44{word-spacing:-0.836858px;}
.ws9{word-spacing:-0.753178px;}
.ws60{word-spacing:-0.537980px;}
.ws76{word-spacing:-0.484186px;}
.ws41{word-spacing:-0.298878px;}
.ws11{word-spacing:-0.071731px;}
.ws1e{word-spacing:-0.059776px;}
.ws79{word-spacing:-0.053798px;}
.ws1{word-spacing:0.000000px;}
.ws7{word-spacing:0.268992px;}
.ws10{word-spacing:0.322790px;}
.ws43{word-spacing:0.418429px;}
.wsa{word-spacing:0.430387px;}
.ws2d{word-spacing:0.478205px;}
.ws47{word-spacing:0.717307px;}
.ws54{word-spacing:0.777083px;}
.wsf{word-spacing:0.806976px;}
.ws5b{word-spacing:0.836858px;}
.ws53{word-spacing:0.896634px;}
.ws42{word-spacing:1.016185px;}
.ws3a{word-spacing:1.075961px;}
.ws73{word-spacing:1.183565px;}
.ws24{word-spacing:1.255288px;}
.ws49{word-spacing:1.494390px;}
.ws30{word-spacing:1.554166px;}
.ws29{word-spacing:1.673717px;}
.ws2a{word-spacing:1.733492px;}
.ws6{word-spacing:1.775347px;}
.ws2b{word-spacing:2.032370px;}
.ws1b{word-spacing:2.092146px;}
.ws28{word-spacing:2.151922px;}
.ws4d{word-spacing:2.271473px;}
.ws5c{word-spacing:2.391024px;}
.ws48{word-spacing:2.510575px;}
.ws3c{word-spacing:2.570351px;}
.ws3e{word-spacing:2.689902px;}
.ws40{word-spacing:2.749678px;}
.ws35{word-spacing:2.809453px;}
.ws14{word-spacing:3.168107px;}
.ws1d{word-spacing:3.227882px;}
.ws46{word-spacing:3.706087px;}
.ws50{word-spacing:3.765863px;}
.ws72{word-spacing:3.819686px;}
.ws56{word-spacing:3.885414px;}
.ws5{word-spacing:3.927283px;}
.ws27{word-spacing:4.124516px;}
.ws22{word-spacing:4.184292px;}
.ws3{word-spacing:4.519066px;}
.ws36{word-spacing:4.542946px;}
.ws15{word-spacing:4.602721px;}
.ws3f{word-spacing:4.722272px;}
.ws71{word-spacing:4.734259px;}
.ws66{word-spacing:4.782048px;}
.ws33{word-spacing:4.901599px;}
.ws45{word-spacing:5.021150px;}
.ws7a{word-spacing:5.057050px;}
.ws18{word-spacing:5.140702px;}
.ws77{word-spacing:5.218445px;}
.ws25{word-spacing:5.320028px;}
.ws62{word-spacing:5.379804px;}
.ws70{word-spacing:5.379840px;}
.ws5e{word-spacing:5.559131px;}
.ws61{word-spacing:5.738458px;}
.ws5f{word-spacing:5.798233px;}
.ws6f{word-spacing:5.917824px;}
.ws37{word-spacing:6.097111px;}
.ws52{word-spacing:6.216662px;}
.ws57{word-spacing:6.276438px;}
.ws1f{word-spacing:6.336214px;}
.ws26{word-spacing:6.395989px;}
.ws4b{word-spacing:6.635092px;}
.ws21{word-spacing:6.814418px;}
.ws3d{word-spacing:7.173072px;}
.ws4f{word-spacing:7.232848px;}
.ws3b{word-spacing:7.292623px;}
.ws6d{word-spacing:7.316582px;}
.ws4c{word-spacing:7.890379px;}
.ws2e{word-spacing:8.069706px;}
.wsc{word-spacing:8.177357px;}
.ws4e{word-spacing:8.368584px;}
.ws39{word-spacing:8.428360px;}
.ws67{word-spacing:8.787013px;}
.ws12{word-spacing:8.846789px;}
.ws68{word-spacing:9.038131px;}
.ws7c{word-spacing:9.091930px;}
.ws32{word-spacing:9.444545px;}
.ws6e{word-spacing:9.845107px;}
.ws4{word-spacing:10.652083px;}
.ws6c{word-spacing:10.705882px;}
.ws38{word-spacing:11.536691px;}
.ws7b{word-spacing:11.728051px;}
.ws13{word-spacing:12.134447px;}
.ws6a{word-spacing:13.395802px;}
.ws7d{word-spacing:14.202778px;}
.ws16{word-spacing:16.318739px;}
.ws31{word-spacing:17.861069px;}
.ws17{word-spacing:18.410885px;}
.ws78{word-spacing:18.614246px;}
.ws0{word-spacing:21.433223px;}
.ws64{word-spacing:21.459440px;}
.ws65{word-spacing:22.654952px;}
.ws63{word-spacing:82.848982px;}
._20{margin-left:-21.411763px;}
._2{margin-left:-10.415341px;}
._21{margin-left:-7.208992px;}
._15{margin-left:-5.977560px;}
._a{margin-left:-4.961375px;}
._8{margin-left:-3.496896px;}
._0{margin-left:-2.151930px;}
._4{margin-left:-1.135728px;}
._1e{width:1.244717px;}
._1f{width:2.984467px;}
._1a{width:4.072072px;}
._3{width:5.623213px;}
._19{width:12.014896px;}
._16{width:14.311063px;}
._7{width:15.709133px;}
._d{width:17.693578px;}
._12{width:19.187968px;}
._14{width:20.204144px;}
._6{width:22.003546px;}
._9{width:23.617498px;}
._11{width:24.866650px;}
._1{width:26.683932px;}
._5{width:28.459354px;}
._e{width:29.648698px;}
._c{width:30.724667px;}
._18{width:33.295018px;}
._10{width:34.783274px;}
._f{width:38.017282px;}
._13{width:39.571456px;}
._1c{width:40.737095px;}
._17{width:42.351036px;}
._1b{width:43.875290px;}
._1d{width:48.191578px;}
._b{width:54.933776px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:36.750000px;}
.fs6{font-size:37.147093px;}
.fs3{font-size:41.842800px;}
.fs8{font-size:42.000000px;}
.fs2{font-size:47.820600px;}
.fs5{font-size:53.798400px;}
.fs4{font-size:59.775600px;}
.fs1{font-size:71.731200px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y2e{bottom:7.924112px;}
.y43{bottom:9.257308px;}
.y40{bottom:20.665875px;}
.y41{bottom:25.962997px;}
.y42{bottom:53.266404px;}
.y3f{bottom:58.563525px;}
.y3e{bottom:63.860646px;}
.y44{bottom:73.211168px;}
.y4b{bottom:75.953411px;}
.y45{bottom:98.030522px;}
.y46{bottom:122.849877px;}
.y2c{bottom:135.000000px;}
.y47{bottom:147.669231px;}
.y2b{bottom:152.932500px;}
.y2a{bottom:170.865000px;}
.y6e{bottom:172.171500px;}
.y48{bottom:172.488586px;}
.y29{bottom:188.797500px;}
.y6d{bottom:190.104000px;}
.y49{bottom:197.307940px;}
.y28{bottom:206.730000px;}
.y3c{bottom:206.731500px;}
.y6c{bottom:208.038000px;}
.y4a{bottom:222.127295px;}
.y27{bottom:224.664000px;}
.y6b{bottom:225.970500px;}
.y3b{bottom:228.744000px;}
.y80{bottom:230.917500px;}
.y26{bottom:242.596500px;}
.y6a{bottom:243.903000px;}
.y7f{bottom:248.850000px;}
.y25{bottom:260.529000px;}
.y3a{bottom:262.753500px;}
.y7e{bottom:266.782500px;}
.y69{bottom:270.240000px;}
.y24{bottom:278.461500px;}
.y39{bottom:280.686000px;}
.y7d{bottom:284.715000px;}
.y23{bottom:296.394000px;}
.y38{bottom:298.618500px;}
.y7c{bottom:302.647500px;}
.y68{bottom:308.857500px;}
.y22{bottom:314.328000px;}
.y37{bottom:316.552500px;}
.y7b{bottom:320.581500px;}
.y67{bottom:326.790000px;}
.y21{bottom:332.260500px;}
.y36{bottom:334.485000px;}
.y7a{bottom:338.514000px;}
.y66{bottom:344.722500px;}
.y20{bottom:350.193000px;}
.y79{bottom:356.446500px;}
.y65{bottom:362.655000px;}
.y1f{bottom:368.125500px;}
.y78{bottom:374.379000px;}
.y64{bottom:380.589000px;}
.y35{bottom:383.086500px;}
.y1e{bottom:386.058000px;}
.y77{bottom:392.311500px;}
.y63{bottom:398.521500px;}
.y34{bottom:401.020500px;}
.y1d{bottom:403.990500px;}
.y76{bottom:410.244000px;}
.y62{bottom:416.454000px;}
.y33{bottom:418.953000px;}
.y1c{bottom:421.924500px;}
.y75{bottom:428.178000px;}
.y61{bottom:434.386500px;}
.y32{bottom:436.885500px;}
.y1b{bottom:439.857000px;}
.y74{bottom:446.110500px;}
.y60{bottom:452.319000px;}
.y31{bottom:454.818000px;}
.y1a{bottom:457.789500px;}
.y73{bottom:464.043000px;}
.y5f{bottom:470.251500px;}
.y30{bottom:472.750500px;}
.y19{bottom:475.722000px;}
.y5e{bottom:488.185500px;}
.y2f{bottom:490.684500px;}
.y18{bottom:493.654500px;}
.y72{bottom:505.219500px;}
.y5d{bottom:506.118000px;}
.y17{bottom:511.587000px;}
.y2d{bottom:518.181000px;}
.y5c{bottom:524.050500px;}
.y16{bottom:529.521000px;}
.y5b{bottom:541.983000px;}
.y15{bottom:552.328500px;}
.y5a{bottom:559.915500px;}
.y71{bottom:577.848000px;}
.y59{bottom:577.849500px;}
.y58{bottom:595.782000px;}
.y14{bottom:607.626000px;}
.y57{bottom:613.714500px;}
.y13{bottom:622.570500px;}
.y56{bottom:631.647000px;}
.y12{bottom:637.515000px;}
.y55{bottom:649.579500px;}
.y11{bottom:652.458000px;}
.y99{bottom:657.187500px;}
.y10{bottom:667.402500px;}
.y54{bottom:667.512000px;}
.y98{bottom:672.130500px;}
.yf{bottom:682.347000px;}
.y70{bottom:685.444500px;}
.y53{bottom:685.446000px;}
.y97{bottom:687.075000px;}
.ye{bottom:697.290000px;}
.y52{bottom:703.378500px;}
.yd{bottom:712.234500px;}
.y96{bottom:713.974500px;}
.y51{bottom:721.311000px;}
.yc{bottom:727.179000px;}
.y95{bottom:728.917500px;}
.y50{bottom:739.243500px;}
.yb{bottom:742.122000px;}
.y94{bottom:743.862000px;}
.ya{bottom:757.066500px;}
.y4f{bottom:757.176000px;}
.y93{bottom:770.761500px;}
.y9{bottom:772.009500px;}
.y4e{bottom:775.108500px;}
.y92{bottom:785.704500px;}
.y8{bottom:786.954000px;}
.y6f{bottom:793.041000px;}
.y4d{bottom:793.042500px;}
.y91{bottom:800.649000px;}
.y7{bottom:801.898500px;}
.y90{bottom:815.593500px;}
.y6{bottom:816.841500px;}
.y8f{bottom:842.491500px;}
.y4c{bottom:843.253500px;}
.y5{bottom:849.055500px;}
.y8e{bottom:857.436000px;}
.y3d{bottom:870.750000px;}
.y8d{bottom:872.380500px;}
.y8c{bottom:887.323500px;}
.y8b{bottom:914.223000px;}
.y4{bottom:920.053500px;}
.y8a{bottom:929.167500px;}
.y3{bottom:943.408500px;}
.y89{bottom:944.110500px;}
.y88{bottom:971.010000px;}
.y2{bottom:973.851000px;}
.y87{bottom:985.954500px;}
.y86{bottom:1000.897500px;}
.y85{bottom:1015.842000px;}
.y1{bottom:1024.674000px;}
.y84{bottom:1042.741500px;}
.y83{bottom:1057.684500px;}
.y82{bottom:1072.629000px;}
.y81{bottom:1092.055500px;}
.ha{height:27.044099px;}
.h4{height:27.783619px;}
.hc{height:34.140750px;}
.h7{height:37.013299px;}
.hf{height:37.283299px;}
.hd{height:39.018000px;}
.h5{height:41.125613px;}
.h6{height:41.364715px;}
.he{height:41.425613px;}
.h10{height:48.743299px;}
.h11{height:49.493299px;}
.h8{height:49.637990px;}
.h2{height:49.711066px;}
.h3{height:57.834699px;}
.h1{height:59.565422px;}
.hb{height:236.250000px;}
.h9{height:345.819780px;}
.h0{height:1188.000000px;}
.w1{width:232.533980px;}
.w2{width:378.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xa{left:9.290506px;}
.x19{left:15.100313px;}
.x18{left:19.909395px;}
.xe{left:48.512899px;}
.x8{left:81.000000px;}
.x6{left:95.944500px;}
.xf{left:97.041643px;}
.x20{left:110.887500px;}
.x25{left:130.321500px;}
.x10{left:146.805431px;}
.x21{left:151.005000px;}
.x1a{left:162.148500px;}
.x1c{left:180.658500px;}
.x11{left:196.569219px;}
.x7{left:211.215000px;}
.x12{left:212.615131px;}
.x1f{left:218.217000px;}
.x1{left:232.038000px;}
.x13{left:246.333007px;}
.x22{left:259.491000px;}
.x14{left:263.613963px;}
.xd{left:270.000000px;}
.x4{left:279.258000px;}
.x15{left:294.861751px;}
.x16{left:313.377751px;}
.x23{left:319.249500px;}
.x24{left:328.221000px;}
.x17{left:344.625539px;}
.x2{left:373.597500px;}
.x1b{left:384.714000px;}
.x5{left:392.926500px;}
.xb{left:479.250000px;}
.x1e{left:494.194500px;}
.x3{left:514.888500px;}
.x9{left:541.857000px;}
.xc{left:581.661000px;}
.x1d{left:611.787000px;}
@media print{
.v2{vertical-align:-19.280000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:10.426667pt;}
.v1{vertical-align:23.141333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:2.658245pt;}
.ws2{word-spacing:-13.283467pt;}
.ws6b{word-spacing:-11.955200pt;}
.ws4a{word-spacing:-2.762961pt;}
.ws51{word-spacing:-2.656693pt;}
.ws5a{word-spacing:-2.603559pt;}
.wse{word-spacing:-2.343219pt;}
.ws5d{word-spacing:-2.284756pt;}
.ws23{word-spacing:-2.231622pt;}
.ws19{word-spacing:-2.072221pt;}
.wsd{word-spacing:-1.817190pt;}
.ws1c{word-spacing:-1.700284pt;}
.ws2f{word-spacing:-1.594016pt;}
.ws69{word-spacing:-1.482445pt;}
.wsb{word-spacing:-1.434624pt;}
.ws2c{word-spacing:-1.434614pt;}
.ws34{word-spacing:-1.328347pt;}
.ws59{word-spacing:-1.275213pt;}
.ws75{word-spacing:-1.243341pt;}
.ws58{word-spacing:-1.222079pt;}
.ws74{word-spacing:-1.004237pt;}
.ws20{word-spacing:-0.956410pt;}
.ws8{word-spacing:-0.908595pt;}
.ws1a{word-spacing:-0.903276pt;}
.ws55{word-spacing:-0.850142pt;}
.ws44{word-spacing:-0.743874pt;}
.ws9{word-spacing:-0.669491pt;}
.ws60{word-spacing:-0.478205pt;}
.ws76{word-spacing:-0.430387pt;}
.ws41{word-spacing:-0.265669pt;}
.ws11{word-spacing:-0.063761pt;}
.ws1e{word-spacing:-0.053134pt;}
.ws79{word-spacing:-0.047821pt;}
.ws1{word-spacing:0.000000pt;}
.ws7{word-spacing:0.239104pt;}
.ws10{word-spacing:0.286925pt;}
.ws43{word-spacing:0.371937pt;}
.wsa{word-spacing:0.382566pt;}
.ws2d{word-spacing:0.425071pt;}
.ws47{word-spacing:0.637606pt;}
.ws54{word-spacing:0.690740pt;}
.wsf{word-spacing:0.717312pt;}
.ws5b{word-spacing:0.743874pt;}
.ws53{word-spacing:0.797008pt;}
.ws42{word-spacing:0.903276pt;}
.ws3a{word-spacing:0.956410pt;}
.ws73{word-spacing:1.052058pt;}
.ws24{word-spacing:1.115811pt;}
.ws49{word-spacing:1.328347pt;}
.ws30{word-spacing:1.381481pt;}
.ws29{word-spacing:1.487748pt;}
.ws2a{word-spacing:1.540882pt;}
.ws6{word-spacing:1.578086pt;}
.ws2b{word-spacing:1.806551pt;}
.ws1b{word-spacing:1.859685pt;}
.ws28{word-spacing:1.912819pt;}
.ws4d{word-spacing:2.019087pt;}
.ws5c{word-spacing:2.125355pt;}
.ws48{word-spacing:2.231622pt;}
.ws3c{word-spacing:2.284756pt;}
.ws3e{word-spacing:2.391024pt;}
.ws40{word-spacing:2.444158pt;}
.ws35{word-spacing:2.497292pt;}
.ws14{word-spacing:2.816095pt;}
.ws1d{word-spacing:2.869229pt;}
.ws46{word-spacing:3.294300pt;}
.ws50{word-spacing:3.347434pt;}
.ws72{word-spacing:3.395277pt;}
.ws56{word-spacing:3.453701pt;}
.ws5{word-spacing:3.490918pt;}
.ws27{word-spacing:3.666237pt;}
.ws22{word-spacing:3.719371pt;}
.ws3{word-spacing:4.016947pt;}
.ws36{word-spacing:4.038174pt;}
.ws15{word-spacing:4.091308pt;}
.ws3f{word-spacing:4.197575pt;}
.ws71{word-spacing:4.208230pt;}
.ws66{word-spacing:4.250709pt;}
.ws33{word-spacing:4.356977pt;}
.ws45{word-spacing:4.463245pt;}
.ws7a{word-spacing:4.495155pt;}
.ws18{word-spacing:4.569513pt;}
.ws77{word-spacing:4.638618pt;}
.ws25{word-spacing:4.728914pt;}
.ws62{word-spacing:4.782048pt;}
.ws70{word-spacing:4.782080pt;}
.ws5e{word-spacing:4.941450pt;}
.ws61{word-spacing:5.100851pt;}
.ws5f{word-spacing:5.153985pt;}
.ws6f{word-spacing:5.260288pt;}
.ws37{word-spacing:5.419654pt;}
.ws52{word-spacing:5.525922pt;}
.ws57{word-spacing:5.579056pt;}
.ws1f{word-spacing:5.632190pt;}
.ws26{word-spacing:5.685324pt;}
.ws4b{word-spacing:5.897859pt;}
.ws21{word-spacing:6.057261pt;}
.ws3d{word-spacing:6.376064pt;}
.ws4f{word-spacing:6.429198pt;}
.ws3b{word-spacing:6.482332pt;}
.ws6d{word-spacing:6.503629pt;}
.ws4c{word-spacing:7.013670pt;}
.ws2e{word-spacing:7.173072pt;}
.wsc{word-spacing:7.268762pt;}
.ws4e{word-spacing:7.438741pt;}
.ws39{word-spacing:7.491875pt;}
.ws67{word-spacing:7.810678pt;}
.ws12{word-spacing:7.863812pt;}
.ws68{word-spacing:8.033894pt;}
.ws7c{word-spacing:8.081715pt;}
.ws32{word-spacing:8.395151pt;}
.ws6e{word-spacing:8.751206pt;}
.ws4{word-spacing:9.468518pt;}
.ws6c{word-spacing:9.516339pt;}
.ws38{word-spacing:10.254836pt;}
.ws7b{word-spacing:10.424934pt;}
.ws13{word-spacing:10.786175pt;}
.ws6a{word-spacing:11.907379pt;}
.ws7d{word-spacing:12.624691pt;}
.ws16{word-spacing:14.505546pt;}
.ws31{word-spacing:15.876506pt;}
.ws17{word-spacing:16.365231pt;}
.ws78{word-spacing:16.545997pt;}
.ws0{word-spacing:19.051754pt;}
.ws64{word-spacing:19.075058pt;}
.ws65{word-spacing:20.137735pt;}
.ws63{word-spacing:73.643539pt;}
._20{margin-left:-19.032678pt;}
._2{margin-left:-9.258081pt;}
._21{margin-left:-6.407993pt;}
._15{margin-left:-5.313387pt;}
._a{margin-left:-4.410111pt;}
._8{margin-left:-3.108352pt;}
._0{margin-left:-1.912827pt;}
._4{margin-left:-1.009536pt;}
._1e{width:1.106415pt;}
._1f{width:2.652860pt;}
._1a{width:3.619619pt;}
._3{width:4.998412pt;}
._19{width:10.679907pt;}
._16{width:12.720945pt;}
._7{width:13.963674pt;}
._d{width:15.727625pt;}
._12{width:17.055971pt;}
._14{width:17.959239pt;}
._6{width:19.558707pt;}
._9{width:20.993331pt;}
._11{width:22.103689pt;}
._1{width:23.719051pt;}
._5{width:25.297203pt;}
._e{width:26.354398pt;}
._c{width:27.310815pt;}
._18{width:29.595571pt;}
._10{width:30.918466pt;}
._f{width:33.793139pt;}
._13{width:35.174627pt;}
._1c{width:36.210751pt;}
._17{width:37.645365pt;}
._1b{width:39.000258pt;}
._1d{width:42.836958pt;}
._b{width:48.830023pt;}
.fs7{font-size:32.666667pt;}
.fs6{font-size:33.019638pt;}
.fs3{font-size:37.193600pt;}
.fs8{font-size:37.333333pt;}
.fs2{font-size:42.507200pt;}
.fs5{font-size:47.820800pt;}
.fs4{font-size:53.133867pt;}
.fs1{font-size:63.761067pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y2e{bottom:7.043655pt;}
.y43{bottom:8.228718pt;}
.y40{bottom:18.369667pt;}
.y41{bottom:23.078219pt;}
.y42{bottom:47.347915pt;}
.y3f{bottom:52.056467pt;}
.y3e{bottom:56.765019pt;}
.y44{bottom:65.076594pt;}
.y4b{bottom:67.514143pt;}
.y45{bottom:87.138242pt;}
.y46{bottom:109.199890pt;}
.y2c{bottom:120.000000pt;}
.y47{bottom:131.261539pt;}
.y2b{bottom:135.940000pt;}
.y2a{bottom:151.880000pt;}
.y6e{bottom:153.041333pt;}
.y48{bottom:153.323187pt;}
.y29{bottom:167.820000pt;}
.y6d{bottom:168.981333pt;}
.y49{bottom:175.384836pt;}
.y28{bottom:183.760000pt;}
.y3c{bottom:183.761333pt;}
.y6c{bottom:184.922667pt;}
.y4a{bottom:197.446484pt;}
.y27{bottom:199.701333pt;}
.y6b{bottom:200.862667pt;}
.y3b{bottom:203.328000pt;}
.y80{bottom:205.260000pt;}
.y26{bottom:215.641333pt;}
.y6a{bottom:216.802667pt;}
.y7f{bottom:221.200000pt;}
.y25{bottom:231.581333pt;}
.y3a{bottom:233.558667pt;}
.y7e{bottom:237.140000pt;}
.y69{bottom:240.213333pt;}
.y24{bottom:247.521333pt;}
.y39{bottom:249.498667pt;}
.y7d{bottom:253.080000pt;}
.y23{bottom:263.461333pt;}
.y38{bottom:265.438667pt;}
.y7c{bottom:269.020000pt;}
.y68{bottom:274.540000pt;}
.y22{bottom:279.402667pt;}
.y37{bottom:281.380000pt;}
.y7b{bottom:284.961333pt;}
.y67{bottom:290.480000pt;}
.y21{bottom:295.342667pt;}
.y36{bottom:297.320000pt;}
.y7a{bottom:300.901333pt;}
.y66{bottom:306.420000pt;}
.y20{bottom:311.282667pt;}
.y79{bottom:316.841333pt;}
.y65{bottom:322.360000pt;}
.y1f{bottom:327.222667pt;}
.y78{bottom:332.781333pt;}
.y64{bottom:338.301333pt;}
.y35{bottom:340.521333pt;}
.y1e{bottom:343.162667pt;}
.y77{bottom:348.721333pt;}
.y63{bottom:354.241333pt;}
.y34{bottom:356.462667pt;}
.y1d{bottom:359.102667pt;}
.y76{bottom:364.661333pt;}
.y62{bottom:370.181333pt;}
.y33{bottom:372.402667pt;}
.y1c{bottom:375.044000pt;}
.y75{bottom:380.602667pt;}
.y61{bottom:386.121333pt;}
.y32{bottom:388.342667pt;}
.y1b{bottom:390.984000pt;}
.y74{bottom:396.542667pt;}
.y60{bottom:402.061333pt;}
.y31{bottom:404.282667pt;}
.y1a{bottom:406.924000pt;}
.y73{bottom:412.482667pt;}
.y5f{bottom:418.001333pt;}
.y30{bottom:420.222667pt;}
.y19{bottom:422.864000pt;}
.y5e{bottom:433.942667pt;}
.y2f{bottom:436.164000pt;}
.y18{bottom:438.804000pt;}
.y72{bottom:449.084000pt;}
.y5d{bottom:449.882667pt;}
.y17{bottom:454.744000pt;}
.y2d{bottom:460.605333pt;}
.y5c{bottom:465.822667pt;}
.y16{bottom:470.685333pt;}
.y5b{bottom:481.762667pt;}
.y15{bottom:490.958667pt;}
.y5a{bottom:497.702667pt;}
.y71{bottom:513.642667pt;}
.y59{bottom:513.644000pt;}
.y58{bottom:529.584000pt;}
.y14{bottom:540.112000pt;}
.y57{bottom:545.524000pt;}
.y13{bottom:553.396000pt;}
.y56{bottom:561.464000pt;}
.y12{bottom:566.680000pt;}
.y55{bottom:577.404000pt;}
.y11{bottom:579.962667pt;}
.y99{bottom:584.166667pt;}
.y10{bottom:593.246667pt;}
.y54{bottom:593.344000pt;}
.y98{bottom:597.449333pt;}
.yf{bottom:606.530667pt;}
.y70{bottom:609.284000pt;}
.y53{bottom:609.285333pt;}
.y97{bottom:610.733333pt;}
.ye{bottom:619.813333pt;}
.y52{bottom:625.225333pt;}
.yd{bottom:633.097333pt;}
.y96{bottom:634.644000pt;}
.y51{bottom:641.165333pt;}
.yc{bottom:646.381333pt;}
.y95{bottom:647.926667pt;}
.y50{bottom:657.105333pt;}
.yb{bottom:659.664000pt;}
.y94{bottom:661.210667pt;}
.ya{bottom:672.948000pt;}
.y4f{bottom:673.045333pt;}
.y93{bottom:685.121333pt;}
.y9{bottom:686.230667pt;}
.y4e{bottom:688.985333pt;}
.y92{bottom:698.404000pt;}
.y8{bottom:699.514667pt;}
.y6f{bottom:704.925333pt;}
.y4d{bottom:704.926667pt;}
.y91{bottom:711.688000pt;}
.y7{bottom:712.798667pt;}
.y90{bottom:724.972000pt;}
.y6{bottom:726.081333pt;}
.y8f{bottom:748.881333pt;}
.y4c{bottom:749.558667pt;}
.y5{bottom:754.716000pt;}
.y8e{bottom:762.165333pt;}
.y3d{bottom:774.000000pt;}
.y8d{bottom:775.449333pt;}
.y8c{bottom:788.732000pt;}
.y8b{bottom:812.642667pt;}
.y4{bottom:817.825333pt;}
.y8a{bottom:825.926667pt;}
.y3{bottom:838.585333pt;}
.y89{bottom:839.209333pt;}
.y88{bottom:863.120000pt;}
.y2{bottom:865.645333pt;}
.y87{bottom:876.404000pt;}
.y86{bottom:889.686667pt;}
.y85{bottom:902.970667pt;}
.y1{bottom:910.821333pt;}
.y84{bottom:926.881333pt;}
.y83{bottom:940.164000pt;}
.y82{bottom:953.448000pt;}
.y81{bottom:970.716000pt;}
.ha{height:24.039199pt;}
.h4{height:24.696550pt;}
.hc{height:30.347333pt;}
.h7{height:32.900710pt;}
.hf{height:33.140710pt;}
.hd{height:34.682667pt;}
.h5{height:36.556100pt;}
.h6{height:36.768636pt;}
.he{height:36.822767pt;}
.h10{height:43.327377pt;}
.h11{height:43.994044pt;}
.h8{height:44.122658pt;}
.h2{height:44.187614pt;}
.h3{height:51.408621pt;}
.h1{height:52.947042pt;}
.hb{height:210.000000pt;}
.h9{height:307.395360pt;}
.h0{height:1056.000000pt;}
.w1{width:206.696871pt;}
.w2{width:336.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xa{left:8.258228pt;}
.x19{left:13.422500pt;}
.x18{left:17.697240pt;}
.xe{left:43.122577pt;}
.x8{left:72.000000pt;}
.x6{left:85.284000pt;}
.xf{left:86.259238pt;}
.x20{left:98.566667pt;}
.x25{left:115.841333pt;}
.x10{left:130.493716pt;}
.x21{left:134.226667pt;}
.x1a{left:144.132000pt;}
.x1c{left:160.585333pt;}
.x11{left:174.728195pt;}
.x7{left:187.746667pt;}
.x12{left:188.991228pt;}
.x1f{left:193.970667pt;}
.x1{left:206.256000pt;}
.x13{left:218.962673pt;}
.x22{left:230.658667pt;}
.x14{left:234.323523pt;}
.xd{left:240.000000pt;}
.x4{left:248.229333pt;}
.x15{left:262.099334pt;}
.x16{left:278.558001pt;}
.x23{left:283.777333pt;}
.x24{left:291.752000pt;}
.x17{left:306.333813pt;}
.x2{left:332.086667pt;}
.x1b{left:341.968000pt;}
.x5{left:349.268000pt;}
.xb{left:426.000000pt;}
.x1e{left:439.284000pt;}
.x3{left:457.678667pt;}
.x9{left:481.650667pt;}
.xc{left:517.032000pt;}
.x1d{left:543.810667pt;}
}




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