
    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_78e9fe934eb715f564bd7f49.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_c9beb8563dc7ba174bcc30c0.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_e48b000cbd834393aedf05f2.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.070312;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_b4712456344537f652a8a97d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.201172;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_68e08d55b5b63c18dc2ef067.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.172852;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_34b74567d662ec3199f70349.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.172852;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_da8afd928f421cdb8206c473.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.962402;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);}
.v6{vertical-align:-34.560000px;}
.v4{vertical-align:-19.440000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:19.440000px;}
.v5{vertical-align:30.960000px;}
.v1{vertical-align:32.400000px;}
.v3{vertical-align:56.160000px;}
.ls23{letter-spacing:-8.220000px;}
.ls17{letter-spacing:-6.540000px;}
.ls1a{letter-spacing:-0.393600px;}
.ls1c{letter-spacing:-0.383400px;}
.ls22{letter-spacing:-0.367800px;}
.ls1d{letter-spacing:-0.346800px;}
.lsd{letter-spacing:-0.345600px;}
.ls18{letter-spacing:-0.310200px;}
.ls13{letter-spacing:-0.302400px;}
.lsc{letter-spacing:-0.270600px;}
.lse{letter-spacing:-0.229800px;}
.lsb{letter-spacing:-0.219600px;}
.ls5{letter-spacing:-0.216000px;}
.ls2{letter-spacing:-0.181200px;}
.ls14{letter-spacing:-0.178200px;}
.ls19{letter-spacing:-0.172800px;}
.ls1{letter-spacing:-0.144000px;}
.ls20{letter-spacing:-0.117600px;}
.lsa{letter-spacing:-0.109200px;}
.ls16{letter-spacing:-0.037440px;}
.ls15{letter-spacing:-0.036000px;}
.ls9{letter-spacing:-0.026640px;}
.ls0{letter-spacing:0.000000px;}
.ls26{letter-spacing:0.026520px;}
.ls21{letter-spacing:0.037440px;}
.ls25{letter-spacing:0.106800px;}
.ls6{letter-spacing:0.144000px;}
.ls1b{letter-spacing:0.203400px;}
.ls12{letter-spacing:13.915008px;}
.ls11{letter-spacing:13.986720px;}
.lsf{letter-spacing:14.455008px;}
.ls10{letter-spacing:14.526720px;}
.ls1e{letter-spacing:40.176000px;}
.ls24{letter-spacing:40.296000px;}
.ls4{letter-spacing:47.109600px;}
.ls3{letter-spacing:47.160000px;}
.ls8{letter-spacing:496.797312px;}
.ls7{letter-spacing:496.870320px;}
.ls1f{letter-spacing:564.598560px;}
.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;}
}
.ws36{word-spacing:-50.048640px;}
.ws6{word-spacing:-30.024000px;}
.ws3f{word-spacing:-29.696232px;}
.ws3e{word-spacing:-26.658720px;}
.ws42{word-spacing:-26.621280px;}
.ws22{word-spacing:-24.440544px;}
.ws24{word-spacing:-23.458752px;}
.ws30{word-spacing:-23.418720px;}
.ws26{word-spacing:-23.381280px;}
.ws40{word-spacing:-21.804000px;}
.ws28{word-spacing:-16.878720px;}
.ws35{word-spacing:-14.351904px;}
.wsa{word-spacing:-14.319360px;}
.ws3d{word-spacing:-13.410720px;}
.ws2e{word-spacing:-2.687616px;}
.ws14{word-spacing:-1.900800px;}
.wsb{word-spacing:-1.837440px;}
.ws17{word-spacing:-1.597248px;}
.ws1a{word-spacing:-1.532160px;}
.ws9{word-spacing:-1.428480px;}
.ws33{word-spacing:-1.328112px;}
.ws12{word-spacing:-1.248480px;}
.ws21{word-spacing:-1.180800px;}
.ws2f{word-spacing:-1.169280px;}
.ws1f{word-spacing:-1.117440px;}
.ws1c{word-spacing:-1.082880px;}
.ws38{word-spacing:-1.077120px;}
.ws2b{word-spacing:-0.944640px;}
.ws1d{word-spacing:-0.771840px;}
.ws8{word-spacing:-0.693360px;}
.ws37{word-spacing:-0.558720px;}
.ws18{word-spacing:-0.534240px;}
.ws1e{word-spacing:-0.505440px;}
.ws10{word-spacing:-0.460800px;}
.ws31{word-spacing:-0.414720px;}
.wse{word-spacing:-0.411120px;}
.ws1b{word-spacing:-0.397440px;}
.ws2a{word-spacing:-0.280800px;}
.ws3b{word-spacing:-0.259200px;}
.wsc{word-spacing:-0.224640px;}
.ws3c{word-spacing:-0.218880px;}
.ws0{word-spacing:-0.156000px;}
.ws39{word-spacing:-0.027360px;}
.ws4{word-spacing:0.000000px;}
.ws2c{word-spacing:0.132480px;}
.ws1{word-spacing:0.144000px;}
.ws41{word-spacing:0.300000px;}
.ws2d{word-spacing:0.488448px;}
.ws15{word-spacing:0.501120px;}
.ws20{word-spacing:0.681120px;}
.ws13{word-spacing:0.736920px;}
.ws34{word-spacing:0.813168px;}
.ws5{word-spacing:0.864000px;}
.ws3{word-spacing:0.900720px;}
.ws2{word-spacing:1.044000px;}
.ws7{word-spacing:10.224000px;}
.ws3a{word-spacing:431.722560px;}
.ws29{word-spacing:453.988200px;}
.ws32{word-spacing:454.029240px;}
.ws19{word-spacing:457.411800px;}
.ws25{word-spacing:462.271800px;}
.ws23{word-spacing:462.311040px;}
.ws16{word-spacing:548.662560px;}
.wsf{word-spacing:1118.286384px;}
.ws11{word-spacing:1118.362560px;}
.wsd{word-spacing:1202.602560px;}
.ws27{word-spacing:1282.159200px;}
._5{margin-left:-3183.064800px;}
._27{margin-left:-725.917440px;}
._3{margin-left:-10.656000px;}
._2a{margin-left:-7.656000px;}
._6{margin-left:-6.540000px;}
._9{margin-left:-5.304000px;}
._a{margin-left:-4.154160px;}
._0{margin-left:-3.024000px;}
._2{margin-left:-1.008000px;}
._1{width:1.728000px;}
._7{width:3.312000px;}
._1f{width:6.525120px;}
._29{width:7.944000px;}
._1b{width:11.386560px;}
._10{width:12.666240px;}
._e{width:14.221440px;}
._28{width:21.688608px;}
._4{width:27.189840px;}
._8{width:31.188000px;}
._b{width:32.273280px;}
._26{width:38.714160px;}
._d{width:198.813984px;}
._22{width:200.995680px;}
._21{width:238.781280px;}
._23{width:260.381280px;}
._13{width:278.756016px;}
._1c{width:280.575840px;}
._18{width:359.406240px;}
._c{width:362.377824px;}
._19{width:367.020960px;}
._12{width:423.921120px;}
._14{width:431.204640px;}
._24{width:472.463040px;}
._25{width:484.731840px;}
._15{width:612.484800px;}
._17{width:643.035840px;}
._16{width:775.832640px;}
._20{width:815.622240px;}
._11{width:824.464320px;}
._1d{width:827.142240px;}
._1a{width:918.144480px;}
._1e{width:957.024480px;}
._f{width:959.052480px;}
.fc5{color:rgb(79,129,189);}
.fc3{color:rgb(255,0,0);}
.fc4{color:rgb(0,176,80);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(104,104,104);}
.fs1{font-size:48.240000px;}
.fs7{font-size:63.360000px;}
.fs8{font-size:63.504000px;}
.fs4{font-size:72.000000px;}
.fs6{font-size:84.240000px;}
.fs9{font-size:84.384000px;}
.fsa{font-size:95.760000px;}
.fsb{font-size:95.904000px;}
.fs2{font-size:108.000000px;}
.fs3{font-size:108.144000px;}
.fs5{font-size:120.240000px;}
.fs0{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y49{bottom:6.768000px;}
.y48{bottom:17.928000px;}
.y47{bottom:55.368000px;}
.y46{bottom:66.564000px;}
.y65{bottom:72.432000px;}
.y27{bottom:94.176000px;}
.y45{bottom:104.004000px;}
.y2b{bottom:104.400000px;}
.y44{bottom:115.164000px;}
.y26{bottom:131.040000px;}
.y2e{bottom:136.545000px;}
.y43{bottom:152.610000px;}
.y42{bottom:163.770000px;}
.y25{bottom:165.600000px;}
.y24{bottom:179.640000px;}
.y51{bottom:189.750000px;}
.y10{bottom:193.320000px;}
.y41{bottom:201.210000px;}
.y50{bottom:201.990000px;}
.y40{bottom:212.400000px;}
.y23{bottom:216.510000px;}
.yf{bottom:225.720000px;}
.y68{bottom:230.760000px;}
.y6a{bottom:237.165000px;}
.y5d{bottom:244.695000px;}
.y3f{bottom:249.840000px;}
.y22{bottom:253.365000px;}
.ye{bottom:258.150000px;}
.y3e{bottom:261.000000px;}
.y21{bottom:290.235000px;}
.yd{bottom:290.550000px;}
.y64{bottom:292.530000px;}
.y56{bottom:299.445000px;}
.y5e{bottom:313.305000px;}
.y3d{bottom:318.240000px;}
.y20{bottom:327.090000px;}
.yc{bottom:327.450000px;}
.y3c{bottom:329.400000px;}
.yb{bottom:359.850000px;}
.y1f{bottom:363.090000px;}
.y3a{bottom:366.870000px;}
.y5a{bottom:377.535000px;}
.y58{bottom:381.450000px;}
.y4b{bottom:381.930000px;}
.y6d{bottom:383.430000px;}
.y39{bottom:385.770000px;}
.y71{bottom:390.030000px;}
.ya{bottom:392.295000px;}
.y38{bottom:396.930000px;}
.y5f{bottom:398.730000px;}
.y1e{bottom:399.090000px;}
.y3b{bottom:399.810000px;}
.y4c{bottom:412.665000px;}
.y63{bottom:424.110000px;}
.y9{bottom:429.195000px;}
.y1d{bottom:433.650000px;}
.y37{bottom:434.370000px;}
.y57{bottom:435.600000px;}
.y74{bottom:442.290000px;}
.y1c{bottom:447.690000px;}
.y36{bottom:448.410000px;}
.y8{bottom:461.595000px;}
.y6e{bottom:467.610000px;}
.y70{bottom:470.595000px;}
.y2{bottom:471.210000px;}
.y59{bottom:480.990000px;}
.y35{bottom:482.970000px;}
.y53{bottom:484.275000px;}
.y1b{bottom:490.470000px;}
.y4d{bottom:490.605000px;}
.y7{bottom:493.995000px;}
.y34{bottom:497.010000px;}
.y75{bottom:499.575000px;}
.y1a{bottom:504.510000px;}
.y1{bottom:514.410000px;}
.y67{bottom:519.810000px;}
.y69{bottom:523.770000px;}
.y4f{bottom:526.350000px;}
.y6{bottom:526.425000px;}
.y2d{bottom:531.000000px;}
.y73{bottom:537.690000px;}
.y19{bottom:539.100000px;}
.y62{bottom:548.205000px;}
.y33{bottom:551.415000px;}
.y5c{bottom:552.570000px;}
.y18{bottom:553.140000px;}
.y5{bottom:563.325000px;}
.y32{bottom:565.455000px;}
.y52{bottom:583.125000px;}
.y61{bottom:584.100000px;}
.y17{bottom:587.700000px;}
.y55{bottom:592.845000px;}
.y4e{bottom:595.590000px;}
.y4{bottom:595.725000px;}
.y2a{bottom:596.520000px;}
.y31{bottom:600.015000px;}
.y16{bottom:601.740000px;}
.y60{bottom:609.330000px;}
.y30{bottom:614.055000px;}
.y15{bottom:636.300000px;}
.y2f{bottom:648.615000px;}
.y14{bottom:650.340000px;}
.y6c{bottom:657.105000px;}
.y2c{bottom:662.685000px;}
.y6f{bottom:663.510000px;}
.y13{bottom:687.990000px;}
.y11{bottom:698.325000px;}
.y29{bottom:700.920000px;}
.y5b{bottom:706.425000px;}
.y6b{bottom:710.925000px;}
.y72{bottom:712.650000px;}
.y54{bottom:718.770000px;}
.y4a{bottom:719.460000px;}
.y66{bottom:720.360000px;}
.y12{bottom:733.035000px;}
.y28{bottom:740.235000px;}
.y3{bottom:783.390000px;}
.h2{height:50.312812px;}
.h10{height:63.019687px;}
.hc{height:63.162914px;}
.h7{height:83.787539px;}
.h9{height:83.930766px;}
.h16{height:87.859687px;}
.h17{height:88.009875px;}
.hf{height:95.245664px;}
.h11{height:95.388891px;}
.h15{height:99.874688px;}
.h14{height:100.024875px;}
.h6{height:110.731430px;}
.h3{height:112.640625px;}
.h4{height:112.790813px;}
.h5{height:125.406562px;}
.h8{height:139.947539px;}
.h12{height:140.210766px;}
.h13{height:140.234766px;}
.he{height:143.299688px;}
.hd{height:143.569875px;}
.h1{height:150.187500px;}
.ha{height:213.480000px;}
.hb{height:264.780000px;}
.h0{height:810.000000px;}
.w2{width:321.480000px;}
.w1{width:1079.999984px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.xd{left:12.855000px;}
.x30{left:31.895984px;}
.x5{left:38.231984px;}
.x13{left:46.727984px;}
.x2b{left:53.603984px;}
.xa{left:55.943984px;}
.x3{left:57.419984px;}
.x4{left:78.659984px;}
.x1e{left:99.215984px;}
.x1{left:103.751984px;}
.x37{left:167.294984px;}
.x26{left:222.194984px;}
.x1a{left:258.014984px;}
.x1c{left:259.274984px;}
.xb{left:265.139984px;}
.x6{left:269.459984px;}
.x11{left:299.159984px;}
.xf{left:300.599984px;}
.x9{left:304.949984px;}
.x7{left:310.349984px;}
.x23{left:336.674984px;}
.x29{left:341.849984px;}
.x2{left:350.534984px;}
.xc{left:431.100000px;}
.x10{left:442.109984px;}
.x8{left:445.244984px;}
.x25{left:457.049984px;}
.x2a{left:460.619984px;}
.x28{left:468.929984px;}
.x32{left:481.034984px;}
.x33{left:482.549984px;}
.x31{left:484.304984px;}
.x24{left:488.444984px;}
.x2c{left:531.974984px;}
.x1b{left:556.889984px;}
.x36{left:558.104984px;}
.x35{left:568.049984px;}
.x1f{left:574.889984px;}
.x1d{left:585.614984px;}
.x34{left:587.879984px;}
.x2e{left:593.279984px;}
.x27{left:627.404984px;}
.x20{left:646.349984px;}
.x22{left:661.679984px;}
.x19{left:781.769984px;}
.x12{left:796.784984px;}
.xe{left:800.564984px;}
.x17{left:804.314984px;}
.x16{left:835.889984px;}
.x18{left:843.659984px;}
.x14{left:870.149984px;}
.x2d{left:877.289984px;}
.x15{left:882.824984px;}
.x21{left:911.129984px;}
.x38{left:932.609984px;}
.x2f{left:962.129984px;}
@media print{
.v6{vertical-align:-30.720000pt;}
.v4{vertical-align:-17.280000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:17.280000pt;}
.v5{vertical-align:27.520000pt;}
.v1{vertical-align:28.800000pt;}
.v3{vertical-align:49.920000pt;}
.ls23{letter-spacing:-7.306667pt;}
.ls17{letter-spacing:-5.813333pt;}
.ls1a{letter-spacing:-0.349867pt;}
.ls1c{letter-spacing:-0.340800pt;}
.ls22{letter-spacing:-0.326933pt;}
.ls1d{letter-spacing:-0.308267pt;}
.lsd{letter-spacing:-0.307200pt;}
.ls18{letter-spacing:-0.275733pt;}
.ls13{letter-spacing:-0.268800pt;}
.lsc{letter-spacing:-0.240533pt;}
.lse{letter-spacing:-0.204267pt;}
.lsb{letter-spacing:-0.195200pt;}
.ls5{letter-spacing:-0.192000pt;}
.ls2{letter-spacing:-0.161067pt;}
.ls14{letter-spacing:-0.158400pt;}
.ls19{letter-spacing:-0.153600pt;}
.ls1{letter-spacing:-0.128000pt;}
.ls20{letter-spacing:-0.104533pt;}
.lsa{letter-spacing:-0.097067pt;}
.ls16{letter-spacing:-0.033280pt;}
.ls15{letter-spacing:-0.032000pt;}
.ls9{letter-spacing:-0.023680pt;}
.ls0{letter-spacing:0.000000pt;}
.ls26{letter-spacing:0.023573pt;}
.ls21{letter-spacing:0.033280pt;}
.ls25{letter-spacing:0.094933pt;}
.ls6{letter-spacing:0.128000pt;}
.ls1b{letter-spacing:0.180800pt;}
.ls12{letter-spacing:12.368896pt;}
.ls11{letter-spacing:12.432640pt;}
.lsf{letter-spacing:12.848896pt;}
.ls10{letter-spacing:12.912640pt;}
.ls1e{letter-spacing:35.712000pt;}
.ls24{letter-spacing:35.818667pt;}
.ls4{letter-spacing:41.875200pt;}
.ls3{letter-spacing:41.920000pt;}
.ls8{letter-spacing:441.597611pt;}
.ls7{letter-spacing:441.662507pt;}
.ls1f{letter-spacing:501.865387pt;}
.ws36{word-spacing:-44.487680pt;}
.ws6{word-spacing:-26.688000pt;}
.ws3f{word-spacing:-26.396651pt;}
.ws3e{word-spacing:-23.696640pt;}
.ws42{word-spacing:-23.663360pt;}
.ws22{word-spacing:-21.724928pt;}
.ws24{word-spacing:-20.852224pt;}
.ws30{word-spacing:-20.816640pt;}
.ws26{word-spacing:-20.783360pt;}
.ws40{word-spacing:-19.381333pt;}
.ws28{word-spacing:-15.003307pt;}
.ws35{word-spacing:-12.757248pt;}
.wsa{word-spacing:-12.728320pt;}
.ws3d{word-spacing:-11.920640pt;}
.ws2e{word-spacing:-2.388992pt;}
.ws14{word-spacing:-1.689600pt;}
.wsb{word-spacing:-1.633280pt;}
.ws17{word-spacing:-1.419776pt;}
.ws1a{word-spacing:-1.361920pt;}
.ws9{word-spacing:-1.269760pt;}
.ws33{word-spacing:-1.180544pt;}
.ws12{word-spacing:-1.109760pt;}
.ws21{word-spacing:-1.049600pt;}
.ws2f{word-spacing:-1.039360pt;}
.ws1f{word-spacing:-0.993280pt;}
.ws1c{word-spacing:-0.962560pt;}
.ws38{word-spacing:-0.957440pt;}
.ws2b{word-spacing:-0.839680pt;}
.ws1d{word-spacing:-0.686080pt;}
.ws8{word-spacing:-0.616320pt;}
.ws37{word-spacing:-0.496640pt;}
.ws18{word-spacing:-0.474880pt;}
.ws1e{word-spacing:-0.449280pt;}
.ws10{word-spacing:-0.409600pt;}
.ws31{word-spacing:-0.368640pt;}
.wse{word-spacing:-0.365440pt;}
.ws1b{word-spacing:-0.353280pt;}
.ws2a{word-spacing:-0.249600pt;}
.ws3b{word-spacing:-0.230400pt;}
.wsc{word-spacing:-0.199680pt;}
.ws3c{word-spacing:-0.194560pt;}
.ws0{word-spacing:-0.138667pt;}
.ws39{word-spacing:-0.024320pt;}
.ws4{word-spacing:0.000000pt;}
.ws2c{word-spacing:0.117760pt;}
.ws1{word-spacing:0.128000pt;}
.ws41{word-spacing:0.266667pt;}
.ws2d{word-spacing:0.434176pt;}
.ws15{word-spacing:0.445440pt;}
.ws20{word-spacing:0.605440pt;}
.ws13{word-spacing:0.655040pt;}
.ws34{word-spacing:0.722816pt;}
.ws5{word-spacing:0.768000pt;}
.ws3{word-spacing:0.800640pt;}
.ws2{word-spacing:0.928000pt;}
.ws7{word-spacing:9.088000pt;}
.ws3a{word-spacing:383.753387pt;}
.ws29{word-spacing:403.545067pt;}
.ws32{word-spacing:403.581547pt;}
.ws19{word-spacing:406.588267pt;}
.ws25{word-spacing:410.908267pt;}
.ws23{word-spacing:410.943147pt;}
.ws16{word-spacing:487.700053pt;}
.wsf{word-spacing:994.032341pt;}
.ws11{word-spacing:994.100053pt;}
.wsd{word-spacing:1068.980053pt;}
.ws27{word-spacing:1139.697067pt;}
._5{margin-left:-2829.390933pt;}
._27{margin-left:-645.259947pt;}
._3{margin-left:-9.472000pt;}
._2a{margin-left:-6.805333pt;}
._6{margin-left:-5.813333pt;}
._9{margin-left:-4.714667pt;}
._a{margin-left:-3.692587pt;}
._0{margin-left:-2.688000pt;}
._2{margin-left:-0.896000pt;}
._1{width:1.536000pt;}
._7{width:2.944000pt;}
._1f{width:5.800107pt;}
._29{width:7.061333pt;}
._1b{width:10.121387pt;}
._10{width:11.258880pt;}
._e{width:12.641280pt;}
._28{width:19.278763pt;}
._4{width:24.168747pt;}
._8{width:27.722667pt;}
._b{width:28.687360pt;}
._26{width:34.412587pt;}
._d{width:176.723541pt;}
._22{width:178.662827pt;}
._21{width:212.250027pt;}
._23{width:231.450027pt;}
._13{width:247.783125pt;}
._1c{width:249.400747pt;}
._18{width:319.472213pt;}
._c{width:322.113621pt;}
._19{width:326.240853pt;}
._12{width:376.818773pt;}
._14{width:383.293013pt;}
._24{width:419.967147pt;}
._25{width:430.872747pt;}
._15{width:544.430933pt;}
._17{width:571.587413pt;}
._16{width:689.629013pt;}
._20{width:724.997547pt;}
._11{width:732.857173pt;}
._1d{width:735.237547pt;}
._1a{width:816.128427pt;}
._1e{width:850.688427pt;}
._f{width:852.491093pt;}
.fs1{font-size:42.880000pt;}
.fs7{font-size:56.320000pt;}
.fs8{font-size:56.448000pt;}
.fs4{font-size:64.000000pt;}
.fs6{font-size:74.880000pt;}
.fs9{font-size:75.008000pt;}
.fsa{font-size:85.120000pt;}
.fsb{font-size:85.248000pt;}
.fs2{font-size:96.000000pt;}
.fs3{font-size:96.128000pt;}
.fs5{font-size:106.880000pt;}
.fs0{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y49{bottom:6.016000pt;}
.y48{bottom:15.936000pt;}
.y47{bottom:49.216000pt;}
.y46{bottom:59.168000pt;}
.y65{bottom:64.384000pt;}
.y27{bottom:83.712000pt;}
.y45{bottom:92.448000pt;}
.y2b{bottom:92.800000pt;}
.y44{bottom:102.368000pt;}
.y26{bottom:116.480000pt;}
.y2e{bottom:121.373333pt;}
.y43{bottom:135.653333pt;}
.y42{bottom:145.573333pt;}
.y25{bottom:147.200000pt;}
.y24{bottom:159.680000pt;}
.y51{bottom:168.666667pt;}
.y10{bottom:171.840000pt;}
.y41{bottom:178.853333pt;}
.y50{bottom:179.546667pt;}
.y40{bottom:188.800000pt;}
.y23{bottom:192.453333pt;}
.yf{bottom:200.640000pt;}
.y68{bottom:205.120000pt;}
.y6a{bottom:210.813333pt;}
.y5d{bottom:217.506667pt;}
.y3f{bottom:222.080000pt;}
.y22{bottom:225.213333pt;}
.ye{bottom:229.466667pt;}
.y3e{bottom:232.000000pt;}
.y21{bottom:257.986667pt;}
.yd{bottom:258.266667pt;}
.y64{bottom:260.026667pt;}
.y56{bottom:266.173333pt;}
.y5e{bottom:278.493333pt;}
.y3d{bottom:282.880000pt;}
.y20{bottom:290.746667pt;}
.yc{bottom:291.066667pt;}
.y3c{bottom:292.800000pt;}
.yb{bottom:319.866667pt;}
.y1f{bottom:322.746667pt;}
.y3a{bottom:326.106667pt;}
.y5a{bottom:335.586667pt;}
.y58{bottom:339.066667pt;}
.y4b{bottom:339.493333pt;}
.y6d{bottom:340.826667pt;}
.y39{bottom:342.906667pt;}
.y71{bottom:346.693333pt;}
.ya{bottom:348.706667pt;}
.y38{bottom:352.826667pt;}
.y5f{bottom:354.426667pt;}
.y1e{bottom:354.746667pt;}
.y3b{bottom:355.386667pt;}
.y4c{bottom:366.813333pt;}
.y63{bottom:376.986667pt;}
.y9{bottom:381.506667pt;}
.y1d{bottom:385.466667pt;}
.y37{bottom:386.106667pt;}
.y57{bottom:387.200000pt;}
.y74{bottom:393.146667pt;}
.y1c{bottom:397.946667pt;}
.y36{bottom:398.586667pt;}
.y8{bottom:410.306667pt;}
.y6e{bottom:415.653333pt;}
.y70{bottom:418.306667pt;}
.y2{bottom:418.853333pt;}
.y59{bottom:427.546667pt;}
.y35{bottom:429.306667pt;}
.y53{bottom:430.466667pt;}
.y1b{bottom:435.973333pt;}
.y4d{bottom:436.093333pt;}
.y7{bottom:439.106667pt;}
.y34{bottom:441.786667pt;}
.y75{bottom:444.066667pt;}
.y1a{bottom:448.453333pt;}
.y1{bottom:457.253333pt;}
.y67{bottom:462.053333pt;}
.y69{bottom:465.573333pt;}
.y4f{bottom:467.866667pt;}
.y6{bottom:467.933333pt;}
.y2d{bottom:472.000000pt;}
.y73{bottom:477.946667pt;}
.y19{bottom:479.200000pt;}
.y62{bottom:487.293333pt;}
.y33{bottom:490.146667pt;}
.y5c{bottom:491.173333pt;}
.y18{bottom:491.680000pt;}
.y5{bottom:500.733333pt;}
.y32{bottom:502.626667pt;}
.y52{bottom:518.333333pt;}
.y61{bottom:519.200000pt;}
.y17{bottom:522.400000pt;}
.y55{bottom:526.973333pt;}
.y4e{bottom:529.413333pt;}
.y4{bottom:529.533333pt;}
.y2a{bottom:530.240000pt;}
.y31{bottom:533.346667pt;}
.y16{bottom:534.880000pt;}
.y60{bottom:541.626667pt;}
.y30{bottom:545.826667pt;}
.y15{bottom:565.600000pt;}
.y2f{bottom:576.546667pt;}
.y14{bottom:578.080000pt;}
.y6c{bottom:584.093333pt;}
.y2c{bottom:589.053333pt;}
.y6f{bottom:589.786667pt;}
.y13{bottom:611.546667pt;}
.y11{bottom:620.733333pt;}
.y29{bottom:623.040000pt;}
.y5b{bottom:627.933333pt;}
.y6b{bottom:631.933333pt;}
.y72{bottom:633.466667pt;}
.y54{bottom:638.906667pt;}
.y4a{bottom:639.520000pt;}
.y66{bottom:640.320000pt;}
.y12{bottom:651.586667pt;}
.y28{bottom:657.986667pt;}
.y3{bottom:696.346667pt;}
.h2{height:44.722500pt;}
.h10{height:56.017500pt;}
.hc{height:56.144813pt;}
.h7{height:74.477812pt;}
.h9{height:74.605125pt;}
.h16{height:78.097500pt;}
.h17{height:78.231000pt;}
.hf{height:84.662813pt;}
.h11{height:84.790125pt;}
.h15{height:88.777500pt;}
.h14{height:88.911000pt;}
.h6{height:98.427937pt;}
.h3{height:100.125000pt;}
.h4{height:100.258500pt;}
.h5{height:111.472500pt;}
.h8{height:124.397813pt;}
.h12{height:124.631792pt;}
.h13{height:124.653125pt;}
.he{height:127.377500pt;}
.hd{height:127.617667pt;}
.h1{height:133.500000pt;}
.ha{height:189.760000pt;}
.hb{height:235.360000pt;}
.h0{height:720.000000pt;}
.w2{width:285.760000pt;}
.w1{width:959.999986pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.xd{left:11.426667pt;}
.x30{left:28.351986pt;}
.x5{left:33.983986pt;}
.x13{left:41.535986pt;}
.x2b{left:47.647986pt;}
.xa{left:49.727986pt;}
.x3{left:51.039986pt;}
.x4{left:69.919986pt;}
.x1e{left:88.191986pt;}
.x1{left:92.223986pt;}
.x37{left:148.706652pt;}
.x26{left:197.506652pt;}
.x1a{left:229.346652pt;}
.x1c{left:230.466652pt;}
.xb{left:235.679986pt;}
.x6{left:239.519986pt;}
.x11{left:265.919986pt;}
.xf{left:267.199986pt;}
.x9{left:271.066652pt;}
.x7{left:275.866652pt;}
.x23{left:299.266652pt;}
.x29{left:303.866652pt;}
.x2{left:311.586652pt;}
.xc{left:383.200000pt;}
.x10{left:392.986652pt;}
.x8{left:395.773319pt;}
.x25{left:406.266652pt;}
.x2a{left:409.439986pt;}
.x28{left:416.826652pt;}
.x32{left:427.586652pt;}
.x33{left:428.933319pt;}
.x31{left:430.493319pt;}
.x24{left:434.173319pt;}
.x2c{left:472.866652pt;}
.x1b{left:495.013319pt;}
.x36{left:496.093319pt;}
.x35{left:504.933319pt;}
.x1f{left:511.013319pt;}
.x1d{left:520.546652pt;}
.x34{left:522.559986pt;}
.x2e{left:527.359986pt;}
.x27{left:557.693319pt;}
.x20{left:574.533319pt;}
.x22{left:588.159986pt;}
.x19{left:694.906652pt;}
.x12{left:708.253319pt;}
.xe{left:711.613319pt;}
.x17{left:714.946652pt;}
.x16{left:743.013319pt;}
.x18{left:749.919986pt;}
.x14{left:773.466652pt;}
.x2d{left:779.813319pt;}
.x15{left:784.733319pt;}
.x21{left:809.893319pt;}
.x38{left:828.986652pt;}
.x2f{left:855.226652pt;}
}




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