
    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_380ad3b7b3d7bb8946783724.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_720f887009f675b1a3ad7a4c.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_a11f57194788f1c3d2eaa2b5.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_05ed13144451991240daf866.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_03867e947fe2ec0e022e426b.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_31c4293f4d466a63aff639d4.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;}
.ls5{letter-spacing:0.473430px;}
.ls6{letter-spacing:0.717309px;}
.ls8{letter-spacing:0.848601px;}
.ls7{letter-spacing:0.851805px;}
.ls3{letter-spacing:0.941472px;}
.ls1{letter-spacing:0.986301px;}
.ls4{letter-spacing:1.031130px;}
.ls2{letter-spacing:1.165626px;}
.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;}
}
.ws3{word-spacing:-15.948144px;}
.ws2{word-spacing:-15.189082px;}
.ws0{word-spacing:-15.123129px;}
.ws4{word-spacing:-13.856028px;}
.ws5{word-spacing:-13.004223px;}
.ws1{word-spacing:0.000000px;}
._e{margin-left:-15.978076px;}
._16{margin-left:-14.821007px;}
._20{margin-left:-13.081931px;}
._1e{margin-left:-11.423194px;}
._11{margin-left:-9.351955px;}
._1d{margin-left:-8.318137px;}
._12{margin-left:-7.119349px;}
._1f{margin-left:-5.980921px;}
._18{margin-left:-4.268006px;}
._14{margin-left:-3.263770px;}
._d{margin-left:-1.512328px;}
._b{width:1.427993px;}
._5{width:2.957986px;}
._7{width:4.249980px;}
._f{width:5.371061px;}
._0{width:6.848539px;}
._1{width:8.014248px;}
._10{width:9.034306px;}
._a{width:10.573950px;}
._1a{width:12.552960px;}
._9{width:13.667936px;}
._4{width:15.843925px;}
._1b{width:17.699674px;}
._1c{width:18.829440px;}
._6{width:21.113901px;}
._17{width:24.197251px;}
._13{width:25.297056px;}
._3{width:29.171863px;}
._8{width:34.169839px;}
._c{width:46.579781px;}
._19{width:95.745118px;}
._15{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);}
.fse{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;}
.fsd{font-size:47.820600px;}
.fs1{font-size:48.571200px;}
.fsb{font-size:53.798400px;}
.fs4{font-size:54.399744px;}
.fsf{font-size:56.787000px;}
.fs9{font-size:62.764800px;}
.fs7{font-size:65.753400px;}
.fs0{font-size:67.999680px;}
.fsa{font-size:68.742000px;}
.fs8{font-size:77.708400px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.307350px;}
.y22{bottom:51.789042px;}
.y21{bottom:65.558977px;}
.y20{bottom:79.328912px;}
.y1f{bottom:93.098848px;}
.y1e{bottom:104.865221px;}
.y1d{bottom:127.159402px;}
.y81{bottom:134.787000px;}
.y43{bottom:144.567000px;}
.y64{bottom:144.733500px;}
.yce{bottom:148.035000px;}
.yaa{bottom:149.529000px;}
.y80{bottom:153.070500px;}
.y42{bottom:164.125500px;}
.y63{bottom:164.293500px;}
.ycd{bottom:166.318500px;}
.ya9{bottom:167.812500px;}
.y7f{bottom:171.354000px;}
.y41{bottom:183.685500px;}
.y62{bottom:183.852000px;}
.ycc{bottom:184.602000px;}
.y1c{bottom:185.044129px;}
.yd6{bottom:186.096000px;}
.ya8{bottom:186.843000px;}
.y7e{bottom:189.927000px;}
.y1b{bottom:195.365509px;}
.ycb{bottom:202.885500px;}
.y40{bottom:203.244000px;}
.y61{bottom:203.410500px;}
.y1a{bottom:204.836893px;}
.ya7{bottom:205.126500px;}
.y7d{bottom:208.210500px;}
.y19{bottom:213.433996px;}
.yca{bottom:221.916000px;}
.y18{bottom:222.043241px;}
.y3f{bottom:222.802500px;}
.y60{bottom:222.970500px;}
.ya6{bottom:223.410000px;}
.y7c{bottom:226.494000px;}
.y17{bottom:230.652486px;}
.y54{bottom:232.632000px;}
.y16{bottom:239.249588px;}
.yc9{bottom:240.199500px;}
.ya5{bottom:241.693500px;}
.y3e{bottom:242.362500px;}
.y5f{bottom:242.529000px;}
.y7b{bottom:244.777500px;}
.y15{bottom:247.858834px;}
.y14{bottom:256.468079px;}
.yc8{bottom:258.483000px;}
.yd5{bottom:259.977000px;}
.ya4{bottom:260.724000px;}
.y3d{bottom:261.921000px;}
.y5e{bottom:262.087500px;}
.y7a{bottom:263.349000px;}
.y13{bottom:265.065181px;}
.y53{bottom:272.289000px;}
.y12{bottom:273.674426px;}
.yc7{bottom:277.513500px;}
.ya3{bottom:279.007500px;}
.y3c{bottom:281.479500px;}
.y51{bottom:281.481000px;}
.y79{bottom:281.632500px;}
.y5d{bottom:281.647500px;}
.y11{bottom:282.283672px;}
.yc6{bottom:295.797000px;}
.ya2{bottom:297.291000px;}
.y78{bottom:299.916000px;}
.y10{bottom:299.987874px;}
.y3b{bottom:301.039500px;}
.y5c{bottom:301.206000px;}
.yc5{bottom:314.080500px;}
.ya1{bottom:315.574500px;}
.y77{bottom:318.489000px;}
.y3a{bottom:320.598000px;}
.y5b{bottom:320.764500px;}
.yc4{bottom:332.364000px;}
.yd4{bottom:333.858000px;}
.ya0{bottom:334.605000px;}
.y76{bottom:336.772500px;}
.y39{bottom:340.158000px;}
.y5a{bottom:340.324500px;}
.yc3{bottom:351.394500px;}
.yd3{bottom:352.141500px;}
.y9f{bottom:352.888500px;}
.y75{bottom:355.056000px;}
.y38{bottom:359.716500px;}
.yc2{bottom:369.678000px;}
.y59{bottom:369.712500px;}
.y9e{bottom:371.172000px;}
.y74{bottom:373.627500px;}
.y37{bottom:379.275000px;}
.yc1{bottom:387.961500px;}
.y9d{bottom:389.455500px;}
.y73{bottom:391.911000px;}
.y36{bottom:398.835000px;}
.yc0{bottom:406.992000px;}
.yd2{bottom:407.739000px;}
.y9c{bottom:408.486000px;}
.y72{bottom:410.194500px;}
.y35{bottom:418.393500px;}
.ybf{bottom:425.275500px;}
.y9b{bottom:426.769500px;}
.y71{bottom:428.478000px;}
.y34{bottom:437.952000px;}
.ybe{bottom:443.559000px;}
.y9a{bottom:445.053000px;}
.yf{bottom:447.049325px;}
.y70{bottom:447.051000px;}
.y67{bottom:447.783000px;}
.y33{bottom:457.512000px;}
.ybd{bottom:461.842500px;}
.yd1{bottom:463.336500px;}
.y99{bottom:464.083500px;}
.y6f{bottom:465.334500px;}
.y32{bottom:477.070500px;}
.ybc{bottom:480.873000px;}
.y98{bottom:482.367000px;}
.y6e{bottom:483.618000px;}
.y4f{bottom:496.630500px;}
.ybb{bottom:499.156500px;}
.y97{bottom:500.650500px;}
.y6d{bottom:501.901500px;}
.y31{bottom:506.997000px;}
.y4e{bottom:516.189000px;}
.yba{bottom:517.440000px;}
.y96{bottom:518.934000px;}
.y6c{bottom:520.474500px;}
.y58{bottom:530.431500px;}
.yb9{bottom:535.723500px;}
.y4d{bottom:535.747500px;}
.yd0{bottom:537.217500px;}
.y95{bottom:537.964500px;}
.y6b{bottom:538.758000px;}
.y57{bottom:544.888500px;}
.yb8{bottom:554.754000px;}
.y30{bottom:555.307500px;}
.y94{bottom:556.248000px;}
.y6a{bottom:557.041500px;}
.y56{bottom:559.344000px;}
.ye{bottom:569.460892px;}
.yb7{bottom:573.784500px;}
.y55{bottom:573.801000px;}
.y93{bottom:574.531500px;}
.y2f{bottom:574.866000px;}
.y69{bottom:585.234000px;}
.yb6{bottom:592.068000px;}
.y92{bottom:592.815000px;}
.y2e{bottom:594.424500px;}
.yd{bottom:596.005052px;}
.yc{bottom:609.774988px;}
.yb5{bottom:610.351500px;}
.y91{bottom:611.845500px;}
.y2d{bottom:613.984500px;}
.yb4{bottom:629.382000px;}
.y90{bottom:630.129000px;}
.y2c{bottom:633.543000px;}
.yb{bottom:636.574147px;}
.yb3{bottom:647.665500px;}
.y8f{bottom:648.412500px;}
.ya{bottom:650.344082px;}
.y2b{bottom:653.103000px;}
.y9{bottom:664.114018px;}
.yb2{bottom:665.949000px;}
.y8e{bottom:666.696000px;}
.yd9{bottom:667.443000px;}
.y2a{bottom:672.661500px;}
.y8{bottom:677.883953px;}
.y4c{bottom:682.491000px;}
.yb1{bottom:684.979500px;}
.y8d{bottom:685.726500px;}
.y7{bottom:691.653888px;}
.y29{bottom:692.220000px;}
.yb0{bottom:703.263000px;}
.y8c{bottom:704.010000px;}
.y28{bottom:711.780000px;}
.y50{bottom:721.609500px;}
.y8b{bottom:722.293500px;}
.yd8{bottom:723.040500px;}
.y27{bottom:731.338500px;}
.y8a{bottom:740.577000px;}
.ycf{bottom:741.324000px;}
.y26{bottom:750.897000px;}
.y6{bottom:755.330731px;}
.yaf{bottom:758.860500px;}
.y89{bottom:759.607500px;}
.y25{bottom:770.457000px;}
.y5{bottom:772.537079px;}
.yae{bottom:777.144000px;}
.y88{bottom:777.891000px;}
.y4{bottom:789.755569px;}
.y4b{bottom:790.015500px;}
.y87{bottom:796.174500px;}
.yd7{bottom:796.921500px;}
.y3{bottom:808.941193px;}
.y4a{bottom:809.575500px;}
.yad{bottom:814.458000px;}
.y86{bottom:815.205000px;}
.y49{bottom:829.134000px;}
.y2{bottom:833.044651px;}
.y85{bottom:833.488500px;}
.y48{bottom:848.692500px;}
.y24{bottom:851.400000px;}
.yac{bottom:851.772000px;}
.y84{bottom:852.519000px;}
.y47{bottom:868.252500px;}
.yab{bottom:870.055500px;}
.y83{bottom:870.802500px;}
.y66{bottom:878.082000px;}
.y46{bottom:887.811000px;}
.y82{bottom:889.086000px;}
.y23{bottom:894.271500px;}
.y52{bottom:897.640500px;}
.y65{bottom:897.807000px;}
.y68{bottom:898.179000px;}
.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;}
.h11{height:40.886613px;}
.hf{height:45.997632px;}
.h10{height:46.553407px;}
.h12{height:48.552885px;}
.he{height:48.669336px;}
.h13{height:49.236885px;}
.h3{height:50.387763px;}
.hb{height:51.879433px;}
.hd{height:53.663904px;}
.hc{height:55.017547px;}
.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;}
.xa{left:137.638500px;}
.x9{left:191.428500px;}
.xc{left:307.974000px;}
.x4{left:354.533332px;}
.x8{left:482.607000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.420827pt;}
.ls6{letter-spacing:0.637608pt;}
.ls8{letter-spacing:0.754312pt;}
.ls7{letter-spacing:0.757160pt;}
.ls3{letter-spacing:0.836864pt;}
.ls1{letter-spacing:0.876712pt;}
.ls4{letter-spacing:0.916560pt;}
.ls2{letter-spacing:1.036112pt;}
.ws3{word-spacing:-14.176128pt;}
.ws2{word-spacing:-13.501406pt;}
.ws0{word-spacing:-13.442781pt;}
.ws4{word-spacing:-12.316469pt;}
.ws5{word-spacing:-11.559309pt;}
.ws1{word-spacing:0.000000pt;}
._e{margin-left:-14.202734pt;}
._16{margin-left:-13.174228pt;}
._20{margin-left:-11.628383pt;}
._1e{margin-left:-10.153950pt;}
._11{margin-left:-8.312849pt;}
._1d{margin-left:-7.393900pt;}
._12{margin-left:-6.328310pt;}
._1f{margin-left:-5.316374pt;}
._18{margin-left:-3.793783pt;}
._14{margin-left:-2.901129pt;}
._d{margin-left:-1.344292pt;}
._b{width:1.269327pt;}
._5{width:2.629321pt;}
._7{width:3.777760pt;}
._f{width:4.774276pt;}
._0{width:6.087590pt;}
._1{width:7.123776pt;}
._10{width:8.030494pt;}
._a{width:9.399067pt;}
._1a{width:11.158187pt;}
._9{width:12.149276pt;}
._4{width:14.083489pt;}
._1b{width:15.733043pt;}
._1c{width:16.737280pt;}
._6{width:18.767912pt;}
._17{width:21.508668pt;}
._13{width:22.486272pt;}
._3{width:25.930545pt;}
._8{width:30.373190pt;}
._c{width:41.404250pt;}
._19{width:85.106772pt;}
._15{width:95.204716pt;}
._2{width:751.778557pt;}
.fse{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;}
.fsd{font-size:42.507200pt;}
.fs1{font-size:43.174400pt;}
.fsb{font-size:47.820800pt;}
.fs4{font-size:48.355328pt;}
.fsf{font-size:50.477333pt;}
.fs9{font-size:55.790933pt;}
.fs7{font-size:58.447467pt;}
.fs0{font-size:60.444160pt;}
.fsa{font-size:61.104000pt;}
.fs8{font-size:69.074133pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.273200pt;}
.y22{bottom:46.034704pt;}
.y21{bottom:58.274646pt;}
.y20{bottom:70.514589pt;}
.y1f{bottom:82.754531pt;}
.y1e{bottom:93.213530pt;}
.y1d{bottom:113.030579pt;}
.y81{bottom:119.810667pt;}
.y43{bottom:128.504000pt;}
.y64{bottom:128.652000pt;}
.yce{bottom:131.586667pt;}
.yaa{bottom:132.914667pt;}
.y80{bottom:136.062667pt;}
.y42{bottom:145.889333pt;}
.y63{bottom:146.038667pt;}
.ycd{bottom:147.838667pt;}
.ya9{bottom:149.166667pt;}
.y7f{bottom:152.314667pt;}
.y41{bottom:163.276000pt;}
.y62{bottom:163.424000pt;}
.ycc{bottom:164.090667pt;}
.y1c{bottom:164.483670pt;}
.yd6{bottom:165.418667pt;}
.ya8{bottom:166.082667pt;}
.y7e{bottom:168.824000pt;}
.y1b{bottom:173.658230pt;}
.ycb{bottom:180.342667pt;}
.y40{bottom:180.661333pt;}
.y61{bottom:180.809333pt;}
.y1a{bottom:182.077238pt;}
.ya7{bottom:182.334667pt;}
.y7d{bottom:185.076000pt;}
.y19{bottom:189.719107pt;}
.yca{bottom:197.258667pt;}
.y18{bottom:197.371770pt;}
.y3f{bottom:198.046667pt;}
.y60{bottom:198.196000pt;}
.ya6{bottom:198.586667pt;}
.y7c{bottom:201.328000pt;}
.y17{bottom:205.024432pt;}
.y54{bottom:206.784000pt;}
.y16{bottom:212.666301pt;}
.yc9{bottom:213.510667pt;}
.ya5{bottom:214.838667pt;}
.y3e{bottom:215.433333pt;}
.y5f{bottom:215.581333pt;}
.y7b{bottom:217.580000pt;}
.y15{bottom:220.318963pt;}
.y14{bottom:227.971626pt;}
.yc8{bottom:229.762667pt;}
.yd5{bottom:231.090667pt;}
.ya4{bottom:231.754667pt;}
.y3d{bottom:232.818667pt;}
.y5e{bottom:232.966667pt;}
.y7a{bottom:234.088000pt;}
.y13{bottom:235.613494pt;}
.y53{bottom:242.034667pt;}
.y12{bottom:243.266157pt;}
.yc7{bottom:246.678667pt;}
.ya3{bottom:248.006667pt;}
.y3c{bottom:250.204000pt;}
.y51{bottom:250.205333pt;}
.y79{bottom:250.340000pt;}
.y5d{bottom:250.353333pt;}
.y11{bottom:250.918819pt;}
.yc6{bottom:262.930667pt;}
.ya2{bottom:264.258667pt;}
.y78{bottom:266.592000pt;}
.y10{bottom:266.655888pt;}
.y3b{bottom:267.590667pt;}
.y5c{bottom:267.738667pt;}
.yc5{bottom:279.182667pt;}
.ya1{bottom:280.510667pt;}
.y77{bottom:283.101333pt;}
.y3a{bottom:284.976000pt;}
.y5b{bottom:285.124000pt;}
.yc4{bottom:295.434667pt;}
.yd4{bottom:296.762667pt;}
.ya0{bottom:297.426667pt;}
.y76{bottom:299.353333pt;}
.y39{bottom:302.362667pt;}
.y5a{bottom:302.510667pt;}
.yc3{bottom:312.350667pt;}
.yd3{bottom:313.014667pt;}
.y9f{bottom:313.678667pt;}
.y75{bottom:315.605333pt;}
.y38{bottom:319.748000pt;}
.yc2{bottom:328.602667pt;}
.y59{bottom:328.633333pt;}
.y9e{bottom:329.930667pt;}
.y74{bottom:332.113333pt;}
.y37{bottom:337.133333pt;}
.yc1{bottom:344.854667pt;}
.y9d{bottom:346.182667pt;}
.y73{bottom:348.365333pt;}
.y36{bottom:354.520000pt;}
.yc0{bottom:361.770667pt;}
.yd2{bottom:362.434667pt;}
.y9c{bottom:363.098667pt;}
.y72{bottom:364.617333pt;}
.y35{bottom:371.905333pt;}
.ybf{bottom:378.022667pt;}
.y9b{bottom:379.350667pt;}
.y71{bottom:380.869333pt;}
.y34{bottom:389.290667pt;}
.ybe{bottom:394.274667pt;}
.y9a{bottom:395.602667pt;}
.yf{bottom:397.377178pt;}
.y70{bottom:397.378667pt;}
.y67{bottom:398.029333pt;}
.y33{bottom:406.677333pt;}
.ybd{bottom:410.526667pt;}
.yd1{bottom:411.854667pt;}
.y99{bottom:412.518667pt;}
.y6f{bottom:413.630667pt;}
.y32{bottom:424.062667pt;}
.ybc{bottom:427.442667pt;}
.y98{bottom:428.770667pt;}
.y6e{bottom:429.882667pt;}
.y4f{bottom:441.449333pt;}
.ybb{bottom:443.694667pt;}
.y97{bottom:445.022667pt;}
.y6d{bottom:446.134667pt;}
.y31{bottom:450.664000pt;}
.y4e{bottom:458.834667pt;}
.yba{bottom:459.946667pt;}
.y96{bottom:461.274667pt;}
.y6c{bottom:462.644000pt;}
.y58{bottom:471.494667pt;}
.yb9{bottom:476.198667pt;}
.y4d{bottom:476.220000pt;}
.yd0{bottom:477.526667pt;}
.y95{bottom:478.190667pt;}
.y6b{bottom:478.896000pt;}
.y57{bottom:484.345333pt;}
.yb8{bottom:493.114667pt;}
.y30{bottom:493.606667pt;}
.y94{bottom:494.442667pt;}
.y6a{bottom:495.148000pt;}
.y56{bottom:497.194667pt;}
.ye{bottom:506.187459pt;}
.yb7{bottom:510.030667pt;}
.y55{bottom:510.045333pt;}
.y93{bottom:510.694667pt;}
.y2f{bottom:510.992000pt;}
.y69{bottom:520.208000pt;}
.yb6{bottom:526.282667pt;}
.y92{bottom:526.946667pt;}
.y2e{bottom:528.377333pt;}
.yd{bottom:529.782269pt;}
.yc{bottom:542.022211pt;}
.yb5{bottom:542.534667pt;}
.y91{bottom:543.862667pt;}
.y2d{bottom:545.764000pt;}
.yb4{bottom:559.450667pt;}
.y90{bottom:560.114667pt;}
.y2c{bottom:563.149333pt;}
.yb{bottom:565.843686pt;}
.yb3{bottom:575.702667pt;}
.y8f{bottom:576.366667pt;}
.ya{bottom:578.083629pt;}
.y2b{bottom:580.536000pt;}
.y9{bottom:590.323571pt;}
.yb2{bottom:591.954667pt;}
.y8e{bottom:592.618667pt;}
.yd9{bottom:593.282667pt;}
.y2a{bottom:597.921333pt;}
.y8{bottom:602.563514pt;}
.y4c{bottom:606.658667pt;}
.yb1{bottom:608.870667pt;}
.y8d{bottom:609.534667pt;}
.y7{bottom:614.803456pt;}
.y29{bottom:615.306667pt;}
.yb0{bottom:625.122667pt;}
.y8c{bottom:625.786667pt;}
.y28{bottom:632.693333pt;}
.y50{bottom:641.430667pt;}
.y8b{bottom:642.038667pt;}
.yd8{bottom:642.702667pt;}
.y27{bottom:650.078667pt;}
.y8a{bottom:658.290667pt;}
.ycf{bottom:658.954667pt;}
.y26{bottom:667.464000pt;}
.y6{bottom:671.405094pt;}
.yaf{bottom:674.542667pt;}
.y89{bottom:675.206667pt;}
.y25{bottom:684.850667pt;}
.y5{bottom:686.699626pt;}
.yae{bottom:690.794667pt;}
.y88{bottom:691.458667pt;}
.y4{bottom:702.004950pt;}
.y4b{bottom:702.236000pt;}
.y87{bottom:707.710667pt;}
.yd7{bottom:708.374667pt;}
.y3{bottom:719.058838pt;}
.y4a{bottom:719.622667pt;}
.yad{bottom:723.962667pt;}
.y86{bottom:724.626667pt;}
.y49{bottom:737.008000pt;}
.y2{bottom:740.484134pt;}
.y85{bottom:740.878667pt;}
.y48{bottom:754.393333pt;}
.y24{bottom:756.800000pt;}
.yac{bottom:757.130667pt;}
.y84{bottom:757.794667pt;}
.y47{bottom:771.780000pt;}
.yab{bottom:773.382667pt;}
.y83{bottom:774.046667pt;}
.y66{bottom:780.517333pt;}
.y46{bottom:789.165333pt;}
.y82{bottom:790.298667pt;}
.y23{bottom:794.908000pt;}
.y52{bottom:797.902667pt;}
.y65{bottom:798.050667pt;}
.y68{bottom:798.381333pt;}
.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;}
.h11{height:36.343656pt;}
.hf{height:40.886784pt;}
.h10{height:41.380806pt;}
.h12{height:43.158120pt;}
.he{height:43.261632pt;}
.h13{height:43.766120pt;}
.h3{height:44.789123pt;}
.hb{height:46.115051pt;}
.hd{height:47.701248pt;}
.hc{height:48.904486pt;}
.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;}
.xa{left:122.345333pt;}
.x9{left:170.158667pt;}
.xc{left:273.754667pt;}
.x4{left:315.140739pt;}
.x8{left:428.984000pt;}
}




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