
    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_1e401995459d7d2e64ac4541.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_345cc4fba7681f83440eb8ca.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_844c847bcc6fcd947291bb42.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_76e6370e9bd79e41e3954087.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_189addadede656ae8fa006a8.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_878a4529472bbc633fba54a1.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_a7cd848c262d6a9da3645111.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;}
.ls8{letter-spacing:0.425055px;}
.ls5{letter-spacing:0.473430px;}
.ls6{letter-spacing:0.717309px;}
.ls7{letter-spacing:0.851805px;}
.ls4{letter-spacing:0.941472px;}
.ls1{letter-spacing:0.986301px;}
.ls3{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;}
}
.ws2{word-spacing:-15.948144px;}
.ws0{word-spacing:-15.123129px;}
.ws3{word-spacing:-13.856028px;}
.ws1{word-spacing:0.000000px;}
._19{margin-left:-14.387223px;}
._16{margin-left:-9.549257px;}
._1b{margin-left:-7.618335px;}
._1a{margin-left:-5.886516px;}
._14{margin-left:-4.814971px;}
._12{margin-left:-3.765888px;}
._10{margin-left:-2.743732px;}
._d{margin-left:-1.512328px;}
._b{width:1.427993px;}
._5{width:2.957986px;}
._7{width:4.249980px;}
._f{width:5.272898px;}
._0{width:6.848539px;}
._1{width:8.014248px;}
._11{width:9.361765px;}
._a{width:10.573950px;}
._17{width:11.611488px;}
._9{width:13.667936px;}
._4{width:15.843925px;}
._6{width:21.113901px;}
._18{width:24.197251px;}
._e{width:25.297056px;}
._3{width:29.171863px;}
._8{width:34.169839px;}
._c{width:46.579781px;}
._15{width:95.736328px;}
._13{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;}
.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;}
.y24{bottom:51.789042px;}
.y23{bottom:65.558977px;}
.y22{bottom:79.328912px;}
.y21{bottom:93.098848px;}
.y20{bottom:104.865221px;}
.y1f{bottom:127.159402px;}
.y53{bottom:144.567000px;}
.y70{bottom:144.733500px;}
.y77{bottom:148.921500px;}
.yc7{bottom:152.229000px;}
.y67{bottom:154.338000px;}
.y45{bottom:164.125500px;}
.y6f{bottom:164.292000px;}
.y9f{bottom:167.812500px;}
.y76{bottom:167.952000px;}
.yc6{bottom:170.512500px;}
.y66{bottom:173.896500px;}
.y44{bottom:183.685500px;}
.y6e{bottom:183.852000px;}
.y1e{bottom:185.044129px;}
.y9e{bottom:186.096000px;}
.y75{bottom:186.235500px;}
.yc5{bottom:188.796000px;}
.y65{bottom:193.455000px;}
.y1d{bottom:195.365509px;}
.y43{bottom:203.244000px;}
.y6d{bottom:203.410500px;}
.y74{bottom:204.519000px;}
.y1c{bottom:204.836893px;}
.y9d{bottom:205.126500px;}
.yc4{bottom:207.474000px;}
.y64{bottom:213.015000px;}
.y1b{bottom:213.433996px;}
.y1a{bottom:222.043241px;}
.y42{bottom:222.802500px;}
.y9c{bottom:223.410000px;}
.yc3{bottom:225.756000px;}
.y19{bottom:230.652486px;}
.y63{bottom:232.573500px;}
.y6c{bottom:232.800000px;}
.y73{bottom:233.170500px;}
.y18{bottom:239.249588px;}
.y41{bottom:242.362500px;}
.y9b{bottom:242.440500px;}
.yc2{bottom:244.039500px;}
.y17{bottom:247.858834px;}
.y62{bottom:252.133500px;}
.y16{bottom:256.468079px;}
.y9a{bottom:260.724000px;}
.y40{bottom:261.921000px;}
.yc1{bottom:262.717500px;}
.y15{bottom:265.065181px;}
.y61{bottom:271.692000px;}
.y68{bottom:272.289000px;}
.y14{bottom:273.674426px;}
.y99{bottom:279.007500px;}
.yc0{bottom:281.001000px;}
.y3f{bottom:281.479500px;}
.y6a{bottom:281.481000px;}
.y13{bottom:282.283672px;}
.y60{bottom:291.250500px;}
.y6b{bottom:291.310500px;}
.y98{bottom:297.291000px;}
.ybf{bottom:299.284500px;}
.y12{bottom:299.987874px;}
.y3e{bottom:301.039500px;}
.y5f{bottom:310.810500px;}
.y97{bottom:316.321500px;}
.ybe{bottom:317.962500px;}
.y3d{bottom:320.598000px;}
.y5e{bottom:330.369000px;}
.y96{bottom:334.605000px;}
.ybd{bottom:336.246000px;}
.y3c{bottom:340.158000px;}
.y95{bottom:352.888500px;}
.ybc{bottom:354.529500px;}
.y5d{bottom:355.795500px;}
.y3b{bottom:359.716500px;}
.y94{bottom:371.172000px;}
.ybb{bottom:373.207500px;}
.y5c{bottom:377.314500px;}
.y3a{bottom:379.275000px;}
.y93{bottom:390.202500px;}
.yba{bottom:391.491000px;}
.y39{bottom:398.835000px;}
.y92{bottom:408.486000px;}
.y11{bottom:409.188074px;}
.yb9{bottom:409.774500px;}
.y38{bottom:418.393500px;}
.y91{bottom:426.769500px;}
.yb8{bottom:428.452500px;}
.y37{bottom:437.952000px;}
.y5b{bottom:437.953500px;}
.y90{bottom:445.800000px;}
.yb7{bottom:446.736000px;}
.y36{bottom:457.512000px;}
.y8f{bottom:464.083500px;}
.yb6{bottom:465.019500px;}
.y54{bottom:467.341500px;}
.y35{bottom:477.070500px;}
.y8e{bottom:482.367000px;}
.yb5{bottom:483.696000px;}
.y34{bottom:496.630500px;}
.y8d{bottom:500.650500px;}
.yb4{bottom:501.979500px;}
.y52{bottom:506.997000px;}
.y33{bottom:516.189000px;}
.y8c{bottom:519.681000px;}
.yb3{bottom:520.657500px;}
.y72{bottom:526.557000px;}
.y51{bottom:528.516000px;}
.y5a{bottom:529.120500px;}
.y10{bottom:531.599641px;}
.y32{bottom:535.747500px;}
.y8b{bottom:537.964500px;}
.yb2{bottom:538.941000px;}
.y59{bottom:543.576000px;}
.y71{bottom:548.076000px;}
.y31{bottom:555.307500px;}
.y8a{bottom:556.248000px;}
.yb1{bottom:557.619000px;}
.y58{bottom:558.033000px;}
.yf{bottom:558.143802px;}
.ye{bottom:571.913737px;}
.y57{bottom:572.490000px;}
.y89{bottom:574.531500px;}
.y30{bottom:574.866000px;}
.yb0{bottom:575.902500px;}
.y56{bottom:586.947000px;}
.y88{bottom:593.562000px;}
.yaf{bottom:594.186000px;}
.y2f{bottom:594.424500px;}
.yd{bottom:598.712897px;}
.y55{bottom:601.404000px;}
.y87{bottom:611.845500px;}
.yc{bottom:612.482832px;}
.yae{bottom:612.864000px;}
.y2e{bottom:613.984500px;}
.yb{bottom:626.252767px;}
.y86{bottom:630.129000px;}
.yad{bottom:631.147500px;}
.y2d{bottom:633.543000px;}
.ya{bottom:640.022702px;}
.y69{bottom:643.372500px;}
.y85{bottom:649.159500px;}
.yac{bottom:649.431000px;}
.y2c{bottom:653.103000px;}
.y9{bottom:653.792638px;}
.y84{bottom:667.443000px;}
.y8{bottom:667.562573px;}
.yab{bottom:668.107500px;}
.y2b{bottom:672.661500px;}
.yaa{bottom:686.391000px;}
.y83{bottom:686.473500px;}
.y2a{bottom:692.220000px;}
.ya9{bottom:704.674500px;}
.y82{bottom:704.757000px;}
.y29{bottom:711.780000px;}
.ya8{bottom:722.958000px;}
.y81{bottom:723.040500px;}
.y7{bottom:731.239416px;}
.y50{bottom:731.338500px;}
.ya7{bottom:741.636000px;}
.y28{bottom:741.706500px;}
.y80{bottom:742.072500px;}
.y6{bottom:748.445764px;}
.y4f{bottom:750.897000px;}
.ya6{bottom:759.919500px;}
.y7f{bottom:760.356000px;}
.y5{bottom:765.652111px;}
.y4e{bottom:770.457000px;}
.ya5{bottom:778.203000px;}
.y7e{bottom:778.638000px;}
.y4{bottom:784.849878px;}
.y4d{bottom:790.015500px;}
.ya4{bottom:796.881000px;}
.y7d{bottom:797.670000px;}
.y3{bottom:808.941193px;}
.y4c{bottom:809.575500px;}
.ya3{bottom:815.164500px;}
.y7c{bottom:815.953500px;}
.y4b{bottom:829.134000px;}
.y27{bottom:831.840000px;}
.y2{bottom:833.044651px;}
.ya2{bottom:833.448000px;}
.y7b{bottom:834.235500px;}
.y4a{bottom:848.692500px;}
.ya1{bottom:852.126000px;}
.y7a{bottom:852.519000px;}
.y26{bottom:855.153000px;}
.y49{bottom:868.252500px;}
.ya0{bottom:870.409500px;}
.y79{bottom:870.802500px;}
.y48{bottom:887.811000px;}
.y78{bottom:889.086000px;}
.y25{bottom:898.024500px;}
.y47{bottom:907.369500px;}
.y46{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;}
.h13{height:48.558885px;}
.hd{height:48.669336px;}
.h3{height:50.387763px;}
.hb{height:51.879433px;}
.he{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;}
.xa{left:122.097000px;}
.x6{left:123.424500px;}
.x8{left:130.212000px;}
.x4{left:354.533332px;}
.x9{left:464.500500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.377827pt;}
.ls5{letter-spacing:0.420827pt;}
.ls6{letter-spacing:0.637608pt;}
.ls7{letter-spacing:0.757160pt;}
.ls4{letter-spacing:0.836864pt;}
.ls1{letter-spacing:0.876712pt;}
.ls3{letter-spacing:0.916560pt;}
.ls2{letter-spacing:1.036112pt;}
.ws2{word-spacing:-14.176128pt;}
.ws0{word-spacing:-13.442781pt;}
.ws3{word-spacing:-12.316469pt;}
.ws1{word-spacing:0.000000pt;}
._19{margin-left:-12.788642pt;}
._16{margin-left:-8.488229pt;}
._1b{margin-left:-6.771853pt;}
._1a{margin-left:-5.232459pt;}
._14{margin-left:-4.279974pt;}
._12{margin-left:-3.347456pt;}
._10{margin-left:-2.438873pt;}
._d{margin-left:-1.344292pt;}
._b{width:1.269327pt;}
._5{width:2.629321pt;}
._7{width:3.777760pt;}
._f{width:4.687021pt;}
._0{width:6.087590pt;}
._1{width:7.123776pt;}
._11{width:8.321569pt;}
._a{width:9.399067pt;}
._17{width:10.321323pt;}
._9{width:12.149276pt;}
._4{width:14.083489pt;}
._6{width:18.767912pt;}
._18{width:21.508668pt;}
._e{width:22.486272pt;}
._3{width:25.930545pt;}
._8{width:30.373190pt;}
._c{width:41.404250pt;}
._15{width:85.098958pt;}
._13{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;}
.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;}
.y24{bottom:46.034704pt;}
.y23{bottom:58.274646pt;}
.y22{bottom:70.514589pt;}
.y21{bottom:82.754531pt;}
.y20{bottom:93.213530pt;}
.y1f{bottom:113.030579pt;}
.y53{bottom:128.504000pt;}
.y70{bottom:128.652000pt;}
.y77{bottom:132.374667pt;}
.yc7{bottom:135.314667pt;}
.y67{bottom:137.189333pt;}
.y45{bottom:145.889333pt;}
.y6f{bottom:146.037333pt;}
.y9f{bottom:149.166667pt;}
.y76{bottom:149.290667pt;}
.yc6{bottom:151.566667pt;}
.y66{bottom:154.574667pt;}
.y44{bottom:163.276000pt;}
.y6e{bottom:163.424000pt;}
.y1e{bottom:164.483670pt;}
.y9e{bottom:165.418667pt;}
.y75{bottom:165.542667pt;}
.yc5{bottom:167.818667pt;}
.y65{bottom:171.960000pt;}
.y1d{bottom:173.658230pt;}
.y43{bottom:180.661333pt;}
.y6d{bottom:180.809333pt;}
.y74{bottom:181.794667pt;}
.y1c{bottom:182.077238pt;}
.y9d{bottom:182.334667pt;}
.yc4{bottom:184.421333pt;}
.y64{bottom:189.346667pt;}
.y1b{bottom:189.719107pt;}
.y1a{bottom:197.371770pt;}
.y42{bottom:198.046667pt;}
.y9c{bottom:198.586667pt;}
.yc3{bottom:200.672000pt;}
.y19{bottom:205.024432pt;}
.y63{bottom:206.732000pt;}
.y6c{bottom:206.933333pt;}
.y73{bottom:207.262667pt;}
.y18{bottom:212.666301pt;}
.y41{bottom:215.433333pt;}
.y9b{bottom:215.502667pt;}
.yc2{bottom:216.924000pt;}
.y17{bottom:220.318963pt;}
.y62{bottom:224.118667pt;}
.y16{bottom:227.971626pt;}
.y9a{bottom:231.754667pt;}
.y40{bottom:232.818667pt;}
.yc1{bottom:233.526667pt;}
.y15{bottom:235.613494pt;}
.y61{bottom:241.504000pt;}
.y68{bottom:242.034667pt;}
.y14{bottom:243.266157pt;}
.y99{bottom:248.006667pt;}
.yc0{bottom:249.778667pt;}
.y3f{bottom:250.204000pt;}
.y6a{bottom:250.205333pt;}
.y13{bottom:250.918819pt;}
.y60{bottom:258.889333pt;}
.y6b{bottom:258.942667pt;}
.y98{bottom:264.258667pt;}
.ybf{bottom:266.030667pt;}
.y12{bottom:266.655888pt;}
.y3e{bottom:267.590667pt;}
.y5f{bottom:276.276000pt;}
.y97{bottom:281.174667pt;}
.ybe{bottom:282.633333pt;}
.y3d{bottom:284.976000pt;}
.y5e{bottom:293.661333pt;}
.y96{bottom:297.426667pt;}
.ybd{bottom:298.885333pt;}
.y3c{bottom:302.362667pt;}
.y95{bottom:313.678667pt;}
.ybc{bottom:315.137333pt;}
.y5d{bottom:316.262667pt;}
.y3b{bottom:319.748000pt;}
.y94{bottom:329.930667pt;}
.ybb{bottom:331.740000pt;}
.y5c{bottom:335.390667pt;}
.y3a{bottom:337.133333pt;}
.y93{bottom:346.846667pt;}
.yba{bottom:347.992000pt;}
.y39{bottom:354.520000pt;}
.y92{bottom:363.098667pt;}
.y11{bottom:363.722733pt;}
.yb9{bottom:364.244000pt;}
.y38{bottom:371.905333pt;}
.y91{bottom:379.350667pt;}
.yb8{bottom:380.846667pt;}
.y37{bottom:389.290667pt;}
.y5b{bottom:389.292000pt;}
.y90{bottom:396.266667pt;}
.yb7{bottom:397.098667pt;}
.y36{bottom:406.677333pt;}
.y8f{bottom:412.518667pt;}
.yb6{bottom:413.350667pt;}
.y54{bottom:415.414667pt;}
.y35{bottom:424.062667pt;}
.y8e{bottom:428.770667pt;}
.yb5{bottom:429.952000pt;}
.y34{bottom:441.449333pt;}
.y8d{bottom:445.022667pt;}
.yb4{bottom:446.204000pt;}
.y52{bottom:450.664000pt;}
.y33{bottom:458.834667pt;}
.y8c{bottom:461.938667pt;}
.yb3{bottom:462.806667pt;}
.y72{bottom:468.050667pt;}
.y51{bottom:469.792000pt;}
.y5a{bottom:470.329333pt;}
.y10{bottom:472.533014pt;}
.y32{bottom:476.220000pt;}
.y8b{bottom:478.190667pt;}
.yb2{bottom:479.058667pt;}
.y59{bottom:483.178667pt;}
.y71{bottom:487.178667pt;}
.y31{bottom:493.606667pt;}
.y8a{bottom:494.442667pt;}
.yb1{bottom:495.661333pt;}
.y58{bottom:496.029333pt;}
.yf{bottom:496.127824pt;}
.ye{bottom:508.367766pt;}
.y57{bottom:508.880000pt;}
.y89{bottom:510.694667pt;}
.y30{bottom:510.992000pt;}
.yb0{bottom:511.913333pt;}
.y56{bottom:521.730667pt;}
.y88{bottom:527.610667pt;}
.yaf{bottom:528.165333pt;}
.y2f{bottom:528.377333pt;}
.yd{bottom:532.189242pt;}
.y55{bottom:534.581333pt;}
.y87{bottom:543.862667pt;}
.yc{bottom:544.429184pt;}
.yae{bottom:544.768000pt;}
.y2e{bottom:545.764000pt;}
.yb{bottom:556.669126pt;}
.y86{bottom:560.114667pt;}
.yad{bottom:561.020000pt;}
.y2d{bottom:563.149333pt;}
.ya{bottom:568.909069pt;}
.y69{bottom:571.886667pt;}
.y85{bottom:577.030667pt;}
.yac{bottom:577.272000pt;}
.y2c{bottom:580.536000pt;}
.y9{bottom:581.149011pt;}
.y84{bottom:593.282667pt;}
.y8{bottom:593.388954pt;}
.yab{bottom:593.873333pt;}
.y2b{bottom:597.921333pt;}
.yaa{bottom:610.125333pt;}
.y83{bottom:610.198667pt;}
.y2a{bottom:615.306667pt;}
.ya9{bottom:626.377333pt;}
.y82{bottom:626.450667pt;}
.y29{bottom:632.693333pt;}
.ya8{bottom:642.629333pt;}
.y81{bottom:642.702667pt;}
.y7{bottom:649.990592pt;}
.y50{bottom:650.078667pt;}
.ya7{bottom:659.232000pt;}
.y28{bottom:659.294667pt;}
.y80{bottom:659.620000pt;}
.y6{bottom:665.285123pt;}
.y4f{bottom:667.464000pt;}
.ya6{bottom:675.484000pt;}
.y7f{bottom:675.872000pt;}
.y5{bottom:680.579654pt;}
.y4e{bottom:684.850667pt;}
.ya5{bottom:691.736000pt;}
.y7e{bottom:692.122667pt;}
.y4{bottom:697.644336pt;}
.y4d{bottom:702.236000pt;}
.ya4{bottom:708.338667pt;}
.y7d{bottom:709.040000pt;}
.y3{bottom:719.058838pt;}
.y4c{bottom:719.622667pt;}
.ya3{bottom:724.590667pt;}
.y7c{bottom:725.292000pt;}
.y4b{bottom:737.008000pt;}
.y27{bottom:739.413333pt;}
.y2{bottom:740.484134pt;}
.ya2{bottom:740.842667pt;}
.y7b{bottom:741.542667pt;}
.y4a{bottom:754.393333pt;}
.ya1{bottom:757.445333pt;}
.y7a{bottom:757.794667pt;}
.y26{bottom:760.136000pt;}
.y49{bottom:771.780000pt;}
.ya0{bottom:773.697333pt;}
.y79{bottom:774.046667pt;}
.y48{bottom:789.165333pt;}
.y78{bottom:790.298667pt;}
.y25{bottom:798.244000pt;}
.y47{bottom:806.550667pt;}
.y46{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;}
.h13{height:43.163453pt;}
.hd{height:43.261632pt;}
.h3{height:44.789123pt;}
.hb{height:46.115051pt;}
.he{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;}
.xa{left:108.530667pt;}
.x6{left:109.710667pt;}
.x8{left:115.744000pt;}
.x4{left:315.140739pt;}
.x9{left:412.889333pt;}
}




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