
    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_5f556d613ed98734a0fd4004.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.015625;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_7e1caec6be9c44fa47211c0e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.009766;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_5b9ad15fccee48571a91b234.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.967773;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_570c58a5a4713c62ea9323cd.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.975586;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_8901cd53ec9f016ffe538d08.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.918945;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_5beb9817a865a94936c2d389.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.905762;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_0287d9dbee4af79cdfade548.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.007812;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_f7acaf92b139872befe96ae2.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.888184;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_50d3206e7085c2edf2a31ffa.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.724000;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_cc63cc5da450dbb754bb1967.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_63ef56c00922d71572e494b6.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.855000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.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);}
.v9{vertical-align:-34.188000px;}
.v6{vertical-align:-31.632000px;}
.vb{vertical-align:-22.794000px;}
.vd{vertical-align:-13.116000px;}
.v2{vertical-align:-11.580000px;}
.va{vertical-align:-10.032000px;}
.v3{vertical-align:-8.670000px;}
.v1{vertical-align:-7.314000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:7.314000px;}
.v4{vertical-align:8.508000px;}
.vc{vertical-align:10.038000px;}
.v7{vertical-align:31.632000px;}
.v5{vertical-align:40.140000px;}
.ls0{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.029916px;}
.lsa{letter-spacing:0.035916px;}
.ls1{letter-spacing:0.110436px;}
.ls5{letter-spacing:0.116436px;}
.ls2{letter-spacing:0.186228px;}
.ls7{letter-spacing:0.224256px;}
.ls6{letter-spacing:0.230256px;}
.ls4{letter-spacing:0.285204px;}
.ls3{letter-spacing:0.291204px;}
.ls8{letter-spacing:67.747200px;}
.sc_{text-shadow:none;}
.sc4{text-shadow:-0.015em 0 rgb(255,0,0),0 0.015em rgb(255,0,0),0.015em 0 rgb(255,0,0),0 -0.015em  rgb(255,0,0);}
.sc3{text-shadow:-0.015em 0 rgb(0,169,51),0 0.015em rgb(0,169,51),0.015em 0 rgb(0,169,51),0 -0.015em  rgb(0,169,51);}
.sc2{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.sc1{text-shadow:-0.015em 0 rgb(28,28,28),0 0.015em rgb(28,28,28),0.015em 0 rgb(28,28,28),0 -0.015em  rgb(28,28,28);}
.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;}
.sc4{-webkit-text-stroke:0.015em rgb(255,0,0);text-shadow:none;}
.sc3{-webkit-text-stroke:0.015em rgb(0,169,51);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(28,28,28);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7{word-spacing:-44.944848px;}
.wsd{word-spacing:-36.507744px;}
.wsc{word-spacing:-30.780000px;}
.ws1{word-spacing:-29.927664px;}
.wsa{word-spacing:-28.211580px;}
.wse{word-spacing:-27.337770px;}
.ws6{word-spacing:-26.633706px;}
.ws8{word-spacing:-26.015184px;}
.ws4{word-spacing:-23.945130px;}
.ws12{word-spacing:-21.172320px;}
.ws14{word-spacing:-17.988048px;}
.ws2{word-spacing:-16.431390px;}
.ws3{word-spacing:-15.904710px;}
.ws13{word-spacing:-0.144054px;}
.ws10{word-spacing:-0.117012px;}
.ws9{word-spacing:-0.098988px;}
.ws11{word-spacing:-0.095922px;}
.ws5{word-spacing:-0.084018px;}
.wsf{word-spacing:-0.067860px;}
.wsb{word-spacing:-0.057654px;}
.ws0{word-spacing:0.000000px;}
._a{margin-left:-18.252000px;}
._b{margin-left:-16.026540px;}
._c{margin-left:-14.451096px;}
._7{margin-left:-12.878088px;}
._5{margin-left:-7.790304px;}
._3{margin-left:-6.201636px;}
._2{margin-left:-3.510360px;}
._6{margin-left:-2.474700px;}
._0{margin-left:-1.226364px;}
._1{width:1.053108px;}
._8{width:2.719344px;}
._4{width:3.964692px;}
._9{width:1139.206998px;}
.fc8{color:transparent;}
.fca{color:rgb(0,169,51);}
.fc7{color:rgb(42,96,153);}
.fc4{color:rgb(255,0,0);}
.fc9{color:rgb(21,132,102);}
.fc3{color:rgb(255,191,0);}
.fc2{color:rgb(0,0,255);}
.fc6{color:rgb(128,128,128);}
.fc5{color:rgb(0,0,0);}
.fc1{color:rgb(28,28,28);}
.fc0{color:rgb(255,255,255);}
.fsb{font-size:43.200000px;}
.fs6{font-size:55.806000px;}
.fs5{font-size:57.654000px;}
.fsc{font-size:60.036000px;}
.fs9{font-size:67.860000px;}
.fs8{font-size:83.382000px;}
.fs4{font-size:84.018000px;}
.fs2{font-size:95.922000px;}
.fs3{font-size:98.988000px;}
.fsa{font-size:108.000000px;}
.fs1{font-size:117.012000px;}
.fs7{font-size:120.078000px;}
.fs0{font-size:144.054000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.042000px;}
.y9{bottom:31.549500px;}
.y8{bottom:32.356500px;}
.y1b{bottom:32.527500px;}
.y1e{bottom:73.431000px;}
.y20{bottom:79.171500px;}
.y3a{bottom:80.574000px;}
.y16{bottom:84.655500px;}
.y5b{bottom:85.846500px;}
.y29{bottom:88.270500px;}
.y45{bottom:94.606500px;}
.y51{bottom:98.943000px;}
.y7{bottom:100.218000px;}
.y15{bottom:113.272500px;}
.y59{bottom:113.611500px;}
.y28{bottom:115.993500px;}
.y50{bottom:126.666000px;}
.y19{bottom:128.112000px;}
.y68{bottom:130.450500px;}
.y14{bottom:141.888000px;}
.y60{bottom:142.398000px;}
.y27{bottom:143.716500px;}
.y6{bottom:147.033000px;}
.y58{bottom:154.941000px;}
.y36{bottom:157.237500px;}
.y2d{bottom:170.589000px;}
.y26{bottom:171.439500px;}
.y2a{bottom:172.459500px;}
.y44{bottom:178.327500px;}
.y13{bottom:183.217500px;}
.y5f{bottom:183.727500px;}
.y4f{bottom:189.595500px;}
.y5{bottom:193.846500px;}
.y57{bottom:196.270500px;}
.y2b{bottom:204.859500px;}
.y43{bottom:206.943000px;}
.y5e{bottom:212.343000px;}
.y35{bottom:222.250500px;}
.y4e{bottom:223.015500px;}
.y12{bottom:223.866000px;}
.y25{bottom:225.439500px;}
.y67{bottom:227.820000px;}
.y4{bottom:227.862000px;}
.y42{bottom:248.272500px;}
.y11{bottom:249.207000px;}
.y34{bottom:249.972000px;}
.y5d{bottom:253.672500px;}
.y4d{bottom:257.754000px;}
.y24{bottom:266.767500px;}
.y66{bottom:269.149500px;}
.y5c{bottom:282.288000px;}
.y4c{bottom:285.477000px;}
.y33{bottom:290.578500px;}
.y41{bottom:290.791500px;}
.y10{bottom:291.727500px;}
.y3{bottom:303.420000px;}
.y23{bottom:309.288000px;}
.y65{bottom:310.477500px;}
.y40{bottom:324.807000px;}
.yf{bottom:325.743000px;}
.y4b{bottom:326.083500px;}
.y56{bottom:326.934000px;}
.y38{bottom:328.422000px;}
.y32{bottom:331.908000px;}
.y2{bottom:345.345000px;}
.y64{bottom:352.998000px;}
.y4a{bottom:354.699000px;}
.y1f{bottom:356.484000px;}
.y31{bottom:360.523500px;}
.y1a{bottom:363.033000px;}
.y3f{bottom:370.431000px;}
.ye{bottom:371.367000px;}
.y55{bottom:372.556500px;}
.y22{bottom:383.527500px;}
.y30{bottom:389.139000px;}
.y49{bottom:397.218000px;}
.y63{bottom:398.622000px;}
.y39{bottom:404.914500px;}
.yd{bottom:412.695000px;}
.y3e{bottom:412.950000px;}
.y54{bottom:415.077000px;}
.y2c{bottom:429.661500px;}
.y2f{bottom:431.659500px;}
.y62{bottom:439.950000px;}
.y1d{bottom:450.367500px;}
.yc{bottom:454.024500px;}
.y18{bottom:456.490500px;}
.y3d{bottom:458.574000px;}
.y53{bottom:458.659500px;}
.y5a{bottom:460.444500px;}
.y2e{bottom:465.675000px;}
.y47{bottom:470.650500px;}
.y52{bottom:479.367000px;}
.y61{bottom:482.470500px;}
.y17{bottom:484.213500px;}
.y48{bottom:488.635500px;}
.y1c{bottom:492.888000px;}
.y3b{bottom:492.930000px;}
.y21{bottom:494.077500px;}
.y46{bottom:495.312000px;}
.y37{bottom:496.459500px;}
.yb{bottom:496.545000px;}
.y3c{bottom:501.094500px;}
.ya{bottom:585.411000px;}
.he{height:48.017074px;}
.hd{height:53.924865px;}
.h9{height:62.357109px;}
.h8{height:67.197990px;}
.hb{height:72.878238px;}
.h10{height:75.207680px;}
.h6{height:76.718865px;}
.h7{height:79.171066px;}
.hf{height:80.574480px;}
.hc{height:86.378906px;}
.h5{height:88.901695px;}
.ha{height:91.231137px;}
.h4{height:93.586746px;}
.h3{height:115.215064px;}
.h2{height:669.642000px;}
.h0{height:669.685039px;}
.h1{height:669.750000px;}
.w1{width:1190.250000px;}
.w2{width:1190.508000px;}
.w0{width:1190.551181px;}
.x0{left:0.000000px;}
.x28{left:25.257000px;}
.xb{left:32.569500px;}
.x1{left:42.519000px;}
.x5{left:43.753500px;}
.x13{left:49.323000px;}
.xc{left:50.428500px;}
.x1e{left:55.275000px;}
.x2{left:63.780000px;}
.x11{left:68.031000px;}
.x6{left:69.264000px;}
.x10{left:71.560500px;}
.xd{left:75.940500px;}
.x1f{left:80.787000px;}
.x12{left:93.543000px;}
.x7{left:122.413500px;}
.x17{left:134.022000px;}
.x4{left:229.819500px;}
.x1a{left:295.129500px;}
.x1b{left:334.969500px;}
.x14{left:339.519000px;}
.x29{left:364.224000px;}
.xa{left:465.123000px;}
.xf{left:481.663500px;}
.x20{left:487.615500px;}
.x8{left:697.791000px;}
.x9{left:752.259000px;}
.x18{left:765.013500px;}
.x26{left:773.602500px;}
.x19{left:790.525500px;}
.x16{left:825.052500px;}
.x1c{left:828.198000px;}
.xe{left:835.980000px;}
.x25{left:838.105500px;}
.x22{left:853.497000px;}
.x23{left:879.009000px;}
.x15{left:902.778000px;}
.x24{left:904.521000px;}
.x3{left:957.118500px;}
.x27{left:967.153500px;}
.x1d{left:1035.864000px;}
.x21{left:1050.448500px;}
@media print{
.v9{vertical-align:-30.389333pt;}
.v6{vertical-align:-28.117333pt;}
.vb{vertical-align:-20.261333pt;}
.vd{vertical-align:-11.658667pt;}
.v2{vertical-align:-10.293333pt;}
.va{vertical-align:-8.917333pt;}
.v3{vertical-align:-7.706667pt;}
.v1{vertical-align:-6.501333pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:6.501333pt;}
.v4{vertical-align:7.562667pt;}
.vc{vertical-align:8.922667pt;}
.v7{vertical-align:28.117333pt;}
.v5{vertical-align:35.680000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.026592pt;}
.lsa{letter-spacing:0.031925pt;}
.ls1{letter-spacing:0.098165pt;}
.ls5{letter-spacing:0.103499pt;}
.ls2{letter-spacing:0.165536pt;}
.ls7{letter-spacing:0.199339pt;}
.ls6{letter-spacing:0.204672pt;}
.ls4{letter-spacing:0.253515pt;}
.ls3{letter-spacing:0.258848pt;}
.ls8{letter-spacing:60.219733pt;}
.ws7{word-spacing:-39.950976pt;}
.wsd{word-spacing:-32.451328pt;}
.wsc{word-spacing:-27.360000pt;}
.ws1{word-spacing:-26.602368pt;}
.wsa{word-spacing:-25.076960pt;}
.wse{word-spacing:-24.300240pt;}
.ws6{word-spacing:-23.674405pt;}
.ws8{word-spacing:-23.124608pt;}
.ws4{word-spacing:-21.284560pt;}
.ws12{word-spacing:-18.819840pt;}
.ws14{word-spacing:-15.989376pt;}
.ws2{word-spacing:-14.605680pt;}
.ws3{word-spacing:-14.137520pt;}
.ws13{word-spacing:-0.128048pt;}
.ws10{word-spacing:-0.104011pt;}
.ws9{word-spacing:-0.087989pt;}
.ws11{word-spacing:-0.085264pt;}
.ws5{word-spacing:-0.074683pt;}
.wsf{word-spacing:-0.060320pt;}
.wsb{word-spacing:-0.051248pt;}
.ws0{word-spacing:0.000000pt;}
._a{margin-left:-16.224000pt;}
._b{margin-left:-14.245813pt;}
._c{margin-left:-12.845419pt;}
._7{margin-left:-11.447189pt;}
._5{margin-left:-6.924715pt;}
._3{margin-left:-5.512565pt;}
._2{margin-left:-3.120320pt;}
._6{margin-left:-2.199733pt;}
._0{margin-left:-1.090101pt;}
._1{width:0.936096pt;}
._8{width:2.417195pt;}
._4{width:3.524171pt;}
._9{width:1012.628443pt;}
.fsb{font-size:38.400000pt;}
.fs6{font-size:49.605333pt;}
.fs5{font-size:51.248000pt;}
.fsc{font-size:53.365333pt;}
.fs9{font-size:60.320000pt;}
.fs8{font-size:74.117333pt;}
.fs4{font-size:74.682667pt;}
.fs2{font-size:85.264000pt;}
.fs3{font-size:87.989333pt;}
.fsa{font-size:96.000000pt;}
.fs1{font-size:104.010667pt;}
.fs7{font-size:106.736000pt;}
.fs0{font-size:128.048000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.037333pt;}
.y9{bottom:28.044000pt;}
.y8{bottom:28.761333pt;}
.y1b{bottom:28.913333pt;}
.y1e{bottom:65.272000pt;}
.y20{bottom:70.374667pt;}
.y3a{bottom:71.621333pt;}
.y16{bottom:75.249333pt;}
.y5b{bottom:76.308000pt;}
.y29{bottom:78.462667pt;}
.y45{bottom:84.094667pt;}
.y51{bottom:87.949333pt;}
.y7{bottom:89.082667pt;}
.y15{bottom:100.686667pt;}
.y59{bottom:100.988000pt;}
.y28{bottom:103.105333pt;}
.y50{bottom:112.592000pt;}
.y19{bottom:113.877333pt;}
.y68{bottom:115.956000pt;}
.y14{bottom:126.122667pt;}
.y60{bottom:126.576000pt;}
.y27{bottom:127.748000pt;}
.y6{bottom:130.696000pt;}
.y58{bottom:137.725333pt;}
.y36{bottom:139.766667pt;}
.y2d{bottom:151.634667pt;}
.y26{bottom:152.390667pt;}
.y2a{bottom:153.297333pt;}
.y44{bottom:158.513333pt;}
.y13{bottom:162.860000pt;}
.y5f{bottom:163.313333pt;}
.y4f{bottom:168.529333pt;}
.y5{bottom:172.308000pt;}
.y57{bottom:174.462667pt;}
.y2b{bottom:182.097333pt;}
.y43{bottom:183.949333pt;}
.y5e{bottom:188.749333pt;}
.y35{bottom:197.556000pt;}
.y4e{bottom:198.236000pt;}
.y12{bottom:198.992000pt;}
.y25{bottom:200.390667pt;}
.y67{bottom:202.506667pt;}
.y4{bottom:202.544000pt;}
.y42{bottom:220.686667pt;}
.y11{bottom:221.517333pt;}
.y34{bottom:222.197333pt;}
.y5d{bottom:225.486667pt;}
.y4d{bottom:229.114667pt;}
.y24{bottom:237.126667pt;}
.y66{bottom:239.244000pt;}
.y5c{bottom:250.922667pt;}
.y4c{bottom:253.757333pt;}
.y33{bottom:258.292000pt;}
.y41{bottom:258.481333pt;}
.y10{bottom:259.313333pt;}
.y3{bottom:269.706667pt;}
.y23{bottom:274.922667pt;}
.y65{bottom:275.980000pt;}
.y40{bottom:288.717333pt;}
.yf{bottom:289.549333pt;}
.y4b{bottom:289.852000pt;}
.y56{bottom:290.608000pt;}
.y38{bottom:291.930667pt;}
.y32{bottom:295.029333pt;}
.y2{bottom:306.973333pt;}
.y64{bottom:313.776000pt;}
.y4a{bottom:315.288000pt;}
.y1f{bottom:316.874667pt;}
.y31{bottom:320.465333pt;}
.y1a{bottom:322.696000pt;}
.y3f{bottom:329.272000pt;}
.ye{bottom:330.104000pt;}
.y55{bottom:331.161333pt;}
.y22{bottom:340.913333pt;}
.y30{bottom:345.901333pt;}
.y49{bottom:353.082667pt;}
.y63{bottom:354.330667pt;}
.y39{bottom:359.924000pt;}
.yd{bottom:366.840000pt;}
.y3e{bottom:367.066667pt;}
.y54{bottom:368.957333pt;}
.y2c{bottom:381.921333pt;}
.y2f{bottom:383.697333pt;}
.y62{bottom:391.066667pt;}
.y1d{bottom:400.326667pt;}
.yc{bottom:403.577333pt;}
.y18{bottom:405.769333pt;}
.y3d{bottom:407.621333pt;}
.y53{bottom:407.697333pt;}
.y5a{bottom:409.284000pt;}
.y2e{bottom:413.933333pt;}
.y47{bottom:418.356000pt;}
.y52{bottom:426.104000pt;}
.y61{bottom:428.862667pt;}
.y17{bottom:430.412000pt;}
.y48{bottom:434.342667pt;}
.y1c{bottom:438.122667pt;}
.y3b{bottom:438.160000pt;}
.y21{bottom:439.180000pt;}
.y46{bottom:440.277333pt;}
.y37{bottom:441.297333pt;}
.yb{bottom:441.373333pt;}
.y3c{bottom:445.417333pt;}
.ya{bottom:520.365333pt;}
.he{height:42.681844pt;}
.hd{height:47.933214pt;}
.h9{height:55.428542pt;}
.h8{height:59.731547pt;}
.hb{height:64.780656pt;}
.h10{height:66.851271pt;}
.h6{height:68.194547pt;}
.h7{height:70.374281pt;}
.hf{height:71.621760pt;}
.hc{height:76.781250pt;}
.h5{height:79.023729pt;}
.ha{height:81.094344pt;}
.h4{height:83.188219pt;}
.h3{height:102.413391pt;}
.h2{height:595.237333pt;}
.h0{height:595.275591pt;}
.h1{height:595.333333pt;}
.w1{width:1058.000000pt;}
.w2{width:1058.229333pt;}
.w0{width:1058.267717pt;}
.x0{left:0.000000pt;}
.x28{left:22.450667pt;}
.xb{left:28.950667pt;}
.x1{left:37.794667pt;}
.x5{left:38.892000pt;}
.x13{left:43.842667pt;}
.xc{left:44.825333pt;}
.x1e{left:49.133333pt;}
.x2{left:56.693333pt;}
.x11{left:60.472000pt;}
.x6{left:61.568000pt;}
.x10{left:63.609333pt;}
.xd{left:67.502667pt;}
.x1f{left:71.810667pt;}
.x12{left:83.149333pt;}
.x7{left:108.812000pt;}
.x17{left:119.130667pt;}
.x4{left:204.284000pt;}
.x1a{left:262.337333pt;}
.x1b{left:297.750667pt;}
.x14{left:301.794667pt;}
.x29{left:323.754667pt;}
.xa{left:413.442667pt;}
.xf{left:428.145333pt;}
.x20{left:433.436000pt;}
.x8{left:620.258667pt;}
.x9{left:668.674667pt;}
.x18{left:680.012000pt;}
.x26{left:687.646667pt;}
.x19{left:702.689333pt;}
.x16{left:733.380000pt;}
.x1c{left:736.176000pt;}
.xe{left:743.093333pt;}
.x25{left:744.982667pt;}
.x22{left:758.664000pt;}
.x23{left:781.341333pt;}
.x15{left:802.469333pt;}
.x24{left:804.018667pt;}
.x3{left:850.772000pt;}
.x27{left:859.692000pt;}
.x1d{left:920.768000pt;}
.x21{left:933.732000pt;}
}




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