
    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_6f8c36660f696a9fb63ee6cc.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.976562;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_730d9ba070c0968be904adc5.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.976562;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_ef28231e6516a5044a7e6be3.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.976562;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_4bfacdcbe45c12b05eed871d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.878906;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_4c5dffa9ec0dfab335201adf.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.976562;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.236239,0.000000,-0.081799,0.236239,0,0);-ms-transform:matrix(0.236239,0.000000,-0.081799,0.236239,0,0);-webkit-transform:matrix(0.236239,0.000000,-0.081799,0.236239,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:-63.414000px;}
.v4{vertical-align:-30.954000px;}
.v7{vertical-align:-21.162000px;}
.v5{vertical-align:-14.460000px;}
.va{vertical-align:-13.416000px;}
.v9{vertical-align:-10.398000px;}
.vc{vertical-align:-8.706000px;}
.v3{vertical-align:-1.698000px;}
.v0{vertical-align:0.000000px;}
.vb{vertical-align:6.636000px;}
.v6{vertical-align:14.460000px;}
.v8{vertical-align:63.276000px;}
.v2{vertical-align:99.084000px;}
.ls1c{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.033096px;}
.ls1b{letter-spacing:0.048000px;}
.ls1a{letter-spacing:0.054000px;}
.ls14{letter-spacing:0.061020px;}
.ls1{letter-spacing:0.096840px;}
.ls2{letter-spacing:0.230142px;}
.ls0{letter-spacing:0.258840px;}
.lsb{letter-spacing:0.307650px;}
.ls12{letter-spacing:0.318108px;}
.ls18{letter-spacing:0.324108px;}
.ls19{letter-spacing:0.336108px;}
.ls15{letter-spacing:0.339588px;}
.lsd{letter-spacing:0.348108px;}
.lsc{letter-spacing:0.354108px;}
.ls13{letter-spacing:0.372108px;}
.ls10{letter-spacing:0.378108px;}
.ls17{letter-spacing:0.396108px;}
.lse{letter-spacing:0.426108px;}
.lsf{letter-spacing:0.432108px;}
.ls11{letter-spacing:0.456108px;}
.ls16{letter-spacing:0.462108px;}
.ls3{letter-spacing:19.364490px;}
.ls5{letter-spacing:56.780490px;}
.ls4{letter-spacing:60.176490px;}
.lsa{letter-spacing:64.066530px;}
.ls9{letter-spacing:70.192530px;}
.ls7{letter-spacing:81.418530px;}
.ls8{letter-spacing:131.416530px;}
.sc_{text-shadow:none;}
.sc6{text-shadow:-0.015em 0 rgb(67,70,85),0 0.015em rgb(67,70,85),0.015em 0 rgb(67,70,85),0 -0.015em  rgb(67,70,85);}
.sc3{text-shadow:-0.015em 0 rgb(189,149,37),0 0.015em rgb(189,149,37),0.015em 0 rgb(189,149,37),0 -0.015em  rgb(189,149,37);}
.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);}
.sc2{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);}
.sc1{text-shadow:-0.015em 0 rgb(30,100,200),0 0.015em rgb(30,100,200),0.015em 0 rgb(30,100,200),0 -0.015em  rgb(30,100,200);}
.sc4{text-shadow:-0.015em 0 rgb(174,210,255),0 0.015em rgb(174,210,255),0.015em 0 rgb(174,210,255),0 -0.015em  rgb(174,210,255);}
.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(67,70,85);text-shadow:none;}
.sc3{-webkit-text-stroke:0.015em rgb(189,149,37);text-shadow:none;}
.sc5{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(30,100,200);text-shadow:none;}
.sc4{-webkit-text-stroke:0.015em rgb(174,210,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-46.796490px;}
.ws0{word-spacing:-37.443510px;}
.ws6{word-spacing:-34.624980px;}
.wsd{word-spacing:-32.767020px;}
.ws7{word-spacing:-30.412980px;}
.ws8{word-spacing:-29.820960px;}
.wsb{word-spacing:-21.750300px;}
.ws3{word-spacing:-21.656700px;}
.ws4{word-spacing:-21.060000px;}
.wse{word-spacing:-18.938790px;}
.ws11{word-spacing:-17.672850px;}
.wsc{word-spacing:-14.960790px;}
.ws13{word-spacing:-12.182040px;}
.ws14{word-spacing:0.000000px;}
.ws5{word-spacing:1.191648px;}
.wsa{word-spacing:815.068926px;}
.wsf{word-spacing:1683.283680px;}
.ws10{word-spacing:1722.886032px;}
.ws12{word-spacing:2231.168250px;}
.ws9{word-spacing:3864.649680px;}
.ws1{word-spacing:5612.687232px;}
._2{margin-left:-9.599280px;}
._3{margin-left:-7.199460px;}
._5{margin-left:-5.988252px;}
._1{margin-left:-4.319676px;}
._7{margin-left:-3.106038px;}
._0{margin-left:-1.919856px;}
._6{width:1.185858px;}
._8{width:2.299704px;}
._4{width:3.359748px;}
._10{width:4.675128px;}
._25{width:6.578700px;}
._2c{width:8.031006px;}
._14{width:9.357192px;}
._15{width:10.377318px;}
._1b{width:12.333444px;}
._26{width:13.972830px;}
._2f{width:15.903426px;}
._2d{width:17.301180px;}
._d{width:18.344490px;}
._a{width:19.585836px;}
._2e{width:21.993750px;}
._29{width:24.036648px;}
._28{width:25.346052px;}
._30{width:28.067730px;}
._12{width:29.186736px;}
._13{width:30.338844px;}
._9{width:33.140490px;}
._2b{width:35.826708px;}
._19{width:40.067112px;}
._18{width:42.035220px;}
._11{width:47.620464px;}
._27{width:53.720490px;}
._e{width:55.718970px;}
._f{width:56.837004px;}
._b{width:58.956600px;}
._c{width:60.101634px;}
._1f{width:61.242816px;}
._20{width:64.064688px;}
._1a{width:66.939912px;}
._1c{width:70.394220px;}
._1d{width:78.276510px;}
._16{width:80.255916px;}
._22{width:99.029850px;}
._21{width:100.037382px;}
._1e{width:129.201228px;}
._17{width:130.285458px;}
._24{width:247.605696px;}
._23{width:249.046560px;}
._36{width:387.472026px;}
._37{width:409.567434px;}
._34{width:418.192998px;}
._35{width:434.758458px;}
._33{width:445.355394px;}
._39{width:461.117046px;}
._32{width:470.129046px;}
._42{width:503.578998px;}
._3e{width:506.020026px;}
._3c{width:522.622998px;}
._31{width:539.270004px;}
._3b{width:541.809198px;}
._38{width:550.664004px;}
._44{width:572.008026px;}
._3f{width:588.180630px;}
._43{width:589.937658px;}
._41{width:609.192288px;}
._3d{width:610.633296px;}
._45{width:702.328326px;}
._3a{width:893.522454px;}
._40{width:926.348454px;}
._2a{width:1019.268498px;}
.fc6{color:rgb(67,70,85);}
.fc7{color:transparent;}
.fc5{color:rgb(174,210,255);}
.fc4{color:rgb(189,149,37);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(102,102,102);}
.fc0{color:rgb(30,100,200);}
.fs14{font-size:62.472000px;}
.fs10{font-size:76.722000px;}
.fs13{font-size:90.630000px;}
.fs12{font-size:97.122000px;}
.fs8{font-size:108.000000px;}
.fs6{font-size:111.060000px;}
.fs1{font-size:111.540000px;}
.fse{font-size:131.982000px;}
.fsf{font-size:139.669856px;}
.fsd{font-size:152.928000px;}
.fsa{font-size:155.964000px;}
.fsb{font-size:165.048790px;}
.fs11{font-size:168.036000px;}
.fs4{font-size:174.012000px;}
.fs9{font-size:177.564000px;}
.fs7{font-size:179.946000px;}
.fs2{font-size:192.018000px;}
.fs5{font-size:239.982000px;}
.fsc{font-size:263.964000px;}
.fs3{font-size:300.018000px;}
.fs0{font-size:479.964000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.042000px;}
.y7{bottom:86.017500px;}
.y6{bottom:143.674500px;}
.y5{bottom:201.330000px;}
.y4a{bottom:448.540500px;}
.y66{bottom:480.046500px;}
.y49{bottom:495.312000px;}
.y7a{bottom:529.200000px;}
.y65{bottom:548.503500px;}
.y48{bottom:574.824000px;}
.y64{bottom:616.960500px;}
.y47{bottom:621.595500px;}
.y63{bottom:685.417500px;}
.y7c{bottom:695.919000px;}
.y46{bottom:701.107500px;}
.y67{bottom:747.793500px;}
.y45{bottom:747.879000px;}
.y61{bottom:832.492500px;}
.y31{bottom:850.224000px;}
.y79{bottom:891.085500px;}
.y60{bottom:898.653000px;}
.y5f{bottom:964.813500px;}
.y5e{bottom:1030.975500px;}
.y7b{bottom:1053.085500px;}
.y3d{bottom:1055.764500px;}
.y62{bottom:1092.075000px;}
.y3c{bottom:1113.420000px;}
.y5c{bottom:1176.945000px;}
.y3b{bottom:1228.734000px;}
.y5b{bottom:1243.105500px;}
.y78{bottom:1285.413000px;}
.y3a{bottom:1294.129500px;}
.y5a{bottom:1309.266000px;}
.y39{bottom:1344.046500px;}
.y59{bottom:1375.426500px;}
.y38{bottom:1409.442000px;}
.y5d{bottom:1435.549500px;}
.y37{bottom:1467.099000px;}
.y44{bottom:1517.017500px;}
.y36{bottom:1524.756000px;}
.y43{bottom:1574.674500px;}
.y35{bottom:1632.330000px;}
.y34{bottom:1689.987000px;}
.y33{bottom:1747.644000px;}
.y32{bottom:1805.301000px;}
.y42{bottom:1908.879000px;}
.y9{bottom:1911.303000px;}
.y6b{bottom:2095.327500px;}
.y30{bottom:2104.384500px;}
.y57{bottom:2123.050500px;}
.y6a{bottom:2152.941000px;}
.y2f{bottom:2152.984500px;}
.y56{bottom:2180.664000px;}
.y68{bottom:2189.551500px;}
.y58{bottom:2198.097000px;}
.y2e{bottom:2201.584500px;}
.y69{bottom:2210.556000px;}
.y2d{bottom:2250.184500px;}
.y4c{bottom:2261.409000px;}
.y4b{bottom:2319.066000px;}
.y2c{bottom:2328.250500px;}
.y2b{bottom:2376.850500px;}
.y50{bottom:2412.525000px;}
.y2a{bottom:2425.450500px;}
.y41{bottom:2441.395500px;}
.y55{bottom:2466.312000px;}
.y4f{bottom:2470.138500px;}
.y29{bottom:2474.050500px;}
.y3e{bottom:2497.861500px;}
.y40{bottom:2499.009000px;}
.y28{bottom:2522.650500px;}
.y54{bottom:2523.925500px;}
.y4e{bottom:2527.752000px;}
.y3f{bottom:2556.624000px;}
.y27{bottom:2571.250500px;}
.y4d{bottom:2585.367000px;}
.y26{bottom:2619.850500px;}
.y25{bottom:2668.450500px;}
.y77{bottom:2727.169500px;}
.y75{bottom:2727.424500px;}
.y73{bottom:2731.422000px;}
.y24{bottom:2746.516500px;}
.y23{bottom:2795.116500px;}
.y22{bottom:2843.716500px;}
.y21{bottom:2892.316500px;}
.y52{bottom:2952.907500px;}
.y20{bottom:2970.382500px;}
.y1f{bottom:3018.982500px;}
.y1e{bottom:3067.582500px;}
.y1d{bottom:3186.255000px;}
.y1c{bottom:3234.855000px;}
.y76{bottom:3278.778000px;}
.y74{bottom:3280.053000px;}
.y72{bottom:3280.180500px;}
.y1b{bottom:3283.455000px;}
.y51{bottom:3284.347500px;}
.y53{bottom:3284.986500px;}
.ya{bottom:3386.140500px;}
.y71{bottom:3548.991000px;}
.y14{bottom:3570.633000px;}
.y70{bottom:3588.576000px;}
.y6f{bottom:3628.162500px;}
.y13{bottom:3628.246500px;}
.y6e{bottom:3667.747500px;}
.y12{bottom:3693.600000px;}
.y1a{bottom:3775.791000px;}
.y11{bottom:3776.215500px;}
.y82{bottom:3776.259000px;}
.y83{bottom:3779.617500px;}
.y6d{bottom:3821.839500px;}
.y10{bottom:3841.569000px;}
.y19{bottom:3866.187000px;}
.y7f{bottom:3883.875000px;}
.y7d{bottom:3887.235000px;}
.yf{bottom:3924.184500px;}
.y18{bottom:3956.584500px;}
.ye{bottom:3981.798000px;}
.y6c{bottom:3994.681500px;}
.y17{bottom:4039.242000px;}
.yd{bottom:4047.151500px;}
.y7e{bottom:4051.998000px;}
.y80{bottom:4053.954000px;}
.y81{bottom:4055.059500px;}
.y16{bottom:4129.639500px;}
.yc{bottom:4129.767000px;}
.y15{bottom:4187.296500px;}
.yb{bottom:4195.119000px;}
.y8{bottom:4289.683500px;}
.y3{bottom:4456.354500px;}
.y4{bottom:4517.461500px;}
.y2{bottom:4619.721000px;}
.h15{height:79.101562px;}
.h4{height:81.694336px;}
.h12{height:96.666504px;}
.h13{height:102.297258px;}
.ha{height:114.231445px;}
.hb{height:120.885344px;}
.h14{height:123.073242px;}
.h9{height:131.796387px;}
.h6{height:140.638184px;}
.hd{height:143.950336px;}
.he{height:144.022336px;}
.hf{height:144.094336px;}
.h10{height:145.042336px;}
.h11{height:145.078336px;}
.h8{height:151.514203px;}
.h7{height:175.768066px;}
.hc{height:193.333008px;}
.h5{height:226.534195px;}
.h3{height:351.536133px;}
.h2{height:5055.505500px;}
.h0{height:5055.548031px;}
.h1{height:5055.750000px;}
.w2{width:3575.776500px;}
.w0{width:3575.820472px;}
.w1{width:3576.000000px;}
.x0{left:0.000000px;}
.x6{left:139.932000px;}
.x1{left:145.800000px;}
.x2{left:172.795500px;}
.x8{left:197.802000px;}
.x3b{left:292.450500px;}
.x3d{left:344.835000px;}
.xd{left:387.949500px;}
.x3a{left:405.978000px;}
.x3c{left:442.630500px;}
.xb{left:515.424000px;}
.xc{left:527.925000px;}
.x28{left:808.341000px;}
.x29{left:809.703000px;}
.x27{left:811.828500px;}
.x20{left:856.813500px;}
.x1b{left:868.422000px;}
.x1d{left:941.725500px;}
.x1c{left:961.497000px;}
.x1e{left:997.341000px;}
.x1f{left:999.085500px;}
.x38{left:1375.470000px;}
.x11{left:1438.993500px;}
.x32{left:1582.369500px;}
.x33{left:1599.378000px;}
.x3{left:1607.158500px;}
.x4{left:1652.995500px;}
.x5{left:1687.224000px;}
.x7{left:1820.523000px;}
.xe{left:1824.775500px;}
.x9{left:1855.984500px;}
.xa{left:1872.991500px;}
.xf{left:1909.729500px;}
.x21{left:1920.741000px;}
.x10{left:1935.283500px;}
.x1a{left:1961.943000px;}
.x24{left:2063.565000px;}
.x25{left:2074.450500px;}
.x2f{left:2084.187000px;}
.x30{left:2094.477000px;}
.x34{left:2129.386500px;}
.x35{left:2146.393500px;}
.x15{left:2232.496500px;}
.x26{left:2366.688000px;}
.x16{left:2418.775500px;}
.x39{left:2439.481500px;}
.x13{left:2497.776000px;}
.x12{left:2501.518500px;}
.x17{left:2565.424500px;}
.x2c{left:2576.437500px;}
.x14{left:2593.956000px;}
.x2b{left:2614.237500px;}
.x36{left:2648.125500px;}
.x37{left:2665.134000px;}
.x18{left:2695.536000px;}
.x41{left:2810.125500px;}
.x3f{left:2811.402000px;}
.x31{left:2928.628500px;}
.x2d{left:2962.813500px;}
.x2a{left:2979.864000px;}
.x2e{left:3008.224500px;}
.x22{left:3056.782500px;}
.x23{left:3133.402500px;}
.x3e{left:3192.336000px;}
.x40{left:3303.397500px;}
.x19{left:3336.307500px;}
@media print{
.v1{vertical-align:-56.368000pt;}
.v4{vertical-align:-27.514667pt;}
.v7{vertical-align:-18.810667pt;}
.v5{vertical-align:-12.853333pt;}
.va{vertical-align:-11.925333pt;}
.v9{vertical-align:-9.242667pt;}
.vc{vertical-align:-7.738667pt;}
.v3{vertical-align:-1.509333pt;}
.v0{vertical-align:0.000000pt;}
.vb{vertical-align:5.898667pt;}
.v6{vertical-align:12.853333pt;}
.v8{vertical-align:56.245333pt;}
.v2{vertical-align:88.074667pt;}
.ls1c{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.029419pt;}
.ls1b{letter-spacing:0.042667pt;}
.ls1a{letter-spacing:0.048000pt;}
.ls14{letter-spacing:0.054240pt;}
.ls1{letter-spacing:0.086080pt;}
.ls2{letter-spacing:0.204571pt;}
.ls0{letter-spacing:0.230080pt;}
.lsb{letter-spacing:0.273467pt;}
.ls12{letter-spacing:0.282763pt;}
.ls18{letter-spacing:0.288096pt;}
.ls19{letter-spacing:0.298763pt;}
.ls15{letter-spacing:0.301856pt;}
.lsd{letter-spacing:0.309429pt;}
.lsc{letter-spacing:0.314763pt;}
.ls13{letter-spacing:0.330763pt;}
.ls10{letter-spacing:0.336096pt;}
.ls17{letter-spacing:0.352096pt;}
.lse{letter-spacing:0.378763pt;}
.lsf{letter-spacing:0.384096pt;}
.ls11{letter-spacing:0.405429pt;}
.ls16{letter-spacing:0.410763pt;}
.ls3{letter-spacing:17.212880pt;}
.ls5{letter-spacing:50.471547pt;}
.ls4{letter-spacing:53.490213pt;}
.lsa{letter-spacing:56.948027pt;}
.ls9{letter-spacing:62.393360pt;}
.ls7{letter-spacing:72.372027pt;}
.ls8{letter-spacing:116.814693pt;}
.ws2{word-spacing:-41.596880pt;}
.ws0{word-spacing:-33.283120pt;}
.ws6{word-spacing:-30.777760pt;}
.wsd{word-spacing:-29.126240pt;}
.ws7{word-spacing:-27.033760pt;}
.ws8{word-spacing:-26.507520pt;}
.wsb{word-spacing:-19.333600pt;}
.ws3{word-spacing:-19.250400pt;}
.ws4{word-spacing:-18.720000pt;}
.wse{word-spacing:-16.834480pt;}
.ws11{word-spacing:-15.709200pt;}
.wsc{word-spacing:-13.298480pt;}
.ws13{word-spacing:-10.828480pt;}
.ws14{word-spacing:0.000000pt;}
.ws5{word-spacing:1.059243pt;}
.wsa{word-spacing:724.505712pt;}
.wsf{word-spacing:1496.252160pt;}
.ws10{word-spacing:1531.454251pt;}
.ws12{word-spacing:1983.260667pt;}
.ws9{word-spacing:3435.244160pt;}
.ws1{word-spacing:4989.055317pt;}
._2{margin-left:-8.532693pt;}
._3{margin-left:-6.399520pt;}
._5{margin-left:-5.322891pt;}
._1{margin-left:-3.839712pt;}
._7{margin-left:-2.760923pt;}
._0{margin-left:-1.706539pt;}
._6{width:1.054096pt;}
._8{width:2.044181pt;}
._4{width:2.986443pt;}
._10{width:4.155669pt;}
._25{width:5.847733pt;}
._2c{width:7.138672pt;}
._14{width:8.317504pt;}
._15{width:9.224283pt;}
._1b{width:10.963061pt;}
._26{width:12.420293pt;}
._2f{width:14.136379pt;}
._2d{width:15.378827pt;}
._d{width:16.306213pt;}
._a{width:17.409632pt;}
._2e{width:19.550000pt;}
._29{width:21.365909pt;}
._28{width:22.529824pt;}
._30{width:24.949093pt;}
._12{width:25.943765pt;}
._13{width:26.967861pt;}
._9{width:29.458213pt;}
._2b{width:31.845963pt;}
._19{width:35.615211pt;}
._18{width:37.364640pt;}
._11{width:42.329301pt;}
._27{width:47.751547pt;}
._e{width:49.527973pt;}
._f{width:50.521781pt;}
._b{width:52.405867pt;}
._c{width:53.423675pt;}
._1f{width:54.438059pt;}
._20{width:56.946389pt;}
._1a{width:59.502144pt;}
._1c{width:62.572640pt;}
._1d{width:69.579120pt;}
._16{width:71.338592pt;}
._22{width:88.026533pt;}
._21{width:88.922117pt;}
._1e{width:114.845536pt;}
._17{width:115.809296pt;}
._24{width:220.093952pt;}
._23{width:221.374720pt;}
._36{width:344.419579pt;}
._37{width:364.059941pt;}
._34{width:371.727109pt;}
._35{width:386.451963pt;}
._33{width:395.871461pt;}
._39{width:409.881819pt;}
._32{width:417.892485pt;}
._42{width:447.625776pt;}
._3e{width:449.795579pt;}
._3c{width:464.553776pt;}
._31{width:479.351115pt;}
._3b{width:481.608176pt;}
._38{width:489.479115pt;}
._44{width:508.451579pt;}
._3f{width:522.827227pt;}
._43{width:524.389029pt;}
._41{width:541.504256pt;}
._3d{width:542.785152pt;}
._45{width:624.291845pt;}
._3a{width:794.242181pt;}
._40{width:823.420848pt;}
._2a{width:906.016443pt;}
.fs14{font-size:55.530667pt;}
.fs10{font-size:68.197333pt;}
.fs13{font-size:80.560000pt;}
.fs12{font-size:86.330667pt;}
.fs8{font-size:96.000000pt;}
.fs6{font-size:98.720000pt;}
.fs1{font-size:99.146667pt;}
.fse{font-size:117.317333pt;}
.fsf{font-size:124.150983pt;}
.fsd{font-size:135.936000pt;}
.fsa{font-size:138.634667pt;}
.fsb{font-size:146.710036pt;}
.fs11{font-size:149.365333pt;}
.fs4{font-size:154.677333pt;}
.fs9{font-size:157.834667pt;}
.fs7{font-size:159.952000pt;}
.fs2{font-size:170.682667pt;}
.fs5{font-size:213.317333pt;}
.fsc{font-size:234.634667pt;}
.fs3{font-size:266.682667pt;}
.fs0{font-size:426.634667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.037333pt;}
.y7{bottom:76.460000pt;}
.y6{bottom:127.710667pt;}
.y5{bottom:178.960000pt;}
.y4a{bottom:398.702667pt;}
.y66{bottom:426.708000pt;}
.y49{bottom:440.277333pt;}
.y7a{bottom:470.400000pt;}
.y65{bottom:487.558667pt;}
.y48{bottom:510.954667pt;}
.y64{bottom:548.409333pt;}
.y47{bottom:552.529333pt;}
.y63{bottom:609.260000pt;}
.y7c{bottom:618.594667pt;}
.y46{bottom:623.206667pt;}
.y67{bottom:664.705333pt;}
.y45{bottom:664.781333pt;}
.y61{bottom:739.993333pt;}
.y31{bottom:755.754667pt;}
.y79{bottom:792.076000pt;}
.y60{bottom:798.802667pt;}
.y5f{bottom:857.612000pt;}
.y5e{bottom:916.422667pt;}
.y7b{bottom:936.076000pt;}
.y3d{bottom:938.457333pt;}
.y62{bottom:970.733333pt;}
.y3c{bottom:989.706667pt;}
.y5c{bottom:1046.173333pt;}
.y3b{bottom:1092.208000pt;}
.y5b{bottom:1104.982667pt;}
.y78{bottom:1142.589333pt;}
.y3a{bottom:1150.337333pt;}
.y5a{bottom:1163.792000pt;}
.y39{bottom:1194.708000pt;}
.y59{bottom:1222.601333pt;}
.y38{bottom:1252.837333pt;}
.y5d{bottom:1276.044000pt;}
.y37{bottom:1304.088000pt;}
.y44{bottom:1348.460000pt;}
.y36{bottom:1355.338667pt;}
.y43{bottom:1399.710667pt;}
.y35{bottom:1450.960000pt;}
.y34{bottom:1502.210667pt;}
.y33{bottom:1553.461333pt;}
.y32{bottom:1604.712000pt;}
.y42{bottom:1696.781333pt;}
.y9{bottom:1698.936000pt;}
.y6b{bottom:1862.513333pt;}
.y30{bottom:1870.564000pt;}
.y57{bottom:1887.156000pt;}
.y6a{bottom:1913.725333pt;}
.y2f{bottom:1913.764000pt;}
.y56{bottom:1938.368000pt;}
.y68{bottom:1946.268000pt;}
.y58{bottom:1953.864000pt;}
.y2e{bottom:1956.964000pt;}
.y69{bottom:1964.938667pt;}
.y2d{bottom:2000.164000pt;}
.y4c{bottom:2010.141333pt;}
.y4b{bottom:2061.392000pt;}
.y2c{bottom:2069.556000pt;}
.y2b{bottom:2112.756000pt;}
.y50{bottom:2144.466667pt;}
.y2a{bottom:2155.956000pt;}
.y41{bottom:2170.129333pt;}
.y55{bottom:2192.277333pt;}
.y4f{bottom:2195.678667pt;}
.y29{bottom:2199.156000pt;}
.y3e{bottom:2220.321333pt;}
.y40{bottom:2221.341333pt;}
.y28{bottom:2242.356000pt;}
.y54{bottom:2243.489333pt;}
.y4e{bottom:2246.890667pt;}
.y3f{bottom:2272.554667pt;}
.y27{bottom:2285.556000pt;}
.y4d{bottom:2298.104000pt;}
.y26{bottom:2328.756000pt;}
.y25{bottom:2371.956000pt;}
.y77{bottom:2424.150667pt;}
.y75{bottom:2424.377333pt;}
.y73{bottom:2427.930667pt;}
.y24{bottom:2441.348000pt;}
.y23{bottom:2484.548000pt;}
.y22{bottom:2527.748000pt;}
.y21{bottom:2570.948000pt;}
.y52{bottom:2624.806667pt;}
.y20{bottom:2640.340000pt;}
.y1f{bottom:2683.540000pt;}
.y1e{bottom:2726.740000pt;}
.y1d{bottom:2832.226667pt;}
.y1c{bottom:2875.426667pt;}
.y76{bottom:2914.469333pt;}
.y74{bottom:2915.602667pt;}
.y72{bottom:2915.716000pt;}
.y1b{bottom:2918.626667pt;}
.y51{bottom:2919.420000pt;}
.y53{bottom:2919.988000pt;}
.ya{bottom:3009.902667pt;}
.y71{bottom:3154.658667pt;}
.y14{bottom:3173.896000pt;}
.y70{bottom:3189.845333pt;}
.y6f{bottom:3225.033333pt;}
.y13{bottom:3225.108000pt;}
.y6e{bottom:3260.220000pt;}
.y12{bottom:3283.200000pt;}
.y1a{bottom:3356.258667pt;}
.y11{bottom:3356.636000pt;}
.y82{bottom:3356.674667pt;}
.y83{bottom:3359.660000pt;}
.y6d{bottom:3397.190667pt;}
.y10{bottom:3414.728000pt;}
.y19{bottom:3436.610667pt;}
.y7f{bottom:3452.333333pt;}
.y7d{bottom:3455.320000pt;}
.yf{bottom:3488.164000pt;}
.y18{bottom:3516.964000pt;}
.ye{bottom:3539.376000pt;}
.y6c{bottom:3550.828000pt;}
.y17{bottom:3590.437333pt;}
.yd{bottom:3597.468000pt;}
.y7e{bottom:3601.776000pt;}
.y80{bottom:3603.514667pt;}
.y81{bottom:3604.497333pt;}
.y16{bottom:3670.790667pt;}
.yc{bottom:3670.904000pt;}
.y15{bottom:3722.041333pt;}
.yb{bottom:3728.994667pt;}
.y8{bottom:3813.052000pt;}
.y3{bottom:3961.204000pt;}
.y4{bottom:4015.521333pt;}
.y2{bottom:4106.418667pt;}
.h15{height:70.312500pt;}
.h4{height:72.617188pt;}
.h12{height:85.925781pt;}
.h13{height:90.930896pt;}
.ha{height:101.539062pt;}
.hb{height:107.453639pt;}
.h14{height:109.398438pt;}
.h9{height:117.152344pt;}
.h6{height:125.011719pt;}
.hd{height:127.955854pt;}
.he{height:128.019854pt;}
.hf{height:128.083854pt;}
.h10{height:128.926521pt;}
.h11{height:128.958521pt;}
.h8{height:134.679292pt;}
.h7{height:156.238281pt;}
.hc{height:171.851562pt;}
.h5{height:201.363729pt;}
.h3{height:312.476563pt;}
.h2{height:4493.782667pt;}
.h0{height:4493.820472pt;}
.h1{height:4494.000000pt;}
.w2{width:3178.468000pt;}
.w0{width:3178.507087pt;}
.w1{width:3178.666667pt;}
.x0{left:0.000000pt;}
.x6{left:124.384000pt;}
.x1{left:129.600000pt;}
.x2{left:153.596000pt;}
.x8{left:175.824000pt;}
.x3b{left:259.956000pt;}
.x3d{left:306.520000pt;}
.xd{left:344.844000pt;}
.x3a{left:360.869333pt;}
.x3c{left:393.449333pt;}
.xb{left:458.154667pt;}
.xc{left:469.266667pt;}
.x28{left:718.525333pt;}
.x29{left:719.736000pt;}
.x27{left:721.625333pt;}
.x20{left:761.612000pt;}
.x1b{left:771.930667pt;}
.x1d{left:837.089333pt;}
.x1c{left:854.664000pt;}
.x1e{left:886.525333pt;}
.x1f{left:888.076000pt;}
.x38{left:1222.640000pt;}
.x11{left:1279.105333pt;}
.x32{left:1406.550667pt;}
.x33{left:1421.669333pt;}
.x3{left:1428.585333pt;}
.x4{left:1469.329333pt;}
.x5{left:1499.754667pt;}
.x7{left:1618.242667pt;}
.xe{left:1622.022667pt;}
.x9{left:1649.764000pt;}
.xa{left:1664.881333pt;}
.xf{left:1697.537333pt;}
.x21{left:1707.325333pt;}
.x10{left:1720.252000pt;}
.x1a{left:1743.949333pt;}
.x24{left:1834.280000pt;}
.x25{left:1843.956000pt;}
.x2f{left:1852.610667pt;}
.x30{left:1861.757333pt;}
.x34{left:1892.788000pt;}
.x35{left:1907.905333pt;}
.x15{left:1984.441333pt;}
.x26{left:2103.722667pt;}
.x16{left:2150.022667pt;}
.x39{left:2168.428000pt;}
.x13{left:2220.245333pt;}
.x12{left:2223.572000pt;}
.x17{left:2280.377333pt;}
.x2c{left:2290.166667pt;}
.x14{left:2305.738667pt;}
.x2b{left:2323.766667pt;}
.x36{left:2353.889333pt;}
.x37{left:2369.008000pt;}
.x18{left:2396.032000pt;}
.x41{left:2497.889333pt;}
.x3f{left:2499.024000pt;}
.x31{left:2603.225333pt;}
.x2d{left:2633.612000pt;}
.x2a{left:2648.768000pt;}
.x2e{left:2673.977333pt;}
.x22{left:2717.140000pt;}
.x23{left:2785.246667pt;}
.x3e{left:2837.632000pt;}
.x40{left:2936.353333pt;}
.x19{left:2965.606667pt;}
}




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