
    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;}
.ff1{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff2;src:url('chunks/assets/font_c130504278632a1b14fbcb19.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.066406;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;}
.ff3{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff4;src:url('chunks/assets/font_35eda8f746229ae629a7b15b.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_e80855143cae4b3e1c6b7534.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_25255f59b99a171f4411da4c.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.030000;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_d679408af5103c45031db098.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_aae5dce304cbc7c260e5601a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.983398;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_1ba2c05cafb729829ed56a5a.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.335000;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_bc0afd9c83360eaf2e89f1fe.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_8733e09b85a6c054c0804def.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.270000;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_f936d00a3815244314a31083.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_a5694c8b0283c46e8c9afdc6.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_2a85ab10dc5497088affc1dc.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.997000;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:fff;src:url('chunks/assets/font_79792391521db7cb420df5ca.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_416c9e3061e45989dcf12d6a.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.996000;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:ff11;src:url('chunks/assets/font_b2269f2644b056c626bdc957.woff2')format("woff");}.ff11{font-family:ff11;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;}
.ff12{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff13;src:url('chunks/assets/font_1ba54fd1f1e8a0fc6f15d68a.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.875000;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:ff14;src:url('chunks/assets/font_27d63269b1824f591ee36239.woff2')format("woff");}.ff14{font-family:ff14;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;}
.m2{transform:matrix(0.244468,-0.052302,0.052302,0.244468,0,0);-ms-transform:matrix(0.244468,-0.052302,0.052302,0.244468,0,0);-webkit-transform:matrix(0.244468,-0.052302,0.052302,0.244468,0,0);}
.m1{transform:matrix(0.249268,0.019123,-0.019123,0.249268,0,0);-ms-transform:matrix(0.249268,0.019123,-0.019123,0.249268,0,0);-webkit-transform:matrix(0.249268,0.019123,-0.019123,0.249268,0,0);}
.m3{transform:matrix(0.249706,-0.012120,0.012120,0.249706,0,0);-ms-transform:matrix(0.249706,-0.012120,0.012120,0.249706,0,0);-webkit-transform:matrix(0.249706,-0.012120,0.012120,0.249706,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;}
.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;}
}
.ws9{word-spacing:-98.578479px;}
.ws3{word-spacing:-97.199996px;}
.ws2{word-spacing:-83.143278px;}
.ws5{word-spacing:-57.590998px;}
.ws4{word-spacing:-46.790998px;}
.wsc{word-spacing:-46.193398px;}
.ws1{word-spacing:-32.996701px;}
.wsa{word-spacing:-30.353399px;}
.ws6{word-spacing:-26.393399px;}
.ws7{word-spacing:-23.750099px;}
.wsb{word-spacing:-0.851639px;}
.ws0{word-spacing:0.000000px;}
.ws8{word-spacing:969.980799px;}
._7{margin-left:-2526.479113px;}
._8{margin-left:-2465.521292px;}
._9{margin-left:-2407.059423px;}
._c{margin-left:-4.428066px;}
._a{margin-left:-3.240145px;}
._2{margin-left:-2.053198px;}
._d{width:1.080385px;}
._b{width:2.159767px;}
._5{width:6.537694px;}
._6{width:8.049199px;}
._10{width:9.139951px;}
._1{width:10.663958px;}
._4{width:12.683623px;}
._0{width:13.792994px;}
._14{width:16.033386px;}
._17{width:18.735109px;}
._f{width:19.909417px;}
._15{width:27.511493px;}
._13{width:28.849001px;}
._e{width:32.064773px;}
._16{width:34.524712px;}
._11{width:42.643850px;}
._12{width:65.153591px;}
._3{width:701.313556px;}
.fc1{color:transparent;}
.fc2{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:107.954996px;}
.fse{font-size:107.999996px;}
.fsd{font-size:113.984995px;}
.fs6{font-size:119.969995px;}
.fsa{font-size:125.954995px;}
.fs14{font-size:137.969994px;}
.fs10{font-size:143.954994px;}
.fs3{font-size:149.985003px;}
.fs8{font-size:155.969994px;}
.fsb{font-size:159.974989px;}
.fsf{font-size:161.955002px;}
.fs2{font-size:179.999993px;}
.fs13{font-size:185.985001px;}
.fs12{font-size:188.089491px;}
.fs9{font-size:191.969992px;}
.fs17{font-size:209.969991px;}
.fs5{font-size:226.004203px;}
.fs11{font-size:227.969985px;}
.fs4{font-size:277.144260px;}
.fs7{font-size:323.999987px;}
.fs15{font-size:328.594929px;}
.fs0{font-size:627.570005px;}
.fs16{font-size:851.638529px;}
.fs1{font-size:971.054915px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000010px;}
.y53{bottom:14.593367px;}
.yf{bottom:17.525678px;}
.y59{bottom:25.291920px;}
.yb{bottom:53.757885px;}
.y5e{bottom:57.309844px;}
.ya{bottom:131.592658px;}
.y62{bottom:173.789741px;}
.y12{bottom:192.902860px;}
.y1e{bottom:225.425547px;}
.y17{bottom:226.308159px;}
.y61{bottom:236.789738px;}
.y50{bottom:255.708889px;}
.y5b{bottom:263.041693px;}
.y1d{bottom:274.925545px;}
.y16{bottom:275.808157px;}
.y4f{bottom:296.208888px;}
.y60{bottom:299.789736px;}
.y5a{bottom:301.291691px;}
.y35{bottom:302.354915px;}
.y5d{bottom:305.842489px;}
.y4e{bottom:336.708886px;}
.y34{bottom:337.229914px;}
.y57{bottom:339.541690px;}
.y30{bottom:348.614445px;}
.y5f{bottom:362.789733px;}
.y33{bottom:372.104912px;}
.y4d{bottom:377.208884px;}
.y56{bottom:377.791688px;}
.y2f{bottom:382.364444px;}
.y32{bottom:406.979911px;}
.y55{bottom:416.041687px;}
.y2e{bottom:416.114443px;}
.y4c{bottom:417.708883px;}
.y3f{bottom:426.286494px;}
.y5c{bottom:434.879992px;}
.y8{bottom:447.259229px;}
.y2d{bottom:449.864441px;}
.y3e{bottom:457.786493px;}
.y4b{bottom:458.208881px;}
.y3d{bottom:489.286492px;}
.y43{bottom:491.714803px;}
.y3{bottom:495.220188px;}
.y1c{bottom:495.472155px;}
.y7{bottom:495.634227px;}
.y15{bottom:501.131787px;}
.y54{bottom:513.300039px;}
.y3c{bottom:520.786490px;}
.y4a{bottom:522.653198px;}
.y42{bottom:528.839802px;}
.y6{bottom:544.009225px;}
.y1b{bottom:544.972153px;}
.y14{bottom:550.631785px;}
.y3b{bottom:552.286489px;}
.y41{bottom:565.964800px;}
.y40{bottom:603.089798px;}
.y2c{bottom:652.644552px;}
.y23{bottom:666.324509px;}
.y49{bottom:681.287753px;}
.y2b{bottom:686.394551px;}
.y22{bottom:701.199507px;}
.y2a{bottom:720.144550px;}
.y37{bottom:721.730098px;}
.y48{bottom:721.787752px;}
.y19{bottom:741.084536px;}
.y2{bottom:746.354565px;}
.y3a{bottom:749.839670px;}
.y36{bottom:753.230096px;}
.y29{bottom:753.894548px;}
.y51{bottom:758.759922px;}
.y47{bottom:762.287750px;}
.y58{bottom:767.879978px;}
.y1a{bottom:777.409906px;}
.y11{bottom:781.816741px;}
.y9{bottom:782.999977px;}
.yd{bottom:783.507578px;}
.y39{bottom:783.589669px;}
.y28{bottom:787.644547px;}
.y18{bottom:790.584533px;}
.y46{bottom:802.787748px;}
.y38{bottom:817.339668px;}
.y52{bottom:829.799976px;}
.y10{bottom:833.566739px;}
.yc{bottom:834.132576px;}
.y45{bottom:843.287746px;}
.y21{bottom:872.543635px;}
.y27{bottom:899.818249px;}
.y20{bottom:906.293633px;}
.ye{bottom:913.319972px;}
.y44{bottom:918.824992px;}
.y26{bottom:933.568248px;}
.y1f{bottom:940.043632px;}
.y13{bottom:953.143225px;}
.y25{bottom:967.318246px;}
.y31{bottom:972.773859px;}
.y5{bottom:994.499959px;}
.y24{bottom:1001.068245px;}
.y4{bottom:1048.499956px;}
.hb{height:75.599997px;}
.h14{height:86.363996px;}
.h16{height:86.399996px;}
.hd{height:90.563287px;}
.h15{height:91.187996px;}
.h11{height:95.975996px;}
.h12{height:100.763996px;}
.h1d{height:110.375995px;}
.h18{height:115.163995px;}
.h8{height:119.988002px;}
.h7{height:143.999994px;}
.h1e{height:146.879994px;}
.h13{height:156.775489px;}
.h17{height:158.715902px;}
.hf{height:160.649093px;}
.h23{height:167.975993px;}
.h1a{height:181.799992px;}
.h1c{height:182.265301px;}
.h19{height:182.375988px;}
.h1b{height:184.327702px;}
.h10{height:197.729092px;}
.h9{height:210.599991px;}
.hc{height:229.394266px;}
.ha{height:281.301424px;}
.h1f{height:322.023030px;}
.he{height:333.719986px;}
.h20{height:504.359979px;}
.h4{height:510.819921px;}
.h3{height:596.191505px;}
.h22{height:735.203574px;}
.h6{height:790.404562px;}
.h21{height:809.056603px;}
.h5{height:922.502169px;}
.h2{height:1214.999949px;}
.h0{height:1214.999989px;}
.h1{height:1215.000000px;}
.w2{width:429.839982px;}
.w6{width:519.839978px;}
.w4{width:575.639976px;}
.w3{width:619.559974px;}
.w5{width:763.199968px;}
.w1{width:2159.999910px;}
.w0{width:2160.000000px;}
.x0{left:0.000000px;}
.x8{left:2.606481px;}
.x34{left:4.320455px;}
.x3a{left:7.426811px;}
.x30{left:10.304570px;}
.x1f{left:58.009568px;}
.x3b{left:70.072360px;}
.x7{left:121.919527px;}
.x2f{left:124.919995px;}
.x1c{left:152.519552px;}
.x2e{left:154.781976px;}
.x1b{left:233.465153px;}
.x35{left:254.927801px;}
.x25{left:285.710172px;}
.x31{left:301.997867px;}
.x2{left:368.919784px;}
.x1a{left:421.959621px;}
.x19{left:423.313137px;}
.x17{left:472.482448px;}
.xa{left:483.839980px;}
.x9{left:502.444096px;}
.x18{left:511.892602px;}
.xb{left:519.982668px;}
.x1{left:529.474593px;}
.xf{left:614.091502px;}
.x16{left:668.173552px;}
.x26{left:699.012046px;}
.x28{left:709.207358px;}
.x27{left:714.357749px;}
.x29{left:728.578451px;}
.xe{left:740.081890px;}
.x33{left:742.679969px;}
.x24{left:744.754181px;}
.x3d{left:746.244505px;}
.x39{left:763.559968px;}
.x3c{left:811.828487px;}
.x32{left:831.975949px;}
.x5{left:857.816316px;}
.x36{left:868.766963px;}
.x3e{left:892.582390px;}
.x2d{left:921.218866px;}
.x2c{left:943.906690px;}
.xc{left:987.731052px;}
.x22{left:1198.495498px;}
.xd{left:1232.708241px;}
.x14{left:1315.875365px;}
.x15{left:1336.107786px;}
.x37{left:1409.309329px;}
.x38{left:1445.449953px;}
.x11{left:1497.166885px;}
.x2b{left:1504.326897px;}
.x2a{left:1519.285558px;}
.x13{left:1529.953079px;}
.x10{left:1531.057508px;}
.x6{left:1540.079936px;}
.x12{left:1549.130812px;}
.x1d{left:1636.277116px;}
.x23{left:1682.977070px;}
.x4{left:1724.003730px;}
.x1e{left:1731.204432px;}
.x3{left:1768.652166px;}
.x20{left:1795.885953px;}
.x21{left:1803.352956px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws9{word-spacing:-87.625314pt;}
.ws3{word-spacing:-86.399996pt;}
.ws2{word-spacing:-73.905136pt;}
.ws5{word-spacing:-51.191998pt;}
.ws4{word-spacing:-41.591998pt;}
.wsc{word-spacing:-41.060798pt;}
.ws1{word-spacing:-29.330401pt;}
.wsa{word-spacing:-26.980799pt;}
.ws6{word-spacing:-23.460799pt;}
.ws7{word-spacing:-21.111199pt;}
.wsb{word-spacing:-0.757012pt;}
.ws0{word-spacing:0.000000pt;}
.ws8{word-spacing:862.205155pt;}
._7{margin-left:-2245.759211pt;}
._8{margin-left:-2191.574482pt;}
._9{margin-left:-2139.608376pt;}
._c{margin-left:-3.936058pt;}
._a{margin-left:-2.880129pt;}
._2{margin-left:-1.825065pt;}
._d{width:0.960342pt;}
._b{width:1.919793pt;}
._5{width:5.811284pt;}
._6{width:7.154844pt;}
._10{width:8.124401pt;}
._1{width:9.479074pt;}
._4{width:11.274332pt;}
._0{width:12.260439pt;}
._14{width:14.251899pt;}
._17{width:16.653430pt;}
._f{width:17.697259pt;}
._15{width:24.454660pt;}
._13{width:25.643557pt;}
._e{width:28.502020pt;}
._16{width:30.688633pt;}
._11{width:37.905644pt;}
._12{width:57.914303pt;}
._3{width:623.389828pt;}
.fsc{font-size:95.959996pt;}
.fse{font-size:95.999996pt;}
.fsd{font-size:101.319996pt;}
.fs6{font-size:106.639996pt;}
.fsa{font-size:111.959995pt;}
.fs14{font-size:122.639995pt;}
.fs10{font-size:127.959995pt;}
.fs3{font-size:133.320002pt;}
.fs8{font-size:138.639994pt;}
.fsb{font-size:142.199990pt;}
.fsf{font-size:143.960002pt;}
.fs2{font-size:159.999993pt;}
.fs13{font-size:165.320001pt;}
.fs12{font-size:167.190659pt;}
.fs9{font-size:170.639993pt;}
.fs17{font-size:186.639992pt;}
.fs5{font-size:200.892625pt;}
.fs11{font-size:202.639987pt;}
.fs4{font-size:246.350453pt;}
.fs7{font-size:287.999988pt;}
.fs15{font-size:292.084381pt;}
.fs0{font-size:557.840005pt;}
.fs16{font-size:757.012026pt;}
.fs1{font-size:863.159924pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000009pt;}
.y53{bottom:12.971882pt;}
.yf{bottom:15.578381pt;}
.y59{bottom:22.481706pt;}
.yb{bottom:47.784786pt;}
.y5e{bottom:50.942084pt;}
.ya{bottom:116.971251pt;}
.y62{bottom:154.479770pt;}
.y12{bottom:171.469209pt;}
.y1e{bottom:200.378264pt;}
.y17{bottom:201.162808pt;}
.y61{bottom:210.479767pt;}
.y50{bottom:227.296791pt;}
.y5b{bottom:233.814838pt;}
.y1d{bottom:244.378262pt;}
.y16{bottom:245.162806pt;}
.y4f{bottom:263.296789pt;}
.y60{bottom:266.479765pt;}
.y5a{bottom:267.814837pt;}
.y35{bottom:268.759925pt;}
.y5d{bottom:271.859990pt;}
.y4e{bottom:299.296788pt;}
.y34{bottom:299.759924pt;}
.y57{bottom:301.814835pt;}
.y30{bottom:309.879507pt;}
.y5f{bottom:322.479763pt;}
.y33{bottom:330.759922pt;}
.y4d{bottom:335.296786pt;}
.y56{bottom:335.814834pt;}
.y2f{bottom:339.879506pt;}
.y32{bottom:361.759921pt;}
.y55{bottom:369.814833pt;}
.y2e{bottom:369.879505pt;}
.y4c{bottom:371.296785pt;}
.y3f{bottom:378.921328pt;}
.y5c{bottom:386.559993pt;}
.y8{bottom:397.563759pt;}
.y2d{bottom:399.879503pt;}
.y3e{bottom:406.921327pt;}
.y4b{bottom:407.296783pt;}
.y3d{bottom:434.921326pt;}
.y43{bottom:437.079825pt;}
.y3{bottom:440.195722pt;}
.y1c{bottom:440.419694pt;}
.y7{bottom:440.563758pt;}
.y15{bottom:445.450477pt;}
.y54{bottom:456.266701pt;}
.y3c{bottom:462.921325pt;}
.y4a{bottom:464.580621pt;}
.y42{bottom:470.079824pt;}
.y6{bottom:483.563756pt;}
.y1b{bottom:484.419692pt;}
.y14{bottom:489.450476pt;}
.y3b{bottom:490.921324pt;}
.y41{bottom:503.079822pt;}
.y40{bottom:536.079821pt;}
.y2c{bottom:580.128491pt;}
.y23{bottom:592.288452pt;}
.y49{bottom:605.589114pt;}
.y2b{bottom:610.128490pt;}
.y22{bottom:623.288451pt;}
.y2a{bottom:640.128489pt;}
.y37{bottom:641.537864pt;}
.y48{bottom:641.589112pt;}
.y19{bottom:658.741809pt;}
.y2{bottom:663.426280pt;}
.y3a{bottom:666.524151pt;}
.y36{bottom:669.537863pt;}
.y29{bottom:670.128487pt;}
.y51{bottom:674.453264pt;}
.y47{bottom:677.589111pt;}
.y58{bottom:682.559981pt;}
.y1a{bottom:691.031027pt;}
.y11{bottom:694.948214pt;}
.y9{bottom:695.999980pt;}
.yd{bottom:696.451181pt;}
.y39{bottom:696.524150pt;}
.y28{bottom:700.128486pt;}
.y18{bottom:702.741808pt;}
.y46{bottom:713.589109pt;}
.y38{bottom:726.524149pt;}
.y52{bottom:737.599978pt;}
.y10{bottom:740.948212pt;}
.yc{bottom:741.451179pt;}
.y45{bottom:749.589108pt;}
.y21{bottom:775.594342pt;}
.y27{bottom:799.838443pt;}
.y20{bottom:805.594341pt;}
.ye{bottom:811.839975pt;}
.y44{bottom:816.733326pt;}
.y26{bottom:829.838442pt;}
.y1f{bottom:835.594340pt;}
.y13{bottom:847.238422pt;}
.y25{bottom:859.838441pt;}
.y31{bottom:864.687874pt;}
.y5{bottom:883.999963pt;}
.y24{bottom:889.838440pt;}
.y4{bottom:931.999961pt;}
.hb{height:67.199997pt;}
.h14{height:76.767997pt;}
.h16{height:76.799997pt;}
.hd{height:80.500700pt;}
.h15{height:81.055997pt;}
.h11{height:85.311996pt;}
.h12{height:89.567996pt;}
.h1d{height:98.111996pt;}
.h18{height:102.367996pt;}
.h8{height:106.656002pt;}
.h7{height:127.999995pt;}
.h1e{height:130.559995pt;}
.h13{height:139.355990pt;}
.h17{height:141.080802pt;}
.hf{height:142.799194pt;}
.h23{height:149.311994pt;}
.h1a{height:161.599993pt;}
.h1c{height:162.013601pt;}
.h19{height:162.111989pt;}
.h1b{height:163.846846pt;}
.h10{height:175.759193pt;}
.h9{height:187.199992pt;}
.hc{height:203.906015pt;}
.ha{height:250.045710pt;}
.h1f{height:286.242693pt;}
.he{height:296.639988pt;}
.h20{height:448.319981pt;}
.h4{height:454.062152pt;}
.h3{height:529.948005pt;}
.h22{height:653.514288pt;}
.h6{height:702.581833pt;}
.h21{height:719.161425pt;}
.h5{height:820.001928pt;}
.h2{height:1079.999955pt;}
.h0{height:1079.999991pt;}
.h1{height:1080.000000pt;}
.w2{width:382.079984pt;}
.w6{width:462.079981pt;}
.w4{width:511.679979pt;}
.w3{width:550.719977pt;}
.w5{width:678.399972pt;}
.w1{width:1919.999920pt;}
.w0{width:1920.000000pt;}
.x0{left:0.000000pt;}
.x8{left:2.316872pt;}
.x34{left:3.840404pt;}
.x3a{left:6.601610pt;}
.x30{left:9.159618pt;}
.x1f{left:51.564060pt;}
.x3b{left:62.286542pt;}
.x7{left:108.372913pt;}
.x2f{left:111.039995pt;}
.x1c{left:135.572935pt;}
.x2e{left:137.583979pt;}
.x1b{left:207.524580pt;}
.x35{left:226.602490pt;}
.x25{left:253.964597pt;}
.x31{left:268.442548pt;}
.x2{left:327.928697pt;}
.x1a{left:375.075219pt;}
.x19{left:376.278344pt;}
.x17{left:419.984398pt;}
.xa{left:430.079982pt;}
.x9{left:446.616974pt;}
.x18{left:455.015646pt;}
.xb{left:462.206816pt;}
.x1{left:470.644083pt;}
.xf{left:545.859113pt;}
.x16{left:593.932046pt;}
.x26{left:621.344041pt;}
.x28{left:630.406541pt;}
.x27{left:634.984666pt;}
.x29{left:647.625290pt;}
.xe{left:657.850569pt;}
.x33{left:660.159972pt;}
.x24{left:662.003716pt;}
.x3d{left:663.328449pt;}
.x39{left:678.719972pt;}
.x3c{left:721.625322pt;}
.x32{left:739.534177pt;}
.x5{left:762.503392pt;}
.x36{left:772.237301pt;}
.x3e{left:793.406569pt;}
.x2d{left:818.861214pt;}
.x2c{left:839.028169pt;}
.xc{left:877.983157pt;}
.x22{left:1065.329332pt;}
.xd{left:1095.740658pt;}
.x14{left:1169.666991pt;}
.x15{left:1187.651366pt;}
.x37{left:1252.719404pt;}
.x38{left:1284.844402pt;}
.x11{left:1330.815009pt;}
.x2b{left:1337.179464pt;}
.x2a{left:1350.476052pt;}
.x13{left:1359.958292pt;}
.x10{left:1360.940007pt;}
.x6{left:1368.959943pt;}
.x12{left:1377.005167pt;}
.x1d{left:1454.468547pt;}
.x23{left:1495.979618pt;}
.x4{left:1532.447760pt;}
.x1e{left:1538.848384pt;}
.x3{left:1572.135258pt;}
.x20{left:1596.343069pt;}
.x21{left:1602.980405pt;}
}




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