
    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_d822f30f567e059a1058ccfc.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.962402;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_cf13c929689ba84c644bf746.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.202148;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_5ab347f16f3e19f80f175b77.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_5f75cb6f81dd9210994eb961.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.758789;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_6a17558004728b7e6287aaa5.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.941406;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_e71dbc3e95ea2c1d1078ae9e.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.172852;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_ff0331def1085bbe90ef2ae8.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.962402;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_5195e059a9bb81e7aaaf40af.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.937500;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_37eb9a3b44afd38f35dd9a01.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.941406;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_fe8c737553799034e1e35a81.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.764160;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_3c5475d07cb5037c927290bc.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.764160;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-34.050000px;}
.v0{vertical-align:0.000000px;}
.ls10{letter-spacing:-0.630000px;}
.lsf{letter-spacing:-0.556200px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.045300px;}
.ls5{letter-spacing:0.105300px;}
.ls9{letter-spacing:1.091550px;}
.lse{letter-spacing:1.183050px;}
.lsd{letter-spacing:1.584000px;}
.ls2{letter-spacing:37.264200px;}
.ls1{letter-spacing:37.397850px;}
.lsc{letter-spacing:44.670000px;}
.lsb{letter-spacing:44.722500px;}
.lsa{letter-spacing:47.872500px;}
.ls6{letter-spacing:48.364200px;}
.ls8{letter-spacing:48.497850px;}
.ls3{letter-spacing:49.447500px;}
.ls7{letter-spacing:98.613300px;}
.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:-43.868400px;}
.ws0{word-spacing:-41.366400px;}
.ws8{word-spacing:-28.856400px;}
.ws6{word-spacing:-26.312700px;}
.ws3{word-spacing:-23.424900px;}
.ws5{word-spacing:-21.390900px;}
.wsa{word-spacing:-20.373900px;}
.ws4{word-spacing:-18.339900px;}
.ws7{word-spacing:-0.099150px;}
.ws1{word-spacing:0.000000px;}
.wsc{word-spacing:14.372400px;}
.ws9{word-spacing:75.020850px;}
.wsb{word-spacing:75.094500px;}
._e{margin-left:-15.303600px;}
._8{margin-left:-12.864750px;}
._d{margin-left:-9.992400px;}
._6{margin-left:-8.647500px;}
._7{margin-left:-6.706800px;}
._1{margin-left:-5.042700px;}
._3{margin-left:-3.491100px;}
._0{margin-left:-1.745550px;}
._4{width:1.163700px;}
._5{width:2.649900px;}
._2{width:3.685050px;}
._b{width:5.020200px;}
._9{width:24.083550px;}
._a{width:462.305700px;}
._c{width:617.313600px;}
.fc5{color:rgb(5,99,193);}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(0,112,192);}
.fc4{color:rgb(137,137,137);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(68,114,196);}
.fs9{font-size:54.150000px;}
.fsf{font-size:81.150000px;}
.fs10{font-size:85.650000px;}
.fs8{font-size:90.150000px;}
.fs16{font-size:90.300000px;}
.fsc{font-size:94.650000px;}
.fsd{font-size:94.800000px;}
.fs13{font-size:99.150000px;}
.fs14{font-size:99.300000px;}
.fs6{font-size:103.650000px;}
.fs7{font-size:103.800000px;}
.fs2{font-size:112.650000px;}
.fs3{font-size:112.800000px;}
.fs1{font-size:121.650000px;}
.fse{font-size:126.300000px;}
.fs12{font-size:130.800000px;}
.fsb{font-size:139.800000px;}
.fsa{font-size:148.650000px;}
.fs4{font-size:148.800000px;}
.fs5{font-size:157.800000px;}
.fs11{font-size:166.800000px;}
.fs15{font-size:180.450000px;}
.fs0{font-size:193.950000px;}
.y0{bottom:0.000000px;}
.y17{bottom:22.912500px;}
.y31{bottom:31.425000px;}
.y42{bottom:32.962500px;}
.y6c{bottom:33.862500px;}
.y16{bottom:46.350000px;}
.y45{bottom:52.200000px;}
.y30{bottom:57.375000px;}
.y6b{bottom:57.525000px;}
.y6{bottom:58.275000px;}
.y41{bottom:58.912500px;}
.y5b{bottom:66.787500px;}
.y15{bottom:74.512500px;}
.y44{bottom:80.400000px;}
.y2f{bottom:82.162500px;}
.y6a{bottom:82.312500px;}
.y40{bottom:84.825000px;}
.y5a{bottom:93.862500px;}
.y5{bottom:105.637500px;}
.y2e{bottom:106.950000px;}
.y69{bottom:108.262500px;}
.y43{bottom:109.687500px;}
.y14{bottom:115.087500px;}
.y59{bottom:122.025000px;}
.y3f{bottom:128.775000px;}
.y2d{bottom:136.275000px;}
.y13{bottom:138.750000px;}
.y68{bottom:146.550000px;}
.y58{bottom:149.062500px;}
.y3e{bottom:154.680000px;}
.y2c{bottom:167.805000px;}
.y12{bottom:169.200000px;}
.y67{bottom:170.250000px;}
.y57{bottom:177.270000px;}
.y2b{bottom:192.600000px;}
.y4{bottom:196.905000px;}
.y3d{bottom:198.675000px;}
.y11{bottom:199.620000px;}
.y56{bottom:204.300000px;}
.y66{bottom:207.405000px;}
.y2a{bottom:217.425000px;}
.y3c{bottom:224.580000px;}
.y55{bottom:232.470000px;}
.y10{bottom:235.695000px;}
.y4b{bottom:236.475000px;}
.y65{bottom:243.495000px;}
.y3{bottom:245.370000px;}
.y29{bottom:245.595000px;}
.y54{bottom:259.545000px;}
.yf{bottom:262.755000px;}
.y4a{bottom:265.770000px;}
.y64{bottom:267.150000px;}
.y3b{bottom:268.530000px;}
.y28{bottom:277.155000px;}
.y53{bottom:287.700000px;}
.y3a{bottom:294.450000px;}
.y27{bottom:301.950000px;}
.y63{bottom:304.350000px;}
.ye{bottom:308.955000px;}
.y39{bottom:320.400000px;}
.y7{bottom:325.620000px;}
.y26{bottom:326.745000px;}
.y52{bottom:332.775000px;}
.yd{bottom:339.375000px;}
.y62{bottom:340.425000px;}
.y38{bottom:346.320000px;}
.y25{bottom:357.195000px;}
.y51{bottom:360.975000px;}
.yc{bottom:369.825000px;}
.y61{bottom:376.500000px;}
.y2{bottom:380.175000px;}
.y37{bottom:390.255000px;}
.y24{bottom:395.475000px;}
.yb{bottom:400.245000px;}
.y50{bottom:406.050000px;}
.y60{bottom:413.700000px;}
.y36{bottom:416.175000px;}
.y23{bottom:420.300000px;}
.y4f{bottom:434.220000px;}
.y1{bottom:438.780000px;}
.y22{bottom:445.095000px;}
.y5f{bottom:449.745000px;}
.ya{bottom:449.850000px;}
.y1b{bottom:459.600000px;}
.y35{bottom:461.280000px;}
.y21{bottom:469.875000px;}
.y49{bottom:470.745000px;}
.y9{bottom:480.255000px;}
.y4e{bottom:483.825000px;}
.y1e{bottom:484.755000px;}
.y5e{bottom:485.820000px;}
.y1a{bottom:486.675000px;}
.y34{bottom:487.200000px;}
.y48{bottom:497.775000px;}
.y20{bottom:500.325000px;}
.y5d{bottom:510.600000px;}
.y33{bottom:513.120000px;}
.y19{bottom:513.720000px;}
.y1d{bottom:514.050000px;}
.y4d{bottom:519.525000px;}
.y47{bottom:523.695000px;}
.y8{bottom:540.375000px;}
.y1f{bottom:543.450000px;}
.y5c{bottom:548.925000px;}
.y18{bottom:551.325000px;}
.y32{bottom:551.700000px;}
.y4c{bottom:552.195000px;}
.y46{bottom:554.130000px;}
.y1c{bottom:556.245000px;}
.hc{height:53.859155px;}
.h1b{height:62.606470px;}
.h1c{height:65.895776px;}
.h1a{height:69.185083px;}
.h1f{height:72.584033px;}
.h1d{height:74.507739px;}
.h1e{height:75.873340px;}
.h13{height:80.714136px;}
.h15{height:83.091577px;}
.h14{height:85.189966px;}
.hb{height:89.665796px;}
.h21{height:89.814990px;}
.he{height:92.306909px;}
.h10{height:94.141626px;}
.h11{height:94.290820px;}
.h17{height:96.914575px;}
.h18{height:97.068164px;}
.h19{height:98.355469px;}
.h7{height:103.093286px;}
.h8{height:103.242480px;}
.hf{height:105.123047px;}
.h9{height:106.129907px;}
.ha{height:106.283496px;}
.hd{height:111.777832px;}
.h5{height:111.890625px;}
.h3{height:112.044946px;}
.h4{height:112.194141px;}
.h6{height:118.658203px;}
.h2{height:124.560571px;}
.h16{height:125.425781px;}
.h12{height:129.321826px;}
.h20{height:135.689941px;}
.h1{height:145.841309px;}
.h0{height:607.500000px;}
.w1{width:1079.999984px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x18{left:27.937484px;}
.x19{left:48.187484px;}
.x28{left:68.249984px;}
.x1f{left:74.287484px;}
.x1e{left:77.437484px;}
.x9{left:94.949984px;}
.x29{left:108.787484px;}
.xa{left:127.387484px;}
.x15{left:129.037484px;}
.x11{left:134.062484px;}
.xb{left:135.524984px;}
.x5{left:142.574984px;}
.x12{left:150.404984px;}
.xc{left:155.774984px;}
.x10{left:160.874984px;}
.x24{left:170.954984px;}
.x13{left:172.604984px;}
.x16{left:177.374984px;}
.x17{left:184.619984px;}
.xe{left:197.249984px;}
.x2{left:210.779984px;}
.x1{left:233.399984px;}
.x22{left:246.494984px;}
.xf{left:252.719984px;}
.x3{left:275.069984px;}
.x6{left:279.824984px;}
.x14{left:281.069984px;}
.x4{left:287.174984px;}
.x7{left:307.844984px;}
.x1d{left:316.844984px;}
.x23{left:336.149984px;}
.x27{left:407.849984px;}
.x8{left:423.479984px;}
.x1a{left:517.124984px;}
.x1b{left:521.069984px;}
.x1c{left:527.204984px;}
.x25{left:794.099984px;}
.x26{left:814.349984px;}
.x20{left:903.824984px;}
.x21{left:944.444984px;}
.xd{left:989.069984px;}
@media print{
.v1{vertical-align:-30.266667pt;}
.v0{vertical-align:0.000000pt;}
.ls10{letter-spacing:-0.560000pt;}
.lsf{letter-spacing:-0.494400pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.040267pt;}
.ls5{letter-spacing:0.093600pt;}
.ls9{letter-spacing:0.970267pt;}
.lse{letter-spacing:1.051600pt;}
.lsd{letter-spacing:1.408000pt;}
.ls2{letter-spacing:33.123733pt;}
.ls1{letter-spacing:33.242533pt;}
.lsc{letter-spacing:39.706667pt;}
.lsb{letter-spacing:39.753333pt;}
.lsa{letter-spacing:42.553333pt;}
.ls6{letter-spacing:42.990400pt;}
.ls8{letter-spacing:43.109200pt;}
.ls3{letter-spacing:43.953333pt;}
.ls7{letter-spacing:87.656267pt;}
.ws2{word-spacing:-38.994133pt;}
.ws0{word-spacing:-36.770133pt;}
.ws8{word-spacing:-25.650133pt;}
.ws6{word-spacing:-23.389067pt;}
.ws3{word-spacing:-20.822133pt;}
.ws5{word-spacing:-19.014133pt;}
.wsa{word-spacing:-18.110133pt;}
.ws4{word-spacing:-16.302133pt;}
.ws7{word-spacing:-0.088133pt;}
.ws1{word-spacing:0.000000pt;}
.wsc{word-spacing:12.775467pt;}
.ws9{word-spacing:66.685200pt;}
.wsb{word-spacing:66.750667pt;}
._e{margin-left:-13.603200pt;}
._8{margin-left:-11.435333pt;}
._d{margin-left:-8.882133pt;}
._6{margin-left:-7.686667pt;}
._7{margin-left:-5.961600pt;}
._1{margin-left:-4.482400pt;}
._3{margin-left:-3.103200pt;}
._0{margin-left:-1.551600pt;}
._4{width:1.034400pt;}
._5{width:2.355467pt;}
._2{width:3.275600pt;}
._b{width:4.462400pt;}
._9{width:21.407600pt;}
._a{width:410.938400pt;}
._c{width:548.723200pt;}
.fs9{font-size:48.133333pt;}
.fsf{font-size:72.133333pt;}
.fs10{font-size:76.133333pt;}
.fs8{font-size:80.133333pt;}
.fs16{font-size:80.266667pt;}
.fsc{font-size:84.133333pt;}
.fsd{font-size:84.266667pt;}
.fs13{font-size:88.133333pt;}
.fs14{font-size:88.266667pt;}
.fs6{font-size:92.133333pt;}
.fs7{font-size:92.266667pt;}
.fs2{font-size:100.133333pt;}
.fs3{font-size:100.266667pt;}
.fs1{font-size:108.133333pt;}
.fse{font-size:112.266667pt;}
.fs12{font-size:116.266667pt;}
.fsb{font-size:124.266667pt;}
.fsa{font-size:132.133333pt;}
.fs4{font-size:132.266667pt;}
.fs5{font-size:140.266667pt;}
.fs11{font-size:148.266667pt;}
.fs15{font-size:160.400000pt;}
.fs0{font-size:172.400000pt;}
.y0{bottom:0.000000pt;}
.y17{bottom:20.366667pt;}
.y31{bottom:27.933333pt;}
.y42{bottom:29.300000pt;}
.y6c{bottom:30.100000pt;}
.y16{bottom:41.200000pt;}
.y45{bottom:46.400000pt;}
.y30{bottom:51.000000pt;}
.y6b{bottom:51.133333pt;}
.y6{bottom:51.800000pt;}
.y41{bottom:52.366667pt;}
.y5b{bottom:59.366667pt;}
.y15{bottom:66.233333pt;}
.y44{bottom:71.466667pt;}
.y2f{bottom:73.033333pt;}
.y6a{bottom:73.166667pt;}
.y40{bottom:75.400000pt;}
.y5a{bottom:83.433333pt;}
.y5{bottom:93.900000pt;}
.y2e{bottom:95.066667pt;}
.y69{bottom:96.233333pt;}
.y43{bottom:97.500000pt;}
.y14{bottom:102.300000pt;}
.y59{bottom:108.466667pt;}
.y3f{bottom:114.466667pt;}
.y2d{bottom:121.133333pt;}
.y13{bottom:123.333333pt;}
.y68{bottom:130.266667pt;}
.y58{bottom:132.500000pt;}
.y3e{bottom:137.493333pt;}
.y2c{bottom:149.160000pt;}
.y12{bottom:150.400000pt;}
.y67{bottom:151.333333pt;}
.y57{bottom:157.573333pt;}
.y2b{bottom:171.200000pt;}
.y4{bottom:175.026667pt;}
.y3d{bottom:176.600000pt;}
.y11{bottom:177.440000pt;}
.y56{bottom:181.600000pt;}
.y66{bottom:184.360000pt;}
.y2a{bottom:193.266667pt;}
.y3c{bottom:199.626667pt;}
.y55{bottom:206.640000pt;}
.y10{bottom:209.506667pt;}
.y4b{bottom:210.200000pt;}
.y65{bottom:216.440000pt;}
.y3{bottom:218.106667pt;}
.y29{bottom:218.306667pt;}
.y54{bottom:230.706667pt;}
.yf{bottom:233.560000pt;}
.y4a{bottom:236.240000pt;}
.y64{bottom:237.466667pt;}
.y3b{bottom:238.693333pt;}
.y28{bottom:246.360000pt;}
.y53{bottom:255.733333pt;}
.y3a{bottom:261.733333pt;}
.y27{bottom:268.400000pt;}
.y63{bottom:270.533333pt;}
.ye{bottom:274.626667pt;}
.y39{bottom:284.800000pt;}
.y7{bottom:289.440000pt;}
.y26{bottom:290.440000pt;}
.y52{bottom:295.800000pt;}
.yd{bottom:301.666667pt;}
.y62{bottom:302.600000pt;}
.y38{bottom:307.840000pt;}
.y25{bottom:317.506667pt;}
.y51{bottom:320.866667pt;}
.yc{bottom:328.733333pt;}
.y61{bottom:334.666667pt;}
.y2{bottom:337.933333pt;}
.y37{bottom:346.893333pt;}
.y24{bottom:351.533333pt;}
.yb{bottom:355.773333pt;}
.y50{bottom:360.933333pt;}
.y60{bottom:367.733333pt;}
.y36{bottom:369.933333pt;}
.y23{bottom:373.600000pt;}
.y4f{bottom:385.973333pt;}
.y1{bottom:390.026667pt;}
.y22{bottom:395.640000pt;}
.y5f{bottom:399.773333pt;}
.ya{bottom:399.866667pt;}
.y1b{bottom:408.533333pt;}
.y35{bottom:410.026667pt;}
.y21{bottom:417.666667pt;}
.y49{bottom:418.440000pt;}
.y9{bottom:426.893333pt;}
.y4e{bottom:430.066667pt;}
.y1e{bottom:430.893333pt;}
.y5e{bottom:431.840000pt;}
.y1a{bottom:432.600000pt;}
.y34{bottom:433.066667pt;}
.y48{bottom:442.466667pt;}
.y20{bottom:444.733333pt;}
.y5d{bottom:453.866667pt;}
.y33{bottom:456.106667pt;}
.y19{bottom:456.640000pt;}
.y1d{bottom:456.933333pt;}
.y4d{bottom:461.800000pt;}
.y47{bottom:465.506667pt;}
.y8{bottom:480.333333pt;}
.y1f{bottom:483.066667pt;}
.y5c{bottom:487.933333pt;}
.y18{bottom:490.066667pt;}
.y32{bottom:490.400000pt;}
.y4c{bottom:490.840000pt;}
.y46{bottom:492.560000pt;}
.y1c{bottom:494.440000pt;}
.hc{height:47.874805pt;}
.h1b{height:55.650195pt;}
.h1c{height:58.574023pt;}
.h1a{height:61.497852pt;}
.h1f{height:64.519141pt;}
.h1d{height:66.229102pt;}
.h1e{height:67.442969pt;}
.h13{height:71.745898pt;}
.h15{height:73.859180pt;}
.h14{height:75.724414pt;}
.hb{height:79.702930pt;}
.h21{height:79.835547pt;}
.he{height:82.050586pt;}
.h10{height:83.681445pt;}
.h11{height:83.814063pt;}
.h17{height:86.146289pt;}
.h18{height:86.282813pt;}
.h19{height:87.427083pt;}
.h7{height:91.638477pt;}
.h8{height:91.771094pt;}
.hf{height:93.442708pt;}
.h9{height:94.337695pt;}
.ha{height:94.474219pt;}
.hd{height:99.358073pt;}
.h5{height:99.458333pt;}
.h3{height:99.595508pt;}
.h4{height:99.728125pt;}
.h6{height:105.473958pt;}
.h2{height:110.720508pt;}
.h16{height:111.489583pt;}
.h12{height:114.952734pt;}
.h20{height:120.613281pt;}
.h1{height:129.636719pt;}
.h0{height:540.000000pt;}
.w1{width:959.999986pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x18{left:24.833319pt;}
.x19{left:42.833319pt;}
.x28{left:60.666652pt;}
.x1f{left:66.033319pt;}
.x1e{left:68.833319pt;}
.x9{left:84.399986pt;}
.x29{left:96.699986pt;}
.xa{left:113.233319pt;}
.x15{left:114.699986pt;}
.x11{left:119.166652pt;}
.xb{left:120.466652pt;}
.x5{left:126.733319pt;}
.x12{left:133.693319pt;}
.xc{left:138.466652pt;}
.x10{left:142.999986pt;}
.x24{left:151.959986pt;}
.x13{left:153.426652pt;}
.x16{left:157.666652pt;}
.x17{left:164.106652pt;}
.xe{left:175.333319pt;}
.x2{left:187.359986pt;}
.x1{left:207.466652pt;}
.x22{left:219.106652pt;}
.xf{left:224.639986pt;}
.x3{left:244.506652pt;}
.x6{left:248.733319pt;}
.x14{left:249.839986pt;}
.x4{left:255.266652pt;}
.x7{left:273.639986pt;}
.x1d{left:281.639986pt;}
.x23{left:298.799986pt;}
.x27{left:362.533319pt;}
.x8{left:376.426652pt;}
.x1a{left:459.666652pt;}
.x1b{left:463.173319pt;}
.x1c{left:468.626652pt;}
.x25{left:705.866652pt;}
.x26{left:723.866652pt;}
.x20{left:803.399986pt;}
.x21{left:839.506652pt;}
.xd{left:879.173319pt;}
}




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