
    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_c4a1abcb122466c6e37425c2.woff')format("woff");}.ff1{font-family:ff1;line-height:0.911000;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_1387a94aef3360b9bbebdf55.woff')format("woff");}.ff2{font-family:ff2;line-height:1.001000;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_ab888ccd40437f348472b066.woff')format("woff");}.ff3{font-family:ff3;line-height:0.704000;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_6d458cede9a25a90eb780cf1.woff')format("woff");}.ff4{font-family:ff4;line-height:0.911000;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_bc6f2d381bc7e054bd834ed8.woff')format("woff");}.ff5{font-family:ff5;line-height:0.910000;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_7c0426a0b79306289cf609cb.woff')format("woff");}.ff6{font-family:ff6;line-height:0.901000;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_b60c1ca5979cda6fc1314c7c.woff')format("woff");}.ff7{font-family:ff7;line-height:0.908000;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_41c47eaf8551141c3b60564e.woff')format("woff");}.ff8{font-family:ff8;line-height:0.920000;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_71df25493d394dffb2846fd4.woff')format("woff");}.ff9{font-family:ff9;line-height:0.842000;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_c84ed715d515208e7321f58b.woff')format("woff");}.ffa{font-family:ffa;line-height:0.705000;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_40fed8486cec3ad0cc6b8ae0.woff')format("woff");}.ffb{font-family:ffb;line-height:0.665000;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_9fbf10577a7fdf3dcd768efe.woff')format("woff");}.ffc{font-family:ffc;line-height:0.656000;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_e555e180c16414e93a2db00e.woff')format("woff");}.ffd{font-family:ffd;line-height:0.383000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-10.758000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:17.730000px;}
.v6{vertical-align:20.718000px;}
.v1{vertical-align:29.616000px;}
.v4{vertical-align:48.528000px;}
.v5{vertical-align:92.286000px;}
.lsd{letter-spacing:0.000000px;}
.ls1c{letter-spacing:0.001114px;}
.ls13{letter-spacing:0.015358px;}
.ls4{letter-spacing:0.031428px;}
.ls11{letter-spacing:0.032857px;}
.lsa{letter-spacing:0.502118px;}
.ls3{letter-spacing:2.869248px;}
.ls12{letter-spacing:2.986059px;}
.lsc{letter-spacing:2.990915px;}
.ls7{letter-spacing:2.991072px;}
.ls14{letter-spacing:2.992059px;}
.ls1e{letter-spacing:4.016947px;}
.lsb{letter-spacing:7.962163px;}
.ls1{letter-spacing:8.033894px;}
.ls19{letter-spacing:8.514587px;}
.lse{letter-spacing:11.907379px;}
.ls6{letter-spacing:11.979110px;}
.ls10{letter-spacing:13.915853px;}
.ls9{letter-spacing:15.924326px;}
.ls0{letter-spacing:19.941274px;}
.ls8{letter-spacing:22.051301px;}
.ls5{letter-spacing:22.910915px;}
.ls18{letter-spacing:22.912059px;}
.ls15{letter-spacing:23.958221px;}
.ls1a{letter-spacing:24.818995px;}
.ls16{letter-spacing:25.392845px;}
.ls1d{letter-spacing:26.397082px;}
.ls2{letter-spacing:27.616512px;}
.ls1b{letter-spacing:31.357473px;}
.lsf{letter-spacing:31.418266px;}
.ls17{letter-spacing:35.148288px;}
.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;}
}
.ws1b{word-spacing:-45.664082px;}
.ws25{word-spacing:-33.756703px;}
.ws1d{word-spacing:-33.684972px;}
.ws1c{word-spacing:-27.099034px;}
.ws1a{word-spacing:-19.510886px;}
.ws26{word-spacing:-7.565069px;}
.ws5{word-spacing:-3.194184px;}
.ws24{word-spacing:-2.725786px;}
.ws23{word-spacing:-2.654054px;}
.ws30{word-spacing:-2.438861px;}
.ws2b{word-spacing:-1.936742px;}
.ws8{word-spacing:-1.230546px;}
.ws2e{word-spacing:-1.219430px;}
.ws29{word-spacing:-1.147699px;}
.ws2f{word-spacing:-0.932506px;}
.ws4{word-spacing:-0.065455px;}
.ws1e{word-spacing:0.000000px;}
.ws18{word-spacing:0.143462px;}
.ws20{word-spacing:0.358656px;}
.ws1f{word-spacing:0.430387px;}
.ws32{word-spacing:1.362893px;}
.ws6{word-spacing:1.780365px;}
.wse{word-spacing:1.793280px;}
.ws2a{word-spacing:2.725786px;}
.ws2d{word-spacing:3.084442px;}
.wsa{word-spacing:3.613094px;}
.ws17{word-spacing:3.730022px;}
.wsc{word-spacing:3.801754px;}
.ws11{word-spacing:3.873485px;}
.ws19{word-spacing:3.945216px;}
.ws9{word-spacing:4.464004px;}
.wsd{word-spacing:4.519066px;}
.ws1{word-spacing:4.648169px;}
.wsf{word-spacing:4.662528px;}
.ws2{word-spacing:4.725822px;}
.ws12{word-spacing:5.164646px;}
.ws37{word-spacing:5.666765px;}
.ws3c{word-spacing:6.097152px;}
.ws3a{word-spacing:6.240614px;}
.ws7{word-spacing:6.296733px;}
.ws39{word-spacing:6.957926px;}
.ws3b{word-spacing:7.603507px;}
.ws28{word-spacing:8.177357px;}
.ws35{word-spacing:9.468518px;}
.ws36{word-spacing:10.831411px;}
.ws16{word-spacing:13.700659px;}
.ws2c{word-spacing:15.207014px;}
.ws22{word-spacing:19.223962px;}
.ws31{word-spacing:23.958221px;}
.ws3{word-spacing:24.283657px;}
.ws10{word-spacing:25.679770px;}
.ws38{word-spacing:26.612275px;}
.ws15{word-spacing:26.827469px;}
.ws33{word-spacing:27.903437px;}
.ws13{word-spacing:28.262093px;}
.ws27{word-spacing:32.192873px;}
.ws34{word-spacing:33.283277px;}
.ws0{word-spacing:37.316475px;}
.ws14{word-spacing:38.631358px;}
.ws21{word-spacing:106.764718px;}
.wsb{word-spacing:116.100658px;}
._11{margin-left:-38.017536px;}
._0{margin-left:-9.794025px;}
._16{margin-left:-8.091257px;}
._c{margin-left:-6.976766px;}
._3{margin-left:-5.432732px;}
._19{margin-left:-4.274374px;}
._2{margin-left:-3.223350px;}
._5{margin-left:-1.898183px;}
._4{width:1.767274px;}
._1{width:3.223350px;}
._12{width:7.941648px;}
._7{width:16.429105px;}
._9{width:18.000015px;}
._10{width:21.017242px;}
._13{width:24.460339px;}
._6{width:26.541262px;}
._a{width:27.621841px;}
._8{width:28.930933px;}
._f{width:30.081379px;}
._14{width:31.203072px;}
._b{width:32.326545px;}
._1a{width:40.620478px;}
._17{width:42.923876px;}
._18{width:47.800765px;}
._e{width:50.852034px;}
._15{width:96.836850px;}
._d{width:116.203950px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:47.820600px;}
.fs2{font-size:65.454600px;}
.fs4{font-size:71.731200px;}
.fs1{font-size:86.077200px;}
.fs3{font-size:103.292400px;}
.fs0{font-size:123.975000px;}
.y0{bottom:0.000000px;}
.y20{bottom:63.168000px;}
.y1f{bottom:108.000000px;}
.y1e{bottom:139.959000px;}
.y40{bottom:162.280500px;}
.y1d{bottom:179.386500px;}
.y3f{bottom:183.949500px;}
.y3e{bottom:205.618500px;}
.y1c{bottom:238.158000px;}
.y3d{bottom:238.869000px;}
.y1b{bottom:259.827000px;}
.y1a{bottom:281.496000px;}
.y3c{bottom:290.860500px;}
.y19{bottom:303.165000px;}
.y3b{bottom:312.529500px;}
.y3a{bottom:334.198500px;}
.y18{bottom:335.124000px;}
.y58{bottom:356.602500px;}
.y17{bottom:367.083000px;}
.y39{bottom:367.449000px;}
.y57{bottom:378.271500px;}
.y56{bottom:399.940500px;}
.y16{bottom:406.510500px;}
.y38{bottom:419.440500px;}
.y55{bottom:421.609500px;}
.y37{bottom:441.109500px;}
.y54{bottom:443.278500px;}
.y53{bottom:464.946000px;}
.y15{bottom:465.282000px;}
.y36{bottom:474.360000px;}
.y14{bottom:486.951000px;}
.y52{bottom:504.373500px;}
.y13{bottom:508.620000px;}
.y35{bottom:526.353000px;}
.y12{bottom:530.289000px;}
.y34{bottom:548.022000px;}
.y11{bottom:551.956500px;}
.y51{bottom:564.274500px;}
.y10{bottom:573.625500px;}
.y33{bottom:581.272500px;}
.y50{bottom:585.943500px;}
.yf{bottom:595.294500px;}
.y4f{bottom:622.555500px;}
.y32{bottom:625.929000px;}
.ye{bottom:634.722000px;}
.y4e{bottom:644.224500px;}
.y4d{bottom:680.836500px;}
.y31{bottom:685.830000px;}
.yd{bottom:693.493500px;}
.y4c{bottom:702.505500px;}
.yc{bottom:713.818500px;}
.y30{bottom:717.709500px;}
.yb{bottom:734.142000px;}
.y4b{bottom:741.933000px;}
.y2f{bottom:742.143000px;}
.ya{bottom:754.465500px;}
.y9{bottom:774.789000px;}
.y2e{bottom:777.510000px;}
.y8{bottom:795.112500px;}
.y4a{bottom:801.834000px;}
.y7{bottom:815.436000px;}
.y2d{bottom:816.862500px;}
.y2c{bottom:821.296500px;}
.y49{bottom:823.501500px;}
.y2b{bottom:829.164000px;}
.y2a{bottom:833.596500px;}
.y6{bottom:837.045000px;}
.y48{bottom:856.752000px;}
.y29{bottom:882.855000px;}
.y5{bottom:894.399000px;}
.y47{bottom:908.745000px;}
.y28{bottom:919.467000px;}
.y46{bottom:930.414000px;}
.y4{bottom:936.466500px;}
.y27{bottom:941.136000px;}
.y45{bottom:963.664500px;}
.y26{bottom:977.749500px;}
.y3{bottom:989.704500px;}
.y25{bottom:1014.361500px;}
.y44{bottom:1015.656000px;}
.y2{bottom:1027.063500px;}
.y24{bottom:1036.030500px;}
.y43{bottom:1037.325000px;}
.y42{bottom:1058.994000px;}
.y1{bottom:1064.424000px;}
.y23{bottom:1075.632000px;}
.y41{bottom:1092.244500px;}
.y22{bottom:1115.233500px;}
.y21{bottom:1136.902500px;}
.hc{height:21.088885px;}
.h4{height:45.687311px;}
.h5{height:46.145493px;}
.h8{height:50.211840px;}
.hd{height:50.570496px;}
.hb{height:52.518699px;}
.h7{height:53.798400px;}
.hf{height:60.254040px;}
.h9{height:61.416699px;}
.h3{height:64.557900px;}
.h6{height:72.304680px;}
.h2{height:87.650325px;}
.he{height:103.004400px;}
.ha{height:124.086699px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:108.000000px;}
.xa{left:134.338500px;}
.x2{left:141.909000px;}
.xb{left:148.933500px;}
.x8{left:151.897500px;}
.x7{left:176.443500px;}
.x1{left:205.987500px;}
.xe{left:277.578000px;}
.xc{left:316.290000px;}
.x4{left:362.560500px;}
.x5{left:373.002000px;}
.x3{left:402.400500px;}
.x6{left:410.455500px;}
.xf{left:430.456500px;}
.x14{left:439.138500px;}
.xd{left:442.066500px;}
.x10{left:445.815000px;}
.x11{left:479.973000px;}
.x12{left:491.919000px;}
.x13{left:501.477000px;}
@media print{
.v2{vertical-align:-9.562667pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:15.760000pt;}
.v6{vertical-align:18.416000pt;}
.v1{vertical-align:26.325333pt;}
.v4{vertical-align:43.136000pt;}
.v5{vertical-align:82.032000pt;}
.lsd{letter-spacing:0.000000pt;}
.ls1c{letter-spacing:0.000990pt;}
.ls13{letter-spacing:0.013652pt;}
.ls4{letter-spacing:0.027936pt;}
.ls11{letter-spacing:0.029206pt;}
.lsa{letter-spacing:0.446327pt;}
.ls3{letter-spacing:2.550443pt;}
.ls12{letter-spacing:2.654275pt;}
.lsc{letter-spacing:2.658591pt;}
.ls7{letter-spacing:2.658731pt;}
.ls14{letter-spacing:2.659608pt;}
.ls1e{letter-spacing:3.570620pt;}
.lsb{letter-spacing:7.077478pt;}
.ls1{letter-spacing:7.141239pt;}
.ls19{letter-spacing:7.568522pt;}
.lse{letter-spacing:10.584337pt;}
.ls6{letter-spacing:10.648098pt;}
.ls10{letter-spacing:12.369647pt;}
.ls9{letter-spacing:14.154957pt;}
.ls0{letter-spacing:17.725577pt;}
.ls8{letter-spacing:19.601156pt;}
.ls5{letter-spacing:20.365258pt;}
.ls18{letter-spacing:20.366275pt;}
.ls15{letter-spacing:21.296196pt;}
.ls1a{letter-spacing:22.061329pt;}
.ls16{letter-spacing:22.571418pt;}
.ls1d{letter-spacing:23.464073pt;}
.ls2{letter-spacing:24.548011pt;}
.ls1b{letter-spacing:27.873309pt;}
.lsf{letter-spacing:27.927347pt;}
.ls17{letter-spacing:31.242923pt;}
.ws1b{word-spacing:-40.590295pt;}
.ws25{word-spacing:-30.005958pt;}
.ws1d{word-spacing:-29.942197pt;}
.ws1c{word-spacing:-24.088030pt;}
.ws1a{word-spacing:-17.343010pt;}
.ws26{word-spacing:-6.724506pt;}
.ws5{word-spacing:-2.839275pt;}
.ws24{word-spacing:-2.422921pt;}
.ws23{word-spacing:-2.359159pt;}
.ws30{word-spacing:-2.167876pt;}
.ws2b{word-spacing:-1.721549pt;}
.ws8{word-spacing:-1.093819pt;}
.ws2e{word-spacing:-1.083938pt;}
.ws29{word-spacing:-1.020177pt;}
.ws2f{word-spacing:-0.828894pt;}
.ws4{word-spacing:-0.058182pt;}
.ws1e{word-spacing:0.000000pt;}
.ws18{word-spacing:0.127522pt;}
.ws20{word-spacing:0.318805pt;}
.ws1f{word-spacing:0.382566pt;}
.ws32{word-spacing:1.211460pt;}
.ws6{word-spacing:1.582547pt;}
.wse{word-spacing:1.594027pt;}
.ws2a{word-spacing:2.422921pt;}
.ws2d{word-spacing:2.741726pt;}
.wsa{word-spacing:3.211639pt;}
.ws17{word-spacing:3.315575pt;}
.wsc{word-spacing:3.379337pt;}
.ws11{word-spacing:3.443098pt;}
.ws19{word-spacing:3.506859pt;}
.ws9{word-spacing:3.968003pt;}
.wsd{word-spacing:4.016947pt;}
.ws1{word-spacing:4.131706pt;}
.wsf{word-spacing:4.144469pt;}
.ws2{word-spacing:4.200731pt;}
.ws12{word-spacing:4.590797pt;}
.ws37{word-spacing:5.037124pt;}
.ws3c{word-spacing:5.419691pt;}
.ws3a{word-spacing:5.547213pt;}
.ws7{word-spacing:5.597096pt;}
.ws39{word-spacing:6.184823pt;}
.ws3b{word-spacing:6.758673pt;}
.ws28{word-spacing:7.268762pt;}
.ws35{word-spacing:8.416461pt;}
.ws36{word-spacing:9.627921pt;}
.ws16{word-spacing:12.178364pt;}
.ws2c{word-spacing:13.517346pt;}
.ws22{word-spacing:17.087966pt;}
.ws31{word-spacing:21.296196pt;}
.ws3{word-spacing:21.585473pt;}
.ws10{word-spacing:22.826462pt;}
.ws38{word-spacing:23.655356pt;}
.ws15{word-spacing:23.846639pt;}
.ws33{word-spacing:24.803055pt;}
.ws13{word-spacing:25.121860pt;}
.ws27{word-spacing:28.615887pt;}
.ws34{word-spacing:29.585135pt;}
.ws0{word-spacing:33.170200pt;}
.ws14{word-spacing:34.338985pt;}
.ws21{word-spacing:94.901972pt;}
.wsb{word-spacing:103.200585pt;}
._11{margin-left:-33.793365pt;}
._0{margin-left:-8.705800pt;}
._16{margin-left:-7.192228pt;}
._c{margin-left:-6.201570pt;}
._3{margin-left:-4.829095pt;}
._19{margin-left:-3.799443pt;}
._2{margin-left:-2.865200pt;}
._5{margin-left:-1.687274pt;}
._4{width:1.570910pt;}
._1{width:2.865200pt;}
._12{width:7.059243pt;}
._7{width:14.603649pt;}
._9{width:16.000013pt;}
._10{width:18.681993pt;}
._13{width:21.742524pt;}
._6{width:23.592233pt;}
._a{width:24.552748pt;}
._8{width:25.716385pt;}
._f{width:26.739003pt;}
._14{width:27.736064pt;}
._b{width:28.734707pt;}
._1a{width:36.107092pt;}
._17{width:38.154556pt;}
._18{width:42.489569pt;}
._e{width:45.201808pt;}
._15{width:86.077200pt;}
._d{width:103.292400pt;}
.fs5{font-size:42.507200pt;}
.fs2{font-size:58.181867pt;}
.fs4{font-size:63.761067pt;}
.fs1{font-size:76.513067pt;}
.fs3{font-size:91.815467pt;}
.fs0{font-size:110.200000pt;}
.y0{bottom:0.000000pt;}
.y20{bottom:56.149333pt;}
.y1f{bottom:96.000000pt;}
.y1e{bottom:124.408000pt;}
.y40{bottom:144.249333pt;}
.y1d{bottom:159.454667pt;}
.y3f{bottom:163.510667pt;}
.y3e{bottom:182.772000pt;}
.y1c{bottom:211.696000pt;}
.y3d{bottom:212.328000pt;}
.y1b{bottom:230.957333pt;}
.y1a{bottom:250.218667pt;}
.y3c{bottom:258.542667pt;}
.y19{bottom:269.480000pt;}
.y3b{bottom:277.804000pt;}
.y3a{bottom:297.065333pt;}
.y18{bottom:297.888000pt;}
.y58{bottom:316.980000pt;}
.y17{bottom:326.296000pt;}
.y39{bottom:326.621333pt;}
.y57{bottom:336.241333pt;}
.y56{bottom:355.502667pt;}
.y16{bottom:361.342667pt;}
.y38{bottom:372.836000pt;}
.y55{bottom:374.764000pt;}
.y37{bottom:392.097333pt;}
.y54{bottom:394.025333pt;}
.y53{bottom:413.285333pt;}
.y15{bottom:413.584000pt;}
.y36{bottom:421.653333pt;}
.y14{bottom:432.845333pt;}
.y52{bottom:448.332000pt;}
.y13{bottom:452.106667pt;}
.y35{bottom:467.869333pt;}
.y12{bottom:471.368000pt;}
.y34{bottom:487.130667pt;}
.y11{bottom:490.628000pt;}
.y51{bottom:501.577333pt;}
.y10{bottom:509.889333pt;}
.y33{bottom:516.686667pt;}
.y50{bottom:520.838667pt;}
.yf{bottom:529.150667pt;}
.y4f{bottom:553.382667pt;}
.y32{bottom:556.381333pt;}
.ye{bottom:564.197333pt;}
.y4e{bottom:572.644000pt;}
.y4d{bottom:605.188000pt;}
.y31{bottom:609.626667pt;}
.yd{bottom:616.438667pt;}
.y4c{bottom:624.449333pt;}
.yc{bottom:634.505333pt;}
.y30{bottom:637.964000pt;}
.yb{bottom:652.570667pt;}
.y4b{bottom:659.496000pt;}
.y2f{bottom:659.682667pt;}
.ya{bottom:670.636000pt;}
.y9{bottom:688.701333pt;}
.y2e{bottom:691.120000pt;}
.y8{bottom:706.766667pt;}
.y4a{bottom:712.741333pt;}
.y7{bottom:724.832000pt;}
.y2d{bottom:726.100000pt;}
.y2c{bottom:730.041333pt;}
.y49{bottom:732.001333pt;}
.y2b{bottom:737.034667pt;}
.y2a{bottom:740.974667pt;}
.y6{bottom:744.040000pt;}
.y48{bottom:761.557333pt;}
.y29{bottom:784.760000pt;}
.y5{bottom:795.021333pt;}
.y47{bottom:807.773333pt;}
.y28{bottom:817.304000pt;}
.y46{bottom:827.034667pt;}
.y4{bottom:832.414667pt;}
.y27{bottom:836.565333pt;}
.y45{bottom:856.590667pt;}
.y26{bottom:869.110667pt;}
.y3{bottom:879.737333pt;}
.y25{bottom:901.654667pt;}
.y44{bottom:902.805333pt;}
.y2{bottom:912.945333pt;}
.y24{bottom:920.916000pt;}
.y43{bottom:922.066667pt;}
.y42{bottom:941.328000pt;}
.y1{bottom:946.154667pt;}
.y23{bottom:956.117333pt;}
.y41{bottom:970.884000pt;}
.y22{bottom:991.318667pt;}
.y21{bottom:1010.580000pt;}
.hc{height:18.745675pt;}
.h4{height:40.610943pt;}
.h5{height:41.018216pt;}
.h8{height:44.632747pt;}
.hd{height:44.951552pt;}
.hb{height:46.683288pt;}
.h7{height:47.820800pt;}
.hf{height:53.559147pt;}
.h9{height:54.592621pt;}
.h3{height:57.384800pt;}
.h6{height:64.270827pt;}
.h2{height:77.911400pt;}
.he{height:91.559467pt;}
.ha{height:110.299288pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:96.000000pt;}
.xa{left:119.412000pt;}
.x2{left:126.141333pt;}
.xb{left:132.385333pt;}
.x8{left:135.020000pt;}
.x7{left:156.838667pt;}
.x1{left:183.100000pt;}
.xe{left:246.736000pt;}
.xc{left:281.146667pt;}
.x4{left:322.276000pt;}
.x5{left:331.557333pt;}
.x3{left:357.689333pt;}
.x6{left:364.849333pt;}
.xf{left:382.628000pt;}
.x14{left:390.345333pt;}
.xd{left:392.948000pt;}
.x10{left:396.280000pt;}
.x11{left:426.642667pt;}
.x12{left:437.261333pt;}
.x13{left:445.757333pt;}
}




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