
    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_8737d169d09eadae9b645dec.woff')format("woff");}.ff1{font-family:ff1;line-height:1.311035;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_9ef7cd6597a9a5218b1fc0d1.woff')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_df7223ab74c67e612300107b.woff')format("woff");}.ff3{font-family:ff3;line-height:0.921387;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_0782eff3dc0da13c19c185dd.woff')format("woff");}.ff4{font-family:ff4;line-height:0.914062;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_879141f3e12ca27f7f13e776.woff')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_508e9911b389a4a11b1e500e.woff')format("woff");}.ff6{font-family:ff6;line-height:1.284180;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_8d3d0dd01e1dc64a2459944e.woff')format("woff");}.ff7{font-family:ff7;line-height:0.920410;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_7b73dddfd73762d76693106d.woff')format("woff");}.ff8{font-family:ff8;line-height:0.878418;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_c0bff215d5a6ddd51d329fc3.woff')format("woff");}.ff9{font-family:ff9;line-height:1.202148;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_6144a6a9d30f9922f0c3db7e.woff')format("woff");}.ffa{font-family:ffa;line-height:0.946777;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;}
.v1{vertical-align:30.240000px;}
.ls15{letter-spacing:-0.900000px;}
.ls6{letter-spacing:-0.360000px;}
.ls14{letter-spacing:-0.350400px;}
.ls16{letter-spacing:-0.341400px;}
.ls7{letter-spacing:-0.180000px;}
.ls13{letter-spacing:-0.037440px;}
.ls4{letter-spacing:-0.018720px;}
.lsb{letter-spacing:-0.018000px;}
.ls2{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.021600px;}
.ls0{letter-spacing:0.028080px;}
.lsc{letter-spacing:0.037440px;}
.lse{letter-spacing:0.180000px;}
.lsd{letter-spacing:0.291600px;}
.ls5{letter-spacing:0.341400px;}
.ls3{letter-spacing:0.360000px;}
.ls9{letter-spacing:0.369600px;}
.ls8{letter-spacing:0.378600px;}
.ls1{letter-spacing:0.504000px;}
.lsa{letter-spacing:0.540000px;}
.lsf{letter-spacing:1.980000px;}
.ls10{letter-spacing:10.620000px;}
.ls11{letter-spacing:24.300000px;}
.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:-84.600000px;}
.ws1{word-spacing:-24.300000px;}
.wsa{word-spacing:-21.438600px;}
.wsb{word-spacing:-21.429600px;}
.ws4{word-spacing:-21.420000px;}
.ws5{word-spacing:-21.401400px;}
.wsc{word-spacing:-21.097440px;}
.ws9{word-spacing:-21.088080px;}
.ws2{word-spacing:-21.060000px;}
.ws3{word-spacing:-21.041280px;}
.wsd{word-spacing:-21.022560px;}
.wse{word-spacing:-20.718600px;}
.ws6{word-spacing:-20.700000px;}
.ws0{word-spacing:-18.000000px;}
.ws8{word-spacing:0.000000px;}
._15{margin-left:-5.896800px;}
._f{margin-left:-4.633200px;}
._25{margin-left:-3.485280px;}
._13{margin-left:-2.210880px;}
._1{margin-left:-1.158720px;}
._0{width:1.140000px;}
._3{width:2.640000px;}
._5{width:4.212000px;}
._16{width:5.278560px;}
._26{width:6.494400px;}
._10{width:7.581600px;}
._11{width:8.673840px;}
._29{width:9.722880px;}
._1d{width:10.762080px;}
._1c{width:12.063600px;}
._12{width:13.141440px;}
._a{width:14.974080px;}
._e{width:16.223280px;}
._4{width:17.353440px;}
._14{width:18.508560px;}
._2{width:19.790160px;}
._19{width:22.302960px;}
._d{width:23.792880px;}
._c{width:24.852720px;}
._27{width:25.857840px;}
._31{width:26.927760px;}
._1b{width:27.932160px;}
._1f{width:29.182560px;}
._8{width:30.242160px;}
._1a{width:31.409760px;}
._1e{width:32.612640px;}
._40{width:33.618720px;}
._17{width:34.791120px;}
._18{width:36.649920px;}
._20{width:37.998480px;}
._2c{width:39.131040px;}
._23{width:42.372720px;}
._24{width:43.675680px;}
._9{width:44.879280px;}
._3d{width:45.992160px;}
._2e{width:47.174400px;}
._2f{width:48.512880px;}
._6{width:49.617360px;}
._7{width:50.796720px;}
._b{width:51.891840px;}
._28{width:56.946240px;}
._2a{width:65.286000px;}
._2b{width:66.822960px;}
._22{width:70.656480px;}
._21{width:71.836320px;}
._32{width:103.615200px;}
._33{width:104.626080px;}
._34{width:105.854880px;}
._38{width:136.796160px;}
._37{width:167.292960px;}
._35{width:168.420000px;}
._36{width:170.004480px;}
._2d{width:178.916160px;}
._39{width:276.623520px;}
._3f{width:419.726640px;}
._3e{width:420.883680px;}
._3a{width:662.884560px;}
._3b{width:663.895440px;}
._3c{width:2157.303840px;}
._30{width:2487.775680px;}
.fc3{color:transparent;}
.fc2{color:rgb(5,99,193);}
.fc5{color:rgb(242,242,242);}
.fc4{color:rgb(217,217,217);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs1{font-size:54.000000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y6{bottom:-6.120000px;}
.y0{bottom:0.000000px;}
.y3{bottom:16.020000px;}
.yb{bottom:16.380000px;}
.ya{bottom:24.120000px;}
.y4{bottom:27.900000px;}
.y2{bottom:36.720000px;}
.y9{bottom:36.756000px;}
.y8{bottom:44.640000px;}
.y5c{bottom:73.725000px;}
.y5d{bottom:107.745000px;}
.y4b{bottom:111.996000px;}
.y6a{bottom:113.256000px;}
.y9a{bottom:117.216000px;}
.y57{bottom:121.536000px;}
.y87{bottom:124.776000px;}
.y2c{bottom:127.656000px;}
.y5a{bottom:134.856000px;}
.y4a{bottom:139.716000px;}
.y69{bottom:140.976000px;}
.y5e{bottom:141.735000px;}
.y99{bottom:144.936000px;}
.y56{bottom:149.436000px;}
.y2b{bottom:151.770000px;}
.y86{bottom:152.490000px;}
.y59{bottom:162.750000px;}
.y49{bottom:167.430000px;}
.y68{bottom:168.690000px;}
.y98{bottom:172.650000px;}
.y5f{bottom:175.755000px;}
.y2a{bottom:175.890000px;}
.y55{bottom:177.150000px;}
.y85{bottom:180.210000px;}
.y58{bottom:190.470000px;}
.y48{bottom:195.330000px;}
.y67{bottom:196.590000px;}
.y97{bottom:200.550000px;}
.y29{bottom:203.790000px;}
.y54{bottom:204.870000px;}
.y60{bottom:209.775000px;}
.y5b{bottom:210.240000px;}
.y84{bottom:219.990000px;}
.y47{bottom:223.050000px;}
.y96{bottom:228.270000px;}
.y28{bottom:231.510000px;}
.y53{bottom:232.770000px;}
.y66{bottom:236.370000px;}
.y61{bottom:243.750000px;}
.y83{bottom:247.710000px;}
.y46{bottom:250.770000px;}
.y95{bottom:255.990000px;}
.y27{bottom:259.230000px;}
.y52{bottom:260.490000px;}
.y65{bottom:264.090000px;}
.y82{bottom:275.610000px;}
.y45{bottom:278.490000px;}
.y94{bottom:283.710000px;}
.y26{bottom:286.950000px;}
.y51{bottom:288.210000px;}
.y64{bottom:291.810000px;}
.y44{bottom:306.390000px;}
.y93{bottom:311.610000px;}
.y25{bottom:314.850000px;}
.y81{bottom:315.390000px;}
.y50{bottom:315.930000px;}
.y63{bottom:319.710000px;}
.y43{bottom:334.110000px;}
.y92{bottom:339.375000px;}
.y24{bottom:342.615000px;}
.y80{bottom:343.155000px;}
.y4f{bottom:343.875000px;}
.y42{bottom:358.275000px;}
.y91{bottom:367.095000px;}
.y23{bottom:370.335000px;}
.y7f{bottom:370.875000px;}
.y4e{bottom:371.595000px;}
.y41{bottom:382.395000px;}
.y90{bottom:394.815000px;}
.y22{bottom:398.235000px;}
.y7e{bottom:398.595000px;}
.y4d{bottom:399.315000px;}
.y40{bottom:406.515000px;}
.y62{bottom:413.025000px;}
.y8f{bottom:422.715000px;}
.y21{bottom:425.955000px;}
.y7d{bottom:426.495000px;}
.y4c{bottom:427.215000px;}
.y3f{bottom:430.815000px;}
.y8e{bottom:450.435000px;}
.y20{bottom:453.675000px;}
.y3e{bottom:454.935000px;}
.y7c{bottom:466.275000px;}
.y8d{bottom:478.155000px;}
.y1f{bottom:481.395000px;}
.y3d{bottom:482.655000px;}
.y7b{bottom:493.995000px;}
.y8c{bottom:506.055000px;}
.y1e{bottom:509.295000px;}
.y3c{bottom:510.375000px;}
.y7a{bottom:521.715000px;}
.y8b{bottom:533.775000px;}
.y1d{bottom:537.015000px;}
.y3b{bottom:538.275000px;}
.y79{bottom:561.495000px;}
.y1c{bottom:564.735000px;}
.y3a{bottom:565.995000px;}
.y78{bottom:589.215000px;}
.y1b{bottom:592.455000px;}
.y39{bottom:593.715000px;}
.y77{bottom:617.145000px;}
.y38{bottom:621.465000px;}
.y1a{bottom:628.845000px;}
.y37{bottom:649.365000px;}
.y76{bottom:656.925000px;}
.y19{bottom:665.025000px;}
.y36{bottom:677.085000px;}
.y75{bottom:684.645000px;}
.y18{bottom:701.205000px;}
.y35{bottom:704.805000px;}
.y74{bottom:712.365000px;}
.y34{bottom:732.705000px;}
.y17{bottom:737.385000px;}
.y73{bottom:752.145000px;}
.y33{bottom:760.425000px;}
.y16{bottom:773.745000px;}
.y72{bottom:779.865000px;}
.y32{bottom:788.145000px;}
.y8a{bottom:807.765000px;}
.y15{bottom:809.925000px;}
.y31{bottom:815.865000px;}
.y71{bottom:819.645000px;}
.y30{bottom:843.765000px;}
.y14{bottom:846.105000px;}
.y70{bottom:847.545000px;}
.y2f{bottom:871.530000px;}
.y6f{bottom:875.310000px;}
.y13{bottom:882.330000px;}
.y2e{bottom:899.250000px;}
.y89{bottom:903.030000px;}
.y6e{bottom:915.090000px;}
.y12{bottom:918.690000px;}
.y2d{bottom:927.150000px;}
.y88{bottom:930.750000px;}
.y6d{bottom:942.810000px;}
.y11{bottom:954.870000px;}
.y6c{bottom:970.530000px;}
.y10{bottom:982.590000px;}
.y6b{bottom:998.430000px;}
.yf{bottom:1010.310000px;}
.ye{bottom:1038.210000px;}
.yd{bottom:1065.930000px;}
.yc{bottom:1093.650000px;}
.y7{bottom:1129.830000px;}
.y5{bottom:1149.480000px;}
.y1{bottom:1166.760000px;}
.h5{height:6.480000px;}
.hd{height:40.948242px;}
.h4{height:52.998047px;}
.h2{height:53.460000px;}
.h7{height:53.496000px;}
.hf{height:58.819922px;}
.h10{height:59.436914px;}
.h8{height:70.664062px;}
.h3{height:72.562500px;}
.ha{height:82.676953px;}
.hb{height:84.661875px;}
.h6{height:84.898125px;}
.h9{height:96.508125px;}
.he{height:98.051133px;}
.hc{height:440.100000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:63.756000px;}
.w3{width:68.616000px;}
.w7{width:750.780000px;}
.w2{width:760.830000px;}
.w5{width:765.690000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.640000px;}
.x7{left:19.800000px;}
.x1{left:31.860000px;}
.x4{left:59.970000px;}
.x18{left:63.108000px;}
.x16{left:70.560000px;}
.x17{left:76.788000px;}
.x5{left:84.959987px;}
.x13{left:93.455987px;}
.x8{left:125.855987px;}
.x12{left:127.475987px;}
.x19{left:143.100000px;}
.xf{left:233.489987px;}
.x10{left:248.249987px;}
.xe{left:259.949987px;}
.xc{left:271.649987px;}
.x14{left:317.054987px;}
.xd{left:319.934987px;}
.xb{left:339.374987px;}
.x11{left:368.894987px;}
.x9{left:386.894987px;}
.x15{left:389.234987px;}
.xa{left:446.474987px;}
.x3{left:792.690000px;}
.x6{left:797.550000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.880000pt;}
.ls15{letter-spacing:-0.800000pt;}
.ls6{letter-spacing:-0.320000pt;}
.ls14{letter-spacing:-0.311467pt;}
.ls16{letter-spacing:-0.303467pt;}
.ls7{letter-spacing:-0.160000pt;}
.ls13{letter-spacing:-0.033280pt;}
.ls4{letter-spacing:-0.016640pt;}
.lsb{letter-spacing:-0.016000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.019200pt;}
.ls0{letter-spacing:0.024960pt;}
.lsc{letter-spacing:0.033280pt;}
.lse{letter-spacing:0.160000pt;}
.lsd{letter-spacing:0.259200pt;}
.ls5{letter-spacing:0.303467pt;}
.ls3{letter-spacing:0.320000pt;}
.ls9{letter-spacing:0.328533pt;}
.ls8{letter-spacing:0.336533pt;}
.ls1{letter-spacing:0.448000pt;}
.lsa{letter-spacing:0.480000pt;}
.lsf{letter-spacing:1.760000pt;}
.ls10{letter-spacing:9.440000pt;}
.ls11{letter-spacing:21.600000pt;}
.ws7{word-spacing:-75.200000pt;}
.ws1{word-spacing:-21.600000pt;}
.wsa{word-spacing:-19.056533pt;}
.wsb{word-spacing:-19.048533pt;}
.ws4{word-spacing:-19.040000pt;}
.ws5{word-spacing:-19.023467pt;}
.wsc{word-spacing:-18.753280pt;}
.ws9{word-spacing:-18.744960pt;}
.ws2{word-spacing:-18.720000pt;}
.ws3{word-spacing:-18.703360pt;}
.wsd{word-spacing:-18.686720pt;}
.wse{word-spacing:-18.416533pt;}
.ws6{word-spacing:-18.400000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws8{word-spacing:0.000000pt;}
._15{margin-left:-5.241600pt;}
._f{margin-left:-4.118400pt;}
._25{margin-left:-3.098027pt;}
._13{margin-left:-1.965227pt;}
._1{margin-left:-1.029973pt;}
._0{width:1.013333pt;}
._3{width:2.346667pt;}
._5{width:3.744000pt;}
._16{width:4.692053pt;}
._26{width:5.772800pt;}
._10{width:6.739200pt;}
._11{width:7.710080pt;}
._29{width:8.642560pt;}
._1d{width:9.566293pt;}
._1c{width:10.723200pt;}
._12{width:11.681280pt;}
._a{width:13.310293pt;}
._e{width:14.420693pt;}
._4{width:15.425280pt;}
._14{width:16.452053pt;}
._2{width:17.591253pt;}
._19{width:19.824853pt;}
._d{width:21.149227pt;}
._c{width:22.091307pt;}
._27{width:22.984747pt;}
._31{width:23.935787pt;}
._1b{width:24.828587pt;}
._1f{width:25.940053pt;}
._8{width:26.881920pt;}
._1a{width:27.919787pt;}
._1e{width:28.989013pt;}
._40{width:29.883307pt;}
._17{width:30.925440pt;}
._18{width:32.577707pt;}
._20{width:33.776427pt;}
._2c{width:34.783147pt;}
._23{width:37.664640pt;}
._24{width:38.822827pt;}
._9{width:39.892693pt;}
._3d{width:40.881920pt;}
._2e{width:41.932800pt;}
._2f{width:43.122560pt;}
._6{width:44.104320pt;}
._7{width:45.152640pt;}
._b{width:46.126080pt;}
._28{width:50.618880pt;}
._2a{width:58.032000pt;}
._2b{width:59.398187pt;}
._22{width:62.805760pt;}
._21{width:63.854507pt;}
._32{width:92.102400pt;}
._33{width:93.000960pt;}
._34{width:94.093227pt;}
._38{width:121.596587pt;}
._37{width:148.704853pt;}
._35{width:149.706667pt;}
._36{width:151.115093pt;}
._2d{width:159.036587pt;}
._39{width:245.887573pt;}
._3f{width:373.090347pt;}
._3e{width:374.118827pt;}
._3a{width:589.230720pt;}
._3b{width:590.129280pt;}
._3c{width:1917.603413pt;}
._30{width:2211.356160pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y6{bottom:-5.440000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:14.240000pt;}
.yb{bottom:14.560000pt;}
.ya{bottom:21.440000pt;}
.y4{bottom:24.800000pt;}
.y2{bottom:32.640000pt;}
.y9{bottom:32.672000pt;}
.y8{bottom:39.680000pt;}
.y5c{bottom:65.533333pt;}
.y5d{bottom:95.773333pt;}
.y4b{bottom:99.552000pt;}
.y6a{bottom:100.672000pt;}
.y9a{bottom:104.192000pt;}
.y57{bottom:108.032000pt;}
.y87{bottom:110.912000pt;}
.y2c{bottom:113.472000pt;}
.y5a{bottom:119.872000pt;}
.y4a{bottom:124.192000pt;}
.y69{bottom:125.312000pt;}
.y5e{bottom:125.986667pt;}
.y99{bottom:128.832000pt;}
.y56{bottom:132.832000pt;}
.y2b{bottom:134.906667pt;}
.y86{bottom:135.546667pt;}
.y59{bottom:144.666667pt;}
.y49{bottom:148.826667pt;}
.y68{bottom:149.946667pt;}
.y98{bottom:153.466667pt;}
.y5f{bottom:156.226667pt;}
.y2a{bottom:156.346667pt;}
.y55{bottom:157.466667pt;}
.y85{bottom:160.186667pt;}
.y58{bottom:169.306667pt;}
.y48{bottom:173.626667pt;}
.y67{bottom:174.746667pt;}
.y97{bottom:178.266667pt;}
.y29{bottom:181.146667pt;}
.y54{bottom:182.106667pt;}
.y60{bottom:186.466667pt;}
.y5b{bottom:186.880000pt;}
.y84{bottom:195.546667pt;}
.y47{bottom:198.266667pt;}
.y96{bottom:202.906667pt;}
.y28{bottom:205.786667pt;}
.y53{bottom:206.906667pt;}
.y66{bottom:210.106667pt;}
.y61{bottom:216.666667pt;}
.y83{bottom:220.186667pt;}
.y46{bottom:222.906667pt;}
.y95{bottom:227.546667pt;}
.y27{bottom:230.426667pt;}
.y52{bottom:231.546667pt;}
.y65{bottom:234.746667pt;}
.y82{bottom:244.986667pt;}
.y45{bottom:247.546667pt;}
.y94{bottom:252.186667pt;}
.y26{bottom:255.066667pt;}
.y51{bottom:256.186667pt;}
.y64{bottom:259.386667pt;}
.y44{bottom:272.346667pt;}
.y93{bottom:276.986667pt;}
.y25{bottom:279.866667pt;}
.y81{bottom:280.346667pt;}
.y50{bottom:280.826667pt;}
.y63{bottom:284.186667pt;}
.y43{bottom:296.986667pt;}
.y92{bottom:301.666667pt;}
.y24{bottom:304.546667pt;}
.y80{bottom:305.026667pt;}
.y4f{bottom:305.666667pt;}
.y42{bottom:318.466667pt;}
.y91{bottom:326.306667pt;}
.y23{bottom:329.186667pt;}
.y7f{bottom:329.666667pt;}
.y4e{bottom:330.306667pt;}
.y41{bottom:339.906667pt;}
.y90{bottom:350.946667pt;}
.y22{bottom:353.986667pt;}
.y7e{bottom:354.306667pt;}
.y4d{bottom:354.946667pt;}
.y40{bottom:361.346667pt;}
.y62{bottom:367.133333pt;}
.y8f{bottom:375.746667pt;}
.y21{bottom:378.626667pt;}
.y7d{bottom:379.106667pt;}
.y4c{bottom:379.746667pt;}
.y3f{bottom:382.946667pt;}
.y8e{bottom:400.386667pt;}
.y20{bottom:403.266667pt;}
.y3e{bottom:404.386667pt;}
.y7c{bottom:414.466667pt;}
.y8d{bottom:425.026667pt;}
.y1f{bottom:427.906667pt;}
.y3d{bottom:429.026667pt;}
.y7b{bottom:439.106667pt;}
.y8c{bottom:449.826667pt;}
.y1e{bottom:452.706667pt;}
.y3c{bottom:453.666667pt;}
.y7a{bottom:463.746667pt;}
.y8b{bottom:474.466667pt;}
.y1d{bottom:477.346667pt;}
.y3b{bottom:478.466667pt;}
.y79{bottom:499.106667pt;}
.y1c{bottom:501.986667pt;}
.y3a{bottom:503.106667pt;}
.y78{bottom:523.746667pt;}
.y1b{bottom:526.626667pt;}
.y39{bottom:527.746667pt;}
.y77{bottom:548.573333pt;}
.y38{bottom:552.413333pt;}
.y1a{bottom:558.973333pt;}
.y37{bottom:577.213333pt;}
.y76{bottom:583.933333pt;}
.y19{bottom:591.133333pt;}
.y36{bottom:601.853333pt;}
.y75{bottom:608.573333pt;}
.y18{bottom:623.293333pt;}
.y35{bottom:626.493333pt;}
.y74{bottom:633.213333pt;}
.y34{bottom:651.293333pt;}
.y17{bottom:655.453333pt;}
.y73{bottom:668.573333pt;}
.y33{bottom:675.933333pt;}
.y16{bottom:687.773333pt;}
.y72{bottom:693.213333pt;}
.y32{bottom:700.573333pt;}
.y8a{bottom:718.013333pt;}
.y15{bottom:719.933333pt;}
.y31{bottom:725.213333pt;}
.y71{bottom:728.573333pt;}
.y30{bottom:750.013333pt;}
.y14{bottom:752.093333pt;}
.y70{bottom:753.373333pt;}
.y2f{bottom:774.693333pt;}
.y6f{bottom:778.053333pt;}
.y13{bottom:784.293333pt;}
.y2e{bottom:799.333333pt;}
.y89{bottom:802.693333pt;}
.y6e{bottom:813.413333pt;}
.y12{bottom:816.613333pt;}
.y2d{bottom:824.133333pt;}
.y88{bottom:827.333333pt;}
.y6d{bottom:838.053333pt;}
.y11{bottom:848.773333pt;}
.y6c{bottom:862.693333pt;}
.y10{bottom:873.413333pt;}
.y6b{bottom:887.493333pt;}
.yf{bottom:898.053333pt;}
.ye{bottom:922.853333pt;}
.yd{bottom:947.493333pt;}
.yc{bottom:972.133333pt;}
.y7{bottom:1004.293333pt;}
.y5{bottom:1021.760000pt;}
.y1{bottom:1037.120000pt;}
.h5{height:5.760000pt;}
.hd{height:36.398438pt;}
.h4{height:47.109375pt;}
.h2{height:47.520000pt;}
.h7{height:47.552000pt;}
.hf{height:52.284375pt;}
.h10{height:52.832812pt;}
.h8{height:62.812500pt;}
.h3{height:64.500000pt;}
.ha{height:73.490625pt;}
.hb{height:75.255000pt;}
.h6{height:75.465000pt;}
.h9{height:85.785000pt;}
.he{height:87.156562pt;}
.hc{height:391.200000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:56.672000pt;}
.w3{width:60.992000pt;}
.w7{width:667.360000pt;}
.w2{width:676.293333pt;}
.w5{width:680.613333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.680000pt;}
.x7{left:17.600000pt;}
.x1{left:28.320000pt;}
.x4{left:53.306667pt;}
.x18{left:56.096000pt;}
.x16{left:62.720000pt;}
.x17{left:68.256000pt;}
.x5{left:75.519988pt;}
.x13{left:83.071988pt;}
.x8{left:111.871988pt;}
.x12{left:113.311988pt;}
.x19{left:127.200000pt;}
.xf{left:207.546655pt;}
.x10{left:220.666655pt;}
.xe{left:231.066655pt;}
.xc{left:241.466655pt;}
.x14{left:281.826655pt;}
.xd{left:284.386655pt;}
.xb{left:301.666655pt;}
.x11{left:327.906655pt;}
.x9{left:343.906655pt;}
.x15{left:345.986655pt;}
.xa{left:396.866655pt;}
.x3{left:704.613333pt;}
.x6{left:708.933333pt;}
}




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