
    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_2b90d82af65ab6b1f7bbac76.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.929199;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_d28c645e8ecb65bb585cf790.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.128906;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_ec03ac2739f5bee8e9175446.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.166504;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_a5576438bae5b33a96e65e50.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.722656;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_a6a66e03841d0469d15b12c5.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.722656;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_c27222ae9910267f2d61cd66.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.908203;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_61df72fda6bf9f922af9621c.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.192383;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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:13.562689px;}
.ls7{letter-spacing:16.782735px;}
.ls4{letter-spacing:18.687396px;}
.ls8{letter-spacing:19.900444px;}
.ls5{letter-spacing:23.736890px;}
.ls1{letter-spacing:26.517626px;}
.ls3{letter-spacing:27.605158px;}
.ls2{letter-spacing:29.307627px;}
.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:-71.999814px;}
.wsa{word-spacing:-23.945826px;}
.ws2{word-spacing:-19.607837px;}
.ws9{word-spacing:-18.045991px;}
.wsd{word-spacing:-17.351955px;}
.wsc{word-spacing:-15.963884px;}
.wsb{word-spacing:-14.402038px;}
.ws8{word-spacing:0.000000px;}
.wse{word-spacing:0.599037px;}
.ws7{word-spacing:45.627033px;}
.ws3{word-spacing:47.700633px;}
.ws4{word-spacing:48.391833px;}
.ws5{word-spacing:49.774233px;}
.ws6{word-spacing:51.847833px;}
.ws1{word-spacing:56.686233px;}
._c{margin-left:-867.440104px;}
._a{margin-left:-828.883563px;}
._5{margin-left:-3.878647px;}
._6{margin-left:-2.656092px;}
._4{margin-left:-1.295997px;}
._0{width:1.079997px;}
._7{width:2.237749px;}
._1{width:6.965982px;}
._2{width:7.991979px;}
._3{width:9.287976px;}
._9{width:13.757804px;}
._8{width:19.416867px;}
._b{width:231.621765px;}
.fc5{color:rgb(140,123,112);}
.fc4{color:rgb(204,180,0);}
.fc3{color:rgb(123,152,153);}
.fc2{color:rgb(209,99,73);}
.fc7{color:rgb(140,173,174);}
.fc1{color:rgb(100,107,134);}
.fc6{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:23.760000px;}
.fsb{font-size:39.600783px;}
.fs2{font-size:41.759538px;}
.fs10{font-size:45.360414px;}
.fse{font-size:46.079999px;}
.fs11{font-size:50.400460px;}
.fs1{font-size:53.999861px;}
.fsc{font-size:56.879676px;}
.fsa{font-size:59.759492px;}
.fs8{font-size:64.079953px;}
.fsf{font-size:66.240183px;}
.fs5{font-size:69.119999px;}
.fs0{font-size:71.999814px;}
.fs9{font-size:74.879630px;}
.fs6{font-size:81.360321px;}
.fsd{font-size:89.999768px;}
.fs7{font-size:99.360274px;}
.fs3{font-size:107.999721px;}
.y0{bottom:0.000000px;}
.y2{bottom:49.498162px;}
.y85{bottom:232.380035px;}
.yac{bottom:236.347184px;}
.y42{bottom:242.280302px;}
.y2d{bottom:244.985100px;}
.y84{bottom:250.194416px;}
.yab{bottom:254.341437px;}
.y13{bottom:260.278267px;}
.y2c{bottom:262.984977px;}
.y41{bottom:264.051789px;}
.y50{bottom:265.131091px;}
.y83{bottom:268.013830px;}
.y6d{bottom:276.491929px;}
.yaa{bottom:276.851380px;}
.y91{bottom:278.088485px;}
.y40{bottom:281.880066px;}
.y9d{bottom:284.578308px;}
.y2b{bottom:285.489295px;}
.y82{bottom:285.838646px;}
.y12{bottom:289.435124px;}
.y6c{bottom:292.686482px;}
.y4f{bottom:294.292974px;}
.ya9{bottom:294.846896px;}
.y2a{bottom:303.479877px;}
.y3f{bottom:303.657792px;}
.y90{bottom:304.023268px;}
.y81{bottom:307.619933px;}
.y6b{bottom:308.872414px;}
.ya8{bottom:312.842413px;}
.y9c{bottom:313.740433px;}
.y4e{bottom:318.594553px;}
.y11{bottom:318.597233px;}
.y3e{bottom:321.480080px;}
.y29{bottom:324.906950px;}
.y80{bottom:325.438660px;}
.y8f{bottom:325.627870px;}
.y6a{bottom:328.687493px;}
.ya7{bottom:330.843082px;}
.y9b{bottom:338.029586px;}
.y28{bottom:338.561660px;}
.y4d{bottom:342.896133px;}
.y3d{bottom:343.259377px;}
.y8e{bottom:347.210683px;}
.y7f{bottom:347.215868px;}
.y10{bottom:347.759342px;}
.y69{bottom:348.488483px;}
.ya6{bottom:353.346664px;}
.y27{bottom:355.687590px;}
.y9a{bottom:362.337409px;}
.y7e{bottom:365.038673px;}
.y3c{bottom:365.040316px;}
.y4c{bottom:367.203896px;}
.y68{bottom:368.288552px;}
.y26{bottom:369.342688px;}
.ya5{bottom:371.337982px;}
.y8d{bottom:373.138092px;}
.yf{bottom:376.916199px;}
.y3b{bottom:382.859390px;}
.y67{bottom:384.471952px;}
.y99{bottom:386.638988px;}
.y25{bottom:386.647242px;}
.y7d{bottom:386.816837px;}
.y4b{bottom:391.493109px;}
.ya4{bottom:393.850859px;}
.y8c{bottom:394.742640px;}
.y66{bottom:404.291273px;}
.y3a{bottom:404.636252px;}
.y7c{bottom:404.638687px;}
.y24{bottom:404.648870px;}
.ye{bottom:406.078308px;}
.y98{bottom:410.935124px;}
.ya3{bottom:411.842623px;}
.y4a{bottom:415.794688px;}
.y8b{bottom:416.347188px;}
.y23{bottom:419.047135px;}
.y39{bottom:422.459335px;}
.y65{bottom:424.072988px;}
.y7b{bottom:426.417807px;}
.y22{bottom:433.449582px;}
.ya2{bottom:434.343618px;}
.yd{bottom:435.235165px;}
.y8a{bottom:437.935527px;}
.y49{bottom:440.102451px;}
.y38{bottom:444.238632px;}
.y21{bottom:452.350571px;}
.yc{bottom:464.397274px;}
.y37{bottom:466.917967px;}
.y20{bottom:470.343330px;}
.y7a{bottom:508.144696px;}
.yb{bottom:522.720085px;}
.y36{bottom:524.704082px;}
.y79{bottom:526.144799px;}
.y1f{bottom:527.041543px;}
.y35{bottom:544.499628px;}
.y78{bottom:545.948487px;}
.y5a{bottom:740.166871px;}
.y64{bottom:745.917520px;}
.y1e{bottom:750.594082px;}
.y59{bottom:767.158975px;}
.y63{bottom:769.683065px;}
.y34{bottom:770.040298px;}
.y97{bottom:770.759377px;}
.y1d{bottom:774.896905px;}
.y7{bottom:784.623228px;}
.y77{bottom:787.137647px;}
.y62{bottom:789.124417px;}
.y58{bottom:789.663079px;}
.y33{bottom:794.337256px;}
.y96{bottom:794.521465px;}
.y89{bottom:799.197264px;}
.y1c{bottom:799.199727px;}
.y61{bottom:808.557025px;}
.y76{bottom:809.095981px;}
.y6{bottom:809.824488px;}
.y57{bottom:812.158061px;}
.y95{bottom:818.280052px;}
.y5{bottom:822.428322px;}
.y1b{bottom:823.497253px;}
.y32{bottom:823.502549px;}
.y60{bottom:827.998378px;}
.y88{bottom:828.359125px;}
.y75{bottom:828.900776px;}
.yae{bottom:833.215731px;}
.y56{bottom:834.662164px;}
.y94{bottom:842.937261px;}
.y5f{bottom:847.439730px;}
.y31{bottom:847.795430px;}
.ya1{bottom:847.797243px;}
.y48{bottom:847.981384px;}
.y74{bottom:852.292724px;}
.y87{bottom:852.657251px;}
.y1a{bottom:852.661947px;}
.y55{bottom:857.166295px;}
.y5e{bottom:866.881082px;}
.y4{bottom:868.500475px;}
.y47{bottom:871.737914px;}
.y30{bottom:872.098252px;}
.y73{bottom:874.260754px;}
.ya0{bottom:876.954858px;}
.y19{bottom:876.957241px;}
.y54{bottom:879.661249px;}
.y86{bottom:881.821375px;}
.y5d{bottom:886.322434px;}
.y3{bottom:887.939628px;}
.yad{bottom:891.534557px;}
.y46{bottom:891.538673px;}
.y72{bottom:894.059349px;}
.y2f{bottom:896.397248px;}
.y9f{bottom:901.257680px;}
.y53{bottom:902.165353px;}
.y5c{bottom:905.763786px;}
.y18{bottom:906.114256px;}
.y45{bottom:915.297001px;}
.y71{bottom:917.455404px;}
.y52{bottom:924.660335px;}
.y2e{bottom:925.557246px;}
.y93{bottom:925.560472px;}
.y5b{bottom:925.739265px;}
.y17{bottom:930.417078px;}
.y44{bottom:935.100082px;}
.y70{bottom:939.055871px;}
.y92{bottom:949.857262px;}
.ya{bottom:953.461917px;}
.y16{bottom:954.719900px;}
.y6f{bottom:960.656337px;}
.y51{bottom:973.798902px;}
.y15{bottom:979.017260px;}
.y6e{bottom:982.620071px;}
.y9{bottom:985.867110px;}
.y8{bottom:1018.259106px;}
.y43{bottom:1037.340070px;}
.y9e{bottom:1041.121594px;}
.y14{bottom:1041.660330px;}
.y1{bottom:1200.416359px;}
.h6{height:22.565039px;}
.h4{height:38.089266px;}
.h3{height:49.253779px;}
.h2{height:52.417833px;}
.h1a{height:54.019028px;}
.h19{height:54.111861px;}
.h1b{height:54.113754px;}
.h16{height:56.737284px;}
.h2f{height:56.743947px;}
.h32{height:56.750432px;}
.h17{height:56.754010px;}
.h18{height:56.760465px;}
.h31{height:56.768723px;}
.h35{height:56.773879px;}
.h36{height:56.775467px;}
.h37{height:56.776965px;}
.h3b{height:56.786433px;}
.h39{height:56.796907px;}
.h30{height:56.798980px;}
.h33{height:56.807018px;}
.h2e{height:56.820817px;}
.h2c{height:60.418292px;}
.h27{height:62.886172px;}
.h48{height:62.890989px;}
.h3e{height:62.891381px;}
.h38{height:62.892045px;}
.h29{height:62.893454px;}
.h24{height:62.894092px;}
.h3c{height:62.899026px;}
.h3a{height:62.899620px;}
.h2a{height:62.906475px;}
.h3f{height:62.907695px;}
.h25{height:62.908767px;}
.h26{height:62.910131px;}
.h34{height:62.911231px;}
.h49{height:62.913126px;}
.h47{height:62.915037px;}
.h3d{height:62.915339px;}
.h2b{height:62.915861px;}
.h28{height:62.917412px;}
.h23{height:62.923457px;}
.h2d{height:68.378730px;}
.h42{height:68.399794px;}
.h43{height:68.421679px;}
.h44{height:68.429077px;}
.h1d{height:71.096270px;}
.h15{height:71.113711px;}
.h50{height:71.116089px;}
.h14{height:71.124742px;}
.h1c{height:71.133449px;}
.h4d{height:73.051514px;}
.h51{height:73.056573px;}
.h4e{height:73.066529px;}
.h4f{height:73.068308px;}
.h7{height:77.245787px;}
.h9{height:77.251317px;}
.ha{height:77.252221px;}
.hb{height:77.256847px;}
.hc{height:77.257751px;}
.h12{height:77.258936px;}
.h4c{height:77.261215px;}
.he{height:77.263281px;}
.h11{height:77.268469px;}
.h22{height:77.268549px;}
.h4b{height:77.269434px;}
.h8{height:77.271424px;}
.h46{height:77.274841px;}
.h41{height:77.278320px;}
.h1e{height:77.281371px;}
.hd{height:77.283388px;}
.h1f{height:77.283771px;}
.h40{height:77.287250px;}
.h13{height:77.289650px;}
.h4a{height:77.290246px;}
.h10{height:77.290319px;}
.h20{height:77.291929px;}
.h45{height:77.292598px;}
.h21{height:85.473412px;}
.hf{height:94.363151px;}
.h5{height:102.568095px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:199.622809px;}
.xe{left:215.825336px;}
.x29{left:221.758472px;}
.x10{left:232.020315px;}
.x1c{left:234.720209px;}
.x8{left:240.125361px;}
.x1d{left:248.214913px;}
.x11{left:250.922594px;}
.x26{left:252.536668px;}
.x24{left:256.684763px;}
.x12{left:264.415517px;}
.x28{left:269.820407px;}
.xa{left:293.756094px;}
.x1f{left:298.615099px;}
.x1e{left:302.760441px;}
.x14{left:309.780702px;}
.x2b{left:313.016772px;}
.x6{left:331.735872px;}
.xd{left:336.602330px;}
.x2a{left:338.579353px;}
.x9{left:347.755944px;}
.x15{left:355.500403px;}
.xf{left:360.180992px;}
.x2c{left:364.145041px;}
.x20{left:367.194062px;}
.x21{left:370.805955px;}
.x13{left:373.316655px;}
.x5{left:374.756424px;}
.x3{left:386.278308px;}
.x4{left:391.676977px;}
.x22{left:396.895317px;}
.x16{left:414.179019px;}
.x23{left:415.622403px;}
.x7{left:443.331900px;}
.xb{left:445.319996px;}
.x19{left:465.299208px;}
.x1a{left:481.498791px;}
.x1b{left:507.777988px;}
.x18{left:513.001096px;}
.x17{left:523.621481px;}
.x1{left:752.034229px;}
.x25{left:822.055369px;}
.x27{left:823.324319px;}
.x2{left:832.135299px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:12.055724pt;}
.ls7{letter-spacing:14.917987pt;}
.ls4{letter-spacing:16.611018pt;}
.ls8{letter-spacing:17.689284pt;}
.ls5{letter-spacing:21.099458pt;}
.ls1{letter-spacing:23.571223pt;}
.ls3{letter-spacing:24.537918pt;}
.ls2{letter-spacing:26.051224pt;}
.ws0{word-spacing:-63.999835pt;}
.wsa{word-spacing:-21.285179pt;}
.ws2{word-spacing:-17.429189pt;}
.ws9{word-spacing:-16.040881pt;}
.wsd{word-spacing:-15.423960pt;}
.wsc{word-spacing:-14.190119pt;}
.wsb{word-spacing:-12.801811pt;}
.ws8{word-spacing:0.000000pt;}
.wse{word-spacing:0.532477pt;}
.ws7{word-spacing:40.557363pt;}
.ws3{word-spacing:42.400563pt;}
.ws4{word-spacing:43.014963pt;}
.ws5{word-spacing:44.243763pt;}
.ws6{word-spacing:46.086963pt;}
.ws1{word-spacing:50.387763pt;}
._c{margin-left:-771.057870pt;}
._a{margin-left:-736.785389pt;}
._5{margin-left:-3.447686pt;}
._6{margin-left:-2.360971pt;}
._4{margin-left:-1.151997pt;}
._0{width:0.959998pt;}
._7{width:1.989111pt;}
._1{width:6.191984pt;}
._2{width:7.103982pt;}
._3{width:8.255979pt;}
._9{width:12.229159pt;}
._8{width:17.259437pt;}
._b{width:205.886014pt;}
.fs4{font-size:21.120000pt;}
.fsb{font-size:35.200696pt;}
.fs2{font-size:37.119590pt;}
.fs10{font-size:40.320368pt;}
.fse{font-size:40.959999pt;}
.fs11{font-size:44.800409pt;}
.fs1{font-size:47.999876pt;}
.fsc{font-size:50.559712pt;}
.fsa{font-size:53.119548pt;}
.fs8{font-size:56.959958pt;}
.fsf{font-size:58.880163pt;}
.fs5{font-size:61.439999pt;}
.fs0{font-size:63.999835pt;}
.fs9{font-size:66.559671pt;}
.fs6{font-size:72.320285pt;}
.fsd{font-size:79.999793pt;}
.fs7{font-size:88.320244pt;}
.fs3{font-size:95.999752pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:43.998367pt;}
.y85{bottom:206.560031pt;}
.yac{bottom:210.086386pt;}
.y42{bottom:215.360269pt;}
.y2d{bottom:217.764533pt;}
.y84{bottom:222.395036pt;}
.yab{bottom:226.081277pt;}
.y13{bottom:231.358460pt;}
.y2c{bottom:233.764424pt;}
.y41{bottom:234.712701pt;}
.y50{bottom:235.672081pt;}
.y83{bottom:238.234516pt;}
.y6d{bottom:245.770603pt;}
.yaa{bottom:246.090115pt;}
.y91{bottom:247.189764pt;}
.y40{bottom:250.560059pt;}
.y9d{bottom:252.958496pt;}
.y2b{bottom:253.768262pt;}
.y82{bottom:254.078796pt;}
.y12{bottom:257.275665pt;}
.y6c{bottom:260.165762pt;}
.y4f{bottom:261.593755pt;}
.ya9{bottom:262.086130pt;}
.y2a{bottom:269.759891pt;}
.y3f{bottom:269.918038pt;}
.y90{bottom:270.242905pt;}
.y81{bottom:273.439940pt;}
.y6b{bottom:274.553257pt;}
.ya8{bottom:278.082145pt;}
.y9c{bottom:278.880385pt;}
.y4e{bottom:283.195159pt;}
.y11{bottom:283.197540pt;}
.y3e{bottom:285.760071pt;}
.y29{bottom:288.806178pt;}
.y80{bottom:289.278809pt;}
.y8f{bottom:289.446995pt;}
.y6a{bottom:292.166661pt;}
.ya7{bottom:294.082740pt;}
.y9b{bottom:300.470743pt;}
.y28{bottom:300.943698pt;}
.y4d{bottom:304.796563pt;}
.y3d{bottom:305.119446pt;}
.y8e{bottom:308.631719pt;}
.y7f{bottom:308.636327pt;}
.y10{bottom:309.119415pt;}
.y69{bottom:309.767541pt;}
.ya6{bottom:314.085924pt;}
.y27{bottom:316.166746pt;}
.y9a{bottom:322.077697pt;}
.y7e{bottom:324.478821pt;}
.y3c{bottom:324.480281pt;}
.y4c{bottom:326.403463pt;}
.y68{bottom:327.367602pt;}
.y26{bottom:328.304612pt;}
.ya5{bottom:330.078207pt;}
.y8d{bottom:331.678304pt;}
.yf{bottom:335.036621pt;}
.y3b{bottom:340.319458pt;}
.y67{bottom:341.752846pt;}
.y99{bottom:343.679101pt;}
.y25{bottom:343.686438pt;}
.y7d{bottom:343.837189pt;}
.y4b{bottom:347.993875pt;}
.ya4{bottom:350.089653pt;}
.y8c{bottom:350.882347pt;}
.y66{bottom:359.370021pt;}
.y3a{bottom:359.676668pt;}
.y7c{bottom:359.678833pt;}
.y24{bottom:359.687884pt;}
.ye{bottom:360.958496pt;}
.y98{bottom:365.275665pt;}
.ya3{bottom:366.082331pt;}
.y4a{bottom:369.595279pt;}
.y8b{bottom:370.086390pt;}
.y23{bottom:372.486343pt;}
.y39{bottom:375.519409pt;}
.y65{bottom:376.953767pt;}
.y7b{bottom:379.038050pt;}
.y22{bottom:385.288518pt;}
.ya2{bottom:386.083216pt;}
.yd{bottom:386.875702pt;}
.y8a{bottom:389.276024pt;}
.y49{bottom:391.202179pt;}
.y38{bottom:394.878784pt;}
.y21{bottom:402.089397pt;}
.yc{bottom:412.797577pt;}
.y37{bottom:415.038193pt;}
.y20{bottom:418.082960pt;}
.y7a{bottom:451.684174pt;}
.yb{bottom:464.640076pt;}
.y36{bottom:466.403628pt;}
.y79{bottom:467.684266pt;}
.y1f{bottom:468.481372pt;}
.y35{bottom:483.999670pt;}
.y78{bottom:485.287544pt;}
.y5a{bottom:657.926108pt;}
.y64{bottom:663.037796pt;}
.y1e{bottom:667.194740pt;}
.y59{bottom:681.919089pt;}
.y63{bottom:684.162724pt;}
.y34{bottom:684.480265pt;}
.y97{bottom:685.119446pt;}
.y1d{bottom:688.797248pt;}
.y7{bottom:697.442869pt;}
.y77{bottom:699.677909pt;}
.y62{bottom:701.443926pt;}
.y58{bottom:701.922737pt;}
.y33{bottom:706.077560pt;}
.y96{bottom:706.241303pt;}
.y89{bottom:710.397568pt;}
.y1c{bottom:710.399757pt;}
.y61{bottom:718.717356pt;}
.y76{bottom:719.196428pt;}
.y6{bottom:719.843989pt;}
.y57{bottom:721.918276pt;}
.y95{bottom:727.360046pt;}
.y5{bottom:731.047398pt;}
.y1b{bottom:731.997559pt;}
.y32{bottom:732.002266pt;}
.y60{bottom:735.998558pt;}
.y88{bottom:736.319222pt;}
.y75{bottom:736.800690pt;}
.yae{bottom:740.636205pt;}
.y56{bottom:741.921924pt;}
.y94{bottom:749.277565pt;}
.y5f{bottom:753.279760pt;}
.y31{bottom:753.595937pt;}
.ya1{bottom:753.597550pt;}
.y48{bottom:753.761230pt;}
.y74{bottom:757.593532pt;}
.y87{bottom:757.917557pt;}
.y1a{bottom:757.921730pt;}
.y55{bottom:761.925596pt;}
.y5e{bottom:770.560962pt;}
.y4{bottom:772.000422pt;}
.y47{bottom:774.878146pt;}
.y30{bottom:775.198446pt;}
.y73{bottom:777.120670pt;}
.ya0{bottom:779.515429pt;}
.y19{bottom:779.517548pt;}
.y54{bottom:781.921111pt;}
.y86{bottom:783.841222pt;}
.y5d{bottom:787.842164pt;}
.y3{bottom:789.279669pt;}
.yad{bottom:792.475162pt;}
.y46{bottom:792.478821pt;}
.y72{bottom:794.719421pt;}
.y2f{bottom:796.797554pt;}
.y9f{bottom:801.117938pt;}
.y53{bottom:801.924758pt;}
.y5c{bottom:805.123366pt;}
.y18{bottom:805.434894pt;}
.y45{bottom:813.597334pt;}
.y71{bottom:815.515915pt;}
.y52{bottom:821.920298pt;}
.y2e{bottom:822.717552pt;}
.y93{bottom:822.720420pt;}
.y5b{bottom:822.879347pt;}
.y17{bottom:827.037403pt;}
.y44{bottom:831.200073pt;}
.y70{bottom:834.716330pt;}
.y92{bottom:844.317566pt;}
.ya{bottom:847.521704pt;}
.y16{bottom:848.639911pt;}
.y6f{bottom:853.916744pt;}
.y51{bottom:865.599024pt;}
.y15{bottom:870.237564pt;}
.y6e{bottom:873.440064pt;}
.y9{bottom:876.326320pt;}
.y8{bottom:905.119205pt;}
.y43{bottom:922.080063pt;}
.y9e{bottom:925.441417pt;}
.y14{bottom:925.920293pt;}
.y1{bottom:1067.036764pt;}
.h6{height:20.057813pt;}
.h4{height:33.857126pt;}
.h3{height:43.781137pt;}
.h2{height:46.593630pt;}
.h1a{height:48.016914pt;}
.h19{height:48.099432pt;}
.h1b{height:48.101115pt;}
.h16{height:50.433141pt;}
.h2f{height:50.439064pt;}
.h32{height:50.444828pt;}
.h17{height:50.448009pt;}
.h18{height:50.453747pt;}
.h31{height:50.461087pt;}
.h35{height:50.465670pt;}
.h36{height:50.467081pt;}
.h37{height:50.468413pt;}
.h3b{height:50.476829pt;}
.h39{height:50.486140pt;}
.h30{height:50.487983pt;}
.h33{height:50.495127pt;}
.h2e{height:50.507393pt;}
.h2c{height:53.705148pt;}
.h27{height:55.898820pt;}
.h48{height:55.903101pt;}
.h3e{height:55.903450pt;}
.h38{height:55.904040pt;}
.h29{height:55.905292pt;}
.h24{height:55.905859pt;}
.h3c{height:55.910245pt;}
.h3a{height:55.910773pt;}
.h2a{height:55.916867pt;}
.h3f{height:55.917951pt;}
.h25{height:55.918904pt;}
.h26{height:55.920116pt;}
.h34{height:55.921094pt;}
.h49{height:55.922779pt;}
.h47{height:55.924477pt;}
.h3d{height:55.924746pt;}
.h2b{height:55.925210pt;}
.h28{height:55.926589pt;}
.h23{height:55.931961pt;}
.h2d{height:60.781093pt;}
.h42{height:60.799817pt;}
.h43{height:60.819270pt;}
.h44{height:60.825846pt;}
.h1d{height:63.196685pt;}
.h15{height:63.212187pt;}
.h50{height:63.214301pt;}
.h14{height:63.221993pt;}
.h1c{height:63.229732pt;}
.h4d{height:64.934679pt;}
.h51{height:64.939176pt;}
.h4e{height:64.948025pt;}
.h4f{height:64.949607pt;}
.h7{height:68.662922pt;}
.h9{height:68.667837pt;}
.ha{height:68.668641pt;}
.hb{height:68.672753pt;}
.hc{height:68.673557pt;}
.h12{height:68.674610pt;}
.h4c{height:68.676635pt;}
.he{height:68.678472pt;}
.h11{height:68.683083pt;}
.h22{height:68.683155pt;}
.h4b{height:68.683941pt;}
.h8{height:68.685710pt;}
.h46{height:68.688748pt;}
.h41{height:68.691840pt;}
.h1e{height:68.694552pt;}
.hd{height:68.696345pt;}
.h1f{height:68.696686pt;}
.h40{height:68.699778pt;}
.h13{height:68.701911pt;}
.h4a{height:68.702440pt;}
.h10{height:68.702506pt;}
.h20{height:68.703937pt;}
.h45{height:68.704532pt;}
.h21{height:75.976366pt;}
.hf{height:83.878357pt;}
.h5{height:91.171640pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:177.442497pt;}
.xe{left:191.844743pt;}
.x29{left:197.118642pt;}
.x10{left:206.240280pt;}
.x1c{left:208.640186pt;}
.x8{left:213.444765pt;}
.x1d{left:220.635479pt;}
.x11{left:223.042306pt;}
.x26{left:224.477038pt;}
.x24{left:228.164234pt;}
.x12{left:235.036015pt;}
.x28{left:239.840362pt;}
.xa{left:261.116528pt;}
.x1f{left:265.435643pt;}
.x1e{left:269.120392pt;}
.x14{left:275.360624pt;}
.x2b{left:278.237131pt;}
.x6{left:294.876330pt;}
.xd{left:299.202071pt;}
.x2a{left:300.959425pt;}
.x9{left:309.116395pt;}
.x15{left:316.000358pt;}
.xf{left:320.160882pt;}
.x2c{left:323.684481pt;}
.x20{left:326.394722pt;}
.x21{left:329.605294pt;}
.x13{left:331.837026pt;}
.x5{left:333.116821pt;}
.x3{left:343.358496pt;}
.x4{left:348.157313pt;}
.x22{left:352.795837pt;}
.x16{left:368.159128pt;}
.x23{left:369.442136pt;}
.x7{left:394.072800pt;}
.xb{left:395.839996pt;}
.x19{left:413.599296pt;}
.x1a{left:427.998925pt;}
.x1b{left:451.358212pt;}
.x18{left:456.000974pt;}
.x17{left:465.441317pt;}
.x1{left:668.474870pt;}
.x25{left:730.715884pt;}
.x27{left:731.843839pt;}
.x2{left:739.675822pt;}
}




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