
    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_72c42cad0ac928820fbc69a9.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.064941;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_6ee79b13937143516e87d8a4.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.064941;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_ced017b3a024a1141cd75037.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.035156;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_05026019fe445fef32f36162.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.056641;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_5bca37dddfcca19e57d13697.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.402354;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_848a4d8a191626d1697d9e82.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_862e0f0df538fbdacd435ba2.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_23d1ffd2131c6a8a86a1f700.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.100098;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_4a6870e85738c633f8c07be5.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_902e15ae5fd1230d595378a3.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.866699;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_9be730c61a6cbede3bb45ebc.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.061035;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:ffd;src:url('chunks/assets/font_bcb3e84167037a5260b9080e.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.372070;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;}
.ls2{letter-spacing:-0.198000px;}
.ls13{letter-spacing:-0.139200px;}
.lsc{letter-spacing:-0.112200px;}
.lsd{letter-spacing:-0.082200px;}
.ls14{letter-spacing:-0.029940px;}
.lse{letter-spacing:-0.014280px;}
.ls1{letter-spacing:0.000000px;}
.ls18{letter-spacing:0.050400px;}
.ls7{letter-spacing:0.053280px;}
.ls10{letter-spacing:0.089280px;}
.ls9{letter-spacing:0.095040px;}
.ls8{letter-spacing:0.113280px;}
.ls11{letter-spacing:0.127800px;}
.ls19{letter-spacing:0.183600px;}
.ls15{letter-spacing:0.202800px;}
.ls17{letter-spacing:0.230400px;}
.lsb{letter-spacing:0.256800px;}
.ls4{letter-spacing:0.331800px;}
.ls0{letter-spacing:3.396000px;}
.ls12{letter-spacing:16.507872px;}
.lsf{letter-spacing:25.147872px;}
.lsa{letter-spacing:41.563872px;}
.ls16{letter-spacing:48.629952px;}
.ls6{letter-spacing:87.391872px;}
.ls5{letter-spacing:94.383360px;}
.ls3{letter-spacing:127.071360px;}
.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;}
}
.wsd{word-spacing:-45.216000px;}
.ws0{word-spacing:-27.973440px;}
.wse{word-spacing:-27.360000px;}
.ws1{word-spacing:-17.430240px;}
.ws5{word-spacing:-12.338520px;}
.wsb{word-spacing:-12.209520px;}
.wsc{word-spacing:-12.190320px;}
.ws2{word-spacing:-12.006720px;}
.ws8{word-spacing:-11.992440px;}
.ws7{word-spacing:-11.894520px;}
.wsa{word-spacing:-11.867520px;}
.ws3{word-spacing:-11.808720px;}
.ws9{word-spacing:-9.242496px;}
.ws6{word-spacing:-0.054576px;}
.ws4{word-spacing:0.000000px;}
._9{margin-left:-10.680768px;}
._0{margin-left:-9.536400px;}
._b{margin-left:-8.184432px;}
._a{margin-left:-6.482328px;}
._3{margin-left:-4.958928px;}
._2{margin-left:-3.051648px;}
._1{margin-left:-2.034432px;}
._4{margin-left:-1.017216px;}
._8{width:1.036944px;}
._5{width:2.998224px;}
._6{width:4.210272px;}
._7{width:5.471232px;}
._c{width:639.353280px;}
.fc3{color:rgb(15,71,97);}
.fc2{color:rgb(70,120,134);}
.fc1{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:40.896000px;}
.fs6{font-size:45.216000px;}
.fs4{font-size:50.112000px;}
.fs0{font-size:54.576000px;}
.fs2{font-size:63.792000px;}
.fs3{font-size:72.576000px;}
.fs1{font-size:127.152000px;}
.y0{bottom:0.000000px;}
.y5d{bottom:2.700000px;}
.y60{bottom:2.730000px;}
.y5b{bottom:2.745000px;}
.yc4{bottom:2.880000px;}
.y22{bottom:3.015000px;}
.y1f{bottom:3.030000px;}
.y64{bottom:15.150000px;}
.y68{bottom:15.165000px;}
.ycf{bottom:15.255000px;}
.y5a{bottom:15.270000px;}
.y5f{bottom:15.300000px;}
.y66{bottom:27.720000px;}
.yba{bottom:40.140000px;}
.y8d{bottom:40.290000px;}
.y8c{bottom:52.305000px;}
.yb9{bottom:52.695000px;}
.ybf{bottom:52.710000px;}
.y8b{bottom:64.725000px;}
.ycd{bottom:65.265000px;}
.y8a{bottom:77.265000px;}
.ycc{bottom:77.685000px;}
.y89{bottom:89.715000px;}
.ycb{bottom:90.255000px;}
.yca{bottom:102.675000px;}
.yc9{bottom:115.230000px;}
.yc8{bottom:127.650000px;}
.yc7{bottom:140.220000px;}
.yc6{bottom:152.790000px;}
.y3{bottom:187.815000px;}
.yd0{bottom:225.750000px;}
.y6a{bottom:241.200000px;}
.y58{bottom:241.455000px;}
.y35{bottom:241.995000px;}
.yb4{bottom:250.485000px;}
.y1b{bottom:250.740000px;}
.yce{bottom:258.270000px;}
.y85{bottom:259.200000px;}
.y57{bottom:260.565000px;}
.yb3{bottom:268.890000px;}
.y1a{bottom:269.175000px;}
.y34{bottom:269.565000px;}
.y69{bottom:273.810000px;}
.y56{bottom:279.825000px;}
.y84{bottom:283.245000px;}
.yb2{bottom:287.205000px;}
.yec{bottom:288.975000px;}
.yc5{bottom:290.880000px;}
.y67{bottom:293.865000px;}
.y19{bottom:296.610000px;}
.y33{bottom:297.150000px;}
.y55{bottom:298.950000px;}
.y83{bottom:301.530000px;}
.yb1{bottom:305.640000px;}
.y18{bottom:315.030000px;}
.yeb{bottom:316.155000px;}
.yf0{bottom:318.600000px;}
.y32{bottom:324.615000px;}
.yb0{bottom:324.870000px;}
.y65{bottom:326.370000px;}
.y54{bottom:327.345000px;}
.y82{bottom:329.940000px;}
.yea{bottom:334.590000px;}
.y17{bottom:342.465000px;}
.yaf{bottom:343.155000px;}
.y31{bottom:352.185000px;}
.y94{bottom:352.590000px;}
.ye9{bottom:352.875000px;}
.y81{bottom:353.805000px;}
.y53{bottom:354.780000px;}
.y16{bottom:360.900000px;}
.yae{bottom:371.415000px;}
.y15{bottom:379.335000px;}
.y30{bottom:379.620000px;}
.ye8{bottom:381.240000px;}
.y52{bottom:382.215000px;}
.y80{bottom:383.430000px;}
.yad{bottom:394.485000px;}
.ye7{bottom:404.070000px;}
.y14{bottom:406.905000px;}
.y2f{bottom:407.190000px;}
.y51{bottom:408.165000px;}
.y7f{bottom:411.690000px;}
.yac{bottom:412.770000px;}
.y93{bottom:414.150000px;}
.y63{bottom:419.475000px;}
.yab{bottom:431.205000px;}
.ye6{bottom:432.465000px;}
.y92{bottom:434.235000px;}
.y13{bottom:434.370000px;}
.y2e{bottom:434.625000px;}
.y50{bottom:435.315000px;}
.y106{bottom:446.655000px;}
.yaa{bottom:449.640000px;}
.y7e{bottom:453.060000px;}
.y4f{bottom:453.750000px;}
.ye5{bottom:455.400000px;}
.yc3{bottom:460.830000px;}
.y12{bottom:461.955000px;}
.y2d{bottom:462.060000px;}
.y91{bottom:466.845000px;}
.ya9{bottom:467.970000px;}
.y4e{bottom:472.170000px;}
.ye4{bottom:473.835000px;}
.y105{bottom:473.940000px;}
.yc2{bottom:480.930000px;}
.ya8{bottom:487.185000px;}
.y104{bottom:488.850000px;}
.y11{bottom:489.390000px;}
.y2c{bottom:489.780000px;}
.ye3{bottom:492.120000px;}
.y90{bottom:499.350000px;}
.y4d{bottom:499.755000px;}
.y7d{bottom:500.430000px;}
.y103{bottom:503.565000px;}
.ya7{bottom:505.620000px;}
.ye2{bottom:511.350000px;}
.yc1{bottom:513.540000px;}
.y10{bottom:516.960000px;}
.y2b{bottom:517.245000px;}
.y102{bottom:518.475000px;}
.y8f{bottom:519.405000px;}
.ya6{bottom:524.055000px;}
.y7c{bottom:524.340000px;}
.y4c{bottom:528.840000px;}
.ye1{bottom:529.770000px;}
.y62{bottom:529.920000px;}
.y101{bottom:533.340000px;}
.yc0{bottom:533.625000px;}
.y8e{bottom:539.490000px;}
.ya5{bottom:542.340000px;}
.yf{bottom:544.395000px;}
.y2a{bottom:544.680000px;}
.ye0{bottom:548.100000px;}
.ybe{bottom:553.680000px;}
.y7b{bottom:553.965000px;}
.y4b{bottom:558.465000px;}
.y100{bottom:559.155000px;}
.y88{bottom:559.545000px;}
.ydf{bottom:567.330000px;}
.ya4{bottom:570.750000px;}
.ye{bottom:571.965000px;}
.y29{bottom:572.250000px;}
.yff{bottom:574.020000px;}
.y7a{bottom:577.980000px;}
.y4a{bottom:585.510000px;}
.yde{bottom:585.615000px;}
.yfe{bottom:588.885000px;}
.ya3{bottom:593.670000px;}
.y79{bottom:596.415000px;}
.yd{bottom:599.400000px;}
.y28{bottom:599.685000px;}
.y61{bottom:602.130000px;}
.y49{bottom:604.725000px;}
.ydd{bottom:604.875000px;}
.ya2{bottom:612.105000px;}
.y78{bottom:614.700000px;}
.yfd{bottom:616.605000px;}
.yef{bottom:620.715000px;}
.ydc{bottom:623.160000px;}
.ybd{bottom:623.700000px;}
.y48{bottom:623.850000px;}
.yc{bottom:626.970000px;}
.y27{bottom:627.270000px;}
.ya1{bottom:630.390000px;}
.y77{bottom:633.135000px;}
.y47{bottom:642.960000px;}
.ybc{bottom:643.785000px;}
.y5e{bottom:647.070000px;}
.yfc{bottom:648.435000px;}
.ya0{bottom:648.825000px;}
.y76{bottom:651.570000px;}
.yb{bottom:654.450000px;}
.y26{bottom:654.690000px;}
.y46{bottom:662.220000px;}
.y87{bottom:666.570000px;}
.y9f{bottom:668.085000px;}
.y75{bottom:669.990000px;}
.yfb{bottom:672.450000px;}
.ydb{bottom:674.490000px;}
.ybb{bottom:676.260000px;}
.y25{bottom:682.170000px;}
.ya{bottom:682.815000px;}
.y9e{bottom:686.370000px;}
.y74{bottom:688.425000px;}
.y3d{bottom:689.655000px;}
.yee{bottom:690.330000px;}
.y45{bottom:690.630000px;}
.yfa{bottom:690.870000px;}
.yda{bottom:693.615000px;}
.y86{bottom:703.440000px;}
.y9d{bottom:705.630000px;}
.y73{bottom:706.860000px;}
.yb8{bottom:708.915000px;}
.yf9{bottom:709.305000px;}
.yd9{bottom:712.050000px;}
.y24{bottom:712.440000px;}
.y9{bottom:712.590000px;}
.y44{bottom:718.050000px;}
.y3c{bottom:718.200000px;}
.y9c{bottom:723.930000px;}
.y72{bottom:734.295000px;}
.yf8{bottom:736.740000px;}
.yd8{bottom:740.310000px;}
.y8{bottom:740.985000px;}
.y5c{bottom:745.230000px;}
.y3b{bottom:745.635000px;}
.y43{bottom:746.460000px;}
.y23{bottom:748.905000px;}
.y9b{bottom:752.325000px;}
.y71{bottom:752.730000px;}
.yf7{bottom:755.175000px;}
.yd7{bottom:763.230000px;}
.y21{bottom:771.555000px;}
.y7{bottom:772.230000px;}
.y3a{bottom:773.070000px;}
.y9a{bottom:775.110000px;}
.y42{bottom:776.190000px;}
.yb7{bottom:778.935000px;}
.y70{bottom:781.125000px;}
.yf6{bottom:784.410000px;}
.yd6{bottom:791.490000px;}
.y99{bottom:794.370000px;}
.y20{bottom:797.220000px;}
.y39{bottom:800.640000px;}
.y41{bottom:803.670000px;}
.y6{bottom:809.640000px;}
.yb6{bottom:810.210000px;}
.y6f{bottom:810.750000px;}
.y98{bottom:812.670000px;}
.yf5{bottom:816.195000px;}
.y1e{bottom:822.885000px;}
.yd5{bottom:824.010000px;}
.y38{bottom:828.075000px;}
.y6e{bottom:829.185000px;}
.y40{bottom:831.090000px;}
.yed{bottom:838.875000px;}
.yf4{bottom:840.240000px;}
.y97{bottom:841.065000px;}
.y5{bottom:846.930000px;}
.y3f{bottom:849.525000px;}
.yd4{bottom:854.715000px;}
.y37{bottom:855.645000px;}
.y6d{bottom:858.390000px;}
.yf3{bottom:858.675000px;}
.y96{bottom:864.000000px;}
.y1d{bottom:865.905000px;}
.y59{bottom:867.270000px;}
.yd3{bottom:873.150000px;}
.yf2{bottom:877.110000px;}
.y3e{bottom:878.865000px;}
.yb5{bottom:879.840000px;}
.y95{bottom:882.285000px;}
.y36{bottom:883.110000px;}
.y4{bottom:884.340000px;}
.y6c{bottom:890.205000px;}
.yd2{bottom:891.570000px;}
.yf1{bottom:906.300000px;}
.yd1{bottom:909.870000px;}
.y1c{bottom:910.695000px;}
.y6b{bottom:914.070000px;}
.y2{bottom:926.640000px;}
.y1{bottom:948.780000px;}
.hd{height:13.788000px;}
.h16{height:13.932000px;}
.h4{height:25.128000px;}
.he{height:26.208000px;}
.h10{height:26.244000px;}
.hb{height:26.352000px;}
.h11{height:30.666516px;}
.h14{height:34.625813px;}
.hf{height:38.772000px;}
.hc{height:40.676344px;}
.h1{height:46.208391px;}
.h18{height:46.474923px;}
.h8{height:53.536711px;}
.ha{height:53.563359px;}
.h3{height:54.011391px;}
.h12{height:54.442758px;}
.h9{height:56.095528px;}
.h6{height:61.448625px;}
.h15{height:63.756000px;}
.h5{height:74.312437px;}
.h7{height:74.596691px;}
.h13{height:100.764000px;}
.h2{height:107.657016px;}
.h17{height:163.830000px;}
.h0{height:1188.000000px;}
.w4{width:132.408000px;}
.w3{width:132.444000px;}
.w2{width:132.552000px;}
.w5{width:259.950000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xd{left:2.595000px;}
.x4{left:5.868000px;}
.x2{left:81.899986px;}
.x8{left:94.463986px;}
.xb{left:102.383986px;}
.x9{left:106.883986px;}
.xe{left:122.867986px;}
.xa{left:136.511986px;}
.x10{left:143.351986px;}
.xf{left:163.829986px;}
.x1{left:202.214986px;}
.x5{left:215.715000px;}
.x3{left:244.799986px;}
.x6{left:348.840000px;}
.x7{left:481.935000px;}
.xc{left:652.035000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:-0.176000pt;}
.ls13{letter-spacing:-0.123733pt;}
.lsc{letter-spacing:-0.099733pt;}
.lsd{letter-spacing:-0.073067pt;}
.ls14{letter-spacing:-0.026613pt;}
.lse{letter-spacing:-0.012693pt;}
.ls1{letter-spacing:0.000000pt;}
.ls18{letter-spacing:0.044800pt;}
.ls7{letter-spacing:0.047360pt;}
.ls10{letter-spacing:0.079360pt;}
.ls9{letter-spacing:0.084480pt;}
.ls8{letter-spacing:0.100693pt;}
.ls11{letter-spacing:0.113600pt;}
.ls19{letter-spacing:0.163200pt;}
.ls15{letter-spacing:0.180267pt;}
.ls17{letter-spacing:0.204800pt;}
.lsb{letter-spacing:0.228267pt;}
.ls4{letter-spacing:0.294933pt;}
.ls0{letter-spacing:3.018667pt;}
.ls12{letter-spacing:14.673664pt;}
.lsf{letter-spacing:22.353664pt;}
.lsa{letter-spacing:36.945664pt;}
.ls16{letter-spacing:43.226624pt;}
.ls6{letter-spacing:77.681664pt;}
.ls5{letter-spacing:83.896320pt;}
.ls3{letter-spacing:112.952320pt;}
.wsd{word-spacing:-40.192000pt;}
.ws0{word-spacing:-24.865280pt;}
.wse{word-spacing:-24.320000pt;}
.ws1{word-spacing:-15.493547pt;}
.ws5{word-spacing:-10.967573pt;}
.wsb{word-spacing:-10.852907pt;}
.wsc{word-spacing:-10.835840pt;}
.ws2{word-spacing:-10.672640pt;}
.ws8{word-spacing:-10.659947pt;}
.ws7{word-spacing:-10.572907pt;}
.wsa{word-spacing:-10.548907pt;}
.ws3{word-spacing:-10.496640pt;}
.ws9{word-spacing:-8.215552pt;}
.ws6{word-spacing:-0.048512pt;}
.ws4{word-spacing:0.000000pt;}
._9{margin-left:-9.494016pt;}
._0{margin-left:-8.476800pt;}
._b{margin-left:-7.275051pt;}
._a{margin-left:-5.762069pt;}
._3{margin-left:-4.407936pt;}
._2{margin-left:-2.712576pt;}
._1{margin-left:-1.808384pt;}
._4{margin-left:-0.904192pt;}
._8{width:0.921728pt;}
._5{width:2.665088pt;}
._6{width:3.742464pt;}
._7{width:4.863317pt;}
._c{width:568.314027pt;}
.fs5{font-size:36.352000pt;}
.fs6{font-size:40.192000pt;}
.fs4{font-size:44.544000pt;}
.fs0{font-size:48.512000pt;}
.fs2{font-size:56.704000pt;}
.fs3{font-size:64.512000pt;}
.fs1{font-size:113.024000pt;}
.y0{bottom:0.000000pt;}
.y5d{bottom:2.400000pt;}
.y60{bottom:2.426667pt;}
.y5b{bottom:2.440000pt;}
.yc4{bottom:2.560000pt;}
.y22{bottom:2.680000pt;}
.y1f{bottom:2.693333pt;}
.y64{bottom:13.466667pt;}
.y68{bottom:13.480000pt;}
.ycf{bottom:13.560000pt;}
.y5a{bottom:13.573333pt;}
.y5f{bottom:13.600000pt;}
.y66{bottom:24.640000pt;}
.yba{bottom:35.680000pt;}
.y8d{bottom:35.813333pt;}
.y8c{bottom:46.493333pt;}
.yb9{bottom:46.840000pt;}
.ybf{bottom:46.853333pt;}
.y8b{bottom:57.533333pt;}
.ycd{bottom:58.013333pt;}
.y8a{bottom:68.680000pt;}
.ycc{bottom:69.053333pt;}
.y89{bottom:79.746667pt;}
.ycb{bottom:80.226667pt;}
.yca{bottom:91.266667pt;}
.yc9{bottom:102.426667pt;}
.yc8{bottom:113.466667pt;}
.yc7{bottom:124.640000pt;}
.yc6{bottom:135.813333pt;}
.y3{bottom:166.946667pt;}
.yd0{bottom:200.666667pt;}
.y6a{bottom:214.400000pt;}
.y58{bottom:214.626667pt;}
.y35{bottom:215.106667pt;}
.yb4{bottom:222.653333pt;}
.y1b{bottom:222.880000pt;}
.yce{bottom:229.573333pt;}
.y85{bottom:230.400000pt;}
.y57{bottom:231.613333pt;}
.yb3{bottom:239.013333pt;}
.y1a{bottom:239.266667pt;}
.y34{bottom:239.613333pt;}
.y69{bottom:243.386667pt;}
.y56{bottom:248.733333pt;}
.y84{bottom:251.773333pt;}
.yb2{bottom:255.293333pt;}
.yec{bottom:256.866667pt;}
.yc5{bottom:258.560000pt;}
.y67{bottom:261.213333pt;}
.y19{bottom:263.653333pt;}
.y33{bottom:264.133333pt;}
.y55{bottom:265.733333pt;}
.y83{bottom:268.026667pt;}
.yb1{bottom:271.680000pt;}
.y18{bottom:280.026667pt;}
.yeb{bottom:281.026667pt;}
.yf0{bottom:283.200000pt;}
.y32{bottom:288.546667pt;}
.yb0{bottom:288.773333pt;}
.y65{bottom:290.106667pt;}
.y54{bottom:290.973333pt;}
.y82{bottom:293.280000pt;}
.yea{bottom:297.413333pt;}
.y17{bottom:304.413333pt;}
.yaf{bottom:305.026667pt;}
.y31{bottom:313.053333pt;}
.y94{bottom:313.413333pt;}
.ye9{bottom:313.666667pt;}
.y81{bottom:314.493333pt;}
.y53{bottom:315.360000pt;}
.y16{bottom:320.800000pt;}
.yae{bottom:330.146667pt;}
.y15{bottom:337.186667pt;}
.y30{bottom:337.440000pt;}
.ye8{bottom:338.880000pt;}
.y52{bottom:339.746667pt;}
.y80{bottom:340.826667pt;}
.yad{bottom:350.653333pt;}
.ye7{bottom:359.173333pt;}
.y14{bottom:361.693333pt;}
.y2f{bottom:361.946667pt;}
.y51{bottom:362.813333pt;}
.y7f{bottom:365.946667pt;}
.yac{bottom:366.906667pt;}
.y93{bottom:368.133333pt;}
.y63{bottom:372.866667pt;}
.yab{bottom:383.293333pt;}
.ye6{bottom:384.413333pt;}
.y92{bottom:385.986667pt;}
.y13{bottom:386.106667pt;}
.y2e{bottom:386.333333pt;}
.y50{bottom:386.946667pt;}
.y106{bottom:397.026667pt;}
.yaa{bottom:399.680000pt;}
.y7e{bottom:402.720000pt;}
.y4f{bottom:403.333333pt;}
.ye5{bottom:404.800000pt;}
.yc3{bottom:409.626667pt;}
.y12{bottom:410.626667pt;}
.y2d{bottom:410.720000pt;}
.y91{bottom:414.973333pt;}
.ya9{bottom:415.973333pt;}
.y4e{bottom:419.706667pt;}
.ye4{bottom:421.186667pt;}
.y105{bottom:421.280000pt;}
.yc2{bottom:427.493333pt;}
.ya8{bottom:433.053333pt;}
.y104{bottom:434.533333pt;}
.y11{bottom:435.013333pt;}
.y2c{bottom:435.360000pt;}
.ye3{bottom:437.440000pt;}
.y90{bottom:443.866667pt;}
.y4d{bottom:444.226667pt;}
.y7d{bottom:444.826667pt;}
.y103{bottom:447.613333pt;}
.ya7{bottom:449.440000pt;}
.ye2{bottom:454.533333pt;}
.yc1{bottom:456.480000pt;}
.y10{bottom:459.520000pt;}
.y2b{bottom:459.773333pt;}
.y102{bottom:460.866667pt;}
.y8f{bottom:461.693333pt;}
.ya6{bottom:465.826667pt;}
.y7c{bottom:466.080000pt;}
.y4c{bottom:470.080000pt;}
.ye1{bottom:470.906667pt;}
.y62{bottom:471.040000pt;}
.y101{bottom:474.080000pt;}
.yc0{bottom:474.333333pt;}
.y8e{bottom:479.546667pt;}
.ya5{bottom:482.080000pt;}
.yf{bottom:483.906667pt;}
.y2a{bottom:484.160000pt;}
.ye0{bottom:487.200000pt;}
.ybe{bottom:492.160000pt;}
.y7b{bottom:492.413333pt;}
.y4b{bottom:496.413333pt;}
.y100{bottom:497.026667pt;}
.y88{bottom:497.373333pt;}
.ydf{bottom:504.293333pt;}
.ya4{bottom:507.333333pt;}
.ye{bottom:508.413333pt;}
.y29{bottom:508.666667pt;}
.yff{bottom:510.240000pt;}
.y7a{bottom:513.760000pt;}
.y4a{bottom:520.453333pt;}
.yde{bottom:520.546667pt;}
.yfe{bottom:523.453333pt;}
.ya3{bottom:527.706667pt;}
.y79{bottom:530.146667pt;}
.yd{bottom:532.800000pt;}
.y28{bottom:533.053333pt;}
.y61{bottom:535.226667pt;}
.y49{bottom:537.533333pt;}
.ydd{bottom:537.666667pt;}
.ya2{bottom:544.093333pt;}
.y78{bottom:546.400000pt;}
.yfd{bottom:548.093333pt;}
.yef{bottom:551.746667pt;}
.ydc{bottom:553.920000pt;}
.ybd{bottom:554.400000pt;}
.y48{bottom:554.533333pt;}
.yc{bottom:557.306667pt;}
.y27{bottom:557.573333pt;}
.ya1{bottom:560.346667pt;}
.y77{bottom:562.786667pt;}
.y47{bottom:571.520000pt;}
.ybc{bottom:572.253333pt;}
.y5e{bottom:575.173333pt;}
.yfc{bottom:576.386667pt;}
.ya0{bottom:576.733333pt;}
.y76{bottom:579.173333pt;}
.yb{bottom:581.733333pt;}
.y26{bottom:581.946667pt;}
.y46{bottom:588.640000pt;}
.y87{bottom:592.506667pt;}
.y9f{bottom:593.853333pt;}
.y75{bottom:595.546667pt;}
.yfb{bottom:597.733333pt;}
.ydb{bottom:599.546667pt;}
.ybb{bottom:601.120000pt;}
.y25{bottom:606.373333pt;}
.ya{bottom:606.946667pt;}
.y9e{bottom:610.106667pt;}
.y74{bottom:611.933333pt;}
.y3d{bottom:613.026667pt;}
.yee{bottom:613.626667pt;}
.y45{bottom:613.893333pt;}
.yfa{bottom:614.106667pt;}
.yda{bottom:616.546667pt;}
.y86{bottom:625.280000pt;}
.y9d{bottom:627.226667pt;}
.y73{bottom:628.320000pt;}
.yb8{bottom:630.146667pt;}
.yf9{bottom:630.493333pt;}
.yd9{bottom:632.933333pt;}
.y24{bottom:633.280000pt;}
.y9{bottom:633.413333pt;}
.y44{bottom:638.266667pt;}
.y3c{bottom:638.400000pt;}
.y9c{bottom:643.493333pt;}
.y72{bottom:652.706667pt;}
.yf8{bottom:654.880000pt;}
.yd8{bottom:658.053333pt;}
.y8{bottom:658.653333pt;}
.y5c{bottom:662.426667pt;}
.y3b{bottom:662.786667pt;}
.y43{bottom:663.520000pt;}
.y23{bottom:665.693333pt;}
.y9b{bottom:668.733333pt;}
.y71{bottom:669.093333pt;}
.yf7{bottom:671.266667pt;}
.yd7{bottom:678.426667pt;}
.y21{bottom:685.826667pt;}
.y7{bottom:686.426667pt;}
.y3a{bottom:687.173333pt;}
.y9a{bottom:688.986667pt;}
.y42{bottom:689.946667pt;}
.yb7{bottom:692.386667pt;}
.y70{bottom:694.333333pt;}
.yf6{bottom:697.253333pt;}
.yd6{bottom:703.546667pt;}
.y99{bottom:706.106667pt;}
.y20{bottom:708.640000pt;}
.y39{bottom:711.680000pt;}
.y41{bottom:714.373333pt;}
.y6{bottom:719.680000pt;}
.yb6{bottom:720.186667pt;}
.y6f{bottom:720.666667pt;}
.y98{bottom:722.373333pt;}
.yf5{bottom:725.506667pt;}
.y1e{bottom:731.453333pt;}
.yd5{bottom:732.453333pt;}
.y38{bottom:736.066667pt;}
.y6e{bottom:737.053333pt;}
.y40{bottom:738.746667pt;}
.yed{bottom:745.666667pt;}
.yf4{bottom:746.880000pt;}
.y97{bottom:747.613333pt;}
.y5{bottom:752.826667pt;}
.y3f{bottom:755.133333pt;}
.yd4{bottom:759.746667pt;}
.y37{bottom:760.573333pt;}
.y6d{bottom:763.013333pt;}
.yf3{bottom:763.266667pt;}
.y96{bottom:768.000000pt;}
.y1d{bottom:769.693333pt;}
.y59{bottom:770.906667pt;}
.yd3{bottom:776.133333pt;}
.yf2{bottom:779.653333pt;}
.y3e{bottom:781.213333pt;}
.yb5{bottom:782.080000pt;}
.y95{bottom:784.253333pt;}
.y36{bottom:784.986667pt;}
.y4{bottom:786.080000pt;}
.y6c{bottom:791.293333pt;}
.yd2{bottom:792.506667pt;}
.yf1{bottom:805.600000pt;}
.yd1{bottom:808.773333pt;}
.y1c{bottom:809.506667pt;}
.y6b{bottom:812.506667pt;}
.y2{bottom:823.680000pt;}
.y1{bottom:843.360000pt;}
.hd{height:12.256000pt;}
.h16{height:12.384000pt;}
.h4{height:22.336000pt;}
.he{height:23.296000pt;}
.h10{height:23.328000pt;}
.hb{height:23.424000pt;}
.h11{height:27.259125pt;}
.h14{height:30.778500pt;}
.hf{height:34.464000pt;}
.hc{height:36.156750pt;}
.h1{height:41.074125pt;}
.h18{height:41.311043pt;}
.h8{height:47.588187pt;}
.ha{height:47.611875pt;}
.h3{height:48.010125pt;}
.h12{height:48.393562pt;}
.h9{height:49.862691pt;}
.h6{height:54.621000pt;}
.h15{height:56.672000pt;}
.h5{height:66.055500pt;}
.h7{height:66.308170pt;}
.h13{height:89.568000pt;}
.h2{height:95.695125pt;}
.h17{height:145.626667pt;}
.h0{height:1056.000000pt;}
.w4{width:117.696000pt;}
.w3{width:117.728000pt;}
.w2{width:117.824000pt;}
.w5{width:231.066667pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xd{left:2.306667pt;}
.x4{left:5.216000pt;}
.x2{left:72.799988pt;}
.x8{left:83.967988pt;}
.xb{left:91.007988pt;}
.x9{left:95.007988pt;}
.xe{left:109.215988pt;}
.xa{left:121.343988pt;}
.x10{left:127.423988pt;}
.xf{left:145.626655pt;}
.x1{left:179.746655pt;}
.x5{left:191.746667pt;}
.x3{left:217.599988pt;}
.x6{left:310.080000pt;}
.x7{left:428.386667pt;}
.xc{left:579.586667pt;}
}




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