
    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_70ed3f22a562010f57c7d36f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.143066;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_43d28d7522d96f008406e8c0.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.163086;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_a38669970eae3cb10f9bd675.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_f10b1e94c8b71f65200ca159.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.932129;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_2c72b71ec2ec60a9d2a45a78.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.734375;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_9055abad81d28c6eeabfc215.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.874023;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_2a2d19865b9b17353eac7369.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.943848;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_21fce25900d7796ace45274c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.932129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_0cd6a1f6cb2c748e96132d5a.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.241482,0.000000,-0.064703,0.241482,0,0);-ms-transform:matrix(0.241482,0.000000,-0.064703,0.241482,0,0);-webkit-transform:matrix(0.241482,0.000000,-0.064703,0.241482,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);}
.m2{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;}
.ls1{letter-spacing:0.074540px;}
.ls4{letter-spacing:0.120000px;}
.ls3{letter-spacing:55.008000px;}
.ls2{letter-spacing:78.408000px;}
.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;}
}
.ws0{word-spacing:-100.224000px;}
.ws2{word-spacing:-62.640000px;}
.ws8{word-spacing:-43.200000px;}
.wsd{word-spacing:-39.600000px;}
.wse{word-spacing:-32.400000px;}
.ws6{word-spacing:-28.101472px;}
.wsb{word-spacing:-27.144000px;}
.wsa{word-spacing:-25.939820px;}
.ws7{word-spacing:-25.056000px;}
.ws5{word-spacing:-23.629089px;}
.ws4{word-spacing:-22.824000px;}
.ws3{word-spacing:-20.922000px;}
.wsc{word-spacing:-18.282000px;}
.ws9{word-spacing:-0.078000px;}
.ws1{word-spacing:0.000000px;}
._5{margin-left:-800.280000px;}
._7{margin-left:-162.216000px;}
._2{margin-left:-6.072000px;}
._0{margin-left:-3.192000px;}
._1{margin-left:-1.512000px;}
._3{width:1.092000px;}
._f{width:2.520000px;}
._9{width:3.804000px;}
._d{width:5.544000px;}
._e{width:6.564000px;}
._a{width:7.632000px;}
._b{width:8.712000px;}
._17{width:9.864000px;}
._1a{width:11.016000px;}
._16{width:12.888000px;}
._11{width:14.544000px;}
._12{width:15.624000px;}
._18{width:16.920000px;}
._4{width:18.480000px;}
._10{width:20.184000px;}
._19{width:21.720000px;}
._24{width:23.310000px;}
._1e{width:24.480000px;}
._1c{width:26.208000px;}
._13{width:27.648000px;}
._15{width:28.728000px;}
._22{width:29.808000px;}
._23{width:30.816000px;}
._1f{width:32.328000px;}
._1d{width:34.344000px;}
._c{width:39.384000px;}
._1b{width:54.504000px;}
._14{width:55.800000px;}
._8{width:94.944000px;}
._21{width:176.112000px;}
._20{width:177.192000px;}
._6{width:733.344000px;}
.fc6{color:rgb(17,85,204);}
.fc5{color:rgb(31,55,99);}
.fc4{color:rgb(5,99,193);}
.fc3{color:rgb(3,192,255);}
.fc1{color:rgb(0,0,0);}
.fc2{color:rgb(0,0,10);}
.fc0{color:rgb(10,83,156);}
.fsa{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs6{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:74.539714px;}
.fs9{font-size:78.000000px;}
.fs8{font-size:80.751356px;}
.fs7{font-size:96.000000px;}
.fs1{font-size:168.000000px;}
.fs4{font-size:180.000000px;}
.fs0{font-size:288.000000px;}
.y0{bottom:0.000000px;}
.y8{bottom:0.042000px;}
.y9{bottom:7.591500px;}
.y12{bottom:80.341500px;}
.y54{bottom:114.691500px;}
.y90{bottom:122.041500px;}
.y53{bottom:135.691500px;}
.y78{bottom:139.741500px;}
.y8f{bottom:143.041500px;}
.yc1{bottom:151.591500px;}
.y77{bottom:163.891500px;}
.y8e{bottom:164.041500px;}
.yc0{bottom:173.341500px;}
.y52{bottom:177.691500px;}
.ybf{bottom:195.241500px;}
.y2d{bottom:197.041500px;}
.y76{bottom:198.541500px;}
.y51{bottom:198.691500px;}
.ya0{bottom:203.683500px;}
.y8d{bottom:207.091500px;}
.ybe{bottom:216.991500px;}
.y50{bottom:219.691500px;}
.y2c{bottom:221.191500px;}
.y9f{bottom:224.683500px;}
.y75{bottom:234.091500px;}
.ybd{bottom:238.891500px;}
.y4f{bottom:240.691500px;}
.y9e{bottom:245.683500px;}
.y8c{bottom:247.441500px;}
.y2b{bottom:255.841500px;}
.y74{bottom:257.491500px;}
.ybc{bottom:260.641500px;}
.y8b{bottom:268.441500px;}
.y2a{bottom:279.991500px;}
.y73{bottom:280.891500px;}
.ybb{bottom:282.541500px;}
.y4e{bottom:282.691500px;}
.y8a{bottom:289.441500px;}
.y4d{bottom:303.691500px;}
.y29{bottom:304.141500px;}
.y89{bottom:310.441500px;}
.yba{bottom:311.191500px;}
.y72{bottom:313.891500px;}
.y4c{bottom:324.691500px;}
.y28{bottom:338.791500px;}
.yb9{bottom:340.441500px;}
.y71{bottom:349.441500px;}
.y88{bottom:352.441500px;}
.yb8{bottom:362.191500px;}
.y27{bottom:362.941500px;}
.y4b{bottom:366.841500px;}
.y70{bottom:372.841500px;}
.y6f{bottom:396.241500px;}
.y26{bottom:397.591500px;}
.y4a{bottom:400.741500px;}
.yb7{bottom:420.691500px;}
.y49{bottom:421.741500px;}
.y6e{bottom:429.241500px;}
.y25{bottom:432.241500px;}
.y48{bottom:442.741500px;}
.y87{bottom:445.891500px;}
.yb6{bottom:447.391500px;}
.y47{bottom:463.741500px;}
.y6d{bottom:463.891500px;}
.y24{bottom:466.891500px;}
.y86{bottom:470.041500px;}
.yb5{bottom:473.641500px;}
.y6c{bottom:488.041500px;}
.y85{bottom:494.191500px;}
.yb4{bottom:499.891500px;}
.y23{bottom:501.541500px;}
.y46{bottom:505.741500px;}
.y6b{bottom:512.191500px;}
.y84{bottom:518.341500px;}
.yb3{bottom:525.991500px;}
.y45{bottom:526.741500px;}
.y22{bottom:536.191500px;}
.y6a{bottom:536.341500px;}
.y83{bottom:542.491500px;}
.y44{bottom:547.741500px;}
.yb2{bottom:558.241500px;}
.y69{bottom:560.491500px;}
.y82{bottom:566.641500px;}
.y43{bottom:568.741500px;}
.y21{bottom:570.841500px;}
.yb1{bottom:579.991500px;}
.y68{bottom:584.641500px;}
.y42{bottom:589.741500px;}
.y20{bottom:605.491500px;}
.y67{bottom:608.791500px;}
.y41{bottom:610.741500px;}
.y40{bottom:631.741500px;}
.y66{bottom:632.941500px;}
.y1f{bottom:640.141500px;}
.yb0{bottom:641.491500px;}
.y9d{bottom:650.641500px;}
.y3f{bottom:652.741500px;}
.y65{bottom:657.091500px;}
.y7{bottom:659.233500px;}
.yaf{bottom:668.191500px;}
.y9c{bottom:671.641500px;}
.y1e{bottom:674.791500px;}
.y64{bottom:686.941500px;}
.y9b{bottom:692.641500px;}
.yae{bottom:694.891500px;}
.y3e{bottom:697.741500px;}
.y6{bottom:708.133500px;}
.y1d{bottom:709.441500px;}
.y9a{bottom:713.641500px;}
.y3d{bottom:718.741500px;}
.yad{bottom:722.491500px;}
.y63{bottom:724.441500px;}
.y99{bottom:734.641500px;}
.y3c{bottom:739.741500px;}
.y1c{bottom:744.091500px;}
.y98{bottom:755.641500px;}
.yac{bottom:756.691500px;}
.y62{bottom:759.091500px;}
.y3b{bottom:760.741500px;}
.y97{bottom:776.641500px;}
.y1b{bottom:778.741500px;}
.y3a{bottom:781.741500px;}
.y61{bottom:783.241500px;}
.y96{bottom:797.641500px;}
.y81{bottom:801.241500px;}
.y39{bottom:802.741500px;}
.y5{bottom:806.083500px;}
.y60{bottom:807.391500px;}
.y1a{bottom:813.391500px;}
.yab{bottom:815.341500px;}
.y95{bottom:818.641500px;}
.y80{bottom:825.391500px;}
.y5f{bottom:828.391500px;}
.y38{bottom:845.041500px;}
.y7f{bottom:849.541500px;}
.y11{bottom:857.641500px;}
.yaa{bottom:867.691500px;}
.y5e{bottom:873.391500px;}
.y37{bottom:881.041500px;}
.y4{bottom:881.533500px;}
.y19{bottom:882.691500px;}
.y7e{bottom:884.191500px;}
.y10{bottom:886.291500px;}
.ya9{bottom:893.941500px;}
.y5d{bottom:894.391500px;}
.y36{bottom:905.191500px;}
.y7d{bottom:908.341500px;}
.y5c{bottom:915.391500px;}
.yf{bottom:916.141500px;}
.y18{bottom:917.341500px;}
.ya8{bottom:920.041500px;}
.y35{bottom:929.341500px;}
.y7c{bottom:932.491500px;}
.ye{bottom:935.341500px;}
.y5b{bottom:936.391500px;}
.ya7{bottom:946.291500px;}
.y17{bottom:951.991500px;}
.y34{bottom:953.491500px;}
.yd{bottom:954.541500px;}
.y7b{bottom:956.641500px;}
.y3{bottom:956.983500px;}
.y5a{bottom:957.391500px;}
.yc{bottom:974.041500px;}
.y16{bottom:976.141500px;}
.y33{bottom:977.641500px;}
.ya6{bottom:978.541500px;}
.y59{bottom:979.591500px;}
.y7a{bottom:980.791500px;}
.y94{bottom:982.891500px;}
.ya5{bottom:1000.291500px;}
.y58{bottom:1001.641500px;}
.y93{bottom:1003.891500px;}
.y15{bottom:1010.791500px;}
.y32{bottom:1012.291500px;}
.y79{bottom:1015.441500px;}
.ya4{bottom:1022.041500px;}
.y57{bottom:1022.641500px;}
.y92{bottom:1024.891500px;}
.y2{bottom:1030.633500px;}
.y14{bottom:1034.941500px;}
.y31{bottom:1036.441500px;}
.ya3{bottom:1043.791500px;}
.y30{bottom:1060.591500px;}
.yb{bottom:1062.841500px;}
.y56{bottom:1065.841500px;}
.y91{bottom:1066.891500px;}
.y2f{bottom:1084.741500px;}
.ya2{bottom:1084.891500px;}
.y13{bottom:1085.341500px;}
.y55{bottom:1087.891500px;}
.ya1{bottom:1107.541500px;}
.y2e{bottom:1108.891500px;}
.y1{bottom:1148.083500px;}
.ya{bottom:1192.891500px;}
.h12{height:41.317383px;}
.hb{height:43.476562px;}
.hf{height:48.597656px;}
.h10{height:50.499023px;}
.hc{height:51.987305px;}
.hd{height:52.171875px;}
.h11{height:55.089844px;}
.h8{height:61.198242px;}
.h5{height:66.761719px;}
.h7{height:69.116658px;}
.he{height:72.325195px;}
.ha{height:74.876380px;}
.h9{height:89.015625px;}
.h3{height:155.777344px;}
.h6{height:166.904297px;}
.h2{height:267.046875px;}
.h4{height:1262.791500px;}
.h0{height:1262.834646px;}
.h1{height:1263.000000px;}
.w2{width:892.912500px;}
.w0{width:892.955906px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:53.250000px;}
.x4{left:127.800000px;}
.x1{left:129.000000px;}
.x9{left:154.800000px;}
.xc{left:159.750000px;}
.x7{left:163.800000px;}
.x5{left:165.300000px;}
.x28{left:172.050000px;}
.x39{left:179.100000px;}
.xa{left:181.800000px;}
.x2d{left:190.500000px;}
.x19{left:203.400000px;}
.x6{left:212.850000px;}
.x31{left:214.050000px;}
.x2e{left:224.250000px;}
.x17{left:245.550000px;}
.x1a{left:263.400000px;}
.xb{left:266.100000px;}
.x2{left:271.050000px;}
.x33{left:273.900000px;}
.x32{left:279.150000px;}
.x2f{left:288.900000px;}
.x1b{left:314.550000px;}
.x18{left:321.150000px;}
.x30{left:348.450000px;}
.x22{left:350.250000px;}
.x29{left:357.000000px;}
.x23{left:387.300000px;}
.x2a{left:402.600000px;}
.x24{left:403.650000px;}
.x38{left:413.700000px;}
.x1e{left:420.000000px;}
.x16{left:422.850000px;}
.x1c{left:438.450000px;}
.x13{left:446.100000px;}
.x25{left:450.000000px;}
.x20{left:463.650000px;}
.x2b{left:468.150000px;}
.x26{left:482.100000px;}
.x36{left:492.450000px;}
.x27{left:506.850000px;}
.x2c{left:512.550000px;}
.x1d{left:514.050000px;}
.x14{left:521.700000px;}
.x1f{left:526.950000px;}
.x37{left:568.050000px;}
.x11{left:590.700000px;}
.x34{left:605.250000px;}
.xd{left:637.200000px;}
.x12{left:641.850000px;}
.x35{left:649.500000px;}
.xf{left:684.300000px;}
.xe{left:688.350000px;}
.x21{left:721.200000px;}
.x15{left:732.900000px;}
.x10{left:759.900000px;}
.x8{left:770.850000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.066258pt;}
.ls4{letter-spacing:0.106667pt;}
.ls3{letter-spacing:48.896000pt;}
.ls2{letter-spacing:69.696000pt;}
.ws0{word-spacing:-89.088000pt;}
.ws2{word-spacing:-55.680000pt;}
.ws8{word-spacing:-38.400000pt;}
.wsd{word-spacing:-35.200000pt;}
.wse{word-spacing:-28.800000pt;}
.ws6{word-spacing:-24.979086pt;}
.wsb{word-spacing:-24.128000pt;}
.wsa{word-spacing:-23.057618pt;}
.ws7{word-spacing:-22.272000pt;}
.ws5{word-spacing:-21.003635pt;}
.ws4{word-spacing:-20.288000pt;}
.ws3{word-spacing:-18.597333pt;}
.wsc{word-spacing:-16.250667pt;}
.ws9{word-spacing:-0.069333pt;}
.ws1{word-spacing:0.000000pt;}
._5{margin-left:-711.360000pt;}
._7{margin-left:-144.192000pt;}
._2{margin-left:-5.397333pt;}
._0{margin-left:-2.837333pt;}
._1{margin-left:-1.344000pt;}
._3{width:0.970667pt;}
._f{width:2.240000pt;}
._9{width:3.381333pt;}
._d{width:4.928000pt;}
._e{width:5.834667pt;}
._a{width:6.784000pt;}
._b{width:7.744000pt;}
._17{width:8.768000pt;}
._1a{width:9.792000pt;}
._16{width:11.456000pt;}
._11{width:12.928000pt;}
._12{width:13.888000pt;}
._18{width:15.040000pt;}
._4{width:16.426667pt;}
._10{width:17.941333pt;}
._19{width:19.306667pt;}
._24{width:20.720000pt;}
._1e{width:21.760000pt;}
._1c{width:23.296000pt;}
._13{width:24.576000pt;}
._15{width:25.536000pt;}
._22{width:26.496000pt;}
._23{width:27.392000pt;}
._1f{width:28.736000pt;}
._1d{width:30.528000pt;}
._c{width:35.008000pt;}
._1b{width:48.448000pt;}
._14{width:49.600000pt;}
._8{width:84.394667pt;}
._21{width:156.544000pt;}
._20{width:157.504000pt;}
._6{width:651.861333pt;}
.fsa{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs6{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:66.257523pt;}
.fs9{font-size:69.333333pt;}
.fs8{font-size:71.778984pt;}
.fs7{font-size:85.333333pt;}
.fs1{font-size:149.333333pt;}
.fs4{font-size:160.000000pt;}
.fs0{font-size:256.000000pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:0.037333pt;}
.y9{bottom:6.748000pt;}
.y12{bottom:71.414667pt;}
.y54{bottom:101.948000pt;}
.y90{bottom:108.481333pt;}
.y53{bottom:120.614667pt;}
.y78{bottom:124.214667pt;}
.y8f{bottom:127.148000pt;}
.yc1{bottom:134.748000pt;}
.y77{bottom:145.681333pt;}
.y8e{bottom:145.814667pt;}
.yc0{bottom:154.081333pt;}
.y52{bottom:157.948000pt;}
.ybf{bottom:173.548000pt;}
.y2d{bottom:175.148000pt;}
.y76{bottom:176.481333pt;}
.y51{bottom:176.614667pt;}
.ya0{bottom:181.052000pt;}
.y8d{bottom:184.081333pt;}
.ybe{bottom:192.881333pt;}
.y50{bottom:195.281333pt;}
.y2c{bottom:196.614667pt;}
.y9f{bottom:199.718667pt;}
.y75{bottom:208.081333pt;}
.ybd{bottom:212.348000pt;}
.y4f{bottom:213.948000pt;}
.y9e{bottom:218.385333pt;}
.y8c{bottom:219.948000pt;}
.y2b{bottom:227.414667pt;}
.y74{bottom:228.881333pt;}
.ybc{bottom:231.681333pt;}
.y8b{bottom:238.614667pt;}
.y2a{bottom:248.881333pt;}
.y73{bottom:249.681333pt;}
.ybb{bottom:251.148000pt;}
.y4e{bottom:251.281333pt;}
.y8a{bottom:257.281333pt;}
.y4d{bottom:269.948000pt;}
.y29{bottom:270.348000pt;}
.y89{bottom:275.948000pt;}
.yba{bottom:276.614667pt;}
.y72{bottom:279.014667pt;}
.y4c{bottom:288.614667pt;}
.y28{bottom:301.148000pt;}
.yb9{bottom:302.614667pt;}
.y71{bottom:310.614667pt;}
.y88{bottom:313.281333pt;}
.yb8{bottom:321.948000pt;}
.y27{bottom:322.614667pt;}
.y4b{bottom:326.081333pt;}
.y70{bottom:331.414667pt;}
.y6f{bottom:352.214667pt;}
.y26{bottom:353.414667pt;}
.y4a{bottom:356.214667pt;}
.yb7{bottom:373.948000pt;}
.y49{bottom:374.881333pt;}
.y6e{bottom:381.548000pt;}
.y25{bottom:384.214667pt;}
.y48{bottom:393.548000pt;}
.y87{bottom:396.348000pt;}
.yb6{bottom:397.681333pt;}
.y47{bottom:412.214667pt;}
.y6d{bottom:412.348000pt;}
.y24{bottom:415.014667pt;}
.y86{bottom:417.814667pt;}
.yb5{bottom:421.014667pt;}
.y6c{bottom:433.814667pt;}
.y85{bottom:439.281333pt;}
.yb4{bottom:444.348000pt;}
.y23{bottom:445.814667pt;}
.y46{bottom:449.548000pt;}
.y6b{bottom:455.281333pt;}
.y84{bottom:460.748000pt;}
.yb3{bottom:467.548000pt;}
.y45{bottom:468.214667pt;}
.y22{bottom:476.614667pt;}
.y6a{bottom:476.748000pt;}
.y83{bottom:482.214667pt;}
.y44{bottom:486.881333pt;}
.yb2{bottom:496.214667pt;}
.y69{bottom:498.214667pt;}
.y82{bottom:503.681333pt;}
.y43{bottom:505.548000pt;}
.y21{bottom:507.414667pt;}
.yb1{bottom:515.548000pt;}
.y68{bottom:519.681333pt;}
.y42{bottom:524.214667pt;}
.y20{bottom:538.214667pt;}
.y67{bottom:541.148000pt;}
.y41{bottom:542.881333pt;}
.y40{bottom:561.548000pt;}
.y66{bottom:562.614667pt;}
.y1f{bottom:569.014667pt;}
.yb0{bottom:570.214667pt;}
.y9d{bottom:578.348000pt;}
.y3f{bottom:580.214667pt;}
.y65{bottom:584.081333pt;}
.y7{bottom:585.985333pt;}
.yaf{bottom:593.948000pt;}
.y9c{bottom:597.014667pt;}
.y1e{bottom:599.814667pt;}
.y64{bottom:610.614667pt;}
.y9b{bottom:615.681333pt;}
.yae{bottom:617.681333pt;}
.y3e{bottom:620.214667pt;}
.y6{bottom:629.452000pt;}
.y1d{bottom:630.614667pt;}
.y9a{bottom:634.348000pt;}
.y3d{bottom:638.881333pt;}
.yad{bottom:642.214667pt;}
.y63{bottom:643.948000pt;}
.y99{bottom:653.014667pt;}
.y3c{bottom:657.548000pt;}
.y1c{bottom:661.414667pt;}
.y98{bottom:671.681333pt;}
.yac{bottom:672.614667pt;}
.y62{bottom:674.748000pt;}
.y3b{bottom:676.214667pt;}
.y97{bottom:690.348000pt;}
.y1b{bottom:692.214667pt;}
.y3a{bottom:694.881333pt;}
.y61{bottom:696.214667pt;}
.y96{bottom:709.014667pt;}
.y81{bottom:712.214667pt;}
.y39{bottom:713.548000pt;}
.y5{bottom:716.518667pt;}
.y60{bottom:717.681333pt;}
.y1a{bottom:723.014667pt;}
.yab{bottom:724.748000pt;}
.y95{bottom:727.681333pt;}
.y80{bottom:733.681333pt;}
.y5f{bottom:736.348000pt;}
.y38{bottom:751.148000pt;}
.y7f{bottom:755.148000pt;}
.y11{bottom:762.348000pt;}
.yaa{bottom:771.281333pt;}
.y5e{bottom:776.348000pt;}
.y37{bottom:783.148000pt;}
.y4{bottom:783.585333pt;}
.y19{bottom:784.614667pt;}
.y7e{bottom:785.948000pt;}
.y10{bottom:787.814667pt;}
.ya9{bottom:794.614667pt;}
.y5d{bottom:795.014667pt;}
.y36{bottom:804.614667pt;}
.y7d{bottom:807.414667pt;}
.y5c{bottom:813.681333pt;}
.yf{bottom:814.348000pt;}
.y18{bottom:815.414667pt;}
.ya8{bottom:817.814667pt;}
.y35{bottom:826.081333pt;}
.y7c{bottom:828.881333pt;}
.ye{bottom:831.414667pt;}
.y5b{bottom:832.348000pt;}
.ya7{bottom:841.148000pt;}
.y17{bottom:846.214667pt;}
.y34{bottom:847.548000pt;}
.yd{bottom:848.481333pt;}
.y7b{bottom:850.348000pt;}
.y3{bottom:850.652000pt;}
.y5a{bottom:851.014667pt;}
.yc{bottom:865.814667pt;}
.y16{bottom:867.681333pt;}
.y33{bottom:869.014667pt;}
.ya6{bottom:869.814667pt;}
.y59{bottom:870.748000pt;}
.y7a{bottom:871.814667pt;}
.y94{bottom:873.681333pt;}
.ya5{bottom:889.148000pt;}
.y58{bottom:890.348000pt;}
.y93{bottom:892.348000pt;}
.y15{bottom:898.481333pt;}
.y32{bottom:899.814667pt;}
.y79{bottom:902.614667pt;}
.ya4{bottom:908.481333pt;}
.y57{bottom:909.014667pt;}
.y92{bottom:911.014667pt;}
.y2{bottom:916.118667pt;}
.y14{bottom:919.948000pt;}
.y31{bottom:921.281333pt;}
.ya3{bottom:927.814667pt;}
.y30{bottom:942.748000pt;}
.yb{bottom:944.748000pt;}
.y56{bottom:947.414667pt;}
.y91{bottom:948.348000pt;}
.y2f{bottom:964.214667pt;}
.ya2{bottom:964.348000pt;}
.y13{bottom:964.748000pt;}
.y55{bottom:967.014667pt;}
.ya1{bottom:984.481333pt;}
.y2e{bottom:985.681333pt;}
.y1{bottom:1020.518667pt;}
.ya{bottom:1060.348000pt;}
.h12{height:36.726562pt;}
.hb{height:38.645833pt;}
.hf{height:43.197917pt;}
.h10{height:44.888021pt;}
.hc{height:46.210938pt;}
.hd{height:46.375000pt;}
.h11{height:48.968750pt;}
.h8{height:54.398438pt;}
.h5{height:59.343750pt;}
.h7{height:61.437030pt;}
.he{height:64.289062pt;}
.ha{height:66.556782pt;}
.h9{height:79.125000pt;}
.h3{height:138.468750pt;}
.h6{height:148.359375pt;}
.h2{height:237.375000pt;}
.h4{height:1122.481333pt;}
.h0{height:1122.519685pt;}
.h1{height:1122.666667pt;}
.w2{width:793.700000pt;}
.w0{width:793.738583pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:47.333333pt;}
.x4{left:113.600000pt;}
.x1{left:114.666667pt;}
.x9{left:137.600000pt;}
.xc{left:142.000000pt;}
.x7{left:145.600000pt;}
.x5{left:146.933333pt;}
.x28{left:152.933333pt;}
.x39{left:159.200000pt;}
.xa{left:161.600000pt;}
.x2d{left:169.333333pt;}
.x19{left:180.800000pt;}
.x6{left:189.200000pt;}
.x31{left:190.266667pt;}
.x2e{left:199.333333pt;}
.x17{left:218.266667pt;}
.x1a{left:234.133333pt;}
.xb{left:236.533333pt;}
.x2{left:240.933333pt;}
.x33{left:243.466667pt;}
.x32{left:248.133333pt;}
.x2f{left:256.800000pt;}
.x1b{left:279.600000pt;}
.x18{left:285.466667pt;}
.x30{left:309.733333pt;}
.x22{left:311.333333pt;}
.x29{left:317.333333pt;}
.x23{left:344.266667pt;}
.x2a{left:357.866667pt;}
.x24{left:358.800000pt;}
.x38{left:367.733333pt;}
.x1e{left:373.333333pt;}
.x16{left:375.866667pt;}
.x1c{left:389.733333pt;}
.x13{left:396.533333pt;}
.x25{left:400.000000pt;}
.x20{left:412.133333pt;}
.x2b{left:416.133333pt;}
.x26{left:428.533333pt;}
.x36{left:437.733333pt;}
.x27{left:450.533333pt;}
.x2c{left:455.600000pt;}
.x1d{left:456.933333pt;}
.x14{left:463.733333pt;}
.x1f{left:468.400000pt;}
.x37{left:504.933333pt;}
.x11{left:525.066667pt;}
.x34{left:538.000000pt;}
.xd{left:566.400000pt;}
.x12{left:570.533333pt;}
.x35{left:577.333333pt;}
.xf{left:608.266667pt;}
.xe{left:611.866667pt;}
.x21{left:641.066667pt;}
.x15{left:651.466667pt;}
.x10{left:675.466667pt;}
.x8{left:685.200000pt;}
}




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