
    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_52a5f6f89cb6f913cf55d335.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.942000;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_dec8ff4a4ce864c7ad0b3cc7.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.941000;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_380ec8b3f05eab8f727bdab7.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.971000;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_647d320cfd25a41e59c5310b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.971000;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_50464306d24b7844bcab0d55.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.971000;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_6945f005235bd373c872bb30.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.694824;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_c9f5c8b415b2573b56ccb951.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.721000;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;}
.m1{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,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);}
.m3{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);}
.v1{vertical-align:-26.250000px;}
.v2{vertical-align:-18.375000px;}
.v0{vertical-align:0.000000px;}
.lsb{letter-spacing:-0.336000px;}
.ls9{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.054000px;}
.ls6{letter-spacing:0.109650px;}
.ls4{letter-spacing:0.110100px;}
.lsa{letter-spacing:0.126000px;}
.ls3{letter-spacing:0.157200px;}
.ls2{letter-spacing:0.157500px;}
.lse{letter-spacing:0.160020px;}
.lsd{letter-spacing:0.160560px;}
.ls7{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.225000px;}
.ls8{letter-spacing:0.238500px;}
.ls11{letter-spacing:0.294000px;}
.lsc{letter-spacing:0.324600px;}
.ls0{letter-spacing:0.414000px;}
.lsf{letter-spacing:1.951200px;}
.ls10{letter-spacing:7.054800px;}
.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;}
}
.ws31{word-spacing:-11.236500px;}
.ws0{word-spacing:-9.534000px;}
.ws1{word-spacing:-9.198000px;}
.ws11{word-spacing:-5.016000px;}
.ws8{word-spacing:-4.950000px;}
.wsc{word-spacing:-4.422000px;}
.ws9{word-spacing:-4.224000px;}
.ws10{word-spacing:-4.158000px;}
.ws28{word-spacing:-3.564000px;}
.ws3b{word-spacing:-3.514500px;}
.ws21{word-spacing:-3.366000px;}
.ws43{word-spacing:-3.168000px;}
.ws33{word-spacing:-3.135000px;}
.ws12{word-spacing:-2.970000px;}
.ws39{word-spacing:-2.736000px;}
.ws1a{word-spacing:-2.706000px;}
.ws3a{word-spacing:-2.079000px;}
.ws3f{word-spacing:-2.029500px;}
.ws26{word-spacing:-1.980000px;}
.ws34{word-spacing:-1.824000px;}
.ws3c{word-spacing:-1.732500px;}
.ws44{word-spacing:-1.683000px;}
.ws1e{word-spacing:-1.650000px;}
.ws49{word-spacing:-1.584000px;}
.ws41{word-spacing:-1.138500px;}
.ws24{word-spacing:-1.122000px;}
.ws30{word-spacing:-1.116000px;}
.ws2a{word-spacing:-0.792000px;}
.ws5{word-spacing:-0.726000px;}
.ws4a{word-spacing:-0.594000px;}
.ws46{word-spacing:-0.544500px;}
.ws2f{word-spacing:-0.504000px;}
.ws2e{word-spacing:-0.360000px;}
.ws1d{word-spacing:-0.330000px;}
.ws45{word-spacing:-0.198000px;}
.ws4{word-spacing:-0.180000px;}
.wse{word-spacing:-0.132000px;}
.ws1f{word-spacing:-0.066000px;}
.ws2{word-spacing:0.000000px;}
.ws3{word-spacing:0.225000px;}
.ws37{word-spacing:0.262500px;}
.ws1c{word-spacing:0.264000px;}
.ws38{word-spacing:0.342000px;}
.ws42{word-spacing:0.346500px;}
.ws20{word-spacing:0.726000px;}
.ws19{word-spacing:0.924000px;}
.ws13{word-spacing:1.518000px;}
.ws16{word-spacing:2.244000px;}
.ws3e{word-spacing:2.425500px;}
.ws35{word-spacing:3.021000px;}
.wsd{word-spacing:3.300000px;}
.ws27{word-spacing:3.432000px;}
.ws40{word-spacing:3.613500px;}
.ws36{word-spacing:3.648000px;}
.ws32{word-spacing:4.047000px;}
.ws48{word-spacing:4.851000px;}
.ws2d{word-spacing:4.950000px;}
.wsf{word-spacing:5.016000px;}
.ws1b{word-spacing:5.280000px;}
.ws15{word-spacing:5.610000px;}
.ws22{word-spacing:5.808000px;}
.ws29{word-spacing:5.874000px;}
.wsb{word-spacing:6.270000px;}
.ws17{word-spacing:6.402000px;}
.ws14{word-spacing:6.600000px;}
.wsa{word-spacing:7.128000px;}
.ws23{word-spacing:7.260000px;}
.ws6{word-spacing:7.656000px;}
.ws7{word-spacing:8.448000px;}
.ws2c{word-spacing:9.636000px;}
.ws25{word-spacing:9.900000px;}
.ws2b{word-spacing:10.758000px;}
.ws18{word-spacing:13.992000px;}
.ws3d{word-spacing:16.087500px;}
.ws47{word-spacing:58.212000px;}
._3{margin-left:-3.312000px;}
._1{margin-left:-1.764000px;}
._0{width:1.213800px;}
._2{width:3.432000px;}
._9{width:7.672500px;}
._7{width:10.098000px;}
._a{width:12.919500px;}
._4{width:14.602500px;}
._6{width:16.087500px;}
._8{width:17.968500px;}
._5{width:19.849500px;}
.fc2{color:rgb(0,133,188);}
.fc1{color:rgb(135,206,42);}
.fc0{color:rgb(35,31,32);}
.fse{font-size:6.000000px;}
.fs4{font-size:18.000000px;}
.fs9{font-size:36.000000px;}
.fs5{font-size:36.750000px;}
.fs6{font-size:42.000000px;}
.fsb{font-size:49.500000px;}
.fsc{font-size:51.000000px;}
.fs1{font-size:52.500000px;}
.fsd{font-size:53.580000px;}
.fsa{font-size:57.000000px;}
.fs7{font-size:60.000000px;}
.fs8{font-size:66.000000px;}
.fs3{font-size:75.000000px;}
.fs0{font-size:79.500000px;}
.fs2{font-size:138.000000px;}
.y0{bottom:0.000000px;}
.y5d{bottom:3.187950px;}
.y5f{bottom:4.011900px;}
.y4b{bottom:22.602000px;}
.y4a{bottom:32.802000px;}
.y49{bottom:43.008000px;}
.y10{bottom:44.434950px;}
.y48{bottom:53.205000px;}
.yf{bottom:56.436450px;}
.y47{bottom:63.402000px;}
.ye{bottom:68.437950px;}
.y4f{bottom:77.948700px;}
.y13{bottom:79.642500px;}
.y12{bottom:80.434950px;}
.yd{bottom:80.439450px;}
.y4c{bottom:90.565050px;}
.y4e{bottom:90.565200px;}
.y4d{bottom:91.928250px;}
.y11{bottom:92.436450px;}
.yc{bottom:92.440950px;}
.y2b{bottom:145.237650px;}
.y46{bottom:145.270650px;}
.y2a{bottom:164.361150px;}
.y45{bottom:164.394150px;}
.y29{bottom:183.484650px;}
.y44{bottom:183.517650px;}
.y28{bottom:202.608150px;}
.y43{bottom:202.641150px;}
.y27{bottom:221.731650px;}
.y42{bottom:221.764650px;}
.y26{bottom:240.855150px;}
.y41{bottom:240.888150px;}
.y25{bottom:259.978650px;}
.y40{bottom:260.011650px;}
.y24{bottom:279.102150px;}
.y3f{bottom:279.135150px;}
.y23{bottom:298.225650px;}
.y3e{bottom:298.258650px;}
.y22{bottom:317.349150px;}
.y3d{bottom:317.382150px;}
.y21{bottom:336.472650px;}
.y3c{bottom:336.505650px;}
.y20{bottom:355.596150px;}
.y3b{bottom:355.629150px;}
.y1f{bottom:374.719650px;}
.y3a{bottom:374.752650px;}
.y6c{bottom:375.949800px;}
.y75{bottom:375.967800px;}
.y74{bottom:390.199800px;}
.y6b{bottom:390.205800px;}
.y1e{bottom:393.843150px;}
.y39{bottom:393.876150px;}
.y73{bottom:404.455800px;}
.y6a{bottom:404.461800px;}
.y1d{bottom:412.966650px;}
.y38{bottom:412.999650px;}
.y72{bottom:418.711800px;}
.y69{bottom:418.717800px;}
.y1c{bottom:432.090150px;}
.y37{bottom:432.123150px;}
.y71{bottom:432.967800px;}
.y68{bottom:432.973800px;}
.y79{bottom:447.198300px;}
.y70{bottom:447.204300px;}
.y67{bottom:447.205800px;}
.y1b{bottom:451.213650px;}
.y36{bottom:451.246650px;}
.y78{bottom:461.454300px;}
.y6f{bottom:461.460300px;}
.y66{bottom:461.461800px;}
.y35{bottom:470.370150px;}
.y77{bottom:475.710300px;}
.y6e{bottom:475.716300px;}
.y65{bottom:475.717800px;}
.y1a{bottom:489.463650px;}
.y34{bottom:489.493650px;}
.y76{bottom:489.966300px;}
.y6d{bottom:489.972300px;}
.y64{bottom:489.973800px;}
.y19{bottom:508.588650px;}
.y33{bottom:508.617150px;}
.y63{bottom:516.463650px;}
.y32{bottom:527.740650px;}
.y31{bottom:546.864150px;}
.y5a{bottom:561.989400px;}
.y18{bottom:565.963650px;}
.y30{bottom:565.987650px;}
.y59{bottom:577.906650px;}
.y17{bottom:585.088650px;}
.y2f{bottom:585.111150px;}
.y58{bottom:593.823900px;}
.y2e{bottom:604.234650px;}
.y57{bottom:609.741150px;}
.y54{bottom:609.741750px;}
.y16{bottom:623.338650px;}
.y2d{bottom:623.358150px;}
.y56{bottom:625.658400px;}
.y53{bottom:641.581950px;}
.y15{bottom:642.463650px;}
.y2c{bottom:642.481650px;}
.y55{bottom:657.498450px;}
.y52{bottom:698.206200px;}
.y51{bottom:714.123450px;}
.y50{bottom:745.963500px;}
.y8{bottom:804.161100px;}
.y62{bottom:810.423600px;}
.y7{bottom:825.633600px;}
.y61{bottom:826.340100px;}
.y60{bottom:842.257350px;}
.y5{bottom:850.670700px;}
.y6{bottom:857.233200px;}
.y5c{bottom:878.314500px;}
.y5e{bottom:878.683500px;}
.y5b{bottom:882.842850px;}
.y4{bottom:904.243950px;}
.y3{bottom:941.745450px;}
.yb{bottom:1044.241350px;}
.y14{bottom:1050.639750px;}
.ya{bottom:1056.988350px;}
.y2{bottom:1067.764500px;}
.y9{bottom:1069.735350px;}
.y1{bottom:1114.724400px;}
.h10{height:14.671500px;}
.h12{height:14.683500px;}
.hc{height:25.704000px;}
.h6{height:26.496750px;}
.h8{height:29.988000px;}
.h9{height:30.012000px;}
.h7{height:30.282000px;}
.hf{height:34.813477px;}
.he{height:35.343000px;}
.h14{height:35.415000px;}
.h16{height:35.421000px;}
.h15{height:35.439000px;}
.h17{height:35.445000px;}
.h11{height:36.210000px;}
.h3{height:37.852500px;}
.hd{height:40.698000px;}
.h13{height:40.701000px;}
.ha{height:43.260000px;}
.hb{height:47.124000px;}
.h5{height:54.075000px;}
.h2{height:57.319500px;}
.h4{height:99.498000px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w2{width:14.470500px;}
.w3{width:14.472000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xf{left:3.958500px;}
.x2{left:63.779550px;}
.x9{left:72.284550px;}
.xa{left:82.913400px;}
.x8{left:194.525550px;}
.xd{left:200.584950px;}
.x3{left:204.919800px;}
.x1{left:325.275600px;}
.x11{left:344.407125px;}
.x4{left:377.359950px;}
.xe{left:421.339500px;}
.x7{left:456.023550px;}
.xb{left:475.151400px;}
.x5{left:585.202200px;}
.xc{left:586.771650px;}
.x12{left:605.905725px;}
.x10{left:626.754000px;}
.x6{left:684.058350px;}
@media print{
.v1{vertical-align:-23.333333pt;}
.v2{vertical-align:-16.333333pt;}
.v0{vertical-align:0.000000pt;}
.lsb{letter-spacing:-0.298667pt;}
.ls9{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.048000pt;}
.ls6{letter-spacing:0.097467pt;}
.ls4{letter-spacing:0.097867pt;}
.lsa{letter-spacing:0.112000pt;}
.ls3{letter-spacing:0.139733pt;}
.ls2{letter-spacing:0.140000pt;}
.lse{letter-spacing:0.142240pt;}
.lsd{letter-spacing:0.142720pt;}
.ls7{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.200000pt;}
.ls8{letter-spacing:0.212000pt;}
.ls11{letter-spacing:0.261333pt;}
.lsc{letter-spacing:0.288533pt;}
.ls0{letter-spacing:0.368000pt;}
.lsf{letter-spacing:1.734400pt;}
.ls10{letter-spacing:6.270933pt;}
.ws31{word-spacing:-9.988000pt;}
.ws0{word-spacing:-8.474667pt;}
.ws1{word-spacing:-8.176000pt;}
.ws11{word-spacing:-4.458667pt;}
.ws8{word-spacing:-4.400000pt;}
.wsc{word-spacing:-3.930667pt;}
.ws9{word-spacing:-3.754667pt;}
.ws10{word-spacing:-3.696000pt;}
.ws28{word-spacing:-3.168000pt;}
.ws3b{word-spacing:-3.124000pt;}
.ws21{word-spacing:-2.992000pt;}
.ws43{word-spacing:-2.816000pt;}
.ws33{word-spacing:-2.786667pt;}
.ws12{word-spacing:-2.640000pt;}
.ws39{word-spacing:-2.432000pt;}
.ws1a{word-spacing:-2.405333pt;}
.ws3a{word-spacing:-1.848000pt;}
.ws3f{word-spacing:-1.804000pt;}
.ws26{word-spacing:-1.760000pt;}
.ws34{word-spacing:-1.621333pt;}
.ws3c{word-spacing:-1.540000pt;}
.ws44{word-spacing:-1.496000pt;}
.ws1e{word-spacing:-1.466667pt;}
.ws49{word-spacing:-1.408000pt;}
.ws41{word-spacing:-1.012000pt;}
.ws24{word-spacing:-0.997333pt;}
.ws30{word-spacing:-0.992000pt;}
.ws2a{word-spacing:-0.704000pt;}
.ws5{word-spacing:-0.645333pt;}
.ws4a{word-spacing:-0.528000pt;}
.ws46{word-spacing:-0.484000pt;}
.ws2f{word-spacing:-0.448000pt;}
.ws2e{word-spacing:-0.320000pt;}
.ws1d{word-spacing:-0.293333pt;}
.ws45{word-spacing:-0.176000pt;}
.ws4{word-spacing:-0.160000pt;}
.wse{word-spacing:-0.117333pt;}
.ws1f{word-spacing:-0.058667pt;}
.ws2{word-spacing:0.000000pt;}
.ws3{word-spacing:0.200000pt;}
.ws37{word-spacing:0.233333pt;}
.ws1c{word-spacing:0.234667pt;}
.ws38{word-spacing:0.304000pt;}
.ws42{word-spacing:0.308000pt;}
.ws20{word-spacing:0.645333pt;}
.ws19{word-spacing:0.821333pt;}
.ws13{word-spacing:1.349333pt;}
.ws16{word-spacing:1.994667pt;}
.ws3e{word-spacing:2.156000pt;}
.ws35{word-spacing:2.685333pt;}
.wsd{word-spacing:2.933333pt;}
.ws27{word-spacing:3.050667pt;}
.ws40{word-spacing:3.212000pt;}
.ws36{word-spacing:3.242667pt;}
.ws32{word-spacing:3.597333pt;}
.ws48{word-spacing:4.312000pt;}
.ws2d{word-spacing:4.400000pt;}
.wsf{word-spacing:4.458667pt;}
.ws1b{word-spacing:4.693333pt;}
.ws15{word-spacing:4.986667pt;}
.ws22{word-spacing:5.162667pt;}
.ws29{word-spacing:5.221333pt;}
.wsb{word-spacing:5.573333pt;}
.ws17{word-spacing:5.690667pt;}
.ws14{word-spacing:5.866667pt;}
.wsa{word-spacing:6.336000pt;}
.ws23{word-spacing:6.453333pt;}
.ws6{word-spacing:6.805333pt;}
.ws7{word-spacing:7.509333pt;}
.ws2c{word-spacing:8.565333pt;}
.ws25{word-spacing:8.800000pt;}
.ws2b{word-spacing:9.562667pt;}
.ws18{word-spacing:12.437333pt;}
.ws3d{word-spacing:14.300000pt;}
.ws47{word-spacing:51.744000pt;}
._3{margin-left:-2.944000pt;}
._1{margin-left:-1.568000pt;}
._0{width:1.078933pt;}
._2{width:3.050667pt;}
._9{width:6.820000pt;}
._7{width:8.976000pt;}
._a{width:11.484000pt;}
._4{width:12.980000pt;}
._6{width:14.300000pt;}
._8{width:15.972000pt;}
._5{width:17.644000pt;}
.fse{font-size:5.333333pt;}
.fs4{font-size:16.000000pt;}
.fs9{font-size:32.000000pt;}
.fs5{font-size:32.666667pt;}
.fs6{font-size:37.333333pt;}
.fsb{font-size:44.000000pt;}
.fsc{font-size:45.333333pt;}
.fs1{font-size:46.666667pt;}
.fsd{font-size:47.626667pt;}
.fsa{font-size:50.666667pt;}
.fs7{font-size:53.333333pt;}
.fs8{font-size:58.666667pt;}
.fs3{font-size:66.666667pt;}
.fs0{font-size:70.666667pt;}
.fs2{font-size:122.666667pt;}
.y0{bottom:0.000000pt;}
.y5d{bottom:2.833733pt;}
.y5f{bottom:3.566133pt;}
.y4b{bottom:20.090667pt;}
.y4a{bottom:29.157333pt;}
.y49{bottom:38.229333pt;}
.y10{bottom:39.497733pt;}
.y48{bottom:47.293333pt;}
.yf{bottom:50.165733pt;}
.y47{bottom:56.357333pt;}
.ye{bottom:60.833733pt;}
.y4f{bottom:69.287733pt;}
.y13{bottom:70.793333pt;}
.y12{bottom:71.497733pt;}
.yd{bottom:71.501733pt;}
.y4c{bottom:80.502267pt;}
.y4e{bottom:80.502400pt;}
.y4d{bottom:81.714000pt;}
.y11{bottom:82.165733pt;}
.yc{bottom:82.169733pt;}
.y2b{bottom:129.100133pt;}
.y46{bottom:129.129467pt;}
.y2a{bottom:146.098800pt;}
.y45{bottom:146.128133pt;}
.y29{bottom:163.097467pt;}
.y44{bottom:163.126800pt;}
.y28{bottom:180.096133pt;}
.y43{bottom:180.125467pt;}
.y27{bottom:197.094800pt;}
.y42{bottom:197.124133pt;}
.y26{bottom:214.093467pt;}
.y41{bottom:214.122800pt;}
.y25{bottom:231.092133pt;}
.y40{bottom:231.121467pt;}
.y24{bottom:248.090800pt;}
.y3f{bottom:248.120133pt;}
.y23{bottom:265.089467pt;}
.y3e{bottom:265.118800pt;}
.y22{bottom:282.088133pt;}
.y3d{bottom:282.117467pt;}
.y21{bottom:299.086800pt;}
.y3c{bottom:299.116133pt;}
.y20{bottom:316.085467pt;}
.y3b{bottom:316.114800pt;}
.y1f{bottom:333.084133pt;}
.y3a{bottom:333.113467pt;}
.y6c{bottom:334.177600pt;}
.y75{bottom:334.193600pt;}
.y74{bottom:346.844267pt;}
.y6b{bottom:346.849600pt;}
.y1e{bottom:350.082800pt;}
.y39{bottom:350.112133pt;}
.y73{bottom:359.516267pt;}
.y6a{bottom:359.521600pt;}
.y1d{bottom:367.081467pt;}
.y38{bottom:367.110800pt;}
.y72{bottom:372.188267pt;}
.y69{bottom:372.193600pt;}
.y1c{bottom:384.080133pt;}
.y37{bottom:384.109467pt;}
.y71{bottom:384.860267pt;}
.y68{bottom:384.865600pt;}
.y79{bottom:397.509600pt;}
.y70{bottom:397.514933pt;}
.y67{bottom:397.516267pt;}
.y1b{bottom:401.078800pt;}
.y36{bottom:401.108133pt;}
.y78{bottom:410.181600pt;}
.y6f{bottom:410.186933pt;}
.y66{bottom:410.188267pt;}
.y35{bottom:418.106800pt;}
.y77{bottom:422.853600pt;}
.y6e{bottom:422.858933pt;}
.y65{bottom:422.860267pt;}
.y1a{bottom:435.078800pt;}
.y34{bottom:435.105467pt;}
.y76{bottom:435.525600pt;}
.y6d{bottom:435.530933pt;}
.y64{bottom:435.532267pt;}
.y19{bottom:452.078800pt;}
.y33{bottom:452.104133pt;}
.y63{bottom:459.078800pt;}
.y32{bottom:469.102800pt;}
.y31{bottom:486.101467pt;}
.y5a{bottom:499.546133pt;}
.y18{bottom:503.078800pt;}
.y30{bottom:503.100133pt;}
.y59{bottom:513.694800pt;}
.y17{bottom:520.078800pt;}
.y2f{bottom:520.098800pt;}
.y58{bottom:527.843467pt;}
.y2e{bottom:537.097467pt;}
.y57{bottom:541.992133pt;}
.y54{bottom:541.992667pt;}
.y16{bottom:554.078800pt;}
.y2d{bottom:554.096133pt;}
.y56{bottom:556.140800pt;}
.y53{bottom:570.295067pt;}
.y15{bottom:571.078800pt;}
.y2c{bottom:571.094800pt;}
.y55{bottom:584.443067pt;}
.y52{bottom:620.627733pt;}
.y51{bottom:634.776400pt;}
.y50{bottom:663.078667pt;}
.y8{bottom:714.809867pt;}
.y62{bottom:720.376533pt;}
.y7{bottom:733.896533pt;}
.y61{bottom:734.524533pt;}
.y60{bottom:748.673200pt;}
.y5{bottom:756.151733pt;}
.y6{bottom:761.985067pt;}
.y5c{bottom:780.724000pt;}
.y5e{bottom:781.052000pt;}
.y5b{bottom:784.749200pt;}
.y4{bottom:803.772400pt;}
.y3{bottom:837.107067pt;}
.yb{bottom:928.214533pt;}
.y14{bottom:933.902000pt;}
.ya{bottom:939.545200pt;}
.y2{bottom:949.124000pt;}
.y9{bottom:950.875867pt;}
.y1{bottom:990.866133pt;}
.h10{height:13.041333pt;}
.h12{height:13.052000pt;}
.hc{height:22.848000pt;}
.h6{height:23.552667pt;}
.h8{height:26.656000pt;}
.h9{height:26.677333pt;}
.h7{height:26.917333pt;}
.hf{height:30.945312pt;}
.he{height:31.416000pt;}
.h14{height:31.480000pt;}
.h16{height:31.485333pt;}
.h15{height:31.501333pt;}
.h17{height:31.506667pt;}
.h11{height:32.186667pt;}
.h3{height:33.646667pt;}
.hd{height:36.176000pt;}
.h13{height:36.178667pt;}
.ha{height:38.453333pt;}
.hb{height:41.888000pt;}
.h5{height:48.066667pt;}
.h2{height:50.950667pt;}
.h4{height:88.442667pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w2{width:12.862667pt;}
.w3{width:12.864000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xf{left:3.518667pt;}
.x2{left:56.692933pt;}
.x9{left:64.252933pt;}
.xa{left:73.700800pt;}
.x8{left:172.911600pt;}
.xd{left:178.297733pt;}
.x3{left:182.150933pt;}
.x1{left:289.133867pt;}
.x11{left:306.139667pt;}
.x4{left:335.431067pt;}
.xe{left:374.524000pt;}
.x7{left:405.354267pt;}
.xb{left:422.356800pt;}
.x5{left:520.179733pt;}
.xc{left:521.574800pt;}
.x12{left:538.582867pt;}
.x10{left:557.114667pt;}
.x6{left:608.051867pt;}
}




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