
    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_b9db262109f77f55c5493275.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_0e7d29e762e23dce357b9472.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_f477e715edaf67e67a657927.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_85ce2d7e6bf63d2c07691677.woff')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_f619db293ca522f63b7d91b7.woff')format("woff");}.ff5{font-family:ff5;line-height:0.694000;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_793f13cb84de1b72f6136929.woff')format("woff");}.ff6{font-family:ff6;line-height:0.580000;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_09ae5f22d47e02a60a799d51.woff')format("woff");}.ff7{font-family:ff7;line-height:0.696000;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_e2b3f1e16d346abd8af7dda5.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_1d0a678978b136f592aef7c8.woff')format("woff");}.ff9{font-family:ff9;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-46.626000px;}
.v2{vertical-align:-16.878000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.690000px;}
.ls0{letter-spacing:0.000000px;}
.lsa{letter-spacing:2.988532px;}
.ls5{letter-spacing:14.884124px;}
.ls6{letter-spacing:16.258963px;}
.ls4{letter-spacing:17.394700px;}
.ls9{letter-spacing:19.965050px;}
.ls7{letter-spacing:20.503031px;}
.ls1{letter-spacing:20.682358px;}
.ls8{letter-spacing:21.578992px;}
.ls2{letter-spacing:24.986201px;}
.ls3{letter-spacing:25.823059px;}
.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;}
}
.ws2d{word-spacing:-26.899125px;}
.ws6{word-spacing:-16.605662px;}
.ws25{word-spacing:-14.111859px;}
.ws1b{word-spacing:-1.721537px;}
.ws1d{word-spacing:-0.585801px;}
.ws1c{word-spacing:-0.346698px;}
.ws2e{word-spacing:-0.227147px;}
.ws17{word-spacing:0.000000px;}
.ws19{word-spacing:0.549936px;}
.ws3d{word-spacing:0.609711px;}
.ws16{word-spacing:0.729262px;}
.ws15{word-spacing:0.789038px;}
.ws14{word-spacing:0.908589px;}
.ws22{word-spacing:0.999451px;}
.ws28{word-spacing:1.668939px;}
.ws37{word-spacing:1.864999px;}
.ws30{word-spacing:2.642082px;}
.ws23{word-spacing:2.816633px;}
.ws42{word-spacing:2.821408px;}
.ws27{word-spacing:2.864454px;}
.ws8{word-spacing:3.000735px;}
.ws38{word-spacing:3.060511px;}
.ws1a{word-spacing:3.120286px;}
.wsa{word-spacing:3.299613px;}
.wsb{word-spacing:3.359389px;}
.ws2b{word-spacing:3.419164px;}
.ws3e{word-spacing:3.610446px;}
.ws1f{word-spacing:3.897369px;}
.ws31{word-spacing:3.957145px;}
.ws7{word-spacing:4.076696px;}
.ws5{word-spacing:4.136472px;}
.ws13{word-spacing:4.196247px;}
.ws10{word-spacing:4.256023px;}
.ws29{word-spacing:4.299072px;}
.ws39{word-spacing:4.315798px;}
.ws1{word-spacing:4.483200px;}
.ws12{word-spacing:4.614676px;}
.ws36{word-spacing:4.734228px;}
.ws34{word-spacing:4.794003px;}
.ws21{word-spacing:4.913554px;}
.ws20{word-spacing:4.973330px;}
.ws43{word-spacing:5.331984px;}
.wsc{word-spacing:5.379825px;}
.ws3c{word-spacing:5.750413px;}
.ws3b{word-spacing:5.989515px;}
.ws3f{word-spacing:6.061246px;}
.ws0{word-spacing:6.455775px;}
.ws3a{word-spacing:7.077431px;}
.ws35{word-spacing:7.436085px;}
.ws2c{word-spacing:7.483905px;}
.ws2f{word-spacing:7.723008px;}
.ws11{word-spacing:8.081661px;}
.ws9{word-spacing:8.380539px;}
.wsd{word-spacing:8.619642px;}
.ws40{word-spacing:9.038071px;}
.ws44{word-spacing:9.097846px;}
.wse{word-spacing:9.217398px;}
.ws41{word-spacing:9.994480px;}
.wsf{word-spacing:10.054256px;}
.ws33{word-spacing:10.353134px;}
.ws4{word-spacing:10.532461px;}
.ws2a{word-spacing:11.429095px;}
.ws45{word-spacing:11.441050px;}
.ws1e{word-spacing:11.608422px;}
.ws26{word-spacing:13.145883px;}
.ws32{word-spacing:16.928450px;}
.ws24{word-spacing:19.219099px;}
.ws18{word-spacing:22.834279px;}
.ws2{word-spacing:23.312640px;}
.ws3{word-spacing:69.937725px;}
._2e{margin-left:-31.298491px;}
._2d{margin-left:-29.718508px;}
._30{margin-left:-27.951058px;}
._22{margin-left:-26.779671px;}
._20{margin-left:-25.392739px;}
._2{margin-left:-9.709486px;}
._3{margin-left:-5.764336px;}
._11{margin-left:-4.244008px;}
._1{margin-left:-3.202064px;}
._4{margin-left:-1.936742px;}
._6{width:1.613941px;}
._0{width:3.202064px;}
._1c{width:15.974034px;}
._2c{width:17.406694px;}
._15{width:18.721757px;}
._33{width:21.076864px;}
._31{width:22.081120px;}
._34{width:23.240719px;}
._1d{width:24.830737px;}
._13{width:25.857017px;}
._7{width:27.006642px;}
._5{width:28.777882px;}
._24{width:30.342179px;}
._32{width:31.946048px;}
._23{width:33.245294px;}
._21{width:37.610978px;}
._2b{width:38.844106px;}
._8{width:42.725730px;}
._35{width:43.899214px;}
._12{width:45.056978px;}
._2f{width:48.253234px;}
._2a{width:51.851231px;}
._17{width:73.258740px;}
._14{width:80.697600px;}
._10{width:96.836850px;}
._1b{width:174.782691px;}
._29{width:200.825628px;}
._28{width:216.158386px;}
._1e{width:310.015581px;}
._18{width:314.966236px;}
._1a{width:341.540245px;}
._d{width:372.383860px;}
._27{width:373.385110px;}
._19{width:418.949977px;}
._25{width:421.069581px;}
._e{width:457.483030px;}
._16{width:501.218531px;}
._26{width:520.765369px;}
._9{width:563.456453px;}
._f{width:642.139890px;}
._c{width:643.677036px;}
._a{width:651.663216px;}
._b{width:716.026804px;}
._1f{width:841.704863px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:35.865600px;}
.fs4{font-size:41.842800px;}
.fs6{font-size:47.820600px;}
.fs3{font-size:59.775600px;}
.fs1{font-size:71.731200px;}
.fs2{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y26{bottom:125.247000px;}
.y49{bottom:190.891500px;}
.y48{bottom:212.856000px;}
.y25{bottom:216.775500px;}
.y47{bottom:223.959000px;}
.y24{bottom:239.191500px;}
.y46{bottom:245.923500px;}
.y45{bottom:257.026500px;}
.y23{bottom:261.607500px;}
.y44{bottom:278.991000px;}
.y22{bottom:284.023500px;}
.y43{bottom:290.094000px;}
.y21{bottom:306.439500px;}
.y42{bottom:312.058500px;}
.y41{bottom:323.160000px;}
.y20{bottom:338.506500px;}
.y40{bottom:345.126000px;}
.y3f{bottom:368.089500px;}
.y1f{bottom:379.458000px;}
.y3e{bottom:390.505500px;}
.y3d{bottom:412.921500px;}
.y1e{bottom:435.601500px;}
.y3c{bottom:455.743500px;}
.y1d{bottom:458.017500px;}
.y1c{bottom:480.433500px;}
.y3b{bottom:491.908500px;}
.y1b{bottom:502.848000px;}
.y3a{bottom:519.405000px;}
.y1a{bottom:525.264000px;}
.y5a{bottom:529.005000px;}
.y39{bottom:546.304500px;}
.y19{bottom:547.680000px;}
.y38{bottom:548.098500px;}
.y59{bottom:551.421000px;}
.y18{bottom:570.096000px;}
.y37{bottom:573.204000px;}
.y58{bottom:573.837000px;}
.y69{bottom:587.539500px;}
.y57{bottom:596.253000px;}
.y36{bottom:600.700500px;}
.y17{bottom:607.311000px;}
.y68{bottom:609.955500px;}
.y56{bottom:618.669000px;}
.y67{bottom:632.371500px;}
.y35{bottom:633.279000px;}
.y55{bottom:641.085000px;}
.y66{bottom:654.787500px;}
.y34{bottom:677.130000px;}
.y54{bottom:678.298500px;}
.y16{bottom:683.862000px;}
.y65{bottom:689.158500px;}
.y33{bottom:699.546000px;}
.y64{bottom:711.574500px;}
.y15{bottom:720.025500px;}
.y32{bottom:721.962000px;}
.y53{bottom:734.442000px;}
.y63{bottom:745.945500px;}
.y14{bottom:747.523500px;}
.y31{bottom:754.029000px;}
.y52{bottom:756.858000px;}
.y62{bottom:768.361500px;}
.y13{bottom:775.020000px;}
.y6{bottom:779.262000px;}
.y51{bottom:779.274000px;}
.y61{bottom:790.777500px;}
.y12{bottom:792.952500px;}
.y5{bottom:799.810500px;}
.y30{bottom:801.093000px;}
.y50{bottom:801.690000px;}
.y11{bottom:810.885000px;}
.y60{bottom:813.193500px;}
.y2f{bottom:823.509000px;}
.y4f{bottom:824.106000px;}
.y4{bottom:825.961500px;}
.y10{bottom:838.381500px;}
.y5f{bottom:847.564500px;}
.yf{bottom:865.879500px;}
.y5e{bottom:869.980500px;}
.y3{bottom:873.373500px;}
.y2e{bottom:873.720000px;}
.y4e{bottom:874.318500px;}
.y5d{bottom:892.396500px;}
.ye{bottom:893.376000px;}
.y2d{bottom:909.885000px;}
.y4d{bottom:910.482000px;}
.yd{bottom:920.872500px;}
.y5c{bottom:926.767500px;}
.y2c{bottom:937.381500px;}
.y4c{bottom:937.980000px;}
.y2{bottom:942.045000px;}
.y5b{bottom:949.183500px;}
.yc{bottom:961.138500px;}
.y2b{bottom:964.878000px;}
.y4b{bottom:965.476500px;}
.y1{bottom:983.142000px;}
.yb{bottom:983.554500px;}
.y2a{bottom:992.376000px;}
.y4a{bottom:992.973000px;}
.ya{bottom:1005.970500px;}
.y29{bottom:1019.872500px;}
.y9{bottom:1028.386500px;}
.y28{bottom:1047.369000px;}
.y8{bottom:1050.802500px;}
.y27{bottom:1079.947500px;}
.y7{bottom:1088.016000px;}
.h8{height:24.209280px;}
.h9{height:35.865450px;}
.h5{height:44.831700px;}
.h6{height:49.892047px;}
.h7{height:49.898047px;}
.h2{height:50.211840px;}
.h3{height:53.798400px;}
.h4{height:60.254040px;}
.h1{height:72.304680px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x7{left:127.558500px;}
.x26{left:142.503000px;}
.x21{left:144.196500px;}
.x1{left:147.295500px;}
.x8{left:149.974500px;}
.x20{left:189.282000px;}
.x1e{left:202.812000px;}
.x11{left:217.903500px;}
.xa{left:219.385500px;}
.x10{left:221.004000px;}
.xc{left:227.605500px;}
.x1d{left:234.507000px;}
.x15{left:235.959000px;}
.xb{left:237.090000px;}
.x9{left:238.543500px;}
.x1b{left:239.736000px;}
.x14{left:243.046500px;}
.x16{left:247.623000px;}
.x17{left:250.633500px;}
.x18{left:251.836500px;}
.x1f{left:253.144500px;}
.x25{left:254.877000px;}
.x24{left:256.309500px;}
.x19{left:261.220500px;}
.x3{left:264.858000px;}
.xd{left:271.233000px;}
.x23{left:278.347500px;}
.x4{left:288.661500px;}
.x2{left:294.640500px;}
.x5{left:327.253500px;}
.x1a{left:351.139500px;}
.x6{left:377.623500px;}
.x13{left:394.182000px;}
.xe{left:395.392500px;}
.x22{left:412.576500px;}
.x12{left:455.263500px;}
.x1c{left:464.272500px;}
.xf{left:504.774000px;}
@media print{
.v3{vertical-align:-41.445333pt;}
.v2{vertical-align:-15.002667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.280000pt;}
.ls0{letter-spacing:0.000000pt;}
.lsa{letter-spacing:2.656473pt;}
.ls5{letter-spacing:13.230333pt;}
.ls6{letter-spacing:14.452412pt;}
.ls4{letter-spacing:15.461955pt;}
.ls9{letter-spacing:17.746711pt;}
.ls7{letter-spacing:18.224916pt;}
.ls1{letter-spacing:18.384318pt;}
.ls8{letter-spacing:19.181326pt;}
.ls2{letter-spacing:22.209956pt;}
.ls3{letter-spacing:22.953830pt;}
.ws2d{word-spacing:-23.910333pt;}
.ws6{word-spacing:-14.760588pt;}
.ws25{word-spacing:-12.543875pt;}
.ws1b{word-spacing:-1.530255pt;}
.ws1d{word-spacing:-0.520712pt;}
.ws1c{word-spacing:-0.308176pt;}
.ws2e{word-spacing:-0.201909pt;}
.ws17{word-spacing:0.000000pt;}
.ws19{word-spacing:0.488832pt;}
.ws3d{word-spacing:0.541965pt;}
.ws16{word-spacing:0.648233pt;}
.ws15{word-spacing:0.701367pt;}
.ws14{word-spacing:0.807635pt;}
.ws22{word-spacing:0.888400pt;}
.ws28{word-spacing:1.483501pt;}
.ws37{word-spacing:1.657777pt;}
.ws30{word-spacing:2.348517pt;}
.ws23{word-spacing:2.503674pt;}
.ws42{word-spacing:2.507919pt;}
.ws27{word-spacing:2.546181pt;}
.ws8{word-spacing:2.667320pt;}
.ws38{word-spacing:2.720454pt;}
.ws1a{word-spacing:2.773588pt;}
.wsa{word-spacing:2.932989pt;}
.wsb{word-spacing:2.986123pt;}
.ws2b{word-spacing:3.039257pt;}
.ws3e{word-spacing:3.209286pt;}
.ws1f{word-spacing:3.464328pt;}
.ws31{word-spacing:3.517462pt;}
.ws7{word-spacing:3.623730pt;}
.ws5{word-spacing:3.676864pt;}
.ws13{word-spacing:3.729997pt;}
.ws10{word-spacing:3.783131pt;}
.ws29{word-spacing:3.821397pt;}
.ws39{word-spacing:3.836265pt;}
.ws1{word-spacing:3.985067pt;}
.ws12{word-spacing:4.101935pt;}
.ws36{word-spacing:4.208202pt;}
.ws34{word-spacing:4.261336pt;}
.ws21{word-spacing:4.367604pt;}
.ws20{word-spacing:4.420738pt;}
.ws43{word-spacing:4.739541pt;}
.wsc{word-spacing:4.782067pt;}
.ws3c{word-spacing:5.111478pt;}
.ws3b{word-spacing:5.324013pt;}
.ws3f{word-spacing:5.387774pt;}
.ws0{word-spacing:5.738467pt;}
.ws3a{word-spacing:6.291050pt;}
.ws35{word-spacing:6.609853pt;}
.ws2c{word-spacing:6.652360pt;}
.ws2f{word-spacing:6.864896pt;}
.ws11{word-spacing:7.183699pt;}
.ws9{word-spacing:7.449368pt;}
.wsd{word-spacing:7.661904pt;}
.ws40{word-spacing:8.033841pt;}
.ws44{word-spacing:8.086975pt;}
.wse{word-spacing:8.193242pt;}
.ws41{word-spacing:8.883983pt;}
.wsf{word-spacing:8.937116pt;}
.ws33{word-spacing:9.202786pt;}
.ws4{word-spacing:9.362187pt;}
.ws2a{word-spacing:10.159195pt;}
.ws45{word-spacing:10.169822pt;}
.ws1e{word-spacing:10.318597pt;}
.ws26{word-spacing:11.685229pt;}
.ws32{word-spacing:15.047511pt;}
.ws24{word-spacing:17.083644pt;}
.ws18{word-spacing:20.297137pt;}
.ws2{word-spacing:20.722347pt;}
.ws3{word-spacing:62.166867pt;}
._2e{margin-left:-27.820881pt;}
._2d{margin-left:-26.416451pt;}
._30{margin-left:-24.845385pt;}
._22{margin-left:-23.804152pt;}
._20{margin-left:-22.571323pt;}
._2{margin-left:-8.630654pt;}
._3{margin-left:-5.123854pt;}
._11{margin-left:-3.772451pt;}
._1{margin-left:-2.846279pt;}
._4{margin-left:-1.721549pt;}
._6{width:1.434614pt;}
._0{width:2.846279pt;}
._1c{width:14.199141pt;}
._2c{width:15.472617pt;}
._15{width:16.641562pt;}
._33{width:18.734990pt;}
._31{width:19.627662pt;}
._34{width:20.658417pt;}
._1d{width:22.071766pt;}
._13{width:22.984015pt;}
._7{width:24.005904pt;}
._5{width:25.580339pt;}
._24{width:26.970826pt;}
._32{width:28.396487pt;}
._23{width:29.551372pt;}
._21{width:33.431981pt;}
._2b{width:34.528094pt;}
._8{width:37.978427pt;}
._35{width:39.021523pt;}
._12{width:40.050647pt;}
._2f{width:42.891763pt;}
._2a{width:46.089983pt;}
._17{width:65.118880pt;}
._14{width:71.731200pt;}
._10{width:86.077200pt;}
._1b{width:155.362392pt;}
._29{width:178.511669pt;}
._28{width:192.140788pt;}
._1e{width:275.569405pt;}
._18{width:279.969987pt;}
._1a{width:303.591329pt;}
._d{width:331.007875pt;}
._27{width:331.897876pt;}
._19{width:372.399980pt;}
._25{width:374.284072pt;}
._e{width:406.651583pt;}
._16{width:445.527583pt;}
._26{width:462.902550pt;}
._9{width:500.850181pt;}
._f{width:570.791013pt;}
._c{width:572.157365pt;}
._a{width:579.256192pt;}
._b{width:636.468270pt;}
._1f{width:748.182100pt;}
.fs5{font-size:31.880533pt;}
.fs4{font-size:37.193600pt;}
.fs6{font-size:42.507200pt;}
.fs3{font-size:53.133867pt;}
.fs1{font-size:63.761067pt;}
.fs2{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y26{bottom:111.330667pt;}
.y49{bottom:169.681333pt;}
.y48{bottom:189.205333pt;}
.y25{bottom:192.689333pt;}
.y47{bottom:199.074667pt;}
.y24{bottom:212.614667pt;}
.y46{bottom:218.598667pt;}
.y45{bottom:228.468000pt;}
.y23{bottom:232.540000pt;}
.y44{bottom:247.992000pt;}
.y22{bottom:252.465333pt;}
.y43{bottom:257.861333pt;}
.y21{bottom:272.390667pt;}
.y42{bottom:277.385333pt;}
.y41{bottom:287.253333pt;}
.y20{bottom:300.894667pt;}
.y40{bottom:306.778667pt;}
.y3f{bottom:327.190667pt;}
.y1f{bottom:337.296000pt;}
.y3e{bottom:347.116000pt;}
.y3d{bottom:367.041333pt;}
.y1e{bottom:387.201333pt;}
.y3c{bottom:405.105333pt;}
.y1d{bottom:407.126667pt;}
.y1c{bottom:427.052000pt;}
.y3b{bottom:437.252000pt;}
.y1b{bottom:446.976000pt;}
.y3a{bottom:461.693333pt;}
.y1a{bottom:466.901333pt;}
.y5a{bottom:470.226667pt;}
.y39{bottom:485.604000pt;}
.y19{bottom:486.826667pt;}
.y38{bottom:487.198667pt;}
.y59{bottom:490.152000pt;}
.y18{bottom:506.752000pt;}
.y37{bottom:509.514667pt;}
.y58{bottom:510.077333pt;}
.y69{bottom:522.257333pt;}
.y57{bottom:530.002667pt;}
.y36{bottom:533.956000pt;}
.y17{bottom:539.832000pt;}
.y68{bottom:542.182667pt;}
.y56{bottom:549.928000pt;}
.y67{bottom:562.108000pt;}
.y35{bottom:562.914667pt;}
.y55{bottom:569.853333pt;}
.y66{bottom:582.033333pt;}
.y34{bottom:601.893333pt;}
.y54{bottom:602.932000pt;}
.y16{bottom:607.877333pt;}
.y65{bottom:612.585333pt;}
.y33{bottom:621.818667pt;}
.y64{bottom:632.510667pt;}
.y15{bottom:640.022667pt;}
.y32{bottom:641.744000pt;}
.y53{bottom:652.837333pt;}
.y63{bottom:663.062667pt;}
.y14{bottom:664.465333pt;}
.y31{bottom:670.248000pt;}
.y52{bottom:672.762667pt;}
.y62{bottom:682.988000pt;}
.y13{bottom:688.906667pt;}
.y6{bottom:692.677333pt;}
.y51{bottom:692.688000pt;}
.y61{bottom:702.913333pt;}
.y12{bottom:704.846667pt;}
.y5{bottom:710.942667pt;}
.y30{bottom:712.082667pt;}
.y50{bottom:712.613333pt;}
.y11{bottom:720.786667pt;}
.y60{bottom:722.838667pt;}
.y2f{bottom:732.008000pt;}
.y4f{bottom:732.538667pt;}
.y4{bottom:734.188000pt;}
.y10{bottom:745.228000pt;}
.y5f{bottom:753.390667pt;}
.yf{bottom:769.670667pt;}
.y5e{bottom:773.316000pt;}
.y3{bottom:776.332000pt;}
.y2e{bottom:776.640000pt;}
.y4e{bottom:777.172000pt;}
.y5d{bottom:793.241333pt;}
.ye{bottom:794.112000pt;}
.y2d{bottom:808.786667pt;}
.y4d{bottom:809.317333pt;}
.yd{bottom:818.553333pt;}
.y5c{bottom:823.793333pt;}
.y2c{bottom:833.228000pt;}
.y4c{bottom:833.760000pt;}
.y2{bottom:837.373333pt;}
.y5b{bottom:843.718667pt;}
.yc{bottom:854.345333pt;}
.y2b{bottom:857.669333pt;}
.y4b{bottom:858.201333pt;}
.y1{bottom:873.904000pt;}
.yb{bottom:874.270667pt;}
.y2a{bottom:882.112000pt;}
.y4a{bottom:882.642667pt;}
.ya{bottom:894.196000pt;}
.y29{bottom:906.553333pt;}
.y9{bottom:914.121333pt;}
.y28{bottom:930.994667pt;}
.y8{bottom:934.046667pt;}
.y27{bottom:959.953333pt;}
.y7{bottom:967.125333pt;}
.h8{height:21.519360pt;}
.h9{height:31.880400pt;}
.h5{height:39.850400pt;}
.h6{height:44.348486pt;}
.h7{height:44.353820pt;}
.h2{height:44.632747pt;}
.h3{height:47.820800pt;}
.h4{height:53.559147pt;}
.h1{height:64.270827pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x7{left:113.385333pt;}
.x26{left:126.669333pt;}
.x21{left:128.174667pt;}
.x1{left:130.929333pt;}
.x8{left:133.310667pt;}
.x20{left:168.250667pt;}
.x1e{left:180.277333pt;}
.x11{left:193.692000pt;}
.xa{left:195.009333pt;}
.x10{left:196.448000pt;}
.xc{left:202.316000pt;}
.x1d{left:208.450667pt;}
.x15{left:209.741333pt;}
.xb{left:210.746667pt;}
.x9{left:212.038667pt;}
.x1b{left:213.098667pt;}
.x14{left:216.041333pt;}
.x16{left:220.109333pt;}
.x17{left:222.785333pt;}
.x18{left:223.854667pt;}
.x1f{left:225.017333pt;}
.x25{left:226.557333pt;}
.x24{left:227.830667pt;}
.x19{left:232.196000pt;}
.x3{left:235.429333pt;}
.xd{left:241.096000pt;}
.x23{left:247.420000pt;}
.x4{left:256.588000pt;}
.x2{left:261.902667pt;}
.x5{left:290.892000pt;}
.x1a{left:312.124000pt;}
.x6{left:335.665333pt;}
.x13{left:350.384000pt;}
.xe{left:351.460000pt;}
.x22{left:366.734667pt;}
.x12{left:404.678667pt;}
.x1c{left:412.686667pt;}
.xf{left:448.688000pt;}
}




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