
    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_bd6f4911b1074a87744ba1c5.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.945000;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_256cd759d217383f3796efd5.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.961000;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_15da053a007f2dee1a6f5a55.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.675000;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_953435706b1e158106067358.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.897000;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_e1d714cc4c47025a83a972b7.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.974000;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_15da053a007f2dee1a6f5a55.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.675000;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_a5e1e55d1b04ea2f7fbbec4d.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_9b27d4796343d40d576a1859.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_ed09d1332a5dbc8863deeab4.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.467000;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);}
.m3{transform:matrix(0.255130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255130,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.256324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256324,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:-5.304000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:4.254000px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:14.943900px;}
.ls1{letter-spacing:52.499421px;}
.ls2{letter-spacing:475.687485px;}
.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;}
}
.ws9{word-spacing:-21.519300px;}
.ws1{word-spacing:-16.363650px;}
.ws2{word-spacing:-12.981900px;}
.wsd{word-spacing:-8.777238px;}
.wse{word-spacing:-7.680071px;}
.ws6{word-spacing:-1.701820px;}
.wsb{word-spacing:-1.505456px;}
.ws3{word-spacing:-0.196364px;}
.wsf{word-spacing:-0.029769px;}
.ws5{word-spacing:-0.002694px;}
.ws7{word-spacing:-0.002560px;}
.ws8{word-spacing:-0.002341px;}
.ws11{word-spacing:-0.000877px;}
.ws0{word-spacing:0.000000px;}
.wsa{word-spacing:0.001568px;}
.ws10{word-spacing:2.510575px;}
.ws4{word-spacing:2.749093px;}
.wsc{word-spacing:31.509075px;}
._14{margin-left:-145.510721px;}
._13{margin-left:-123.481684px;}
._c{margin-left:-8.863269px;}
._e{margin-left:-7.720954px;}
._16{margin-left:-5.626407px;}
._7{margin-left:-4.254549px;}
._8{margin-left:-3.008223px;}
._0{margin-left:-1.377235px;}
._1{width:1.205081px;}
._4{width:3.083233px;}
._2{width:4.658908px;}
._3{width:7.094247px;}
._a{width:9.076458px;}
._17{width:14.585283px;}
._15{width:16.916495px;}
._9{width:19.502782px;}
._12{width:25.134542px;}
._6{width:80.410675px;}
._b{width:184.322842px;}
._10{width:304.710862px;}
._f{width:582.312258px;}
._11{width:1023.332688px;}
._5{width:1040.012688px;}
._d{width:1153.048234px;}
.fcd{color:rgb(218,147,13);}
.fc0{color:rgb(255,255,255);}
.fcb{color:rgb(96,96,96);}
.fc2{color:rgb(82,86,109);}
.fc7{color:rgb(249,206,194);}
.fc8{color:rgb(255,0,0);}
.fc3{color:transparent;}
.fc4{color:rgb(252,230,223);}
.fcf{color:rgb(235,109,93);}
.fc1{color:rgb(0,0,0);}
.fc5{color:rgb(224,45,48);}
.fce{color:rgb(245,245,245);}
.fc9{color:rgb(0,173,239);}
.fc6{color:rgb(254,250,248);}
.fca{color:rgb(240,81,51);}
.fcc{color:rgb(215,7,81);}
.fsb{font-size:16.970979px;}
.fsa{font-size:16.970982px;}
.fs8{font-size:22.069169px;}
.fsc{font-size:22.627880px;}
.fs9{font-size:25.221947px;}
.fse{font-size:29.170412px;}
.fsd{font-size:29.768969px;}
.fs4{font-size:35.865600px;}
.fs6{font-size:42.351660px;}
.fs2{font-size:47.820600px;}
.fs3{font-size:52.942140px;}
.fs7{font-size:59.775600px;}
.fs1{font-size:65.454600px;}
.fs5{font-size:75.476160px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y11{bottom:3.871500px;}
.ya{bottom:3.873000px;}
.y38{bottom:16.317131px;}
.y8f{bottom:16.621500px;}
.y9{bottom:20.397402px;}
.y9f{bottom:21.399000px;}
.y8{bottom:21.648000px;}
.y7d{bottom:22.974308px;}
.y3d{bottom:25.428000px;}
.y40{bottom:25.753500px;}
.y43{bottom:26.850000px;}
.y17{bottom:28.083000px;}
.y84{bottom:28.922167px;}
.y88{bottom:31.894500px;}
.y2e{bottom:32.433000px;}
.y25{bottom:32.883000px;}
.y9e{bottom:35.596500px;}
.y8e{bottom:36.945000px;}
.y7c{bottom:40.429232px;}
.yab{bottom:41.529000px;}
.y5d{bottom:41.928263px;}
.y3c{bottom:45.751500px;}
.y3f{bottom:46.077000px;}
.y42{bottom:47.173500px;}
.y28{bottom:48.217500px;}
.y9d{bottom:49.792500px;}
.y5c{bottom:49.810210px;}
.y87{bottom:49.828500px;}
.y8d{bottom:57.268500px;}
.y2d{bottom:57.634500px;}
.y24{bottom:58.518000px;}
.y4d{bottom:62.113500px;}
.y47{bottom:63.762000px;}
.y4a{bottom:63.786000px;}
.y9c{bottom:63.990000px;}
.y6e{bottom:64.416135px;}
.yaa{bottom:66.336000px;}
.y86{bottom:67.761000px;}
.y6d{bottom:72.298094px;}
.y27{bottom:73.024500px;}
.y8c{bottom:77.592000px;}
.y83{bottom:79.662750px;}
.y85{bottom:85.693500px;}
.y77{bottom:86.125179px;}
.y9b{bottom:86.250000px;}
.y4c{bottom:86.920500px;}
.y6a{bottom:88.195653px;}
.y46{bottom:88.569000px;}
.y49{bottom:88.593000px;}
.y10{bottom:91.023000px;}
.ya9{bottom:91.143000px;}
.y76{bottom:93.021981px;}
.y56{bottom:94.155716px;}
.y26{bottom:97.831500px;}
.y8b{bottom:97.915500px;}
.y69{bottom:99.815746px;}
.y9a{bottom:100.447500px;}
.y55{bottom:101.052331px;}
.y2c{bottom:101.178000px;}
.y36{bottom:101.950500px;}
.y20{bottom:104.914500px;}
.y7e{bottom:108.745269px;}
.y4b{bottom:111.729000px;}
.y48{bottom:112.879500px;}
.y45{bottom:113.377500px;}
.y5f{bottom:113.496636px;}
.y75{bottom:114.053057px;}
.y82{bottom:114.490052px;}
.y99{bottom:114.643500px;}
.y4e{bottom:114.889500px;}
.y54{bottom:115.100352px;}
.ya8{bottom:115.950000px;}
.y5e{bottom:119.760516px;}
.y74{bottom:120.949860px;}
.y53{bottom:121.997155px;}
.y35{bottom:122.274000px;}
.y68{bottom:123.618504px;}
.y1f{bottom:125.238000px;}
.y2b{bottom:125.985000px;}
.y7{bottom:129.708000px;}
.y61{bottom:133.309047px;}
.y7a{bottom:134.449140px;}
.y59{bottom:134.963018px;}
.y66{bottom:136.146266px;}
.y81{bottom:137.007480px;}
.y7b{bottom:138.176812px;}
.y62{bottom:139.339664px;}
.yf{bottom:139.753500px;}
.ya7{bottom:141.070500px;}
.y79{bottom:142.331087px;}
.y67{bottom:142.410147px;}
.y34{bottom:142.597500px;}
.y58{bottom:142.844965px;}
.y1e{bottom:145.561500px;}
.y16{bottom:149.025000px;}
.y6{bottom:150.031500px;}
.y78{bottom:150.213034px;}
.y57{bottom:150.726912px;}
.y2a{bottom:150.792000px;}
.y98{bottom:152.346000px;}
.y44{bottom:153.175500px;}
.y60{bottom:153.232094px;}
.y18{bottom:156.408421px;}
.y80{bottom:157.524499px;}
.y63{bottom:158.155082px;}
.y52{bottom:158.903093px;}
.y41{bottom:161.064000px;}
.y3e{bottom:162.159000px;}
.y3b{bottom:162.484500px;}
.y64{bottom:162.776370px;}
.y51{bottom:165.799885px;}
.y33{bottom:167.404500px;}
.y1d{bottom:169.848000px;}
.y73{bottom:169.908825px;}
.y5{bottom:170.355000px;}
.y15{bottom:173.832000px;}
.y29{bottom:175.600500px;}
.y72{bottom:176.805606px;}
.y7f{bottom:177.165991px;}
.y97{bottom:180.141000px;}
.y50{bottom:182.561844px;}
.y65{bottom:184.199535px;}
.ya6{bottom:188.259000px;}
.ye{bottom:188.485500px;}
.y4f{bottom:189.458636px;}
.y32{bottom:192.606000px;}
.y6c{bottom:197.845503px;}
.y96{bottom:198.073500px;}
.y14{bottom:198.639000px;}
.y5b{bottom:200.501486px;}
.y71{bottom:204.818674px;}
.y6b{bottom:204.916789px;}
.y3a{bottom:206.229000px;}
.y5a{bottom:208.383281px;}
.ya5{bottom:208.582500px;}
.y4{bottom:209.314500px;}
.y70{bottom:211.715454px;}
.y1c{bottom:213.027000px;}
.y95{bottom:216.007500px;}
.y6f{bottom:218.818564px;}
.y13{bottom:223.446000px;}
.y3{bottom:223.510500px;}
.y39{bottom:230.956500px;}
.y1b{bottom:233.350500px;}
.ya4{bottom:233.389500px;}
.y94{bottom:236.928000px;}
.yd{bottom:237.217500px;}
.y31{bottom:239.875500px;}
.y12{bottom:248.253000px;}
.y1a{bottom:253.674000px;}
.ya3{bottom:253.713000px;}
.y93{bottom:254.860500px;}
.y23{bottom:256.530000px;}
.y2{bottom:257.226000px;}
.y30{bottom:260.200500px;}
.y37{bottom:268.480500px;}
.y19{bottom:277.960500px;}
.ya2{bottom:278.520000px;}
.y92{bottom:279.667500px;}
.y2f{bottom:283.372500px;}
.yc{bottom:285.948000px;}
.ya1{bottom:298.843500px;}
.y91{bottom:299.992500px;}
.y22{bottom:301.474500px;}
.y8a{bottom:312.931500px;}
.y1{bottom:321.951000px;}
.ya0{bottom:323.652000px;}
.y90{bottom:324.799500px;}
.y21{bottom:327.109500px;}
.y89{bottom:333.255000px;}
.yb{bottom:362.751000px;}
.h15{height:12.893967px;}
.h14{height:12.893969px;}
.h12{height:16.767396px;}
.h16{height:17.191885px;}
.h13{height:19.162769px;}
.h8{height:25.392845px;}
.h10{height:28.206206px;}
.h18{height:33.108418px;}
.h17{height:33.787780px;}
.h4{height:33.856985px;}
.h5{height:34.765576px;}
.h7{height:35.259465px;}
.h9{height:41.037857px;}
.h19{height:42.321125px;}
.h1a{height:43.994842px;}
.h3{height:46.341857px;}
.hc{height:48.174586px;}
.he{height:50.595857px;}
.hb{height:53.210693px;}
.h2{height:60.942658px;}
.hd{height:63.352819px;}
.hf{height:72.840146px;}
.h6{height:91.054594px;}
.h11{height:229.881170px;}
.ha{height:314.484000px;}
.h1{height:382.500000px;}
.h0{height:382.677000px;}
.w4{width:333.363113px;}
.w3{width:416.691300px;}
.w2{width:416.724081px;}
.w5{width:476.187229px;}
.w1{width:680.250000px;}
.w0{width:680.314500px;}
.x0{left:0.000000px;}
.x2f{left:6.421714px;}
.x30{left:11.270905px;}
.xb{left:18.136500px;}
.x18{left:22.747500px;}
.x38{left:24.652269px;}
.x14{left:36.141000px;}
.xf{left:42.237000px;}
.xc{left:43.275000px;}
.x19{left:55.474500px;}
.x37{left:57.458391px;}
.x1{left:61.633500px;}
.x43{left:71.623500px;}
.xd{left:75.247500px;}
.x32{left:80.960340px;}
.x33{left:82.999692px;}
.x34{left:87.158359px;}
.x35{left:89.981662px;}
.x3b{left:91.420871px;}
.x31{left:94.270987px;}
.x12{left:96.786303px;}
.x36{left:99.923978px;}
.x1e{left:102.046500px;}
.x42{left:107.974500px;}
.x3a{left:110.446631px;}
.x9{left:120.988740px;}
.x8{left:131.812500px;}
.xa{left:136.401000px;}
.x13{left:141.831000px;}
.x2c{left:143.539962px;}
.x2a{left:152.068736px;}
.x2e{left:153.310417px;}
.x2b{left:156.654094px;}
.x39{left:159.718767px;}
.x2d{left:162.203270px;}
.x26{left:165.425903px;}
.x29{left:170.782084px;}
.xe{left:174.376661px;}
.x27{left:183.825576px;}
.x28{left:187.057053px;}
.x11{left:193.065000px;}
.x4{left:206.259000px;}
.x25{left:213.039276px;}
.x6{left:219.165000px;}
.x21{left:220.356911px;}
.x20{left:224.442204px;}
.x1f{left:226.225729px;}
.x3{left:231.963000px;}
.x22{left:239.334398px;}
.x1a{left:247.885500px;}
.x15{left:250.866000px;}
.x10{left:253.971000px;}
.x2{left:278.695500px;}
.x1b{left:280.614000px;}
.x7{left:290.076000px;}
.x3e{left:295.968523px;}
.x5{left:298.111500px;}
.x24{left:331.171096px;}
.x23{left:332.313348px;}
.x40{left:338.929389px;}
.x3f{left:340.865817px;}
.x3d{left:352.209978px;}
.x41{left:366.191595px;}
.x17{left:407.652000px;}
.x3c{left:441.645933px;}
.x1c{left:461.125500px;}
.x16{left:465.589500px;}
.x1d{left:493.852500px;}
@media print{
.v1{vertical-align:-4.714667pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:3.781333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:13.283467pt;}
.ls1{letter-spacing:46.666152pt;}
.ls2{letter-spacing:422.833320pt;}
.ws9{word-spacing:-19.128267pt;}
.ws1{word-spacing:-14.545467pt;}
.ws2{word-spacing:-11.539466pt;}
.wsd{word-spacing:-7.801989pt;}
.wse{word-spacing:-6.826730pt;}
.ws6{word-spacing:-1.512729pt;}
.wsb{word-spacing:-1.338183pt;}
.ws3{word-spacing:-0.174546pt;}
.wsf{word-spacing:-0.026461pt;}
.ws5{word-spacing:-0.002395pt;}
.ws7{word-spacing:-0.002275pt;}
.ws8{word-spacing:-0.002081pt;}
.ws11{word-spacing:-0.000779pt;}
.ws0{word-spacing:0.000000pt;}
.wsa{word-spacing:0.001394pt;}
.ws10{word-spacing:2.231622pt;}
.ws4{word-spacing:2.443638pt;}
.wsc{word-spacing:28.008067pt;}
._14{margin-left:-129.342863pt;}
._13{margin-left:-109.761497pt;}
._c{margin-left:-7.878461pt;}
._e{margin-left:-6.863070pt;}
._16{margin-left:-5.001251pt;}
._7{margin-left:-3.781821pt;}
._8{margin-left:-2.673976pt;}
._0{margin-left:-1.224209pt;}
._1{width:1.071183pt;}
._4{width:2.740651pt;}
._2{width:4.141252pt;}
._3{width:6.305997pt;}
._a{width:8.067962pt;}
._17{width:12.964696pt;}
._15{width:15.036884pt;}
._9{width:17.335806pt;}
._12{width:22.341815pt;}
._6{width:71.476156pt;}
._b{width:163.842526pt;}
._10{width:270.854099pt;}
._f{width:517.610896pt;}
._11{width:909.629056pt;}
._5{width:924.455723pt;}
._d{width:1024.931763pt;}
.fsb{font-size:15.085315pt;}
.fsa{font-size:15.085318pt;}
.fs8{font-size:19.617039pt;}
.fsc{font-size:20.113671pt;}
.fs9{font-size:22.419509pt;}
.fse{font-size:25.929256pt;}
.fsd{font-size:26.461306pt;}
.fs4{font-size:31.880533pt;}
.fs6{font-size:37.645920pt;}
.fs2{font-size:42.507200pt;}
.fs3{font-size:47.059680pt;}
.fs7{font-size:53.133867pt;}
.fs1{font-size:58.181867pt;}
.fs5{font-size:67.089920pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y11{bottom:3.441333pt;}
.ya{bottom:3.442667pt;}
.y38{bottom:14.504117pt;}
.y8f{bottom:14.774667pt;}
.y9{bottom:18.131024pt;}
.y9f{bottom:19.021333pt;}
.y8{bottom:19.242667pt;}
.y7d{bottom:20.421607pt;}
.y3d{bottom:22.602667pt;}
.y40{bottom:22.892000pt;}
.y43{bottom:23.866667pt;}
.y17{bottom:24.962667pt;}
.y84{bottom:25.708593pt;}
.y88{bottom:28.350667pt;}
.y2e{bottom:28.829333pt;}
.y25{bottom:29.229333pt;}
.y9e{bottom:31.641333pt;}
.y8e{bottom:32.840000pt;}
.y7c{bottom:35.937095pt;}
.yab{bottom:36.914667pt;}
.y5d{bottom:37.269567pt;}
.y3c{bottom:40.668000pt;}
.y3f{bottom:40.957333pt;}
.y42{bottom:41.932000pt;}
.y28{bottom:42.860000pt;}
.y9d{bottom:44.260000pt;}
.y5c{bottom:44.275742pt;}
.y87{bottom:44.292000pt;}
.y8d{bottom:50.905333pt;}
.y2d{bottom:51.230667pt;}
.y24{bottom:52.016000pt;}
.y4d{bottom:55.212000pt;}
.y47{bottom:56.677333pt;}
.y4a{bottom:56.698667pt;}
.y9c{bottom:56.880000pt;}
.y6e{bottom:57.258787pt;}
.yaa{bottom:58.965333pt;}
.y86{bottom:60.232000pt;}
.y6d{bottom:64.264973pt;}
.y27{bottom:64.910667pt;}
.y8c{bottom:68.970667pt;}
.y83{bottom:70.811333pt;}
.y85{bottom:76.172000pt;}
.y77{bottom:76.555714pt;}
.y9b{bottom:76.666667pt;}
.y4c{bottom:77.262667pt;}
.y6a{bottom:78.396136pt;}
.y46{bottom:78.728000pt;}
.y49{bottom:78.749333pt;}
.y10{bottom:80.909333pt;}
.ya9{bottom:81.016000pt;}
.y76{bottom:82.686206pt;}
.y56{bottom:83.693970pt;}
.y26{bottom:86.961333pt;}
.y8b{bottom:87.036000pt;}
.y69{bottom:88.725108pt;}
.y9a{bottom:89.286667pt;}
.y55{bottom:89.824294pt;}
.y2c{bottom:89.936000pt;}
.y36{bottom:90.622667pt;}
.y20{bottom:93.257333pt;}
.y7e{bottom:96.662461pt;}
.y4b{bottom:99.314667pt;}
.y48{bottom:100.337333pt;}
.y45{bottom:100.780000pt;}
.y5f{bottom:100.885898pt;}
.y75{bottom:101.380495pt;}
.y82{bottom:101.768935pt;}
.y99{bottom:101.905333pt;}
.y4e{bottom:102.124000pt;}
.y54{bottom:102.311424pt;}
.ya8{bottom:103.066667pt;}
.y5e{bottom:106.453792pt;}
.y74{bottom:107.510987pt;}
.y53{bottom:108.441916pt;}
.y35{bottom:108.688000pt;}
.y68{bottom:109.883114pt;}
.y1f{bottom:111.322667pt;}
.y2b{bottom:111.986667pt;}
.y7{bottom:115.296000pt;}
.y61{bottom:118.496931pt;}
.y7a{bottom:119.510347pt;}
.y59{bottom:119.967127pt;}
.y66{bottom:121.018903pt;}
.y81{bottom:121.784427pt;}
.y7b{bottom:122.823832pt;}
.y62{bottom:123.857479pt;}
.yf{bottom:124.225333pt;}
.ya7{bottom:125.396000pt;}
.y79{bottom:126.516522pt;}
.y67{bottom:126.586797pt;}
.y34{bottom:126.753333pt;}
.y58{bottom:126.973302pt;}
.y1e{bottom:129.388000pt;}
.y16{bottom:132.466667pt;}
.y6{bottom:133.361333pt;}
.y78{bottom:133.522697pt;}
.y57{bottom:133.979477pt;}
.y2a{bottom:134.037333pt;}
.y98{bottom:135.418667pt;}
.y44{bottom:136.156000pt;}
.y60{bottom:136.206305pt;}
.y18{bottom:139.029707pt;}
.y80{bottom:140.021777pt;}
.y63{bottom:140.582295pt;}
.y52{bottom:141.247194pt;}
.y41{bottom:143.168000pt;}
.y3e{bottom:144.141333pt;}
.y3b{bottom:144.430667pt;}
.y64{bottom:144.690107pt;}
.y51{bottom:147.377675pt;}
.y33{bottom:148.804000pt;}
.y1d{bottom:150.976000pt;}
.y73{bottom:151.030067pt;}
.y5{bottom:151.426667pt;}
.y15{bottom:154.517333pt;}
.y29{bottom:156.089333pt;}
.y72{bottom:157.160539pt;}
.y7f{bottom:157.480880pt;}
.y97{bottom:160.125333pt;}
.y50{bottom:162.277195pt;}
.y65{bottom:163.732920pt;}
.ya6{bottom:167.341333pt;}
.ye{bottom:167.542667pt;}
.y4f{bottom:168.407677pt;}
.y32{bottom:171.205333pt;}
.y6c{bottom:175.862669pt;}
.y96{bottom:176.065333pt;}
.y14{bottom:176.568000pt;}
.y5b{bottom:178.223543pt;}
.y71{bottom:182.061043pt;}
.y6b{bottom:182.148257pt;}
.y3a{bottom:183.314667pt;}
.y5a{bottom:185.229583pt;}
.ya5{bottom:185.406667pt;}
.y4{bottom:186.057333pt;}
.y70{bottom:188.191515pt;}
.y1c{bottom:189.357333pt;}
.y95{bottom:192.006667pt;}
.y6f{bottom:194.505390pt;}
.y13{bottom:198.618667pt;}
.y3{bottom:198.676000pt;}
.y39{bottom:205.294667pt;}
.y1b{bottom:207.422667pt;}
.ya4{bottom:207.457333pt;}
.y94{bottom:210.602667pt;}
.yd{bottom:210.860000pt;}
.y31{bottom:213.222667pt;}
.y12{bottom:220.669333pt;}
.y1a{bottom:225.488000pt;}
.ya3{bottom:225.522667pt;}
.y93{bottom:226.542667pt;}
.y23{bottom:228.026667pt;}
.y2{bottom:228.645333pt;}
.y30{bottom:231.289333pt;}
.y37{bottom:238.649333pt;}
.y19{bottom:247.076000pt;}
.ya2{bottom:247.573333pt;}
.y92{bottom:248.593333pt;}
.y2f{bottom:251.886667pt;}
.yc{bottom:254.176000pt;}
.ya1{bottom:265.638667pt;}
.y91{bottom:266.660000pt;}
.y22{bottom:267.977333pt;}
.y8a{bottom:278.161333pt;}
.y1{bottom:286.178667pt;}
.ya0{bottom:287.690667pt;}
.y90{bottom:288.710667pt;}
.y21{bottom:290.764000pt;}
.y89{bottom:296.226667pt;}
.yb{bottom:322.445333pt;}
.h15{height:11.461304pt;}
.h14{height:11.461306pt;}
.h12{height:14.904352pt;}
.h16{height:15.281676pt;}
.h13{height:17.033572pt;}
.h8{height:22.571418pt;}
.h10{height:25.072183pt;}
.h18{height:29.429705pt;}
.h17{height:30.033582pt;}
.h4{height:30.095098pt;}
.h5{height:30.902734pt;}
.h7{height:31.341747pt;}
.h9{height:36.478095pt;}
.h19{height:37.618778pt;}
.h1a{height:39.106526pt;}
.h3{height:41.192762pt;}
.hc{height:42.821854pt;}
.he{height:44.974095pt;}
.hb{height:47.298394pt;}
.h2{height:54.171251pt;}
.hd{height:56.313617pt;}
.hf{height:64.746796pt;}
.h6{height:80.937417pt;}
.h11{height:204.338818pt;}
.ha{height:279.541333pt;}
.h1{height:340.000000pt;}
.h0{height:340.157333pt;}
.w4{width:296.322767pt;}
.w3{width:370.392267pt;}
.w2{width:370.421406pt;}
.w5{width:423.277537pt;}
.w1{width:604.666667pt;}
.w0{width:604.724000pt;}
.x0{left:0.000000pt;}
.x2f{left:5.708191pt;}
.x30{left:10.018582pt;}
.xb{left:16.121333pt;}
.x18{left:20.220000pt;}
.x38{left:21.913128pt;}
.x14{left:32.125333pt;}
.xf{left:37.544000pt;}
.xc{left:38.466667pt;}
.x19{left:49.310667pt;}
.x37{left:51.074125pt;}
.x1{left:54.785333pt;}
.x43{left:63.665333pt;}
.xd{left:66.886667pt;}
.x32{left:71.964747pt;}
.x33{left:73.777504pt;}
.x34{left:77.474097pt;}
.x35{left:79.983700pt;}
.x3b{left:81.262997pt;}
.x31{left:83.796433pt;}
.x12{left:86.032269pt;}
.x36{left:88.821314pt;}
.x1e{left:90.708000pt;}
.x42{left:95.977333pt;}
.x3a{left:98.174783pt;}
.x9{left:107.545547pt;}
.x8{left:117.166667pt;}
.xa{left:121.245333pt;}
.x13{left:126.072000pt;}
.x2c{left:127.591078pt;}
.x2a{left:135.172210pt;}
.x2e{left:136.275926pt;}
.x2b{left:139.248084pt;}
.x39{left:141.972237pt;}
.x2d{left:144.180684pt;}
.x26{left:147.045248pt;}
.x29{left:151.806297pt;}
.xe{left:155.001476pt;}
.x27{left:163.400512pt;}
.x28{left:166.272936pt;}
.x11{left:171.613333pt;}
.x4{left:183.341333pt;}
.x25{left:189.368245pt;}
.x6{left:194.813333pt;}
.x21{left:195.872810pt;}
.x20{left:199.504181pt;}
.x1f{left:201.089536pt;}
.x3{left:206.189333pt;}
.x22{left:212.741687pt;}
.x1a{left:220.342667pt;}
.x15{left:222.992000pt;}
.x10{left:225.752000pt;}
.x2{left:247.729333pt;}
.x1b{left:249.434667pt;}
.x7{left:257.845333pt;}
.x3e{left:263.083132pt;}
.x5{left:264.988000pt;}
.x24{left:294.374308pt;}
.x23{left:295.389642pt;}
.x40{left:301.270568pt;}
.x3f{left:302.991837pt;}
.x3d{left:313.075536pt;}
.x41{left:325.503640pt;}
.x17{left:362.357333pt;}
.x3c{left:392.574163pt;}
.x1c{left:409.889333pt;}
.x16{left:413.857333pt;}
.x1d{left:438.980000pt;}
}




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