
    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_4ce9ac4ded54e912167a4b52.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.893555;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_e2bfdf628c11b6f4e0b7d932.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.091309;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_94fb35ad6020d89c074e9ae6.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.687500;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_c8c7ab24e4ad7bbedd52873c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910156;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.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.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);}
.v5{vertical-align:-19.799400px;}
.v2{vertical-align:-15.840000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:15.816000px;}
.v1{vertical-align:19.799400px;}
.v4{vertical-align:24.000000px;}
.ls3{letter-spacing:-2.640000px;}
.ls1{letter-spacing:-0.864000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.600000px;}
.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;}
}
.wsc{word-spacing:-12.000000px;}
.wsf{word-spacing:-9.360000px;}
.wsb{word-spacing:-8.700000px;}
.ws9{word-spacing:-6.960000px;}
.ws7{word-spacing:-2.016000px;}
.ws3{word-spacing:-1.200000px;}
.ws4{word-spacing:-0.900000px;}
.wsd{word-spacing:-0.600000px;}
.ws0{word-spacing:-0.034800px;}
.ws1{word-spacing:-0.027840px;}
.ws2{word-spacing:0.000000px;}
.wsa{word-spacing:0.864000px;}
.ws5{word-spacing:1.056000px;}
.wse{word-spacing:6.000000px;}
.ws6{word-spacing:7.104000px;}
.ws8{word-spacing:10.992000px;}
._f{margin-left:-14.640000px;}
._10{margin-left:-12.960000px;}
._3a{margin-left:-6.240000px;}
._d{margin-left:-4.656000px;}
._1{margin-left:-3.360000px;}
._2{margin-left:-2.256000px;}
._0{margin-left:-1.080000px;}
._5{width:1.200000px;}
._4{width:2.352000px;}
._3{width:4.224000px;}
._8{width:5.328000px;}
._6{width:6.336000px;}
._7{width:7.344000px;}
._9{width:8.400000px;}
._e{width:9.780000px;}
._c{width:10.944000px;}
._b{width:12.180000px;}
._a{width:13.260000px;}
._41{width:14.292000px;}
._39{width:19.200000px;}
._11{width:36.912000px;}
._16{width:69.744000px;}
._3f{width:72.929573px;}
._40{width:75.180907px;}
._21{width:83.010240px;}
._2f{width:85.266240px;}
._18{width:88.224000px;}
._3d{width:96.930240px;}
._15{width:104.640000px;}
._29{width:107.010240px;}
._37{width:109.037760px;}
._1a{width:113.991573px;}
._3c{width:120.960907px;}
._24{width:129.312000px;}
._2a{width:131.970240px;}
._22{width:133.344000px;}
._2b{width:135.120000px;}
._1f{width:140.016000px;}
._35{width:146.736000px;}
._1e{width:153.312000px;}
._1b{width:157.344000px;}
._31{width:158.736000px;}
._25{width:164.016000px;}
._17{width:166.896000px;}
._2e{width:174.672000px;}
._1d{width:177.312000px;}
._1c{width:180.000000px;}
._33{width:181.824000px;}
._20{width:193.344000px;}
._27{width:200.016000px;}
._36{width:201.312000px;}
._23{width:204.000000px;}
._38{width:222.720000px;}
._28{width:225.312000px;}
._2c{width:228.480000px;}
._19{width:230.688000px;}
._2d{width:234.048000px;}
._34{width:238.656000px;}
._32{width:240.000000px;}
._26{width:250.032000px;}
._30{width:254.688000px;}
._3e{width:264.000000px;}
._12{width:270.192000px;}
._3b{width:272.832000px;}
._13{width:634.656000px;}
._14{width:838.656000px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:27.840000px;}
.fs1{font-size:34.800000px;}
.fs5{font-size:36.000000px;}
.fs3{font-size:48.000000px;}
.fs4{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.y0{bottom:0.000000px;}
.y37{bottom:102.050250px;}
.y6b{bottom:102.739650px;}
.y7f{bottom:103.291200px;}
.yaf{bottom:104.706150px;}
.ye2{bottom:104.971500px;}
.y36{bottom:111.050250px;}
.ye1{bottom:117.715500px;}
.y6a{bottom:118.639650px;}
.y7e{bottom:119.191200px;}
.y35{bottom:120.050250px;}
.yae{bottom:120.606150px;}
.y34{bottom:129.050250px;}
.ye0{bottom:130.459500px;}
.y69{bottom:134.539650px;}
.y7d{bottom:135.091200px;}
.yad{bottom:136.506150px;}
.y33{bottom:141.047250px;}
.ydf{bottom:143.203500px;}
.y68{bottom:150.439650px;}
.y7c{bottom:150.991200px;}
.yac{bottom:152.406150px;}
.yde{bottom:155.947500px;}
.y31{bottom:161.775600px;}
.y67{bottom:166.339650px;}
.y7b{bottom:166.891200px;}
.yab{bottom:168.306150px;}
.ydd{bottom:168.691500px;}
.y30{bottom:177.675600px;}
.ydc{bottom:181.435500px;}
.y66{bottom:182.239650px;}
.y7a{bottom:182.791200px;}
.yaa{bottom:184.206150px;}
.y2f{bottom:193.575600px;}
.ydb{bottom:194.179500px;}
.y65{bottom:198.139650px;}
.y79{bottom:198.691200px;}
.ya9{bottom:200.106150px;}
.yda{bottom:206.923500px;}
.y2e{bottom:209.475600px;}
.y64{bottom:214.039650px;}
.y78{bottom:214.591200px;}
.ya8{bottom:216.006150px;}
.yd9{bottom:219.667500px;}
.y2d{bottom:225.375600px;}
.y63{bottom:229.939650px;}
.ya7{bottom:231.906150px;}
.yd8{bottom:232.411500px;}
.y77{bottom:239.491200px;}
.y2c{bottom:241.275600px;}
.yd7{bottom:245.155500px;}
.y62{bottom:245.839650px;}
.ya6{bottom:247.806150px;}
.y2b{bottom:257.175600px;}
.yd6{bottom:257.899500px;}
.y61{bottom:261.739650px;}
.ya5{bottom:263.706150px;}
.yd5{bottom:270.643500px;}
.y2a{bottom:273.075600px;}
.y76{bottom:274.291200px;}
.y60{bottom:277.639650px;}
.ya4{bottom:279.606150px;}
.yd4{bottom:283.387500px;}
.y29{bottom:288.975600px;}
.y75{bottom:290.191200px;}
.y5f{bottom:293.539650px;}
.ya3{bottom:295.506150px;}
.yd3{bottom:296.131500px;}
.y28{bottom:304.875600px;}
.y74{bottom:306.091200px;}
.yd2{bottom:308.875500px;}
.y5e{bottom:309.439650px;}
.ya2{bottom:311.406150px;}
.y27{bottom:320.775600px;}
.yd1{bottom:321.619500px;}
.y73{bottom:321.991200px;}
.y5d{bottom:325.339650px;}
.ya1{bottom:327.306150px;}
.yd0{bottom:334.363500px;}
.y26{bottom:336.675600px;}
.y72{bottom:337.891200px;}
.y5c{bottom:341.239650px;}
.ya0{bottom:343.206150px;}
.ycf{bottom:347.107500px;}
.y25{bottom:352.575600px;}
.y71{bottom:353.791200px;}
.y5b{bottom:357.139650px;}
.y9f{bottom:359.106150px;}
.yce{bottom:359.851500px;}
.y24{bottom:368.475600px;}
.y70{bottom:369.691200px;}
.ycd{bottom:372.595500px;}
.y5a{bottom:373.039650px;}
.y9e{bottom:375.006150px;}
.y23{bottom:384.375600px;}
.y6f{bottom:385.591200px;}
.y59{bottom:388.939650px;}
.y9d{bottom:390.906150px;}
.ycc{bottom:398.095500px;}
.y22{bottom:400.275600px;}
.y6e{bottom:401.491200px;}
.y58{bottom:404.839650px;}
.y9c{bottom:406.806150px;}
.y21{bottom:416.175600px;}
.y6d{bottom:417.391200px;}
.y57{bottom:420.739650px;}
.y9b{bottom:422.706150px;}
.ycb{bottom:423.595500px;}
.y20{bottom:432.075600px;}
.yca{bottom:436.339500px;}
.y56{bottom:436.639650px;}
.y1f{bottom:447.975600px;}
.yc9{bottom:461.839500px;}
.y55{bottom:464.539650px;}
.yb4{bottom:466.164000px;}
.yb3{bottom:470.124000px;}
.y9a{bottom:473.124000px;}
.y1e{bottom:475.875600px;}
.y99{bottom:482.663850px;}
.yb2{bottom:482.664000px;}
.yc8{bottom:486.589500px;}
.y54{bottom:495.559500px;}
.y98{bottom:496.163850px;}
.yb1{bottom:496.164000px;}
.y1d{bottom:497.733600px;}
.yc7{bottom:502.489500px;}
.y53{bottom:508.303500px;}
.y1c{bottom:510.477600px;}
.yc6{bottom:518.389500px;}
.y52{bottom:521.047500px;}
.y1b{bottom:523.221600px;}
.y97{bottom:527.380500px;}
.y51{bottom:533.791500px;}
.yc5{bottom:534.289500px;}
.y1a{bottom:535.965600px;}
.y96{bottom:543.880500px;}
.y50{bottom:546.535500px;}
.y19{bottom:548.709600px;}
.yc4{bottom:550.189500px;}
.y4f{bottom:559.279500px;}
.y95{bottom:560.380500px;}
.y18{bottom:561.453600px;}
.yc3{bottom:566.089500px;}
.y4e{bottom:572.023500px;}
.y17{bottom:574.197600px;}
.y94{bottom:576.880500px;}
.yc2{bottom:581.989500px;}
.y4d{bottom:584.767500px;}
.y16{bottom:586.941600px;}
.y93{bottom:593.380500px;}
.y4c{bottom:597.511500px;}
.yc1{bottom:597.889500px;}
.y15{bottom:599.685600px;}
.y92{bottom:609.880500px;}
.y4b{bottom:610.255500px;}
.y14{bottom:612.429600px;}
.yc0{bottom:613.789500px;}
.y4a{bottom:622.999500px;}
.y13{bottom:625.173600px;}
.y91{bottom:626.380500px;}
.ybf{bottom:629.689500px;}
.y49{bottom:635.743500px;}
.y12{bottom:637.917600px;}
.y90{bottom:642.880500px;}
.ybe{bottom:645.589500px;}
.y48{bottom:648.487500px;}
.y11{bottom:650.661600px;}
.y8f{bottom:659.380500px;}
.y47{bottom:661.231500px;}
.ybd{bottom:661.489500px;}
.y10{bottom:663.405600px;}
.y46{bottom:673.975500px;}
.y8e{bottom:675.880500px;}
.yf{bottom:676.149600px;}
.ybc{bottom:677.389500px;}
.y45{bottom:686.719500px;}
.y8d{bottom:692.380500px;}
.ybb{bottom:693.289500px;}
.ye{bottom:696.393600px;}
.y44{bottom:699.463500px;}
.y8c{bottom:708.880500px;}
.yba{bottom:709.189500px;}
.y43{bottom:712.207500px;}
.yd{bottom:719.637600px;}
.yf2{bottom:723.559950px;}
.y42{bottom:724.951500px;}
.yb9{bottom:725.089500px;}
.y8b{bottom:725.380500px;}
.yc{bottom:732.381600px;}
.yf1{bottom:736.303950px;}
.y41{bottom:737.695500px;}
.yb8{bottom:740.989500px;}
.y8a{bottom:741.880500px;}
.yf0{bottom:749.047950px;}
.y40{bottom:750.439500px;}
.yb7{bottom:756.889500px;}
.yb{bottom:758.084880px;}
.y89{bottom:758.380500px;}
.yef{bottom:761.791950px;}
.ya{bottom:766.881600px;}
.yb6{bottom:772.789500px;}
.yee{bottom:774.535950px;}
.y88{bottom:774.880500px;}
.y3f{bottom:775.939500px;}
.y9{bottom:783.585600px;}
.yed{bottom:787.279950px;}
.yb5{bottom:788.689500px;}
.y87{bottom:791.380500px;}
.y8{bottom:796.335600px;}
.yec{bottom:800.023950px;}
.y3e{bottom:804.589500px;}
.y86{bottom:807.880500px;}
.y7{bottom:809.085600px;}
.yeb{bottom:812.767950px;}
.y3d{bottom:820.489500px;}
.y6{bottom:821.835600px;}
.y85{bottom:824.380500px;}
.yea{bottom:825.511950px;}
.y3c{bottom:836.389500px;}
.ye9{bottom:838.255950px;}
.y5{bottom:839.625600px;}
.y84{bottom:840.880500px;}
.y4{bottom:850.574850px;}
.ye8{bottom:850.999950px;}
.y83{bottom:851.380500px;}
.y3b{bottom:852.289500px;}
.y3{bottom:855.525600px;}
.ye7{bottom:863.743950px;}
.y3a{bottom:868.189500px;}
.ye6{bottom:876.487950px;}
.y39{bottom:884.089500px;}
.y2{bottom:884.925600px;}
.y82{bottom:888.100950px;}
.ye5{bottom:889.231950px;}
.y38{bottom:899.989500px;}
.y1{bottom:900.825600px;}
.y81{bottom:901.600950px;}
.ye4{bottom:901.975950px;}
.ye3{bottom:934.005450px;}
.y80{bottom:934.006200px;}
.y6c{bottom:934.009650px;}
.yb0{bottom:934.011150px;}
.y32{bottom:935.413950px;}
.hf{height:24.373594px;}
.hb{height:24.398438px;}
.he{height:26.182838px;}
.h5{height:26.183438px;}
.h7{height:26.186318px;}
.h4{height:30.466992px;}
.hc{height:31.517578px;}
.h9{height:32.531250px;}
.h8{height:33.328125px;}
.ha{height:37.494141px;}
.h2{height:40.664062px;}
.h6{height:42.023438px;}
.h3{height:52.529297px;}
.hd{height:66.023438px;}
.h1{height:999.000000px;}
.h0{height:999.213000px;}
.w1{width:701.250000px;}
.w0{width:701.575500px;}
.x0{left:0.000000px;}
.x10{left:80.793300px;}
.x1{left:83.153100px;}
.x15{left:84.330750px;}
.x16{left:85.648350px;}
.xf{left:93.543300px;}
.x3{left:101.303100px;}
.x6{left:102.414600px;}
.x7{left:112.955550px;}
.x9{left:115.979100px;}
.x8{left:118.489800px;}
.xb{left:131.028750px;}
.xa{left:251.146950px;}
.x11{left:268.898100px;}
.x2{left:281.288100px;}
.xd{left:289.031400px;}
.xc{left:298.151400px;}
.x17{left:303.458250px;}
.x5{left:311.749650px;}
.x14{left:323.397450px;}
.x13{left:327.452400px;}
.xe{left:328.463400px;}
.x12{left:399.684450px;}
.x4{left:598.102950px;}
@media print{
.v5{vertical-align:-17.599467pt;}
.v2{vertical-align:-14.080000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:14.058667pt;}
.v1{vertical-align:17.599467pt;}
.v4{vertical-align:21.333333pt;}
.ls3{letter-spacing:-2.346667pt;}
.ls1{letter-spacing:-0.768000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.533333pt;}
.wsc{word-spacing:-10.666667pt;}
.wsf{word-spacing:-8.320000pt;}
.wsb{word-spacing:-7.733333pt;}
.ws9{word-spacing:-6.186667pt;}
.ws7{word-spacing:-1.792000pt;}
.ws3{word-spacing:-1.066667pt;}
.ws4{word-spacing:-0.800000pt;}
.wsd{word-spacing:-0.533333pt;}
.ws0{word-spacing:-0.030933pt;}
.ws1{word-spacing:-0.024747pt;}
.ws2{word-spacing:0.000000pt;}
.wsa{word-spacing:0.768000pt;}
.ws5{word-spacing:0.938667pt;}
.wse{word-spacing:5.333333pt;}
.ws6{word-spacing:6.314667pt;}
.ws8{word-spacing:9.770667pt;}
._f{margin-left:-13.013333pt;}
._10{margin-left:-11.520000pt;}
._3a{margin-left:-5.546667pt;}
._d{margin-left:-4.138667pt;}
._1{margin-left:-2.986667pt;}
._2{margin-left:-2.005333pt;}
._0{margin-left:-0.960000pt;}
._5{width:1.066667pt;}
._4{width:2.090667pt;}
._3{width:3.754667pt;}
._8{width:4.736000pt;}
._6{width:5.632000pt;}
._7{width:6.528000pt;}
._9{width:7.466667pt;}
._e{width:8.693333pt;}
._c{width:9.728000pt;}
._b{width:10.826667pt;}
._a{width:11.786667pt;}
._41{width:12.704000pt;}
._39{width:17.066667pt;}
._11{width:32.810667pt;}
._16{width:61.994667pt;}
._3f{width:64.826287pt;}
._40{width:66.827473pt;}
._21{width:73.786880pt;}
._2f{width:75.792213pt;}
._18{width:78.421333pt;}
._3d{width:86.160213pt;}
._15{width:93.013333pt;}
._29{width:95.120213pt;}
._37{width:96.922453pt;}
._1a{width:101.325843pt;}
._3c{width:107.520806pt;}
._24{width:114.944000pt;}
._2a{width:117.306880pt;}
._22{width:118.528000pt;}
._2b{width:120.106667pt;}
._1f{width:124.458667pt;}
._35{width:130.432000pt;}
._1e{width:136.277333pt;}
._1b{width:139.861333pt;}
._31{width:141.098667pt;}
._25{width:145.792000pt;}
._17{width:148.352000pt;}
._2e{width:155.264000pt;}
._1d{width:157.610667pt;}
._1c{width:160.000000pt;}
._33{width:161.621333pt;}
._20{width:171.861333pt;}
._27{width:177.792000pt;}
._36{width:178.944000pt;}
._23{width:181.333333pt;}
._38{width:197.973333pt;}
._28{width:200.277333pt;}
._2c{width:203.093333pt;}
._19{width:205.056000pt;}
._2d{width:208.042667pt;}
._34{width:212.138667pt;}
._32{width:213.333333pt;}
._26{width:222.250667pt;}
._30{width:226.389333pt;}
._3e{width:234.666667pt;}
._12{width:240.170667pt;}
._3b{width:242.517333pt;}
._13{width:564.138667pt;}
._14{width:745.472000pt;}
.fs2{font-size:24.746667pt;}
.fs1{font-size:30.933333pt;}
.fs5{font-size:32.000000pt;}
.fs3{font-size:42.666667pt;}
.fs4{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.y0{bottom:0.000000pt;}
.y37{bottom:90.711333pt;}
.y6b{bottom:91.324133pt;}
.y7f{bottom:91.814400pt;}
.yaf{bottom:93.072133pt;}
.ye2{bottom:93.308000pt;}
.y36{bottom:98.711333pt;}
.ye1{bottom:104.636000pt;}
.y6a{bottom:105.457467pt;}
.y7e{bottom:105.947733pt;}
.y35{bottom:106.711333pt;}
.yae{bottom:107.205467pt;}
.y34{bottom:114.711333pt;}
.ye0{bottom:115.964000pt;}
.y69{bottom:119.590800pt;}
.y7d{bottom:120.081067pt;}
.yad{bottom:121.338800pt;}
.y33{bottom:125.375333pt;}
.ydf{bottom:127.292000pt;}
.y68{bottom:133.724133pt;}
.y7c{bottom:134.214400pt;}
.yac{bottom:135.472133pt;}
.yde{bottom:138.620000pt;}
.y31{bottom:143.800533pt;}
.y67{bottom:147.857467pt;}
.y7b{bottom:148.347733pt;}
.yab{bottom:149.605467pt;}
.ydd{bottom:149.948000pt;}
.y30{bottom:157.933867pt;}
.ydc{bottom:161.276000pt;}
.y66{bottom:161.990800pt;}
.y7a{bottom:162.481067pt;}
.yaa{bottom:163.738800pt;}
.y2f{bottom:172.067200pt;}
.ydb{bottom:172.604000pt;}
.y65{bottom:176.124133pt;}
.y79{bottom:176.614400pt;}
.ya9{bottom:177.872133pt;}
.yda{bottom:183.932000pt;}
.y2e{bottom:186.200533pt;}
.y64{bottom:190.257467pt;}
.y78{bottom:190.747733pt;}
.ya8{bottom:192.005467pt;}
.yd9{bottom:195.260000pt;}
.y2d{bottom:200.333867pt;}
.y63{bottom:204.390800pt;}
.ya7{bottom:206.138800pt;}
.yd8{bottom:206.588000pt;}
.y77{bottom:212.881067pt;}
.y2c{bottom:214.467200pt;}
.yd7{bottom:217.916000pt;}
.y62{bottom:218.524133pt;}
.ya6{bottom:220.272133pt;}
.y2b{bottom:228.600533pt;}
.yd6{bottom:229.244000pt;}
.y61{bottom:232.657467pt;}
.ya5{bottom:234.405467pt;}
.yd5{bottom:240.572000pt;}
.y2a{bottom:242.733867pt;}
.y76{bottom:243.814400pt;}
.y60{bottom:246.790800pt;}
.ya4{bottom:248.538800pt;}
.yd4{bottom:251.900000pt;}
.y29{bottom:256.867200pt;}
.y75{bottom:257.947733pt;}
.y5f{bottom:260.924133pt;}
.ya3{bottom:262.672133pt;}
.yd3{bottom:263.228000pt;}
.y28{bottom:271.000533pt;}
.y74{bottom:272.081067pt;}
.yd2{bottom:274.556000pt;}
.y5e{bottom:275.057467pt;}
.ya2{bottom:276.805467pt;}
.y27{bottom:285.133867pt;}
.yd1{bottom:285.884000pt;}
.y73{bottom:286.214400pt;}
.y5d{bottom:289.190800pt;}
.ya1{bottom:290.938800pt;}
.yd0{bottom:297.212000pt;}
.y26{bottom:299.267200pt;}
.y72{bottom:300.347733pt;}
.y5c{bottom:303.324133pt;}
.ya0{bottom:305.072133pt;}
.ycf{bottom:308.540000pt;}
.y25{bottom:313.400533pt;}
.y71{bottom:314.481067pt;}
.y5b{bottom:317.457467pt;}
.y9f{bottom:319.205467pt;}
.yce{bottom:319.868000pt;}
.y24{bottom:327.533867pt;}
.y70{bottom:328.614400pt;}
.ycd{bottom:331.196000pt;}
.y5a{bottom:331.590800pt;}
.y9e{bottom:333.338800pt;}
.y23{bottom:341.667200pt;}
.y6f{bottom:342.747733pt;}
.y59{bottom:345.724133pt;}
.y9d{bottom:347.472133pt;}
.ycc{bottom:353.862667pt;}
.y22{bottom:355.800533pt;}
.y6e{bottom:356.881067pt;}
.y58{bottom:359.857467pt;}
.y9c{bottom:361.605467pt;}
.y21{bottom:369.933867pt;}
.y6d{bottom:371.014400pt;}
.y57{bottom:373.990800pt;}
.y9b{bottom:375.738800pt;}
.ycb{bottom:376.529333pt;}
.y20{bottom:384.067200pt;}
.yca{bottom:387.857333pt;}
.y56{bottom:388.124133pt;}
.y1f{bottom:398.200533pt;}
.yc9{bottom:410.524000pt;}
.y55{bottom:412.924133pt;}
.yb4{bottom:414.368000pt;}
.yb3{bottom:417.888000pt;}
.y9a{bottom:420.554667pt;}
.y1e{bottom:423.000533pt;}
.y99{bottom:429.034533pt;}
.yb2{bottom:429.034667pt;}
.yc8{bottom:432.524000pt;}
.y54{bottom:440.497333pt;}
.y98{bottom:441.034533pt;}
.yb1{bottom:441.034667pt;}
.y1d{bottom:442.429867pt;}
.yc7{bottom:446.657333pt;}
.y53{bottom:451.825333pt;}
.y1c{bottom:453.757867pt;}
.yc6{bottom:460.790667pt;}
.y52{bottom:463.153333pt;}
.y1b{bottom:465.085867pt;}
.y97{bottom:468.782667pt;}
.y51{bottom:474.481333pt;}
.yc5{bottom:474.924000pt;}
.y1a{bottom:476.413867pt;}
.y96{bottom:483.449333pt;}
.y50{bottom:485.809333pt;}
.y19{bottom:487.741867pt;}
.yc4{bottom:489.057333pt;}
.y4f{bottom:497.137333pt;}
.y95{bottom:498.116000pt;}
.y18{bottom:499.069867pt;}
.yc3{bottom:503.190667pt;}
.y4e{bottom:508.465333pt;}
.y17{bottom:510.397867pt;}
.y94{bottom:512.782667pt;}
.yc2{bottom:517.324000pt;}
.y4d{bottom:519.793333pt;}
.y16{bottom:521.725867pt;}
.y93{bottom:527.449333pt;}
.y4c{bottom:531.121333pt;}
.yc1{bottom:531.457333pt;}
.y15{bottom:533.053867pt;}
.y92{bottom:542.116000pt;}
.y4b{bottom:542.449333pt;}
.y14{bottom:544.381867pt;}
.yc0{bottom:545.590667pt;}
.y4a{bottom:553.777333pt;}
.y13{bottom:555.709867pt;}
.y91{bottom:556.782667pt;}
.ybf{bottom:559.724000pt;}
.y49{bottom:565.105333pt;}
.y12{bottom:567.037867pt;}
.y90{bottom:571.449333pt;}
.ybe{bottom:573.857333pt;}
.y48{bottom:576.433333pt;}
.y11{bottom:578.365867pt;}
.y8f{bottom:586.116000pt;}
.y47{bottom:587.761333pt;}
.ybd{bottom:587.990667pt;}
.y10{bottom:589.693867pt;}
.y46{bottom:599.089333pt;}
.y8e{bottom:600.782667pt;}
.yf{bottom:601.021867pt;}
.ybc{bottom:602.124000pt;}
.y45{bottom:610.417333pt;}
.y8d{bottom:615.449333pt;}
.ybb{bottom:616.257333pt;}
.ye{bottom:619.016533pt;}
.y44{bottom:621.745333pt;}
.y8c{bottom:630.116000pt;}
.yba{bottom:630.390667pt;}
.y43{bottom:633.073333pt;}
.yd{bottom:639.677867pt;}
.yf2{bottom:643.164400pt;}
.y42{bottom:644.401333pt;}
.yb9{bottom:644.524000pt;}
.y8b{bottom:644.782667pt;}
.yc{bottom:651.005867pt;}
.yf1{bottom:654.492400pt;}
.y41{bottom:655.729333pt;}
.yb8{bottom:658.657333pt;}
.y8a{bottom:659.449333pt;}
.yf0{bottom:665.820400pt;}
.y40{bottom:667.057333pt;}
.yb7{bottom:672.790667pt;}
.yb{bottom:673.853227pt;}
.y89{bottom:674.116000pt;}
.yef{bottom:677.148400pt;}
.ya{bottom:681.672533pt;}
.yb6{bottom:686.924000pt;}
.yee{bottom:688.476400pt;}
.y88{bottom:688.782667pt;}
.y3f{bottom:689.724000pt;}
.y9{bottom:696.520533pt;}
.yed{bottom:699.804400pt;}
.yb5{bottom:701.057333pt;}
.y87{bottom:703.449333pt;}
.y8{bottom:707.853867pt;}
.yec{bottom:711.132400pt;}
.y3e{bottom:715.190667pt;}
.y86{bottom:718.116000pt;}
.y7{bottom:719.187200pt;}
.yeb{bottom:722.460400pt;}
.y3d{bottom:729.324000pt;}
.y6{bottom:730.520533pt;}
.y85{bottom:732.782667pt;}
.yea{bottom:733.788400pt;}
.y3c{bottom:743.457333pt;}
.ye9{bottom:745.116400pt;}
.y5{bottom:746.333867pt;}
.y84{bottom:747.449333pt;}
.y4{bottom:756.066533pt;}
.ye8{bottom:756.444400pt;}
.y83{bottom:756.782667pt;}
.y3b{bottom:757.590667pt;}
.y3{bottom:760.467200pt;}
.ye7{bottom:767.772400pt;}
.y3a{bottom:771.724000pt;}
.ye6{bottom:779.100400pt;}
.y39{bottom:785.857333pt;}
.y2{bottom:786.600533pt;}
.y82{bottom:789.423067pt;}
.ye5{bottom:790.428400pt;}
.y38{bottom:799.990667pt;}
.y1{bottom:800.733867pt;}
.y81{bottom:801.423067pt;}
.ye4{bottom:801.756400pt;}
.ye3{bottom:830.227067pt;}
.y80{bottom:830.227733pt;}
.y6c{bottom:830.230800pt;}
.yb0{bottom:830.232133pt;}
.y32{bottom:831.479067pt;}
.hf{height:21.665417pt;}
.hb{height:21.687500pt;}
.he{height:23.273633pt;}
.h5{height:23.274167pt;}
.h7{height:23.276727pt;}
.h4{height:27.081771pt;}
.hc{height:28.015625pt;}
.h9{height:28.916667pt;}
.h8{height:29.625000pt;}
.ha{height:33.328125pt;}
.h2{height:36.145833pt;}
.h6{height:37.354167pt;}
.h3{height:46.692708pt;}
.hd{height:58.687500pt;}
.h1{height:888.000000pt;}
.h0{height:888.189333pt;}
.w1{width:623.333333pt;}
.w0{width:623.622667pt;}
.x0{left:0.000000pt;}
.x10{left:71.816267pt;}
.x1{left:73.913867pt;}
.x15{left:74.960667pt;}
.x16{left:76.131867pt;}
.xf{left:83.149600pt;}
.x3{left:90.047200pt;}
.x6{left:91.035200pt;}
.x7{left:100.404933pt;}
.x9{left:103.092533pt;}
.x8{left:105.324267pt;}
.xb{left:116.470000pt;}
.xa{left:223.241733pt;}
.x11{left:239.020533pt;}
.x2{left:250.033867pt;}
.xd{left:256.916800pt;}
.xc{left:265.023467pt;}
.x17{left:269.740667pt;}
.x5{left:277.110800pt;}
.x14{left:287.464400pt;}
.x13{left:291.068800pt;}
.xe{left:291.967467pt;}
.x12{left:355.275067pt;}
.x4{left:531.647067pt;}
}




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