
    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_2c5b6c54875f949324959fde.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938477;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_f03e699e9f0e874cbc4ad9c6.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.832031;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_6a6abb218321f3f7c974bbe8.woff2')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_9c836841053caa34b90e4b0c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.871000;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_9a1c291d216a6c1079a14dbb.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.730469;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.245145,0.000000,-0.049029,0.245145,0,0);-ms-transform:matrix(0.245145,0.000000,-0.049029,0.245145,0,0);-webkit-transform:matrix(0.245145,0.000000,-0.049029,0.245145,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);}
.v1{vertical-align:-72.000002px;}
.v5{vertical-align:-67.500002px;}
.v7{vertical-align:-45.000001px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:67.500002px;}
.v4{vertical-align:69.750002px;}
.v2{vertical-align:72.000002px;}
.v3{vertical-align:105.749985px;}
.lsf{letter-spacing:0.000000px;}
.lsa{letter-spacing:2.421639px;}
.ls6{letter-spacing:2.421684px;}
.ls9{letter-spacing:2.431859px;}
.lsb{letter-spacing:2.435869px;}
.lsd{letter-spacing:2.435959px;}
.lsc{letter-spacing:2.436000px;}
.ls4{letter-spacing:2.436004px;}
.ls7{letter-spacing:2.436049px;}
.lse{letter-spacing:3.687100px;}
.ls3{letter-spacing:3.687105px;}
.ls8{letter-spacing:3.687123px;}
.ls5{letter-spacing:3.700367px;}
.ls0{letter-spacing:167.953118px;}
.ls2{letter-spacing:173.625000px;}
.ls1{letter-spacing:173.929681px;}
.sc_{text-shadow:none;}
.sc6{text-shadow:-0.015em 0 rgb(255,0,0),0 0.015em rgb(255,0,0),0.015em 0 rgb(255,0,0),0 -0.015em  rgb(255,0,0);}
.sc5{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.sc3{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc2{text-shadow:-0.015em 0 rgb(243,243,243),0 0.015em rgb(243,243,243),0.015em 0 rgb(243,243,243),0 -0.015em  rgb(243,243,243);}
.sc4{text-shadow:-0.015em 0 rgb(0,0,255),0 0.015em rgb(0,0,255),0.015em 0 rgb(0,0,255),0 -0.015em  rgb(0,0,255);}
.sc1{text-shadow:-0.015em 0 rgb(31,56,100),0 0.015em rgb(31,56,100),0.015em 0 rgb(31,56,100),0 -0.015em  rgb(31,56,100);}
.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;}
.sc6{-webkit-text-stroke:0.015em rgb(255,0,0);text-shadow:none;}
.sc5{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc3{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(243,243,243);text-shadow:none;}
.sc4{-webkit-text-stroke:0.015em rgb(0,0,255);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(31,56,100);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-43.200001px;}
.ws4{word-spacing:-37.600004px;}
.ws7{word-spacing:-37.200000px;}
.ws0{word-spacing:-25.600003px;}
.wsf{word-spacing:-25.200001px;}
.ws6{word-spacing:-24.800001px;}
.ws8{word-spacing:-24.000002px;}
.wse{word-spacing:-24.000000px;}
.wsb{word-spacing:-21.600001px;}
.wsc{word-spacing:-20.400000px;}
.wsd{word-spacing:-16.000001px;}
.ws3{word-spacing:-8.522128px;}
.ws2{word-spacing:-8.521993px;}
.ws9{word-spacing:-3.696483px;}
.wsa{word-spacing:-3.696303px;}
.ws12{word-spacing:-1.791350px;}
.ws10{word-spacing:-1.790877px;}
.ws5{word-spacing:-0.186000px;}
.ws14{word-spacing:0.000000px;}
.ws13{word-spacing:5.504098px;}
.ws11{word-spacing:5.506992px;}
._12{margin-left:-19.128000px;}
._1b{margin-left:-17.557573px;}
._15{margin-left:-13.088163px;}
._b{margin-left:-12.019575px;}
._6{margin-left:-10.476001px;}
._3{margin-left:-9.417085px;}
._26{margin-left:-8.400000px;}
._4{margin-left:-7.372427px;}
._8{margin-left:-5.604001px;}
._5{margin-left:-4.008001px;}
._1{margin-left:-2.220000px;}
._0{margin-left:-1.110000px;}
._9{width:1.847999px;}
._7{width:2.856000px;}
._24{width:7.570825px;}
._1c{width:11.249856px;}
._2{width:14.976001px;}
._f{width:17.442485px;}
._18{width:22.336503px;}
._2a{width:25.894947px;}
._25{width:29.567477px;}
._a{width:33.792002px;}
._21{width:35.779870px;}
._27{width:40.396155px;}
._28{width:44.077444px;}
._1d{width:71.436200px;}
._23{width:92.371512px;}
._1f{width:105.546211px;}
._e{width:113.933287px;}
._17{width:118.543366px;}
._29{width:125.537755px;}
._13{width:132.660726px;}
._10{width:139.512930px;}
._c{width:148.978471px;}
._d{width:165.681399px;}
._11{width:167.932430px;}
._22{width:178.539955px;}
._1a{width:180.063153px;}
._1e{width:183.046567px;}
._14{width:190.444910px;}
._16{width:247.074996px;}
._20{width:377.279997px;}
._19{width:439.039893px;}
.fc8{color:transparent;}
.fc6{color:rgb(255,0,0);}
.fc4{color:rgb(0,0,255);}
.fc2{color:rgb(31,56,100);}
.fc7{color:rgb(239,239,239);}
.fc5{color:rgb(255,255,255);}
.fc3{color:rgb(243,243,243);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(191,191,191);}
.fs0{font-size:30.000000px;}
.fs1{font-size:60.000000px;}
.fs13{font-size:80.000005px;}
.fs15{font-size:84.000000px;}
.fs12{font-size:102.000000px;}
.fs11{font-size:108.000003px;}
.fsf{font-size:120.000001px;}
.fse{font-size:120.000010px;}
.fsa{font-size:124.000006px;}
.fs14{font-size:126.000004px;}
.fs3{font-size:128.000014px;}
.fs10{font-size:156.000011px;}
.fsd{font-size:180.000006px;}
.fs7{font-size:182.100007px;}
.fs9{font-size:186.000000px;}
.fs6{font-size:188.000019px;}
.fsb{font-size:189.683526px;}
.fs2{font-size:192.000012px;}
.fsc{font-size:210.000013px;}
.fs4{font-size:216.000007px;}
.fs5{font-size:282.000015px;}
.fs8{font-size:468.000015px;}
.y0{bottom:0.000000px;}
.y2f{bottom:12.368089px;}
.y3f{bottom:12.816964px;}
.y2e{bottom:48.368090px;}
.y33{bottom:48.575090px;}
.y3e{bottom:48.816965px;}
.y3{bottom:53.009095px;}
.y30{bottom:56.062910px;}
.y2{bottom:64.709092px;}
.y1{bottom:82.739091px;}
.y2d{bottom:84.368091px;}
.y32{bottom:84.575091px;}
.y3d{bottom:84.816966px;}
.y2c{bottom:157.599181px;}
.y2b{bottom:211.599183px;}
.y2a{bottom:265.599184px;}
.y29{bottom:319.599186px;}
.y28{bottom:373.599188px;}
.y27{bottom:427.599189px;}
.y26{bottom:481.599191px;}
.y25{bottom:535.599193px;}
.y24{bottom:589.599201px;}
.y23{bottom:643.599199px;}
.y22{bottom:724.775783px;}
.y3a{bottom:920.709095px;}
.y3c{bottom:1015.094348px;}
.y38{bottom:1051.619216px;}
.y3b{bottom:1091.906088px;}
.y37{bottom:1109.219195px;}
.y36{bottom:1166.819174px;}
.y35{bottom:1224.419169px;}
.y39{bottom:1244.166966px;}
.y34{bottom:1282.019167px;}
.y55{bottom:1590.366602px;}
.y58{bottom:1593.366639px;}
.y54{bottom:1626.366603px;}
.y57{bottom:1629.366640px;}
.y53{bottom:1662.366604px;}
.y56{bottom:1665.366642px;}
.y47{bottom:1681.444917px;}
.y46{bottom:1717.444918px;}
.y45{bottom:1753.444919px;}
.y52{bottom:1787.113924px;}
.y59{bottom:1793.862799px;}
.y4a{bottom:2413.745466px;}
.y42{bottom:2416.853166px;}
.y49{bottom:2449.745467px;}
.y41{bottom:2452.853167px;}
.y48{bottom:2485.745468px;}
.y40{bottom:2488.853168px;}
.y50{bottom:2623.835175px;}
.y43{bottom:2632.265926px;}
.y44{bottom:2633.254573px;}
.y4b{bottom:2636.016226px;}
.y4e{bottom:2713.835177px;}
.y4d{bottom:2803.835068px;}
.y4c{bottom:2890.296046px;}
.y4f{bottom:2980.296048px;}
.y51{bottom:3072.171201px;}
.y21{bottom:3241.630776px;}
.y1a{bottom:3259.520898px;}
.y20{bottom:3297.430789px;}
.y19{bottom:3315.320866px;}
.y1f{bottom:3353.230779px;}
.y18{bottom:3371.120856px;}
.y1e{bottom:3409.030770px;}
.y1d{bottom:3464.830760px;}
.y17{bottom:3513.320849px;}
.y1c{bottom:3520.630762px;}
.y16{bottom:3569.120844px;}
.y1b{bottom:3576.430757px;}
.yc{bottom:3707.689569px;}
.yb{bottom:3765.289571px;}
.ya{bottom:3840.889540px;}
.y9{bottom:3898.489519px;}
.y8{bottom:3956.089499px;}
.y7{bottom:4013.689478px;}
.y6{bottom:4094.689481px;}
.y5{bottom:4152.289476px;}
.y4{bottom:4209.889473px;}
.yd{bottom:4286.649525px;}
.y12{bottom:4370.678978px;}
.y11{bottom:4414.382980px;}
.y10{bottom:4458.086981px;}
.yf{bottom:4532.983701px;}
.ye{bottom:4617.583704px;}
.y31{bottom:4647.895603px;}
.y15{bottom:4706.570986px;}
.y14{bottom:4818.890989px;}
.y13{bottom:4931.210993px;}
.h1{height:21.840820px;}
.h2{height:43.681641px;}
.h15{height:60.539062px;}
.h13{height:80.172000px;}
.h12{height:84.888003px;}
.h10{height:94.320001px;}
.h14{height:99.036003px;}
.h11{height:122.616009px;}
.hf{height:141.480005px;}
.h8{height:143.130606px;}
.he{height:143.437505px;}
.ha{height:146.196000px;}
.hc{height:149.091251px;}
.h4{height:150.912010px;}
.h3{height:153.000010px;}
.hd{height:165.060010px;}
.hb{height:167.214007px;}
.h5{height:169.776005px;}
.h6{height:253.518001px;}
.h7{height:253.518019px;}
.h9{height:367.848012px;}
.h0{height:5053.500000px;}
.w0{width:3574.500000px;}
.x0{left:0.000000px;}
.x13{left:42.081938px;}
.x4{left:70.183919px;}
.x2{left:71.678060px;}
.xf{left:74.291343px;}
.x23{left:79.928304px;}
.x15{left:94.794764px;}
.x1{left:129.802441px;}
.x24{left:142.953647px;}
.x3{left:161.666343px;}
.x8{left:616.882703px;}
.xb{left:647.585492px;}
.x6{left:713.986822px;}
.x25{left:797.027936px;}
.xc{left:887.830678px;}
.x9{left:921.771086px;}
.x1b{left:938.199632px;}
.x1a{left:996.039783px;}
.x1c{left:1011.480088px;}
.x19{left:1049.192971px;}
.xd{left:1184.162528px;}
.x10{left:1193.732574px;}
.xa{left:1366.082819px;}
.x1d{left:1369.878006px;}
.x18{left:1390.793782px;}
.x7{left:1432.056140px;}
.x12{left:1480.801907px;}
.x11{left:1544.298402px;}
.x5{left:1701.174707px;}
.xe{left:1869.154935px;}
.x14{left:1936.854399px;}
.x20{left:1975.297691px;}
.x2f{left:1992.510154px;}
.x1e{left:2026.628840px;}
.x2d{left:2039.010579px;}
.x1f{left:2051.056978px;}
.x2e{left:2058.069520px;}
.x21{left:2383.982992px;}
.x2c{left:2392.735352px;}
.x22{left:2402.226594px;}
.x17{left:2503.877930px;}
.x26{left:2800.087132px;}
.x28{left:2805.804000px;}
.x32{left:2814.922648px;}
.x30{left:2822.827039px;}
.x27{left:2830.168216px;}
.x31{left:2835.213019px;}
.x16{left:2940.950907px;}
.x33{left:3164.325289px;}
.x29{left:3279.977104px;}
.x2b{left:3425.601260px;}
.x2a{left:3429.351110px;}
@media print{
.v1{vertical-align:-64.000002pt;}
.v5{vertical-align:-60.000002pt;}
.v7{vertical-align:-40.000001pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:60.000002pt;}
.v4{vertical-align:62.000002pt;}
.v2{vertical-align:64.000002pt;}
.v3{vertical-align:93.999987pt;}
.lsf{letter-spacing:0.000000pt;}
.lsa{letter-spacing:2.152568pt;}
.ls6{letter-spacing:2.152608pt;}
.ls9{letter-spacing:2.161652pt;}
.lsb{letter-spacing:2.165217pt;}
.lsd{letter-spacing:2.165297pt;}
.lsc{letter-spacing:2.165333pt;}
.ls4{letter-spacing:2.165337pt;}
.ls7{letter-spacing:2.165377pt;}
.lse{letter-spacing:3.277422pt;}
.ls3{letter-spacing:3.277426pt;}
.ls8{letter-spacing:3.277442pt;}
.ls5{letter-spacing:3.289215pt;}
.ls0{letter-spacing:149.291661pt;}
.ls2{letter-spacing:154.333333pt;}
.ls1{letter-spacing:154.604161pt;}
.ws1{word-spacing:-38.400001pt;}
.ws4{word-spacing:-33.422226pt;}
.ws7{word-spacing:-33.066667pt;}
.ws0{word-spacing:-22.755558pt;}
.wsf{word-spacing:-22.400001pt;}
.ws6{word-spacing:-22.044446pt;}
.ws8{word-spacing:-21.333335pt;}
.wse{word-spacing:-21.333333pt;}
.wsb{word-spacing:-19.200001pt;}
.wsc{word-spacing:-18.133333pt;}
.wsd{word-spacing:-14.222223pt;}
.ws3{word-spacing:-7.575225pt;}
.ws2{word-spacing:-7.575105pt;}
.ws9{word-spacing:-3.285763pt;}
.wsa{word-spacing:-3.285603pt;}
.ws12{word-spacing:-1.592311pt;}
.ws10{word-spacing:-1.591891pt;}
.ws5{word-spacing:-0.165333pt;}
.ws14{word-spacing:0.000000pt;}
.ws13{word-spacing:4.892531pt;}
.ws11{word-spacing:4.895104pt;}
._12{margin-left:-17.002667pt;}
._1b{margin-left:-15.606732pt;}
._15{margin-left:-11.633923pt;}
._b{margin-left:-10.684066pt;}
._6{margin-left:-9.312000pt;}
._3{margin-left:-8.370743pt;}
._26{margin-left:-7.466667pt;}
._4{margin-left:-6.553268pt;}
._8{margin-left:-4.981334pt;}
._5{margin-left:-3.562667pt;}
._1{margin-left:-1.973333pt;}
._0{margin-left:-0.986667pt;}
._9{width:1.642666pt;}
._7{width:2.538667pt;}
._24{width:6.729622pt;}
._1c{width:9.999872pt;}
._2{width:13.312001pt;}
._f{width:15.504431pt;}
._18{width:19.854670pt;}
._2a{width:23.017731pt;}
._25{width:26.282201pt;}
._a{width:30.037335pt;}
._21{width:31.804329pt;}
._27{width:35.907693pt;}
._28{width:39.179950pt;}
._1d{width:63.498845pt;}
._23{width:82.108010pt;}
._1f{width:93.818854pt;}
._e{width:101.274033pt;}
._17{width:105.371881pt;}
._29{width:111.589115pt;}
._13{width:117.920645pt;}
._10{width:124.011494pt;}
._c{width:132.425308pt;}
._d{width:147.272355pt;}
._11{width:149.273271pt;}
._22{width:158.702182pt;}
._1a{width:160.056136pt;}
._1e{width:162.708060pt;}
._14{width:169.284364pt;}
._16{width:219.622219pt;}
._20{width:335.359997pt;}
._19{width:390.257683pt;}
.fs0{font-size:26.666667pt;}
.fs1{font-size:53.333334pt;}
.fs13{font-size:71.111115pt;}
.fs15{font-size:74.666666pt;}
.fs12{font-size:90.666667pt;}
.fs11{font-size:96.000003pt;}
.fsf{font-size:106.666667pt;}
.fse{font-size:106.666675pt;}
.fsa{font-size:110.222228pt;}
.fs14{font-size:112.000004pt;}
.fs3{font-size:113.777791pt;}
.fs10{font-size:138.666676pt;}
.fsd{font-size:160.000005pt;}
.fs7{font-size:161.866673pt;}
.fs9{font-size:165.333333pt;}
.fs6{font-size:167.111128pt;}
.fsb{font-size:168.607579pt;}
.fs2{font-size:170.666677pt;}
.fsc{font-size:186.666678pt;}
.fs4{font-size:192.000006pt;}
.fs5{font-size:250.666680pt;}
.fs8{font-size:416.000013pt;}
.y0{bottom:0.000000pt;}
.y2f{bottom:10.993857pt;}
.y3f{bottom:11.392857pt;}
.y2e{bottom:42.993858pt;}
.y33{bottom:43.177858pt;}
.y3e{bottom:43.392858pt;}
.y3{bottom:47.119196pt;}
.y30{bottom:49.833698pt;}
.y2{bottom:57.519193pt;}
.y1{bottom:73.545859pt;}
.y2d{bottom:74.993859pt;}
.y32{bottom:75.177859pt;}
.y3d{bottom:75.392859pt;}
.y2c{bottom:140.088161pt;}
.y2b{bottom:188.088162pt;}
.y2a{bottom:236.088164pt;}
.y29{bottom:284.088165pt;}
.y28{bottom:332.088167pt;}
.y27{bottom:380.088168pt;}
.y26{bottom:428.088170pt;}
.y25{bottom:476.088171pt;}
.y24{bottom:524.088179pt;}
.y23{bottom:572.088177pt;}
.y22{bottom:644.245141pt;}
.y3a{bottom:818.408084pt;}
.y3c{bottom:902.306087pt;}
.y38{bottom:934.772636pt;}
.y3b{bottom:970.583189pt;}
.y37{bottom:985.972618pt;}
.y36{bottom:1037.172599pt;}
.y35{bottom:1088.372595pt;}
.y39{bottom:1105.926192pt;}
.y34{bottom:1139.572593pt;}
.y55{bottom:1413.659201pt;}
.y58{bottom:1416.325902pt;}
.y54{bottom:1445.659203pt;}
.y57{bottom:1448.325903pt;}
.y53{bottom:1477.659204pt;}
.y56{bottom:1480.325904pt;}
.y47{bottom:1494.617704pt;}
.y46{bottom:1526.617705pt;}
.y45{bottom:1558.617706pt;}
.y52{bottom:1588.545710pt;}
.y59{bottom:1594.544710pt;}
.y4a{bottom:2145.551525pt;}
.y42{bottom:2148.313925pt;}
.y49{bottom:2177.551526pt;}
.y41{bottom:2180.313926pt;}
.y48{bottom:2209.551527pt;}
.y40{bottom:2212.313927pt;}
.y50{bottom:2332.297933pt;}
.y43{bottom:2339.791934pt;}
.y44{bottom:2340.670731pt;}
.y4b{bottom:2343.125534pt;}
.y4e{bottom:2412.297935pt;}
.y4d{bottom:2492.297838pt;}
.y4c{bottom:2569.152040pt;}
.y4f{bottom:2649.152043pt;}
.y51{bottom:2730.818846pt;}
.y21{bottom:2881.449578pt;}
.y1a{bottom:2897.351909pt;}
.y20{bottom:2931.049590pt;}
.y19{bottom:2946.951881pt;}
.y1f{bottom:2980.649582pt;}
.y18{bottom:2996.551872pt;}
.y1e{bottom:3030.249573pt;}
.y1d{bottom:3079.849565pt;}
.y17{bottom:3122.951866pt;}
.y1c{bottom:3129.449566pt;}
.y16{bottom:3172.551862pt;}
.y1b{bottom:3179.049562pt;}
.yc{bottom:3295.724062pt;}
.yb{bottom:3346.924063pt;}
.ya{bottom:3414.124036pt;}
.y9{bottom:3465.324017pt;}
.y8{bottom:3516.523999pt;}
.y7{bottom:3567.723980pt;}
.y6{bottom:3639.723983pt;}
.y5{bottom:3690.923978pt;}
.y4{bottom:3742.123976pt;}
.yd{bottom:3810.355133pt;}
.y12{bottom:3885.047981pt;}
.y11{bottom:3923.895982pt;}
.y10{bottom:3962.743983pt;}
.yf{bottom:4029.318845pt;}
.ye{bottom:4104.518848pt;}
.y31{bottom:4131.462758pt;}
.y15{bottom:4183.618654pt;}
.y14{bottom:4283.458657pt;}
.y13{bottom:4383.298661pt;}
.h1{height:19.414063pt;}
.h2{height:38.828125pt;}
.h15{height:53.812500pt;}
.h13{height:71.264000pt;}
.h12{height:75.456002pt;}
.h10{height:83.840001pt;}
.h14{height:88.032003pt;}
.h11{height:108.992008pt;}
.hf{height:125.760004pt;}
.h8{height:127.227205pt;}
.he{height:127.500004pt;}
.ha{height:129.952000pt;}
.hc{height:132.525557pt;}
.h4{height:134.144008pt;}
.h3{height:136.000009pt;}
.hd{height:146.720009pt;}
.hb{height:148.634673pt;}
.h5{height:150.912005pt;}
.h6{height:225.349334pt;}
.h7{height:225.349350pt;}
.h9{height:326.976010pt;}
.h0{height:4492.000000pt;}
.w0{width:3177.333333pt;}
.x0{left:0.000000pt;}
.x13{left:37.406167pt;}
.x4{left:62.385706pt;}
.x2{left:63.713831pt;}
.xf{left:66.036749pt;}
.x23{left:71.047381pt;}
.x15{left:84.262013pt;}
.x1{left:115.379948pt;}
.x24{left:127.069908pt;}
.x3{left:143.703416pt;}
.x8{left:548.340181pt;}
.xb{left:575.631548pt;}
.x6{left:634.654953pt;}
.x25{left:708.469277pt;}
.xc{left:789.182825pt;}
.x9{left:819.352076pt;}
.x1b{left:833.955229pt;}
.x1a{left:885.368696pt;}
.x1c{left:899.093412pt;}
.x19{left:932.615974pt;}
.xd{left:1052.588914pt;}
.x10{left:1061.095621pt;}
.xa{left:1214.295839pt;}
.x1d{left:1217.669339pt;}
.x18{left:1236.261140pt;}
.x7{left:1272.938791pt;}
.x12{left:1316.268362pt;}
.x11{left:1372.709691pt;}
.x5{left:1512.155295pt;}
.xe{left:1661.471053pt;}
.x14{left:1721.648355pt;}
.x20{left:1755.820170pt;}
.x2f{left:1771.120137pt;}
.x1e{left:1801.447858pt;}
.x2d{left:1812.453848pt;}
.x1f{left:1823.161758pt;}
.x2e{left:1829.395129pt;}
.x21{left:2119.095993pt;}
.x2c{left:2126.875868pt;}
.x22{left:2135.312528pt;}
.x17{left:2225.669271pt;}
.x26{left:2488.966340pt;}
.x28{left:2494.048000pt;}
.x32{left:2502.153465pt;}
.x30{left:2509.179590pt;}
.x27{left:2515.705081pt;}
.x31{left:2520.189351pt;}
.x16{left:2614.178584pt;}
.x33{left:2812.733590pt;}
.x29{left:2915.535203pt;}
.x2b{left:3044.978897pt;}
.x2a{left:3048.312098pt;}
}




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