
    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_545e2c63027e4704cdc2c7e4.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.936035;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_28abf437615fa922f0e44a42.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.926000;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_155d4c6fd6158ca468cf9b21.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.934000;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_e2ee3a0d08ee6a3197a76f09.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.926000;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_a4a9daedbaa8658e9d1fa077.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.747000;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_fcccbd7726052f2b47312699.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.760742;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_3c3788139a4222d44a664ab4.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.700000;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_f1c35aaaeb87a22222e8dba9.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{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);}
.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;}
.ls0{letter-spacing:0.000000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6{word-spacing:-46.704000px;}
.ws4{word-spacing:-43.200000px;}
.ws7{word-spacing:-41.700000px;}
.ws5{word-spacing:-40.032000px;}
.ws2{word-spacing:-36.696000px;}
.ws1{word-spacing:-34.560000px;}
.ws3{word-spacing:-28.800000px;}
.ws0{word-spacing:0.000000px;}
._6{margin-left:-16.650000px;}
._8{margin-left:-13.800000px;}
._5{margin-left:-12.432000px;}
._9{margin-left:-9.240000px;}
._3{margin-left:-7.770000px;}
._4{margin-left:-6.660000px;}
._7{margin-left:-5.328000px;}
._2{margin-left:-4.243800px;}
._1{margin-left:-2.494800px;}
._0{margin-left:-1.082400px;}
.fc8{color:rgb(151,24,23);}
.fca{color:rgb(254,253,255);}
.fc7{color:rgb(83,88,95);}
.fc6{color:transparent;}
.fc5{color:rgb(92,160,255);}
.fc2{color:rgb(181,26,0);}
.fc9{color:rgb(66,66,66);}
.fc4{color:rgb(255,255,255);}
.fc3{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(35,35,35);}
.fs0{font-size:66.000000px;}
.fsc{font-size:72.000000px;}
.fs9{font-size:96.000000px;}
.fsb{font-size:120.000000px;}
.fs8{font-size:126.000000px;}
.fs7{font-size:132.000000px;}
.fs6{font-size:144.000000px;}
.fs2{font-size:150.000000px;}
.fsa{font-size:168.000000px;}
.fs5{font-size:180.000000px;}
.fs3{font-size:192.000000px;}
.fs1{font-size:210.000000px;}
.fs4{font-size:216.000000px;}
.fsd{font-size:300.000000px;}
.fse{font-size:600.000000px;}
.yf{bottom:-2.414790px;}
.y0{bottom:0.000000px;}
.yb{bottom:9.696540px;}
.y4{bottom:12.107850px;}
.y2{bottom:12.377415px;}
.y48{bottom:12.773850px;}
.y52{bottom:12.774000px;}
.y50{bottom:13.160850px;}
.y58{bottom:13.161000px;}
.y5e{bottom:16.334700px;}
.y63{bottom:16.334850px;}
.y3{bottom:17.879130px;}
.y4b{bottom:22.868550px;}
.y4d{bottom:22.868700px;}
.yc{bottom:23.214720px;}
.y17{bottom:26.112000px;}
.y14{bottom:26.112150px;}
.y1a{bottom:30.498150px;}
.y10{bottom:48.826080px;}
.y1{bottom:50.638140px;}
.ya{bottom:50.983425px;}
.y5d{bottom:52.334700px;}
.y68{bottom:52.334850px;}
.y19{bottom:85.111350px;}
.ye{bottom:85.465875px;}
.y9{bottom:121.526955px;}
.y45{bottom:133.823460px;}
.y8{bottom:166.527000px;}
.y1d{bottom:199.631250px;}
.y56{bottom:225.765450px;}
.y57{bottom:226.593000px;}
.y30{bottom:235.470450px;}
.y7{bottom:244.010250px;}
.y1c{bottom:253.631250px;}
.y71{bottom:263.463900px;}
.y44{bottom:265.942650px;}
.y2f{bottom:279.258300px;}
.y61{bottom:284.922150px;}
.y18{bottom:290.712450px;}
.y41{bottom:293.692650px;}
.y1b{bottom:307.631250px;}
.y6{bottom:308.510250px;}
.y90{bottom:309.245250px;}
.y55{bottom:319.275300px;}
.y43{bottom:321.442650px;}
.y40{bottom:349.192650px;}
.y46{bottom:363.544650px;}
.y2e{bottom:366.546150px;}
.y5{bottom:373.010250px;}
.y54{bottom:373.601250px;}
.y42{bottom:376.942650px;}
.y70{bottom:378.422250px;}
.y13{bottom:390.048750px;}
.y53{bottom:391.049250px;}
.y64{bottom:398.676600px;}
.y25{bottom:411.732450px;}
.y62{bottom:416.676600px;}
.y5f{bottom:416.676750px;}
.y6f{bottom:423.422250px;}
.y3c{bottom:432.772800px;}
.y4f{bottom:433.821300px;}
.y2d{bottom:453.546150px;}
.y24{bottom:470.232450px;}
.y4e{bottom:481.507350px;}
.y2c{bottom:497.334000px;}
.y7d{bottom:503.174400px;}
.y6e{bottom:513.422250px;}
.y3b{bottom:515.281500px;}
.y3d{bottom:518.976900px;}
.y23{bottom:528.732450px;}
.y66{bottom:530.431200px;}
.y60{bottom:530.431350px;}
.y88{bottom:547.538250px;}
.y4c{bottom:555.417900px;}
.y3a{bottom:555.781500px;}
.y7e{bottom:555.876750px;}
.y6d{bottom:558.422250px;}
.y8f{bottom:568.498950px;}
.y2b{bottom:584.334000px;}
.y22{bottom:587.232450px;}
.y7c{bottom:593.174400px;}
.y87{bottom:598.538250px;}
.y74{bottom:611.124450px;}
.y2a{bottom:628.121850px;}
.y8b{bottom:629.996250px;}
.y4a{bottom:630.429900px;}
.y21{bottom:646.116150px;}
.y6c{bottom:648.422250px;}
.y86{bottom:649.538250px;}
.y73{bottom:662.124450px;}
.y67{bottom:662.185800px;}
.y65{bottom:662.185950px;}
.y82{bottom:662.603400px;}
.y16{bottom:673.450950px;}
.y15{bottom:673.499850px;}
.y8a{bottom:680.996250px;}
.y39{bottom:688.019250px;}
.y6b{bottom:693.422250px;}
.y7b{bottom:700.806900px;}
.y85{bottom:700.873950px;}
.y20{bottom:704.616150px;}
.y72{bottom:713.460300px;}
.y81{bottom:713.603400px;}
.y29{bottom:715.121850px;}
.y33{bottom:721.130400px;}
.y77{bottom:722.556900px;}
.y38{bottom:725.519250px;}
.y89{bottom:732.332100px;}
.y7a{bottom:744.306900px;}
.y28{bottom:758.621850px;}
.y32{bottom:761.630400px;}
.y37{bottom:763.019250px;}
.y80{bottom:764.939100px;}
.y76{bottom:766.056900px;}
.y8c{bottom:774.668850px;}
.y6a{bottom:783.422250px;}
.y79{bottom:787.806900px;}
.y31{bottom:802.130400px;}
.y27{bottom:802.409700px;}
.y8d{bottom:803.081700px;}
.y75{bottom:809.808450px;}
.y36{bottom:814.824900px;}
.y69{bottom:828.422250px;}
.y51{bottom:828.928800px;}
.y47{bottom:829.750500px;}
.y78{bottom:831.558450px;}
.y8e{bottom:838.668900px;}
.y49{bottom:841.845900px;}
.y5c{bottom:844.847400px;}
.y35{bottom:855.324900px;}
.y26{bottom:889.409700px;}
.y34{bottom:895.824900px;}
.y3f{bottom:985.490550px;}
.y84{bottom:987.531300px;}
.yd{bottom:1013.920500px;}
.y1e{bottom:1025.681250px;}
.y5a{bottom:1027.562550px;}
.y11{bottom:1027.953750px;}
.y5b{bottom:1028.458050px;}
.y59{bottom:1029.844650px;}
.y12{bottom:1030.181250px;}
.y1f{bottom:1031.681250px;}
.y7f{bottom:1032.181200px;}
.y83{bottom:1032.681150px;}
.y3e{bottom:1040.990550px;}
.h9{height:12.000000px;}
.h7{height:30.111345px;}
.h6{height:31.611345px;}
.h3{height:35.522640px;}
.h1{height:37.292205px;}
.h17{height:40.979925px;}
.h2{height:49.500000px;}
.h21{height:53.729880px;}
.h16{height:69.984000px;}
.h18{height:70.176000px;}
.h19{height:71.109375px;}
.h1a{height:75.821820px;}
.ha{height:87.108030px;}
.h20{height:89.400000px;}
.h1f{height:89.729880px;}
.h14{height:91.854000px;}
.h1d{height:93.269850px;}
.h13{height:96.228000px;}
.h11{height:104.976000px;}
.h12{height:107.280000px;}
.h5{height:109.350000px;}
.h8{height:109.650000px;}
.h22{height:122.472000px;}
.h1b{height:125.160000px;}
.he{height:131.220000px;}
.h15{height:134.100000px;}
.h1e{height:135.983850px;}
.hf{height:139.968000px;}
.hb{height:140.352000px;}
.h10{height:143.040000px;}
.h24{height:151.200000px;}
.hc{height:153.973050px;}
.h4{height:156.450000px;}
.hd{height:157.464000px;}
.h23{height:223.500000px;}
.h1c{height:259.421700px;}
.h25{height:447.000000px;}
.h0{height:1152.000000px;}
.w1b{width:70.859880px;}
.wf{width:75.821850px;}
.w1e{width:75.839880px;}
.w27{width:86.399880px;}
.w10{width:110.111925px;}
.w11{width:131.063925px;}
.w20{width:145.949880px;}
.w13{width:159.958800px;}
.w19{width:181.259850px;}
.w25{width:207.509850px;}
.w22{width:210.704850px;}
.w7{width:222.156000px;}
.wb{width:224.831850px;}
.w1d{width:233.459850px;}
.w15{width:236.195850px;}
.w28{width:247.124850px;}
.w1f{width:264.584850px;}
.w8{width:273.756000px;}
.w12{width:277.167000px;}
.w21{width:278.384850px;}
.w18{width:282.944850px;}
.we{width:294.449850px;}
.wd{width:296.717850px;}
.w1c{width:301.664850px;}
.w26{width:316.724850px;}
.w24{width:336.704850px;}
.wc{width:365.051850px;}
.w9{width:368.844000px;}
.w17{width:389.924850px;}
.w1a{width:393.854850px;}
.w14{width:411.755850px;}
.w16{width:417.971850px;}
.wa{width:477.218850px;}
.w23{width:492.764850px;}
.w5{width:883.568250px;}
.w3{width:886.214400px;}
.w6{width:888.300450px;}
.w4{width:890.946750px;}
.w2{width:988.456800px;}
.w1{width:1045.475700px;}
.w0{width:1536.000000px;}
.x0{left:0.000000px;}
.xc{left:4.676850px;}
.x2{left:6.000000px;}
.x3e{left:7.740000px;}
.x52{left:9.614925px;}
.x41{left:13.161000px;}
.xf{left:15.054000px;}
.x14{left:16.679850px;}
.x4b{left:19.967400px;}
.x54{left:21.825000px;}
.x68{left:23.774850px;}
.x5c{left:33.434850px;}
.x51{left:36.284865px;}
.x66{left:37.904850px;}
.x13{left:41.681850px;}
.x56{left:45.990000px;}
.x45{left:52.953300px;}
.x62{left:56.819850px;}
.x5f{left:58.725000px;}
.x49{left:67.687500px;}
.x70{left:79.453485px;}
.x38{left:84.150000px;}
.xd{left:85.443750px;}
.xa{left:87.370410px;}
.x4f{left:89.047140px;}
.x18{left:92.994180px;}
.x71{left:99.559485px;}
.x50{left:116.508285px;}
.x27{left:147.648030px;}
.x25{left:151.248000px;}
.x17{left:163.200000px;}
.x23{left:172.272000px;}
.x20{left:174.270000px;}
.x21{left:183.432000px;}
.x6c{left:184.507500px;}
.x72{left:192.619500px;}
.x46{left:207.884250px;}
.x12{left:215.775900px;}
.x44{left:218.550750px;}
.x7a{left:222.769350px;}
.x5{left:233.366250px;}
.x55{left:237.164250px;}
.x6{left:248.407500px;}
.x63{left:253.259250px;}
.x6d{left:258.294900px;}
.x4{left:265.522500px;}
.x85{left:267.892500px;}
.x80{left:272.421000px;}
.x6e{left:278.370900px;}
.x40{left:288.786300px;}
.x7f{left:295.038000px;}
.xb{left:299.765400px;}
.x57{left:321.254250px;}
.x7e{left:338.701050px;}
.x83{left:343.842000px;}
.x1{left:346.158900px;}
.x6f{left:358.884900px;}
.x3{left:363.960150px;}
.x1b{left:370.056000px;}
.x47{left:373.787400px;}
.x1c{left:377.208000px;}
.x81{left:394.578000px;}
.x1f{left:397.920000px;}
.x86{left:406.290000px;}
.x9{left:408.053400px;}
.x42{left:412.853100px;}
.x16{left:423.637500px;}
.x1d{left:438.096000px;}
.x53{left:442.120650px;}
.x88{left:458.250000px;}
.x87{left:472.687500px;}
.x35{left:476.097900px;}
.x11{left:480.268350px;}
.x43{left:487.209750px;}
.x1a{left:503.352000px;}
.x7b{left:521.062500px;}
.x2a{left:526.503750px;}
.x29{left:531.998250px;}
.x2b{left:534.159750px;}
.x24{left:540.966000px;}
.x4a{left:554.455350px;}
.x75{left:564.978000px;}
.x8{left:569.493750px;}
.x4c{left:574.573950px;}
.x84{left:578.559000px;}
.x74{left:585.624000px;}
.x73{left:593.760000px;}
.x59{left:597.260100px;}
.x6b{left:599.512500px;}
.x7{left:613.687500px;}
.x19{left:625.296000px;}
.x34{left:633.017700px;}
.x7c{left:634.762500px;}
.x82{left:645.864000px;}
.x60{left:653.030100px;}
.x1e{left:655.536000px;}
.x37{left:667.837050px;}
.x36{left:671.212050px;}
.x89{left:673.762500px;}
.x5a{left:676.070100px;}
.x2d{left:680.210700px;}
.x26{left:686.964000px;}
.x22{left:691.320000px;}
.x28{left:701.292000px;}
.x48{left:704.465400px;}
.x2c{left:728.456700px;}
.x15{left:732.157500px;}
.x2e{left:736.723200px;}
.x58{left:746.943300px;}
.x5e{left:753.423600px;}
.x7d{left:754.500000px;}
.x4d{left:758.895600px;}
.xe{left:762.685500px;}
.x61{left:847.514850px;}
.x3c{left:849.845400px;}
.x4e{left:879.984150px;}
.x5b{left:894.449850px;}
.x2f{left:898.625100px;}
.x5d{left:902.399850px;}
.x31{left:918.769350px;}
.x3d{left:922.870950px;}
.x10{left:939.385500px;}
.x32{left:976.366650px;}
.x33{left:981.250650px;}
.x3b{left:1007.752200px;}
.x30{left:1023.223350px;}
.x78{left:1086.561900px;}
.x77{left:1093.203900px;}
.x76{left:1141.119900px;}
.x79{left:1145.241900px;}
.x3f{left:1156.816650px;}
.x6a{left:1178.332950px;}
.x39{left:1185.892200px;}
.x64{left:1194.937950px;}
.x67{left:1211.362950px;}
.x65{left:1224.427950px;}
.x69{left:1255.492950px;}
.x3a{left:1265.947200px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws6{word-spacing:-41.514667pt;}
.ws4{word-spacing:-38.400000pt;}
.ws7{word-spacing:-37.066667pt;}
.ws5{word-spacing:-35.584000pt;}
.ws2{word-spacing:-32.618667pt;}
.ws1{word-spacing:-30.720000pt;}
.ws3{word-spacing:-25.600000pt;}
.ws0{word-spacing:0.000000pt;}
._6{margin-left:-14.800000pt;}
._8{margin-left:-12.266667pt;}
._5{margin-left:-11.050667pt;}
._9{margin-left:-8.213333pt;}
._3{margin-left:-6.906667pt;}
._4{margin-left:-5.920000pt;}
._7{margin-left:-4.736000pt;}
._2{margin-left:-3.772267pt;}
._1{margin-left:-2.217600pt;}
._0{margin-left:-0.962133pt;}
.fs0{font-size:58.666667pt;}
.fsc{font-size:64.000000pt;}
.fs9{font-size:85.333333pt;}
.fsb{font-size:106.666667pt;}
.fs8{font-size:112.000000pt;}
.fs7{font-size:117.333333pt;}
.fs6{font-size:128.000000pt;}
.fs2{font-size:133.333333pt;}
.fsa{font-size:149.333333pt;}
.fs5{font-size:160.000000pt;}
.fs3{font-size:170.666667pt;}
.fs1{font-size:186.666667pt;}
.fs4{font-size:192.000000pt;}
.fsd{font-size:266.666667pt;}
.fse{font-size:533.333333pt;}
.yf{bottom:-2.146480pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:8.619147pt;}
.y4{bottom:10.762533pt;}
.y2{bottom:11.002147pt;}
.y48{bottom:11.354533pt;}
.y52{bottom:11.354667pt;}
.y50{bottom:11.698533pt;}
.y58{bottom:11.698667pt;}
.y5e{bottom:14.519733pt;}
.y63{bottom:14.519867pt;}
.y3{bottom:15.892560pt;}
.y4b{bottom:20.327600pt;}
.y4d{bottom:20.327733pt;}
.yc{bottom:20.635307pt;}
.y17{bottom:23.210667pt;}
.y14{bottom:23.210800pt;}
.y1a{bottom:27.109467pt;}
.y10{bottom:43.400960pt;}
.y1{bottom:45.011680pt;}
.ya{bottom:45.318600pt;}
.y5d{bottom:46.519733pt;}
.y68{bottom:46.519867pt;}
.y19{bottom:75.654533pt;}
.ye{bottom:75.969667pt;}
.y9{bottom:108.023960pt;}
.y45{bottom:118.954187pt;}
.y8{bottom:148.024000pt;}
.y1d{bottom:177.450000pt;}
.y56{bottom:200.680400pt;}
.y57{bottom:201.416000pt;}
.y30{bottom:209.307067pt;}
.y7{bottom:216.898000pt;}
.y1c{bottom:225.450000pt;}
.y71{bottom:234.190133pt;}
.y44{bottom:236.393467pt;}
.y2f{bottom:248.229600pt;}
.y61{bottom:253.264133pt;}
.y18{bottom:258.411067pt;}
.y41{bottom:261.060133pt;}
.y1b{bottom:273.450000pt;}
.y6{bottom:274.231333pt;}
.y90{bottom:274.884667pt;}
.y55{bottom:283.800267pt;}
.y43{bottom:285.726800pt;}
.y40{bottom:310.393467pt;}
.y46{bottom:323.150800pt;}
.y2e{bottom:325.818800pt;}
.y5{bottom:331.564667pt;}
.y54{bottom:332.090000pt;}
.y42{bottom:335.060133pt;}
.y70{bottom:336.375333pt;}
.y13{bottom:346.710000pt;}
.y53{bottom:347.599333pt;}
.y64{bottom:354.379200pt;}
.y25{bottom:365.984400pt;}
.y62{bottom:370.379200pt;}
.y5f{bottom:370.379333pt;}
.y6f{bottom:376.375333pt;}
.y3c{bottom:384.686933pt;}
.y4f{bottom:385.618933pt;}
.y2d{bottom:403.152133pt;}
.y24{bottom:417.984400pt;}
.y4e{bottom:428.006533pt;}
.y2c{bottom:442.074667pt;}
.y7d{bottom:447.266133pt;}
.y6e{bottom:456.375333pt;}
.y3b{bottom:458.028000pt;}
.y3d{bottom:461.312800pt;}
.y23{bottom:469.984400pt;}
.y66{bottom:471.494400pt;}
.y60{bottom:471.494533pt;}
.y88{bottom:486.700667pt;}
.y4c{bottom:493.704800pt;}
.y3a{bottom:494.028000pt;}
.y7e{bottom:494.112667pt;}
.y6d{bottom:496.375333pt;}
.y8f{bottom:505.332400pt;}
.y2b{bottom:519.408000pt;}
.y22{bottom:521.984400pt;}
.y7c{bottom:527.266133pt;}
.y87{bottom:532.034000pt;}
.y74{bottom:543.221733pt;}
.y2a{bottom:558.330533pt;}
.y8b{bottom:559.996667pt;}
.y4a{bottom:560.382133pt;}
.y21{bottom:574.325467pt;}
.y6c{bottom:576.375333pt;}
.y86{bottom:577.367333pt;}
.y73{bottom:588.555067pt;}
.y67{bottom:588.609600pt;}
.y65{bottom:588.609733pt;}
.y82{bottom:588.980800pt;}
.y16{bottom:598.623067pt;}
.y15{bottom:598.666533pt;}
.y8a{bottom:605.330000pt;}
.y39{bottom:611.572667pt;}
.y6b{bottom:616.375333pt;}
.y7b{bottom:622.939467pt;}
.y85{bottom:622.999067pt;}
.y20{bottom:626.325467pt;}
.y72{bottom:634.186933pt;}
.y81{bottom:634.314133pt;}
.y29{bottom:635.663867pt;}
.y33{bottom:641.004800pt;}
.y77{bottom:642.272800pt;}
.y38{bottom:644.906000pt;}
.y89{bottom:650.961867pt;}
.y7a{bottom:661.606133pt;}
.y28{bottom:674.330533pt;}
.y32{bottom:677.004800pt;}
.y37{bottom:678.239333pt;}
.y80{bottom:679.945867pt;}
.y76{bottom:680.939467pt;}
.y8c{bottom:688.594533pt;}
.y6a{bottom:696.375333pt;}
.y79{bottom:700.272800pt;}
.y31{bottom:713.004800pt;}
.y27{bottom:713.253067pt;}
.y8d{bottom:713.850400pt;}
.y75{bottom:719.829733pt;}
.y36{bottom:724.288800pt;}
.y69{bottom:736.375333pt;}
.y51{bottom:736.825600pt;}
.y47{bottom:737.556000pt;}
.y78{bottom:739.163067pt;}
.y8e{bottom:745.483467pt;}
.y49{bottom:748.307467pt;}
.y5c{bottom:750.975467pt;}
.y35{bottom:760.288800pt;}
.y26{bottom:790.586400pt;}
.y34{bottom:796.288800pt;}
.y3f{bottom:875.991600pt;}
.y84{bottom:877.805600pt;}
.yd{bottom:901.262667pt;}
.y1e{bottom:911.716667pt;}
.y5a{bottom:913.388933pt;}
.y11{bottom:913.736667pt;}
.y5b{bottom:914.184933pt;}
.y59{bottom:915.417467pt;}
.y12{bottom:915.716667pt;}
.y1f{bottom:917.050000pt;}
.y7f{bottom:917.494400pt;}
.y83{bottom:917.938800pt;}
.y3e{bottom:925.324933pt;}
.h9{height:10.666667pt;}
.h7{height:26.765640pt;}
.h6{height:28.098973pt;}
.h3{height:31.575680pt;}
.h1{height:33.148627pt;}
.h17{height:36.426600pt;}
.h2{height:44.000000pt;}
.h21{height:47.759893pt;}
.h16{height:62.208000pt;}
.h18{height:62.378667pt;}
.h19{height:63.208333pt;}
.h1a{height:67.397173pt;}
.ha{height:77.429360pt;}
.h20{height:79.466667pt;}
.h1f{height:79.759893pt;}
.h14{height:81.648000pt;}
.h1d{height:82.906533pt;}
.h13{height:85.536000pt;}
.h11{height:93.312000pt;}
.h12{height:95.360000pt;}
.h5{height:97.200000pt;}
.h8{height:97.466667pt;}
.h22{height:108.864000pt;}
.h1b{height:111.253333pt;}
.he{height:116.640000pt;}
.h15{height:119.200000pt;}
.h1e{height:120.874533pt;}
.hf{height:124.416000pt;}
.hb{height:124.757333pt;}
.h10{height:127.146667pt;}
.h24{height:134.400000pt;}
.hc{height:136.864933pt;}
.h4{height:139.066667pt;}
.hd{height:139.968000pt;}
.h23{height:198.666667pt;}
.h1c{height:230.597067pt;}
.h25{height:397.333333pt;}
.h0{height:1024.000000pt;}
.w1b{width:62.986560pt;}
.wf{width:67.397200pt;}
.w1e{width:67.413227pt;}
.w27{width:76.799893pt;}
.w10{width:97.877267pt;}
.w11{width:116.501267pt;}
.w20{width:129.733227pt;}
.w13{width:142.185600pt;}
.w19{width:161.119867pt;}
.w25{width:184.453200pt;}
.w22{width:187.293200pt;}
.w7{width:197.472000pt;}
.wb{width:199.850533pt;}
.w1d{width:207.519867pt;}
.w15{width:209.951867pt;}
.w28{width:219.666533pt;}
.w1f{width:235.186533pt;}
.w8{width:243.338667pt;}
.w12{width:246.370667pt;}
.w21{width:247.453200pt;}
.w18{width:251.506533pt;}
.we{width:261.733200pt;}
.wd{width:263.749200pt;}
.w1c{width:268.146533pt;}
.w26{width:281.533200pt;}
.w24{width:299.293200pt;}
.wc{width:324.490533pt;}
.w9{width:327.861333pt;}
.w17{width:346.599867pt;}
.w1a{width:350.093200pt;}
.w14{width:366.005200pt;}
.w16{width:371.530533pt;}
.wa{width:424.194533pt;}
.w23{width:438.013200pt;}
.w5{width:785.394000pt;}
.w3{width:787.746133pt;}
.w6{width:789.600400pt;}
.w4{width:791.952667pt;}
.w2{width:878.628267pt;}
.w1{width:929.311733pt;}
.w0{width:1365.333333pt;}
.x0{left:0.000000pt;}
.xc{left:4.157200pt;}
.x2{left:5.333333pt;}
.x3e{left:6.880000pt;}
.x52{left:8.546600pt;}
.x41{left:11.698667pt;}
.xf{left:13.381333pt;}
.x14{left:14.826533pt;}
.x4b{left:17.748800pt;}
.x54{left:19.400000pt;}
.x68{left:21.133200pt;}
.x5c{left:29.719867pt;}
.x51{left:32.253213pt;}
.x66{left:33.693200pt;}
.x13{left:37.050533pt;}
.x56{left:40.880000pt;}
.x45{left:47.069600pt;}
.x62{left:50.506533pt;}
.x5f{left:52.200000pt;}
.x49{left:60.166667pt;}
.x70{left:70.625320pt;}
.x38{left:74.800000pt;}
.xd{left:75.950000pt;}
.xa{left:77.662587pt;}
.x4f{left:79.153013pt;}
.x18{left:82.661493pt;}
.x71{left:88.497320pt;}
.x50{left:103.562920pt;}
.x27{left:131.242693pt;}
.x25{left:134.442667pt;}
.x17{left:145.066667pt;}
.x23{left:153.130667pt;}
.x20{left:154.906667pt;}
.x21{left:163.050667pt;}
.x6c{left:164.006667pt;}
.x72{left:171.217333pt;}
.x46{left:184.786000pt;}
.x12{left:191.800800pt;}
.x44{left:194.267333pt;}
.x7a{left:198.017200pt;}
.x5{left:207.436667pt;}
.x55{left:210.812667pt;}
.x6{left:220.806667pt;}
.x63{left:225.119333pt;}
.x6d{left:229.595467pt;}
.x4{left:236.020000pt;}
.x85{left:238.126667pt;}
.x80{left:242.152000pt;}
.x6e{left:247.440800pt;}
.x40{left:256.698933pt;}
.x7f{left:262.256000pt;}
.xb{left:266.458133pt;}
.x57{left:285.559333pt;}
.x7e{left:301.067600pt;}
.x83{left:305.637333pt;}
.x1{left:307.696800pt;}
.x6f{left:319.008800pt;}
.x3{left:323.520133pt;}
.x1b{left:328.938667pt;}
.x47{left:332.255467pt;}
.x1c{left:335.296000pt;}
.x81{left:350.736000pt;}
.x1f{left:353.706667pt;}
.x86{left:361.146667pt;}
.x9{left:362.714133pt;}
.x42{left:366.980533pt;}
.x16{left:376.566667pt;}
.x1d{left:389.418667pt;}
.x53{left:392.996133pt;}
.x88{left:407.333333pt;}
.x87{left:420.166667pt;}
.x35{left:423.198133pt;}
.x11{left:426.905200pt;}
.x43{left:433.075333pt;}
.x1a{left:447.424000pt;}
.x7b{left:463.166667pt;}
.x2a{left:468.003333pt;}
.x29{left:472.887333pt;}
.x2b{left:474.808667pt;}
.x24{left:480.858667pt;}
.x4a{left:492.849200pt;}
.x75{left:502.202667pt;}
.x8{left:506.216667pt;}
.x4c{left:510.732400pt;}
.x84{left:514.274667pt;}
.x74{left:520.554667pt;}
.x73{left:527.786667pt;}
.x59{left:530.897867pt;}
.x6b{left:532.900000pt;}
.x7{left:545.500000pt;}
.x19{left:555.818667pt;}
.x34{left:562.682400pt;}
.x7c{left:564.233333pt;}
.x82{left:574.101333pt;}
.x60{left:580.471200pt;}
.x1e{left:582.698667pt;}
.x37{left:593.632933pt;}
.x36{left:596.632933pt;}
.x89{left:598.900000pt;}
.x5a{left:600.951200pt;}
.x2d{left:604.631733pt;}
.x26{left:610.634667pt;}
.x22{left:614.506667pt;}
.x28{left:623.370667pt;}
.x48{left:626.191467pt;}
.x2c{left:647.517067pt;}
.x15{left:650.806667pt;}
.x2e{left:654.865067pt;}
.x58{left:663.949600pt;}
.x5e{left:669.709867pt;}
.x7d{left:670.666667pt;}
.x4d{left:674.573867pt;}
.xe{left:677.942667pt;}
.x61{left:753.346533pt;}
.x3c{left:755.418133pt;}
.x4e{left:782.208133pt;}
.x5b{left:795.066533pt;}
.x2f{left:798.777867pt;}
.x5d{left:802.133200pt;}
.x31{left:816.683867pt;}
.x3d{left:820.329733pt;}
.x10{left:835.009333pt;}
.x32{left:867.881467pt;}
.x33{left:872.222800pt;}
.x3b{left:895.779733pt;}
.x30{left:909.531867pt;}
.x78{left:965.832800pt;}
.x77{left:971.736800pt;}
.x76{left:1014.328800pt;}
.x79{left:1017.992800pt;}
.x3f{left:1028.281467pt;}
.x6a{left:1047.407067pt;}
.x39{left:1054.126400pt;}
.x64{left:1062.167067pt;}
.x67{left:1076.767067pt;}
.x65{left:1088.380400pt;}
.x69{left:1115.993733pt;}
.x3a{left:1125.286400pt;}
}




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