
    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_235b18888bc6983622b36dac.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.171387;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_730d11c33e14f685bdc98d17.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.968000;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_310fadc02986d85ee7fd94b7.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_feab1200ffec352922d0bcfe.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.932129;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_318d16946a92d42f6d9a45d0.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.006348;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_5079398ad94afb2d3eff24e8.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.222000;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_4271b96750057519b20a3a27.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.737022;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_ad9bfdd8f1608262c354dd53.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.006348;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_8dc6d12a4cbb583f44056144.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.006348;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_417bb4ec6259eeb342b02efd.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;}
@font-face{font-family:ffb;src:url('chunks/assets/font_10630b32b59ef0e2cf2b4160.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.171387;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:ffc;src:url('chunks/assets/font_b78d230a8f7e3b9669862273.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.024000;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:ffd;src:url('chunks/assets/font_282ec9d763255d5b305e3893.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.978022;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:ffe;src:url('chunks/assets/font_b462d4bdd635580a17a43a94.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.978022;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:fff;src:url('chunks/assets/font_f47ea5f2e3fb68e3c1d2c3a7.woff2')format("woff");}.fff{font-family:fff;line-height:1.173000;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:ff10;src:url('chunks/assets/font_3c6fbcbab9fa09093e1e2924.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.961023;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:ff11;src:url('chunks/assets/font_c621fe9a774b30335d1d4dd1.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.978022;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:ff12;src:url('chunks/assets/font_8ee8b30c9ec94167ed2ed9fd.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.961023;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:ff13;src:url('chunks/assets/font_a74b3e68ab72732da6c4212e.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.173000;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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws0{word-spacing:-160.191706px;}
.ws2{word-spacing:-56.748524px;}
.ws5{word-spacing:-26.036266px;}
.ws1{word-spacing:-25.307665px;}
.ws9{word-spacing:-20.735458px;}
.ws7{word-spacing:-20.139365px;}
.ws6{word-spacing:-20.137311px;}
.ws4{word-spacing:-16.071634px;}
.ws8{word-spacing:-7.925190px;}
.ws3{word-spacing:0.000000px;}
._8{margin-left:-17.821425px;}
._9{margin-left:-3.294345px;}
._0{margin-left:-1.026505px;}
._4{width:2.409891px;}
._b{width:3.787682px;}
._6{width:5.642558px;}
._5{width:6.728552px;}
._2{width:7.804639px;}
._1{width:8.884964px;}
._3{width:9.960960px;}
._a{width:11.378246px;}
._e{width:12.783326px;}
._c{width:13.993797px;}
._7{width:14.996549px;}
._d{width:16.804038px;}
._f{width:18.082608px;}
._10{width:21.398416px;}
.fc1{color:transparent;}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:54.017149px;}
.fsa{font-size:63.485151px;}
.fsc{font-size:76.275001px;}
.fsb{font-size:88.245001px;}
.fs6{font-size:90.944992px;}
.fs2{font-size:97.424996px;}
.fs7{font-size:98.459991px;}
.fs3{font-size:113.497048px;}
.fs0{font-size:129.578778px;}
.fs8{font-size:129.599990px;}
.fs4{font-size:133.784994px;}
.fs9{font-size:179.999993px;}
.fs1{font-size:266.986177px;}
.y0{bottom:0.000000px;}
.y7{bottom:0.000005px;}
.y1b{bottom:4.090454px;}
.y3d{bottom:4.860090px;}
.yc{bottom:6.555590px;}
.y2{bottom:10.056508px;}
.y13{bottom:15.480005px;}
.y6{bottom:19.379976px;}
.y1a{bottom:22.933644px;}
.y3c{bottom:26.849010px;}
.y19{bottom:41.776835px;}
.y3b{bottom:48.837931px;}
.y18{bottom:60.620025px;}
.y3a{bottom:70.826851px;}
.y17{bottom:79.463215px;}
.y16{bottom:98.306406px;}
.y39{bottom:101.520001px;}
.yb{bottom:102.960001px;}
.y5{bottom:112.765445px;}
.y15{bottom:117.149596px;}
.y14{bottom:135.992787px;}
.ya{bottom:144.299658px;}
.y2c{bottom:164.700090px;}
.y9{bottom:178.049657px;}
.y59{bottom:189.564029px;}
.y2b{bottom:198.450089px;}
.y4{bottom:206.150915px;}
.y8{bottom:211.799655px;}
.y58{bottom:221.064028px;}
.y37{bottom:228.288166px;}
.y2a{bottom:232.200088px;}
.y4c{bottom:249.937020px;}
.y57{bottom:252.564027px;}
.y29{bottom:265.950086px;}
.y36{bottom:273.288164px;}
.y4b{bottom:281.437019px;}
.y56{bottom:284.064025px;}
.y28{bottom:299.700085px;}
.y3{bottom:309.599992px;}
.y4a{bottom:312.937018px;}
.y55{bottom:315.564024px;}
.y35{bottom:318.288162px;}
.y27{bottom:333.450083px;}
.y49{bottom:344.437016px;}
.y54{bottom:347.064023px;}
.y34{bottom:363.288160px;}
.y26{bottom:367.200082px;}
.y48{bottom:375.937015px;}
.y53{bottom:378.564021px;}
.y25{bottom:400.950080px;}
.y47{bottom:407.437014px;}
.y33{bottom:408.288158px;}
.y52{bottom:410.064020px;}
.y24{bottom:434.700079px;}
.y46{bottom:438.937013px;}
.y51{bottom:441.564019px;}
.y32{bottom:453.288156px;}
.y23{bottom:468.450078px;}
.y45{bottom:470.437011px;}
.y50{bottom:473.064017px;}
.y12{bottom:480.033272px;}
.y31{bottom:498.288154px;}
.y44{bottom:500.812010px;}
.y22{bottom:502.200076px;}
.y4f{bottom:504.564016px;}
.y11{bottom:526.158270px;}
.y21{bottom:535.950075px;}
.y4e{bottom:536.064015px;}
.y30{bottom:543.288153px;}
.y4d{bottom:566.439014px;}
.y20{bottom:569.700073px;}
.y10{bottom:572.283268px;}
.y2f{bottom:588.288151px;}
.y43{bottom:592.036551px;}
.y1f{bottom:603.450072px;}
.yf{bottom:618.408266px;}
.y42{bottom:623.536549px;}
.y5e{bottom:629.392446px;}
.y2e{bottom:633.288149px;}
.y1e{bottom:637.200071px;}
.y41{bottom:655.036548px;}
.y5d{bottom:655.267445px;}
.ye{bottom:664.533264px;}
.y2d{bottom:678.288147px;}
.y5c{bottom:681.142444px;}
.y40{bottom:686.536547px;}
.y1d{bottom:705.374971px;}
.y1{bottom:707.399976px;}
.y5b{bottom:708.142443px;}
.yd{bottom:710.658262px;}
.y3f{bottom:718.036546px;}
.y38{bottom:724.547865px;}
.y1c{bottom:736.874969px;}
.y5a{bottom:738.517442px;}
.y3e{bottom:748.411544px;}
.h8{height:31.319999px;}
.h2{height:44.279998px;}
.h13{height:45.583719px;}
.hc{height:51.964497px;}
.h16{height:63.361808px;}
.hd{height:65.300460px;}
.h14{height:65.300481px;}
.h17{height:73.452826px;}
.he{height:75.431507px;}
.h9{height:82.241025px;}
.h12{height:87.479996px;}
.h15{height:87.580027px;}
.h7{height:90.717513px;}
.hf{height:98.465617px;}
.ha{height:102.494461px;}
.h3{height:120.657583px;}
.h10{height:120.677335px;}
.h11{height:137.519994px;}
.hb{height:150.479994px;}
.h5{height:208.249218px;}
.h4{height:283.319988px;}
.h6{height:809.999966px;}
.h1{height:810.000000px;}
.h0{height:810.000002px;}
.w5{width:309.959987px;}
.w4{width:484.919980px;}
.w1{width:556.919977px;}
.w6{width:843.839965px;}
.w2{width:1138.319953px;}
.w3{width:1439.999940px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x2{left:1.410063px;}
.x13{left:5.935735px;}
.x14{left:14.903425px;}
.x4{left:17.905894px;}
.xe{left:23.207023px;}
.x16{left:29.820951px;}
.x3b{left:31.492362px;}
.x3a{left:35.341971px;}
.x2a{left:38.556726px;}
.xd{left:40.978507px;}
.x28{left:44.322350px;}
.xb{left:45.355459px;}
.x12{left:47.560048px;}
.x15{left:49.621022px;}
.x11{left:51.976421px;}
.x2d{left:59.527428px;}
.x38{left:60.672048px;}
.xc{left:62.037099px;}
.x3c{left:63.414235px;}
.x34{left:66.043375px;}
.xa{left:68.347646px;}
.x29{left:70.003990px;}
.x33{left:71.422281px;}
.x35{left:84.641031px;}
.x17{left:85.957955px;}
.x27{left:93.734458px;}
.x2c{left:97.039145px;}
.x2e{left:134.603597px;}
.x2b{left:145.009846px;}
.x37{left:153.994310px;}
.x41{left:156.121605px;}
.x3f{left:157.123558px;}
.x43{left:159.320824px;}
.x46{left:166.334495px;}
.x44{left:168.830589px;}
.x3{left:173.519993px;}
.x42{left:175.158714px;}
.x31{left:178.794528px;}
.x39{left:186.531418px;}
.x4c{left:202.723499px;}
.x4b{left:208.506702px;}
.x1f{left:237.196858px;}
.x1b{left:245.089436px;}
.x47{left:253.908711px;}
.x24{left:260.101154px;}
.x6{left:264.493840px;}
.x9{left:265.679989px;}
.x49{left:268.764512px;}
.x7{left:272.316105px;}
.x1c{left:277.696857px;}
.x32{left:280.358311px;}
.x30{left:285.119988px;}
.x36{left:289.004303px;}
.x2f{left:298.750768px;}
.x22{left:309.355058px;}
.x5{left:322.927989px;}
.xf{left:325.955057px;}
.x3e{left:334.258317px;}
.x3d{left:344.998214px;}
.x8{left:352.999696px;}
.x1d{left:375.659743px;}
.x45{left:410.547376px;}
.x1e{left:427.831616px;}
.x4d{left:449.045760px;}
.x23{left:457.028886px;}
.x21{left:462.284740px;}
.x25{left:486.542551px;}
.x1a{left:493.134353px;}
.x4a{left:499.424664px;}
.x20{left:511.292550px;}
.x48{left:525.244642px;}
.x40{left:543.420423px;}
.x18{left:563.411884px;}
.x1{left:580.679976px;}
.x26{left:585.166078px;}
.x19{left:614.740007px;}
.x10{left:1129.319953px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:-142.392628pt;}
.ws2{word-spacing:-50.443133pt;}
.ws5{word-spacing:-23.143347pt;}
.ws1{word-spacing:-22.495703pt;}
.ws9{word-spacing:-18.431518pt;}
.ws7{word-spacing:-17.901658pt;}
.ws6{word-spacing:-17.899832pt;}
.ws4{word-spacing:-14.285897pt;}
.ws8{word-spacing:-7.044614pt;}
.ws3{word-spacing:0.000000pt;}
._8{margin-left:-15.841267pt;}
._9{margin-left:-2.928307pt;}
._0{margin-left:-0.912449pt;}
._4{width:2.142125pt;}
._b{width:3.366828pt;}
._6{width:5.015607pt;}
._5{width:5.980935pt;}
._2{width:6.937457pt;}
._1{width:7.897746pt;}
._3{width:8.854186pt;}
._a{width:10.113997pt;}
._e{width:11.362956pt;}
._c{width:12.438931pt;}
._7{width:13.330266pt;}
._d{width:14.936923pt;}
._f{width:16.073429pt;}
._10{width:19.020814pt;}
.fs5{font-size:48.015243pt;}
.fsa{font-size:56.431245pt;}
.fsc{font-size:67.800001pt;}
.fsb{font-size:78.440001pt;}
.fs6{font-size:80.839993pt;}
.fs2{font-size:86.599996pt;}
.fs7{font-size:87.519992pt;}
.fs3{font-size:100.886265pt;}
.fs0{font-size:115.181136pt;}
.fs8{font-size:115.199991pt;}
.fs4{font-size:118.919995pt;}
.fs9{font-size:159.999993pt;}
.fs1{font-size:237.321046pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:0.000005pt;}
.y1b{bottom:3.635959pt;}
.y3d{bottom:4.320080pt;}
.yc{bottom:5.827191pt;}
.y2{bottom:8.939118pt;}
.y13{bottom:13.760004pt;}
.y6{bottom:17.226645pt;}
.y1a{bottom:20.385462pt;}
.y3c{bottom:23.865787pt;}
.y19{bottom:37.134964pt;}
.y3b{bottom:43.411494pt;}
.y18{bottom:53.884467pt;}
.y3a{bottom:62.957201pt;}
.y17{bottom:70.633969pt;}
.y16{bottom:87.383472pt;}
.y39{bottom:90.240001pt;}
.yb{bottom:91.520001pt;}
.y5{bottom:100.235951pt;}
.y15{bottom:104.132974pt;}
.y14{bottom:120.882477pt;}
.ya{bottom:128.266363pt;}
.y2c{bottom:146.400080pt;}
.y9{bottom:158.266361pt;}
.y59{bottom:168.501359pt;}
.y2b{bottom:176.400079pt;}
.y4{bottom:183.245258pt;}
.y8{bottom:188.266360pt;}
.y58{bottom:196.501358pt;}
.y37{bottom:202.922814pt;}
.y2a{bottom:206.400078pt;}
.y4c{bottom:222.166240pt;}
.y57{bottom:224.501357pt;}
.y29{bottom:236.400077pt;}
.y36{bottom:242.922812pt;}
.y4b{bottom:250.166239pt;}
.y56{bottom:252.501356pt;}
.y28{bottom:266.400075pt;}
.y3{bottom:275.199993pt;}
.y4a{bottom:278.166238pt;}
.y55{bottom:280.501355pt;}
.y35{bottom:282.922811pt;}
.y27{bottom:296.400074pt;}
.y49{bottom:306.166237pt;}
.y54{bottom:308.501354pt;}
.y34{bottom:322.922809pt;}
.y26{bottom:326.400073pt;}
.y48{bottom:334.166236pt;}
.y53{bottom:336.501352pt;}
.y25{bottom:356.400072pt;}
.y47{bottom:362.166235pt;}
.y33{bottom:362.922807pt;}
.y52{bottom:364.501351pt;}
.y24{bottom:386.400070pt;}
.y46{bottom:390.166233pt;}
.y51{bottom:392.501350pt;}
.y32{bottom:402.922806pt;}
.y23{bottom:416.400069pt;}
.y45{bottom:418.166232pt;}
.y50{bottom:420.501349pt;}
.y12{bottom:426.696241pt;}
.y31{bottom:442.922804pt;}
.y44{bottom:445.166231pt;}
.y22{bottom:446.400068pt;}
.y4f{bottom:448.501348pt;}
.y11{bottom:467.696240pt;}
.y21{bottom:476.400067pt;}
.y4e{bottom:476.501347pt;}
.y30{bottom:482.922802pt;}
.y4d{bottom:503.501345pt;}
.y20{bottom:506.400065pt;}
.y10{bottom:508.696238pt;}
.y2f{bottom:522.922801pt;}
.y43{bottom:526.254712pt;}
.y1f{bottom:536.400064pt;}
.yf{bottom:549.696236pt;}
.y42{bottom:554.254711pt;}
.y5e{bottom:559.459952pt;}
.y2e{bottom:562.922799pt;}
.y1e{bottom:566.400063pt;}
.y41{bottom:582.254709pt;}
.y5d{bottom:582.459951pt;}
.ye{bottom:590.696235pt;}
.y2d{bottom:602.922797pt;}
.y5c{bottom:605.459950pt;}
.y40{bottom:610.254708pt;}
.y1d{bottom:626.999974pt;}
.y1{bottom:628.799978pt;}
.y5b{bottom:629.459949pt;}
.yd{bottom:631.696233pt;}
.y3f{bottom:638.254707pt;}
.y38{bottom:644.042546pt;}
.y1c{bottom:654.999973pt;}
.y5a{bottom:656.459948pt;}
.y3e{bottom:665.254706pt;}
.h8{height:27.839999pt;}
.h2{height:39.359998pt;}
.h13{height:40.518861pt;}
.hc{height:46.190664pt;}
.h16{height:56.321607pt;}
.hd{height:58.044853pt;}
.h14{height:58.044872pt;}
.h17{height:65.291401pt;}
.he{height:67.050229pt;}
.h9{height:73.103134pt;}
.h12{height:77.759997pt;}
.h15{height:77.848913pt;}
.h7{height:80.637790pt;}
.hf{height:87.524993pt;}
.ha{height:91.106188pt;}
.h3{height:107.251185pt;}
.h10{height:107.268742pt;}
.h11{height:122.239995pt;}
.hb{height:133.759994pt;}
.h5{height:185.110416pt;}
.h4{height:251.839990pt;}
.h6{height:719.999970pt;}
.h1{height:720.000000pt;}
.h0{height:720.000001pt;}
.w5{width:275.519989pt;}
.w4{width:431.039982pt;}
.w1{width:495.039979pt;}
.w6{width:750.079969pt;}
.w2{width:1011.839958pt;}
.w3{width:1279.999947pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x2{left:1.253389pt;}
.x13{left:5.276209pt;}
.x14{left:13.247489pt;}
.x4{left:15.916350pt;}
.xe{left:20.628465pt;}
.x16{left:26.507512pt;}
.x3b{left:27.993211pt;}
.x3a{left:31.415085pt;}
.x2a{left:34.272645pt;}
.xd{left:36.425339pt;}
.x28{left:39.397645pt;}
.xb{left:40.315964pt;}
.x12{left:42.275598pt;}
.x15{left:44.107575pt;}
.x11{left:46.201263pt;}
.x2d{left:52.913269pt;}
.x38{left:53.930709pt;}
.xc{left:55.144088pt;}
.x3c{left:56.368209pt;}
.x34{left:58.705222pt;}
.xa{left:60.753463pt;}
.x29{left:62.225769pt;}
.x33{left:63.486472pt;}
.x35{left:75.236472pt;}
.x17{left:76.407071pt;}
.x27{left:83.319518pt;}
.x2c{left:86.257018pt;}
.x2e{left:119.647641pt;}
.x2b{left:128.897641pt;}
.x37{left:136.883831pt;}
.x41{left:138.774760pt;}
.x3f{left:139.665385pt;}
.x43{left:141.618510pt;}
.x46{left:147.852885pt;}
.x44{left:150.071635pt;}
.x3{left:154.239994pt;}
.x42{left:155.696635pt;}
.x31{left:158.928469pt;}
.x39{left:165.805705pt;}
.x4c{left:180.198666pt;}
.x4b{left:185.339290pt;}
.x1f{left:210.841652pt;}
.x1b{left:217.857277pt;}
.x47{left:225.696632pt;}
.x24{left:231.201026pt;}
.x6{left:235.105636pt;}
.x9{left:236.159990pt;}
.x49{left:238.901788pt;}
.x7{left:242.058760pt;}
.x1c{left:246.841650pt;}
.x32{left:249.207388pt;}
.x30{left:253.439989pt;}
.x36{left:256.892714pt;}
.x2f{left:265.556239pt;}
.x22{left:274.982274pt;}
.x5{left:287.047101pt;}
.xf{left:289.737829pt;}
.x3e{left:297.118504pt;}
.x3d{left:306.665079pt;}
.x8{left:313.777507pt;}
.x1d{left:333.919772pt;}
.x45{left:364.931001pt;}
.x1e{left:380.294770pt;}
.x4d{left:399.151787pt;}
.x23{left:406.247899pt;}
.x21{left:410.919768pt;}
.x25{left:432.482268pt;}
.x1a{left:438.341647pt;}
.x4a{left:443.933035pt;}
.x20{left:454.482267pt;}
.x48{left:466.884127pt;}
.x40{left:483.040376pt;}
.x18{left:500.810564pt;}
.x1{left:516.159978pt;}
.x26{left:520.147625pt;}
.x19{left:546.435562pt;}
.x10{left:1003.839958pt;}
}




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