
    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_dfc186b02fa38f4cec1bf985.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_68b82778d301225000b7a9aa.woff')format("woff");}.ff2{font-family:ff2;line-height:0.858398;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_323cb7a248cc56d1c3bde4d6.woff')format("woff");}.ff3{font-family:ff3;line-height:0.893066;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_22e7abdb1ee9de745e90dee1.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_8a60415967e6142900eea19e.woff')format("woff");}.ff5{font-family:ff5;line-height:1.097168;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_34f29e5268521af1cb63bb4a.woff')format("woff");}.ff6{font-family:ff6;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_6fd7ee1f88902f76d596cb63.woff')format("woff");}.ff7{font-family:ff7;line-height:0.793457;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;}
.ls2{letter-spacing:0.212400px;}
.ls4{letter-spacing:18.000000px;}
.ls3{letter-spacing:108.180000px;}
.ls1{letter-spacing:109.397700px;}
.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;}
}
.ws4d{word-spacing:-56.156400px;}
.ws22{word-spacing:-55.944000px;}
.ws1d{word-spacing:-40.968000px;}
.ws7f{word-spacing:-38.659500px;}
.ws40{word-spacing:-38.657400px;}
.ws3b{word-spacing:-38.656800px;}
.ws52{word-spacing:-38.653200px;}
.ws6a{word-spacing:-38.651400px;}
.ws6e{word-spacing:-38.651100px;}
.ws3d{word-spacing:-38.647200px;}
.ws5f{word-spacing:-38.642400px;}
.ws33{word-spacing:-38.439000px;}
.ws80{word-spacing:-38.437200px;}
.ws62{word-spacing:-38.435400px;}
.ws6d{word-spacing:-38.430000px;}
.ws4{word-spacing:-38.369700px;}
.ws7a{word-spacing:-38.157300px;}
.ws51{word-spacing:-38.156400px;}
.ws6c{word-spacing:-38.154600px;}
.ws84{word-spacing:-38.151900px;}
.ws3e{word-spacing:-38.151600px;}
.ws37{word-spacing:-38.147400px;}
.ws38{word-spacing:-38.142900px;}
.ws65{word-spacing:-38.142000px;}
.ws5e{word-spacing:-38.088000px;}
.ws81{word-spacing:-38.083500px;}
.ws83{word-spacing:-38.079900px;}
.ws7d{word-spacing:-38.074800px;}
.ws79{word-spacing:-37.947300px;}
.ws3f{word-spacing:-37.944000px;}
.ws82{word-spacing:-37.943100px;}
.ws50{word-spacing:-37.941900px;}
.ws60{word-spacing:-37.936800px;}
.ws3{word-spacing:-37.935000px;}
.ws3a{word-spacing:-37.933200px;}
.ws56{word-spacing:-37.928400px;}
.ws61{word-spacing:-37.859400px;}
.ws41{word-spacing:-37.722600px;}
.wsf{word-spacing:-37.713600px;}
.ws49{word-spacing:-37.713000px;}
.ws28{word-spacing:-37.704600px;}
.ws7c{word-spacing:-37.440000px;}
.ws5{word-spacing:-37.426500px;}
.ws4f{word-spacing:-37.415400px;}
.ws25{word-spacing:-37.217400px;}
.ws74{word-spacing:-37.216800px;}
.ws78{word-spacing:-37.210800px;}
.ws63{word-spacing:-36.726000px;}
.ws5b{word-spacing:-35.980200px;}
.ws2c{word-spacing:-35.280000px;}
.ws26{word-spacing:-35.068200px;}
.ws1f{word-spacing:-35.053200px;}
.ws2e{word-spacing:-35.047800px;}
.ws24{word-spacing:-34.349100px;}
.ws30{word-spacing:-34.347300px;}
.ws4b{word-spacing:-33.840000px;}
.ws68{word-spacing:-33.617400px;}
.wse{word-spacing:-32.169600px;}
.ws39{word-spacing:-31.686000px;}
.ws55{word-spacing:-29.805000px;}
.ws6b{word-spacing:-29.502000px;}
.ws29{word-spacing:-29.304000px;}
.ws18{word-spacing:-29.088000px;}
.wsd{word-spacing:-28.572000px;}
.ws64{word-spacing:-27.864000px;}
.ws69{word-spacing:-26.916000px;}
.ws13{word-spacing:-25.912200px;}
.ws31{word-spacing:-25.691400px;}
.ws32{word-spacing:-25.416000px;}
.ws4e{word-spacing:-24.755400px;}
.ws5d{word-spacing:-24.260400px;}
.ws44{word-spacing:-24.255000px;}
.ws17{word-spacing:-23.748300px;}
.ws45{word-spacing:-23.518200px;}
.ws58{word-spacing:-23.454000px;}
.ws59{word-spacing:-23.394600px;}
.ws3c{word-spacing:-23.174100px;}
.ws2{word-spacing:-23.105700px;}
.ws7{word-spacing:-23.104800px;}
.ws0{word-spacing:-22.968000px;}
.ws5a{word-spacing:-22.958100px;}
.ws6{word-spacing:-22.885500px;}
.ws14{word-spacing:-22.815600px;}
.ws42{word-spacing:-22.678200px;}
.ws43{word-spacing:-22.665600px;}
.ws71{word-spacing:-22.663800px;}
.ws2d{word-spacing:-20.808000px;}
.ws2b{word-spacing:-20.277000px;}
.ws15{word-spacing:-19.723200px;}
.ws23{word-spacing:-19.566900px;}
.wsb{word-spacing:-17.267400px;}
.ws6f{word-spacing:-17.056800px;}
.ws1a{word-spacing:-16.338300px;}
.ws54{word-spacing:-15.608700px;}
.ws76{word-spacing:-15.047100px;}
.ws2a{word-spacing:-14.328000px;}
.ws1b{word-spacing:-12.739500px;}
.ws12{word-spacing:-11.439600px;}
.ws21{word-spacing:-11.299200px;}
.wsc{word-spacing:-10.800000px;}
.ws4a{word-spacing:-9.640200px;}
.ws70{word-spacing:-9.135000px;}
.ws36{word-spacing:-9.127200px;}
.ws5c{word-spacing:-8.557200px;}
.ws67{word-spacing:-7.191000px;}
.ws53{word-spacing:-2.670000px;}
.wsa{word-spacing:-1.927800px;}
.ws11{word-spacing:-0.495000px;}
.ws57{word-spacing:0.000000px;}
.ws48{word-spacing:0.952200px;}
.ws1e{word-spacing:1.656000px;}
.ws72{word-spacing:2.376000px;}
.ws1c{word-spacing:2.529900px;}
.ws19{word-spacing:4.564800px;}
.ws20{word-spacing:5.258700px;}
.ws66{word-spacing:9.802800px;}
.ws2f{word-spacing:10.080000px;}
.ws35{word-spacing:13.183200px;}
.ws10{word-spacing:15.703200px;}
.ws9{word-spacing:17.504700px;}
.ws7e{word-spacing:18.032400px;}
.ws27{word-spacing:22.548600px;}
.ws7b{word-spacing:26.856000px;}
.ws34{word-spacing:27.945900px;}
.ws73{word-spacing:30.031200px;}
.ws8{word-spacing:32.970000px;}
.ws75{word-spacing:47.736000px;}
.ws77{word-spacing:69.912000px;}
.ws47{word-spacing:172.319400px;}
.ws46{word-spacing:244.519800px;}
.ws4c{word-spacing:433.154700px;}
.ws16{word-spacing:504.255600px;}
.ws1{word-spacing:1037.484900px;}
._8{margin-left:-2.244300px;}
._2{margin-left:-1.019700px;}
._0{width:1.076400px;}
._e{width:2.192700px;}
._1{width:18.968400px;}
._14{width:19.980600px;}
._12{width:22.011300px;}
._17{width:23.541300px;}
._9{width:25.219500px;}
._1e{width:27.501000px;}
._b{width:28.705800px;}
._20{width:30.039300px;}
._18{width:31.451400px;}
._1d{width:32.466300px;}
._1c{width:33.582000px;}
._c{width:34.753200px;}
._d{width:37.432800px;}
._6{width:40.019400px;}
._5{width:41.411700px;}
._10{width:44.690700px;}
._7{width:46.296000px;}
._1a{width:47.863200px;}
._1f{width:49.810500px;}
._4{width:55.273800px;}
._a{width:56.665500px;}
._11{width:59.112000px;}
._13{width:62.559900px;}
._16{width:67.179600px;}
._19{width:70.327800px;}
._3{width:75.237900px;}
._15{width:79.691400px;}
._1b{width:82.800000px;}
._21{width:87.178800px;}
._24{width:89.136000px;}
._23{width:90.288000px;}
._22{width:127.224000px;}
._f{width:561.312000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,0,0);}
.fs1{font-size:59.700000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y3b{bottom:3.840000px;}
.y3f{bottom:3.871500px;}
.y42{bottom:3.900000px;}
.y56{bottom:4.575000px;}
.y45{bottom:4.755000px;}
.y4{bottom:12.240000px;}
.y3e{bottom:24.571500px;}
.y41{bottom:24.600000px;}
.y44{bottom:25.275000px;}
.y3d{bottom:45.270000px;}
.y3{bottom:63.975000px;}
.y2c{bottom:121.575000px;}
.y65{bottom:132.915000px;}
.y2b{bottom:142.275000px;}
.y64{bottom:153.615000px;}
.y50{bottom:158.115000px;}
.y2a{bottom:162.975000px;}
.y63{bottom:174.315000px;}
.y4f{bottom:178.815000px;}
.y29{bottom:183.675000px;}
.y62{bottom:195.015000px;}
.y28{bottom:204.375000px;}
.y4e{bottom:220.575000px;}
.y27{bottom:225.075000px;}
.y61{bottom:236.775000px;}
.y4d{bottom:241.275000px;}
.y60{bottom:257.475000px;}
.y4c{bottom:261.975000px;}
.y26{bottom:266.836500px;}
.y5f{bottom:278.175000px;}
.y4b{bottom:282.675000px;}
.y25{bottom:287.536500px;}
.y4a{bottom:303.375000px;}
.y24{bottom:308.236500px;}
.y5e{bottom:319.755000px;}
.y23{bottom:328.936500px;}
.y5d{bottom:340.455000px;}
.y49{bottom:344.955000px;}
.y22{bottom:349.636500px;}
.y5c{bottom:361.155000px;}
.y5b{bottom:381.855000px;}
.y48{bottom:386.715000px;}
.y21{bottom:391.215000px;}
.y20{bottom:411.915000px;}
.y5a{bottom:423.615000px;}
.y47{bottom:428.475000px;}
.y1f{bottom:432.615000px;}
.y59{bottom:444.315000px;}
.y46{bottom:449.175000px;}
.y1e{bottom:453.315000px;}
.y1d{bottom:474.015000px;}
.y58{bottom:486.075000px;}
.y43{bottom:486.900000px;}
.y1c{bottom:494.715000px;}
.y57{bottom:506.775000px;}
.y40{bottom:529.875000px;}
.y1b{bottom:536.475000px;}
.y7d{bottom:537.736500px;}
.y55{bottom:544.500000px;}
.y1a{bottom:557.175000px;}
.y7c{bottom:558.436500px;}
.y54{bottom:566.775000px;}
.y3c{bottom:572.025000px;}
.y19{bottom:577.875000px;}
.y7b{bottom:579.136500px;}
.y53{bottom:588.225000px;}
.y18{bottom:598.575000px;}
.y7a{bottom:599.836500px;}
.y52{bottom:609.675000px;}
.y17{bottom:619.275000px;}
.y79{bottom:620.536500px;}
.y3a{bottom:634.875000px;}
.y16{bottom:639.975000px;}
.y78{bottom:641.236500px;}
.y15{bottom:660.675000px;}
.y77{bottom:661.936500px;}
.y39{bottom:681.195000px;}
.y14{bottom:681.375000px;}
.y76{bottom:682.636500px;}
.y51{bottom:697.575000px;}
.y13{bottom:702.075000px;}
.y75{bottom:703.336500px;}
.y38{bottom:722.775000px;}
.y74{bottom:724.036500px;}
.y12{bottom:743.836500px;}
.y73{bottom:744.736500px;}
.y11{bottom:764.536500px;}
.y72{bottom:765.436500px;}
.y71{bottom:786.136500px;}
.y10{bottom:806.115000px;}
.y37{bottom:806.295000px;}
.y70{bottom:806.836500px;}
.yf{bottom:826.815000px;}
.y36{bottom:826.996500px;}
.y6f{bottom:827.536500px;}
.ye{bottom:847.515000px;}
.y35{bottom:847.695000px;}
.yd{bottom:868.215000px;}
.y6e{bottom:869.295000px;}
.yc{bottom:888.915000px;}
.y34{bottom:889.275000px;}
.yb{bottom:909.615000px;}
.y6d{bottom:910.875000px;}
.ya{bottom:930.315000px;}
.y33{bottom:931.036500px;}
.y6c{bottom:931.575000px;}
.y32{bottom:951.736500px;}
.y6b{bottom:952.275000px;}
.y9{bottom:972.075000px;}
.y31{bottom:972.436500px;}
.y6a{bottom:972.975000px;}
.y8{bottom:992.775000px;}
.y30{bottom:993.136500px;}
.y69{bottom:993.675000px;}
.y68{bottom:1014.375000px;}
.y2f{bottom:1034.895000px;}
.y67{bottom:1035.075000px;}
.y66{bottom:1055.775000px;}
.y2e{bottom:1076.475000px;}
.y7{bottom:1097.175000px;}
.y2d{bottom:1117.875000px;}
.y6{bottom:1138.936500px;}
.y5{bottom:1159.636500px;}
.y2{bottom:1202.655000px;}
.y1{bottom:1224.795000px;}
.h8{height:21.375000px;}
.hc{height:22.200000px;}
.h3{height:32.700000px;}
.ha{height:42.075000px;}
.hb{height:42.900000px;}
.h5{height:48.761719px;}
.h2{height:48.796875px;}
.h4{height:48.972656px;}
.h6{height:49.992188px;}
.h9{height:62.775000px;}
.h7{height:63.457031px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w9{width:137.325000px;}
.w6{width:162.300000px;}
.w3{width:165.300000px;}
.w8{width:188.850000px;}
.w7{width:222.825000px;}
.w5{width:311.325000px;}
.w4{width:315.825000px;}
.w2{width:710.175000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:11.760000px;}
.xa{left:45.075000px;}
.xb{left:80.025000px;}
.x1{left:124.920000px;}
.x3{left:127.200000px;}
.xe{left:129.600000px;}
.x2{left:160.560000px;}
.x8{left:165.060000px;}
.x9{left:190.620000px;}
.xf{left:207.300000px;}
.xc{left:210.300000px;}
.x6{left:372.238500px;}
.x10{left:430.050000px;}
.xd{left:526.050000px;}
.x11{left:618.825000px;}
.x7{left:633.060000px;}
.x5{left:684.720000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.188800pt;}
.ls4{letter-spacing:16.000000pt;}
.ls3{letter-spacing:96.160000pt;}
.ls1{letter-spacing:97.242400pt;}
.ws4d{word-spacing:-49.916800pt;}
.ws22{word-spacing:-49.728000pt;}
.ws1d{word-spacing:-36.416000pt;}
.ws7f{word-spacing:-34.364000pt;}
.ws40{word-spacing:-34.362133pt;}
.ws3b{word-spacing:-34.361600pt;}
.ws52{word-spacing:-34.358400pt;}
.ws6a{word-spacing:-34.356800pt;}
.ws6e{word-spacing:-34.356533pt;}
.ws3d{word-spacing:-34.353067pt;}
.ws5f{word-spacing:-34.348800pt;}
.ws33{word-spacing:-34.168000pt;}
.ws80{word-spacing:-34.166400pt;}
.ws62{word-spacing:-34.164800pt;}
.ws6d{word-spacing:-34.160000pt;}
.ws4{word-spacing:-34.106400pt;}
.ws7a{word-spacing:-33.917600pt;}
.ws51{word-spacing:-33.916800pt;}
.ws6c{word-spacing:-33.915200pt;}
.ws84{word-spacing:-33.912800pt;}
.ws3e{word-spacing:-33.912533pt;}
.ws37{word-spacing:-33.908800pt;}
.ws38{word-spacing:-33.904800pt;}
.ws65{word-spacing:-33.904000pt;}
.ws5e{word-spacing:-33.856000pt;}
.ws81{word-spacing:-33.852000pt;}
.ws83{word-spacing:-33.848800pt;}
.ws7d{word-spacing:-33.844267pt;}
.ws79{word-spacing:-33.730933pt;}
.ws3f{word-spacing:-33.728000pt;}
.ws82{word-spacing:-33.727200pt;}
.ws50{word-spacing:-33.726133pt;}
.ws60{word-spacing:-33.721600pt;}
.ws3{word-spacing:-33.720000pt;}
.ws3a{word-spacing:-33.718400pt;}
.ws56{word-spacing:-33.714133pt;}
.ws61{word-spacing:-33.652800pt;}
.ws41{word-spacing:-33.531200pt;}
.wsf{word-spacing:-33.523200pt;}
.ws49{word-spacing:-33.522667pt;}
.ws28{word-spacing:-33.515200pt;}
.ws7c{word-spacing:-33.280000pt;}
.ws5{word-spacing:-33.268000pt;}
.ws4f{word-spacing:-33.258133pt;}
.ws25{word-spacing:-33.082133pt;}
.ws74{word-spacing:-33.081600pt;}
.ws78{word-spacing:-33.076267pt;}
.ws63{word-spacing:-32.645333pt;}
.ws5b{word-spacing:-31.982400pt;}
.ws2c{word-spacing:-31.360000pt;}
.ws26{word-spacing:-31.171733pt;}
.ws1f{word-spacing:-31.158400pt;}
.ws2e{word-spacing:-31.153600pt;}
.ws24{word-spacing:-30.532533pt;}
.ws30{word-spacing:-30.530933pt;}
.ws4b{word-spacing:-30.080000pt;}
.ws68{word-spacing:-29.882133pt;}
.wse{word-spacing:-28.595200pt;}
.ws39{word-spacing:-28.165333pt;}
.ws55{word-spacing:-26.493333pt;}
.ws6b{word-spacing:-26.224000pt;}
.ws29{word-spacing:-26.048000pt;}
.ws18{word-spacing:-25.856000pt;}
.wsd{word-spacing:-25.397333pt;}
.ws64{word-spacing:-24.768000pt;}
.ws69{word-spacing:-23.925333pt;}
.ws13{word-spacing:-23.033067pt;}
.ws31{word-spacing:-22.836800pt;}
.ws32{word-spacing:-22.592000pt;}
.ws4e{word-spacing:-22.004800pt;}
.ws5d{word-spacing:-21.564800pt;}
.ws44{word-spacing:-21.560000pt;}
.ws17{word-spacing:-21.109600pt;}
.ws45{word-spacing:-20.905067pt;}
.ws58{word-spacing:-20.848000pt;}
.ws59{word-spacing:-20.795200pt;}
.ws3c{word-spacing:-20.599200pt;}
.ws2{word-spacing:-20.538400pt;}
.ws7{word-spacing:-20.537600pt;}
.ws0{word-spacing:-20.416000pt;}
.ws5a{word-spacing:-20.407200pt;}
.ws6{word-spacing:-20.342667pt;}
.ws14{word-spacing:-20.280533pt;}
.ws42{word-spacing:-20.158400pt;}
.ws43{word-spacing:-20.147200pt;}
.ws71{word-spacing:-20.145600pt;}
.ws2d{word-spacing:-18.496000pt;}
.ws2b{word-spacing:-18.024000pt;}
.ws15{word-spacing:-17.531733pt;}
.ws23{word-spacing:-17.392800pt;}
.wsb{word-spacing:-15.348800pt;}
.ws6f{word-spacing:-15.161600pt;}
.ws1a{word-spacing:-14.522933pt;}
.ws54{word-spacing:-13.874400pt;}
.ws76{word-spacing:-13.375200pt;}
.ws2a{word-spacing:-12.736000pt;}
.ws1b{word-spacing:-11.324000pt;}
.ws12{word-spacing:-10.168533pt;}
.ws21{word-spacing:-10.043733pt;}
.wsc{word-spacing:-9.600000pt;}
.ws4a{word-spacing:-8.569067pt;}
.ws70{word-spacing:-8.120000pt;}
.ws36{word-spacing:-8.113067pt;}
.ws5c{word-spacing:-7.606400pt;}
.ws67{word-spacing:-6.392000pt;}
.ws53{word-spacing:-2.373333pt;}
.wsa{word-spacing:-1.713600pt;}
.ws11{word-spacing:-0.440000pt;}
.ws57{word-spacing:0.000000pt;}
.ws48{word-spacing:0.846400pt;}
.ws1e{word-spacing:1.472000pt;}
.ws72{word-spacing:2.112000pt;}
.ws1c{word-spacing:2.248800pt;}
.ws19{word-spacing:4.057600pt;}
.ws20{word-spacing:4.674400pt;}
.ws66{word-spacing:8.713600pt;}
.ws2f{word-spacing:8.960000pt;}
.ws35{word-spacing:11.718400pt;}
.ws10{word-spacing:13.958400pt;}
.ws9{word-spacing:15.559733pt;}
.ws7e{word-spacing:16.028800pt;}
.ws27{word-spacing:20.043200pt;}
.ws7b{word-spacing:23.872000pt;}
.ws34{word-spacing:24.840800pt;}
.ws73{word-spacing:26.694400pt;}
.ws8{word-spacing:29.306667pt;}
.ws75{word-spacing:42.432000pt;}
.ws77{word-spacing:62.144000pt;}
.ws47{word-spacing:153.172800pt;}
.ws46{word-spacing:217.350933pt;}
.ws4c{word-spacing:385.026400pt;}
.ws16{word-spacing:448.227200pt;}
.ws1{word-spacing:922.208800pt;}
._8{margin-left:-1.994933pt;}
._2{margin-left:-0.906400pt;}
._0{width:0.956800pt;}
._e{width:1.949067pt;}
._1{width:16.860800pt;}
._14{width:17.760533pt;}
._12{width:19.565600pt;}
._17{width:20.925600pt;}
._9{width:22.417333pt;}
._1e{width:24.445333pt;}
._b{width:25.516267pt;}
._20{width:26.701600pt;}
._18{width:27.956800pt;}
._1d{width:28.858933pt;}
._1c{width:29.850667pt;}
._c{width:30.891733pt;}
._d{width:33.273600pt;}
._6{width:35.572800pt;}
._5{width:36.810400pt;}
._10{width:39.725067pt;}
._7{width:41.152000pt;}
._1a{width:42.545067pt;}
._1f{width:44.276000pt;}
._4{width:49.132267pt;}
._a{width:50.369333pt;}
._11{width:52.544000pt;}
._13{width:55.608800pt;}
._16{width:59.715200pt;}
._19{width:62.513600pt;}
._3{width:66.878133pt;}
._15{width:70.836800pt;}
._1b{width:73.600000pt;}
._21{width:77.492267pt;}
._24{width:79.232000pt;}
._23{width:80.256000pt;}
._22{width:113.088000pt;}
._f{width:498.944000pt;}
.fs1{font-size:53.066667pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y3b{bottom:3.413333pt;}
.y3f{bottom:3.441333pt;}
.y42{bottom:3.466667pt;}
.y56{bottom:4.066667pt;}
.y45{bottom:4.226667pt;}
.y4{bottom:10.880000pt;}
.y3e{bottom:21.841333pt;}
.y41{bottom:21.866667pt;}
.y44{bottom:22.466667pt;}
.y3d{bottom:40.240000pt;}
.y3{bottom:56.866667pt;}
.y2c{bottom:108.066667pt;}
.y65{bottom:118.146667pt;}
.y2b{bottom:126.466667pt;}
.y64{bottom:136.546667pt;}
.y50{bottom:140.546667pt;}
.y2a{bottom:144.866667pt;}
.y63{bottom:154.946667pt;}
.y4f{bottom:158.946667pt;}
.y29{bottom:163.266667pt;}
.y62{bottom:173.346667pt;}
.y28{bottom:181.666667pt;}
.y4e{bottom:196.066667pt;}
.y27{bottom:200.066667pt;}
.y61{bottom:210.466667pt;}
.y4d{bottom:214.466667pt;}
.y60{bottom:228.866667pt;}
.y4c{bottom:232.866667pt;}
.y26{bottom:237.188000pt;}
.y5f{bottom:247.266667pt;}
.y4b{bottom:251.266667pt;}
.y25{bottom:255.588000pt;}
.y4a{bottom:269.666667pt;}
.y24{bottom:273.988000pt;}
.y5e{bottom:284.226667pt;}
.y23{bottom:292.388000pt;}
.y5d{bottom:302.626667pt;}
.y49{bottom:306.626667pt;}
.y22{bottom:310.788000pt;}
.y5c{bottom:321.026667pt;}
.y5b{bottom:339.426667pt;}
.y48{bottom:343.746667pt;}
.y21{bottom:347.746667pt;}
.y20{bottom:366.146667pt;}
.y5a{bottom:376.546667pt;}
.y47{bottom:380.866667pt;}
.y1f{bottom:384.546667pt;}
.y59{bottom:394.946667pt;}
.y46{bottom:399.266667pt;}
.y1e{bottom:402.946667pt;}
.y1d{bottom:421.346667pt;}
.y58{bottom:432.066667pt;}
.y43{bottom:432.800000pt;}
.y1c{bottom:439.746667pt;}
.y57{bottom:450.466667pt;}
.y40{bottom:471.000000pt;}
.y1b{bottom:476.866667pt;}
.y7d{bottom:477.988000pt;}
.y55{bottom:484.000000pt;}
.y1a{bottom:495.266667pt;}
.y7c{bottom:496.388000pt;}
.y54{bottom:503.800000pt;}
.y3c{bottom:508.466667pt;}
.y19{bottom:513.666667pt;}
.y7b{bottom:514.788000pt;}
.y53{bottom:522.866667pt;}
.y18{bottom:532.066667pt;}
.y7a{bottom:533.188000pt;}
.y52{bottom:541.933333pt;}
.y17{bottom:550.466667pt;}
.y79{bottom:551.588000pt;}
.y3a{bottom:564.333333pt;}
.y16{bottom:568.866667pt;}
.y78{bottom:569.988000pt;}
.y15{bottom:587.266667pt;}
.y77{bottom:588.388000pt;}
.y39{bottom:605.506667pt;}
.y14{bottom:605.666667pt;}
.y76{bottom:606.788000pt;}
.y51{bottom:620.066667pt;}
.y13{bottom:624.066667pt;}
.y75{bottom:625.188000pt;}
.y38{bottom:642.466667pt;}
.y74{bottom:643.588000pt;}
.y12{bottom:661.188000pt;}
.y73{bottom:661.988000pt;}
.y11{bottom:679.588000pt;}
.y72{bottom:680.388000pt;}
.y71{bottom:698.788000pt;}
.y10{bottom:716.546667pt;}
.y37{bottom:716.706667pt;}
.y70{bottom:717.188000pt;}
.yf{bottom:734.946667pt;}
.y36{bottom:735.108000pt;}
.y6f{bottom:735.588000pt;}
.ye{bottom:753.346667pt;}
.y35{bottom:753.506667pt;}
.yd{bottom:771.746667pt;}
.y6e{bottom:772.706667pt;}
.yc{bottom:790.146667pt;}
.y34{bottom:790.466667pt;}
.yb{bottom:808.546667pt;}
.y6d{bottom:809.666667pt;}
.ya{bottom:826.946667pt;}
.y33{bottom:827.588000pt;}
.y6c{bottom:828.066667pt;}
.y32{bottom:845.988000pt;}
.y6b{bottom:846.466667pt;}
.y9{bottom:864.066667pt;}
.y31{bottom:864.388000pt;}
.y6a{bottom:864.866667pt;}
.y8{bottom:882.466667pt;}
.y30{bottom:882.788000pt;}
.y69{bottom:883.266667pt;}
.y68{bottom:901.666667pt;}
.y2f{bottom:919.906667pt;}
.y67{bottom:920.066667pt;}
.y66{bottom:938.466667pt;}
.y2e{bottom:956.866667pt;}
.y7{bottom:975.266667pt;}
.y2d{bottom:993.666667pt;}
.y6{bottom:1012.388000pt;}
.y5{bottom:1030.788000pt;}
.y2{bottom:1069.026667pt;}
.y1{bottom:1088.706667pt;}
.h8{height:19.000000pt;}
.hc{height:19.733333pt;}
.h3{height:29.066667pt;}
.ha{height:37.400000pt;}
.hb{height:38.133333pt;}
.h5{height:43.343750pt;}
.h2{height:43.375000pt;}
.h4{height:43.531250pt;}
.h6{height:44.437500pt;}
.h9{height:55.800000pt;}
.h7{height:56.406250pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w9{width:122.066667pt;}
.w6{width:144.266667pt;}
.w3{width:146.933333pt;}
.w8{width:167.866667pt;}
.w7{width:198.066667pt;}
.w5{width:276.733333pt;}
.w4{width:280.733333pt;}
.w2{width:631.266667pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:10.453333pt;}
.xa{left:40.066667pt;}
.xb{left:71.133333pt;}
.x1{left:111.040000pt;}
.x3{left:113.066667pt;}
.xe{left:115.200000pt;}
.x2{left:142.720000pt;}
.x8{left:146.720000pt;}
.x9{left:169.440000pt;}
.xf{left:184.266667pt;}
.xc{left:186.933333pt;}
.x6{left:330.878667pt;}
.x10{left:382.266667pt;}
.xd{left:467.600000pt;}
.x11{left:550.066667pt;}
.x7{left:562.720000pt;}
.x5{left:608.640000pt;}
}




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