
    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_e2fa240c9c73699cc4a8366a.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910156;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_d80f300bf6585aa6c41d4607.woff')format("woff");}.ff2{font-family:ff2;line-height:0.910645;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_bd2327c709bbca3fe0c15f27.woff')format("woff");}.ff3{font-family:ff3;line-height:0.967285;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_23aebe74c1b12f15bd765882.woff')format("woff");}.ff4{font-family:ff4;line-height:0.681641;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_070ed96587c5b6265379bf33.woff')format("woff");}.ff5{font-family:ff5;line-height:0.831543;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_1652a8d6221c62fa1db75a83.woff')format("woff");}.ff6{font-family:ff6;line-height:0.927000;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_06ff122478677e38b8ec0805.woff')format("woff");}.ff7{font-family:ff7;line-height:0.893555;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_18960e0973fe40d4685c6016.woff')format("woff");}.ff8{font-family:ff8;line-height:0.943359;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_2c8e610cb700d702f666c121.woff')format("woff");}.ff9{font-family:ff9;line-height:0.967285;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_d3c3b370e290e0f4f423c56e.woff')format("woff");}.ffa{font-family:ffa;line-height:0.692383;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_2bc377ff4501f05259c8beb0.woff')format("woff");}.ffb{font-family:ffb;line-height:0.967285;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_55d30f664dec3c22e91b0088.woff')format("woff");}.ffc{font-family:ffc;line-height:0.893555;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.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,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);}
.m2{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;}
.v2{vertical-align:19.980000px;}
.v1{vertical-align:23.976000px;}
.ls9{letter-spacing:-4.968000px;}
.ls7{letter-spacing:-1.200000px;}
.ls8{letter-spacing:-0.699600px;}
.ls3{letter-spacing:-0.612000px;}
.ls5{letter-spacing:-0.540000px;}
.ls4{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.000600px;}
.lsa{letter-spacing:0.009000px;}
.ls2{letter-spacing:0.600000px;}
.ls1{letter-spacing:1.200000px;}
.ls6{letter-spacing:10.378200px;}
.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;}
}
.ws4{word-spacing:-54.000000px;}
.ws8{word-spacing:-16.200000px;}
.ws9{word-spacing:-15.600000px;}
.ws14{word-spacing:-15.000000px;}
.ws3{word-spacing:-14.085000px;}
.ws25{word-spacing:-13.800000px;}
.ws7{word-spacing:-13.500000px;}
.ws1{word-spacing:-13.146000px;}
.ws0{word-spacing:-13.138488px;}
.ws2{word-spacing:-12.000000px;}
.ws13{word-spacing:-8.745000px;}
.ws1e{word-spacing:-8.532000px;}
.ws12{word-spacing:-8.045400px;}
.ws16{word-spacing:-5.760000px;}
.ws1d{word-spacing:-3.942000px;}
.ws2b{word-spacing:-2.322000px;}
.ws11{word-spacing:-1.738800px;}
.ws24{word-spacing:-1.458000px;}
.ws10{word-spacing:-1.360800px;}
.wsd{word-spacing:-1.200000px;}
.wse{word-spacing:-0.600000px;}
.ws28{word-spacing:-0.486000px;}
.ws5{word-spacing:-0.054000px;}
.ws1c{word-spacing:-0.045000px;}
.wsb{word-spacing:0.000000px;}
.ws6{word-spacing:0.486000px;}
.wsa{word-spacing:0.612000px;}
.ws15{word-spacing:1.200000px;}
.ws2c{word-spacing:1.536000px;}
.wsc{word-spacing:1.620000px;}
.ws22{word-spacing:1.800000px;}
.ws19{word-spacing:4.020000px;}
.ws27{word-spacing:5.220000px;}
.ws1f{word-spacing:5.580000px;}
.ws21{word-spacing:6.000000px;}
.ws20{word-spacing:6.600000px;}
.ws23{word-spacing:6.960000px;}
.ws2e{word-spacing:7.200000px;}
.wsf{word-spacing:8.280000px;}
.ws1a{word-spacing:10.860000px;}
.ws2d{word-spacing:14.976000px;}
.ws26{word-spacing:16.200000px;}
.ws29{word-spacing:16.320000px;}
.ws17{word-spacing:18.300000px;}
.ws18{word-spacing:18.960000px;}
.ws1b{word-spacing:20.400000px;}
.ws2a{word-spacing:29.820000px;}
._13{margin-left:-2823.150600px;}
._3{margin-left:-7.788600px;}
._9{margin-left:-5.928000px;}
._6{margin-left:-4.773600px;}
._1{margin-left:-3.523200px;}
._5{margin-left:-2.076600px;}
._2{margin-left:-1.060800px;}
._0{width:1.550400px;}
._4{width:3.033600px;}
._7{width:4.087800px;}
._e{width:5.386200px;}
._d{width:6.984000px;}
._11{width:8.946000px;}
._b{width:10.068000px;}
._a{width:11.958000px;}
._12{width:13.064400px;}
._1d{width:15.038400px;}
._c{width:16.446000px;}
._10{width:17.538000px;}
._14{width:19.219800px;}
._17{width:20.378400px;}
._f{width:21.468000px;}
._15{width:22.768200px;}
._18{width:24.523800px;}
._1a{width:28.626000px;}
._8{width:29.760000px;}
._1e{width:33.259200px;}
._16{width:37.302000px;}
._1c{width:40.262400px;}
._1b{width:42.043200px;}
._19{width:55.362000px;}
.fc1{color:rgb(11,61,105);}
.fc0{color:rgb(35,31,32);}
.fsa{font-size:34.980000px;}
.fs9{font-size:37.800000px;}
.fs2{font-size:41.976000px;}
.fs3{font-size:42.000000px;}
.fs5{font-size:45.000000px;}
.fs4{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs8{font-size:60.000000px;}
.fs1{font-size:72.000000px;}
.fs7{font-size:84.000000px;}
.fs0{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y29{bottom:65.028150px;}
.y2a{bottom:77.089500px;}
.y28{bottom:77.628300px;}
.y58{bottom:113.811000px;}
.y72{bottom:113.811150px;}
.y25{bottom:131.811000px;}
.y71{bottom:131.811150px;}
.y24{bottom:149.811000px;}
.y70{bottom:149.811150px;}
.y23{bottom:167.811000px;}
.y6f{bottom:167.811150px;}
.y22{bottom:185.811000px;}
.y6e{bottom:185.811150px;}
.y21{bottom:203.811000px;}
.y6d{bottom:203.811150px;}
.y7b{bottom:220.847250px;}
.y20{bottom:221.811000px;}
.y6c{bottom:221.811150px;}
.y57{bottom:226.091400px;}
.y1f{bottom:239.811000px;}
.y6b{bottom:239.811150px;}
.y78{bottom:240.361800px;}
.y56{bottom:244.091400px;}
.y1e{bottom:257.811000px;}
.y6a{bottom:257.811150px;}
.y77{bottom:258.361800px;}
.y55{bottom:274.847250px;}
.y1d{bottom:275.811000px;}
.y69{bottom:275.811150px;}
.y76{bottom:276.361800px;}
.y1c{bottom:293.811000px;}
.y68{bottom:293.811150px;}
.y1b{bottom:311.811000px;}
.y67{bottom:311.811150px;}
.y1a{bottom:329.811000px;}
.y66{bottom:329.811150px;}
.y19{bottom:347.811000px;}
.y65{bottom:347.811150px;}
.y18{bottom:365.811000px;}
.y64{bottom:365.811150px;}
.y17{bottom:383.811000px;}
.y63{bottom:383.811150px;}
.y16{bottom:401.811000px;}
.y54{bottom:401.811150px;}
.y15{bottom:419.811000px;}
.y53{bottom:419.811150px;}
.y14{bottom:437.811000px;}
.y52{bottom:437.811150px;}
.y13{bottom:455.811000px;}
.y51{bottom:455.811150px;}
.y12{bottom:473.811000px;}
.y50{bottom:473.811150px;}
.y62{bottom:482.373900px;}
.y11{bottom:491.811000px;}
.y4f{bottom:491.811150px;}
.y61{bottom:500.373900px;}
.y26{bottom:509.811000px;}
.y4e{bottom:509.811150px;}
.y60{bottom:518.373900px;}
.y10{bottom:527.811000px;}
.y4d{bottom:527.811150px;}
.y5f{bottom:536.373900px;}
.y7a{bottom:545.811000px;}
.y4c{bottom:545.811150px;}
.y5e{bottom:554.373900px;}
.y79{bottom:563.811000px;}
.y4b{bottom:563.811150px;}
.y5d{bottom:572.373900px;}
.y4a{bottom:581.811150px;}
.y5c{bottom:590.373900px;}
.yf{bottom:599.811000px;}
.y49{bottom:599.811150px;}
.y7c{bottom:617.811000px;}
.y48{bottom:617.811150px;}
.ye{bottom:635.811000px;}
.y47{bottom:635.811150px;}
.y46{bottom:653.811150px;}
.y45{bottom:671.811150px;}
.y44{bottom:689.811150px;}
.yd{bottom:707.811000px;}
.y43{bottom:707.811150px;}
.yc{bottom:725.811000px;}
.y42{bottom:725.811150px;}
.yb{bottom:743.811000px;}
.y41{bottom:743.811150px;}
.ya{bottom:761.811000px;}
.y40{bottom:761.811150px;}
.y75{bottom:764.585100px;}
.y3f{bottom:779.811000px;}
.y74{bottom:782.585100px;}
.y9{bottom:797.811000px;}
.y73{bottom:800.585100px;}
.y3e{bottom:815.811000px;}
.y3d{bottom:833.811000px;}
.y3c{bottom:851.811000px;}
.y8{bottom:852.279750px;}
.y3b{bottom:869.811000px;}
.y3a{bottom:887.811000px;}
.y7{bottom:900.043500px;}
.y39{bottom:905.811000px;}
.y38{bottom:923.811000px;}
.y6{bottom:927.042900px;}
.y37{bottom:941.811000px;}
.y5{bottom:954.042150px;}
.y36{bottom:959.811000px;}
.y4{bottom:972.042150px;}
.y35{bottom:977.811000px;}
.y34{bottom:995.811000px;}
.y3{bottom:1008.040650px;}
.y33{bottom:1013.811000px;}
.y32{bottom:1031.811000px;}
.y2{bottom:1047.639150px;}
.y31{bottom:1049.811000px;}
.y30{bottom:1067.811000px;}
.y1{bottom:1078.239300px;}
.y2f{bottom:1085.811000px;}
.y2e{bottom:1103.811000px;}
.y2d{bottom:1121.811000px;}
.y5a{bottom:1139.811000px;}
.y2c{bottom:1154.730900px;}
.y59{bottom:1157.811000px;}
.y5b{bottom:1194.094800px;}
.y2b{bottom:1194.094950px;}
.y27{bottom:1194.258000px;}
.ha{height:28.516113px;}
.h4{height:33.328125px;}
.he{height:33.351562px;}
.h5{height:33.947754px;}
.h6{height:37.520508px;}
.h7{height:39.258000px;}
.hd{height:40.664062px;}
.h9{height:41.689453px;}
.hc{height:44.284351px;}
.hb{height:44.284951px;}
.h3{height:55.642465px;}
.h8{height:58.365234px;}
.h2{height:70.872070px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:76.535400px;}
.x8{left:93.543300px;}
.xb{left:110.551200px;}
.xd{left:127.558950px;}
.x2{left:273.017100px;}
.x3{left:324.696750px;}
.x4{left:434.219400px;}
.x9{left:440.078700px;}
.xa{left:457.086600px;}
.xf{left:474.094350px;}
.xc{left:483.206550px;}
.x5{left:489.313500px;}
.xe{left:491.102250px;}
.x6{left:621.333900px;}
.x10{left:676.783500px;}
.x7{left:678.018750px;}
.x11{left:761.268450px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:17.760000pt;}
.v1{vertical-align:21.312000pt;}
.ls9{letter-spacing:-4.416000pt;}
.ls7{letter-spacing:-1.066667pt;}
.ls8{letter-spacing:-0.621867pt;}
.ls3{letter-spacing:-0.544000pt;}
.ls5{letter-spacing:-0.480000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.000533pt;}
.lsa{letter-spacing:0.008000pt;}
.ls2{letter-spacing:0.533333pt;}
.ls1{letter-spacing:1.066667pt;}
.ls6{letter-spacing:9.225067pt;}
.ws4{word-spacing:-48.000000pt;}
.ws8{word-spacing:-14.400000pt;}
.ws9{word-spacing:-13.866667pt;}
.ws14{word-spacing:-13.333333pt;}
.ws3{word-spacing:-12.520000pt;}
.ws25{word-spacing:-12.266667pt;}
.ws7{word-spacing:-12.000000pt;}
.ws1{word-spacing:-11.685333pt;}
.ws0{word-spacing:-11.678656pt;}
.ws2{word-spacing:-10.666667pt;}
.ws13{word-spacing:-7.773333pt;}
.ws1e{word-spacing:-7.584000pt;}
.ws12{word-spacing:-7.151467pt;}
.ws16{word-spacing:-5.120000pt;}
.ws1d{word-spacing:-3.504000pt;}
.ws2b{word-spacing:-2.064000pt;}
.ws11{word-spacing:-1.545600pt;}
.ws24{word-spacing:-1.296000pt;}
.ws10{word-spacing:-1.209600pt;}
.wsd{word-spacing:-1.066667pt;}
.wse{word-spacing:-0.533333pt;}
.ws28{word-spacing:-0.432000pt;}
.ws5{word-spacing:-0.048000pt;}
.ws1c{word-spacing:-0.040000pt;}
.wsb{word-spacing:0.000000pt;}
.ws6{word-spacing:0.432000pt;}
.wsa{word-spacing:0.544000pt;}
.ws15{word-spacing:1.066667pt;}
.ws2c{word-spacing:1.365333pt;}
.wsc{word-spacing:1.440000pt;}
.ws22{word-spacing:1.600000pt;}
.ws19{word-spacing:3.573333pt;}
.ws27{word-spacing:4.640000pt;}
.ws1f{word-spacing:4.960000pt;}
.ws21{word-spacing:5.333333pt;}
.ws20{word-spacing:5.866667pt;}
.ws23{word-spacing:6.186667pt;}
.ws2e{word-spacing:6.400000pt;}
.wsf{word-spacing:7.360000pt;}
.ws1a{word-spacing:9.653333pt;}
.ws2d{word-spacing:13.312000pt;}
.ws26{word-spacing:14.400000pt;}
.ws29{word-spacing:14.506667pt;}
.ws17{word-spacing:16.266667pt;}
.ws18{word-spacing:16.853333pt;}
.ws1b{word-spacing:18.133333pt;}
.ws2a{word-spacing:26.506667pt;}
._13{margin-left:-2509.467200pt;}
._3{margin-left:-6.923200pt;}
._9{margin-left:-5.269333pt;}
._6{margin-left:-4.243200pt;}
._1{margin-left:-3.131733pt;}
._5{margin-left:-1.845867pt;}
._2{margin-left:-0.942933pt;}
._0{width:1.378133pt;}
._4{width:2.696533pt;}
._7{width:3.633600pt;}
._e{width:4.787733pt;}
._d{width:6.208000pt;}
._11{width:7.952000pt;}
._b{width:8.949333pt;}
._a{width:10.629333pt;}
._12{width:11.612800pt;}
._1d{width:13.367467pt;}
._c{width:14.618667pt;}
._10{width:15.589333pt;}
._14{width:17.084267pt;}
._17{width:18.114133pt;}
._f{width:19.082667pt;}
._15{width:20.238400pt;}
._18{width:21.798933pt;}
._1a{width:25.445333pt;}
._8{width:26.453333pt;}
._1e{width:29.563733pt;}
._16{width:33.157333pt;}
._1c{width:35.788800pt;}
._1b{width:37.371733pt;}
._19{width:49.210667pt;}
.fsa{font-size:31.093333pt;}
.fs9{font-size:33.600000pt;}
.fs2{font-size:37.312000pt;}
.fs3{font-size:37.333333pt;}
.fs5{font-size:40.000000pt;}
.fs4{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs8{font-size:53.333333pt;}
.fs1{font-size:64.000000pt;}
.fs7{font-size:74.666667pt;}
.fs0{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y29{bottom:57.802800pt;}
.y2a{bottom:68.524000pt;}
.y28{bottom:69.002933pt;}
.y58{bottom:101.165333pt;}
.y72{bottom:101.165467pt;}
.y25{bottom:117.165333pt;}
.y71{bottom:117.165467pt;}
.y24{bottom:133.165333pt;}
.y70{bottom:133.165467pt;}
.y23{bottom:149.165333pt;}
.y6f{bottom:149.165467pt;}
.y22{bottom:165.165333pt;}
.y6e{bottom:165.165467pt;}
.y21{bottom:181.165333pt;}
.y6d{bottom:181.165467pt;}
.y7b{bottom:196.308667pt;}
.y20{bottom:197.165333pt;}
.y6c{bottom:197.165467pt;}
.y57{bottom:200.970133pt;}
.y1f{bottom:213.165333pt;}
.y6b{bottom:213.165467pt;}
.y78{bottom:213.654933pt;}
.y56{bottom:216.970133pt;}
.y1e{bottom:229.165333pt;}
.y6a{bottom:229.165467pt;}
.y77{bottom:229.654933pt;}
.y55{bottom:244.308667pt;}
.y1d{bottom:245.165333pt;}
.y69{bottom:245.165467pt;}
.y76{bottom:245.654933pt;}
.y1c{bottom:261.165333pt;}
.y68{bottom:261.165467pt;}
.y1b{bottom:277.165333pt;}
.y67{bottom:277.165467pt;}
.y1a{bottom:293.165333pt;}
.y66{bottom:293.165467pt;}
.y19{bottom:309.165333pt;}
.y65{bottom:309.165467pt;}
.y18{bottom:325.165333pt;}
.y64{bottom:325.165467pt;}
.y17{bottom:341.165333pt;}
.y63{bottom:341.165467pt;}
.y16{bottom:357.165333pt;}
.y54{bottom:357.165467pt;}
.y15{bottom:373.165333pt;}
.y53{bottom:373.165467pt;}
.y14{bottom:389.165333pt;}
.y52{bottom:389.165467pt;}
.y13{bottom:405.165333pt;}
.y51{bottom:405.165467pt;}
.y12{bottom:421.165333pt;}
.y50{bottom:421.165467pt;}
.y62{bottom:428.776800pt;}
.y11{bottom:437.165333pt;}
.y4f{bottom:437.165467pt;}
.y61{bottom:444.776800pt;}
.y26{bottom:453.165333pt;}
.y4e{bottom:453.165467pt;}
.y60{bottom:460.776800pt;}
.y10{bottom:469.165333pt;}
.y4d{bottom:469.165467pt;}
.y5f{bottom:476.776800pt;}
.y7a{bottom:485.165333pt;}
.y4c{bottom:485.165467pt;}
.y5e{bottom:492.776800pt;}
.y79{bottom:501.165333pt;}
.y4b{bottom:501.165467pt;}
.y5d{bottom:508.776800pt;}
.y4a{bottom:517.165467pt;}
.y5c{bottom:524.776800pt;}
.yf{bottom:533.165333pt;}
.y49{bottom:533.165467pt;}
.y7c{bottom:549.165333pt;}
.y48{bottom:549.165467pt;}
.ye{bottom:565.165333pt;}
.y47{bottom:565.165467pt;}
.y46{bottom:581.165467pt;}
.y45{bottom:597.165467pt;}
.y44{bottom:613.165467pt;}
.yd{bottom:629.165333pt;}
.y43{bottom:629.165467pt;}
.yc{bottom:645.165333pt;}
.y42{bottom:645.165467pt;}
.yb{bottom:661.165333pt;}
.y41{bottom:661.165467pt;}
.ya{bottom:677.165333pt;}
.y40{bottom:677.165467pt;}
.y75{bottom:679.631200pt;}
.y3f{bottom:693.165333pt;}
.y74{bottom:695.631200pt;}
.y9{bottom:709.165333pt;}
.y73{bottom:711.631200pt;}
.y3e{bottom:725.165333pt;}
.y3d{bottom:741.165333pt;}
.y3c{bottom:757.165333pt;}
.y8{bottom:757.582000pt;}
.y3b{bottom:773.165333pt;}
.y3a{bottom:789.165333pt;}
.y7{bottom:800.038667pt;}
.y39{bottom:805.165333pt;}
.y38{bottom:821.165333pt;}
.y6{bottom:824.038133pt;}
.y37{bottom:837.165333pt;}
.y5{bottom:848.037467pt;}
.y36{bottom:853.165333pt;}
.y4{bottom:864.037467pt;}
.y35{bottom:869.165333pt;}
.y34{bottom:885.165333pt;}
.y3{bottom:896.036133pt;}
.y33{bottom:901.165333pt;}
.y32{bottom:917.165333pt;}
.y2{bottom:931.234800pt;}
.y31{bottom:933.165333pt;}
.y30{bottom:949.165333pt;}
.y1{bottom:958.434933pt;}
.y2f{bottom:965.165333pt;}
.y2e{bottom:981.165333pt;}
.y2d{bottom:997.165333pt;}
.y5a{bottom:1013.165333pt;}
.y2c{bottom:1026.427467pt;}
.y59{bottom:1029.165333pt;}
.y5b{bottom:1061.417600pt;}
.y2b{bottom:1061.417733pt;}
.y27{bottom:1061.562667pt;}
.ha{height:25.347656pt;}
.h4{height:29.625000pt;}
.he{height:29.645833pt;}
.h5{height:30.175781pt;}
.h6{height:33.351562pt;}
.h7{height:34.896000pt;}
.hd{height:36.145833pt;}
.h9{height:37.057292pt;}
.hc{height:39.363868pt;}
.hb{height:39.364401pt;}
.h3{height:49.459969pt;}
.h8{height:51.880208pt;}
.h2{height:62.997396pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:68.031467pt;}
.x8{left:83.149600pt;}
.xb{left:98.267733pt;}
.xd{left:113.385733pt;}
.x2{left:242.681867pt;}
.x3{left:288.619333pt;}
.x4{left:385.972800pt;}
.x9{left:391.181067pt;}
.xa{left:406.299200pt;}
.xf{left:421.417200pt;}
.xc{left:429.516933pt;}
.x5{left:434.945333pt;}
.xe{left:436.535333pt;}
.x6{left:552.296800pt;}
.x10{left:601.585333pt;}
.x7{left:602.683333pt;}
.x11{left:676.683067pt;}
}




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