
    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_43300bbe50ff2b74249ca35c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.687500;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_1f81f3ca71e01cf9a458ac67.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.031738;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_822181a406a6e28a5f887717.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.710938;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_2b46fdd9162c5dc92bb2d6fe.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.963379;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_e805f5c5824dd613174421b7.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.973633;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_a54098815ba7ab0d6d5d6c41.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.710938;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_31d93767c772fc933e5d0663.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.964863;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_04e43aeaa412066b9f0f6c94.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.032715;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_ef91b827eca536e16e0ddf4e.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666504;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_4c864e7533e316d1e071dc60.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.971191;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:ffb;src:url('chunks/assets/font_b0d2f85726eae2dce6dfaec7.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.759766;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:ffc;src:url('chunks/assets/font_cb96a20fff3f08bca068d20e.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.666504;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:ffd;src:url('chunks/assets/font_18921e28a38702aa83b5b017.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.710938;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:ffe;src:url('chunks/assets/font_671c352d701859bea27cff8d.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.910645;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);}
.v2{vertical-align:-22.768066px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:28.516662px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:4.489238px;}
.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;}
}
.ws7{word-spacing:-29.999999px;}
.ws3{word-spacing:-16.593750px;}
.ws5{word-spacing:-16.523438px;}
.ws2{word-spacing:-15.210938px;}
.ws1{word-spacing:-13.769531px;}
.ws4{word-spacing:-9.914063px;}
.ws6{word-spacing:-9.000000px;}
.ws0{word-spacing:0.000000px;}
._9{margin-left:-6.090637px;}
._a{margin-left:-4.066470px;}
._8{margin-left:-2.848644px;}
._0{margin-left:-1.828615px;}
._7{width:1.318361px;}
._c{width:2.514177px;}
._b{width:3.680616px;}
._3{width:5.080077px;}
._1{width:8.419923px;}
._2{width:9.474595px;}
._6{width:35.999999px;}
._4{width:39.972656px;}
._5{width:41.159183px;}
.fc4{color:rgb(0,112,192);}
.fc3{color:rgb(17,85,204);}
.fc1{color:rgb(0,35,70);}
.fc2{color:rgb(37,37,37);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:36.000000px;}
.fs9{font-size:43.200002px;}
.fs8{font-size:54.000000px;}
.fs7{font-size:59.999999px;}
.fs6{font-size:66.000002px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:83.999997px;}
.fs5{font-size:96.000003px;}
.fs1{font-size:108.000000px;}
.fs4{font-size:119.999997px;}
.fs3{font-size:132.000003px;}
.y0{bottom:0.000000px;}
.y57{bottom:4.124817px;}
.y5a{bottom:4.125000px;}
.y23{bottom:4.125091px;}
.y92{bottom:4.125366px;}
.y2{bottom:4.420314px;}
.y5e{bottom:18.180176px;}
.y22{bottom:24.266784px;}
.y5d{bottom:38.321777px;}
.y7a{bottom:57.749993px;}
.y91{bottom:74.891237px;}
.y79{bottom:74.891603px;}
.y78{bottom:85.694087px;}
.y5b{bottom:88.799933px;}
.y77{bottom:96.158198px;}
.y59{bottom:105.941528px;}
.y20{bottom:116.006290px;}
.y58{bottom:116.744195px;}
.y76{bottom:121.549808px;}
.y56{bottom:127.208502px;}
.y1f{bottom:132.208927px;}
.y8d{bottom:141.351198px;}
.y1e{bottom:148.411563px;}
.y55{bottom:152.599733px;}
.y8c{bottom:164.291745px;}
.y1d{bottom:164.614203px;}
.y1c{bottom:180.816828px;}
.y8e{bottom:181.540284px;}
.y54{bottom:183.999386px;}
.y1b{bottom:197.019468px;}
.y8f{bottom:198.788825px;}
.y53{bottom:202.002131px;}
.y1a{bottom:213.222108px;}
.y90{bottom:216.037355px;}
.y52{bottom:220.005248px;}
.y19{bottom:229.424748px;}
.y51{bottom:238.007995px;}
.y18{bottom:245.627373px;}
.y50{bottom:256.386107px;}
.y17{bottom:262.204931px;}
.y8b{bottom:266.490240px;}
.y4f{bottom:275.814146px;}
.y16{bottom:280.207946px;}
.y4e{bottom:293.817266px;}
.y15{bottom:298.210871px;}
.y4d{bottom:311.820191px;}
.y14{bottom:316.213721px;}
.y4c{bottom:329.822936px;}
.y13{bottom:334.216736px;}
.y4b{bottom:347.826056px;}
.y12{bottom:352.219661px;}
.y4a{bottom:365.828981px;}
.y11{bottom:370.222511px;}
.y49{bottom:383.831726px;}
.y10{bottom:388.975434px;}
.yad{bottom:399.791019px;}
.y48{bottom:401.834846px;}
.yf{bottom:409.829036px;}
.y47{bottom:419.837771px;}
.yac{bottom:421.394535px;}
.ye{bottom:427.831976px;}
.y46{bottom:438.590694px;}
.yab{bottom:442.998051px;}
.yd{bottom:445.834811px;}
.y45{bottom:460.194219px;}
.yc{bottom:464.212832px;}
.yaa{bottom:464.601566px;}
.y44{bottom:481.797729px;}
.yb{bottom:485.890957px;}
.ya9{bottom:486.205082px;}
.y43{bottom:503.401239px;}
.ya8{bottom:507.808598px;}
.ya{bottom:516.195741px;}
.y42{bottom:525.004764px;}
.ya7{bottom:529.412113px;}
.y41{bottom:546.233282px;}
.ya6{bottom:551.015629px;}
.y9{bottom:552.201561px;}
.y40{bottom:566.036312px;}
.ya5{bottom:572.619144px;}
.y8{bottom:584.457418px;}
.y3f{bottom:585.839717px;}
.y3e{bottom:605.642942px;}
.ya4{bottom:609.222654px;}
.y3d{bottom:625.445987px;}
.y3c{bottom:645.249392px;}
.ya3{bottom:645.826176px;}
.y3b{bottom:665.052617px;}
.ya2{bottom:667.429691px;}
.y3a{bottom:684.855647px;}
.y75{bottom:686.022954px;}
.ya1{bottom:689.033207px;}
.y39{bottom:704.659052px;}
.y74{bottom:707.251457px;}
.ya0{bottom:710.636723px;}
.y38{bottom:724.462277px;}
.y73{bottom:727.054682px;}
.y9f{bottom:732.240238px;}
.y37{bottom:744.265322px;}
.y72{bottom:747.232914px;}
.y8a{bottom:747.240236px;}
.y9e{bottom:753.843754px;}
.y36{bottom:764.068727px;}
.y71{bottom:768.461432px;}
.y89{bottom:768.843752px;}
.y9d{bottom:775.447269px;}
.y35{bottom:783.871952px;}
.y70{bottom:788.639649px;}
.y88{bottom:790.447268px;}
.y34{bottom:803.674982px;}
.y6f{bottom:809.868167px;}
.y9c{bottom:812.050776px;}
.y87{bottom:812.050783px;}
.y33{bottom:823.478387px;}
.y6e{bottom:830.046384px;}
.y9b{bottom:833.654291px;}
.y86{bottom:833.654299px;}
.y32{bottom:843.281612px;}
.y6d{bottom:851.274902px;}
.y9a{bottom:855.257807px;}
.y85{bottom:855.257814px;}
.y31{bottom:863.084657px;}
.y6c{bottom:871.453119px;}
.y99{bottom:876.861322px;}
.y30{bottom:882.888062px;}
.y84{bottom:891.861324px;}
.y6b{bottom:892.681637px;}
.y7{bottom:893.457441px;}
.y98{bottom:898.464838px;}
.y2f{bottom:902.691287px;}
.y6a{bottom:912.859869px;}
.y97{bottom:920.068354px;}
.y2e{bottom:922.494317px;}
.y6{bottom:927.213279px;}
.y83{bottom:928.464843px;}
.y69{bottom:934.088372px;}
.y96{bottom:941.671869px;}
.y2d{bottom:942.297722px;}
.y82{bottom:950.068359px;}
.y5{bottom:952.417374px;}
.y68{bottom:954.266604px;}
.y2c{bottom:962.100947px;}
.y81{bottom:971.671875px;}
.y67{bottom:975.495122px;}
.y4{bottom:976.871469px;}
.y95{bottom:978.275391px;}
.y2b{bottom:981.903992px;}
.y80{bottom:993.275390px;}
.y66{bottom:995.673339px;}
.y94{bottom:999.878906px;}
.y3{bottom:1001.474991px;}
.y2a{bottom:1001.707305px;}
.y7f{bottom:1014.878906px;}
.y65{bottom:1016.901855px;}
.y93{bottom:1021.482422px;}
.y29{bottom:1021.510620px;}
.y7e{bottom:1036.482421px;}
.y64{bottom:1036.705077px;}
.y28{bottom:1041.313659px;}
.y63{bottom:1056.508301px;}
.y7d{bottom:1058.085937px;}
.y27{bottom:1061.116973px;}
.y62{bottom:1076.686523px;}
.y7c{bottom:1079.689453px;}
.y26{bottom:1080.920288px;}
.y61{bottom:1097.915039px;}
.y25{bottom:1100.723327px;}
.y7b{bottom:1101.292968px;}
.y60{bottom:1117.718261px;}
.y24{bottom:1120.901550px;}
.y5f{bottom:1137.896484px;}
.y21{bottom:1138.005066px;}
.y5c{bottom:1155.000000px;}
.y1{bottom:1156.725003px;}
.h17{height:19.803040px;}
.h1c{height:19.803223px;}
.h16{height:20.141418px;}
.h18{height:20.141602px;}
.h21{height:20.141968px;}
.h1f{height:24.328125px;}
.hc{height:38.390625px;}
.hd{height:40.500000px;}
.h20{height:41.689452px;}
.he{height:43.347656px;}
.h11{height:43.989259px;}
.h13{height:44.999999px;}
.h1a{height:46.921876px;}
.ha{height:48.134764px;}
.h14{height:48.164061px;}
.h2{height:48.656250px;}
.h10{height:50.176759px;}
.h4{height:51.187500px;}
.h9{height:52.948243px;}
.h12{height:54.738281px;}
.hb{height:57.761719px;}
.h1e{height:63.173663px;}
.h1d{height:63.173695px;}
.h5{height:63.861326px;}
.h8{height:77.015627px;}
.h3{height:86.642578px;}
.h7{height:96.269529px;}
.h6{height:100.353518px;}
.h1{height:106.274997px;}
.h19{height:108.000000px;}
.hf{height:124.994934px;}
.h1b{height:137.566410px;}
.h15{height:168.616335px;}
.h0{height:1263.000000px;}
.w3{width:72.000000px;}
.w4{width:300.374910px;}
.w6{width:300.375000px;}
.w5{width:326.250000px;}
.w2{width:326.250030px;}
.w1{width:893.250000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.xd{left:7.875000px;}
.xf{left:31.271149px;}
.x1{left:85.049996px;}
.xc{left:86.174995px;}
.x11{left:108.000000px;}
.x14{left:109.125000px;}
.xa{left:110.914365px;}
.x12{left:135.000000px;}
.x4{left:139.075714px;}
.xb{left:180.674996px;}
.x9{left:245.924996px;}
.x7{left:267.467606px;}
.x13{left:282.375000px;}
.x8{left:351.705089px;}
.x5{left:391.498376px;}
.xe{left:413.550015px;}
.x3{left:425.081696px;}
.x15{left:436.500000px;}
.x10{left:486.675015px;}
.x16{left:509.625000px;}
.x17{left:532.125000px;}
.x6{left:632.081696px;}
.x2{left:665.269162px;}
@media print{
.v2{vertical-align:-20.238281pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:25.348144pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:3.990434pt;}
.ws7{word-spacing:-26.666666pt;}
.ws3{word-spacing:-14.750000pt;}
.ws5{word-spacing:-14.687500pt;}
.ws2{word-spacing:-13.520834pt;}
.ws1{word-spacing:-12.239583pt;}
.ws4{word-spacing:-8.812500pt;}
.ws6{word-spacing:-8.000000pt;}
.ws0{word-spacing:0.000000pt;}
._9{margin-left:-5.413899pt;}
._a{margin-left:-3.614640pt;}
._8{margin-left:-2.532128pt;}
._0{margin-left:-1.625436pt;}
._7{width:1.171876pt;}
._c{width:2.234824pt;}
._b{width:3.271659pt;}
._3{width:4.515624pt;}
._1{width:7.484376pt;}
._2{width:8.421862pt;}
._6{width:31.999999pt;}
._4{width:35.531250pt;}
._5{width:36.585940pt;}
.fsa{font-size:32.000000pt;}
.fs9{font-size:38.400002pt;}
.fs8{font-size:48.000000pt;}
.fs7{font-size:53.333332pt;}
.fs6{font-size:58.666668pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.666664pt;}
.fs5{font-size:85.333336pt;}
.fs1{font-size:96.000000pt;}
.fs4{font-size:106.666664pt;}
.fs3{font-size:117.333336pt;}
.y0{bottom:0.000000pt;}
.y57{bottom:3.666504pt;}
.y5a{bottom:3.666666pt;}
.y23{bottom:3.666747pt;}
.y92{bottom:3.666992pt;}
.y2{bottom:3.929168pt;}
.y5e{bottom:16.160157pt;}
.y22{bottom:21.570475pt;}
.y5d{bottom:34.063802pt;}
.y7a{bottom:51.333327pt;}
.y91{bottom:66.569989pt;}
.y79{bottom:66.570314pt;}
.y78{bottom:76.172522pt;}
.y5b{bottom:78.933274pt;}
.y77{bottom:85.473954pt;}
.y59{bottom:94.170247pt;}
.y20{bottom:103.116702pt;}
.y58{bottom:103.772618pt;}
.y76{bottom:108.044274pt;}
.y56{bottom:113.074224pt;}
.y1f{bottom:117.519046pt;}
.y8d{bottom:125.645510pt;}
.y1e{bottom:131.921390pt;}
.y55{bottom:135.644207pt;}
.y8c{bottom:146.037107pt;}
.y1d{bottom:146.323736pt;}
.y1c{bottom:160.726070pt;}
.y8e{bottom:161.369141pt;}
.y54{bottom:163.555010pt;}
.y1b{bottom:175.128416pt;}
.y8f{bottom:176.701178pt;}
.y53{bottom:179.557450pt;}
.y1a{bottom:189.530763pt;}
.y90{bottom:192.033205pt;}
.y52{bottom:195.560220pt;}
.y19{bottom:203.933110pt;}
.y51{bottom:211.562662pt;}
.y18{bottom:218.335443pt;}
.y50{bottom:227.898762pt;}
.y17{bottom:233.071050pt;}
.y8b{bottom:236.880213pt;}
.y4f{bottom:245.168130pt;}
.y16{bottom:249.073730pt;}
.y4e{bottom:261.170903pt;}
.y15{bottom:265.076330pt;}
.y4d{bottom:277.173503pt;}
.y14{bottom:281.078863pt;}
.y4c{bottom:293.175943pt;}
.y13{bottom:297.081543pt;}
.y4b{bottom:309.178716pt;}
.y12{bottom:313.084143pt;}
.y4a{bottom:325.181316pt;}
.y11{bottom:329.086676pt;}
.y49{bottom:341.183756pt;}
.y10{bottom:345.755942pt;}
.yad{bottom:355.369795pt;}
.y48{bottom:357.186530pt;}
.yf{bottom:364.292476pt;}
.y47{bottom:373.189130pt;}
.yac{bottom:374.572920pt;}
.ye{bottom:380.295090pt;}
.y46{bottom:389.858395pt;}
.yab{bottom:393.776045pt;}
.yd{bottom:396.297610pt;}
.y45{bottom:409.061528pt;}
.yc{bottom:412.633628pt;}
.yaa{bottom:412.979170pt;}
.y44{bottom:428.264648pt;}
.yb{bottom:431.903073pt;}
.ya9{bottom:432.182295pt;}
.y43{bottom:447.467768pt;}
.ya8{bottom:451.385420pt;}
.ya{bottom:458.840659pt;}
.y42{bottom:466.670902pt;}
.ya7{bottom:470.588545pt;}
.y41{bottom:485.540695pt;}
.ya6{bottom:489.791670pt;}
.y9{bottom:490.845832pt;}
.y40{bottom:503.143388pt;}
.ya5{bottom:508.994795pt;}
.y8{bottom:519.517705pt;}
.y3f{bottom:520.746415pt;}
.y3e{bottom:538.349282pt;}
.ya4{bottom:541.531248pt;}
.y3d{bottom:555.951988pt;}
.y3c{bottom:573.555015pt;}
.ya3{bottom:574.067712pt;}
.y3b{bottom:591.157882pt;}
.ya2{bottom:593.270837pt;}
.y3a{bottom:608.760575pt;}
.y75{bottom:609.798182pt;}
.ya1{bottom:612.473962pt;}
.y39{bottom:626.363602pt;}
.y74{bottom:628.667962pt;}
.ya0{bottom:631.677087pt;}
.y38{bottom:643.966468pt;}
.y73{bottom:646.270828pt;}
.y9f{bottom:650.880212pt;}
.y37{bottom:661.569175pt;}
.y72{bottom:664.207035pt;}
.y8a{bottom:664.213543pt;}
.y9e{bottom:670.083337pt;}
.y36{bottom:679.172202pt;}
.y71{bottom:683.076828pt;}
.y89{bottom:683.416668pt;}
.y9d{bottom:689.286462pt;}
.y35{bottom:696.775068pt;}
.y70{bottom:701.013022pt;}
.y88{bottom:702.619793pt;}
.y34{bottom:714.377762pt;}
.y6f{bottom:719.882815pt;}
.y9c{bottom:721.822912pt;}
.y87{bottom:721.822918pt;}
.y33{bottom:731.980788pt;}
.y6e{bottom:737.819008pt;}
.y9b{bottom:741.026037pt;}
.y86{bottom:741.026043pt;}
.y32{bottom:749.583655pt;}
.y6d{bottom:756.688802pt;}
.y9a{bottom:760.229162pt;}
.y85{bottom:760.229168pt;}
.y31{bottom:767.186362pt;}
.y6c{bottom:774.624995pt;}
.y99{bottom:779.432287pt;}
.y30{bottom:784.789388pt;}
.y84{bottom:792.765622pt;}
.y6b{bottom:793.494788pt;}
.y7{bottom:794.184392pt;}
.y98{bottom:798.635412pt;}
.y2f{bottom:802.392255pt;}
.y6a{bottom:811.430995pt;}
.y97{bottom:817.838537pt;}
.y2e{bottom:819.994948pt;}
.y6{bottom:824.189582pt;}
.y83{bottom:825.302083pt;}
.y69{bottom:830.300775pt;}
.y96{bottom:837.041662pt;}
.y2d{bottom:837.597975pt;}
.y82{bottom:844.505208pt;}
.y5{bottom:846.593222pt;}
.y68{bottom:848.236982pt;}
.y2c{bottom:855.200842pt;}
.y81{bottom:863.708333pt;}
.y67{bottom:867.106775pt;}
.y4{bottom:868.330195pt;}
.y95{bottom:869.578125pt;}
.y2b{bottom:872.803548pt;}
.y80{bottom:882.911458pt;}
.y66{bottom:885.042968pt;}
.y94{bottom:888.781250pt;}
.y3{bottom:890.199992pt;}
.y2a{bottom:890.406494pt;}
.y7f{bottom:902.114583pt;}
.y65{bottom:903.912760pt;}
.y93{bottom:907.984375pt;}
.y29{bottom:908.009440pt;}
.y7e{bottom:921.317708pt;}
.y64{bottom:921.515624pt;}
.y28{bottom:925.612142pt;}
.y63{bottom:939.118490pt;}
.y7d{bottom:940.520833pt;}
.y27{bottom:943.215087pt;}
.y62{bottom:957.054687pt;}
.y7c{bottom:959.723958pt;}
.y26{bottom:960.818034pt;}
.y61{bottom:975.924479pt;}
.y25{bottom:978.420735pt;}
.y7b{bottom:978.927083pt;}
.y60{bottom:993.527343pt;}
.y24{bottom:996.356934pt;}
.y5f{bottom:1011.463542pt;}
.y21{bottom:1011.560059pt;}
.y5c{bottom:1026.666667pt;}
.y1{bottom:1028.200003pt;}
.h17{height:17.602702pt;}
.h1c{height:17.602865pt;}
.h16{height:17.903483pt;}
.h18{height:17.903646pt;}
.h21{height:17.903971pt;}
.h1f{height:21.625000pt;}
.hc{height:34.125000pt;}
.hd{height:36.000000pt;}
.h20{height:37.057291pt;}
.he{height:38.531250pt;}
.h11{height:39.101563pt;}
.h13{height:39.999999pt;}
.h1a{height:41.708334pt;}
.ha{height:42.786457pt;}
.h14{height:42.812499pt;}
.h2{height:43.250000pt;}
.h10{height:44.601564pt;}
.h4{height:45.500000pt;}
.h9{height:47.065105pt;}
.h12{height:48.656250pt;}
.hb{height:51.343750pt;}
.h1e{height:56.154367pt;}
.h1d{height:56.154395pt;}
.h5{height:56.765623pt;}
.h8{height:68.458335pt;}
.h3{height:77.015625pt;}
.h7{height:85.572915pt;}
.h6{height:89.203127pt;}
.h1{height:94.466664pt;}
.h19{height:96.000000pt;}
.hf{height:111.106608pt;}
.h1b{height:122.281253pt;}
.h15{height:149.881187pt;}
.h0{height:1122.666667pt;}
.w3{width:64.000000pt;}
.w4{width:266.999920pt;}
.w6{width:267.000000pt;}
.w5{width:290.000000pt;}
.w2{width:290.000027pt;}
.w1{width:794.000000pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.xd{left:7.000000pt;}
.xf{left:27.796577pt;}
.x1{left:75.599996pt;}
.xc{left:76.599996pt;}
.x11{left:96.000000pt;}
.x14{left:97.000000pt;}
.xa{left:98.590547pt;}
.x12{left:120.000000pt;}
.x4{left:123.622857pt;}
.xb{left:160.599996pt;}
.x9{left:218.599996pt;}
.x7{left:237.748983pt;}
.x13{left:251.000000pt;}
.x8{left:312.626746pt;}
.x5{left:347.998556pt;}
.xe{left:367.600013pt;}
.x3{left:377.850396pt;}
.x15{left:388.000000pt;}
.x10{left:432.600013pt;}
.x16{left:453.000000pt;}
.x17{left:473.000000pt;}
.x6{left:561.850396pt;}
.x2{left:591.350366pt;}
}




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