
    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_399a9c06b97301afd466c49c.woff')format("woff");}.ff1{font-family:ff1;line-height:0.964844;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_333af5ee25dc361751a36ceb.woff')format("woff");}.ff2{font-family:ff2;line-height:0.799805;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_6d5e8c0aafb00379fe5e1691.woff')format("woff");}.ff3{font-family:ff3;line-height:0.949000;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_69d31d46d634b7690d2abf83.woff')format("woff");}.ff4{font-family:ff4;line-height:0.954102;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_03fb6b8e6b96d51a3fffc685.woff')format("woff");}.ff5{font-family:ff5;line-height:0.936000;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_e17006ab2e31b3d7a58f0a4c.woff')format("woff");}.ff6{font-family:ff6;line-height:0.731445;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_77d4867b9ebb5f2aac462aad.woff')format("woff");}.ff7{font-family:ff7;line-height:0.724000;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_08562d8d2720cbf842aa1028.woff')format("woff");}.ff8{font-family:ff8;line-height:0.765137;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_2cf5f135e4e944022c43fa8d.woff')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_9a21d8f8e66db59777015c8c.woff')format("woff");}.ffa{font-family:ffa;line-height:0.906250;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_bdb5c856f389794741ac21ef.woff')format("woff");}.ffb{font-family:ffb;line-height:1.693848;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.242383,0.000000,-0.061243,0.242383,0,0);-ms-transform:matrix(0.242383,0.000000,-0.061243,0.242383,0,0);-webkit-transform:matrix(0.242383,0.000000,-0.061243,0.242383,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);}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:21.834600px;}
.v1{vertical-align:48.815400px;}
.v2{vertical-align:53.434800px;}
.lsc{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.005400px;}
.ls15{letter-spacing:0.005616px;}
.ls4{letter-spacing:0.006000px;}
.lse{letter-spacing:0.013824px;}
.ls0{letter-spacing:3.583872px;}
.lsd{letter-spacing:3.594240px;}
.ls1{letter-spacing:3.608064px;}
.ls11{letter-spacing:5.998920px;}
.ls10{letter-spacing:6.005400px;}
.ls8{letter-spacing:12.005400px;}
.lsf{letter-spacing:12.006000px;}
.ls14{letter-spacing:16.114260px;}
.ls13{letter-spacing:16.952640px;}
.ls12{letter-spacing:17.991720px;}
.lsb{letter-spacing:18.000000px;}
.ls5{letter-spacing:18.005400px;}
.ls3{letter-spacing:18.012000px;}
.lsa{letter-spacing:18.012600px;}
.ls7{letter-spacing:22.114200px;}
.ls9{letter-spacing:33.706800px;}
.ls6{letter-spacing:48.499800px;}
.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;}
}
.ws11{word-spacing:-14.784000px;}
.ws1{word-spacing:-3.642624px;}
.ws0{word-spacing:-3.618432px;}
.ws13{word-spacing:-0.061776px;}
.wse{word-spacing:-0.061560px;}
.ws2{word-spacing:-0.056160px;}
.wsf{word-spacing:0.000000px;}
.ws8{word-spacing:11.943840px;}
.ws7{word-spacing:11.949240px;}
.ws6{word-spacing:14.736240px;}
.ws14{word-spacing:14.736840px;}
.ws5{word-spacing:14.742240px;}
.wsa{word-spacing:17.934960px;}
.wsb{word-spacing:17.935560px;}
.ws12{word-spacing:17.937792px;}
.ws10{word-spacing:17.938440px;}
.ws3{word-spacing:17.943840px;}
.wsd{word-spacing:17.945040px;}
.ws9{word-spacing:17.949240px;}
.wsc{word-spacing:17.949840px;}
.ws4{word-spacing:17.955840px;}
._1{width:6.005400px;}
._2{width:12.005400px;}
._5{width:14.793000px;}
._3{width:28.131600px;}
._0{width:48.493800px;}
._4{width:156.900600px;}
.fc4{color:transparent;}
.fc3{color:rgb(194,75,22);}
.fc2{color:rgb(52,52,52);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(128,128,128);}
.fs0{font-size:34.560000px;}
.fs1{font-size:35.646116px;}
.fs8{font-size:39.873600px;}
.fs6{font-size:42.000000px;}
.fs7{font-size:51.840000px;}
.fs2{font-size:56.160000px;}
.fs5{font-size:69.120000px;}
.fs4{font-size:120.960000px;}
.fs3{font-size:146.880000px;}
.y0{bottom:0.000000px;}
.y3e{bottom:1.884000px;}
.y8a{bottom:1.943550px;}
.y5f{bottom:2.461800px;}
.y5d{bottom:2.592900px;}
.y82{bottom:2.604300px;}
.y93{bottom:2.710500px;}
.y36{bottom:2.724300px;}
.y39{bottom:2.926350px;}
.y85{bottom:2.985900px;}
.y8e{bottom:3.047100px;}
.y97{bottom:3.108150px;}
.yf{bottom:3.116850px;}
.y4b{bottom:3.689700px;}
.y1e{bottom:3.709950px;}
.y6e{bottom:3.826200px;}
.y9a{bottom:3.893700px;}
.y61{bottom:3.901800px;}
.y49{bottom:3.984300px;}
.y87{bottom:4.044300px;}
.y3b{bottom:4.164300px;}
.y1c{bottom:4.224300px;}
.y90{bottom:4.284300px;}
.y24{bottom:5.418750px;}
.y51{bottom:5.569350px;}
.ya2{bottom:5.602350px;}
.y2a{bottom:5.695050px;}
.y20{bottom:5.734650px;}
.y76{bottom:5.784300px;}
.y6b{bottom:5.803350px;}
.y4f{bottom:5.860350px;}
.ya0{bottom:5.893350px;}
.y26{bottom:6.010950px;}
.y78{bottom:6.125700px;}
.y4d{bottom:6.151200px;}
.y9e{bottom:6.184350px;}
.y80{bottom:6.252450px;}
.y70{bottom:6.260100px;}
.y2c{bottom:6.287250px;}
.y22{bottom:6.326700px;}
.y1a{bottom:6.340200px;}
.y9c{bottom:6.475200px;}
.y34{bottom:6.552900px;}
.y72{bottom:6.601500px;}
.y28{bottom:6.603000px;}
.y5{bottom:6.604650px;}
.y47{bottom:6.679350px;}
.y53{bottom:6.778500px;}
.y74{bottom:6.942900px;}
.y2e{bottom:8.404050px;}
.y57{bottom:8.715150px;}
.y9{bottom:9.239100px;}
.y55{bottom:10.335600px;}
.y7{bottom:11.219550px;}
.y5c{bottom:15.973650px;}
.y84{bottom:16.344600px;}
.ye{bottom:16.497600px;}
.y92{bottom:16.803450px;}
.y3d{bottom:27.516300px;}
.y89{bottom:27.575850px;}
.y6a{bottom:27.863550px;}
.y7f{bottom:28.312650px;}
.y19{bottom:28.400250px;}
.y38{bottom:28.558650px;}
.y33{bottom:28.613100px;}
.y4{bottom:28.664700px;}
.y46{bottom:28.739550px;}
.y96{bottom:28.740450px;}
.y8d{bottom:29.413650px;}
.y5b{bottom:47.744400px;}
.yd{bottom:48.268350px;}
.y69{bottom:49.923750px;}
.y7e{bottom:50.372850px;}
.y18{bottom:50.460450px;}
.y32{bottom:50.673300px;}
.y45{bottom:50.799750px;}
.y5a{bottom:69.804600px;}
.yc{bottom:70.328550px;}
.y98{bottom:71.983800px;}
.y7d{bottom:72.432900px;}
.y31{bottom:72.733350px;}
.y44{bottom:72.859800px;}
.y68{bottom:94.044000px;}
.y7c{bottom:94.493100px;}
.y17{bottom:94.580700px;}
.y43{bottom:94.920000px;}
.y1{bottom:107.760000px;}
.y67{bottom:116.104200px;}
.y7b{bottom:116.553300px;}
.y16{bottom:116.640900px;}
.y42{bottom:116.980200px;}
.y66{bottom:138.164250px;}
.y7a{bottom:138.613350px;}
.y15{bottom:138.701100px;}
.y41{bottom:139.040250px;}
.y58{bottom:150.804600px;}
.y65{bottom:160.224450px;}
.y14{bottom:160.761150px;}
.y64{bottom:182.284650px;}
.y13{bottom:182.821350px;}
.y59{bottom:188.760000px;}
.y63{bottom:204.344700px;}
.y12{bottom:204.881550px;}
.y56{bottom:289.200000px;}
.y54{bottom:363.000000px;}
.y1d{bottom:368.040000px;}
.y1f{bottom:408.000000px;}
.y4a{bottom:435.360000px;}
.y21{bottom:436.500000px;}
.y23{bottom:466.500000px;}
.y25{bottom:495.000000px;}
.y4c{bottom:502.500000px;}
.y27{bottom:523.500000px;}
.y29{bottom:553.500000px;}
.y4e{bottom:559.500000px;}
.y2b{bottom:582.000000px;}
.y1b{bottom:611.760000px;}
.y50{bottom:616.500000px;}
.y95{bottom:624.000000px;}
.y11{bottom:631.200000px;}
.y99{bottom:648.480000px;}
.y6d{bottom:658.200000px;}
.y94{bottom:665.760000px;}
.y52{bottom:672.000000px;}
.y91{bottom:688.440000px;}
.y48{bottom:696.000000px;}
.y6f{bottom:708.000000px;}
.y40{bottom:714.000000px;}
.y9b{bottom:715.500000px;}
.y10{bottom:728.321550px;}
.y8f{bottom:730.200000px;}
.y3f{bottom:745.280250px;}
.y71{bottom:747.000000px;}
.y8c{bottom:752.880000px;}
.y9d{bottom:772.500000px;}
.y73{bottom:786.000000px;}
.y8b{bottom:795.000000px;}
.y88{bottom:818.760000px;}
.ya{bottom:824.888550px;}
.y75{bottom:826.500000px;}
.y9f{bottom:829.500000px;}
.y86{bottom:859.440000px;}
.yb{bottom:862.320000px;}
.y77{bottom:865.500000px;}
.y83{bottom:881.760000px;}
.y3c{bottom:885.000000px;}
.ya1{bottom:886.500000px;}
.y6c{bottom:908.760000px;}
.y81{bottom:923.880000px;}
.y3a{bottom:925.320000px;}
.y62{bottom:928.200000px;}
.y79{bottom:941.880000px;}
.y37{bottom:948.000000px;}
.y8{bottom:962.760000px;}
.y2f{bottom:972.733350px;}
.y35{bottom:989.760000px;}
.y30{bottom:1007.760000px;}
.y2{bottom:1024.784700px;}
.y6{bottom:1036.200000px;}
.y3{bottom:1103.880000px;}
.y2d{bottom:1111.440000px;}
.y60{bottom:1201.440000px;}
.y5e{bottom:1202.880000px;}
.h13{height:10.800000px;}
.he{height:12.240000px;}
.h29{height:12.600000px;}
.h1c{height:13.680000px;}
.h1e{height:15.120000px;}
.h21{height:21.300000px;}
.h2b{height:21.540000px;}
.hf{height:21.960000px;}
.h2a{height:22.020000px;}
.h17{height:22.140000px;}
.h19{height:22.560000px;}
.h11{height:24.000000px;}
.h22{height:25.500000px;}
.h2{height:28.080000px;}
.h3{height:28.509931px;}
.h1d{height:31.500000px;}
.h20{height:31.910156px;}
.h1f{height:34.551562px;}
.h8{height:39.240000px;}
.h1b{height:39.600000px;}
.h15{height:39.985920px;}
.h14{height:40.680000px;}
.h24{height:41.040000px;}
.hc{height:41.109120px;}
.h27{height:42.120000px;}
.h5{height:43.024922px;}
.h4{height:43.920000px;}
.h1a{height:46.800000px;}
.h6{height:48.600000px;}
.h10{height:49.680000px;}
.h18{height:55.282500px;}
.h28{height:59.916797px;}
.ha{height:84.240000px;}
.h9{height:86.123520px;}
.h12{height:87.480000px;}
.hb{height:91.840322px;}
.h7{height:104.578560px;}
.h25{height:109.011197px;}
.h26{height:113.351597px;}
.h16{height:153.000000px;}
.h23{height:153.360000px;}
.hd{height:219.600000px;}
.h1{height:1047.240000px;}
.h0{height:1263.000000px;}
.w13{width:9.000000px;}
.w18{width:9.360000px;}
.w12{width:13.500000px;}
.w14{width:13.680000px;}
.w17{width:14.040000px;}
.w6{width:15.000000px;}
.w9{width:21.720000px;}
.w11{width:23.580000px;}
.w8{width:24.000000px;}
.w7{width:25.500000px;}
.w10{width:26.220000px;}
.w16{width:26.580000px;}
.we{width:28.500000px;}
.wf{width:30.000000px;}
.wa{width:35.580000px;}
.wc{width:46.440000px;}
.w15{width:141.120000px;}
.w1b{width:152.280000px;}
.w1c{width:157.680000px;}
.w1a{width:206.280000px;}
.wb{width:219.960000px;}
.w3{width:353.880000px;}
.w19{width:462.600000px;}
.w2{width:492.840000px;}
.w4{width:623.520000px;}
.wd{width:631.800000px;}
.w1d{width:654.840000px;}
.w5{width:681.120000px;}
.w1{width:838.500000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x24{left:1.023900px;}
.xe{left:2.486700px;}
.x1c{left:7.434840px;}
.xb{left:9.894000px;}
.x14{left:13.520265px;}
.x6{left:19.068000px;}
.x29{left:20.185050px;}
.x1{left:27.000000px;}
.xa{left:28.242000px;}
.x2a{left:46.590000px;}
.x1a{left:62.964840px;}
.x7{left:64.800000px;}
.x2{left:66.388440px;}
.x3{left:78.340155px;}
.x19{left:81.000000px;}
.xc{left:82.440000px;}
.x4{left:86.242500px;}
.x1b{left:99.000000px;}
.x28{left:109.606500px;}
.x1d{left:110.880000px;}
.x5{left:133.200000px;}
.x8{left:143.589000px;}
.x1e{left:154.500000px;}
.xd{left:163.500000px;}
.x9{left:182.815050px;}
.x1f{left:219.000000px;}
.xf{left:226.500000px;}
.x15{left:232.500000px;}
.x20{left:289.500000px;}
.x10{left:295.500000px;}
.x16{left:319.500000px;}
.x21{left:360.000000px;}
.x11{left:364.500000px;}
.x17{left:408.000000px;}
.x22{left:430.500000px;}
.x12{left:432.000000px;}
.x18{left:496.500000px;}
.x13{left:501.000000px;}
.x23{left:640.440000px;}
.x26{left:765.815100px;}
.x25{left:779.760000px;}
.x27{left:802.440000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:19.408533pt;}
.v1{vertical-align:43.391467pt;}
.v2{vertical-align:47.497600pt;}
.lsc{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.004800pt;}
.ls15{letter-spacing:0.004992pt;}
.ls4{letter-spacing:0.005333pt;}
.lse{letter-spacing:0.012288pt;}
.ls0{letter-spacing:3.185664pt;}
.lsd{letter-spacing:3.194880pt;}
.ls1{letter-spacing:3.207168pt;}
.ls11{letter-spacing:5.332373pt;}
.ls10{letter-spacing:5.338133pt;}
.ls8{letter-spacing:10.671467pt;}
.lsf{letter-spacing:10.672000pt;}
.ls14{letter-spacing:14.323787pt;}
.ls13{letter-spacing:15.069013pt;}
.ls12{letter-spacing:15.992640pt;}
.lsb{letter-spacing:16.000000pt;}
.ls5{letter-spacing:16.004800pt;}
.ls3{letter-spacing:16.010667pt;}
.lsa{letter-spacing:16.011200pt;}
.ls7{letter-spacing:19.657067pt;}
.ls9{letter-spacing:29.961600pt;}
.ls6{letter-spacing:43.110933pt;}
.ws11{word-spacing:-13.141333pt;}
.ws1{word-spacing:-3.237888pt;}
.ws0{word-spacing:-3.216384pt;}
.ws13{word-spacing:-0.054912pt;}
.wse{word-spacing:-0.054720pt;}
.ws2{word-spacing:-0.049920pt;}
.wsf{word-spacing:0.000000pt;}
.ws8{word-spacing:10.616747pt;}
.ws7{word-spacing:10.621547pt;}
.ws6{word-spacing:13.098880pt;}
.ws14{word-spacing:13.099413pt;}
.ws5{word-spacing:13.104213pt;}
.wsa{word-spacing:15.942187pt;}
.wsb{word-spacing:15.942720pt;}
.ws12{word-spacing:15.944704pt;}
.ws10{word-spacing:15.945280pt;}
.ws3{word-spacing:15.950080pt;}
.wsd{word-spacing:15.951147pt;}
.ws9{word-spacing:15.954880pt;}
.wsc{word-spacing:15.955413pt;}
.ws4{word-spacing:15.960747pt;}
._1{width:5.338133pt;}
._2{width:10.671467pt;}
._5{width:13.149333pt;}
._3{width:25.005867pt;}
._0{width:43.105600pt;}
._4{width:139.467200pt;}
.fs0{font-size:30.720000pt;}
.fs1{font-size:31.685436pt;}
.fs8{font-size:35.443200pt;}
.fs6{font-size:37.333333pt;}
.fs7{font-size:46.080000pt;}
.fs2{font-size:49.920000pt;}
.fs5{font-size:61.440000pt;}
.fs4{font-size:107.520000pt;}
.fs3{font-size:130.560000pt;}
.y0{bottom:0.000000pt;}
.y3e{bottom:1.674667pt;}
.y8a{bottom:1.727600pt;}
.y5f{bottom:2.188267pt;}
.y5d{bottom:2.304800pt;}
.y82{bottom:2.314933pt;}
.y93{bottom:2.409333pt;}
.y36{bottom:2.421600pt;}
.y39{bottom:2.601200pt;}
.y85{bottom:2.654133pt;}
.y8e{bottom:2.708533pt;}
.y97{bottom:2.762800pt;}
.yf{bottom:2.770533pt;}
.y4b{bottom:3.279733pt;}
.y1e{bottom:3.297733pt;}
.y6e{bottom:3.401067pt;}
.y9a{bottom:3.461067pt;}
.y61{bottom:3.468267pt;}
.y49{bottom:3.541600pt;}
.y87{bottom:3.594933pt;}
.y3b{bottom:3.701600pt;}
.y1c{bottom:3.754933pt;}
.y90{bottom:3.808267pt;}
.y24{bottom:4.816667pt;}
.y51{bottom:4.950533pt;}
.ya2{bottom:4.979867pt;}
.y2a{bottom:5.062267pt;}
.y20{bottom:5.097467pt;}
.y76{bottom:5.141600pt;}
.y6b{bottom:5.158533pt;}
.y4f{bottom:5.209200pt;}
.ya0{bottom:5.238533pt;}
.y26{bottom:5.343067pt;}
.y78{bottom:5.445067pt;}
.y4d{bottom:5.467733pt;}
.y9e{bottom:5.497200pt;}
.y80{bottom:5.557733pt;}
.y70{bottom:5.564533pt;}
.y2c{bottom:5.588667pt;}
.y22{bottom:5.623733pt;}
.y1a{bottom:5.635733pt;}
.y9c{bottom:5.755733pt;}
.y34{bottom:5.824800pt;}
.y72{bottom:5.868000pt;}
.y28{bottom:5.869333pt;}
.y5{bottom:5.870800pt;}
.y47{bottom:5.937200pt;}
.y53{bottom:6.025333pt;}
.y74{bottom:6.171467pt;}
.y2e{bottom:7.470267pt;}
.y57{bottom:7.746800pt;}
.y9{bottom:8.212533pt;}
.y55{bottom:9.187200pt;}
.y7{bottom:9.972933pt;}
.y5c{bottom:14.198800pt;}
.y84{bottom:14.528533pt;}
.ye{bottom:14.664533pt;}
.y92{bottom:14.936400pt;}
.y3d{bottom:24.458933pt;}
.y89{bottom:24.511867pt;}
.y6a{bottom:24.767600pt;}
.y7f{bottom:25.166800pt;}
.y19{bottom:25.244667pt;}
.y38{bottom:25.385467pt;}
.y33{bottom:25.433867pt;}
.y4{bottom:25.479733pt;}
.y46{bottom:25.546267pt;}
.y96{bottom:25.547067pt;}
.y8d{bottom:26.145467pt;}
.y5b{bottom:42.439467pt;}
.yd{bottom:42.905200pt;}
.y69{bottom:44.376667pt;}
.y7e{bottom:44.775867pt;}
.y18{bottom:44.853733pt;}
.y32{bottom:45.042933pt;}
.y45{bottom:45.155333pt;}
.y5a{bottom:62.048533pt;}
.yc{bottom:62.514267pt;}
.y98{bottom:63.985600pt;}
.y7d{bottom:64.384800pt;}
.y31{bottom:64.651867pt;}
.y44{bottom:64.764267pt;}
.y68{bottom:83.594667pt;}
.y7c{bottom:83.993867pt;}
.y17{bottom:84.071733pt;}
.y43{bottom:84.373333pt;}
.y1{bottom:95.786667pt;}
.y67{bottom:103.203733pt;}
.y7b{bottom:103.602933pt;}
.y16{bottom:103.680800pt;}
.y42{bottom:103.982400pt;}
.y66{bottom:122.812667pt;}
.y7a{bottom:123.211867pt;}
.y15{bottom:123.289867pt;}
.y41{bottom:123.591333pt;}
.y58{bottom:134.048533pt;}
.y65{bottom:142.421733pt;}
.y14{bottom:142.898800pt;}
.y64{bottom:162.030800pt;}
.y13{bottom:162.507867pt;}
.y59{bottom:167.786667pt;}
.y63{bottom:181.639733pt;}
.y12{bottom:182.116933pt;}
.y56{bottom:257.066667pt;}
.y54{bottom:322.666667pt;}
.y1d{bottom:327.146667pt;}
.y1f{bottom:362.666667pt;}
.y4a{bottom:386.986667pt;}
.y21{bottom:388.000000pt;}
.y23{bottom:414.666667pt;}
.y25{bottom:440.000000pt;}
.y4c{bottom:446.666667pt;}
.y27{bottom:465.333333pt;}
.y29{bottom:492.000000pt;}
.y4e{bottom:497.333333pt;}
.y2b{bottom:517.333333pt;}
.y1b{bottom:543.786667pt;}
.y50{bottom:548.000000pt;}
.y95{bottom:554.666667pt;}
.y11{bottom:561.066667pt;}
.y99{bottom:576.426667pt;}
.y6d{bottom:585.066667pt;}
.y94{bottom:591.786667pt;}
.y52{bottom:597.333333pt;}
.y91{bottom:611.946667pt;}
.y48{bottom:618.666667pt;}
.y6f{bottom:629.333333pt;}
.y40{bottom:634.666667pt;}
.y9b{bottom:636.000000pt;}
.y10{bottom:647.396933pt;}
.y8f{bottom:649.066667pt;}
.y3f{bottom:662.471333pt;}
.y71{bottom:664.000000pt;}
.y8c{bottom:669.226667pt;}
.y9d{bottom:686.666667pt;}
.y73{bottom:698.666667pt;}
.y8b{bottom:706.666667pt;}
.y88{bottom:727.786667pt;}
.ya{bottom:733.234267pt;}
.y75{bottom:734.666667pt;}
.y9f{bottom:737.333333pt;}
.y86{bottom:763.946667pt;}
.yb{bottom:766.506667pt;}
.y77{bottom:769.333333pt;}
.y83{bottom:783.786667pt;}
.y3c{bottom:786.666667pt;}
.ya1{bottom:788.000000pt;}
.y6c{bottom:807.786667pt;}
.y81{bottom:821.226667pt;}
.y3a{bottom:822.506667pt;}
.y62{bottom:825.066667pt;}
.y79{bottom:837.226667pt;}
.y37{bottom:842.666667pt;}
.y8{bottom:855.786667pt;}
.y2f{bottom:864.651867pt;}
.y35{bottom:879.786667pt;}
.y30{bottom:895.786667pt;}
.y2{bottom:910.919733pt;}
.y6{bottom:921.066667pt;}
.y3{bottom:981.226667pt;}
.y2d{bottom:987.946667pt;}
.y60{bottom:1067.946667pt;}
.y5e{bottom:1069.226667pt;}
.h13{height:9.600000pt;}
.he{height:10.880000pt;}
.h29{height:11.200000pt;}
.h1c{height:12.160000pt;}
.h1e{height:13.440000pt;}
.h21{height:18.933333pt;}
.h2b{height:19.146667pt;}
.hf{height:19.520000pt;}
.h2a{height:19.573333pt;}
.h17{height:19.680000pt;}
.h19{height:20.053333pt;}
.h11{height:21.333333pt;}
.h22{height:22.666667pt;}
.h2{height:24.960000pt;}
.h3{height:25.342161pt;}
.h1d{height:28.000000pt;}
.h20{height:28.364583pt;}
.h1f{height:30.712500pt;}
.h8{height:34.880000pt;}
.h1b{height:35.200000pt;}
.h15{height:35.543040pt;}
.h14{height:36.160000pt;}
.h24{height:36.480000pt;}
.hc{height:36.541440pt;}
.h27{height:37.440000pt;}
.h5{height:38.244375pt;}
.h4{height:39.040000pt;}
.h1a{height:41.600000pt;}
.h6{height:43.200000pt;}
.h10{height:44.160000pt;}
.h18{height:49.140000pt;}
.h28{height:53.259375pt;}
.ha{height:74.880000pt;}
.h9{height:76.554240pt;}
.h12{height:77.760000pt;}
.hb{height:81.635842pt;}
.h7{height:92.958720pt;}
.h25{height:96.898842pt;}
.h26{height:100.756975pt;}
.h16{height:136.000000pt;}
.h23{height:136.320000pt;}
.hd{height:195.200000pt;}
.h1{height:930.880000pt;}
.h0{height:1122.666667pt;}
.w13{width:8.000000pt;}
.w18{width:8.320000pt;}
.w12{width:12.000000pt;}
.w14{width:12.160000pt;}
.w17{width:12.480000pt;}
.w6{width:13.333333pt;}
.w9{width:19.306667pt;}
.w11{width:20.960000pt;}
.w8{width:21.333333pt;}
.w7{width:22.666667pt;}
.w10{width:23.306667pt;}
.w16{width:23.626667pt;}
.we{width:25.333333pt;}
.wf{width:26.666667pt;}
.wa{width:31.626667pt;}
.wc{width:41.280000pt;}
.w15{width:125.440000pt;}
.w1b{width:135.360000pt;}
.w1c{width:140.160000pt;}
.w1a{width:183.360000pt;}
.wb{width:195.520000pt;}
.w3{width:314.560000pt;}
.w19{width:411.200000pt;}
.w2{width:438.080000pt;}
.w4{width:554.240000pt;}
.wd{width:561.600000pt;}
.w1d{width:582.080000pt;}
.w5{width:605.440000pt;}
.w1{width:745.333333pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x24{left:0.910133pt;}
.xe{left:2.210400pt;}
.x1c{left:6.608747pt;}
.xb{left:8.794667pt;}
.x14{left:12.018013pt;}
.x6{left:16.949333pt;}
.x29{left:17.942267pt;}
.x1{left:24.000000pt;}
.xa{left:25.104000pt;}
.x2a{left:41.413333pt;}
.x1a{left:55.968747pt;}
.x7{left:57.600000pt;}
.x2{left:59.011947pt;}
.x3{left:69.635693pt;}
.x19{left:72.000000pt;}
.xc{left:73.280000pt;}
.x4{left:76.660000pt;}
.x1b{left:88.000000pt;}
.x28{left:97.428000pt;}
.x1d{left:98.560000pt;}
.x5{left:118.400000pt;}
.x8{left:127.634667pt;}
.x1e{left:137.333333pt;}
.xd{left:145.333333pt;}
.x9{left:162.502267pt;}
.x1f{left:194.666667pt;}
.xf{left:201.333333pt;}
.x15{left:206.666667pt;}
.x20{left:257.333333pt;}
.x10{left:262.666667pt;}
.x16{left:284.000000pt;}
.x21{left:320.000000pt;}
.x11{left:324.000000pt;}
.x17{left:362.666667pt;}
.x22{left:382.666667pt;}
.x12{left:384.000000pt;}
.x18{left:441.333333pt;}
.x13{left:445.333333pt;}
.x23{left:569.280000pt;}
.x26{left:680.724533pt;}
.x25{left:693.120000pt;}
.x27{left:713.280000pt;}
}




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