
    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_4471581c7e1bb2db927d196c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.959000;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_d937165140a61877da29b063.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.959000;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_3f34640f7e8c0c93d990af61.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.959000;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_ec88906e2a4e70255014ab26.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.047000;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_2a59a48d221d20ee622e22d6.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.953000;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_e1a93d7322ea54abad1e1c18.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.112000;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_3c0244c775d5d455703b6ce3.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.924000;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;}
.lsd{letter-spacing:0.283935px;}
.lsb{letter-spacing:0.313824px;}
.lse{letter-spacing:0.425055px;}
.ls5{letter-spacing:0.473430px;}
.lsc{letter-spacing:0.851805px;}
.ls4{letter-spacing:0.941472px;}
.ls1{letter-spacing:0.986301px;}
.ls3{letter-spacing:1.031130px;}
.ls2{letter-spacing:1.165626px;}
.ls8{letter-spacing:14.414083px;}
.lsa{letter-spacing:15.188083px;}
.ls7{letter-spacing:16.670083px;}
.ls9{letter-spacing:18.242083px;}
.ls6{letter-spacing:20.432083px;}
.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;}
}
.ws4{word-spacing:-15.948144px;}
.ws3{word-spacing:-15.314611px;}
.ws5{word-spacing:-15.254789px;}
.ws2{word-spacing:-15.189082px;}
.ws0{word-spacing:-15.123129px;}
.ws7{word-spacing:-13.856028px;}
.ws8{word-spacing:-13.742454px;}
.ws6{word-spacing:-13.004223px;}
.ws1{word-spacing:0.000000px;}
._1a{margin-left:-15.165190px;}
._19{margin-left:-8.536013px;}
._18{margin-left:-6.706847px;}
._11{margin-left:-5.266270px;}
._16{margin-left:-4.205242px;}
._13{margin-left:-2.698886px;}
._d{margin-left:-1.512328px;}
._b{width:1.427993px;}
._5{width:2.957986px;}
._7{width:4.249980px;}
._10{width:5.789982px;}
._0{width:6.848539px;}
._1{width:8.014248px;}
._f{width:9.159835px;}
._a{width:10.573950px;}
._12{width:12.397967px;}
._9{width:13.667936px;}
._1c{width:14.834299px;}
._4{width:15.843925px;}
._1b{width:19.761876px;}
._6{width:21.113901px;}
._15{width:24.197251px;}
._e{width:25.297056px;}
._3{width:29.171863px;}
._8{width:34.169839px;}
._c{width:46.579781px;}
._17{width:95.738488px;}
._14{width:107.105306px;}
._2{width:845.750877px;}
.fc2{color:rgb(65,160,17);}
.fc1{color:rgb(255,101,0);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:0.597600px;}
.fs3{font-size:33.999840px;}
.fs2{font-size:38.856960px;}
.fs5{font-size:42.742656px;}
.fs6{font-size:43.714080px;}
.fsc{font-size:47.343000px;}
.fs1{font-size:48.571200px;}
.fsb{font-size:53.798400px;}
.fs4{font-size:54.399744px;}
.fse{font-size:56.787000px;}
.fsa{font-size:62.764800px;}
.fs7{font-size:65.753400px;}
.fs0{font-size:67.999680px;}
.fs9{font-size:68.742000px;}
.fs8{font-size:77.708400px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.307350px;}
.y23{bottom:51.789042px;}
.y22{bottom:65.558977px;}
.y21{bottom:79.328912px;}
.y20{bottom:93.098848px;}
.y1f{bottom:104.865221px;}
.y1e{bottom:127.159402px;}
.ycf{bottom:134.787000px;}
.y69{bottom:144.567000px;}
.y66{bottom:144.733500px;}
.ya7{bottom:148.035000px;}
.yce{bottom:153.070500px;}
.y7e{bottom:162.850500px;}
.y43{bottom:164.125500px;}
.y65{bottom:164.293500px;}
.ya6{bottom:166.318500px;}
.ycd{bottom:171.354000px;}
.y7d{bottom:181.134000px;}
.y42{bottom:183.685500px;}
.y64{bottom:183.852000px;}
.ya5{bottom:184.602000px;}
.y1d{bottom:185.044129px;}
.ycc{bottom:189.637500px;}
.y1c{bottom:195.365509px;}
.y7c{bottom:199.737000px;}
.y41{bottom:203.244000px;}
.y63{bottom:203.410500px;}
.ya4{bottom:203.632500px;}
.y1b{bottom:204.836893px;}
.yf4{bottom:208.281000px;}
.ycb{bottom:208.347000px;}
.y1a{bottom:213.433996px;}
.y7b{bottom:218.020500px;}
.ya3{bottom:221.916000px;}
.y19{bottom:222.043241px;}
.y40{bottom:222.802500px;}
.y62{bottom:222.970500px;}
.yf3{bottom:226.564500px;}
.yca{bottom:226.629000px;}
.y18{bottom:230.652486px;}
.y7a{bottom:236.304000px;}
.y17{bottom:239.249588px;}
.ya2{bottom:240.946500px;}
.y3f{bottom:242.362500px;}
.y61{bottom:242.529000px;}
.yf2{bottom:244.848000px;}
.yc9{bottom:244.912500px;}
.y16{bottom:247.858834px;}
.y79{bottom:254.587500px;}
.y15{bottom:256.468079px;}
.ya1{bottom:259.230000px;}
.y3e{bottom:261.921000px;}
.y60{bottom:262.087500px;}
.yc8{bottom:263.196000px;}
.yf1{bottom:263.491500px;}
.y14{bottom:265.065181px;}
.y78{bottom:273.190500px;}
.y13{bottom:273.674426px;}
.ya0{bottom:277.513500px;}
.y3d{bottom:281.479500px;}
.y5f{bottom:281.647500px;}
.yf0{bottom:281.775000px;}
.yc7{bottom:281.905500px;}
.y12{bottom:282.283672px;}
.y4d{bottom:291.310500px;}
.y77{bottom:291.474000px;}
.y9f{bottom:295.797000px;}
.y11{bottom:299.987874px;}
.yef{bottom:300.058500px;}
.yc6{bottom:300.189000px;}
.y3c{bottom:301.039500px;}
.y5e{bottom:301.206000px;}
.y76{bottom:309.757500px;}
.y9e{bottom:314.827500px;}
.yee{bottom:318.342000px;}
.yc5{bottom:318.472500px;}
.y3b{bottom:320.598000px;}
.y5d{bottom:320.766000px;}
.y75{bottom:328.360500px;}
.y9d{bottom:333.111000px;}
.yc4{bottom:336.756000px;}
.yed{bottom:336.984000px;}
.y3a{bottom:340.158000px;}
.y5c{bottom:340.324500px;}
.y74{bottom:346.644000px;}
.y68{bottom:349.987500px;}
.y9c{bottom:352.141500px;}
.yec{bottom:355.267500px;}
.yc3{bottom:355.464000px;}
.y39{bottom:359.716500px;}
.y5b{bottom:359.883000px;}
.y73{bottom:364.927500px;}
.y9b{bottom:370.425000px;}
.yeb{bottom:373.551000px;}
.yc2{bottom:373.747500px;}
.y38{bottom:379.275000px;}
.y5a{bottom:379.443000px;}
.y72{bottom:383.530500px;}
.y9a{bottom:388.708500px;}
.yea{bottom:391.834500px;}
.yc1{bottom:392.031000px;}
.y37{bottom:398.835000px;}
.y59{bottom:399.001500px;}
.y71{bottom:401.814000px;}
.y99{bottom:407.739000px;}
.y54{bottom:409.201500px;}
.yc0{bottom:410.314500px;}
.ye9{bottom:410.478000px;}
.y36{bottom:418.393500px;}
.y58{bottom:418.560000px;}
.y70{bottom:420.097500px;}
.y98{bottom:426.022500px;}
.ye8{bottom:428.761500px;}
.ybf{bottom:429.024000px;}
.y53{bottom:430.722000px;}
.y10{bottom:433.291532px;}
.y35{bottom:437.952000px;}
.y97{bottom:444.306000px;}
.ye7{bottom:447.045000px;}
.ybe{bottom:447.307500px;}
.y57{bottom:447.949500px;}
.y6f{bottom:448.320000px;}
.y34{bottom:457.512000px;}
.y96{bottom:462.589500px;}
.ye6{bottom:465.328500px;}
.ybd{bottom:465.591000px;}
.y33{bottom:477.070500px;}
.y95{bottom:481.620000px;}
.ye5{bottom:483.972000px;}
.ybc{bottom:484.299000px;}
.y6e{bottom:487.438500px;}
.y32{bottom:496.630500px;}
.y94{bottom:499.903500px;}
.ye4{bottom:502.255500px;}
.ybb{bottom:502.582500px;}
.y31{bottom:516.189000px;}
.y93{bottom:518.187000px;}
.ye3{bottom:520.539000px;}
.yba{bottom:521.290500px;}
.y30{bottom:535.747500px;}
.y92{bottom:537.217500px;}
.ye2{bottom:539.182500px;}
.yb9{bottom:539.574000px;}
.y2f{bottom:555.307500px;}
.y91{bottom:555.501000px;}
.yf{bottom:555.690956px;}
.ye1{bottom:557.466000px;}
.yb8{bottom:557.857500px;}
.y90{bottom:573.784500px;}
.y2e{bottom:574.866000px;}
.ye0{bottom:576.109500px;}
.yb7{bottom:576.141000px;}
.ye{bottom:582.235117px;}
.y8f{bottom:592.815000px;}
.ydf{bottom:594.393000px;}
.y2d{bottom:594.424500px;}
.yb6{bottom:594.850500px;}
.yd{bottom:596.005052px;}
.y8e{bottom:611.098500px;}
.yde{bottom:613.035000px;}
.yb5{bottom:613.134000px;}
.y2c{bottom:613.984500px;}
.yc{bottom:622.816355px;}
.y8d{bottom:629.382000px;}
.ydd{bottom:631.318500px;}
.yb4{bottom:631.417500px;}
.y2b{bottom:633.543000px;}
.yb{bottom:636.574147px;}
.y8c{bottom:647.665500px;}
.ydc{bottom:649.602000px;}
.yb3{bottom:649.701000px;}
.ya{bottom:650.344082px;}
.y2a{bottom:653.103000px;}
.y9{bottom:664.114018px;}
.y8b{bottom:666.696000px;}
.ydb{bottom:667.885500px;}
.yb2{bottom:668.409000px;}
.y29{bottom:672.661500px;}
.y8{bottom:677.883953px;}
.y6b{bottom:682.491000px;}
.y8a{bottom:684.979500px;}
.yda{bottom:686.529000px;}
.yb1{bottom:686.692500px;}
.y7{bottom:691.653888px;}
.y28{bottom:692.220000px;}
.y6a{bottom:702.217500px;}
.y89{bottom:704.010000px;}
.yd9{bottom:704.812500px;}
.yb0{bottom:704.976000px;}
.y4c{bottom:711.780000px;}
.y27{bottom:722.146500px;}
.y88{bottom:722.293500px;}
.yf6{bottom:723.040500px;}
.yd8{bottom:723.096000px;}
.yaf{bottom:723.685500px;}
.y52{bottom:731.338500px;}
.y4b{bottom:741.168000px;}
.y87{bottom:741.324000px;}
.yd7{bottom:741.739500px;}
.yae{bottom:741.969000px;}
.y51{bottom:750.897000px;}
.y6{bottom:755.330731px;}
.y86{bottom:759.607500px;}
.yd6{bottom:760.023000px;}
.yad{bottom:760.252500px;}
.y67{bottom:761.265000px;}
.y50{bottom:770.457000px;}
.y5{bottom:772.537079px;}
.y85{bottom:777.891000px;}
.yd5{bottom:778.306500px;}
.yac{bottom:778.960500px;}
.y4a{bottom:780.825000px;}
.y4{bottom:789.755569px;}
.y4f{bottom:790.015500px;}
.y84{bottom:796.174500px;}
.yf5{bottom:796.921500px;}
.yd4{bottom:796.950000px;}
.yab{bottom:797.244000px;}
.y6d{bottom:799.845000px;}
.y3{bottom:808.941193px;}
.y4e{bottom:809.575500px;}
.y26{bottom:812.611500px;}
.y83{bottom:815.205000px;}
.yd3{bottom:815.233500px;}
.yaa{bottom:815.527500px;}
.y6c{bottom:819.571500px;}
.y49{bottom:829.134000px;}
.y2{bottom:833.044651px;}
.y82{bottom:833.488500px;}
.yd2{bottom:833.517000px;}
.ya9{bottom:834.237000px;}
.y48{bottom:848.692500px;}
.y81{bottom:851.772000px;}
.yd1{bottom:852.160500px;}
.ya8{bottom:852.519000px;}
.y25{bottom:856.546500px;}
.y47{bottom:868.252500px;}
.yd0{bottom:870.444000px;}
.y80{bottom:870.802500px;}
.y56{bottom:878.082000px;}
.y46{bottom:887.811000px;}
.y7f{bottom:889.086000px;}
.y55{bottom:897.807000px;}
.y24{bottom:899.418000px;}
.y45{bottom:907.369500px;}
.y44{bottom:948.189000px;}
.h6{height:25.193881px;}
.h5{height:28.793007px;}
.h8{height:32.392133px;}
.h4{height:35.991259px;}
.h7{height:40.310210px;}
.h10{height:45.997632px;}
.h11{height:46.553407px;}
.h12{height:48.552885px;}
.h13{height:48.558885px;}
.he{height:48.669336px;}
.h3{height:50.387763px;}
.hb{height:51.879433px;}
.hf{height:53.663904px;}
.hc{height:55.017547px;}
.hd{height:66.440682px;}
.h9{height:1020.472500px;}
.ha{height:1020.750000px;}
.h2{height:1022.290189px;}
.h0{height:1022.910000px;}
.h1{height:1023.000000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x3{left:37.861250px;}
.x1{left:44.746218px;}
.x7{left:79.636500px;}
.x5{left:106.422000px;}
.x2{left:120.468719px;}
.xb{left:122.097000px;}
.x6{left:123.424500px;}
.x9{left:130.212000px;}
.xa{left:137.638500px;}
.x4{left:354.533332px;}
.x8{left:477.756000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.252387pt;}
.lsb{letter-spacing:0.278955pt;}
.lse{letter-spacing:0.377827pt;}
.ls5{letter-spacing:0.420827pt;}
.lsc{letter-spacing:0.757160pt;}
.ls4{letter-spacing:0.836864pt;}
.ls1{letter-spacing:0.876712pt;}
.ls3{letter-spacing:0.916560pt;}
.ls2{letter-spacing:1.036112pt;}
.ls8{letter-spacing:12.812518pt;}
.lsa{letter-spacing:13.500518pt;}
.ls7{letter-spacing:14.817852pt;}
.ls9{letter-spacing:16.215185pt;}
.ls6{letter-spacing:18.161852pt;}
.ws4{word-spacing:-14.176128pt;}
.ws3{word-spacing:-13.612988pt;}
.ws5{word-spacing:-13.559812pt;}
.ws2{word-spacing:-13.501406pt;}
.ws0{word-spacing:-13.442781pt;}
.ws7{word-spacing:-12.316469pt;}
.ws8{word-spacing:-12.215515pt;}
.ws6{word-spacing:-11.559309pt;}
.ws1{word-spacing:0.000000pt;}
._1a{margin-left:-13.480169pt;}
._19{margin-left:-7.587567pt;}
._18{margin-left:-5.961642pt;}
._11{margin-left:-4.681129pt;}
._16{margin-left:-3.737993pt;}
._13{margin-left:-2.399010pt;}
._d{margin-left:-1.344292pt;}
._b{width:1.269327pt;}
._5{width:2.629321pt;}
._7{width:3.777760pt;}
._10{width:5.146651pt;}
._0{width:6.087590pt;}
._1{width:7.123776pt;}
._f{width:8.142076pt;}
._a{width:9.399067pt;}
._12{width:11.020415pt;}
._9{width:12.149276pt;}
._1c{width:13.186044pt;}
._4{width:14.083489pt;}
._1b{width:17.566112pt;}
._6{width:18.767912pt;}
._15{width:21.508668pt;}
._e{width:22.486272pt;}
._3{width:25.930545pt;}
._8{width:30.373190pt;}
._c{width:41.404250pt;}
._17{width:85.100878pt;}
._14{width:95.204716pt;}
._2{width:751.778557pt;}
.fsd{font-size:0.531200pt;}
.fs3{font-size:30.222080pt;}
.fs2{font-size:34.539520pt;}
.fs5{font-size:37.993472pt;}
.fs6{font-size:38.856960pt;}
.fsc{font-size:42.082667pt;}
.fs1{font-size:43.174400pt;}
.fsb{font-size:47.820800pt;}
.fs4{font-size:48.355328pt;}
.fse{font-size:50.477333pt;}
.fsa{font-size:55.790933pt;}
.fs7{font-size:58.447467pt;}
.fs0{font-size:60.444160pt;}
.fs9{font-size:61.104000pt;}
.fs8{font-size:69.074133pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.273200pt;}
.y23{bottom:46.034704pt;}
.y22{bottom:58.274646pt;}
.y21{bottom:70.514589pt;}
.y20{bottom:82.754531pt;}
.y1f{bottom:93.213530pt;}
.y1e{bottom:113.030579pt;}
.ycf{bottom:119.810667pt;}
.y69{bottom:128.504000pt;}
.y66{bottom:128.652000pt;}
.ya7{bottom:131.586667pt;}
.yce{bottom:136.062667pt;}
.y7e{bottom:144.756000pt;}
.y43{bottom:145.889333pt;}
.y65{bottom:146.038667pt;}
.ya6{bottom:147.838667pt;}
.ycd{bottom:152.314667pt;}
.y7d{bottom:161.008000pt;}
.y42{bottom:163.276000pt;}
.y64{bottom:163.424000pt;}
.ya5{bottom:164.090667pt;}
.y1d{bottom:164.483670pt;}
.ycc{bottom:168.566667pt;}
.y1c{bottom:173.658230pt;}
.y7c{bottom:177.544000pt;}
.y41{bottom:180.661333pt;}
.y63{bottom:180.809333pt;}
.ya4{bottom:181.006667pt;}
.y1b{bottom:182.077238pt;}
.yf4{bottom:185.138667pt;}
.ycb{bottom:185.197333pt;}
.y1a{bottom:189.719107pt;}
.y7b{bottom:193.796000pt;}
.ya3{bottom:197.258667pt;}
.y19{bottom:197.371770pt;}
.y40{bottom:198.046667pt;}
.y62{bottom:198.196000pt;}
.yf3{bottom:201.390667pt;}
.yca{bottom:201.448000pt;}
.y18{bottom:205.024432pt;}
.y7a{bottom:210.048000pt;}
.y17{bottom:212.666301pt;}
.ya2{bottom:214.174667pt;}
.y3f{bottom:215.433333pt;}
.y61{bottom:215.581333pt;}
.yf2{bottom:217.642667pt;}
.yc9{bottom:217.700000pt;}
.y16{bottom:220.318963pt;}
.y79{bottom:226.300000pt;}
.y15{bottom:227.971626pt;}
.ya1{bottom:230.426667pt;}
.y3e{bottom:232.818667pt;}
.y60{bottom:232.966667pt;}
.yc8{bottom:233.952000pt;}
.yf1{bottom:234.214667pt;}
.y14{bottom:235.613494pt;}
.y78{bottom:242.836000pt;}
.y13{bottom:243.266157pt;}
.ya0{bottom:246.678667pt;}
.y3d{bottom:250.204000pt;}
.y5f{bottom:250.353333pt;}
.yf0{bottom:250.466667pt;}
.yc7{bottom:250.582667pt;}
.y12{bottom:250.918819pt;}
.y4d{bottom:258.942667pt;}
.y77{bottom:259.088000pt;}
.y9f{bottom:262.930667pt;}
.y11{bottom:266.655888pt;}
.yef{bottom:266.718667pt;}
.yc6{bottom:266.834667pt;}
.y3c{bottom:267.590667pt;}
.y5e{bottom:267.738667pt;}
.y76{bottom:275.340000pt;}
.y9e{bottom:279.846667pt;}
.yee{bottom:282.970667pt;}
.yc5{bottom:283.086667pt;}
.y3b{bottom:284.976000pt;}
.y5d{bottom:285.125333pt;}
.y75{bottom:291.876000pt;}
.y9d{bottom:296.098667pt;}
.yc4{bottom:299.338667pt;}
.yed{bottom:299.541333pt;}
.y3a{bottom:302.362667pt;}
.y5c{bottom:302.510667pt;}
.y74{bottom:308.128000pt;}
.y68{bottom:311.100000pt;}
.y9c{bottom:313.014667pt;}
.yec{bottom:315.793333pt;}
.yc3{bottom:315.968000pt;}
.y39{bottom:319.748000pt;}
.y5b{bottom:319.896000pt;}
.y73{bottom:324.380000pt;}
.y9b{bottom:329.266667pt;}
.yeb{bottom:332.045333pt;}
.yc2{bottom:332.220000pt;}
.y38{bottom:337.133333pt;}
.y5a{bottom:337.282667pt;}
.y72{bottom:340.916000pt;}
.y9a{bottom:345.518667pt;}
.yea{bottom:348.297333pt;}
.yc1{bottom:348.472000pt;}
.y37{bottom:354.520000pt;}
.y59{bottom:354.668000pt;}
.y71{bottom:357.168000pt;}
.y99{bottom:362.434667pt;}
.y54{bottom:363.734667pt;}
.yc0{bottom:364.724000pt;}
.ye9{bottom:364.869333pt;}
.y36{bottom:371.905333pt;}
.y58{bottom:372.053333pt;}
.y70{bottom:373.420000pt;}
.y98{bottom:378.686667pt;}
.ye8{bottom:381.121333pt;}
.ybf{bottom:381.354667pt;}
.y53{bottom:382.864000pt;}
.y10{bottom:385.148029pt;}
.y35{bottom:389.290667pt;}
.y97{bottom:394.938667pt;}
.ye7{bottom:397.373333pt;}
.ybe{bottom:397.606667pt;}
.y57{bottom:398.177333pt;}
.y6f{bottom:398.506667pt;}
.y34{bottom:406.677333pt;}
.y96{bottom:411.190667pt;}
.ye6{bottom:413.625333pt;}
.ybd{bottom:413.858667pt;}
.y33{bottom:424.062667pt;}
.y95{bottom:428.106667pt;}
.ye5{bottom:430.197333pt;}
.ybc{bottom:430.488000pt;}
.y6e{bottom:433.278667pt;}
.y32{bottom:441.449333pt;}
.y94{bottom:444.358667pt;}
.ye4{bottom:446.449333pt;}
.ybb{bottom:446.740000pt;}
.y31{bottom:458.834667pt;}
.y93{bottom:460.610667pt;}
.ye3{bottom:462.701333pt;}
.yba{bottom:463.369333pt;}
.y30{bottom:476.220000pt;}
.y92{bottom:477.526667pt;}
.ye2{bottom:479.273333pt;}
.yb9{bottom:479.621333pt;}
.y2f{bottom:493.606667pt;}
.y91{bottom:493.778667pt;}
.yf{bottom:493.947517pt;}
.ye1{bottom:495.525333pt;}
.yb8{bottom:495.873333pt;}
.y90{bottom:510.030667pt;}
.y2e{bottom:510.992000pt;}
.ye0{bottom:512.097333pt;}
.yb7{bottom:512.125333pt;}
.ye{bottom:517.542326pt;}
.y8f{bottom:526.946667pt;}
.ydf{bottom:528.349333pt;}
.y2d{bottom:528.377333pt;}
.yb6{bottom:528.756000pt;}
.yd{bottom:529.782269pt;}
.y8e{bottom:543.198667pt;}
.yde{bottom:544.920000pt;}
.yb5{bottom:545.008000pt;}
.y2c{bottom:545.764000pt;}
.yc{bottom:553.614538pt;}
.y8d{bottom:559.450667pt;}
.ydd{bottom:561.172000pt;}
.yb4{bottom:561.260000pt;}
.y2b{bottom:563.149333pt;}
.yb{bottom:565.843686pt;}
.y8c{bottom:575.702667pt;}
.ydc{bottom:577.424000pt;}
.yb3{bottom:577.512000pt;}
.ya{bottom:578.083629pt;}
.y2a{bottom:580.536000pt;}
.y9{bottom:590.323571pt;}
.y8b{bottom:592.618667pt;}
.ydb{bottom:593.676000pt;}
.yb2{bottom:594.141333pt;}
.y29{bottom:597.921333pt;}
.y8{bottom:602.563514pt;}
.y6b{bottom:606.658667pt;}
.y8a{bottom:608.870667pt;}
.yda{bottom:610.248000pt;}
.yb1{bottom:610.393333pt;}
.y7{bottom:614.803456pt;}
.y28{bottom:615.306667pt;}
.y6a{bottom:624.193333pt;}
.y89{bottom:625.786667pt;}
.yd9{bottom:626.500000pt;}
.yb0{bottom:626.645333pt;}
.y4c{bottom:632.693333pt;}
.y27{bottom:641.908000pt;}
.y88{bottom:642.038667pt;}
.yf6{bottom:642.702667pt;}
.yd8{bottom:642.752000pt;}
.yaf{bottom:643.276000pt;}
.y52{bottom:650.078667pt;}
.y4b{bottom:658.816000pt;}
.y87{bottom:658.954667pt;}
.yd7{bottom:659.324000pt;}
.yae{bottom:659.528000pt;}
.y51{bottom:667.464000pt;}
.y6{bottom:671.405094pt;}
.y86{bottom:675.206667pt;}
.yd6{bottom:675.576000pt;}
.yad{bottom:675.780000pt;}
.y67{bottom:676.680000pt;}
.y50{bottom:684.850667pt;}
.y5{bottom:686.699626pt;}
.y85{bottom:691.458667pt;}
.yd5{bottom:691.828000pt;}
.yac{bottom:692.409333pt;}
.y4a{bottom:694.066667pt;}
.y4{bottom:702.004950pt;}
.y4f{bottom:702.236000pt;}
.y84{bottom:707.710667pt;}
.yf5{bottom:708.374667pt;}
.yd4{bottom:708.400000pt;}
.yab{bottom:708.661333pt;}
.y6d{bottom:710.973333pt;}
.y3{bottom:719.058838pt;}
.y4e{bottom:719.622667pt;}
.y26{bottom:722.321333pt;}
.y83{bottom:724.626667pt;}
.yd3{bottom:724.652000pt;}
.yaa{bottom:724.913333pt;}
.y6c{bottom:728.508000pt;}
.y49{bottom:737.008000pt;}
.y2{bottom:740.484134pt;}
.y82{bottom:740.878667pt;}
.yd2{bottom:740.904000pt;}
.ya9{bottom:741.544000pt;}
.y48{bottom:754.393333pt;}
.y81{bottom:757.130667pt;}
.yd1{bottom:757.476000pt;}
.ya8{bottom:757.794667pt;}
.y25{bottom:761.374667pt;}
.y47{bottom:771.780000pt;}
.yd0{bottom:773.728000pt;}
.y80{bottom:774.046667pt;}
.y56{bottom:780.517333pt;}
.y46{bottom:789.165333pt;}
.y7f{bottom:790.298667pt;}
.y55{bottom:798.050667pt;}
.y24{bottom:799.482667pt;}
.y45{bottom:806.550667pt;}
.y44{bottom:842.834667pt;}
.h6{height:22.394561pt;}
.h5{height:25.593784pt;}
.h8{height:28.793007pt;}
.h4{height:31.992230pt;}
.h7{height:35.831298pt;}
.h10{height:40.886784pt;}
.h11{height:41.380806pt;}
.h12{height:43.158120pt;}
.h13{height:43.163453pt;}
.he{height:43.261632pt;}
.h3{height:44.789123pt;}
.hb{height:46.115051pt;}
.hf{height:47.701248pt;}
.hc{height:48.904486pt;}
.hd{height:59.058384pt;}
.h9{height:907.086667pt;}
.ha{height:907.333333pt;}
.h2{height:908.702390pt;}
.h0{height:909.253333pt;}
.h1{height:909.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x3{left:33.654445pt;}
.x1{left:39.774416pt;}
.x7{left:70.788000pt;}
.x5{left:94.597333pt;}
.x2{left:107.083306pt;}
.xb{left:108.530667pt;}
.x6{left:109.710667pt;}
.x9{left:115.744000pt;}
.xa{left:122.345333pt;}
.x4{left:315.140739pt;}
.x8{left:424.672000pt;}
}




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