
    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_64833a3e93695c4c3d312c33.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.929000;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_483649c1010a46d9462ea58b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.042000;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_cccd42590ba02bda784048d9.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.724000;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_f4f57ef16a01a2b2122a3253.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.022000;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_04dab155ee1bfe58e914ebab.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.032000;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_1559bd063cca52d79faf8b38.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_bc7939e715bc946eaabac9d1.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.017000;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_483649c1010a46d9462ea58b.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.042000;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_483649c1010a46d9462ea58b.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.042000;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_9003e954d8fff7aada006cff.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.944000;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.241481,0.000000,-0.064705,0.241481,0,0);-ms-transform:matrix(0.241481,0.000000,-0.064705,0.241481,0,0);-webkit-transform:matrix(0.241481,0.000000,-0.064705,0.241481,0,0);}
.m3{transform:matrix(0.241482,0.000000,-0.064704,0.241482,0,0);-ms-transform:matrix(0.241482,0.000000,-0.064704,0.241482,0,0);-webkit-transform:matrix(0.241482,0.000000,-0.064704,0.241482,0,0);}
.m4{transform:matrix(0.247567,0.000000,-0.034794,0.247567,0,0);-ms-transform:matrix(0.247567,0.000000,-0.034794,0.247567,0,0);-webkit-transform:matrix(0.247567,0.000000,-0.034794,0.247567,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;}
.v1{vertical-align:19.980000px;}
.ls2{letter-spacing:-0.336000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.450000px;}
.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;}
}
.wsb{word-spacing:-20.160000px;}
.ws8{word-spacing:-15.240000px;}
.wsa{word-spacing:-13.800000px;}
.ws4{word-spacing:-13.770000px;}
.ws3{word-spacing:-12.671783px;}
.ws1{word-spacing:-12.240000px;}
.wsd{word-spacing:-11.952000px;}
.ws0{word-spacing:-11.904000px;}
.wsc{word-spacing:-11.328000px;}
.ws2{word-spacing:-11.136000px;}
.ws6{word-spacing:-10.890000px;}
.ws5{word-spacing:-8.884920px;}
.wse{word-spacing:-0.180000px;}
.ws9{word-spacing:-0.060000px;}
.ws10{word-spacing:-0.048000px;}
.ws7{word-spacing:0.000000px;}
.ws11{word-spacing:20.976000px;}
.wsf{word-spacing:46.032000px;}
._b{margin-left:-1306.308600px;}
._d{margin-left:-46.032600px;}
._11{margin-left:-20.977200px;}
._9{margin-left:-19.452000px;}
._8{margin-left:-15.824400px;}
._a{margin-left:-14.388600px;}
._3{margin-left:-12.528000px;}
._12{margin-left:-11.043000px;}
._7{margin-left:-6.818400px;}
._2{margin-left:-5.536200px;}
._5{margin-left:-3.732000px;}
._1{margin-left:-2.640000px;}
._0{margin-left:-1.524600px;}
._4{width:1.680600px;}
._6{width:2.724600px;}
._c{width:3.729000px;}
._f{width:11.947200px;}
._10{width:20.974200px;}
._e{width:46.080000px;}
.fc2{color:rgb(101,98,99);}
.fc3{color:rgb(254,0,0);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(35,31,32);}
.fs7{font-size:34.980000px;}
.fs9{font-size:45.000000px;}
.fs1{font-size:48.000000px;}
.fs2{font-size:49.693267px;}
.fs5{font-size:54.000000px;}
.fsc{font-size:54.530716px;}
.fsb{font-size:55.904847px;}
.fsa{font-size:57.000000px;}
.fs6{font-size:60.000000px;}
.fs4{font-size:63.000000px;}
.fs0{font-size:66.000000px;}
.fs8{font-size:84.000000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y3e{bottom:46.444500px;}
.y3d{bottom:61.444500px;}
.y3f{bottom:74.725500px;}
.y3c{bottom:76.444500px;}
.y1b{bottom:127.559100px;}
.y58{bottom:128.398650px;}
.y3b{bottom:131.743200px;}
.y90{bottom:135.910800px;}
.y7b{bottom:142.557000px;}
.y1a{bottom:144.059100px;}
.y57{bottom:149.398650px;}
.y6d{bottom:151.122450px;}
.y3a{bottom:152.743200px;}
.y8f{bottom:156.910800px;}
.ybf{bottom:159.820050px;}
.y19{bottom:160.559100px;}
.y7a{bottom:163.557000px;}
.y6c{bottom:172.122450px;}
.y39{bottom:173.743200px;}
.ybe{bottom:174.070050px;}
.y18{bottom:177.059100px;}
.y8e{bottom:177.910800px;}
.y56{bottom:178.902600px;}
.y79{bottom:193.060950px;}
.y6b{bottom:193.122450px;}
.y38{bottom:194.743200px;}
.ybd{bottom:196.823850px;}
.y8d{bottom:198.910800px;}
.y17{bottom:210.059100px;}
.y6a{bottom:214.122450px;}
.y37{bottom:215.743200px;}
.ybc{bottom:219.577950px;}
.y8c{bottom:219.910800px;}
.y55{bottom:223.152600px;}
.y16{bottom:226.559100px;}
.ybb{bottom:233.827950px;}
.y69{bottom:235.122450px;}
.y36{bottom:236.743200px;}
.y8b{bottom:240.910800px;}
.y78{bottom:241.562850px;}
.y54{bottom:242.652600px;}
.y15{bottom:243.059100px;}
.y68{bottom:256.122450px;}
.yba{bottom:256.581750px;}
.y35{bottom:257.743200px;}
.y14{bottom:259.559100px;}
.y8a{bottom:261.910800px;}
.y77{bottom:262.562850px;}
.yb9{bottom:270.831750px;}
.y13{bottom:276.059100px;}
.y67{bottom:277.122450px;}
.y34{bottom:278.743200px;}
.y89{bottom:282.910800px;}
.y76{bottom:283.562850px;}
.yb8{bottom:293.585700px;}
.y66{bottom:298.122450px;}
.y88{bottom:303.910800px;}
.y33{bottom:303.995250px;}
.y75{bottom:304.562850px;}
.yb7{bottom:307.835700px;}
.y12{bottom:309.059100px;}
.y65{bottom:319.122450px;}
.y87{bottom:324.910800px;}
.y32{bottom:324.995250px;}
.y11{bottom:325.559100px;}
.y74{bottom:325.562850px;}
.yb6{bottom:330.589650px;}
.y64{bottom:340.122450px;}
.y10{bottom:342.059100px;}
.yb5{bottom:344.839650px;}
.y86{bottom:345.910800px;}
.y31{bottom:345.995250px;}
.y73{bottom:346.562850px;}
.yf{bottom:358.559100px;}
.yb4{bottom:359.089650px;}
.y63{bottom:365.374350px;}
.y85{bottom:366.910800px;}
.y30{bottom:366.995250px;}
.y72{bottom:367.562850px;}
.ye{bottom:375.059100px;}
.yb3{bottom:381.843600px;}
.y62{bottom:386.374350px;}
.y84{bottom:387.910800px;}
.y2f{bottom:387.995250px;}
.y71{bottom:388.562850px;}
.yd{bottom:391.559100px;}
.yb2{bottom:396.093600px;}
.y61{bottom:407.374350px;}
.yc{bottom:408.059100px;}
.y83{bottom:408.910800px;}
.y2e{bottom:408.995250px;}
.y70{bottom:409.562850px;}
.yb1{bottom:410.343600px;}
.yb{bottom:424.559100px;}
.y60{bottom:428.374350px;}
.y2d{bottom:429.995250px;}
.y6f{bottom:430.562850px;}
.yb0{bottom:433.097550px;}
.y82{bottom:434.162850px;}
.ya{bottom:441.059100px;}
.y2c{bottom:450.995250px;}
.y6e{bottom:451.562850px;}
.y81{bottom:455.162850px;}
.yaf{bottom:455.851500px;}
.y9{bottom:457.559100px;}
.y2b{bottom:471.995250px;}
.y8{bottom:474.059100px;}
.y80{bottom:476.162850px;}
.y5f{bottom:476.374350px;}
.yae{bottom:478.605450px;}
.y7{bottom:490.559100px;}
.yad{bottom:492.855450px;}
.y2a{bottom:492.995250px;}
.y7f{bottom:497.162850px;}
.y7c{bottom:506.624700px;}
.y6{bottom:507.059100px;}
.yac{bottom:507.105450px;}
.y29{bottom:513.995250px;}
.y7e{bottom:518.162850px;}
.y5{bottom:523.559100px;}
.yab{bottom:529.859400px;}
.y28{bottom:534.995250px;}
.y7d{bottom:539.162850px;}
.y4{bottom:540.059100px;}
.yaa{bottom:544.109400px;}
.y27{bottom:555.995250px;}
.y3{bottom:556.559100px;}
.ya9{bottom:566.863350px;}
.y26{bottom:585.499200px;}
.ya8{bottom:589.617300px;}
.y91{bottom:590.000550px;}
.ya7{bottom:603.867300px;}
.ydb{bottom:619.243500px;}
.ya6{bottom:626.621100px;}
.y25{bottom:634.001100px;}
.yda{bottom:641.997450px;}
.ya5{bottom:649.375050px;}
.y24{bottom:655.001100px;}
.ya4{bottom:663.625050px;}
.yd9{bottom:664.751400px;}
.y53{bottom:669.178650px;}
.y23{bottom:676.001100px;}
.yd8{bottom:679.001400px;}
.ya3{bottom:686.379000px;}
.y52{bottom:690.178650px;}
.yd7{bottom:693.251400px;}
.y22{bottom:697.001100px;}
.ya2{bottom:700.629000px;}
.y51{bottom:711.178650px;}
.yd6{bottom:716.005350px;}
.y21{bottom:718.001100px;}
.ya1{bottom:723.382950px;}
.yd5{bottom:730.255350px;}
.y50{bottom:732.178650px;}
.ya0{bottom:737.632950px;}
.y20{bottom:739.001100px;}
.yd4{bottom:744.505350px;}
.y4f{bottom:757.430550px;}
.yd3{bottom:758.755350px;}
.y9f{bottom:760.386900px;}
.y9e{bottom:774.636900px;}
.y4e{bottom:778.430550px;}
.yd2{bottom:781.509300px;}
.y9d{bottom:788.886900px;}
.y1f{bottom:790.001100px;}
.yd1{bottom:795.759300px;}
.y4d{bottom:799.430550px;}
.yd0{bottom:810.009300px;}
.y9c{bottom:811.640850px;}
.y4c{bottom:820.430550px;}
.ycf{bottom:832.763250px;}
.y1e{bottom:833.253000px;}
.yce{bottom:847.013250px;}
.y4b{bottom:849.934500px;}
.y9b{bottom:860.688450px;}
.ycd{bottom:869.767050px;}
.y1d{bottom:878.512950px;}
.y9a{bottom:881.688450px;}
.y2{bottom:883.121550px;}
.ycc{bottom:892.521000px;}
.y4a{bottom:898.436400px;}
.y99{bottom:902.688450px;}
.ycb{bottom:906.771000px;}
.y1c{bottom:916.012950px;}
.y49{bottom:919.436400px;}
.y98{bottom:923.688450px;}
.y1{bottom:925.629300px;}
.yca{bottom:929.524950px;}
.y48{bottom:940.436400px;}
.yc9{bottom:943.774950px;}
.y97{bottom:944.688450px;}
.y47{bottom:961.436400px;}
.y96{bottom:965.688450px;}
.yc8{bottom:966.528900px;}
.y46{bottom:982.436400px;}
.y95{bottom:986.688450px;}
.yc7{bottom:989.282850px;}
.y45{bottom:1003.436400px;}
.yc6{bottom:1003.532850px;}
.y94{bottom:1007.688450px;}
.y44{bottom:1024.436400px;}
.yc5{bottom:1026.286800px;}
.y5e{bottom:1028.688300px;}
.y93{bottom:1028.688450px;}
.yc4{bottom:1040.536800px;}
.y43{bottom:1045.436400px;}
.y5d{bottom:1049.688300px;}
.y92{bottom:1049.688450px;}
.yc3{bottom:1063.290750px;}
.y5c{bottom:1070.688300px;}
.y42{bottom:1070.688450px;}
.yc2{bottom:1077.540750px;}
.y5b{bottom:1091.688300px;}
.y41{bottom:1091.688450px;}
.yc1{bottom:1100.294700px;}
.y5a{bottom:1112.688300px;}
.y40{bottom:1112.688450px;}
.yc0{bottom:1114.544700px;}
.y59{bottom:1188.525900px;}
.hd{height:36.270000px;}
.h4{height:38.688000px;}
.h5{height:40.052773px;}
.h8{height:43.524000px;}
.h11{height:43.951757px;}
.h9{height:44.820000px;}
.h10{height:45.059307px;}
.h7{height:45.234000px;}
.hf{height:45.942000px;}
.hc{height:46.109460px;}
.ha{height:46.110060px;}
.he{height:46.110660px;}
.h2{height:47.388000px;}
.h3{height:53.196000px;}
.hb{height:60.312000px;}
.h6{height:77.544000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:62.279550px;}
.x1{left:63.779550px;}
.x3{left:100.643250px;}
.x2{left:148.989900px;}
.x7{left:179.432850px;}
.x8{left:196.440750px;}
.xf{left:227.267850px;}
.x10{left:235.432950px;}
.x4{left:260.433150px;}
.x5{left:277.440900px;}
.x9{left:283.853400px;}
.xc{left:307.033050px;}
.xd{left:310.516050px;}
.xe{left:317.266050px;}
.xa{left:346.082400px;}
.xb{left:798.745800px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.760000pt;}
.ls2{letter-spacing:-0.298667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.400000pt;}
.wsb{word-spacing:-17.920000pt;}
.ws8{word-spacing:-13.546667pt;}
.wsa{word-spacing:-12.266667pt;}
.ws4{word-spacing:-12.240000pt;}
.ws3{word-spacing:-11.263807pt;}
.ws1{word-spacing:-10.880000pt;}
.wsd{word-spacing:-10.624000pt;}
.ws0{word-spacing:-10.581333pt;}
.wsc{word-spacing:-10.069333pt;}
.ws2{word-spacing:-9.898667pt;}
.ws6{word-spacing:-9.680000pt;}
.ws5{word-spacing:-7.897707pt;}
.wse{word-spacing:-0.160000pt;}
.ws9{word-spacing:-0.053333pt;}
.ws10{word-spacing:-0.042667pt;}
.ws7{word-spacing:0.000000pt;}
.ws11{word-spacing:18.645333pt;}
.wsf{word-spacing:40.917333pt;}
._b{margin-left:-1161.163200pt;}
._d{margin-left:-40.917867pt;}
._11{margin-left:-18.646400pt;}
._9{margin-left:-17.290667pt;}
._8{margin-left:-14.066133pt;}
._a{margin-left:-12.789867pt;}
._3{margin-left:-11.136000pt;}
._12{margin-left:-9.816000pt;}
._7{margin-left:-6.060800pt;}
._2{margin-left:-4.921067pt;}
._5{margin-left:-3.317333pt;}
._1{margin-left:-2.346667pt;}
._0{margin-left:-1.355200pt;}
._4{width:1.493867pt;}
._6{width:2.421867pt;}
._c{width:3.314667pt;}
._f{width:10.619733pt;}
._10{width:18.643733pt;}
._e{width:40.960000pt;}
.fs7{font-size:31.093333pt;}
.fs9{font-size:40.000000pt;}
.fs1{font-size:42.666667pt;}
.fs2{font-size:44.171793pt;}
.fs5{font-size:48.000000pt;}
.fsc{font-size:48.471748pt;}
.fsb{font-size:49.693198pt;}
.fsa{font-size:50.666667pt;}
.fs6{font-size:53.333333pt;}
.fs4{font-size:56.000000pt;}
.fs0{font-size:58.666667pt;}
.fs8{font-size:74.666667pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y3e{bottom:41.284000pt;}
.y3d{bottom:54.617333pt;}
.y3f{bottom:66.422667pt;}
.y3c{bottom:67.950667pt;}
.y1b{bottom:113.385867pt;}
.y58{bottom:114.132133pt;}
.y3b{bottom:117.105067pt;}
.y90{bottom:120.809600pt;}
.y7b{bottom:126.717333pt;}
.y1a{bottom:128.052533pt;}
.y57{bottom:132.798800pt;}
.y6d{bottom:134.331067pt;}
.y3a{bottom:135.771733pt;}
.y8f{bottom:139.476267pt;}
.ybf{bottom:142.062267pt;}
.y19{bottom:142.719200pt;}
.y7a{bottom:145.384000pt;}
.y6c{bottom:152.997733pt;}
.y39{bottom:154.438400pt;}
.ybe{bottom:154.728933pt;}
.y18{bottom:157.385867pt;}
.y8e{bottom:158.142933pt;}
.y56{bottom:159.024533pt;}
.y79{bottom:171.609733pt;}
.y6b{bottom:171.664400pt;}
.y38{bottom:173.105067pt;}
.ybd{bottom:174.954533pt;}
.y8d{bottom:176.809600pt;}
.y17{bottom:186.719200pt;}
.y6a{bottom:190.331067pt;}
.y37{bottom:191.771733pt;}
.ybc{bottom:195.180400pt;}
.y8c{bottom:195.476267pt;}
.y55{bottom:198.357867pt;}
.y16{bottom:201.385867pt;}
.ybb{bottom:207.847067pt;}
.y69{bottom:208.997733pt;}
.y36{bottom:210.438400pt;}
.y8b{bottom:214.142933pt;}
.y78{bottom:214.722533pt;}
.y54{bottom:215.691200pt;}
.y15{bottom:216.052533pt;}
.y68{bottom:227.664400pt;}
.yba{bottom:228.072667pt;}
.y35{bottom:229.105067pt;}
.y14{bottom:230.719200pt;}
.y8a{bottom:232.809600pt;}
.y77{bottom:233.389200pt;}
.yb9{bottom:240.739333pt;}
.y13{bottom:245.385867pt;}
.y67{bottom:246.331067pt;}
.y34{bottom:247.771733pt;}
.y89{bottom:251.476267pt;}
.y76{bottom:252.055867pt;}
.yb8{bottom:260.965067pt;}
.y66{bottom:264.997733pt;}
.y88{bottom:270.142933pt;}
.y33{bottom:270.218000pt;}
.y75{bottom:270.722533pt;}
.yb7{bottom:273.631733pt;}
.y12{bottom:274.719200pt;}
.y65{bottom:283.664400pt;}
.y87{bottom:288.809600pt;}
.y32{bottom:288.884667pt;}
.y11{bottom:289.385867pt;}
.y74{bottom:289.389200pt;}
.yb6{bottom:293.857467pt;}
.y64{bottom:302.331067pt;}
.y10{bottom:304.052533pt;}
.yb5{bottom:306.524133pt;}
.y86{bottom:307.476267pt;}
.y31{bottom:307.551333pt;}
.y73{bottom:308.055867pt;}
.yf{bottom:318.719200pt;}
.yb4{bottom:319.190800pt;}
.y63{bottom:324.777200pt;}
.y85{bottom:326.142933pt;}
.y30{bottom:326.218000pt;}
.y72{bottom:326.722533pt;}
.ye{bottom:333.385867pt;}
.yb3{bottom:339.416533pt;}
.y62{bottom:343.443867pt;}
.y84{bottom:344.809600pt;}
.y2f{bottom:344.884667pt;}
.y71{bottom:345.389200pt;}
.yd{bottom:348.052533pt;}
.yb2{bottom:352.083200pt;}
.y61{bottom:362.110533pt;}
.yc{bottom:362.719200pt;}
.y83{bottom:363.476267pt;}
.y2e{bottom:363.551333pt;}
.y70{bottom:364.055867pt;}
.yb1{bottom:364.749867pt;}
.yb{bottom:377.385867pt;}
.y60{bottom:380.777200pt;}
.y2d{bottom:382.218000pt;}
.y6f{bottom:382.722533pt;}
.yb0{bottom:384.975600pt;}
.y82{bottom:385.922533pt;}
.ya{bottom:392.052533pt;}
.y2c{bottom:400.884667pt;}
.y6e{bottom:401.389200pt;}
.y81{bottom:404.589200pt;}
.yaf{bottom:405.201333pt;}
.y9{bottom:406.719200pt;}
.y2b{bottom:419.551333pt;}
.y8{bottom:421.385867pt;}
.y80{bottom:423.255867pt;}
.y5f{bottom:423.443867pt;}
.yae{bottom:425.427067pt;}
.y7{bottom:436.052533pt;}
.yad{bottom:438.093733pt;}
.y2a{bottom:438.218000pt;}
.y7f{bottom:441.922533pt;}
.y7c{bottom:450.333067pt;}
.y6{bottom:450.719200pt;}
.yac{bottom:450.760400pt;}
.y29{bottom:456.884667pt;}
.y7e{bottom:460.589200pt;}
.y5{bottom:465.385867pt;}
.yab{bottom:470.986133pt;}
.y28{bottom:475.551333pt;}
.y7d{bottom:479.255867pt;}
.y4{bottom:480.052533pt;}
.yaa{bottom:483.652800pt;}
.y27{bottom:494.218000pt;}
.y3{bottom:494.719200pt;}
.ya9{bottom:503.878533pt;}
.y26{bottom:520.443733pt;}
.ya8{bottom:524.104267pt;}
.y91{bottom:524.444933pt;}
.ya7{bottom:536.770933pt;}
.ydb{bottom:550.438667pt;}
.ya6{bottom:556.996533pt;}
.y25{bottom:563.556533pt;}
.yda{bottom:570.664400pt;}
.ya5{bottom:577.222267pt;}
.y24{bottom:582.223200pt;}
.ya4{bottom:589.888933pt;}
.yd9{bottom:590.890133pt;}
.y53{bottom:594.825467pt;}
.y23{bottom:600.889867pt;}
.yd8{bottom:603.556800pt;}
.ya3{bottom:610.114667pt;}
.y52{bottom:613.492133pt;}
.yd7{bottom:616.223467pt;}
.y22{bottom:619.556533pt;}
.ya2{bottom:622.781333pt;}
.y51{bottom:632.158800pt;}
.yd6{bottom:636.449200pt;}
.y21{bottom:638.223200pt;}
.ya1{bottom:643.007067pt;}
.yd5{bottom:649.115867pt;}
.y50{bottom:650.825467pt;}
.ya0{bottom:655.673733pt;}
.y20{bottom:656.889867pt;}
.yd4{bottom:661.782533pt;}
.y4f{bottom:673.271600pt;}
.yd3{bottom:674.449200pt;}
.y9f{bottom:675.899467pt;}
.y9e{bottom:688.566133pt;}
.y4e{bottom:691.938267pt;}
.yd2{bottom:694.674933pt;}
.y9d{bottom:701.232800pt;}
.y1f{bottom:702.223200pt;}
.yd1{bottom:707.341600pt;}
.y4d{bottom:710.604933pt;}
.yd0{bottom:720.008267pt;}
.y9c{bottom:721.458533pt;}
.y4c{bottom:729.271600pt;}
.ycf{bottom:740.234000pt;}
.y1e{bottom:740.669333pt;}
.yce{bottom:752.900667pt;}
.y4b{bottom:755.497333pt;}
.y9b{bottom:765.056400pt;}
.ycd{bottom:773.126267pt;}
.y1d{bottom:780.900400pt;}
.y9a{bottom:783.723067pt;}
.y2{bottom:784.996933pt;}
.ycc{bottom:793.352000pt;}
.y4a{bottom:798.610133pt;}
.y99{bottom:802.389733pt;}
.ycb{bottom:806.018667pt;}
.y1c{bottom:814.233733pt;}
.y49{bottom:817.276800pt;}
.y98{bottom:821.056400pt;}
.y1{bottom:822.781600pt;}
.yca{bottom:826.244400pt;}
.y48{bottom:835.943467pt;}
.yc9{bottom:838.911067pt;}
.y97{bottom:839.723067pt;}
.y47{bottom:854.610133pt;}
.y96{bottom:858.389733pt;}
.yc8{bottom:859.136800pt;}
.y46{bottom:873.276800pt;}
.y95{bottom:877.056400pt;}
.yc7{bottom:879.362533pt;}
.y45{bottom:891.943467pt;}
.yc6{bottom:892.029200pt;}
.y94{bottom:895.723067pt;}
.y44{bottom:910.610133pt;}
.yc5{bottom:912.254933pt;}
.y5e{bottom:914.389600pt;}
.y93{bottom:914.389733pt;}
.yc4{bottom:924.921600pt;}
.y43{bottom:929.276800pt;}
.y5d{bottom:933.056267pt;}
.y92{bottom:933.056400pt;}
.yc3{bottom:945.147333pt;}
.y5c{bottom:951.722933pt;}
.y42{bottom:951.723067pt;}
.yc2{bottom:957.814000pt;}
.y5b{bottom:970.389600pt;}
.y41{bottom:970.389733pt;}
.yc1{bottom:978.039733pt;}
.y5a{bottom:989.056267pt;}
.y40{bottom:989.056400pt;}
.yc0{bottom:990.706400pt;}
.y59{bottom:1056.467467pt;}
.hd{height:32.240000pt;}
.h4{height:34.389333pt;}
.h5{height:35.602465pt;}
.h8{height:38.688000pt;}
.h11{height:39.068229pt;}
.h9{height:39.840000pt;}
.h10{height:40.052717pt;}
.h7{height:40.208000pt;}
.hf{height:40.837333pt;}
.hc{height:40.986187pt;}
.ha{height:40.986720pt;}
.he{height:40.987253pt;}
.h2{height:42.122667pt;}
.h3{height:47.285333pt;}
.hb{height:53.610667pt;}
.h6{height:68.928000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:55.359600pt;}
.x1{left:56.692933pt;}
.x3{left:89.460667pt;}
.x2{left:132.435467pt;}
.x7{left:159.495867pt;}
.x8{left:174.614000pt;}
.xf{left:202.015867pt;}
.x10{left:209.273733pt;}
.x4{left:231.496133pt;}
.x5{left:246.614133pt;}
.x9{left:252.314133pt;}
.xc{left:272.918267pt;}
.xd{left:276.014267pt;}
.xe{left:282.014267pt;}
.xa{left:307.628800pt;}
.xb{left:709.996267pt;}
}




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