
    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_8af742b16597d29a925cec9d.woff')format("woff");}.ff1{font-family:ff1;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_d1a3b70ca954825c783c20b9.woff')format("woff");}.ff2{font-family:ff2;line-height:0.939453;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_3e4bf1422753e85da1604bf3.woff')format("woff");}.ff3{font-family:ff3;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_7b90381f3c583c08c73c7366.woff')format("woff");}.ff4{font-family:ff4;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_52a7bb4a47149dc08e74e9df.woff')format("woff");}.ff5{font-family:ff5;line-height:0.700195;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_6760ce7cb6e1b0856faf6eab.woff')format("woff");}.ff6{font-family:ff6;line-height:0.722656;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_13ddfd05e5796d03393f3c4d.woff')format("woff");}.ff7{font-family:ff7;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;}
.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);}
.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);}
.v0{vertical-align:0.000000px;}
.ls19{letter-spacing:-1.095120px;}
.ls1a{letter-spacing:-0.758160px;}
.ls16{letter-spacing:-0.432000px;}
.ls18{letter-spacing:-0.336960px;}
.ls8{letter-spacing:-0.324000px;}
.ls12{letter-spacing:-0.276480px;}
.lsd{letter-spacing:-0.270000px;}
.ls2b{letter-spacing:-0.239040px;}
.lsc{letter-spacing:-0.216000px;}
.ls11{letter-spacing:-0.207360px;}
.ls3{letter-spacing:-0.156240px;}
.ls7{letter-spacing:-0.149760px;}
.ls1b{letter-spacing:-0.132480px;}
.ls21{letter-spacing:-0.119520px;}
.ls4{letter-spacing:-0.084240px;}
.ls2{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.108000px;}
.ls2a{letter-spacing:0.120240px;}
.ls14{letter-spacing:0.144000px;}
.ls26{letter-spacing:0.149760px;}
.ls13{letter-spacing:0.207360px;}
.lsa{letter-spacing:0.216000px;}
.ls1c{letter-spacing:0.239040px;}
.ls0{letter-spacing:0.270000px;}
.ls10{letter-spacing:0.288000px;}
.lsf{letter-spacing:0.299520px;}
.ls1{letter-spacing:0.312480px;}
.ls1d{letter-spacing:0.322704px;}
.ls17{letter-spacing:0.324000px;}
.lsb{letter-spacing:0.360000px;}
.ls1e{letter-spacing:0.430272px;}
.ls1f{letter-spacing:0.591624px;}
.ls20{letter-spacing:16.792560px;}
.ls25{letter-spacing:30.348000px;}
.ls22{letter-spacing:42.232320px;}
.ls23{letter-spacing:72.036000px;}
.ls28{letter-spacing:76.248000px;}
.ls29{letter-spacing:84.960000px;}
.ls27{letter-spacing:96.768000px;}
.ls24{letter-spacing:98.879040px;}
.lse{letter-spacing:99.072000px;}
.ls15{letter-spacing:99.072600px;}
.ls6{letter-spacing:121.708080px;}
.ls5{letter-spacing:126.036000px;}
.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;}
}
.ws1{word-spacing:-75.330000px;}
.ws2{word-spacing:-43.434720px;}
.ws3{word-spacing:-43.278480px;}
.ws3a{word-spacing:-41.932800px;}
.ws29{word-spacing:-30.348000px;}
.ws19{word-spacing:-30.240000px;}
.ws25{word-spacing:-29.700000px;}
.ws14{word-spacing:-25.380000px;}
.ws15{word-spacing:-25.020000px;}
.ws30{word-spacing:-23.418720px;}
.ws2c{word-spacing:-23.334480px;}
.ws2d{word-spacing:-23.081760px;}
.ws2f{word-spacing:-22.660560px;}
.ws2e{word-spacing:-22.323600px;}
.ws1e{word-spacing:-20.304000px;}
.ws1a{word-spacing:-20.016000px;}
.ws26{word-spacing:-19.584000px;}
.ws1d{word-spacing:-19.422720px;}
.ws1b{word-spacing:-19.008000px;}
.ws1c{word-spacing:-18.938880px;}
.ws31{word-spacing:-18.282240px;}
.ws32{word-spacing:-16.493760px;}
.wsd{word-spacing:-15.228000px;}
.wsc{word-spacing:-15.120000px;}
.ws0{word-spacing:-2.700000px;}
.ws7{word-spacing:-2.656080px;}
.ws3b{word-spacing:-2.525040px;}
.wsb{word-spacing:-2.442960px;}
.ws18{word-spacing:-2.340000px;}
.ws27{word-spacing:-2.304000px;}
.ws17{word-spacing:-2.250000px;}
.ws9{word-spacing:-1.684800px;}
.ws2b{word-spacing:-1.658880px;}
.ws5{word-spacing:-1.620000px;}
.ws34{word-spacing:-1.374480px;}
.ws8{word-spacing:-1.249920px;}
.ws10{word-spacing:-1.010880px;}
.ws3e{word-spacing:-0.898560px;}
.ws20{word-spacing:-0.864000px;}
.ws39{word-spacing:-0.756000px;}
.ws3f{word-spacing:-0.670320px;}
.ws36{word-spacing:-0.657360px;}
.ws6{word-spacing:-0.468720px;}
.ws4{word-spacing:-0.270000px;}
.ws3c{word-spacing:-0.216000px;}
.ws23{word-spacing:-0.207360px;}
.ws1f{word-spacing:-0.149760px;}
.ws24{word-spacing:-0.144000px;}
.wsf{word-spacing:-0.108000px;}
.wsa{word-spacing:0.000000px;}
.ws33{word-spacing:0.059760px;}
.ws38{word-spacing:0.084240px;}
.ws13{word-spacing:0.108000px;}
.ws21{word-spacing:0.207360px;}
.ws11{word-spacing:0.216000px;}
.wse{word-spacing:0.299520px;}
.ws16{word-spacing:0.324000px;}
.ws22{word-spacing:0.483840px;}
.ws12{word-spacing:0.540000px;}
.ws35{word-spacing:0.776880px;}
.ws2a{word-spacing:0.967680px;}
.ws28{word-spacing:1.244160px;}
.ws37{word-spacing:1.296000px;}
.ws3d{word-spacing:1.613520px;}
._4{margin-left:-3.870000px;}
._1{margin-left:-2.538000px;}
._0{margin-left:-1.080000px;}
._2{width:1.188000px;}
._5{width:2.191968px;}
._3{width:3.546000px;}
.fc8{color:rgb(255,171,64);}
.fc7{color:transparent;}
.fc6{color:rgb(0,151,167);}
.fc3{color:rgb(120,144,156);}
.fc1{color:rgb(238,255,65);}
.fc5{color:rgb(89,89,89);}
.fc4{color:rgb(0,0,0);}
.fc2{color:rgb(33,33,33);}
.fc0{color:rgb(238,238,238);}
.fs5{font-size:54.000000px;}
.fsa{font-size:59.760000px;}
.fs9{font-size:66.240000px;}
.fs8{font-size:69.120000px;}
.fs7{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs6{font-size:90.000000px;}
.fsc{font-size:95.760000px;}
.fs4{font-size:108.000000px;}
.fsb{font-size:120.240000px;}
.fs3{font-size:149.760000px;}
.fs1{font-size:156.240000px;}
.fs0{font-size:270.000000px;}
.y0{bottom:0.000000px;}
.y11{bottom:14.223150px;}
.y36{bottom:16.129500px;}
.y35{bottom:19.140300px;}
.y39{bottom:19.613850px;}
.y44{bottom:29.254350px;}
.y5f{bottom:31.441350px;}
.y8{bottom:33.279150px;}
.y14{bottom:33.675300px;}
.y43{bottom:47.257050px;}
.y13{bottom:61.935300px;}
.y7{bottom:62.000730px;}
.y42{bottom:65.259750px;}
.y5e{bottom:78.241350px;}
.y29{bottom:86.722650px;}
.y55{bottom:86.739300px;}
.y34{bottom:89.034600px;}
.y12{bottom:90.375300px;}
.y5d{bottom:107.761350px;}
.y1f{bottom:109.582650px;}
.y41{bottom:115.730550px;}
.y28{bottom:129.382650px;}
.y6{bottom:130.394790px;}
.y33{bottom:131.694600px;}
.y40{bottom:133.733250px;}
.y3f{bottom:151.735950px;}
.y1e{bottom:152.062650px;}
.y27{bottom:153.142650px;}
.y32{bottom:155.454600px;}
.y5c{bottom:164.122650px;}
.y1d{bottom:176.002650px;}
.y26{bottom:176.902650px;}
.y5{bottom:177.188670px;}
.y10{bottom:179.944650px;}
.y4c{bottom:184.827900px;}
.y48{bottom:188.422650px;}
.y3e{bottom:196.426350px;}
.y31{bottom:197.388840px;}
.y1c{bottom:199.762650px;}
.y25{bottom:200.842650px;}
.y5b{bottom:201.382650px;}
.y3d{bottom:214.429050px;}
.y4b{bottom:222.087900px;}
.y1b{bottom:223.522650px;}
.y4{bottom:223.982550px;}
.y24{bottom:224.602650px;}
.y3c{bottom:232.431750px;}
.yf{bottom:235.213650px;}
.y30{bottom:239.154600px;}
.y1a{bottom:247.282650px;}
.y23{bottom:248.362650px;}
.y5a{bottom:253.582650px;}
.y47{bottom:254.662650px;}
.y4a{bottom:259.347900px;}
.y2f{bottom:262.914600px;}
.y19{bottom:271.222650px;}
.y22{bottom:272.122650px;}
.y54{bottom:272.442150px;}
.y2e{bottom:286.681800px;}
.y46{bottom:289.762650px;}
.ye{bottom:290.482650px;}
.y59{bottom:290.842650px;}
.y18{bottom:294.982650px;}
.y21{bottom:296.062650px;}
.y3{bottom:303.223200px;}
.y53{bottom:307.542150px;}
.y2d{bottom:310.614600px;}
.y49{bottom:314.607900px;}
.y20{bottom:319.822650px;}
.y45{bottom:320.902650px;}
.y3b{bottom:327.022650px;}
.y52{bottom:336.522150px;}
.y17{bottom:336.922650px;}
.y58{bottom:343.042650px;}
.yd{bottom:343.582650px;}
.y2c{bottom:352.374600px;}
.y3a{bottom:358.162650px;}
.y16{bottom:361.762650px;}
.y38{bottom:364.282650px;}
.y51{bottom:365.502150px;}
.yc{bottom:372.562650px;}
.y57{bottom:380.302650px;}
.y2{bottom:384.223200px;}
.y15{bottom:386.602650px;}
.y4e{bottom:389.325900px;}
.y37{bottom:395.422650px;}
.y50{bottom:396.642150px;}
.y2b{bottom:397.554600px;}
.yb{bottom:401.542650px;}
.y56{bottom:417.562650px;}
.y4d{bottom:421.725900px;}
.ya{bottom:432.682650px;}
.y2a{bottom:434.814600px;}
.y1{bottom:465.223200px;}
.y9{bottom:507.599700px;}
.y4f{bottom:514.979700px;}
.h9{height:39.366211px;}
.h10{height:43.565273px;}
.hf{height:48.289219px;}
.he{height:50.388750px;}
.hd{height:52.417969px;}
.hc{height:52.488281px;}
.h11{height:61.329023px;}
.h5{height:61.411289px;}
.ha{height:65.522461px;}
.hb{height:65.610352px;}
.h14{height:69.809414px;}
.h13{height:71.982422px;}
.h8{height:78.626953px;}
.h7{height:78.732422px;}
.h12{height:87.655430px;}
.h6{height:109.175625px;}
.h4{height:113.746992px;}
.h3{height:113.899570px;}
.h1{height:196.567383px;}
.h2{height:196.831055px;}
.h0{height:607.500000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x18{left:10.798200px;}
.x9{left:47.613150px;}
.x2{left:53.733150px;}
.x1a{left:54.822150px;}
.xa{left:61.113150px;}
.x19{left:64.173150px;}
.x11{left:65.973150px;}
.xf{left:69.573150px;}
.x1{left:83.433150px;}
.x5{left:85.910430px;}
.x14{left:97.293150px;}
.x12{left:101.613150px;}
.xb{left:118.173150px;}
.x13{left:124.293000px;}
.x10{left:153.273150px;}
.xe{left:155.793150px;}
.x4{left:160.983750px;}
.x1b{left:222.762150px;}
.x15{left:236.266650px;}
.x8{left:258.716250px;}
.xc{left:263.613150px;}
.x16{left:334.665300px;}
.x1e{left:356.593500px;}
.x7{left:384.914730px;}
.x1c{left:403.628400px;}
.x1d{left:460.688400px;}
.x6{left:496.509150px;}
.x20{left:704.622600px;}
.x21{left:738.462600px;}
.x3{left:739.533150px;}
.x17{left:817.662450px;}
.xd{left:851.712150px;}
.x1f{left:889.842750px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls19{letter-spacing:-0.973440pt;}
.ls1a{letter-spacing:-0.673920pt;}
.ls16{letter-spacing:-0.384000pt;}
.ls18{letter-spacing:-0.299520pt;}
.ls8{letter-spacing:-0.288000pt;}
.ls12{letter-spacing:-0.245760pt;}
.lsd{letter-spacing:-0.240000pt;}
.ls2b{letter-spacing:-0.212480pt;}
.lsc{letter-spacing:-0.192000pt;}
.ls11{letter-spacing:-0.184320pt;}
.ls3{letter-spacing:-0.138880pt;}
.ls7{letter-spacing:-0.133120pt;}
.ls1b{letter-spacing:-0.117760pt;}
.ls21{letter-spacing:-0.106240pt;}
.ls4{letter-spacing:-0.074880pt;}
.ls2{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.096000pt;}
.ls2a{letter-spacing:0.106880pt;}
.ls14{letter-spacing:0.128000pt;}
.ls26{letter-spacing:0.133120pt;}
.ls13{letter-spacing:0.184320pt;}
.lsa{letter-spacing:0.192000pt;}
.ls1c{letter-spacing:0.212480pt;}
.ls0{letter-spacing:0.240000pt;}
.ls10{letter-spacing:0.256000pt;}
.lsf{letter-spacing:0.266240pt;}
.ls1{letter-spacing:0.277760pt;}
.ls1d{letter-spacing:0.286848pt;}
.ls17{letter-spacing:0.288000pt;}
.lsb{letter-spacing:0.320000pt;}
.ls1e{letter-spacing:0.382464pt;}
.ls1f{letter-spacing:0.525888pt;}
.ls20{letter-spacing:14.926720pt;}
.ls25{letter-spacing:26.976000pt;}
.ls22{letter-spacing:37.539840pt;}
.ls23{letter-spacing:64.032000pt;}
.ls28{letter-spacing:67.776000pt;}
.ls29{letter-spacing:75.520000pt;}
.ls27{letter-spacing:86.016000pt;}
.ls24{letter-spacing:87.892480pt;}
.lse{letter-spacing:88.064000pt;}
.ls15{letter-spacing:88.064533pt;}
.ls6{letter-spacing:108.184960pt;}
.ls5{letter-spacing:112.032000pt;}
.ws1{word-spacing:-66.960000pt;}
.ws2{word-spacing:-38.608640pt;}
.ws3{word-spacing:-38.469760pt;}
.ws3a{word-spacing:-37.273600pt;}
.ws29{word-spacing:-26.976000pt;}
.ws19{word-spacing:-26.880000pt;}
.ws25{word-spacing:-26.400000pt;}
.ws14{word-spacing:-22.560000pt;}
.ws15{word-spacing:-22.240000pt;}
.ws30{word-spacing:-20.816640pt;}
.ws2c{word-spacing:-20.741760pt;}
.ws2d{word-spacing:-20.517120pt;}
.ws2f{word-spacing:-20.142720pt;}
.ws2e{word-spacing:-19.843200pt;}
.ws1e{word-spacing:-18.048000pt;}
.ws1a{word-spacing:-17.792000pt;}
.ws26{word-spacing:-17.408000pt;}
.ws1d{word-spacing:-17.264640pt;}
.ws1b{word-spacing:-16.896000pt;}
.ws1c{word-spacing:-16.834560pt;}
.ws31{word-spacing:-16.250880pt;}
.ws32{word-spacing:-14.661120pt;}
.wsd{word-spacing:-13.536000pt;}
.wsc{word-spacing:-13.440000pt;}
.ws0{word-spacing:-2.400000pt;}
.ws7{word-spacing:-2.360960pt;}
.ws3b{word-spacing:-2.244480pt;}
.wsb{word-spacing:-2.171520pt;}
.ws18{word-spacing:-2.080000pt;}
.ws27{word-spacing:-2.048000pt;}
.ws17{word-spacing:-2.000000pt;}
.ws9{word-spacing:-1.497600pt;}
.ws2b{word-spacing:-1.474560pt;}
.ws5{word-spacing:-1.440000pt;}
.ws34{word-spacing:-1.221760pt;}
.ws8{word-spacing:-1.111040pt;}
.ws10{word-spacing:-0.898560pt;}
.ws3e{word-spacing:-0.798720pt;}
.ws20{word-spacing:-0.768000pt;}
.ws39{word-spacing:-0.672000pt;}
.ws3f{word-spacing:-0.595840pt;}
.ws36{word-spacing:-0.584320pt;}
.ws6{word-spacing:-0.416640pt;}
.ws4{word-spacing:-0.240000pt;}
.ws3c{word-spacing:-0.192000pt;}
.ws23{word-spacing:-0.184320pt;}
.ws1f{word-spacing:-0.133120pt;}
.ws24{word-spacing:-0.128000pt;}
.wsf{word-spacing:-0.096000pt;}
.wsa{word-spacing:0.000000pt;}
.ws33{word-spacing:0.053120pt;}
.ws38{word-spacing:0.074880pt;}
.ws13{word-spacing:0.096000pt;}
.ws21{word-spacing:0.184320pt;}
.ws11{word-spacing:0.192000pt;}
.wse{word-spacing:0.266240pt;}
.ws16{word-spacing:0.288000pt;}
.ws22{word-spacing:0.430080pt;}
.ws12{word-spacing:0.480000pt;}
.ws35{word-spacing:0.690560pt;}
.ws2a{word-spacing:0.860160pt;}
.ws28{word-spacing:1.105920pt;}
.ws37{word-spacing:1.152000pt;}
.ws3d{word-spacing:1.434240pt;}
._4{margin-left:-3.440000pt;}
._1{margin-left:-2.256000pt;}
._0{margin-left:-0.960000pt;}
._2{width:1.056000pt;}
._5{width:1.948416pt;}
._3{width:3.152000pt;}
.fs5{font-size:48.000000pt;}
.fsa{font-size:53.120000pt;}
.fs9{font-size:58.880000pt;}
.fs8{font-size:61.440000pt;}
.fs7{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs6{font-size:80.000000pt;}
.fsc{font-size:85.120000pt;}
.fs4{font-size:96.000000pt;}
.fsb{font-size:106.880000pt;}
.fs3{font-size:133.120000pt;}
.fs1{font-size:138.880000pt;}
.fs0{font-size:240.000000pt;}
.y0{bottom:0.000000pt;}
.y11{bottom:12.642800pt;}
.y36{bottom:14.337333pt;}
.y35{bottom:17.013600pt;}
.y39{bottom:17.434533pt;}
.y44{bottom:26.003867pt;}
.y5f{bottom:27.947867pt;}
.y8{bottom:29.581467pt;}
.y14{bottom:29.933600pt;}
.y43{bottom:42.006267pt;}
.y13{bottom:55.053600pt;}
.y7{bottom:55.111760pt;}
.y42{bottom:58.008667pt;}
.y5e{bottom:69.547867pt;}
.y29{bottom:77.086800pt;}
.y55{bottom:77.101600pt;}
.y34{bottom:79.141867pt;}
.y12{bottom:80.333600pt;}
.y5d{bottom:95.787867pt;}
.y1f{bottom:97.406800pt;}
.y41{bottom:102.871600pt;}
.y28{bottom:115.006800pt;}
.y6{bottom:115.906480pt;}
.y33{bottom:117.061867pt;}
.y40{bottom:118.874000pt;}
.y3f{bottom:134.876400pt;}
.y1e{bottom:135.166800pt;}
.y27{bottom:136.126800pt;}
.y32{bottom:138.181867pt;}
.y5c{bottom:145.886800pt;}
.y1d{bottom:156.446800pt;}
.y26{bottom:157.246800pt;}
.y5{bottom:157.501040pt;}
.y10{bottom:159.950800pt;}
.y4c{bottom:164.291467pt;}
.y48{bottom:167.486800pt;}
.y3e{bottom:174.601200pt;}
.y31{bottom:175.456747pt;}
.y1c{bottom:177.566800pt;}
.y25{bottom:178.526800pt;}
.y5b{bottom:179.006800pt;}
.y3d{bottom:190.603600pt;}
.y4b{bottom:197.411467pt;}
.y1b{bottom:198.686800pt;}
.y4{bottom:199.095600pt;}
.y24{bottom:199.646800pt;}
.y3c{bottom:206.606000pt;}
.yf{bottom:209.078800pt;}
.y30{bottom:212.581867pt;}
.y1a{bottom:219.806800pt;}
.y23{bottom:220.766800pt;}
.y5a{bottom:225.406800pt;}
.y47{bottom:226.366800pt;}
.y4a{bottom:230.531467pt;}
.y2f{bottom:233.701867pt;}
.y19{bottom:241.086800pt;}
.y22{bottom:241.886800pt;}
.y54{bottom:242.170800pt;}
.y2e{bottom:254.828267pt;}
.y46{bottom:257.566800pt;}
.ye{bottom:258.206800pt;}
.y59{bottom:258.526800pt;}
.y18{bottom:262.206800pt;}
.y21{bottom:263.166800pt;}
.y3{bottom:269.531733pt;}
.y53{bottom:273.370800pt;}
.y2d{bottom:276.101867pt;}
.y49{bottom:279.651467pt;}
.y20{bottom:284.286800pt;}
.y45{bottom:285.246800pt;}
.y3b{bottom:290.686800pt;}
.y52{bottom:299.130800pt;}
.y17{bottom:299.486800pt;}
.y58{bottom:304.926800pt;}
.yd{bottom:305.406800pt;}
.y2c{bottom:313.221867pt;}
.y3a{bottom:318.366800pt;}
.y16{bottom:321.566800pt;}
.y38{bottom:323.806800pt;}
.y51{bottom:324.890800pt;}
.yc{bottom:331.166800pt;}
.y57{bottom:338.046800pt;}
.y2{bottom:341.531733pt;}
.y15{bottom:343.646800pt;}
.y4e{bottom:346.067467pt;}
.y37{bottom:351.486800pt;}
.y50{bottom:352.570800pt;}
.y2b{bottom:353.381867pt;}
.yb{bottom:356.926800pt;}
.y56{bottom:371.166800pt;}
.y4d{bottom:374.867467pt;}
.ya{bottom:384.606800pt;}
.y2a{bottom:386.501867pt;}
.y1{bottom:413.531733pt;}
.y9{bottom:451.199733pt;}
.y4f{bottom:457.759733pt;}
.h9{height:34.992188pt;}
.h10{height:38.724688pt;}
.hf{height:42.923750pt;}
.he{height:44.790000pt;}
.hd{height:46.593750pt;}
.hc{height:46.656250pt;}
.h11{height:54.514687pt;}
.h5{height:54.587812pt;}
.ha{height:58.242188pt;}
.hb{height:58.320312pt;}
.h14{height:62.052813pt;}
.h13{height:63.984375pt;}
.h8{height:69.890625pt;}
.h7{height:69.984375pt;}
.h12{height:77.915937pt;}
.h6{height:97.045000pt;}
.h4{height:101.108438pt;}
.h3{height:101.244062pt;}
.h1{height:174.726562pt;}
.h2{height:174.960938pt;}
.h0{height:540.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x18{left:9.598400pt;}
.x9{left:42.322800pt;}
.x2{left:47.762800pt;}
.x1a{left:48.730800pt;}
.xa{left:54.322800pt;}
.x19{left:57.042800pt;}
.x11{left:58.642800pt;}
.xf{left:61.842800pt;}
.x1{left:74.162800pt;}
.x5{left:76.364827pt;}
.x14{left:86.482800pt;}
.x12{left:90.322800pt;}
.xb{left:105.042800pt;}
.x13{left:110.482667pt;}
.x10{left:136.242800pt;}
.xe{left:138.482800pt;}
.x4{left:143.096667pt;}
.x1b{left:198.010800pt;}
.x15{left:210.014800pt;}
.x8{left:229.970000pt;}
.xc{left:234.322800pt;}
.x16{left:297.480267pt;}
.x1e{left:316.972000pt;}
.x7{left:342.146427pt;}
.x1c{left:358.780800pt;}
.x1d{left:409.500800pt;}
.x6{left:441.341467pt;}
.x20{left:626.331200pt;}
.x21{left:656.411200pt;}
.x3{left:657.362800pt;}
.x17{left:726.811067pt;}
.xd{left:757.077467pt;}
.x1f{left:790.971333pt;}
}




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