
    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_8f0dbc23de509199beaa6b6c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.166000;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_292238198f2f8c572067cff1.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.868000;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_01d87dc09cc29e1ea144daa6.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.868000;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_6b2f123df84ce41f38a5ac47.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.131000;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_5176f9bcde2a08f32aa18cf7.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.941895;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_f036377d2cc571fd04dede52.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.131000;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_23fc46c76f2726bdde705945.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.914062;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_7fe604fd14c6d6f71f2b4c6d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.921387;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_95ffaa19ec9845daf4bd48a6.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_4ce7b47609f1738e8b950c7b.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_30cad950b051f5b28cfb6999.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_c9feb7bc54c3b975a05d8f1f.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.682617;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.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m5{transform:matrix(0.246175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246175,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.m4{transform:matrix(0.250396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250396,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.v4{vertical-align:-11.998246px;}
.v2{vertical-align:-10.769667px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:10.769667px;}
.v3{vertical-align:11.998246px;}
.v6{vertical-align:53.700000px;}
.v5{vertical-align:108.180000px;}
.ls21{letter-spacing:-1.836000px;}
.ls1a{letter-spacing:-1.800000px;}
.ls9{letter-spacing:-1.776000px;}
.ls16{letter-spacing:-1.716000px;}
.lsa{letter-spacing:-1.680000px;}
.ls2{letter-spacing:-1.416000px;}
.ls19{letter-spacing:-1.068000px;}
.ls1c{letter-spacing:-1.062000px;}
.ls8{letter-spacing:-0.696000px;}
.ls3{letter-spacing:-0.499800px;}
.ls20{letter-spacing:-0.462000px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.001350px;}
.ls7{letter-spacing:0.034680px;}
.ls11{letter-spacing:0.048228px;}
.lsc{letter-spacing:0.059861px;}
.ls6{letter-spacing:0.061350px;}
.ls22{letter-spacing:0.072000px;}
.lsd{letter-spacing:0.086000px;}
.ls1f{letter-spacing:0.108000px;}
.ls12{letter-spacing:0.126648px;}
.lsf{letter-spacing:0.138280px;}
.ls13{letter-spacing:0.257348px;}
.lse{letter-spacing:0.268980px;}
.lsb{letter-spacing:0.321260px;}
.ls1e{letter-spacing:0.324450px;}
.ls14{letter-spacing:0.518748px;}
.ls1b{letter-spacing:1.470000px;}
.ls1{letter-spacing:1.938000px;}
.ls4{letter-spacing:2.076000px;}
.ls18{letter-spacing:78.390000px;}
.ls1d{letter-spacing:97.147500px;}
.ls17{letter-spacing:101.992500px;}
.ls15{letter-spacing:368.910601px;}
.ls10{letter-spacing:369.086565px;}
.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;}
}
.ws0{word-spacing:-36.060000px;}
.ws13{word-spacing:-21.954450px;}
.ws12{word-spacing:-21.630000px;}
.ws11{word-spacing:-20.400000px;}
.wsb{word-spacing:-18.930000px;}
.wsf{word-spacing:-17.184000px;}
.ws10{word-spacing:-17.130000px;}
.ws3{word-spacing:-14.430000px;}
.ws14{word-spacing:-13.938000px;}
.ws4{word-spacing:-13.734000px;}
.ws6{word-spacing:-12.750000px;}
.ws5{word-spacing:-12.654000px;}
.ws15{word-spacing:-12.564000px;}
.ws8{word-spacing:-7.851793px;}
.ws9{word-spacing:-5.256160px;}
.ws7{word-spacing:-5.158854px;}
.ws2{word-spacing:-0.045000px;}
.ws1{word-spacing:0.000000px;}
.wse{word-spacing:386.657550px;}
.wsc{word-spacing:415.260750px;}
.wsd{word-spacing:467.528400px;}
.wsa{word-spacing:671.599350px;}
._8{margin-left:-4960.549050px;}
._4{margin-left:-4.123500px;}
._5{margin-left:-2.264700px;}
._3{margin-left:-1.073700px;}
._0{width:1.777500px;}
._2{width:2.925000px;}
._6{width:4.003800px;}
._1{width:5.827500px;}
._7{width:16.133700px;}
._9{width:87.001382px;}
._a{width:329.553900px;}
._b{width:4178.212650px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(217,217,217);}
.fsc{font-size:20.635415px;}
.fsd{font-size:21.024639px;}
.fs0{font-size:22.500000px;}
.fsa{font-size:28.876824px;}
.fsb{font-size:31.407173px;}
.fs8{font-size:45.000000px;}
.fs5{font-size:58.500000px;}
.fs1{font-size:58.650000px;}
.fs11{font-size:72.000000px;}
.fs9{font-size:72.150000px;}
.fs2{font-size:76.650000px;}
.fsf{font-size:94.500000px;}
.fse{font-size:94.650000px;}
.fs10{font-size:108.150000px;}
.fs4{font-size:121.650000px;}
.fs7{font-size:144.150000px;}
.fs6{font-size:144.300000px;}
.fs3{font-size:180.300000px;}
.y0{bottom:0.000000px;}
.ya{bottom:13.500000px;}
.y2{bottom:36.600000px;}
.y25{bottom:65.604788px;}
.y9{bottom:73.237500px;}
.yc{bottom:78.075000px;}
.y3f{bottom:78.150000px;}
.y24{bottom:83.660972px;}
.y57{bottom:84.375000px;}
.y78{bottom:85.275000px;}
.y6d{bottom:90.450000px;}
.y4c{bottom:90.720000px;}
.y3e{bottom:93.228201px;}
.y1{bottom:97.800000px;}
.y23{bottom:101.717156px;}
.yb{bottom:101.737500px;}
.y3d{bottom:102.253025px;}
.y6c{bottom:108.262500px;}
.y65{bottom:110.250000px;}
.y3c{bottom:111.284384px;}
.y22{bottom:119.773340px;}
.y3b{bottom:120.158904px;}
.y77{bottom:129.187500px;}
.y6b{bottom:136.425000px;}
.y21{bottom:137.829523px;}
.y3a{bottom:138.215088px;}
.y76{bottom:150.600000px;}
.y20{bottom:155.885707px;}
.y39{bottom:156.271272px;}
.y26{bottom:158.625000px;}
.yd{bottom:159.750000px;}
.y6a{bottom:164.580000px;}
.y1f{bottom:173.935356px;}
.y38{bottom:174.471225px;}
.y75{bottom:189.930000px;}
.y1e{bottom:191.991540px;}
.y37{bottom:192.527409px;}
.y69{bottom:192.750000px;}
.y1d{bottom:210.047724px;}
.y36{bottom:210.583593px;}
.y68{bottom:220.905000px;}
.y1c{bottom:228.090837px;}
.y35{bottom:228.639777px;}
.y41{bottom:231.300000px;}
.y74{bottom:241.755000px;}
.y1b{bottom:246.147021px;}
.y34{bottom:246.695961px;}
.y67{bottom:249.075000px;}
.y40{bottom:258.345000px;}
.y51{bottom:260.505000px;}
.y1a{bottom:264.203205px;}
.y33{bottom:264.739075px;}
.y19{bottom:284.951806px;}
.y32{bottom:285.794820px;}
.y4f{bottom:288.675000px;}
.y18{bottom:300.315573px;}
.y31{bottom:300.851442px;}
.y4d{bottom:309.375000px;}
.y64{bottom:312.825000px;}
.y61{bottom:313.950000px;}
.y66{bottom:316.350000px;}
.y4e{bottom:316.845000px;}
.y17{bottom:318.371757px;}
.y30{bottom:318.907626px;}
.y16{bottom:336.427940px;}
.y2f{bottom:336.963810px;}
.y63{bottom:340.995000px;}
.y60{bottom:342.120000px;}
.y15{bottom:354.484124px;}
.y2e{bottom:354.869689px;}
.y62{bottom:369.150000px;}
.y5f{bottom:370.275000px;}
.y14{bottom:372.540308px;}
.y2d{bottom:373.076177px;}
.y5{bottom:376.905000px;}
.y13{bottom:390.576887px;}
.y2c{bottom:391.132361px;}
.y5e{bottom:398.445000px;}
.y12{bottom:408.633071px;}
.y2b{bottom:409.182010px;}
.y73{bottom:412.995000px;}
.y5d{bottom:426.600000px;}
.y11{bottom:426.689255px;}
.y2a{bottom:427.238194px;}
.y5b{bottom:429.195000px;}
.y10{bottom:444.745438px;}
.y29{bottom:445.281308px;}
.y72{bottom:461.445000px;}
.y4{bottom:462.570000px;}
.yf{bottom:462.801622px;}
.y28{bottom:463.337492px;}
.y56{bottom:483.120000px;}
.y59{bottom:485.505000px;}
.ye{bottom:486.987629px;}
.y27{bottom:487.523498px;}
.y71{bottom:509.850000px;}
.y55{bottom:512.445000px;}
.y5c{bottom:513.570000px;}
.y54{bottom:540.600000px;}
.y5a{bottom:541.725000px;}
.y58{bottom:541.845000px;}
.y53{bottom:569.880000px;}
.y70{bottom:587.580000px;}
.y4b{bottom:588.375000px;}
.y47{bottom:597.570000px;}
.y50{bottom:598.050000px;}
.y44{bottom:598.905000px;}
.y4a{bottom:599.220000px;}
.y46{bottom:625.725000px;}
.y52{bottom:626.220000px;}
.y43{bottom:627.075000px;}
.y49{bottom:627.375000px;}
.y6f{bottom:630.405000px;}
.y45{bottom:653.880000px;}
.y42{bottom:655.245000px;}
.y48{bottom:655.530000px;}
.y6e{bottom:682.245000px;}
.y8{bottom:706.695000px;}
.y3{bottom:739.380000px;}
.y7{bottom:748.380000px;}
.y6{bottom:783.420000px;}
.h12{height:14.408517px;}
.h15{height:14.680290px;}
.h1{height:19.665000px;}
.he{height:20.163017px;}
.h13{height:21.807129px;}
.hf{height:21.929813px;}
.h10{height:22.159846px;}
.ha{height:23.662500px;}
.h11{height:25.178184px;}
.h14{height:26.678536px;}
.hb{height:34.365234px;}
.h2{height:50.204400px;}
.h6{height:51.129000px;}
.h7{height:51.260100px;}
.h25{height:62.928000px;}
.hc{height:63.059100px;}
.h3{height:65.612400px;}
.h1e{height:68.798584px;}
.h1d{height:68.907788px;}
.h1b{height:81.020400px;}
.h19{height:82.593000px;}
.h16{height:82.724100px;}
.h23{height:92.576400px;}
.h24{height:94.523100px;}
.h5{height:104.132400px;}
.h9{height:123.392400px;}
.h8{height:123.520800px;}
.h18{height:136.424100px;}
.h4{height:154.336800px;}
.h17{height:190.904100px;}
.h1a{height:199.125000px;}
.h1c{height:500.625000px;}
.hd{height:517.500000px;}
.h20{height:594.000000px;}
.h21{height:612.000000px;}
.h1f{height:725.625000px;}
.h22{height:783.000000px;}
.h0{height:810.000000px;}
.w5{width:57.412500px;}
.w6{width:95.700000px;}
.w7{width:167.625000px;}
.w2{width:306.225000px;}
.w4{width:393.750000px;}
.w3{width:400.500000px;}
.w9{width:461.250000px;}
.w8{width:750.375000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x42{left:11.212500px;}
.x2{left:31.912479px;}
.x2b{left:46.390054px;}
.x20{left:47.477896px;}
.x1f{left:64.125000px;}
.x2c{left:67.747883px;}
.x2f{left:87.522697px;}
.x25{left:89.363458px;}
.x1d{left:97.950000px;}
.x21{left:99.050553px;}
.x40{left:106.950000px;}
.x47{left:114.974979px;}
.x4b{left:116.662479px;}
.x4a{left:125.962479px;}
.x34{left:130.387479px;}
.x48{left:139.087479px;}
.x33{left:146.132853px;}
.x46{left:147.150000px;}
.x2d{left:152.336212px;}
.x32{left:153.629651px;}
.x22{left:155.333888px;}
.x28{left:157.932386px;}
.x49{left:160.529979px;}
.x30{left:162.239706px;}
.x26{left:165.361341px;}
.x29{left:168.103837px;}
.x23{left:171.500865px;}
.x2e{left:178.758401px;}
.x35{left:180.299979px;}
.x24{left:182.176307px;}
.x41{left:194.775000px;}
.x31{left:197.175426px;}
.x27{left:200.850147px;}
.x38{left:220.019979px;}
.x39{left:237.644979px;}
.x44{left:242.924979px;}
.x4c{left:263.174979px;}
.x3{left:285.119979px;}
.x4d{left:296.969979px;}
.x36{left:406.094979px;}
.x2a{left:524.250000px;}
.x3c{left:679.079979px;}
.x3a{left:773.219979px;}
.x3b{left:796.319979px;}
.x37{left:803.819979px;}
.x43{left:947.250000px;}
.x45{left:992.894979px;}
.x3d{left:1082.954979px;}
.x3f{left:1088.819979px;}
.x3e{left:1152.194979px;}
.x1e{left:1401.674979px;}
.x1{left:1448.444979px;}
.x4{left:1454.624979px;}
.x5{left:1472.624979px;}
.x6{left:1490.654979px;}
.x7{left:1507.529979px;}
.x8{left:1525.544979px;}
.x9{left:1543.574979px;}
.xa{left:1560.449979px;}
.xb{left:1578.449979px;}
.xc{left:1596.479979px;}
.xd{left:1613.354979px;}
.xe{left:1631.354979px;}
.xf{left:1649.399979px;}
.x10{left:1666.274979px;}
.x11{left:1684.319979px;}
.x12{left:1702.319979px;}
.x13{left:1719.194979px;}
.x14{left:1737.224979px;}
.x15{left:1755.224979px;}
.x16{left:1772.099979px;}
.x17{left:1790.144979px;}
.x18{left:1808.144979px;}
.x19{left:1825.019979px;}
.x1a{left:1843.049979px;}
.x1b{left:1861.049979px;}
.x1c{left:1879.049979px;}
@media print{
.v4{vertical-align:-10.665107pt;}
.v2{vertical-align:-9.573038pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:9.573038pt;}
.v3{vertical-align:10.665107pt;}
.v6{vertical-align:47.733333pt;}
.v5{vertical-align:96.160000pt;}
.ls21{letter-spacing:-1.632000pt;}
.ls1a{letter-spacing:-1.600000pt;}
.ls9{letter-spacing:-1.578667pt;}
.ls16{letter-spacing:-1.525333pt;}
.lsa{letter-spacing:-1.493333pt;}
.ls2{letter-spacing:-1.258667pt;}
.ls19{letter-spacing:-0.949333pt;}
.ls1c{letter-spacing:-0.944000pt;}
.ls8{letter-spacing:-0.618667pt;}
.ls3{letter-spacing:-0.444267pt;}
.ls20{letter-spacing:-0.410667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.001200pt;}
.ls7{letter-spacing:0.030827pt;}
.ls11{letter-spacing:0.042870pt;}
.lsc{letter-spacing:0.053209pt;}
.ls6{letter-spacing:0.054533pt;}
.ls22{letter-spacing:0.064000pt;}
.lsd{letter-spacing:0.076445pt;}
.ls1f{letter-spacing:0.096000pt;}
.ls12{letter-spacing:0.112576pt;}
.lsf{letter-spacing:0.122916pt;}
.ls13{letter-spacing:0.228754pt;}
.lse{letter-spacing:0.239094pt;}
.lsb{letter-spacing:0.285565pt;}
.ls1e{letter-spacing:0.288400pt;}
.ls14{letter-spacing:0.461109pt;}
.ls1b{letter-spacing:1.306667pt;}
.ls1{letter-spacing:1.722667pt;}
.ls4{letter-spacing:1.845333pt;}
.ls18{letter-spacing:69.680000pt;}
.ls1d{letter-spacing:86.353333pt;}
.ls17{letter-spacing:90.660000pt;}
.ls15{letter-spacing:327.920534pt;}
.ls10{letter-spacing:328.076946pt;}
.ws0{word-spacing:-32.053333pt;}
.ws13{word-spacing:-19.515067pt;}
.ws12{word-spacing:-19.226667pt;}
.ws11{word-spacing:-18.133333pt;}
.wsb{word-spacing:-16.826667pt;}
.wsf{word-spacing:-15.274667pt;}
.ws10{word-spacing:-15.226667pt;}
.ws3{word-spacing:-12.826667pt;}
.ws14{word-spacing:-12.389333pt;}
.ws4{word-spacing:-12.208000pt;}
.ws6{word-spacing:-11.333333pt;}
.ws5{word-spacing:-11.248000pt;}
.ws15{word-spacing:-11.168000pt;}
.ws8{word-spacing:-6.979372pt;}
.ws9{word-spacing:-4.672142pt;}
.ws7{word-spacing:-4.585648pt;}
.ws2{word-spacing:-0.040000pt;}
.ws1{word-spacing:0.000000pt;}
.wse{word-spacing:343.695600pt;}
.wsc{word-spacing:369.120667pt;}
.wsd{word-spacing:415.580800pt;}
.wsa{word-spacing:596.977200pt;}
._8{margin-left:-4409.376933pt;}
._4{margin-left:-3.665333pt;}
._5{margin-left:-2.013067pt;}
._3{margin-left:-0.954400pt;}
._0{width:1.580000pt;}
._2{width:2.600000pt;}
._6{width:3.558933pt;}
._1{width:5.180000pt;}
._7{width:14.341067pt;}
._9{width:77.334562pt;}
._a{width:292.936800pt;}
._b{width:3713.966800pt;}
.fsc{font-size:18.342591pt;}
.fsd{font-size:18.688568pt;}
.fs0{font-size:20.000000pt;}
.fsa{font-size:25.668288pt;}
.fsb{font-size:27.917487pt;}
.fs8{font-size:40.000000pt;}
.fs5{font-size:52.000000pt;}
.fs1{font-size:52.133333pt;}
.fs11{font-size:64.000000pt;}
.fs9{font-size:64.133333pt;}
.fs2{font-size:68.133333pt;}
.fsf{font-size:84.000000pt;}
.fse{font-size:84.133333pt;}
.fs10{font-size:96.133333pt;}
.fs4{font-size:108.133333pt;}
.fs7{font-size:128.133333pt;}
.fs6{font-size:128.266667pt;}
.fs3{font-size:160.266667pt;}
.y0{bottom:0.000000pt;}
.ya{bottom:12.000000pt;}
.y2{bottom:32.533333pt;}
.y25{bottom:58.315367pt;}
.y9{bottom:65.100000pt;}
.yc{bottom:69.400000pt;}
.y3f{bottom:69.466667pt;}
.y24{bottom:74.365308pt;}
.y57{bottom:75.000000pt;}
.y78{bottom:75.800000pt;}
.y6d{bottom:80.400000pt;}
.y4c{bottom:80.640000pt;}
.y3e{bottom:82.869512pt;}
.y1{bottom:86.933333pt;}
.y23{bottom:90.415250pt;}
.yb{bottom:90.433333pt;}
.y3d{bottom:90.891578pt;}
.y6c{bottom:96.233333pt;}
.y65{bottom:98.000000pt;}
.y3c{bottom:98.919453pt;}
.y22{bottom:106.465191pt;}
.y3b{bottom:106.807915pt;}
.y77{bottom:114.833333pt;}
.y6b{bottom:121.266667pt;}
.y21{bottom:122.515132pt;}
.y3a{bottom:122.857856pt;}
.y76{bottom:133.866667pt;}
.y20{bottom:138.565073pt;}
.y39{bottom:138.907797pt;}
.y26{bottom:141.000000pt;}
.yd{bottom:142.000000pt;}
.y6a{bottom:146.293333pt;}
.y1f{bottom:154.609205pt;}
.y38{bottom:155.085534pt;}
.y75{bottom:168.826667pt;}
.y1e{bottom:170.659147pt;}
.y37{bottom:171.135475pt;}
.y69{bottom:171.333333pt;}
.y1d{bottom:186.709088pt;}
.y36{bottom:187.185416pt;}
.y68{bottom:196.360000pt;}
.y1c{bottom:202.747411pt;}
.y35{bottom:203.235357pt;}
.y41{bottom:205.600000pt;}
.y74{bottom:214.893333pt;}
.y1b{bottom:218.797352pt;}
.y34{bottom:219.285298pt;}
.y67{bottom:221.400000pt;}
.y40{bottom:229.640000pt;}
.y51{bottom:231.560000pt;}
.y1a{bottom:234.847293pt;}
.y33{bottom:235.323622pt;}
.y19{bottom:253.290494pt;}
.y32{bottom:254.039840pt;}
.y4f{bottom:256.600000pt;}
.y18{bottom:266.947176pt;}
.y31{bottom:267.423504pt;}
.y4d{bottom:275.000000pt;}
.y64{bottom:278.066667pt;}
.y61{bottom:279.066667pt;}
.y66{bottom:281.200000pt;}
.y4e{bottom:281.640000pt;}
.y17{bottom:282.997117pt;}
.y30{bottom:283.473445pt;}
.y16{bottom:299.047058pt;}
.y2f{bottom:299.523386pt;}
.y63{bottom:303.106667pt;}
.y60{bottom:304.106667pt;}
.y15{bottom:315.096999pt;}
.y2e{bottom:315.439723pt;}
.y62{bottom:328.133333pt;}
.y5f{bottom:329.133333pt;}
.y14{bottom:331.146941pt;}
.y2d{bottom:331.623269pt;}
.y5{bottom:335.026667pt;}
.y13{bottom:347.179455pt;}
.y2c{bottom:347.673210pt;}
.y5e{bottom:354.173333pt;}
.y12{bottom:363.229396pt;}
.y2b{bottom:363.717342pt;}
.y73{bottom:367.106667pt;}
.y5d{bottom:379.200000pt;}
.y11{bottom:379.279337pt;}
.y2a{bottom:379.767283pt;}
.y5b{bottom:381.506667pt;}
.y10{bottom:395.329279pt;}
.y29{bottom:395.805607pt;}
.y72{bottom:410.173333pt;}
.y4{bottom:411.173333pt;}
.yf{bottom:411.379220pt;}
.y28{bottom:411.855548pt;}
.y56{bottom:429.440000pt;}
.y59{bottom:431.560000pt;}
.ye{bottom:432.877892pt;}
.y27{bottom:433.354221pt;}
.y71{bottom:453.200000pt;}
.y55{bottom:455.506667pt;}
.y5c{bottom:456.506667pt;}
.y54{bottom:480.533333pt;}
.y5a{bottom:481.533333pt;}
.y58{bottom:481.640000pt;}
.y53{bottom:506.560000pt;}
.y70{bottom:522.293333pt;}
.y4b{bottom:523.000000pt;}
.y47{bottom:531.173333pt;}
.y50{bottom:531.600000pt;}
.y44{bottom:532.360000pt;}
.y4a{bottom:532.640000pt;}
.y46{bottom:556.200000pt;}
.y52{bottom:556.640000pt;}
.y43{bottom:557.400000pt;}
.y49{bottom:557.666667pt;}
.y6f{bottom:560.360000pt;}
.y45{bottom:581.226667pt;}
.y42{bottom:582.440000pt;}
.y48{bottom:582.693333pt;}
.y6e{bottom:606.440000pt;}
.y8{bottom:628.173333pt;}
.y3{bottom:657.226667pt;}
.y7{bottom:665.226667pt;}
.y6{bottom:696.373333pt;}
.h12{height:12.807571pt;}
.h15{height:13.049146pt;}
.h1{height:17.480000pt;}
.he{height:17.922682pt;}
.h13{height:19.384115pt;}
.hf{height:19.493167pt;}
.h10{height:19.697641pt;}
.ha{height:21.033333pt;}
.h11{height:22.380608pt;}
.h14{height:23.714254pt;}
.hb{height:30.546875pt;}
.h2{height:44.626133pt;}
.h6{height:45.448000pt;}
.h7{height:45.564533pt;}
.h25{height:55.936000pt;}
.hc{height:56.052533pt;}
.h3{height:58.322133pt;}
.h1e{height:61.154297pt;}
.h1d{height:61.251367pt;}
.h1b{height:72.018133pt;}
.h19{height:73.416000pt;}
.h16{height:73.532533pt;}
.h23{height:82.290133pt;}
.h24{height:84.020533pt;}
.h5{height:92.562133pt;}
.h9{height:109.682133pt;}
.h8{height:109.796267pt;}
.h18{height:121.265867pt;}
.h4{height:137.188267pt;}
.h17{height:169.692533pt;}
.h1a{height:177.000000pt;}
.h1c{height:445.000000pt;}
.hd{height:460.000000pt;}
.h20{height:528.000000pt;}
.h21{height:544.000000pt;}
.h1f{height:645.000000pt;}
.h22{height:696.000000pt;}
.h0{height:720.000000pt;}
.w5{width:51.033333pt;}
.w6{width:85.066667pt;}
.w7{width:149.000000pt;}
.w2{width:272.200000pt;}
.w4{width:350.000000pt;}
.w3{width:356.000000pt;}
.w9{width:410.000000pt;}
.w8{width:667.000000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x42{left:9.966667pt;}
.x2{left:28.366648pt;}
.x2b{left:41.235604pt;}
.x20{left:42.202574pt;}
.x1f{left:57.000000pt;}
.x2c{left:60.220341pt;}
.x2f{left:77.797953pt;}
.x25{left:79.434185pt;}
.x1d{left:87.066667pt;}
.x21{left:88.044936pt;}
.x40{left:95.066667pt;}
.x47{left:102.199981pt;}
.x4b{left:103.699981pt;}
.x4a{left:111.966648pt;}
.x34{left:115.899981pt;}
.x48{left:123.633314pt;}
.x33{left:129.895869pt;}
.x46{left:130.800000pt;}
.x2d{left:135.409966pt;}
.x32{left:136.559689pt;}
.x22{left:138.074567pt;}
.x28{left:140.384343pt;}
.x49{left:142.693314pt;}
.x30{left:144.213072pt;}
.x26{left:146.987859pt;}
.x29{left:149.425633pt;}
.x23{left:152.445214pt;}
.x2e{left:158.896356pt;}
.x35{left:160.266648pt;}
.x24{left:161.934495pt;}
.x41{left:173.133333pt;}
.x31{left:175.267045pt;}
.x27{left:178.533464pt;}
.x38{left:195.573314pt;}
.x39{left:211.239981pt;}
.x44{left:215.933314pt;}
.x4c{left:233.933314pt;}
.x3{left:253.439981pt;}
.x4d{left:263.973314pt;}
.x36{left:360.973314pt;}
.x2a{left:466.000000pt;}
.x3c{left:603.626648pt;}
.x3a{left:687.306648pt;}
.x3b{left:707.839981pt;}
.x37{left:714.506648pt;}
.x43{left:842.000000pt;}
.x45{left:882.573314pt;}
.x3d{left:962.626648pt;}
.x3f{left:967.839981pt;}
.x3e{left:1024.173314pt;}
.x1e{left:1245.933314pt;}
.x1{left:1287.506648pt;}
.x4{left:1292.999981pt;}
.x5{left:1308.999981pt;}
.x6{left:1325.026648pt;}
.x7{left:1340.026648pt;}
.x8{left:1356.039981pt;}
.x9{left:1372.066648pt;}
.xa{left:1387.066648pt;}
.xb{left:1403.066648pt;}
.xc{left:1419.093314pt;}
.xd{left:1434.093314pt;}
.xe{left:1450.093314pt;}
.xf{left:1466.133314pt;}
.x10{left:1481.133314pt;}
.x11{left:1497.173314pt;}
.x12{left:1513.173314pt;}
.x13{left:1528.173314pt;}
.x14{left:1544.199981pt;}
.x15{left:1560.199981pt;}
.x16{left:1575.199981pt;}
.x17{left:1591.239981pt;}
.x18{left:1607.239981pt;}
.x19{left:1622.239981pt;}
.x1a{left:1638.266648pt;}
.x1b{left:1654.266648pt;}
.x1c{left:1670.266648pt;}
}




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