
    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_113b41b957da8fd8311fe2e2.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.122070;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_b2cf2eccfae295b45f602434.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.109375;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_30a4959b1f1f46ba8ddd131f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.109375;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_07036a4a6be1885c580b7768.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.741211;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_108d6181cdd1174fe120302d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_0b75248a79a0268dcd4a9a10.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.109375;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_71928160302f93ed53623b92.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_668ac6da357458dc795f0d58.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.122070;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_0ca329e392622d37e5e7d353.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_d77fb1bc184666f35930b367.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.114258;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:-91.836180px;}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:678.937500px;}
.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:-28.417968px;}
.ws0{word-spacing:0.000000px;}
._19{margin-left:-11.301408px;}
._1{margin-left:-8.546839px;}
._3{margin-left:-5.713700px;}
._8{margin-left:-4.440081px;}
._0{margin-left:-2.588072px;}
._5{margin-left:-1.008379px;}
._d{width:1.004708px;}
._21{width:2.227767px;}
._f{width:3.853392px;}
._e{width:4.911179px;}
._12{width:8.711918px;}
._17{width:9.858822px;}
._c{width:13.334676px;}
._16{width:14.382596px;}
._b{width:17.240632px;}
._1d{width:18.433715px;}
._11{width:22.334789px;}
._26{width:23.347131px;}
._10{width:26.901509px;}
._22{width:27.922248px;}
._15{width:30.601879px;}
._14{width:31.609323px;}
._13{width:35.769693px;}
._27{width:39.563414px;}
._1c{width:40.708805px;}
._18{width:44.365754px;}
._1a{width:45.901310px;}
._25{width:48.659149px;}
._1b{width:49.798827px;}
._24{width:53.368259px;}
._23{width:54.806040px;}
._20{width:58.214039px;}
._1e{width:62.733113px;}
._1f{width:63.754254px;}
._6{width:527.048022px;}
._4{width:1197.917410px;}
._9{width:1438.130128px;}
._7{width:1852.268177px;}
._2{width:2340.146119px;}
._a{width:2369.369356px;}
.fc3{color:rgb(240,129,25);}
.fc2{color:transparent;}
.fc1{color:rgb(0,43,73);}
.fc4{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:48.000002px;}
.fs0{font-size:66.000002px;}
.fs1{font-size:96.000003px;}
.fs2{font-size:119.999997px;}
.y0{bottom:0.000000px;}
.yce{bottom:3.979982px;}
.yc8{bottom:11.854980px;}
.ycb{bottom:11.854982px;}
.y8{bottom:13.962158px;}
.ycd{bottom:23.944337px;}
.yca{bottom:31.819337px;}
.y101{bottom:39.000000px;}
.y7{bottom:43.908692px;}
.y56{bottom:49.119135px;}
.y3{bottom:49.119330px;}
.y1b{bottom:49.119510px;}
.yd2{bottom:51.783692px;}
.yd9{bottom:63.873047px;}
.y2{bottom:69.111099px;}
.y1a{bottom:72.078375px;}
.yff{bottom:72.079095px;}
.y6{bottom:73.855224px;}
.y100{bottom:86.091797px;}
.y19{bottom:95.037225px;}
.y55{bottom:95.037600px;}
.ybc{bottom:103.801757px;}
.y5{bottom:103.801758px;}
.y18{bottom:121.175910px;}
.y54{bottom:121.176270px;}
.yfe{bottom:146.762700px;}
.y17{bottom:146.763060px;}
.y53{bottom:146.763435px;}
.y52{bottom:178.890375px;}
.y73{bottom:188.723149px;}
.yba{bottom:194.999997px;}
.ye4{bottom:197.752438px;}
.y9e{bottom:203.392095px;}
.ye3{bottom:207.734623px;}
.yfd{bottom:208.675785px;}
.y51{bottom:208.836912px;}
.ye5{bottom:209.841795px;}
.y72{bottom:218.669685px;}
.yb9{bottom:224.946529px;}
.y9d{bottom:233.338620px;}
.yfc{bottom:238.623045px;}
.y50{bottom:238.783444px;}
.y71{bottom:248.616210px;}
.yb8{bottom:254.893065px;}
.ye0{bottom:258.770503px;}
.ye2{bottom:260.877688px;}
.y9c{bottom:263.285149px;}
.y35{bottom:263.285160px;}
.yfb{bottom:268.568850px;}
.y4f{bottom:268.729980px;}
.y70{bottom:278.562750px;}
.ydf{bottom:278.734859px;}
.ye1{bottom:280.842045px;}
.yb7{bottom:284.839602px;}
.y34{bottom:293.231685px;}
.yfa{bottom:298.514647px;}
.y4e{bottom:298.676517px;}
.y6f{bottom:308.509279px;}
.yb6{bottom:314.786134px;}
.y33{bottom:323.178221px;}
.y9b{bottom:323.178222px;}
.yf9{bottom:328.461911px;}
.y4d{bottom:328.623049px;}
.y6e{bottom:338.455815px;}
.yde{bottom:339.752923px;}
.yb5{bottom:344.732670px;}
.ydc{bottom:347.627923px;}
.ydd{bottom:349.735110px;}
.y32{bottom:353.124753px;}
.y9a{bottom:353.124754px;}
.yf8{bottom:358.409173px;}
.y4c{bottom:358.569585px;}
.y6d{bottom:368.402340px;}
.yb4{bottom:374.679195px;}
.y31{bottom:383.071287px;}
.y99{bottom:383.071290px;}
.yf7{bottom:388.354977px;}
.y4b{bottom:388.516113px;}
.yd8{bottom:396.556633px;}
.y6c{bottom:398.348877px;}
.ydb{bottom:398.663818px;}
.yb3{bottom:404.625735px;}
.yda{bottom:408.645989px;}
.y30{bottom:413.017819px;}
.yd7{bottom:416.520988px;}
.yf6{bottom:418.300780px;}
.y4a{bottom:418.462647px;}
.y6b{bottom:428.295409px;}
.yb2{bottom:434.572264px;}
.y2f{bottom:442.964355px;}
.yf5{bottom:448.248045px;}
.y49{bottom:448.409179px;}
.y6a{bottom:458.241945px;}
.yb1{bottom:464.518800px;}
.y2e{bottom:472.910895px;}
.yd6{bottom:477.539069px;}
.y48{bottom:478.355715px;}
.yd4{bottom:485.414069px;}
.yd5{bottom:487.521239px;}
.y69{bottom:488.188473px;}
.yb0{bottom:494.465328px;}
.y87{bottom:494.466060px;}
.yd3{bottom:495.396238px;}
.y2d{bottom:502.857416px;}
.y98{bottom:502.857420px;}
.y47{bottom:508.302237px;}
.yf4{bottom:516.618162px;}
.y68{bottom:518.135007px;}
.yaf{bottom:524.411862px;}
.y86{bottom:524.412600px;}
.y2c{bottom:532.803948px;}
.y97{bottom:532.803949px;}
.y46{bottom:538.248769px;}
.y67{bottom:548.081539px;}
.yd1{bottom:554.307133px;}
.yae{bottom:554.358394px;}
.y85{bottom:554.359125px;}
.ycf{bottom:562.182133px;}
.y2b{bottom:562.750482px;}
.y96{bottom:562.750485px;}
.y45{bottom:568.195305px;}
.ycc{bottom:572.164304px;}
.yd0{bottom:574.271490px;}
.y66{bottom:578.028075px;}
.yad{bottom:584.304930px;}
.y84{bottom:584.305665px;}
.y2a{bottom:592.697014px;}
.y95{bottom:592.697025px;}
.y44{bottom:598.141845px;}
.y65{bottom:607.974615px;}
.yac{bottom:614.251470px;}
.y83{bottom:614.252202px;}
.yf3{bottom:622.642815px;}
.y29{bottom:622.643550px;}
.y94{bottom:622.643561px;}
.y43{bottom:628.088385px;}
.yc9{bottom:632.200198px;}
.y64{bottom:637.921137px;}
.yc7{bottom:642.182370px;}
.yab{bottom:644.197995px;}
.y82{bottom:644.198735px;}
.y16{bottom:647.008845px;}
.yf2{bottom:652.589355px;}
.y93{bottom:652.590086px;}
.y28{bottom:652.590090px;}
.y42{bottom:658.034907px;}
.y15{bottom:666.489808px;}
.y63{bottom:667.867669px;}
.yaa{bottom:674.144524px;}
.y81{bottom:674.145267px;}
.yf1{bottom:682.535884px;}
.y92{bottom:682.536618px;}
.y27{bottom:682.536631px;}
.y41{bottom:687.981439px;}
.y14{bottom:689.963188px;}
.y62{bottom:697.814205px;}
.ya9{bottom:704.091060px;}
.y80{bottom:704.091800px;}
.yf0{bottom:712.482420px;}
.y91{bottom:712.483152px;}
.y26{bottom:712.483159px;}
.y13{bottom:713.436583px;}
.y40{bottom:717.927975px;}
.y61{bottom:727.760745px;}
.yc6{bottom:734.037588px;}
.ya8{bottom:734.037589px;}
.y7f{bottom:734.038331px;}
.y12{bottom:736.909978px;}
.yef{bottom:742.428949px;}
.y25{bottom:742.429496px;}
.y90{bottom:742.429684px;}
.y3f{bottom:747.874515px;}
.y60{bottom:757.707290px;}
.y11{bottom:760.383358px;}
.yc5{bottom:763.984122px;}
.ya7{bottom:763.984125px;}
.y7e{bottom:763.984856px;}
.yee{bottom:772.375485px;}
.y24{bottom:772.376028px;}
.y8f{bottom:772.376220px;}
.y3e{bottom:777.821051px;}
.y10{bottom:783.856753px;}
.y5f{bottom:787.653821px;}
.ya6{bottom:793.930654px;}
.y7d{bottom:793.931388px;}
.yed{bottom:802.322014px;}
.y23{bottom:802.322562px;}
.y8e{bottom:802.322760px;}
.y3d{bottom:807.767576px;}
.y5e{bottom:817.600346px;}
.yf{bottom:817.795710px;}
.ya5{bottom:823.877190px;}
.y7c{bottom:823.877922px;}
.yec{bottom:832.268550px;}
.y22{bottom:832.269094px;}
.y8d{bottom:832.269296px;}
.y3c{bottom:837.714108px;}
.y5d{bottom:847.546878px;}
.ye{bottom:847.742250px;}
.yc4{bottom:853.823727px;}
.ya4{bottom:853.823730px;}
.y7b{bottom:853.824454px;}
.yeb{bottom:862.215079px;}
.y21{bottom:862.215630px;}
.y8c{bottom:862.215821px;}
.y3b{bottom:867.660642px;}
.y5c{bottom:877.493412px;}
.yc3{bottom:883.770259px;}
.ya3{bottom:883.770270px;}
.y7a{bottom:883.770990px;}
.yd{bottom:888.535216px;}
.yea{bottom:892.161615px;}
.y20{bottom:892.162170px;}
.y8b{bottom:892.162353px;}
.y3a{bottom:897.607174px;}
.y5b{bottom:907.439944px;}
.yc2{bottom:913.716795px;}
.ya2{bottom:913.716799px;}
.y79{bottom:913.717530px;}
.ye9{bottom:922.108144px;}
.y1f{bottom:922.108707px;}
.y8a{bottom:922.108887px;}
.y39{bottom:927.553710px;}
.yc{bottom:936.593806px;}
.y5a{bottom:937.386480px;}
.yc1{bottom:943.663324px;}
.ya1{bottom:943.663335px;}
.y78{bottom:943.664061px;}
.ye8{bottom:952.054680px;}
.y1e{bottom:952.055239px;}
.y89{bottom:952.055419px;}
.y59{bottom:967.333005px;}
.yc0{bottom:973.609860px;}
.y77{bottom:973.610594px;}
.ye7{bottom:982.001220px;}
.y1d{bottom:982.001775px;}
.y88{bottom:982.001955px;}
.yb{bottom:984.652411px;}
.y38{bottom:995.923832px;}
.ybf{bottom:1003.556397px;}
.y76{bottom:1003.557127px;}
.ya0{bottom:1003.557129px;}
.y58{bottom:1012.625977px;}
.ya{bottom:1032.710999px;}
.ybe{bottom:1033.502928px;}
.y75{bottom:1033.503660px;}
.y9f{bottom:1033.503662px;}
.ye6{bottom:1050.371338px;}
.y1c{bottom:1050.371887px;}
.y37{bottom:1050.372070px;}
.y57{bottom:1056.184571px;}
.y9{bottom:1059.457580px;}
.ybd{bottom:1063.449464px;}
.y74{bottom:1063.450196px;}
.ybb{bottom:1079.433839px;}
.y4{bottom:1079.434387px;}
.y36{bottom:1079.434571px;}
.y1{bottom:1114.125000px;}
.hd{height:35.714355px;}
.hf{height:39.928711px;}
.h8{height:43.500001px;}
.h5{height:48.082032px;}
.he{height:55.678712px;}
.h2{height:59.812501px;}
.h10{height:59.893067px;}
.h14{height:63.449700px;}
.h3{height:65.103705px;}
.h11{height:75.643067px;}
.h12{height:79.857421px;}
.h6{height:87.000003px;}
.h9{height:108.749997px;}
.h1{height:148.875000px;}
.h13{height:162.747075px;}
.h7{height:162.747435px;}
.hb{height:162.747810px;}
.ha{height:183.565429px;}
.h4{height:183.565613px;}
.hc{height:183.566161px;}
.h0{height:1263.000000px;}
.w4{width:142.875046px;}
.w5{width:184.500000px;}
.w2{width:195.749977px;}
.w3{width:221.625000px;}
.w1{width:893.250000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x1c{left:3.829542px;}
.x19{left:6.868661px;}
.x18{left:12.375000px;}
.x23{left:14.641823px;}
.x1f{left:15.803610px;}
.x1d{left:17.268817px;}
.x12{left:20.250000px;}
.x17{left:23.774113px;}
.x1b{left:29.522332px;}
.x1e{left:31.659766px;}
.x16{left:33.849701px;}
.x20{left:38.294289px;}
.x1a{left:41.226154px;}
.x22{left:42.717788px;}
.x21{left:59.918429px;}
.x25{left:63.824998px;}
.xc{left:73.789376px;}
.x11{left:83.914376px;}
.x5{left:85.039376px;}
.x6{left:112.039376px;}
.x4{left:116.539376px;}
.xd{left:125.539376px;}
.x1{left:127.789376px;}
.x9{left:149.164376px;}
.xa{left:166.039376px;}
.xb{left:193.039376px;}
.xe{left:220.039376px;}
.xf{left:247.039376px;}
.x13{left:279.664350px;}
.x8{left:302.164376px;}
.x10{left:367.414376px;}
.x14{left:501.289350px;}
.x3{left:570.694822px;}
.x15{left:644.164395px;}
.x24{left:801.855198px;}
.x7{left:808.907801px;}
.x2{left:818.963377px;}
@media print{
.v1{vertical-align:-81.632160pt;}
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:603.500000pt;}
.ws1{word-spacing:-25.260416pt;}
.ws0{word-spacing:0.000000pt;}
._19{margin-left:-10.045696pt;}
._1{margin-left:-7.597190pt;}
._3{margin-left:-5.078845pt;}
._8{margin-left:-3.946739pt;}
._0{margin-left:-2.300508pt;}
._5{margin-left:-0.896337pt;}
._d{width:0.893074pt;}
._21{width:1.980238pt;}
._f{width:3.425238pt;}
._e{width:4.365492pt;}
._12{width:7.743928pt;}
._17{width:8.763398pt;}
._c{width:11.853045pt;}
._16{width:12.784530pt;}
._b{width:15.325006pt;}
._1d{width:16.385524pt;}
._11{width:19.853146pt;}
._26{width:20.753005pt;}
._10{width:23.912453pt;}
._22{width:24.819776pt;}
._15{width:27.201670pt;}
._14{width:28.097176pt;}
._13{width:31.795283pt;}
._27{width:35.167479pt;}
._1c{width:36.185605pt;}
._18{width:39.436226pt;}
._1a{width:40.801165pt;}
._25{width:43.252577pt;}
._1b{width:44.265624pt;}
._24{width:47.438452pt;}
._23{width:48.716480pt;}
._20{width:51.745812pt;}
._1e{width:55.762767pt;}
._1f{width:56.670448pt;}
._6{width:468.487131pt;}
._4{width:1064.815475pt;}
._9{width:1278.337892pt;}
._7{width:1646.460602pt;}
._2{width:2080.129884pt;}
._a{width:2106.106094pt;}
.fs3{font-size:42.666668pt;}
.fs0{font-size:58.666668pt;}
.fs1{font-size:85.333336pt;}
.fs2{font-size:106.666664pt;}
.y0{bottom:0.000000pt;}
.yce{bottom:3.537762pt;}
.yc8{bottom:10.537760pt;}
.ycb{bottom:10.537762pt;}
.y8{bottom:12.410807pt;}
.ycd{bottom:21.283855pt;}
.yca{bottom:28.283855pt;}
.y101{bottom:34.666667pt;}
.y7{bottom:39.029948pt;}
.y56{bottom:43.661454pt;}
.y3{bottom:43.661627pt;}
.y1b{bottom:43.661787pt;}
.yd2{bottom:46.029948pt;}
.yd9{bottom:56.776042pt;}
.y2{bottom:61.432088pt;}
.y1a{bottom:64.069667pt;}
.yff{bottom:64.070307pt;}
.y6{bottom:65.649088pt;}
.y100{bottom:76.526042pt;}
.y19{bottom:84.477534pt;}
.y55{bottom:84.477867pt;}
.ybc{bottom:92.268228pt;}
.y5{bottom:92.268230pt;}
.y18{bottom:107.711920pt;}
.y54{bottom:107.712240pt;}
.yfe{bottom:130.455734pt;}
.y17{bottom:130.456054pt;}
.y53{bottom:130.456387pt;}
.y52{bottom:159.013667pt;}
.y73{bottom:167.753911pt;}
.yba{bottom:173.333331pt;}
.ye4{bottom:175.779945pt;}
.y9e{bottom:180.792974pt;}
.ye3{bottom:184.652999pt;}
.yfd{bottom:185.489587pt;}
.y51{bottom:185.632811pt;}
.ye5{bottom:186.526040pt;}
.y72{bottom:194.373054pt;}
.yb9{bottom:199.952471pt;}
.y9d{bottom:207.412107pt;}
.yfc{bottom:212.109374pt;}
.y50{bottom:212.251951pt;}
.y71{bottom:220.992187pt;}
.yb8{bottom:226.571614pt;}
.ye0{bottom:230.018225pt;}
.ye2{bottom:231.891279pt;}
.y9c{bottom:234.031244pt;}
.y35{bottom:234.031254pt;}
.yfb{bottom:238.727867pt;}
.y4f{bottom:238.871094pt;}
.y70{bottom:247.611334pt;}
.ydf{bottom:247.764319pt;}
.ye1{bottom:249.637373pt;}
.yb7{bottom:253.190757pt;}
.y34{bottom:260.650387pt;}
.yfa{bottom:265.346353pt;}
.y4e{bottom:265.490237pt;}
.y6f{bottom:274.230471pt;}
.yb6{bottom:279.809897pt;}
.y33{bottom:287.269530pt;}
.y9b{bottom:287.269531pt;}
.yf9{bottom:291.966143pt;}
.y4d{bottom:292.109377pt;}
.y6e{bottom:300.849614pt;}
.yde{bottom:302.002599pt;}
.yb5{bottom:306.429040pt;}
.ydc{bottom:309.002599pt;}
.ydd{bottom:310.875653pt;}
.y32{bottom:313.888670pt;}
.y9a{bottom:313.888671pt;}
.yf8{bottom:318.585932pt;}
.y4c{bottom:318.728520pt;}
.y6d{bottom:327.468747pt;}
.yb4{bottom:333.048174pt;}
.y31{bottom:340.507811pt;}
.y99{bottom:340.507814pt;}
.yf7{bottom:345.204424pt;}
.y4b{bottom:345.347656pt;}
.yd8{bottom:352.494785pt;}
.y6c{bottom:354.087891pt;}
.ydb{bottom:354.367839pt;}
.yb3{bottom:359.667320pt;}
.yda{bottom:363.240879pt;}
.y30{bottom:367.126951pt;}
.yd7{bottom:370.240879pt;}
.yf6{bottom:371.822916pt;}
.y4a{bottom:371.966797pt;}
.y6b{bottom:380.707031pt;}
.yb2{bottom:386.286457pt;}
.y2f{bottom:393.746094pt;}
.yf5{bottom:398.442707pt;}
.y49{bottom:398.585937pt;}
.y6a{bottom:407.326174pt;}
.yb1{bottom:412.905600pt;}
.y2e{bottom:420.365240pt;}
.yd6{bottom:424.479172pt;}
.y48{bottom:425.205080pt;}
.yd4{bottom:431.479172pt;}
.yd5{bottom:433.352212pt;}
.y69{bottom:433.945310pt;}
.yb0{bottom:439.524736pt;}
.y87{bottom:439.525387pt;}
.yd3{bottom:440.352212pt;}
.y2d{bottom:446.984370pt;}
.y98{bottom:446.984374pt;}
.y47{bottom:451.824211pt;}
.yf4{bottom:459.216144pt;}
.y68{bottom:460.564451pt;}
.yaf{bottom:466.143877pt;}
.y86{bottom:466.144534pt;}
.y2c{bottom:473.603510pt;}
.y97{bottom:473.603511pt;}
.y46{bottom:478.443351pt;}
.y67{bottom:487.183591pt;}
.yd1{bottom:492.717452pt;}
.yae{bottom:492.763017pt;}
.y85{bottom:492.763667pt;}
.ycf{bottom:499.717452pt;}
.y2b{bottom:500.222651pt;}
.y96{bottom:500.222654pt;}
.y45{bottom:505.062494pt;}
.ycc{bottom:508.590492pt;}
.yd0{bottom:510.463547pt;}
.y66{bottom:513.802734pt;}
.yad{bottom:519.382160pt;}
.y84{bottom:519.382814pt;}
.y2a{bottom:526.841791pt;}
.y95{bottom:526.841800pt;}
.y44{bottom:531.681640pt;}
.y65{bottom:540.421880pt;}
.yac{bottom:546.001307pt;}
.y83{bottom:546.001958pt;}
.yf3{bottom:553.460280pt;}
.y29{bottom:553.460934pt;}
.y94{bottom:553.460943pt;}
.y43{bottom:558.300787pt;}
.yc9{bottom:561.955732pt;}
.y64{bottom:567.041011pt;}
.yc7{bottom:570.828773pt;}
.yab{bottom:572.620440pt;}
.y82{bottom:572.621098pt;}
.y16{bottom:575.118974pt;}
.yf2{bottom:580.079427pt;}
.y93{bottom:580.080076pt;}
.y28{bottom:580.080080pt;}
.y42{bottom:584.919917pt;}
.y15{bottom:592.435385pt;}
.y63{bottom:593.660151pt;}
.yaa{bottom:599.239577pt;}
.y81{bottom:599.240238pt;}
.yf1{bottom:606.698564pt;}
.y92{bottom:606.699216pt;}
.y27{bottom:606.699228pt;}
.y41{bottom:611.539057pt;}
.y14{bottom:613.300611pt;}
.y62{bottom:620.279294pt;}
.ya9{bottom:625.858720pt;}
.y80{bottom:625.859378pt;}
.yf0{bottom:633.317707pt;}
.y91{bottom:633.318357pt;}
.y26{bottom:633.318364pt;}
.y13{bottom:634.165851pt;}
.y40{bottom:638.158200pt;}
.y61{bottom:646.898440pt;}
.yc6{bottom:652.477856pt;}
.ya8{bottom:652.477857pt;}
.y7f{bottom:652.478517pt;}
.y12{bottom:655.031091pt;}
.yef{bottom:659.936844pt;}
.y25{bottom:659.937330pt;}
.y90{bottom:659.937497pt;}
.y3f{bottom:664.777347pt;}
.y60{bottom:673.517591pt;}
.y11{bottom:675.896318pt;}
.yc5{bottom:679.096997pt;}
.ya7{bottom:679.097000pt;}
.y7e{bottom:679.097650pt;}
.yee{bottom:686.555987pt;}
.y24{bottom:686.556470pt;}
.y8f{bottom:686.556640pt;}
.y3e{bottom:691.396490pt;}
.y10{bottom:696.761558pt;}
.y5f{bottom:700.136730pt;}
.ya6{bottom:705.716137pt;}
.y7d{bottom:705.716790pt;}
.yed{bottom:713.175124pt;}
.y23{bottom:713.175611pt;}
.y8e{bottom:713.175787pt;}
.y3d{bottom:718.015623pt;}
.y5e{bottom:726.755863pt;}
.yf{bottom:726.929520pt;}
.ya5{bottom:732.335280pt;}
.y7c{bottom:732.335931pt;}
.yec{bottom:739.794267pt;}
.y22{bottom:739.794751pt;}
.y8d{bottom:739.794930pt;}
.y3c{bottom:744.634763pt;}
.y5d{bottom:753.375003pt;}
.ye{bottom:753.548667pt;}
.yc4{bottom:758.954424pt;}
.ya4{bottom:758.954427pt;}
.y7b{bottom:758.955071pt;}
.yeb{bottom:766.413404pt;}
.y21{bottom:766.413894pt;}
.y8c{bottom:766.414063pt;}
.y3b{bottom:771.253904pt;}
.y5c{bottom:779.994144pt;}
.yc3{bottom:785.573564pt;}
.ya3{bottom:785.573574pt;}
.y7a{bottom:785.574214pt;}
.yd{bottom:789.809081pt;}
.yea{bottom:793.032547pt;}
.y20{bottom:793.033040pt;}
.y8b{bottom:793.033203pt;}
.y3a{bottom:797.873044pt;}
.y5b{bottom:806.613284pt;}
.yc2{bottom:812.192707pt;}
.ya2{bottom:812.192711pt;}
.y79{bottom:812.193360pt;}
.ye9{bottom:819.651684pt;}
.y1f{bottom:819.652184pt;}
.y8a{bottom:819.652344pt;}
.y39{bottom:824.492187pt;}
.yc{bottom:832.527827pt;}
.y5a{bottom:833.232427pt;}
.yc1{bottom:838.811844pt;}
.ya1{bottom:838.811854pt;}
.y78{bottom:838.812499pt;}
.ye8{bottom:846.270827pt;}
.y1e{bottom:846.271324pt;}
.y89{bottom:846.271484pt;}
.y59{bottom:859.851560pt;}
.yc0{bottom:865.430987pt;}
.y77{bottom:865.431639pt;}
.ye7{bottom:872.889974pt;}
.y1d{bottom:872.890467pt;}
.y88{bottom:872.890627pt;}
.yb{bottom:875.246587pt;}
.y38{bottom:885.265628pt;}
.ybf{bottom:892.050131pt;}
.y76{bottom:892.050780pt;}
.ya0{bottom:892.050782pt;}
.y58{bottom:900.111980pt;}
.ya{bottom:917.965333pt;}
.ybe{bottom:918.669269pt;}
.y75{bottom:918.669920pt;}
.y9f{bottom:918.669922pt;}
.ye6{bottom:933.663411pt;}
.y1c{bottom:933.663899pt;}
.y37{bottom:933.664062pt;}
.y57{bottom:938.830730pt;}
.y9{bottom:941.740071pt;}
.ybd{bottom:945.288412pt;}
.y74{bottom:945.289063pt;}
.ybb{bottom:959.496745pt;}
.y4{bottom:959.497233pt;}
.y36{bottom:959.497396pt;}
.y1{bottom:990.333333pt;}
.hd{height:31.746093pt;}
.hf{height:35.492188pt;}
.h8{height:38.666668pt;}
.h5{height:42.739584pt;}
.he{height:49.492188pt;}
.h2{height:53.166668pt;}
.h10{height:53.238281pt;}
.h14{height:56.399733pt;}
.h3{height:57.869960pt;}
.h11{height:67.238281pt;}
.h12{height:70.984375pt;}
.h6{height:77.333336pt;}
.h9{height:96.666664pt;}
.h1{height:132.333333pt;}
.h13{height:144.664067pt;}
.h7{height:144.664387pt;}
.hb{height:144.664720pt;}
.ha{height:163.169271pt;}
.h4{height:163.169433pt;}
.hc{height:163.169921pt;}
.h0{height:1122.666667pt;}
.w4{width:127.000041pt;}
.w5{width:164.000000pt;}
.w2{width:173.999980pt;}
.w3{width:197.000000pt;}
.w1{width:794.000000pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x1c{left:3.404038pt;}
.x19{left:6.105476pt;}
.x18{left:11.000000pt;}
.x23{left:13.014954pt;}
.x1f{left:14.047653pt;}
.x1d{left:15.350060pt;}
.x12{left:18.000000pt;}
.x17{left:21.132545pt;}
.x1b{left:26.242073pt;}
.x1e{left:28.142014pt;}
.x16{left:30.088623pt;}
.x20{left:34.039368pt;}
.x1a{left:36.645470pt;}
.x22{left:37.971367pt;}
.x21{left:53.260826pt;}
.x25{left:56.733332pt;}
.xc{left:65.590556pt;}
.x11{left:74.590556pt;}
.x5{left:75.590556pt;}
.x6{left:99.590556pt;}
.x4{left:103.590556pt;}
.xd{left:111.590556pt;}
.x1{left:113.590556pt;}
.x9{left:132.590556pt;}
.xa{left:147.590556pt;}
.xb{left:171.590556pt;}
.xe{left:195.590556pt;}
.xf{left:219.590556pt;}
.x13{left:248.590533pt;}
.x8{left:268.590556pt;}
.x10{left:326.590556pt;}
.x14{left:445.590533pt;}
.x3{left:507.284286pt;}
.x15{left:572.590573pt;}
.x24{left:712.760176pt;}
.x7{left:719.029156pt;}
.x2{left:727.967446pt;}
}




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