
    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_3d2964b3b17e2276fff8ccf3.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_ab6dab48e25d7b909af12897.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.666504;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_01ac91049f35092af1d10792.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.666504;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_002c8f15b5705b258eb14a05.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.093262;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_11af6f1bec034492406b7f56.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;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_90f8e7a66c3e088c914fa98a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.900391;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_f41168405f14977152a14bbb.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.908203;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_ce664e8de0e6ee793d4e2f43.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666504;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_96fd5f6e2aa3cad1dcb37ff0.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666504;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_25c5ff7b2c6b821a5eaf85b9.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.908203;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_549202f90c4c972a43adb69a.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls4{letter-spacing:-0.158976px;}
.ls5{letter-spacing:-0.119232px;}
.ls6{letter-spacing:-0.059616px;}
.ls1{letter-spacing:-0.014400px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.014400px;}
.ls7{letter-spacing:28.007424px;}
.ls3{letter-spacing:54.866880px;}
.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;}
}
.ws2{word-spacing:-18.014400px;}
.ws0{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.985600px;}
.ws4{word-spacing:-16.401024px;}
.ws5{word-spacing:-0.072000px;}
.ws1{word-spacing:0.000000px;}
.ws3{word-spacing:0.052992px;}
._6{margin-left:-4.586400px;}
._3{margin-left:-3.124800px;}
._1{margin-left:-1.548000px;}
._0{width:1.260000px;}
._9{width:2.505600px;}
._5{width:3.607200px;}
._c{width:4.723200px;}
._e{width:5.796000px;}
._7{width:7.027200px;}
._a{width:9.050400px;}
._b{width:10.274400px;}
._4{width:12.002400px;}
._13{width:13.264560px;}
._12{width:14.328000px;}
._f{width:15.609600px;}
._10{width:16.800624px;}
._11{width:19.811952px;}
._2{width:27.955584px;}
._8{width:29.462400px;}
._14{width:30.520800px;}
._d{width:38.469600px;}
.fc1{color:rgb(210,32,32);}
.fc2{color:rgb(85,85,85);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:41.760000px;}
.fs2{font-size:60.480000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:86.400000px;}
.y0{bottom:0.000000px;}
.y81{bottom:4.828800px;}
.y8b{bottom:5.188800px;}
.y79{bottom:5.248800px;}
.y8e{bottom:5.548800px;}
.y86{bottom:25.228800px;}
.y74{bottom:25.288800px;}
.y80{bottom:25.708800px;}
.y8a{bottom:26.068800px;}
.y78{bottom:26.128800px;}
.y8f{bottom:36.148800px;}
.y7f{bottom:46.228800px;}
.y7a{bottom:46.288800px;}
.y89{bottom:46.588800px;}
.y77{bottom:46.648800px;}
.y8d{bottom:46.948800px;}
.y82{bottom:66.748800px;}
.y7e{bottom:67.108800px;}
.y88{bottom:67.468800px;}
.y76{bottom:67.528800px;}
.y7d{bottom:87.628800px;}
.y7c{bottom:108.508800px;}
.yab{bottom:110.128800px;}
.y52{bottom:111.568800px;}
.y40{bottom:111.928800px;}
.y71{bottom:124.888800px;}
.y51{bottom:132.088800px;}
.y23{bottom:140.728800px;}
.yaa{bottom:145.408800px;}
.y96{bottom:147.568800px;}
.y50{bottom:152.968800px;}
.y3f{bottom:153.328800px;}
.y70{bottom:166.288800px;}
.y4f{bottom:173.488800px;}
.y22{bottom:182.128800px;}
.ya9{bottom:186.808800px;}
.y95{bottom:188.968800px;}
.y3e{bottom:194.728800px;}
.y21{bottom:203.368800px;}
.y6f{bottom:207.688800px;}
.y4e{bottom:214.528800px;}
.y20{bottom:223.888800px;}
.ya8{bottom:228.208800px;}
.y94{bottom:230.368800px;}
.y3d{bottom:236.128800px;}
.y1f{bottom:244.768800px;}
.y6e{bottom:249.088800px;}
.y4d{bottom:255.928800px;}
.y1e{bottom:265.288800px;}
.ya7{bottom:269.608800px;}
.y93{bottom:271.768800px;}
.y3c{bottom:277.528800px;}
.y1d{bottom:286.168800px;}
.y6d{bottom:290.128800px;}
.y4c{bottom:297.328800px;}
.y1c{bottom:306.688800px;}
.ya6{bottom:311.008800px;}
.y92{bottom:313.168800px;}
.y3b{bottom:318.928800px;}
.y1b{bottom:327.568800px;}
.y6c{bottom:331.528800px;}
.y4b{bottom:338.728800px;}
.y1a{bottom:348.088800px;}
.ya5{bottom:352.408800px;}
.y91{bottom:354.568800px;}
.y3a{bottom:360.328800px;}
.y19{bottom:368.968800px;}
.y6b{bottom:372.928800px;}
.y4a{bottom:380.128800px;}
.y90{bottom:393.088800px;}
.ya4{bottom:393.808800px;}
.y39{bottom:401.728800px;}
.y8c{bottom:409.500000px;}
.y18{bottom:410.008800px;}
.y6a{bottom:414.328800px;}
.y49{bottom:421.528800px;}
.y17{bottom:430.888800px;}
.ya3{bottom:435.208800px;}
.y38{bottom:443.128800px;}
.y16{bottom:451.768800px;}
.y69{bottom:455.728800px;}
.y48{bottom:462.928800px;}
.y15{bottom:472.288800px;}
.y87{bottom:472.500000px;}
.ya2{bottom:476.608800px;}
.y37{bottom:484.528800px;}
.y14{bottom:493.168800px;}
.y68{bottom:497.128800px;}
.y47{bottom:504.328800px;}
.y13{bottom:513.688800px;}
.ya1{bottom:518.008800px;}
.y36{bottom:525.568800px;}
.y67{bottom:538.528800px;}
.y46{bottom:545.728800px;}
.y12{bottom:554.728800px;}
.y85{bottom:556.500000px;}
.ya0{bottom:559.408800px;}
.y35{bottom:568.408800px;}
.y66{bottom:579.928800px;}
.y45{bottom:587.128800px;}
.y11{bottom:596.128800px;}
.y9f{bottom:600.808800px;}
.y34{bottom:609.808800px;}
.y65{bottom:621.328800px;}
.y44{bottom:628.528800px;}
.y10{bottom:637.528800px;}
.y9e{bottom:642.208800px;}
.y33{bottom:651.208800px;}
.y84{bottom:659.848800px;}
.y64{bottom:662.728800px;}
.y43{bottom:669.928800px;}
.yf{bottom:678.928800px;}
.y83{bottom:681.088800px;}
.y9d{bottom:683.608800px;}
.y32{bottom:692.608800px;}
.y7b{bottom:697.500000px;}
.y63{bottom:704.128800px;}
.y42{bottom:712.768800px;}
.ye{bottom:720.328800px;}
.y9c{bottom:725.008800px;}
.y31{bottom:734.008800px;}
.y62{bottom:745.528800px;}
.y41{bottom:750.208800px;}
.yd{bottom:761.728800px;}
.y9b{bottom:766.408800px;}
.y30{bottom:775.408800px;}
.y61{bottom:786.928800px;}
.yc{bottom:803.128800px;}
.y9a{bottom:807.808800px;}
.y2f{bottom:816.808800px;}
.y75{bottom:822.000000px;}
.y60{bottom:828.328800px;}
.yb{bottom:840.568800px;}
.y99{bottom:849.208800px;}
.y2e{bottom:858.208800px;}
.y5f{bottom:869.728800px;}
.ya{bottom:879.088800px;}
.y2d{bottom:880.168800px;}
.y98{bottom:890.608800px;}
.y2c{bottom:898.888800px;}
.y73{bottom:906.000000px;}
.y5e{bottom:911.128800px;}
.y2b{bottom:917.968800px;}
.y9{bottom:920.488800px;}
.y97{bottom:932.008800px;}
.y5d{bottom:932.368800px;}
.y2a{bottom:937.048800px;}
.y5c{bottom:952.888800px;}
.y29{bottom:955.768800px;}
.y8{bottom:961.888800px;}
.y72{bottom:973.408800px;}
.y5b{bottom:973.768800px;}
.y28{bottom:974.848800px;}
.y5a{bottom:994.288800px;}
.y7{bottom:1003.288800px;}
.y27{bottom:1014.808800px;}
.y59{bottom:1015.168800px;}
.y6{bottom:1035.328800px;}
.y58{bottom:1035.688800px;}
.y26{bottom:1056.208800px;}
.y57{bottom:1056.568800px;}
.y5{bottom:1067.368800px;}
.y56{bottom:1077.088800px;}
.y25{bottom:1097.608800px;}
.y55{bottom:1097.968800px;}
.y4{bottom:1098.688800px;}
.y3{bottom:1115.968800px;}
.y54{bottom:1118.488800px;}
.y2{bottom:1135.048800px;}
.y24{bottom:1139.008800px;}
.y53{bottom:1139.368800px;}
.y1{bottom:1192.648800px;}
.hc{height:27.833203px;}
.h4{height:40.310156px;}
.ha{height:42.000000px;}
.h7{height:43.500000px;}
.h2{height:45.992813px;}
.h6{height:49.289063px;}
.h3{height:57.585938px;}
.h5{height:63.175781px;}
.hb{height:64.500000px;}
.h8{height:84.000000px;}
.h9{height:126.000000px;}
.h0{height:1262.834700px;}
.h1{height:1263.000000px;}
.w3{width:40.500000px;}
.w5{width:49.500000px;}
.w4{width:51.000000px;}
.w8{width:54.000000px;}
.w6{width:63.000000px;}
.w2{width:400.500000px;}
.w7{width:585.000000px;}
.w0{width:892.913250px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:7.785972px;}
.x11{left:9.108780px;}
.x18{left:10.518900px;}
.xa{left:15.465780px;}
.x12{left:19.980780px;}
.xd{left:21.105780px;}
.x1{left:128.145972px;}
.x13{left:149.157300px;}
.x5{left:155.145900px;}
.x2{left:165.425880px;}
.x19{left:175.629972px;}
.x4{left:182.145972px;}
.x1a{left:209.145972px;}
.x7{left:333.349680px;}
.x3{left:397.329780px;}
.x14{left:401.087100px;}
.x15{left:446.820780px;}
.x9{left:529.500000px;}
.xb{left:570.000000px;}
.xc{left:609.000000px;}
.xe{left:658.500000px;}
.xf{left:708.000000px;}
.x16{left:712.500000px;}
.x10{left:757.500000px;}
.x6{left:765.420780px;}
.x17{left:766.500000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-0.141312pt;}
.ls5{letter-spacing:-0.105984pt;}
.ls6{letter-spacing:-0.052992pt;}
.ls1{letter-spacing:-0.012800pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.012800pt;}
.ls7{letter-spacing:24.895488pt;}
.ls3{letter-spacing:48.770560pt;}
.ws2{word-spacing:-16.012800pt;}
.ws0{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.987200pt;}
.ws4{word-spacing:-14.578688pt;}
.ws5{word-spacing:-0.064000pt;}
.ws1{word-spacing:0.000000pt;}
.ws3{word-spacing:0.047104pt;}
._6{margin-left:-4.076800pt;}
._3{margin-left:-2.777600pt;}
._1{margin-left:-1.376000pt;}
._0{width:1.120000pt;}
._9{width:2.227200pt;}
._5{width:3.206400pt;}
._c{width:4.198400pt;}
._e{width:5.152000pt;}
._7{width:6.246400pt;}
._a{width:8.044800pt;}
._b{width:9.132800pt;}
._4{width:10.668800pt;}
._13{width:11.790720pt;}
._12{width:12.736000pt;}
._f{width:13.875200pt;}
._10{width:14.933888pt;}
._11{width:17.610624pt;}
._2{width:24.849408pt;}
._8{width:26.188800pt;}
._14{width:27.129600pt;}
._d{width:34.195200pt;}
.fs4{font-size:37.120000pt;}
.fs2{font-size:53.760000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:76.800000pt;}
.y0{bottom:0.000000pt;}
.y81{bottom:4.292267pt;}
.y8b{bottom:4.612267pt;}
.y79{bottom:4.665600pt;}
.y8e{bottom:4.932267pt;}
.y86{bottom:22.425600pt;}
.y74{bottom:22.478933pt;}
.y80{bottom:22.852267pt;}
.y8a{bottom:23.172267pt;}
.y78{bottom:23.225600pt;}
.y8f{bottom:32.132267pt;}
.y7f{bottom:41.092267pt;}
.y7a{bottom:41.145600pt;}
.y89{bottom:41.412267pt;}
.y77{bottom:41.465600pt;}
.y8d{bottom:41.732267pt;}
.y82{bottom:59.332267pt;}
.y7e{bottom:59.652267pt;}
.y88{bottom:59.972267pt;}
.y76{bottom:60.025600pt;}
.y7d{bottom:77.892267pt;}
.y7c{bottom:96.452267pt;}
.yab{bottom:97.892267pt;}
.y52{bottom:99.172267pt;}
.y40{bottom:99.492267pt;}
.y71{bottom:111.012267pt;}
.y51{bottom:117.412267pt;}
.y23{bottom:125.092267pt;}
.yaa{bottom:129.252267pt;}
.y96{bottom:131.172267pt;}
.y50{bottom:135.972267pt;}
.y3f{bottom:136.292267pt;}
.y70{bottom:147.812267pt;}
.y4f{bottom:154.212267pt;}
.y22{bottom:161.892267pt;}
.ya9{bottom:166.052267pt;}
.y95{bottom:167.972267pt;}
.y3e{bottom:173.092267pt;}
.y21{bottom:180.772267pt;}
.y6f{bottom:184.612267pt;}
.y4e{bottom:190.692267pt;}
.y20{bottom:199.012267pt;}
.ya8{bottom:202.852267pt;}
.y94{bottom:204.772267pt;}
.y3d{bottom:209.892267pt;}
.y1f{bottom:217.572267pt;}
.y6e{bottom:221.412267pt;}
.y4d{bottom:227.492267pt;}
.y1e{bottom:235.812267pt;}
.ya7{bottom:239.652267pt;}
.y93{bottom:241.572267pt;}
.y3c{bottom:246.692267pt;}
.y1d{bottom:254.372267pt;}
.y6d{bottom:257.892267pt;}
.y4c{bottom:264.292267pt;}
.y1c{bottom:272.612267pt;}
.ya6{bottom:276.452267pt;}
.y92{bottom:278.372267pt;}
.y3b{bottom:283.492267pt;}
.y1b{bottom:291.172267pt;}
.y6c{bottom:294.692267pt;}
.y4b{bottom:301.092267pt;}
.y1a{bottom:309.412267pt;}
.ya5{bottom:313.252267pt;}
.y91{bottom:315.172267pt;}
.y3a{bottom:320.292267pt;}
.y19{bottom:327.972267pt;}
.y6b{bottom:331.492267pt;}
.y4a{bottom:337.892267pt;}
.y90{bottom:349.412267pt;}
.ya4{bottom:350.052267pt;}
.y39{bottom:357.092267pt;}
.y8c{bottom:364.000000pt;}
.y18{bottom:364.452267pt;}
.y6a{bottom:368.292267pt;}
.y49{bottom:374.692267pt;}
.y17{bottom:383.012267pt;}
.ya3{bottom:386.852267pt;}
.y38{bottom:393.892267pt;}
.y16{bottom:401.572267pt;}
.y69{bottom:405.092267pt;}
.y48{bottom:411.492267pt;}
.y15{bottom:419.812267pt;}
.y87{bottom:420.000000pt;}
.ya2{bottom:423.652267pt;}
.y37{bottom:430.692267pt;}
.y14{bottom:438.372267pt;}
.y68{bottom:441.892267pt;}
.y47{bottom:448.292267pt;}
.y13{bottom:456.612267pt;}
.ya1{bottom:460.452267pt;}
.y36{bottom:467.172267pt;}
.y67{bottom:478.692267pt;}
.y46{bottom:485.092267pt;}
.y12{bottom:493.092267pt;}
.y85{bottom:494.666667pt;}
.ya0{bottom:497.252267pt;}
.y35{bottom:505.252267pt;}
.y66{bottom:515.492267pt;}
.y45{bottom:521.892267pt;}
.y11{bottom:529.892267pt;}
.y9f{bottom:534.052267pt;}
.y34{bottom:542.052267pt;}
.y65{bottom:552.292267pt;}
.y44{bottom:558.692267pt;}
.y10{bottom:566.692267pt;}
.y9e{bottom:570.852267pt;}
.y33{bottom:578.852267pt;}
.y84{bottom:586.532267pt;}
.y64{bottom:589.092267pt;}
.y43{bottom:595.492267pt;}
.yf{bottom:603.492267pt;}
.y83{bottom:605.412267pt;}
.y9d{bottom:607.652267pt;}
.y32{bottom:615.652267pt;}
.y7b{bottom:620.000000pt;}
.y63{bottom:625.892267pt;}
.y42{bottom:633.572267pt;}
.ye{bottom:640.292267pt;}
.y9c{bottom:644.452267pt;}
.y31{bottom:652.452267pt;}
.y62{bottom:662.692267pt;}
.y41{bottom:666.852267pt;}
.yd{bottom:677.092267pt;}
.y9b{bottom:681.252267pt;}
.y30{bottom:689.252267pt;}
.y61{bottom:699.492267pt;}
.yc{bottom:713.892267pt;}
.y9a{bottom:718.052267pt;}
.y2f{bottom:726.052267pt;}
.y75{bottom:730.666667pt;}
.y60{bottom:736.292267pt;}
.yb{bottom:747.172267pt;}
.y99{bottom:754.852267pt;}
.y2e{bottom:762.852267pt;}
.y5f{bottom:773.092267pt;}
.ya{bottom:781.412267pt;}
.y2d{bottom:782.372267pt;}
.y98{bottom:791.652267pt;}
.y2c{bottom:799.012267pt;}
.y73{bottom:805.333333pt;}
.y5e{bottom:809.892267pt;}
.y2b{bottom:815.972267pt;}
.y9{bottom:818.212267pt;}
.y97{bottom:828.452267pt;}
.y5d{bottom:828.772267pt;}
.y2a{bottom:832.932267pt;}
.y5c{bottom:847.012267pt;}
.y29{bottom:849.572267pt;}
.y8{bottom:855.012267pt;}
.y72{bottom:865.252267pt;}
.y5b{bottom:865.572267pt;}
.y28{bottom:866.532267pt;}
.y5a{bottom:883.812267pt;}
.y7{bottom:891.812267pt;}
.y27{bottom:902.052267pt;}
.y59{bottom:902.372267pt;}
.y6{bottom:920.292267pt;}
.y58{bottom:920.612267pt;}
.y26{bottom:938.852267pt;}
.y57{bottom:939.172267pt;}
.y5{bottom:948.772267pt;}
.y56{bottom:957.412267pt;}
.y25{bottom:975.652267pt;}
.y55{bottom:975.972267pt;}
.y4{bottom:976.612267pt;}
.y3{bottom:991.972267pt;}
.y54{bottom:994.212267pt;}
.y2{bottom:1008.932267pt;}
.y24{bottom:1012.452267pt;}
.y53{bottom:1012.772267pt;}
.y1{bottom:1060.132267pt;}
.hc{height:24.740625pt;}
.h4{height:35.831250pt;}
.ha{height:37.333333pt;}
.h7{height:38.666667pt;}
.h2{height:40.882500pt;}
.h6{height:43.812500pt;}
.h3{height:51.187500pt;}
.h5{height:56.156250pt;}
.hb{height:57.333333pt;}
.h8{height:74.666667pt;}
.h9{height:112.000000pt;}
.h0{height:1122.519733pt;}
.h1{height:1122.666667pt;}
.w3{width:36.000000pt;}
.w5{width:44.000000pt;}
.w4{width:45.333333pt;}
.w8{width:48.000000pt;}
.w6{width:56.000000pt;}
.w2{width:356.000000pt;}
.w7{width:520.000000pt;}
.w0{width:793.700667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:6.920864pt;}
.x11{left:8.096693pt;}
.x18{left:9.350133pt;}
.xa{left:13.747360pt;}
.x12{left:17.760693pt;}
.xd{left:18.760693pt;}
.x1{left:113.907531pt;}
.x13{left:132.584267pt;}
.x5{left:137.907467pt;}
.x2{left:147.045227pt;}
.x19{left:156.115531pt;}
.x4{left:161.907531pt;}
.x1a{left:185.907531pt;}
.x7{left:296.310827pt;}
.x3{left:353.182027pt;}
.x14{left:356.521867pt;}
.x15{left:397.174027pt;}
.x9{left:470.666667pt;}
.xb{left:506.666667pt;}
.xc{left:541.333333pt;}
.xe{left:585.333333pt;}
.xf{left:629.333333pt;}
.x16{left:633.333333pt;}
.x10{left:673.333333pt;}
.x6{left:680.374027pt;}
.x17{left:681.333333pt;}
}




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