
    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_b9dfcd311f4d525cfae96d98.woff')format("woff");}.ff1{font-family:ff1;line-height:1.080566;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_fd98a67bedf9005691f4abd2.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_71cc9f0339a9577c02360742.woff')format("woff");}.ff3{font-family:ff3;line-height:0.858398;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_421ca71e4a81c529520b9997.woff')format("woff");}.ff4{font-family:ff4;line-height:1.097168;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.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;}
}
.ws5d{word-spacing:-55.944000px;}
.wsb{word-spacing:-40.536000px;}
.ws60{word-spacing:-39.086100px;}
.wsa{word-spacing:-39.014100px;}
.ws63{word-spacing:-38.668200px;}
.ws6{word-spacing:-38.657700px;}
.ws5{word-spacing:-38.647800px;}
.ws50{word-spacing:-38.637000px;}
.ws51{word-spacing:-38.376600px;}
.ws3{word-spacing:-38.374200px;}
.ws5f{word-spacing:-38.370600px;}
.ws75{word-spacing:-38.369700px;}
.ws16{word-spacing:-38.166000px;}
.ws25{word-spacing:-38.148300px;}
.ws9{word-spacing:-38.078700px;}
.ws0{word-spacing:-37.944000px;}
.ws4{word-spacing:-37.938600px;}
.ws2{word-spacing:-37.931400px;}
.ws6b{word-spacing:-37.650600px;}
.ws61{word-spacing:-37.643400px;}
.ws62{word-spacing:-37.633800px;}
.ws8{word-spacing:-33.547800px;}
.ws17{word-spacing:-28.080000px;}
.ws56{word-spacing:-23.608800px;}
.ws44{word-spacing:-23.465700px;}
.ws15{word-spacing:-23.248800px;}
.ws24{word-spacing:-23.248500px;}
.ws1c{word-spacing:-23.247900px;}
.ws59{word-spacing:-23.244300px;}
.ws47{word-spacing:-23.110200px;}
.ws2e{word-spacing:-23.107500px;}
.ws72{word-spacing:-23.103600px;}
.ws69{word-spacing:-23.103000px;}
.ws67{word-spacing:-23.097600px;}
.ws5a{word-spacing:-23.035500px;}
.ws5b{word-spacing:-22.897500px;}
.ws6a{word-spacing:-22.892400px;}
.ws58{word-spacing:-22.891500px;}
.ws4f{word-spacing:-22.890300px;}
.wsc{word-spacing:-22.889400px;}
.ws86{word-spacing:-22.887000px;}
.ws89{word-spacing:-22.883400px;}
.ws35{word-spacing:-22.882500px;}
.wsd{word-spacing:-22.880700px;}
.ws5c{word-spacing:-22.879800px;}
.ws3b{word-spacing:-22.874700px;}
.wse{word-spacing:-22.536000px;}
.ws26{word-spacing:-22.518000px;}
.ws57{word-spacing:-22.171500px;}
.ws77{word-spacing:-22.023900px;}
.ws7f{word-spacing:-21.587400px;}
.ws43{word-spacing:-21.452400px;}
.ws8a{word-spacing:-21.096000px;}
.ws13{word-spacing:-21.075300px;}
.ws30{word-spacing:-20.734200px;}
.ws48{word-spacing:-20.356200px;}
.ws6f{word-spacing:-19.650000px;}
.ws68{word-spacing:-19.506600px;}
.ws2d{word-spacing:-19.287000px;}
.ws2a{word-spacing:-18.921600px;}
.ws1f{word-spacing:-18.720000px;}
.ws85{word-spacing:-18.578400px;}
.ws11{word-spacing:-18.563400px;}
.ws7{word-spacing:-18.472500px;}
.ws53{word-spacing:-18.425700px;}
.ws49{word-spacing:-18.138600px;}
.ws7a{word-spacing:-18.063600px;}
.ws40{word-spacing:-16.980300px;}
.ws29{word-spacing:-16.040700px;}
.ws22{word-spacing:-15.548400px;}
.ws52{word-spacing:-14.980200px;}
.ws42{word-spacing:-14.976000px;}
.ws83{word-spacing:-14.964300px;}
.ws1a{word-spacing:-14.676300px;}
.ws33{word-spacing:-14.616000px;}
.ws4a{word-spacing:-13.167900px;}
.ws7d{word-spacing:-12.820200px;}
.ws18{word-spacing:-12.807900px;}
.ws70{word-spacing:-12.663900px;}
.ws87{word-spacing:-12.462000px;}
.ws80{word-spacing:-12.086100px;}
.ws36{word-spacing:-12.079800px;}
.ws78{word-spacing:-11.368800px;}
.ws12{word-spacing:-10.497900px;}
.ws5e{word-spacing:-9.425700px;}
.ws32{word-spacing:-9.202500px;}
.ws4b{word-spacing:-8.843400px;}
.ws7e{word-spacing:-8.838000px;}
.ws3a{word-spacing:-7.762500px;}
.ws37{word-spacing:-6.696000px;}
.ws3f{word-spacing:-6.692100px;}
.ws45{word-spacing:-6.686100px;}
.ws27{word-spacing:-6.264000px;}
.ws23{word-spacing:-5.965800px;}
.ws71{word-spacing:-5.262000px;}
.ws6e{word-spacing:-4.893000px;}
.ws81{word-spacing:-4.881600px;}
.ws19{word-spacing:-4.527900px;}
.ws4d{word-spacing:-4.515300px;}
.ws4e{word-spacing:-4.163400px;}
.ws7b{word-spacing:-4.110000px;}
.ws20{word-spacing:-3.308400px;}
.ws46{word-spacing:-1.139400px;}
.ws1b{word-spacing:-0.936000px;}
.ws1d{word-spacing:-0.720000px;}
.ws73{word-spacing:0.000000px;}
.ws82{word-spacing:0.144300px;}
.ws3d{word-spacing:0.521100px;}
.ws74{word-spacing:0.936000px;}
.ws6c{word-spacing:1.737900px;}
.ws34{word-spacing:3.028800px;}
.ws39{word-spacing:3.185100px;}
.ws31{word-spacing:3.378000px;}
.ws8b{word-spacing:3.384000px;}
.ws76{word-spacing:4.466100px;}
.ws3c{word-spacing:4.833900px;}
.ws55{word-spacing:5.917500px;}
.wsf{word-spacing:6.480000px;}
.ws41{word-spacing:6.634800px;}
.ws54{word-spacing:8.214300px;}
.ws38{word-spacing:8.787900px;}
.ws28{word-spacing:8.796600px;}
.ws88{word-spacing:10.603800px;}
.ws79{word-spacing:10.739700px;}
.ws7c{word-spacing:10.953000px;}
.ws2c{word-spacing:12.759300px;}
.ws2b{word-spacing:13.842600px;}
.ws84{word-spacing:14.182500px;}
.ws1e{word-spacing:14.904000px;}
.ws2f{word-spacing:16.719300px;}
.ws21{word-spacing:16.854000px;}
.ws6d{word-spacing:17.942400px;}
.ws10{word-spacing:21.390300px;}
.ws4c{word-spacing:30.610800px;}
.ws3e{word-spacing:32.553000px;}
.ws14{word-spacing:33.987900px;}
.ws64{word-spacing:68.544300px;}
.ws66{word-spacing:91.296900px;}
.ws65{word-spacing:134.070600px;}
.ws1{word-spacing:455.092800px;}
._2{margin-left:-1.273200px;}
._3{width:1.063200px;}
._4{width:18.775800px;}
._1f{width:19.987800px;}
._8{width:21.067500px;}
._13{width:22.444800px;}
._e{width:23.457600px;}
._1b{width:24.651300px;}
._10{width:25.688700px;}
._15{width:27.072000px;}
._a{width:29.232000px;}
._22{width:30.513900px;}
._7{width:31.596600px;}
._14{width:32.703900px;}
._16{width:34.035600px;}
._1{width:36.000000px;}
._b{width:37.512600px;}
._24{width:38.738700px;}
._27{width:39.748200px;}
._1d{width:40.947600px;}
._19{width:42.534900px;}
._6{width:45.237000px;}
._17{width:46.440000px;}
._18{width:47.497200px;}
._1c{width:48.589200px;}
._f{width:50.400000px;}
._26{width:52.332300px;}
._12{width:54.324900px;}
._11{width:55.502400px;}
._d{width:59.011200px;}
._21{width:60.036000px;}
._5{width:63.563700px;}
._23{width:70.290000px;}
._1e{width:72.853200px;}
._1a{width:74.511000px;}
._9{width:76.325100px;}
._25{width:104.015700px;}
._c{width:110.168700px;}
._20{width:188.424000px;}
._0{width:612.144000px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(112,48,160);}
.fc3{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:66.300000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y5f{bottom:3.900000px;}
.y62{bottom:3.930000px;}
.y58{bottom:3.961500px;}
.y7{bottom:4.471500px;}
.y61{bottom:24.450000px;}
.y64{bottom:24.480000px;}
.y5e{bottom:24.600000px;}
.y5c{bottom:28.065000px;}
.y68{bottom:36.361500px;}
.y66{bottom:40.111500px;}
.y59{bottom:45.540000px;}
.y5b{bottom:48.586500px;}
.y6{bottom:72.825000px;}
.y5{bottom:77.655000px;}
.y2b{bottom:99.796500px;}
.y4f{bottom:115.996500px;}
.y84{bottom:119.775000px;}
.y2a{bottom:120.496500px;}
.y4e{bottom:136.696500px;}
.y83{bottom:140.475000px;}
.y4d{bottom:157.396500px;}
.y82{bottom:161.175000px;}
.y29{bottom:162.075000px;}
.y71{bottom:169.096500px;}
.y81{bottom:181.875000px;}
.y28{bottom:182.775000px;}
.y70{bottom:189.795000px;}
.y4c{bottom:198.975000px;}
.y80{bottom:202.575000px;}
.y27{bottom:203.475000px;}
.y6f{bottom:210.496500px;}
.y7f{bottom:223.275000px;}
.y26{bottom:224.175000px;}
.y6e{bottom:231.196500px;}
.y4b{bottom:240.736500px;}
.y7e{bottom:243.975000px;}
.y25{bottom:244.875000px;}
.y6d{bottom:251.896500px;}
.y7d{bottom:264.675000px;}
.y24{bottom:265.575000px;}
.y6c{bottom:272.596500px;}
.y7c{bottom:285.375000px;}
.y23{bottom:286.275000px;}
.y6b{bottom:293.295000px;}
.y7b{bottom:306.075000px;}
.y6a{bottom:313.996500px;}
.y7a{bottom:326.775000px;}
.y22{bottom:328.036500px;}
.y69{bottom:334.696500px;}
.y79{bottom:368.536500px;}
.y21{bottom:369.795000px;}
.y78{bottom:389.236500px;}
.y20{bottom:390.496500px;}
.y48{bottom:392.295000px;}
.y77{bottom:409.936500px;}
.y1f{bottom:411.196500px;}
.y47{bottom:412.996500px;}
.y67{bottom:414.075000px;}
.y76{bottom:430.636500px;}
.y1e{bottom:431.896500px;}
.y46{bottom:433.696500px;}
.y75{bottom:451.336500px;}
.y1d{bottom:452.596500px;}
.y45{bottom:454.396500px;}
.y65{bottom:467.925000px;}
.y74{bottom:472.036500px;}
.y44{bottom:475.096500px;}
.y1c{bottom:494.175000px;}
.y43{bottom:495.796500px;}
.y73{bottom:513.796500px;}
.y1b{bottom:514.875000px;}
.y42{bottom:516.496500px;}
.y63{bottom:525.675000px;}
.y72{bottom:534.315000px;}
.y41{bottom:537.195000px;}
.y1a{bottom:556.636500px;}
.y60{bottom:567.825000px;}
.y19{bottom:577.336500px;}
.y40{bottom:578.775000px;}
.y18{bottom:598.036500px;}
.y3f{bottom:599.475000px;}
.y5d{bottom:609.975000px;}
.y17{bottom:618.736500px;}
.y3e{bottom:620.175000px;}
.y16{bottom:639.436500px;}
.y5a{bottom:652.050000px;}
.y3d{bottom:661.936500px;}
.y15{bottom:681.195000px;}
.y3c{bottom:682.636500px;}
.y8b{bottom:701.896500px;}
.y3b{bottom:703.336500px;}
.y57{bottom:718.275000px;}
.y14{bottom:722.775000px;}
.y3a{bottom:724.036500px;}
.y13{bottom:743.475000px;}
.y39{bottom:744.736500px;}
.y4a{bottom:760.936500px;}
.y12{bottom:764.175000px;}
.y38{bottom:765.436500px;}
.y11{bottom:784.875000px;}
.y37{bottom:786.136500px;}
.y49{bottom:802.515000px;}
.y10{bottom:805.575000px;}
.y56{bottom:806.295000px;}
.y36{bottom:806.836500px;}
.yf{bottom:826.275000px;}
.y8a{bottom:826.636500px;}
.y55{bottom:826.996500px;}
.y35{bottom:827.536500px;}
.y89{bottom:847.336500px;}
.ye{bottom:868.036500px;}
.y54{bottom:868.575000px;}
.y34{bottom:869.295000px;}
.y88{bottom:889.095000px;}
.y33{bottom:889.995000px;}
.yd{bottom:909.795000px;}
.y53{bottom:910.336500px;}
.y32{bottom:910.695000px;}
.y87{bottom:930.675000px;}
.y52{bottom:931.036500px;}
.y31{bottom:931.395000px;}
.yc{bottom:951.375000px;}
.y51{bottom:951.736500px;}
.y30{bottom:952.095000px;}
.y50{bottom:972.436500px;}
.y2f{bottom:972.795000px;}
.yb{bottom:993.136500px;}
.y86{bottom:1014.195000px;}
.y2e{bottom:1014.375000px;}
.ya{bottom:1034.895000px;}
.y2d{bottom:1035.075000px;}
.y85{bottom:1055.595000px;}
.y2c{bottom:1055.775000px;}
.y9{bottom:1076.475000px;}
.y8{bottom:1097.175000px;}
.y4{bottom:1141.455000px;}
.y3{bottom:1162.155000px;}
.y2{bottom:1182.855000px;}
.y1{bottom:1203.375000px;}
.h5{height:20.175000px;}
.h9{height:42.075000px;}
.h4{height:45.095654px;}
.h3{height:48.796875px;}
.hb{height:53.850000px;}
.ha{height:57.675000px;}
.h2{height:62.261719px;}
.h7{height:63.075000px;}
.h6{height:63.457031px;}
.h8{height:66.150000px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w2{width:25.050000px;}
.w3{width:42.600000px;}
.w7{width:93.150000px;}
.w5{width:162.600000px;}
.w6{width:188.400000px;}
.w4{width:265.875000px;}
.w8{width:308.400000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xd{left:8.010000px;}
.x11{left:12.525000px;}
.xc{left:85.050000px;}
.x1{left:127.620000px;}
.x4{left:158.400000px;}
.xb{left:180.720000px;}
.x5{left:343.260000px;}
.xe{left:393.375000px;}
.x3{left:465.825000px;}
.x9{left:532.260000px;}
.x8{left:543.960000px;}
.xf{left:555.900000px;}
.xa{left:628.560000px;}
.x7{left:645.480000px;}
.x6{left:694.438500px;}
.x2{left:731.160000px;}
.x10{left:744.225000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws5d{word-spacing:-49.728000pt;}
.wsb{word-spacing:-36.032000pt;}
.ws60{word-spacing:-34.743200pt;}
.wsa{word-spacing:-34.679200pt;}
.ws63{word-spacing:-34.371733pt;}
.ws6{word-spacing:-34.362400pt;}
.ws5{word-spacing:-34.353600pt;}
.ws50{word-spacing:-34.344000pt;}
.ws51{word-spacing:-34.112533pt;}
.ws3{word-spacing:-34.110400pt;}
.ws5f{word-spacing:-34.107200pt;}
.ws75{word-spacing:-34.106400pt;}
.ws16{word-spacing:-33.925333pt;}
.ws25{word-spacing:-33.909600pt;}
.ws9{word-spacing:-33.847733pt;}
.ws0{word-spacing:-33.728000pt;}
.ws4{word-spacing:-33.723200pt;}
.ws2{word-spacing:-33.716800pt;}
.ws6b{word-spacing:-33.467200pt;}
.ws61{word-spacing:-33.460800pt;}
.ws62{word-spacing:-33.452267pt;}
.ws8{word-spacing:-29.820267pt;}
.ws17{word-spacing:-24.960000pt;}
.ws56{word-spacing:-20.985600pt;}
.ws44{word-spacing:-20.858400pt;}
.ws15{word-spacing:-20.665600pt;}
.ws24{word-spacing:-20.665333pt;}
.ws1c{word-spacing:-20.664800pt;}
.ws59{word-spacing:-20.661600pt;}
.ws47{word-spacing:-20.542400pt;}
.ws2e{word-spacing:-20.540000pt;}
.ws72{word-spacing:-20.536533pt;}
.ws69{word-spacing:-20.536000pt;}
.ws67{word-spacing:-20.531200pt;}
.ws5a{word-spacing:-20.476000pt;}
.ws5b{word-spacing:-20.353333pt;}
.ws6a{word-spacing:-20.348800pt;}
.ws58{word-spacing:-20.348000pt;}
.ws4f{word-spacing:-20.346933pt;}
.wsc{word-spacing:-20.346133pt;}
.ws86{word-spacing:-20.344000pt;}
.ws89{word-spacing:-20.340800pt;}
.ws35{word-spacing:-20.340000pt;}
.wsd{word-spacing:-20.338400pt;}
.ws5c{word-spacing:-20.337600pt;}
.ws3b{word-spacing:-20.333067pt;}
.wse{word-spacing:-20.032000pt;}
.ws26{word-spacing:-20.016000pt;}
.ws57{word-spacing:-19.708000pt;}
.ws77{word-spacing:-19.576800pt;}
.ws7f{word-spacing:-19.188800pt;}
.ws43{word-spacing:-19.068800pt;}
.ws8a{word-spacing:-18.752000pt;}
.ws13{word-spacing:-18.733600pt;}
.ws30{word-spacing:-18.430400pt;}
.ws48{word-spacing:-18.094400pt;}
.ws6f{word-spacing:-17.466667pt;}
.ws68{word-spacing:-17.339200pt;}
.ws2d{word-spacing:-17.144000pt;}
.ws2a{word-spacing:-16.819200pt;}
.ws1f{word-spacing:-16.640000pt;}
.ws85{word-spacing:-16.514133pt;}
.ws11{word-spacing:-16.500800pt;}
.ws7{word-spacing:-16.420000pt;}
.ws53{word-spacing:-16.378400pt;}
.ws49{word-spacing:-16.123200pt;}
.ws7a{word-spacing:-16.056533pt;}
.ws40{word-spacing:-15.093600pt;}
.ws29{word-spacing:-14.258400pt;}
.ws22{word-spacing:-13.820800pt;}
.ws52{word-spacing:-13.315733pt;}
.ws42{word-spacing:-13.312000pt;}
.ws83{word-spacing:-13.301600pt;}
.ws1a{word-spacing:-13.045600pt;}
.ws33{word-spacing:-12.992000pt;}
.ws4a{word-spacing:-11.704800pt;}
.ws7d{word-spacing:-11.395733pt;}
.ws18{word-spacing:-11.384800pt;}
.ws70{word-spacing:-11.256800pt;}
.ws87{word-spacing:-11.077333pt;}
.ws80{word-spacing:-10.743200pt;}
.ws36{word-spacing:-10.737600pt;}
.ws78{word-spacing:-10.105600pt;}
.ws12{word-spacing:-9.331467pt;}
.ws5e{word-spacing:-8.378400pt;}
.ws32{word-spacing:-8.180000pt;}
.ws4b{word-spacing:-7.860800pt;}
.ws7e{word-spacing:-7.856000pt;}
.ws3a{word-spacing:-6.900000pt;}
.ws37{word-spacing:-5.952000pt;}
.ws3f{word-spacing:-5.948533pt;}
.ws45{word-spacing:-5.943200pt;}
.ws27{word-spacing:-5.568000pt;}
.ws23{word-spacing:-5.302933pt;}
.ws71{word-spacing:-4.677333pt;}
.ws6e{word-spacing:-4.349333pt;}
.ws81{word-spacing:-4.339200pt;}
.ws19{word-spacing:-4.024800pt;}
.ws4d{word-spacing:-4.013600pt;}
.ws4e{word-spacing:-3.700800pt;}
.ws7b{word-spacing:-3.653333pt;}
.ws20{word-spacing:-2.940800pt;}
.ws46{word-spacing:-1.012800pt;}
.ws1b{word-spacing:-0.832000pt;}
.ws1d{word-spacing:-0.640000pt;}
.ws73{word-spacing:0.000000pt;}
.ws82{word-spacing:0.128267pt;}
.ws3d{word-spacing:0.463200pt;}
.ws74{word-spacing:0.832000pt;}
.ws6c{word-spacing:1.544800pt;}
.ws34{word-spacing:2.692267pt;}
.ws39{word-spacing:2.831200pt;}
.ws31{word-spacing:3.002667pt;}
.ws8b{word-spacing:3.008000pt;}
.ws76{word-spacing:3.969867pt;}
.ws3c{word-spacing:4.296800pt;}
.ws55{word-spacing:5.260000pt;}
.wsf{word-spacing:5.760000pt;}
.ws41{word-spacing:5.897600pt;}
.ws54{word-spacing:7.301600pt;}
.ws38{word-spacing:7.811467pt;}
.ws28{word-spacing:7.819200pt;}
.ws88{word-spacing:9.425600pt;}
.ws79{word-spacing:9.546400pt;}
.ws7c{word-spacing:9.736000pt;}
.ws2c{word-spacing:11.341600pt;}
.ws2b{word-spacing:12.304533pt;}
.ws84{word-spacing:12.606667pt;}
.ws1e{word-spacing:13.248000pt;}
.ws2f{word-spacing:14.861600pt;}
.ws21{word-spacing:14.981333pt;}
.ws6d{word-spacing:15.948800pt;}
.ws10{word-spacing:19.013600pt;}
.ws4c{word-spacing:27.209600pt;}
.ws3e{word-spacing:28.936000pt;}
.ws14{word-spacing:30.211467pt;}
.ws64{word-spacing:60.928267pt;}
.ws66{word-spacing:81.152800pt;}
.ws65{word-spacing:119.173867pt;}
.ws1{word-spacing:404.526933pt;}
._2{margin-left:-1.131733pt;}
._3{width:0.945067pt;}
._4{width:16.689600pt;}
._1f{width:17.766933pt;}
._8{width:18.726667pt;}
._13{width:19.950933pt;}
._e{width:20.851200pt;}
._1b{width:21.912267pt;}
._10{width:22.834400pt;}
._15{width:24.064000pt;}
._a{width:25.984000pt;}
._22{width:27.123467pt;}
._7{width:28.085867pt;}
._14{width:29.070133pt;}
._16{width:30.253867pt;}
._1{width:32.000000pt;}
._b{width:33.344533pt;}
._24{width:34.434400pt;}
._27{width:35.331733pt;}
._1d{width:36.397867pt;}
._19{width:37.808800pt;}
._6{width:40.210667pt;}
._17{width:41.280000pt;}
._18{width:42.219733pt;}
._1c{width:43.190400pt;}
._f{width:44.800000pt;}
._26{width:46.517600pt;}
._12{width:48.288800pt;}
._11{width:49.335467pt;}
._d{width:52.454400pt;}
._21{width:53.365333pt;}
._5{width:56.501067pt;}
._23{width:62.480000pt;}
._1e{width:64.758400pt;}
._1a{width:66.232000pt;}
._9{width:67.844533pt;}
._25{width:92.458400pt;}
._c{width:97.927733pt;}
._20{width:167.488000pt;}
._0{width:544.128000pt;}
.fs1{font-size:58.933333pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y5f{bottom:3.466667pt;}
.y62{bottom:3.493333pt;}
.y58{bottom:3.521333pt;}
.y7{bottom:3.974667pt;}
.y61{bottom:21.733333pt;}
.y64{bottom:21.760000pt;}
.y5e{bottom:21.866667pt;}
.y5c{bottom:24.946667pt;}
.y68{bottom:32.321333pt;}
.y66{bottom:35.654667pt;}
.y59{bottom:40.480000pt;}
.y5b{bottom:43.188000pt;}
.y6{bottom:64.733333pt;}
.y5{bottom:69.026667pt;}
.y2b{bottom:88.708000pt;}
.y4f{bottom:103.108000pt;}
.y84{bottom:106.466667pt;}
.y2a{bottom:107.108000pt;}
.y4e{bottom:121.508000pt;}
.y83{bottom:124.866667pt;}
.y4d{bottom:139.908000pt;}
.y82{bottom:143.266667pt;}
.y29{bottom:144.066667pt;}
.y71{bottom:150.308000pt;}
.y81{bottom:161.666667pt;}
.y28{bottom:162.466667pt;}
.y70{bottom:168.706667pt;}
.y4c{bottom:176.866667pt;}
.y80{bottom:180.066667pt;}
.y27{bottom:180.866667pt;}
.y6f{bottom:187.108000pt;}
.y7f{bottom:198.466667pt;}
.y26{bottom:199.266667pt;}
.y6e{bottom:205.508000pt;}
.y4b{bottom:213.988000pt;}
.y7e{bottom:216.866667pt;}
.y25{bottom:217.666667pt;}
.y6d{bottom:223.908000pt;}
.y7d{bottom:235.266667pt;}
.y24{bottom:236.066667pt;}
.y6c{bottom:242.308000pt;}
.y7c{bottom:253.666667pt;}
.y23{bottom:254.466667pt;}
.y6b{bottom:260.706667pt;}
.y7b{bottom:272.066667pt;}
.y6a{bottom:279.108000pt;}
.y7a{bottom:290.466667pt;}
.y22{bottom:291.588000pt;}
.y69{bottom:297.508000pt;}
.y79{bottom:327.588000pt;}
.y21{bottom:328.706667pt;}
.y78{bottom:345.988000pt;}
.y20{bottom:347.108000pt;}
.y48{bottom:348.706667pt;}
.y77{bottom:364.388000pt;}
.y1f{bottom:365.508000pt;}
.y47{bottom:367.108000pt;}
.y67{bottom:368.066667pt;}
.y76{bottom:382.788000pt;}
.y1e{bottom:383.908000pt;}
.y46{bottom:385.508000pt;}
.y75{bottom:401.188000pt;}
.y1d{bottom:402.308000pt;}
.y45{bottom:403.908000pt;}
.y65{bottom:415.933333pt;}
.y74{bottom:419.588000pt;}
.y44{bottom:422.308000pt;}
.y1c{bottom:439.266667pt;}
.y43{bottom:440.708000pt;}
.y73{bottom:456.708000pt;}
.y1b{bottom:457.666667pt;}
.y42{bottom:459.108000pt;}
.y63{bottom:467.266667pt;}
.y72{bottom:474.946667pt;}
.y41{bottom:477.506667pt;}
.y1a{bottom:494.788000pt;}
.y60{bottom:504.733333pt;}
.y19{bottom:513.188000pt;}
.y40{bottom:514.466667pt;}
.y18{bottom:531.588000pt;}
.y3f{bottom:532.866667pt;}
.y5d{bottom:542.200000pt;}
.y17{bottom:549.988000pt;}
.y3e{bottom:551.266667pt;}
.y16{bottom:568.388000pt;}
.y5a{bottom:579.600000pt;}
.y3d{bottom:588.388000pt;}
.y15{bottom:605.506667pt;}
.y3c{bottom:606.788000pt;}
.y8b{bottom:623.908000pt;}
.y3b{bottom:625.188000pt;}
.y57{bottom:638.466667pt;}
.y14{bottom:642.466667pt;}
.y3a{bottom:643.588000pt;}
.y13{bottom:660.866667pt;}
.y39{bottom:661.988000pt;}
.y4a{bottom:676.388000pt;}
.y12{bottom:679.266667pt;}
.y38{bottom:680.388000pt;}
.y11{bottom:697.666667pt;}
.y37{bottom:698.788000pt;}
.y49{bottom:713.346667pt;}
.y10{bottom:716.066667pt;}
.y56{bottom:716.706667pt;}
.y36{bottom:717.188000pt;}
.yf{bottom:734.466667pt;}
.y8a{bottom:734.788000pt;}
.y55{bottom:735.108000pt;}
.y35{bottom:735.588000pt;}
.y89{bottom:753.188000pt;}
.ye{bottom:771.588000pt;}
.y54{bottom:772.066667pt;}
.y34{bottom:772.706667pt;}
.y88{bottom:790.306667pt;}
.y33{bottom:791.106667pt;}
.yd{bottom:808.706667pt;}
.y53{bottom:809.188000pt;}
.y32{bottom:809.506667pt;}
.y87{bottom:827.266667pt;}
.y52{bottom:827.588000pt;}
.y31{bottom:827.906667pt;}
.yc{bottom:845.666667pt;}
.y51{bottom:845.988000pt;}
.y30{bottom:846.306667pt;}
.y50{bottom:864.388000pt;}
.y2f{bottom:864.706667pt;}
.yb{bottom:882.788000pt;}
.y86{bottom:901.506667pt;}
.y2e{bottom:901.666667pt;}
.ya{bottom:919.906667pt;}
.y2d{bottom:920.066667pt;}
.y85{bottom:938.306667pt;}
.y2c{bottom:938.466667pt;}
.y9{bottom:956.866667pt;}
.y8{bottom:975.266667pt;}
.y4{bottom:1014.626667pt;}
.y3{bottom:1033.026667pt;}
.y2{bottom:1051.426667pt;}
.y1{bottom:1069.666667pt;}
.h5{height:17.933333pt;}
.h9{height:37.400000pt;}
.h4{height:40.085026pt;}
.h3{height:43.375000pt;}
.hb{height:47.866667pt;}
.ha{height:51.266667pt;}
.h2{height:55.343750pt;}
.h7{height:56.066667pt;}
.h6{height:56.406250pt;}
.h8{height:58.800000pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w2{width:22.266667pt;}
.w3{width:37.866667pt;}
.w7{width:82.800000pt;}
.w5{width:144.533333pt;}
.w6{width:167.466667pt;}
.w4{width:236.333333pt;}
.w8{width:274.133333pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xd{left:7.120000pt;}
.x11{left:11.133333pt;}
.xc{left:75.600000pt;}
.x1{left:113.440000pt;}
.x4{left:140.800000pt;}
.xb{left:160.640000pt;}
.x5{left:305.120000pt;}
.xe{left:349.666667pt;}
.x3{left:414.066667pt;}
.x9{left:473.120000pt;}
.x8{left:483.520000pt;}
.xf{left:494.133333pt;}
.xa{left:558.720000pt;}
.x7{left:573.760000pt;}
.x6{left:617.278667pt;}
.x2{left:649.920000pt;}
.x10{left:661.533333pt;}
}




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