
    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_facf4748e1c256c52cf5d841.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.977000;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_fe48de1ba3c2b8f2990a112e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.957000;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_0ec284ce1140f6d3df5c1adc.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.108000;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_e9ac9a2a25247502dbbf05ad.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.751000;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_bd133012e843b78b15374674.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.976000;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_0017ae822452848474ac0cd0.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.761719;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_08c57f4130bf235130e6ebed.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.903320;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_5376a472c9d0911edcfcaaf0.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.903320;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_900e1f682a5220bf7e4b5cba.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.000000;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_6a8f4c256c0ac9e01f7375cf.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.000000;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:180.000000px;}
.ls4{letter-spacing:-60.000000px;}
.ls1{letter-spacing:-46.500000px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:1.350000px;}
.ls0{letter-spacing:1.890000px;}
.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;}
}
.ws7{word-spacing:-79.167600px;}
.ws9{word-spacing:-30.375000px;}
.ws5{word-spacing:-17.280000px;}
.ws0{word-spacing:-14.400000px;}
.ws2{word-spacing:-1.008000px;}
.ws3{word-spacing:-0.720000px;}
.wsa{word-spacing:-0.300000px;}
.ws6{word-spacing:-0.144000px;}
.ws8{word-spacing:-0.120000px;}
.wsb{word-spacing:-0.060000px;}
.ws4{word-spacing:0.000000px;}
.ws1{word-spacing:46.500000px;}
.wsc{word-spacing:60.000000px;}
._9{margin-left:-2404.430304px;}
._1{margin-left:-45.570000px;}
._0{margin-left:-35.340000px;}
._7{margin-left:-7.902000px;}
._5{margin-left:-6.174000px;}
._4{margin-left:-4.662000px;}
._6{margin-left:-3.305400px;}
._3{margin-left:-1.764000px;}
._8{width:1.392000px;}
._b{width:3.280800px;}
._a{width:4.482000px;}
._2{width:46.500000px;}
.fc2{color:rgb(101,98,99);}
.fc3{color:rgb(16,15,13);}
.fc1{color:rgb(19,18,16);}
.fc5{color:rgb(255,255,255);}
.fc4{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fsc{font-size:37.968600px;}
.fsb{font-size:50.625000px;}
.fs8{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs7{font-size:66.445200px;}
.fs4{font-size:72.000000px;}
.fs6{font-size:72.773400px;}
.fsa{font-size:88.593600px;}
.fs2{font-size:90.000000px;}
.fs9{font-size:113.906400px;}
.fs1{font-size:126.000000px;}
.fs5{font-size:329.865000px;}
.fs0{font-size:930.000000px;}
.fsd{font-size:1200.000000px;}
.y0{bottom:0.000000px;}
.yad{bottom:1.019700px;}
.yaf{bottom:1.020600px;}
.y27{bottom:54.472500px;}
.y9{bottom:55.132500px;}
.yaa{bottom:58.290000px;}
.y92{bottom:70.334700px;}
.y8{bottom:71.250000px;}
.yc5{bottom:72.584700px;}
.ydb{bottom:75.440550px;}
.ya9{bottom:80.790000px;}
.y91{bottom:92.834700px;}
.yc7{bottom:95.084700px;}
.yda{bottom:97.940550px;}
.ya8{bottom:103.290000px;}
.y7{bottom:107.250000px;}
.y90{bottom:115.334700px;}
.yc4{bottom:117.584700px;}
.yd8{bottom:120.440550px;}
.y6{bottom:125.250000px;}
.ya7{bottom:125.790000px;}
.y100{bottom:137.737500px;}
.y8f{bottom:137.834700px;}
.yc3{bottom:140.084700px;}
.yd7{bottom:142.940550px;}
.y5{bottom:143.250000px;}
.ya6{bottom:148.290000px;}
.yff{bottom:159.937350px;}
.y8e{bottom:160.334700px;}
.yc6{bottom:162.584700px;}
.yd6{bottom:165.440550px;}
.ya5{bottom:170.790000px;}
.y4{bottom:178.305000px;}
.y3d{bottom:180.007350px;}
.y8d{bottom:182.834700px;}
.y67{bottom:185.084700px;}
.yd9{bottom:187.940550px;}
.ya4{bottom:193.290000px;}
.yfe{bottom:202.957350px;}
.y8c{bottom:205.334700px;}
.y66{bottom:207.584700px;}
.yd5{bottom:210.440550px;}
.ya3{bottom:215.790000px;}
.y3c{bottom:219.007350px;}
.ybe{bottom:227.834700px;}
.y65{bottom:230.084700px;}
.yd4{bottom:232.940550px;}
.yab{bottom:238.290000px;}
.y3b{bottom:238.507350px;}
.y8b{bottom:250.334700px;}
.y64{bottom:252.584700px;}
.yd3{bottom:255.440550px;}
.y3a{bottom:258.007350px;}
.ya2{bottom:260.790000px;}
.ybd{bottom:272.834700px;}
.yc2{bottom:275.084700px;}
.y39{bottom:277.507350px;}
.yd2{bottom:277.940550px;}
.ya1{bottom:283.290000px;}
.y8a{bottom:295.334700px;}
.y38{bottom:297.007350px;}
.y63{bottom:297.584700px;}
.yd1{bottom:300.440550px;}
.ya0{bottom:305.790000px;}
.y89{bottom:317.834700px;}
.y62{bottom:320.084700px;}
.yd0{bottom:322.940550px;}
.y9f{bottom:328.290000px;}
.y37{bottom:336.007350px;}
.y88{bottom:340.334700px;}
.y61{bottom:342.584700px;}
.ycf{bottom:345.440550px;}
.y9e{bottom:350.790000px;}
.y35{bottom:355.507350px;}
.y87{bottom:362.834700px;}
.y60{bottom:365.084700px;}
.yce{bottom:367.940550px;}
.y9d{bottom:373.290000px;}
.y34{bottom:375.007350px;}
.y86{bottom:385.334700px;}
.y5f{bottom:387.584700px;}
.ycd{bottom:390.440550px;}
.y33{bottom:394.507350px;}
.y9c{bottom:395.790000px;}
.y85{bottom:407.834700px;}
.y5e{bottom:410.084700px;}
.ycc{bottom:412.940550px;}
.y32{bottom:414.007350px;}
.y9b{bottom:418.290000px;}
.y84{bottom:430.334700px;}
.y5d{bottom:432.584700px;}
.y31{bottom:433.507350px;}
.ycb{bottom:435.440550px;}
.y9a{bottom:440.790000px;}
.y83{bottom:452.834700px;}
.y30{bottom:453.007350px;}
.y5c{bottom:455.084700px;}
.yca{bottom:457.940550px;}
.y26{bottom:462.734700px;}
.y99{bottom:463.290000px;}
.y2f{bottom:472.507350px;}
.y82{bottom:475.334700px;}
.y5b{bottom:477.584700px;}
.yc9{bottom:480.440550px;}
.y25{bottom:484.334700px;}
.y98{bottom:485.790000px;}
.y36{bottom:492.007350px;}
.y81{bottom:497.834700px;}
.y5a{bottom:500.084700px;}
.yc8{bottom:502.940550px;}
.y97{bottom:508.290000px;}
.y2e{bottom:511.507350px;}
.y80{bottom:520.334700px;}
.y59{bottom:522.584700px;}
.y24{bottom:527.534700px;}
.y96{bottom:530.790000px;}
.y2d{bottom:531.007350px;}
.y7f{bottom:542.834700px;}
.y58{bottom:545.084700px;}
.yfb{bottom:549.292350px;}
.y2c{bottom:550.507350px;}
.y95{bottom:553.290000px;}
.y7e{bottom:565.334700px;}
.yfa{bottom:565.492350px;}
.y57{bottom:567.584700px;}
.y2b{bottom:570.007350px;}
.y94{bottom:575.790000px;}
.yf9{bottom:581.692350px;}
.ybc{bottom:587.834700px;}
.y2a{bottom:589.507350px;}
.y56{bottom:590.084700px;}
.y23{bottom:593.234700px;}
.y93{bottom:598.290000px;}
.y29{bottom:609.007350px;}
.y7d{bottom:610.334700px;}
.y55{bottom:612.584700px;}
.yec{bottom:616.323862px;}
.y28{bottom:628.507350px;}
.yeb{bottom:630.878550px;}
.y22{bottom:632.834700px;}
.y54{bottom:635.084700px;}
.yea{bottom:645.433237px;}
.yb9{bottom:648.532350px;}
.y7c{bottom:655.334700px;}
.y53{bottom:657.584700px;}
.ye9{bottom:659.987925px;}
.yb8{bottom:664.732350px;}
.ye8{bottom:674.542612px;}
.y21{bottom:676.934700px;}
.y7b{bottom:677.834700px;}
.y52{bottom:680.084700px;}
.ye7{bottom:689.097300px;}
.yb7{bottom:696.277446px;}
.y20{bottom:698.534700px;}
.y7a{bottom:700.334700px;}
.y51{bottom:702.584700px;}
.yb6{bottom:715.264162px;}
.y3{bottom:718.109550px;}
.y1f{bottom:720.134700px;}
.yb5{bottom:720.446887px;}
.y79{bottom:722.834700px;}
.yc1{bottom:725.084700px;}
.y1e{bottom:741.734700px;}
.y78{bottom:745.334700px;}
.y50{bottom:747.584700px;}
.y1d{bottom:763.334700px;}
.yae{bottom:766.092000px;}
.ybb{bottom:767.834700px;}
.y4f{bottom:770.084700px;}
.yb0{bottom:770.328000px;}
.y1c{bottom:784.934700px;}
.ydf{bottom:786.723300px;}
.y77{bottom:790.334700px;}
.y4e{bottom:792.584700px;}
.y1b{bottom:806.534700px;}
.y2{bottom:811.042350px;}
.y76{bottom:812.834700px;}
.y4d{bottom:815.084700px;}
.y1a{bottom:828.134700px;}
.y75{bottom:835.334700px;}
.y4c{bottom:837.584700px;}
.y19{bottom:849.734550px;}
.y74{bottom:857.834700px;}
.y4b{bottom:860.084700px;}
.y18{bottom:871.334700px;}
.y73{bottom:880.334700px;}
.y4a{bottom:882.584700px;}
.yb2{bottom:888.231065px;}
.y17{bottom:892.934700px;}
.yf8{bottom:902.165269px;}
.yba{bottom:902.834700px;}
.y49{bottom:905.084700px;}
.yb1{bottom:908.789550px;}
.y16{bottom:914.534700px;}
.yf7{bottom:916.719956px;}
.ydd{bottom:920.398753px;}
.y72{bottom:925.334700px;}
.y48{bottom:927.584700px;}
.yf6{bottom:931.274644px;}
.y15{bottom:936.134700px;}
.yf5{bottom:945.829331px;}
.y71{bottom:947.834700px;}
.y47{bottom:950.084700px;}
.ydc{bottom:952.833600px;}
.y14{bottom:957.734550px;}
.yf4{bottom:960.384019px;}
.y70{bottom:970.334700px;}
.yc0{bottom:972.584700px;}
.yf3{bottom:974.938706px;}
.ye6{bottom:976.834125px;}
.y13{bottom:979.334700px;}
.yf2{bottom:989.493394px;}
.ye5{bottom:991.388812px;}
.y6f{bottom:992.834700px;}
.y46{bottom:995.084700px;}
.y1{bottom:997.042350px;}
.y12{bottom:1000.934700px;}
.yf1{bottom:1004.048081px;}
.ye4{bottom:1005.943500px;}
.y6e{bottom:1015.334700px;}
.y45{bottom:1017.584700px;}
.yf0{bottom:1018.602769px;}
.ye3{bottom:1020.498187px;}
.y11{bottom:1022.534700px;}
.yef{bottom:1033.157456px;}
.ye2{bottom:1035.052875px;}
.y6d{bottom:1037.834700px;}
.y44{bottom:1040.084700px;}
.y10{bottom:1044.134700px;}
.yee{bottom:1047.712144px;}
.ye1{bottom:1049.607562px;}
.y6c{bottom:1060.334700px;}
.yed{bottom:1062.266831px;}
.y43{bottom:1062.584700px;}
.ye0{bottom:1064.162250px;}
.yf{bottom:1065.734550px;}
.y6b{bottom:1082.834700px;}
.y42{bottom:1085.084700px;}
.ye{bottom:1087.334700px;}
.yb4{bottom:1094.417084px;}
.y6a{bottom:1105.334700px;}
.y41{bottom:1107.584700px;}
.yd{bottom:1108.934700px;}
.yb3{bottom:1113.403800px;}
.y69{bottom:1127.834700px;}
.y40{bottom:1130.084700px;}
.yc{bottom:1130.534700px;}
.y68{bottom:1150.334700px;}
.yb{bottom:1152.134700px;}
.y3e{bottom:1152.584700px;}
.yac{bottom:1158.585000px;}
.yde{bottom:1171.551750px;}
.y3f{bottom:1175.084700px;}
.yfc{bottom:1187.617350px;}
.yfd{bottom:1193.617350px;}
.ya{bottom:1195.334700px;}
.ybf{bottom:1197.584700px;}
.hb{height:18.984000px;}
.hd{height:18.985500px;}
.h13{height:35.546265px;}
.ha{height:44.340000px;}
.h6{height:44.580000px;}
.hf{height:46.654393px;}
.h10{height:47.034000px;}
.h17{height:48.000000px;}
.he{height:51.097729px;}
.h5{height:52.260000px;}
.h7{height:53.280000px;}
.hc{height:53.975974px;}
.h16{height:54.000000px;}
.h12{height:62.205858px;}
.h8{height:62.712000px;}
.h4{height:64.800000px;}
.h15{height:67.500000px;}
.h11{height:79.979201px;}
.h3{height:90.720000px;}
.h9{height:287.312415px;}
.h2{height:688.200000px;}
.h14{height:900.000000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:239.496000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:21.686700px;}
.xb{left:22.695450px;}
.x1f{left:28.913400px;}
.x5{left:39.713400px;}
.x11{left:51.450341px;}
.x4{left:52.545000px;}
.x3{left:54.220200px;}
.x1{left:55.848000px;}
.x2{left:66.893550px;}
.x16{left:96.199650px;}
.x1a{left:128.250000px;}
.x8{left:129.863100px;}
.x12{left:131.201193px;}
.xe{left:204.639750px;}
.x9{left:315.798000px;}
.x17{left:366.610650px;}
.x14{left:374.170950px;}
.xf{left:379.091623px;}
.x13{left:389.050350px;}
.xd{left:397.332750px;}
.x1e{left:406.553400px;}
.x7{left:455.456700px;}
.x1b{left:529.706700px;}
.x10{left:536.649803px;}
.xc{left:551.479500px;}
.x15{left:620.837681px;}
.x1d{left:667.913400px;}
.x18{left:679.232681px;}
.x1c{left:854.168700px;}
.x19{left:855.713700px;}
.x6{left:857.648550px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:160.000000pt;}
.ls4{letter-spacing:-53.333333pt;}
.ls1{letter-spacing:-41.333333pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:1.200000pt;}
.ls0{letter-spacing:1.680000pt;}
.ws7{word-spacing:-70.371200pt;}
.ws9{word-spacing:-27.000000pt;}
.ws5{word-spacing:-15.360000pt;}
.ws0{word-spacing:-12.800000pt;}
.ws2{word-spacing:-0.896000pt;}
.ws3{word-spacing:-0.640000pt;}
.wsa{word-spacing:-0.266667pt;}
.ws6{word-spacing:-0.128000pt;}
.ws8{word-spacing:-0.106667pt;}
.wsb{word-spacing:-0.053333pt;}
.ws4{word-spacing:0.000000pt;}
.ws1{word-spacing:41.333333pt;}
.wsc{word-spacing:53.333333pt;}
._9{margin-left:-2137.271381pt;}
._1{margin-left:-40.506667pt;}
._0{margin-left:-31.413333pt;}
._7{margin-left:-7.024000pt;}
._5{margin-left:-5.488000pt;}
._4{margin-left:-4.144000pt;}
._6{margin-left:-2.938133pt;}
._3{margin-left:-1.568000pt;}
._8{width:1.237333pt;}
._b{width:2.916267pt;}
._a{width:3.984000pt;}
._2{width:41.333333pt;}
.fsc{font-size:33.749867pt;}
.fsb{font-size:45.000000pt;}
.fs8{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs7{font-size:59.062400pt;}
.fs4{font-size:64.000000pt;}
.fs6{font-size:64.687467pt;}
.fsa{font-size:78.749867pt;}
.fs2{font-size:80.000000pt;}
.fs9{font-size:101.250133pt;}
.fs1{font-size:112.000000pt;}
.fs5{font-size:293.213333pt;}
.fs0{font-size:826.666667pt;}
.fsd{font-size:1066.666667pt;}
.y0{bottom:0.000000pt;}
.yad{bottom:0.906400pt;}
.yaf{bottom:0.907200pt;}
.y27{bottom:48.420000pt;}
.y9{bottom:49.006667pt;}
.yaa{bottom:51.813333pt;}
.y92{bottom:62.519733pt;}
.y8{bottom:63.333333pt;}
.yc5{bottom:64.519733pt;}
.ydb{bottom:67.058267pt;}
.ya9{bottom:71.813333pt;}
.y91{bottom:82.519733pt;}
.yc7{bottom:84.519733pt;}
.yda{bottom:87.058267pt;}
.ya8{bottom:91.813333pt;}
.y7{bottom:95.333333pt;}
.y90{bottom:102.519733pt;}
.yc4{bottom:104.519733pt;}
.yd8{bottom:107.058267pt;}
.y6{bottom:111.333333pt;}
.ya7{bottom:111.813333pt;}
.y100{bottom:122.433333pt;}
.y8f{bottom:122.519733pt;}
.yc3{bottom:124.519733pt;}
.yd7{bottom:127.058267pt;}
.y5{bottom:127.333333pt;}
.ya6{bottom:131.813333pt;}
.yff{bottom:142.166533pt;}
.y8e{bottom:142.519733pt;}
.yc6{bottom:144.519733pt;}
.yd6{bottom:147.058267pt;}
.ya5{bottom:151.813333pt;}
.y4{bottom:158.493333pt;}
.y3d{bottom:160.006533pt;}
.y8d{bottom:162.519733pt;}
.y67{bottom:164.519733pt;}
.yd9{bottom:167.058267pt;}
.ya4{bottom:171.813333pt;}
.yfe{bottom:180.406533pt;}
.y8c{bottom:182.519733pt;}
.y66{bottom:184.519733pt;}
.yd5{bottom:187.058267pt;}
.ya3{bottom:191.813333pt;}
.y3c{bottom:194.673200pt;}
.ybe{bottom:202.519733pt;}
.y65{bottom:204.519733pt;}
.yd4{bottom:207.058267pt;}
.yab{bottom:211.813333pt;}
.y3b{bottom:212.006533pt;}
.y8b{bottom:222.519733pt;}
.y64{bottom:224.519733pt;}
.yd3{bottom:227.058267pt;}
.y3a{bottom:229.339867pt;}
.ya2{bottom:231.813333pt;}
.ybd{bottom:242.519733pt;}
.yc2{bottom:244.519733pt;}
.y39{bottom:246.673200pt;}
.yd2{bottom:247.058267pt;}
.ya1{bottom:251.813333pt;}
.y8a{bottom:262.519733pt;}
.y38{bottom:264.006533pt;}
.y63{bottom:264.519733pt;}
.yd1{bottom:267.058267pt;}
.ya0{bottom:271.813333pt;}
.y89{bottom:282.519733pt;}
.y62{bottom:284.519733pt;}
.yd0{bottom:287.058267pt;}
.y9f{bottom:291.813333pt;}
.y37{bottom:298.673200pt;}
.y88{bottom:302.519733pt;}
.y61{bottom:304.519733pt;}
.ycf{bottom:307.058267pt;}
.y9e{bottom:311.813333pt;}
.y35{bottom:316.006533pt;}
.y87{bottom:322.519733pt;}
.y60{bottom:324.519733pt;}
.yce{bottom:327.058267pt;}
.y9d{bottom:331.813333pt;}
.y34{bottom:333.339867pt;}
.y86{bottom:342.519733pt;}
.y5f{bottom:344.519733pt;}
.ycd{bottom:347.058267pt;}
.y33{bottom:350.673200pt;}
.y9c{bottom:351.813333pt;}
.y85{bottom:362.519733pt;}
.y5e{bottom:364.519733pt;}
.ycc{bottom:367.058267pt;}
.y32{bottom:368.006533pt;}
.y9b{bottom:371.813333pt;}
.y84{bottom:382.519733pt;}
.y5d{bottom:384.519733pt;}
.y31{bottom:385.339867pt;}
.ycb{bottom:387.058267pt;}
.y9a{bottom:391.813333pt;}
.y83{bottom:402.519733pt;}
.y30{bottom:402.673200pt;}
.y5c{bottom:404.519733pt;}
.yca{bottom:407.058267pt;}
.y26{bottom:411.319733pt;}
.y99{bottom:411.813333pt;}
.y2f{bottom:420.006533pt;}
.y82{bottom:422.519733pt;}
.y5b{bottom:424.519733pt;}
.yc9{bottom:427.058267pt;}
.y25{bottom:430.519733pt;}
.y98{bottom:431.813333pt;}
.y36{bottom:437.339867pt;}
.y81{bottom:442.519733pt;}
.y5a{bottom:444.519733pt;}
.yc8{bottom:447.058267pt;}
.y97{bottom:451.813333pt;}
.y2e{bottom:454.673200pt;}
.y80{bottom:462.519733pt;}
.y59{bottom:464.519733pt;}
.y24{bottom:468.919733pt;}
.y96{bottom:471.813333pt;}
.y2d{bottom:472.006533pt;}
.y7f{bottom:482.519733pt;}
.y58{bottom:484.519733pt;}
.yfb{bottom:488.259867pt;}
.y2c{bottom:489.339867pt;}
.y95{bottom:491.813333pt;}
.y7e{bottom:502.519733pt;}
.yfa{bottom:502.659867pt;}
.y57{bottom:504.519733pt;}
.y2b{bottom:506.673200pt;}
.y94{bottom:511.813333pt;}
.yf9{bottom:517.059867pt;}
.ybc{bottom:522.519733pt;}
.y2a{bottom:524.006533pt;}
.y56{bottom:524.519733pt;}
.y23{bottom:527.319733pt;}
.y93{bottom:531.813333pt;}
.y29{bottom:541.339867pt;}
.y7d{bottom:542.519733pt;}
.y55{bottom:544.519733pt;}
.yec{bottom:547.843433pt;}
.y28{bottom:558.673200pt;}
.yeb{bottom:560.780933pt;}
.y22{bottom:562.519733pt;}
.y54{bottom:564.519733pt;}
.yea{bottom:573.718433pt;}
.yb9{bottom:576.473200pt;}
.y7c{bottom:582.519733pt;}
.y53{bottom:584.519733pt;}
.ye9{bottom:586.655933pt;}
.yb8{bottom:590.873200pt;}
.ye8{bottom:599.593433pt;}
.y21{bottom:601.719733pt;}
.y7b{bottom:602.519733pt;}
.y52{bottom:604.519733pt;}
.ye7{bottom:612.530933pt;}
.yb7{bottom:618.913285pt;}
.y20{bottom:620.919733pt;}
.y7a{bottom:622.519733pt;}
.y51{bottom:624.519733pt;}
.yb6{bottom:635.790366pt;}
.y3{bottom:638.319600pt;}
.y1f{bottom:640.119733pt;}
.yb5{bottom:640.397233pt;}
.y79{bottom:642.519733pt;}
.yc1{bottom:644.519733pt;}
.y1e{bottom:659.319733pt;}
.y78{bottom:662.519733pt;}
.y50{bottom:664.519733pt;}
.y1d{bottom:678.519733pt;}
.yae{bottom:680.970667pt;}
.ybb{bottom:682.519733pt;}
.y4f{bottom:684.519733pt;}
.yb0{bottom:684.736000pt;}
.y1c{bottom:697.719733pt;}
.ydf{bottom:699.309600pt;}
.y77{bottom:702.519733pt;}
.y4e{bottom:704.519733pt;}
.y1b{bottom:716.919733pt;}
.y2{bottom:720.926533pt;}
.y76{bottom:722.519733pt;}
.y4d{bottom:724.519733pt;}
.y1a{bottom:736.119733pt;}
.y75{bottom:742.519733pt;}
.y4c{bottom:744.519733pt;}
.y19{bottom:755.319600pt;}
.y74{bottom:762.519733pt;}
.y4b{bottom:764.519733pt;}
.y18{bottom:774.519733pt;}
.y73{bottom:782.519733pt;}
.y4a{bottom:784.519733pt;}
.yb2{bottom:789.538724pt;}
.y17{bottom:793.719733pt;}
.yf8{bottom:801.924683pt;}
.yba{bottom:802.519733pt;}
.y49{bottom:804.519733pt;}
.yb1{bottom:807.812933pt;}
.y16{bottom:812.919733pt;}
.yf7{bottom:814.862183pt;}
.ydd{bottom:818.132225pt;}
.y72{bottom:822.519733pt;}
.y48{bottom:824.519733pt;}
.yf6{bottom:827.799683pt;}
.y15{bottom:832.119733pt;}
.yf5{bottom:840.737183pt;}
.y71{bottom:842.519733pt;}
.y47{bottom:844.519733pt;}
.ydc{bottom:846.963200pt;}
.y14{bottom:851.319600pt;}
.yf4{bottom:853.674683pt;}
.y70{bottom:862.519733pt;}
.yc0{bottom:864.519733pt;}
.yf3{bottom:866.612183pt;}
.ye6{bottom:868.297000pt;}
.y13{bottom:870.519733pt;}
.yf2{bottom:879.549683pt;}
.ye5{bottom:881.234500pt;}
.y6f{bottom:882.519733pt;}
.y46{bottom:884.519733pt;}
.y1{bottom:886.259867pt;}
.y12{bottom:889.719733pt;}
.yf1{bottom:892.487183pt;}
.ye4{bottom:894.172000pt;}
.y6e{bottom:902.519733pt;}
.y45{bottom:904.519733pt;}
.yf0{bottom:905.424683pt;}
.ye3{bottom:907.109500pt;}
.y11{bottom:908.919733pt;}
.yef{bottom:918.362183pt;}
.ye2{bottom:920.047000pt;}
.y6d{bottom:922.519733pt;}
.y44{bottom:924.519733pt;}
.y10{bottom:928.119733pt;}
.yee{bottom:931.299683pt;}
.ye1{bottom:932.984500pt;}
.y6c{bottom:942.519733pt;}
.yed{bottom:944.237183pt;}
.y43{bottom:944.519733pt;}
.ye0{bottom:945.922000pt;}
.yf{bottom:947.319600pt;}
.y6b{bottom:962.519733pt;}
.y42{bottom:964.519733pt;}
.ye{bottom:966.519733pt;}
.yb4{bottom:972.815186pt;}
.y6a{bottom:982.519733pt;}
.y41{bottom:984.519733pt;}
.yd{bottom:985.719733pt;}
.yb3{bottom:989.692267pt;}
.y69{bottom:1002.519733pt;}
.y40{bottom:1004.519733pt;}
.yc{bottom:1004.919733pt;}
.y68{bottom:1022.519733pt;}
.yb{bottom:1024.119733pt;}
.y3e{bottom:1024.519733pt;}
.yac{bottom:1029.853333pt;}
.yde{bottom:1041.379333pt;}
.y3f{bottom:1044.519733pt;}
.yfc{bottom:1055.659867pt;}
.yfd{bottom:1060.993200pt;}
.ya{bottom:1062.519733pt;}
.ybf{bottom:1064.519733pt;}
.hb{height:16.874667pt;}
.hd{height:16.876000pt;}
.h13{height:31.596680pt;}
.ha{height:39.413333pt;}
.h6{height:39.626667pt;}
.hf{height:41.470572pt;}
.h10{height:41.808000pt;}
.h17{height:42.666667pt;}
.he{height:45.420204pt;}
.h5{height:46.453333pt;}
.h7{height:47.360000pt;}
.hc{height:47.978643pt;}
.h16{height:48.000000pt;}
.h12{height:55.294096pt;}
.h8{height:55.744000pt;}
.h4{height:57.600000pt;}
.h15{height:60.000000pt;}
.h11{height:71.092623pt;}
.h3{height:80.640000pt;}
.h9{height:255.388813pt;}
.h2{height:611.733333pt;}
.h14{height:800.000000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:212.885333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:19.277067pt;}
.xb{left:20.173733pt;}
.x1f{left:25.700800pt;}
.x5{left:35.300800pt;}
.x11{left:45.733637pt;}
.x4{left:46.706667pt;}
.x3{left:48.195733pt;}
.x1{left:49.642667pt;}
.x2{left:59.460933pt;}
.x16{left:85.510800pt;}
.x1a{left:114.000000pt;}
.x8{left:115.433867pt;}
.x12{left:116.623282pt;}
.xe{left:181.902000pt;}
.x9{left:280.709333pt;}
.x17{left:325.876133pt;}
.x14{left:332.596400pt;}
.xf{left:336.970331pt;}
.x13{left:345.822533pt;}
.xd{left:353.184667pt;}
.x1e{left:361.380800pt;}
.x7{left:404.850400pt;}
.x1b{left:470.850400pt;}
.x10{left:477.022047pt;}
.xc{left:490.204000pt;}
.x15{left:551.855716pt;}
.x1d{left:593.700800pt;}
.x18{left:603.762383pt;}
.x1c{left:759.261067pt;}
.x19{left:760.634400pt;}
.x6{left:762.354267pt;}
}




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