
    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_223c0497582e1fb9e01937bf.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.873535;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_68ee85f6f2de4ede3afe4250.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.338867;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_40c6887e6feed7f0aea47abf.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938477;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_108601fe0f80b0668d097e85.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.987000;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_eaefdf600f97da7ecf4022e4.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.905000;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_2d701656c158c4e181a951d2.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.981000;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_ed70b72dfebdbd7d4d372ac9.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_1b0806941c635e016e468486.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.053000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_e17e5c7d4719db633e84e0d0.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.004000;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:ffa;src:url('chunks/assets/font_7b88e236203c812bcda19a4b.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.004000;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;}
.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:-18.984000px;}
.ws4{word-spacing:-15.757321px;}
.ws3{word-spacing:-14.262627px;}
.ws2{word-spacing:-13.335936px;}
.ws1{word-spacing:0.000000px;}
._2{margin-left:-7.353600px;}
._8{margin-left:-5.592570px;}
._3{margin-left:-4.284000px;}
._6{margin-left:-3.149807px;}
._1{margin-left:-1.996800px;}
._7{width:1.447398px;}
._4{width:2.501400px;}
._b{width:3.619573px;}
._0{width:5.587200px;}
._5{width:6.640952px;}
._9{width:67.467783px;}
._a{width:71.733879px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs4{font-size:46.821752px;}
.fs3{font-size:47.999996px;}
.fs5{font-size:49.523009px;}
.fs9{font-size:57.626775px;}
.fs8{font-size:58.527192px;}
.fs2{font-size:66.000000px;}
.fsa{font-size:72.033467px;}
.fs1{font-size:84.000000px;}
.fsc{font-size:84.234131px;}
.fs7{font-size:85.539742px;}
.fsb{font-size:90.041834px;}
.fs0{font-size:96.000000px;}
.fs6{font-size:103.548109px;}
.y0{bottom:0.000000px;}
.y1a{bottom:3.000001px;}
.y1c{bottom:3.000037px;}
.yc{bottom:8.040000px;}
.ycd{bottom:12.380739px;}
.y1b{bottom:22.380034px;}
.y79{bottom:34.891219px;}
.ycc{bottom:38.267766px;}
.yd1{bottom:42.082767px;}
.y55{bottom:42.082942px;}
.y1d{bottom:42.083005px;}
.y31{bottom:42.083030px;}
.y7a{bottom:42.083118px;}
.y9d{bottom:47.271967px;}
.y54{bottom:64.154808px;}
.y78{bottom:64.154815px;}
.ycb{bottom:82.163160px;}
.y53{bottom:92.292881px;}
.y77{bottom:92.292888px;}
.y13{bottom:99.795000px;}
.y30{bottom:108.050192px;}
.y9c{bottom:111.426774px;}
.y17{bottom:113.670000px;}
.y52{bottom:120.430954px;}
.y76{bottom:120.430961px;}
.yca{bottom:133.937215px;}
.y16{bottom:135.750000px;}
.y2f{bottom:136.188265px;}
.y9b{bottom:139.564847px;}
.y51{bottom:148.569027px;}
.y75{bottom:148.569035px;}
.y14{bottom:154.950000px;}
.yf{bottom:156.015000px;}
.y15{bottom:157.830000px;}
.y2e{bottom:164.326338px;}
.ybd{bottom:164.326342px;}
.y9a{bottom:167.702920px;}
.y50{bottom:177.832623px;}
.y74{bottom:177.832631px;}
.y2d{bottom:193.589934px;}
.ybc{bottom:193.589938px;}
.y99{bottom:196.966516px;}
.y4f{bottom:205.970697px;}
.y73{bottom:205.970704px;}
.y2c{bottom:221.728008px;}
.ybb{bottom:221.728012px;}
.y98{bottom:225.104589px;}
.y2b{bottom:249.866081px;}
.yba{bottom:249.866085px;}
.y4e{bottom:253.242659px;}
.y97{bottom:253.242662px;}
.y72{bottom:253.242667px;}
.y2a{bottom:278.004154px;}
.y4d{bottom:281.380733px;}
.y96{bottom:281.380735px;}
.y71{bottom:281.380740px;}
.yb9{bottom:297.138048px;}
.y4c{bottom:310.644329px;}
.y95{bottom:310.644331px;}
.y70{bottom:310.644336px;}
.yb8{bottom:325.276121px;}
.yd0{bottom:335.405818px;}
.y4b{bottom:338.782402px;}
.y6f{bottom:338.782409px;}
.y29{bottom:343.284483px;}
.ya{bottom:344.680500px;}
.y1e{bottom:346.661052px;}
.ycf{bottom:354.539708px;}
.yb7{bottom:354.539717px;}
.y94{bottom:357.916294px;}
.y28{bottom:363.543896px;}
.y4a{bottom:366.920475px;}
.y6e{bottom:366.920482px;}
.yb6{bottom:382.677790px;}
.y93{bottom:386.054367px;}
.yd{bottom:386.490000px;}
.y49{bottom:395.058548px;}
.y9{bottom:395.689500px;}
.yb5{bottom:410.815863px;}
.y92{bottom:414.192440px;}
.y6d{bottom:414.192445px;}
.yce{bottom:416.443469px;}
.y48{bottom:424.322144px;}
.yb{bottom:434.850000px;}
.y91{bottom:442.330514px;}
.y6c{bottom:442.330518px;}
.y8{bottom:446.698500px;}
.yb4{bottom:458.087826px;}
.y47{bottom:471.594107px;}
.y90{bottom:471.594110px;}
.y6b{bottom:471.594114px;}
.yb3{bottom:486.225899px;}
.y10{bottom:488.055000px;}
.y7{bottom:497.707500px;}
.y46{bottom:499.732180px;}
.y8f{bottom:499.732183px;}
.yb2{bottom:515.489495px;}
.y6a{bottom:518.866077px;}
.y45{bottom:527.870253px;}
.y8e{bottom:527.870256px;}
.y11{bottom:538.230000px;}
.yb1{bottom:543.627568px;}
.y69{bottom:547.004150px;}
.y6{bottom:548.716500px;}
.y44{bottom:556.008326px;}
.y8d{bottom:556.008329px;}
.y68{bottom:575.142223px;}
.y43{bottom:585.271922px;}
.y18{bottom:589.605000px;}
.yc9{bottom:589.773999px;}
.yb0{bottom:590.899531px;}
.y5{bottom:599.725500px;}
.y8c{bottom:603.280292px;}
.y67{bottom:603.280296px;}
.yc8{bottom:615.661027px;}
.yaf{bottom:619.037604px;}
.y42{bottom:631.418362px;}
.ye{bottom:631.920000px;}
.y8b{bottom:632.543888px;}
.y66{bottom:632.543892px;}
.yc7{bottom:641.548054px;}
.yae{bottom:648.301200px;}
.y8a{bottom:660.681961px;}
.y65{bottom:660.681965px;}
.yc6{bottom:666.309558px;}
.yad{bottom:676.439273px;}
.y89{bottom:688.820034px;}
.y64{bottom:688.820039px;}
.yc5{bottom:692.196586px;}
.y41{bottom:695.573169px;}
.yac{bottom:704.577346px;}
.yc4{bottom:718.083613px;}
.y40{bottom:723.711242px;}
.y63{bottom:734.966479px;}
.y88{bottom:736.091997px;}
.yab{bottom:751.849309px;}
.y3f{bottom:751.849315px;}
.y87{bottom:765.355593px;}
.y4{bottom:778.225500px;}
.yaa{bottom:779.987382px;}
.y3e{bottom:779.987388px;}
.y27{bottom:785.614993px;}
.y86{bottom:793.493666px;}
.y62{bottom:799.121285px;}
.ya9{bottom:809.250978px;}
.y3d{bottom:809.250984px;}
.y12{bottom:815.670000px;}
.yc3{bottom:820.506199px;}
.y85{bottom:821.631739px;}
.y26{bottom:825.008295px;}
.y61{bottom:827.259358px;}
.ya8{bottom:837.389052px;}
.yc2{bottom:846.393226px;}
.y25{bottom:848.644277px;}
.y84{bottom:849.769812px;}
.y3c{bottom:856.522947px;}
.y60{bottom:856.522954px;}
.ya7{bottom:865.527125px;}
.yc1{bottom:872.280254px;}
.y24{bottom:873.405781px;}
.y83{bottom:879.033409px;}
.y3b{bottom:884.661020px;}
.y5f{bottom:884.661028px;}
.ya6{bottom:893.665198px;}
.y23{bottom:897.041763px;}
.y3{bottom:905.716500px;}
.y82{bottom:907.171482px;}
.y3a{bottom:912.799094px;}
.y5e{bottom:912.799101px;}
.y22{bottom:921.803267px;}
.yc0{bottom:928.556400px;}
.ya5{bottom:940.937161px;}
.y39{bottom:940.937167px;}
.y5d{bottom:940.937174px;}
.y81{bottom:953.317922px;}
.y21{bottom:954.443432px;}
.y2{bottom:964.228500px;}
.ya4{bottom:970.200757px;}
.y38{bottom:970.200763px;}
.y20{bottom:984.832551px;}
.y5c{bottom:988.209137px;}
.ybf{bottom:989.334638px;}
.y1{bottom:989.716500px;}
.ya3{bottom:998.338830px;}
.y37{bottom:998.338836px;}
.ybe{bottom:1009.594050px;}
.yd2{bottom:1011.845043px;}
.y80{bottom:1017.472728px;}
.y5b{bottom:1017.472733px;}
.y1f{bottom:1020.849284px;}
.ya2{bottom:1026.476903px;}
.y36{bottom:1045.610799px;}
.y7f{bottom:1045.610801px;}
.y5a{bottom:1045.610806px;}
.ya1{bottom:1054.614976px;}
.y35{bottom:1073.748872px;}
.y7e{bottom:1073.748875px;}
.y59{bottom:1073.748879px;}
.ya0{bottom:1101.886939px;}
.y34{bottom:1101.886945px;}
.y7d{bottom:1101.886948px;}
.y58{bottom:1101.886952px;}
.y9f{bottom:1131.150535px;}
.y33{bottom:1131.150541px;}
.y7c{bottom:1131.150544px;}
.y57{bottom:1131.150548px;}
.y9e{bottom:1159.288608px;}
.y32{bottom:1159.288614px;}
.y7b{bottom:1159.288617px;}
.y56{bottom:1159.288621px;}
.y19{bottom:1226.879972px;}
.hc{height:13.499999px;}
.ha{height:13.500001px;}
.h4{height:33.000000px;}
.hb{height:34.945310px;}
.he{height:36.895540px;}
.hf{height:39.024131px;}
.h15{height:42.989574px;}
.h12{height:46.119427px;}
.h13{height:57.482707px;}
.h18{height:57.824866px;}
.h3{height:58.406250px;}
.h16{height:63.091364px;}
.h11{height:63.812648px;}
.h2{height:66.750000px;}
.h14{height:67.441334px;}
.h5{height:67.740234px;}
.h10{height:77.557534px;}
.h17{height:84.513265px;}
.h7{height:115.215000px;}
.h6{height:171.435000px;}
.h8{height:173.250000px;}
.hd{height:1177.296971px;}
.h0{height:1262.835000px;}
.h9{height:1262.879970px;}
.h1{height:1263.000000px;}
.we{width:61.439987px;}
.wb{width:136.499992px;}
.w8{width:301.170000px;}
.w6{width:366.465000px;}
.w2{width:494.625000px;}
.w5{width:552.660000px;}
.w3{width:553.275000px;}
.w4{width:597.405000px;}
.w7{width:651.810000px;}
.wc{width:755.939948px;}
.wf{width:806.999906px;}
.wd{width:830.999953px;}
.w9{width:892.439940px;}
.wa{width:892.500000px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:3.000000px;}
.xe{left:5.109353px;}
.x12{left:22.862184px;}
.x11{left:28.138073px;}
.xa{left:39.679684px;}
.xf{left:43.499994px;}
.x13{left:81.600412px;}
.x17{left:105.799155px;}
.x1d{left:111.567460px;}
.x18{left:113.589884px;}
.xc{left:115.078113px;}
.x9{left:126.345000px;}
.x1{left:127.559100px;}
.xb{left:136.499992px;}
.x1e{left:166.348771px;}
.x5{left:174.105000px;}
.x1b{left:183.301960px;}
.x2{left:191.040000px;}
.x19{left:194.047187px;}
.x7{left:200.715000px;}
.x1a{left:209.101056px;}
.x8{left:217.320000px;}
.x4{left:220.050000px;}
.x6{left:222.480000px;}
.x1f{left:254.245083px;}
.x20{left:270.459647px;}
.x21{left:317.784363px;}
.x15{left:345.430020px;}
.x16{left:358.848369px;}
.x14{left:385.896092px;}
.x1c{left:403.499969px;}
.x10{left:716.711895px;}
.xd{left:830.999953px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:-16.874667pt;}
.ws4{word-spacing:-14.006508pt;}
.ws3{word-spacing:-12.677890pt;}
.ws2{word-spacing:-11.854166pt;}
.ws1{word-spacing:0.000000pt;}
._2{margin-left:-6.536533pt;}
._8{margin-left:-4.971174pt;}
._3{margin-left:-3.808000pt;}
._6{margin-left:-2.799828pt;}
._1{margin-left:-1.774933pt;}
._7{width:1.286576pt;}
._4{width:2.223466pt;}
._b{width:3.217398pt;}
._0{width:4.966400pt;}
._5{width:5.903069pt;}
._9{width:59.971363pt;}
._a{width:63.763448pt;}
.fs4{font-size:41.619335pt;}
.fs3{font-size:42.666663pt;}
.fs5{font-size:44.020452pt;}
.fs9{font-size:51.223800pt;}
.fs8{font-size:52.024171pt;}
.fs2{font-size:58.666667pt;}
.fsa{font-size:64.029749pt;}
.fs1{font-size:74.666667pt;}
.fsc{font-size:74.874783pt;}
.fs7{font-size:76.035326pt;}
.fsb{font-size:80.037186pt;}
.fs0{font-size:85.333333pt;}
.fs6{font-size:92.042764pt;}
.y0{bottom:0.000000pt;}
.y1a{bottom:2.666668pt;}
.y1c{bottom:2.666700pt;}
.yc{bottom:7.146667pt;}
.ycd{bottom:11.005101pt;}
.y1b{bottom:19.893363pt;}
.y79{bottom:31.014417pt;}
.ycc{bottom:34.015792pt;}
.yd1{bottom:37.406904pt;}
.y55{bottom:37.407060pt;}
.y1d{bottom:37.407116pt;}
.y31{bottom:37.407138pt;}
.y7a{bottom:37.407216pt;}
.y9d{bottom:42.019526pt;}
.y54{bottom:57.026496pt;}
.y78{bottom:57.026502pt;}
.ycb{bottom:73.033920pt;}
.y53{bottom:82.038117pt;}
.y77{bottom:82.038123pt;}
.y13{bottom:88.706667pt;}
.y30{bottom:96.044615pt;}
.y9c{bottom:99.046021pt;}
.y17{bottom:101.040000pt;}
.y52{bottom:107.049737pt;}
.y76{bottom:107.049743pt;}
.yca{bottom:119.055302pt;}
.y16{bottom:120.666667pt;}
.y2f{bottom:121.056236pt;}
.y9b{bottom:124.057642pt;}
.y51{bottom:132.061358pt;}
.y75{bottom:132.061364pt;}
.y14{bottom:137.733333pt;}
.yf{bottom:138.680000pt;}
.y15{bottom:140.293333pt;}
.y2e{bottom:146.067856pt;}
.ybd{bottom:146.067860pt;}
.y9a{bottom:149.069262pt;}
.y50{bottom:158.073443pt;}
.y74{bottom:158.073449pt;}
.y2d{bottom:172.079942pt;}
.ybc{bottom:172.079945pt;}
.y99{bottom:175.081347pt;}
.y4f{bottom:183.085064pt;}
.y73{bottom:183.085070pt;}
.y2c{bottom:197.091562pt;}
.ybb{bottom:197.091566pt;}
.y98{bottom:200.092968pt;}
.y2b{bottom:222.103183pt;}
.yba{bottom:222.103186pt;}
.y4e{bottom:225.104586pt;}
.y97{bottom:225.104589pt;}
.y72{bottom:225.104593pt;}
.y2a{bottom:247.114803pt;}
.y4d{bottom:250.116207pt;}
.y96{bottom:250.116209pt;}
.y71{bottom:250.116213pt;}
.yb9{bottom:264.122709pt;}
.y4c{bottom:276.128292pt;}
.y95{bottom:276.128295pt;}
.y70{bottom:276.128298pt;}
.yb8{bottom:289.134329pt;}
.yd0{bottom:298.138505pt;}
.y4b{bottom:301.139913pt;}
.y6f{bottom:301.139919pt;}
.y29{bottom:305.141763pt;}
.ya{bottom:306.382667pt;}
.y1e{bottom:308.143158pt;}
.ycf{bottom:315.146407pt;}
.yb7{bottom:315.146415pt;}
.y94{bottom:318.147817pt;}
.y28{bottom:323.150130pt;}
.y4a{bottom:326.151533pt;}
.y6e{bottom:326.151540pt;}
.yb6{bottom:340.158035pt;}
.y93{bottom:343.159438pt;}
.yd{bottom:343.546667pt;}
.y49{bottom:351.163154pt;}
.y9{bottom:351.724000pt;}
.yb5{bottom:365.169656pt;}
.y92{bottom:368.171058pt;}
.y6d{bottom:368.171062pt;}
.yce{bottom:370.171972pt;}
.y48{bottom:377.175239pt;}
.yb{bottom:386.533333pt;}
.y91{bottom:393.182679pt;}
.y6c{bottom:393.182683pt;}
.y8{bottom:397.065333pt;}
.yb4{bottom:407.189179pt;}
.y47{bottom:419.194762pt;}
.y90{bottom:419.194764pt;}
.y6b{bottom:419.194768pt;}
.yb3{bottom:432.200799pt;}
.y10{bottom:433.826667pt;}
.y7{bottom:442.406667pt;}
.y46{bottom:444.206382pt;}
.y8f{bottom:444.206385pt;}
.yb2{bottom:458.212884pt;}
.y6a{bottom:461.214291pt;}
.y45{bottom:469.218003pt;}
.y8e{bottom:469.218005pt;}
.y11{bottom:478.426667pt;}
.yb1{bottom:483.224505pt;}
.y69{bottom:486.225911pt;}
.y6{bottom:487.748000pt;}
.y44{bottom:494.229623pt;}
.y8d{bottom:494.229626pt;}
.y68{bottom:511.237532pt;}
.y43{bottom:520.241709pt;}
.y18{bottom:524.093333pt;}
.yc9{bottom:524.243555pt;}
.yb0{bottom:525.244028pt;}
.y5{bottom:533.089333pt;}
.y8c{bottom:536.249148pt;}
.y67{bottom:536.249152pt;}
.yc8{bottom:547.254246pt;}
.yaf{bottom:550.255648pt;}
.y42{bottom:561.260766pt;}
.ye{bottom:561.706667pt;}
.y8b{bottom:562.261234pt;}
.y66{bottom:562.261238pt;}
.yc7{bottom:570.264937pt;}
.yae{bottom:576.267733pt;}
.y8a{bottom:587.272854pt;}
.y65{bottom:587.272858pt;}
.yc6{bottom:592.275163pt;}
.yad{bottom:601.279354pt;}
.y89{bottom:612.284475pt;}
.y64{bottom:612.284479pt;}
.yc5{bottom:615.285854pt;}
.y41{bottom:618.287261pt;}
.yac{bottom:626.290975pt;}
.yc4{bottom:638.296545pt;}
.y40{bottom:643.298882pt;}
.y63{bottom:653.303536pt;}
.y88{bottom:654.303997pt;}
.yab{bottom:668.310497pt;}
.y3f{bottom:668.310502pt;}
.y87{bottom:680.316083pt;}
.y4{bottom:691.756000pt;}
.yaa{bottom:693.322118pt;}
.y3e{bottom:693.322123pt;}
.y27{bottom:698.324438pt;}
.y86{bottom:705.327703pt;}
.y62{bottom:710.330031pt;}
.ya9{bottom:719.334203pt;}
.y3d{bottom:719.334208pt;}
.y12{bottom:725.040000pt;}
.yc3{bottom:729.338844pt;}
.y85{bottom:730.339324pt;}
.y26{bottom:733.340707pt;}
.y61{bottom:735.341652pt;}
.ya8{bottom:744.345824pt;}
.yc2{bottom:752.349534pt;}
.y25{bottom:754.350468pt;}
.y84{bottom:755.350944pt;}
.y3c{bottom:761.353731pt;}
.y60{bottom:761.353737pt;}
.ya7{bottom:769.357444pt;}
.yc1{bottom:775.360225pt;}
.y24{bottom:776.360694pt;}
.y83{bottom:781.363030pt;}
.y3b{bottom:786.365351pt;}
.y5f{bottom:786.365358pt;}
.ya6{bottom:794.369065pt;}
.y23{bottom:797.370456pt;}
.y3{bottom:805.081333pt;}
.y82{bottom:806.374650pt;}
.y3a{bottom:811.376972pt;}
.y5e{bottom:811.376978pt;}
.y22{bottom:819.380682pt;}
.yc0{bottom:825.383467pt;}
.ya5{bottom:836.388587pt;}
.y39{bottom:836.388593pt;}
.y5d{bottom:836.388599pt;}
.y81{bottom:847.393708pt;}
.y21{bottom:848.394162pt;}
.y2{bottom:857.092000pt;}
.ya4{bottom:862.400673pt;}
.y38{bottom:862.400678pt;}
.y20{bottom:875.406712pt;}
.y5c{bottom:878.408121pt;}
.ybf{bottom:879.408567pt;}
.y1{bottom:879.748000pt;}
.ya3{bottom:887.412293pt;}
.y37{bottom:887.412299pt;}
.ybe{bottom:897.416934pt;}
.yd2{bottom:899.417816pt;}
.y80{bottom:904.420203pt;}
.y5b{bottom:904.420207pt;}
.y1f{bottom:907.421586pt;}
.ya2{bottom:912.423914pt;}
.y36{bottom:929.431821pt;}
.y7f{bottom:929.431824pt;}
.y5a{bottom:929.431827pt;}
.ya1{bottom:937.435534pt;}
.y35{bottom:954.443442pt;}
.y7e{bottom:954.443444pt;}
.y59{bottom:954.443448pt;}
.ya0{bottom:979.455057pt;}
.y34{bottom:979.455062pt;}
.y7d{bottom:979.455065pt;}
.y58{bottom:979.455069pt;}
.y9f{bottom:1005.467142pt;}
.y33{bottom:1005.467148pt;}
.y7c{bottom:1005.467150pt;}
.y57{bottom:1005.467154pt;}
.y9e{bottom:1030.478763pt;}
.y32{bottom:1030.478768pt;}
.y7b{bottom:1030.478771pt;}
.y56{bottom:1030.478774pt;}
.y19{bottom:1090.559975pt;}
.hc{height:12.000000pt;}
.ha{height:12.000001pt;}
.h4{height:29.333333pt;}
.hb{height:31.062497pt;}
.he{height:32.796036pt;}
.hf{height:34.688116pt;}
.h15{height:38.212955pt;}
.h12{height:40.995047pt;}
.h13{height:51.095739pt;}
.h18{height:51.399881pt;}
.h3{height:51.916667pt;}
.h16{height:56.081213pt;}
.h11{height:56.722354pt;}
.h2{height:59.333333pt;}
.h14{height:59.947852pt;}
.h5{height:60.213542pt;}
.h10{height:68.940030pt;}
.h17{height:75.122903pt;}
.h7{height:102.413333pt;}
.h6{height:152.386667pt;}
.h8{height:154.000000pt;}
.hd{height:1046.486196pt;}
.h0{height:1122.520000pt;}
.h9{height:1122.559973pt;}
.h1{height:1122.666667pt;}
.we{width:54.613321pt;}
.wb{width:121.333326pt;}
.w8{width:267.706667pt;}
.w6{width:325.746667pt;}
.w2{width:439.666667pt;}
.w5{width:491.253333pt;}
.w3{width:491.800000pt;}
.w4{width:531.026667pt;}
.w7{width:579.386667pt;}
.wc{width:671.946621pt;}
.wf{width:717.333250pt;}
.wd{width:738.666625pt;}
.w9{width:793.279947pt;}
.wa{width:793.333333pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:2.666667pt;}
.xe{left:4.541647pt;}
.x12{left:20.321942pt;}
.x11{left:25.011621pt;}
.xa{left:35.270830pt;}
.xf{left:38.666661pt;}
.x13{left:72.533700pt;}
.x17{left:94.043693pt;}
.x1d{left:99.171076pt;}
.x18{left:100.968786pt;}
.xc{left:102.291656pt;}
.x9{left:112.306667pt;}
.x1{left:113.385867pt;}
.xb{left:121.333326pt;}
.x1e{left:147.865574pt;}
.x5{left:154.760000pt;}
.x1b{left:162.935076pt;}
.x2{left:169.813333pt;}
.x19{left:172.486388pt;}
.x7{left:178.413333pt;}
.x1a{left:185.867605pt;}
.x8{left:193.173333pt;}
.x4{left:195.600000pt;}
.x6{left:197.760000pt;}
.x1f{left:225.995629pt;}
.x20{left:240.408575pt;}
.x21{left:282.474990pt;}
.x15{left:307.048907pt;}
.x16{left:318.976328pt;}
.x14{left:343.018749pt;}
.x1c{left:358.666639pt;}
.x10{left:637.077240pt;}
.xd{left:738.666625pt;}
}




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