
    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_9d931da0a7ee485a2f26c4ee.woff')format("woff");}.ff1{font-family:ff1;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_7502f86a251f81d3e3362ad9.woff')format("woff");}.ff2{font-family:ff2;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e294f2ceeb7a4e4b1e6362c9.woff')format("woff");}.ff3{font-family:ff3;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_9e318543b0082cbae0fd6265.woff')format("woff");}.ff4{font-family:ff4;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ff5{font-family:ff5;line-height:0.739746;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_7ad394abcb2a67b90df31cb7.woff')format("woff");}.ff6{font-family:ff6;line-height:0.999512;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_defca4745d71b77212ec84c0.woff')format("woff");}.ff7{font-family:ff7;line-height:1.003906;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);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls3{letter-spacing:-0.720000px;}
.ls6{letter-spacing:-0.612000px;}
.ls9{letter-spacing:-0.584400px;}
.lse{letter-spacing:-0.540000px;}
.lsa{letter-spacing:-0.360000px;}
.lsf{letter-spacing:-0.220800px;}
.ls2{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.106800px;}
.ls8{letter-spacing:0.135360px;}
.ls1{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.259800px;}
.ls7{letter-spacing:0.360000px;}
.ls0{letter-spacing:0.513600px;}
.lsd{letter-spacing:5.865120px;}
.lsc{letter-spacing:16.506720px;}
.lsb{letter-spacing:46.026720px;}
.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;}
}
.ws3{word-spacing:-23.940000px;}
.ws0{word-spacing:-16.560000px;}
.ws2{word-spacing:-15.840000px;}
.ws8{word-spacing:-15.300000px;}
.ws9{word-spacing:-15.199800px;}
.ws6{word-spacing:-15.046800px;}
.ws5{word-spacing:-14.940000px;}
.wsb{word-spacing:-14.220000px;}
.wsa{word-spacing:-13.999200px;}
.wsc{word-spacing:-13.860000px;}
.ws1{word-spacing:-10.440000px;}
.ws4{word-spacing:-9.720000px;}
.ws7{word-spacing:0.000000px;}
._17{margin-left:-7.818720px;}
._11{margin-left:-6.353280px;}
._f{margin-left:-5.075280px;}
._12{margin-left:-3.659760px;}
._18{margin-left:-2.450160px;}
._0{margin-left:-1.080000px;}
._10{width:1.053360px;}
._1{width:2.220000px;}
._13{width:3.278640px;}
._15{width:4.599120px;}
._1d{width:5.685600px;}
._1a{width:6.736560px;}
._19{width:8.007840px;}
._1c{width:9.344880px;}
._6{width:10.800000px;}
._14{width:12.204960px;}
._16{width:13.625280px;}
._1e{width:16.351200px;}
._1f{width:18.286560px;}
._1b{width:22.432320px;}
._7{width:76.284960px;}
._8{width:154.080000px;}
._c{width:195.120000px;}
._2{width:255.512640px;}
._3{width:357.300000px;}
._5{width:436.440000px;}
._4{width:443.166240px;}
._9{width:604.364160px;}
._d{width:653.880000px;}
._e{width:703.560000px;}
._a{width:1096.860000px;}
._b{width:1176.060000px;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,112,192);}
.fs3{font-size:2.880000px;}
.fs6{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs7{font-size:56.880000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:90.000000px;}
.fs5{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y89{bottom:5.760000px;}
.y8e{bottom:5.940000px;}
.ye{bottom:6.300000px;}
.y6{bottom:12.600000px;}
.y8{bottom:18.180000px;}
.yc{bottom:36.000000px;}
.y5{bottom:40.500000px;}
.yb{bottom:57.780000px;}
.y4{bottom:68.400000px;}
.yd{bottom:75.420000px;}
.ya{bottom:79.560000px;}
.y3{bottom:96.510000px;}
.y92{bottom:98.100000px;}
.ybf{bottom:101.700000px;}
.y68{bottom:104.040000px;}
.y3b{bottom:104.580000px;}
.y102{bottom:117.720000px;}
.y91{bottom:118.620000px;}
.ybe{bottom:121.500000px;}
.y67{bottom:123.840000px;}
.y3a{bottom:124.560000px;}
.y2{bottom:125.850000px;}
.ye4{bottom:133.740000px;}
.y101{bottom:136.620000px;}
.y90{bottom:139.320000px;}
.ybd{bottom:141.480000px;}
.y66{bottom:143.820000px;}
.y39{bottom:144.360000px;}
.y83{bottom:152.850000px;}
.ye3{bottom:153.570000px;}
.y100{bottom:158.070000px;}
.y8f{bottom:159.870000px;}
.ybc{bottom:161.310000px;}
.y65{bottom:163.650000px;}
.y38{bottom:164.190000px;}
.y82{bottom:172.650000px;}
.ye2{bottom:173.370000px;}
.yff{bottom:177.870000px;}
.ybb{bottom:178.590000px;}
.y8d{bottom:180.390000px;}
.y64{bottom:183.450000px;}
.y37{bottom:183.990000px;}
.ye1{bottom:190.650000px;}
.y81{bottom:192.450000px;}
.yfe{bottom:197.850000px;}
.y8c{bottom:201.090000px;}
.y36{bottom:201.270000px;}
.y63{bottom:203.250000px;}
.yba{bottom:207.390000px;}
.ye0{bottom:210.450000px;}
.y80{bottom:212.250000px;}
.yfd{bottom:217.650000px;}
.y8b{bottom:221.610000px;}
.y62{bottom:223.050000px;}
.yb9{bottom:227.190000px;}
.y35{bottom:230.070000px;}
.ydf{bottom:230.250000px;}
.y7f{bottom:232.050000px;}
.yfc{bottom:237.450000px;}
.y8a{bottom:242.310000px;}
.y61{bottom:243.030000px;}
.yb8{bottom:246.990000px;}
.y34{bottom:249.870000px;}
.yde{bottom:250.050000px;}
.yfb{bottom:257.250000px;}
.y7e{bottom:261.030000px;}
.y60{bottom:262.830000px;}
.yb7{bottom:266.970000px;}
.y33{bottom:269.850000px;}
.ydd{bottom:270.030000px;}
.yfa{bottom:277.050000px;}
.y7d{bottom:280.830000px;}
.y5f{bottom:282.630000px;}
.y88{bottom:283.350000px;}
.yb6{bottom:286.770000px;}
.y32{bottom:289.650000px;}
.ydc{bottom:289.830000px;}
.yf9{bottom:297.030000px;}
.y7c{bottom:300.630000px;}
.y5e{bottom:302.430000px;}
.y31{bottom:309.450000px;}
.ydb{bottom:309.630000px;}
.y87{bottom:309.810000px;}
.yb5{bottom:315.570000px;}
.yf8{bottom:316.830000px;}
.y7b{bottom:320.430000px;}
.y5d{bottom:322.230000px;}
.y86{bottom:326.370000px;}
.y30{bottom:329.250000px;}
.yda{bottom:329.430000px;}
.yb4{bottom:335.370000px;}
.yf7{bottom:336.630000px;}
.y7a{bottom:340.230000px;}
.y5c{bottom:342.210000px;}
.yd9{bottom:349.230000px;}
.yb3{bottom:355.170000px;}
.yf6{bottom:356.430000px;}
.y2f{bottom:358.050000px;}
.y79{bottom:369.210000px;}
.y5b{bottom:371.010000px;}
.yb2{bottom:375.150000px;}
.yf5{bottom:376.230000px;}
.y2e{bottom:378.030000px;}
.yd8{bottom:378.210000px;}
.y78{bottom:389.010000px;}
.y5a{bottom:390.810000px;}
.yb1{bottom:394.950000px;}
.yf4{bottom:396.210000px;}
.y2d{bottom:397.830000px;}
.yd7{bottom:398.010000px;}
.y77{bottom:408.855000px;}
.y59{bottom:410.655000px;}
.yf3{bottom:416.055000px;}
.y2c{bottom:417.675000px;}
.yd6{bottom:417.855000px;}
.yb0{bottom:423.795000px;}
.y76{bottom:428.655000px;}
.y58{bottom:430.455000px;}
.yf2{bottom:435.855000px;}
.y2b{bottom:437.475000px;}
.yd5{bottom:437.655000px;}
.yaf{bottom:443.595000px;}
.y75{bottom:448.455000px;}
.yf1{bottom:455.655000px;}
.y2a{bottom:457.275000px;}
.yd4{bottom:457.455000px;}
.y57{bottom:459.435000px;}
.yae{bottom:463.395000px;}
.y74{bottom:468.435000px;}
.yf0{bottom:475.455000px;}
.y29{bottom:477.255000px;}
.yd3{bottom:477.435000px;}
.y56{bottom:479.235000px;}
.yad{bottom:483.375000px;}
.y73{bottom:488.235000px;}
.yef{bottom:495.435000px;}
.y28{bottom:497.055000px;}
.y55{bottom:499.035000px;}
.yac{bottom:503.175000px;}
.yd2{bottom:506.235000px;}
.y72{bottom:508.035000px;}
.yee{bottom:515.235000px;}
.y27{bottom:516.855000px;}
.y54{bottom:518.835000px;}
.yd1{bottom:526.035000px;}
.y71{bottom:527.835000px;}
.yab{bottom:531.975000px;}
.yed{bottom:535.035000px;}
.y26{bottom:536.655000px;}
.yd0{bottom:545.835000px;}
.y53{bottom:547.635000px;}
.yaa{bottom:551.775000px;}
.yec{bottom:554.835000px;}
.y25{bottom:556.455000px;}
.ycf{bottom:565.635000px;}
.y52{bottom:567.615000px;}
.ya9{bottom:571.575000px;}
.yeb{bottom:574.635000px;}
.y24{bottom:576.435000px;}
.yce{bottom:585.615000px;}
.y51{bottom:587.415000px;}
.ya8{bottom:591.375000px;}
.yea{bottom:594.615000px;}
.y23{bottom:596.235000px;}
.ycd{bottom:605.415000px;}
.y50{bottom:607.215000px;}
.ya7{bottom:611.355000px;}
.y22{bottom:613.515000px;}
.ye9{bottom:614.415000px;}
.ycc{bottom:625.215000px;}
.y4f{bottom:627.015000px;}
.y21{bottom:633.315000px;}
.ye8{bottom:634.215000px;}
.ya6{bottom:640.155000px;}
.ycb{bottom:645.015000px;}
.y70{bottom:646.815000px;}
.y20{bottom:650.625000px;}
.ye7{bottom:654.045000px;}
.y4e{bottom:655.845000px;}
.ya5{bottom:659.985000px;}
.yca{bottom:664.845000px;}
.y6f{bottom:666.825000px;}
.y1f{bottom:670.425000px;}
.ye6{bottom:673.845000px;}
.y4d{bottom:675.825000px;}
.ya4{bottom:679.785000px;}
.yc9{bottom:684.825000px;}
.y6e{bottom:686.625000px;}
.y1e{bottom:690.225000px;}
.ye5{bottom:693.825000px;}
.y4c{bottom:695.625000px;}
.ya3{bottom:699.585000px;}
.y1d{bottom:710.025000px;}
.yc8{bottom:713.625000px;}
.y4b{bottom:715.425000px;}
.ya2{bottom:719.565000px;}
.y1c{bottom:729.825000px;}
.yc7{bottom:733.425000px;}
.y4a{bottom:735.225000px;}
.ya1{bottom:748.365000px;}
.y1b{bottom:749.805000px;}
.yc6{bottom:753.225000px;}
.y6d{bottom:755.025000px;}
.y49{bottom:764.025000px;}
.ya0{bottom:768.165000px;}
.y1a{bottom:769.605000px;}
.yc5{bottom:773.025000px;}
.y6c{bottom:775.005000px;}
.y48{bottom:784.005000px;}
.y9f{bottom:787.965000px;}
.y19{bottom:789.405000px;}
.yc4{bottom:793.005000px;}
.y47{bottom:803.805000px;}
.y9e{bottom:807.765000px;}
.y18{bottom:809.205000px;}
.yc3{bottom:812.805000px;}
.y46{bottom:823.605000px;}
.y9d{bottom:827.745000px;}
.y17{bottom:829.005000px;}
.yc2{bottom:832.605000px;}
.y45{bottom:843.405000px;}
.y9c{bottom:845.025000px;}
.y16{bottom:848.985000px;}
.yc1{bottom:852.405000px;}
.y9b{bottom:859.785000px;}
.y44{bottom:863.205000px;}
.y15{bottom:866.265000px;}
.yc0{bottom:872.205000px;}
.y9a{bottom:880.305000px;}
.y6b{bottom:883.185000px;}
.y14{bottom:891.285000px;}
.y43{bottom:892.185000px;}
.y99{bottom:900.870000px;}
.y6a{bottom:903.030000px;}
.y13{bottom:911.130000px;}
.y42{bottom:912.030000px;}
.y98{bottom:921.570000px;}
.y69{bottom:922.830000px;}
.y12{bottom:926.250000px;}
.y41{bottom:931.830000px;}
.y97{bottom:942.090000px;}
.y85{bottom:942.630000px;}
.y11{bottom:948.030000px;}
.y40{bottom:951.630000px;}
.y84{bottom:962.430000px;}
.y96{bottom:962.790000px;}
.y3f{bottom:971.430000px;}
.y10{bottom:973.050000px;}
.y95{bottom:983.310000px;}
.y3e{bottom:991.410000px;}
.y94{bottom:1003.830000px;}
.yf{bottom:1004.730000px;}
.y3d{bottom:1011.210000px;}
.y93{bottom:1024.530000px;}
.y3c{bottom:1031.010000px;}
.y9{bottom:1048.470000px;}
.y1{bottom:1062.870000px;}
.y7{bottom:1097.250000px;}
.h6{height:2.010938px;}
.hf{height:19.800000px;}
.h11{height:19.836000px;}
.h10{height:19.980000px;}
.ha{height:21.780000px;}
.hd{height:27.147656px;}
.h7{height:33.480000px;}
.h8{height:41.726953px;}
.he{height:42.164648px;}
.h14{height:42.854414px;}
.h12{height:43.506914px;}
.hb{height:46.251562px;}
.h4{height:46.736719px;}
.h9{height:53.224453px;}
.h13{height:56.574492px;}
.h3{height:63.500977px;}
.hc{height:67.565039px;}
.h5{height:112.536000px;}
.h2{height:146.916000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:9.900000px;}
.w3{width:131.796000px;}
.w8{width:206.130000px;}
.w7{width:225.615000px;}
.w6{width:350.535000px;}
.w2{width:654.630000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.100000px;}
.x1{left:53.280000px;}
.xd{left:54.720000px;}
.x10{left:80.999987px;}
.x6{left:97.235987px;}
.x11{left:108.035987px;}
.x4{left:118.290000px;}
.xb{left:171.389987px;}
.xa{left:180.749987px;}
.x9{left:289.154987px;}
.x7{left:389.234987px;}
.xe{left:405.975000px;}
.x8{left:446.504987px;}
.xf{left:632.310000px;}
.x3{left:707.910000px;}
.xc{left:785.129987px;}
.x5{left:829.260000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls3{letter-spacing:-0.640000pt;}
.ls6{letter-spacing:-0.544000pt;}
.ls9{letter-spacing:-0.519467pt;}
.lse{letter-spacing:-0.480000pt;}
.lsa{letter-spacing:-0.320000pt;}
.lsf{letter-spacing:-0.196267pt;}
.ls2{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.094933pt;}
.ls8{letter-spacing:0.120320pt;}
.ls1{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.230933pt;}
.ls7{letter-spacing:0.320000pt;}
.ls0{letter-spacing:0.456533pt;}
.lsd{letter-spacing:5.213440pt;}
.lsc{letter-spacing:14.672640pt;}
.lsb{letter-spacing:40.912640pt;}
.ws3{word-spacing:-21.280000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws2{word-spacing:-14.080000pt;}
.ws8{word-spacing:-13.600000pt;}
.ws9{word-spacing:-13.510933pt;}
.ws6{word-spacing:-13.374933pt;}
.ws5{word-spacing:-13.280000pt;}
.wsb{word-spacing:-12.640000pt;}
.wsa{word-spacing:-12.443733pt;}
.wsc{word-spacing:-12.320000pt;}
.ws1{word-spacing:-9.280000pt;}
.ws4{word-spacing:-8.640000pt;}
.ws7{word-spacing:0.000000pt;}
._17{margin-left:-6.949973pt;}
._11{margin-left:-5.647360pt;}
._f{margin-left:-4.511360pt;}
._12{margin-left:-3.253120pt;}
._18{margin-left:-2.177920pt;}
._0{margin-left:-0.960000pt;}
._10{width:0.936320pt;}
._1{width:1.973333pt;}
._13{width:2.914347pt;}
._15{width:4.088107pt;}
._1d{width:5.053867pt;}
._1a{width:5.988053pt;}
._19{width:7.118080pt;}
._1c{width:8.306560pt;}
._6{width:9.600000pt;}
._14{width:10.848853pt;}
._16{width:12.111360pt;}
._1e{width:14.534400pt;}
._1f{width:16.254720pt;}
._1b{width:19.939840pt;}
._7{width:67.808853pt;}
._8{width:136.960000pt;}
._c{width:173.440000pt;}
._2{width:227.122347pt;}
._3{width:317.600000pt;}
._5{width:387.946667pt;}
._4{width:393.925547pt;}
._9{width:537.212587pt;}
._d{width:581.226667pt;}
._e{width:625.386667pt;}
._a{width:974.986667pt;}
._b{width:1045.386667pt;}
.fs3{font-size:2.560000pt;}
.fs6{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs7{font-size:50.560000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:80.000000pt;}
.fs5{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y89{bottom:5.120000pt;}
.y8e{bottom:5.280000pt;}
.ye{bottom:5.600000pt;}
.y6{bottom:11.200000pt;}
.y8{bottom:16.160000pt;}
.yc{bottom:32.000000pt;}
.y5{bottom:36.000000pt;}
.yb{bottom:51.360000pt;}
.y4{bottom:60.800000pt;}
.yd{bottom:67.040000pt;}
.ya{bottom:70.720000pt;}
.y3{bottom:85.786667pt;}
.y92{bottom:87.200000pt;}
.ybf{bottom:90.400000pt;}
.y68{bottom:92.480000pt;}
.y3b{bottom:92.960000pt;}
.y102{bottom:104.640000pt;}
.y91{bottom:105.440000pt;}
.ybe{bottom:108.000000pt;}
.y67{bottom:110.080000pt;}
.y3a{bottom:110.720000pt;}
.y2{bottom:111.866667pt;}
.ye4{bottom:118.880000pt;}
.y101{bottom:121.440000pt;}
.y90{bottom:123.840000pt;}
.ybd{bottom:125.760000pt;}
.y66{bottom:127.840000pt;}
.y39{bottom:128.320000pt;}
.y83{bottom:135.866667pt;}
.ye3{bottom:136.506667pt;}
.y100{bottom:140.506667pt;}
.y8f{bottom:142.106667pt;}
.ybc{bottom:143.386667pt;}
.y65{bottom:145.466667pt;}
.y38{bottom:145.946667pt;}
.y82{bottom:153.466667pt;}
.ye2{bottom:154.106667pt;}
.yff{bottom:158.106667pt;}
.ybb{bottom:158.746667pt;}
.y8d{bottom:160.346667pt;}
.y64{bottom:163.066667pt;}
.y37{bottom:163.546667pt;}
.ye1{bottom:169.466667pt;}
.y81{bottom:171.066667pt;}
.yfe{bottom:175.866667pt;}
.y8c{bottom:178.746667pt;}
.y36{bottom:178.906667pt;}
.y63{bottom:180.666667pt;}
.yba{bottom:184.346667pt;}
.ye0{bottom:187.066667pt;}
.y80{bottom:188.666667pt;}
.yfd{bottom:193.466667pt;}
.y8b{bottom:196.986667pt;}
.y62{bottom:198.266667pt;}
.yb9{bottom:201.946667pt;}
.y35{bottom:204.506667pt;}
.ydf{bottom:204.666667pt;}
.y7f{bottom:206.266667pt;}
.yfc{bottom:211.066667pt;}
.y8a{bottom:215.386667pt;}
.y61{bottom:216.026667pt;}
.yb8{bottom:219.546667pt;}
.y34{bottom:222.106667pt;}
.yde{bottom:222.266667pt;}
.yfb{bottom:228.666667pt;}
.y7e{bottom:232.026667pt;}
.y60{bottom:233.626667pt;}
.yb7{bottom:237.306667pt;}
.y33{bottom:239.866667pt;}
.ydd{bottom:240.026667pt;}
.yfa{bottom:246.266667pt;}
.y7d{bottom:249.626667pt;}
.y5f{bottom:251.226667pt;}
.y88{bottom:251.866667pt;}
.yb6{bottom:254.906667pt;}
.y32{bottom:257.466667pt;}
.ydc{bottom:257.626667pt;}
.yf9{bottom:264.026667pt;}
.y7c{bottom:267.226667pt;}
.y5e{bottom:268.826667pt;}
.y31{bottom:275.066667pt;}
.ydb{bottom:275.226667pt;}
.y87{bottom:275.386667pt;}
.yb5{bottom:280.506667pt;}
.yf8{bottom:281.626667pt;}
.y7b{bottom:284.826667pt;}
.y5d{bottom:286.426667pt;}
.y86{bottom:290.106667pt;}
.y30{bottom:292.666667pt;}
.yda{bottom:292.826667pt;}
.yb4{bottom:298.106667pt;}
.yf7{bottom:299.226667pt;}
.y7a{bottom:302.426667pt;}
.y5c{bottom:304.186667pt;}
.yd9{bottom:310.426667pt;}
.yb3{bottom:315.706667pt;}
.yf6{bottom:316.826667pt;}
.y2f{bottom:318.266667pt;}
.y79{bottom:328.186667pt;}
.y5b{bottom:329.786667pt;}
.yb2{bottom:333.466667pt;}
.yf5{bottom:334.426667pt;}
.y2e{bottom:336.026667pt;}
.yd8{bottom:336.186667pt;}
.y78{bottom:345.786667pt;}
.y5a{bottom:347.386667pt;}
.yb1{bottom:351.066667pt;}
.yf4{bottom:352.186667pt;}
.y2d{bottom:353.626667pt;}
.yd7{bottom:353.786667pt;}
.y77{bottom:363.426667pt;}
.y59{bottom:365.026667pt;}
.yf3{bottom:369.826667pt;}
.y2c{bottom:371.266667pt;}
.yd6{bottom:371.426667pt;}
.yb0{bottom:376.706667pt;}
.y76{bottom:381.026667pt;}
.y58{bottom:382.626667pt;}
.yf2{bottom:387.426667pt;}
.y2b{bottom:388.866667pt;}
.yd5{bottom:389.026667pt;}
.yaf{bottom:394.306667pt;}
.y75{bottom:398.626667pt;}
.yf1{bottom:405.026667pt;}
.y2a{bottom:406.466667pt;}
.yd4{bottom:406.626667pt;}
.y57{bottom:408.386667pt;}
.yae{bottom:411.906667pt;}
.y74{bottom:416.386667pt;}
.yf0{bottom:422.626667pt;}
.y29{bottom:424.226667pt;}
.yd3{bottom:424.386667pt;}
.y56{bottom:425.986667pt;}
.yad{bottom:429.666667pt;}
.y73{bottom:433.986667pt;}
.yef{bottom:440.386667pt;}
.y28{bottom:441.826667pt;}
.y55{bottom:443.586667pt;}
.yac{bottom:447.266667pt;}
.yd2{bottom:449.986667pt;}
.y72{bottom:451.586667pt;}
.yee{bottom:457.986667pt;}
.y27{bottom:459.426667pt;}
.y54{bottom:461.186667pt;}
.yd1{bottom:467.586667pt;}
.y71{bottom:469.186667pt;}
.yab{bottom:472.866667pt;}
.yed{bottom:475.586667pt;}
.y26{bottom:477.026667pt;}
.yd0{bottom:485.186667pt;}
.y53{bottom:486.786667pt;}
.yaa{bottom:490.466667pt;}
.yec{bottom:493.186667pt;}
.y25{bottom:494.626667pt;}
.ycf{bottom:502.786667pt;}
.y52{bottom:504.546667pt;}
.ya9{bottom:508.066667pt;}
.yeb{bottom:510.786667pt;}
.y24{bottom:512.386667pt;}
.yce{bottom:520.546667pt;}
.y51{bottom:522.146667pt;}
.ya8{bottom:525.666667pt;}
.yea{bottom:528.546667pt;}
.y23{bottom:529.986667pt;}
.ycd{bottom:538.146667pt;}
.y50{bottom:539.746667pt;}
.ya7{bottom:543.426667pt;}
.y22{bottom:545.346667pt;}
.ye9{bottom:546.146667pt;}
.ycc{bottom:555.746667pt;}
.y4f{bottom:557.346667pt;}
.y21{bottom:562.946667pt;}
.ye8{bottom:563.746667pt;}
.ya6{bottom:569.026667pt;}
.ycb{bottom:573.346667pt;}
.y70{bottom:574.946667pt;}
.y20{bottom:578.333333pt;}
.ye7{bottom:581.373333pt;}
.y4e{bottom:582.973333pt;}
.ya5{bottom:586.653333pt;}
.yca{bottom:590.973333pt;}
.y6f{bottom:592.733333pt;}
.y1f{bottom:595.933333pt;}
.ye6{bottom:598.973333pt;}
.y4d{bottom:600.733333pt;}
.ya4{bottom:604.253333pt;}
.yc9{bottom:608.733333pt;}
.y6e{bottom:610.333333pt;}
.y1e{bottom:613.533333pt;}
.ye5{bottom:616.733333pt;}
.y4c{bottom:618.333333pt;}
.ya3{bottom:621.853333pt;}
.y1d{bottom:631.133333pt;}
.yc8{bottom:634.333333pt;}
.y4b{bottom:635.933333pt;}
.ya2{bottom:639.613333pt;}
.y1c{bottom:648.733333pt;}
.yc7{bottom:651.933333pt;}
.y4a{bottom:653.533333pt;}
.ya1{bottom:665.213333pt;}
.y1b{bottom:666.493333pt;}
.yc6{bottom:669.533333pt;}
.y6d{bottom:671.133333pt;}
.y49{bottom:679.133333pt;}
.ya0{bottom:682.813333pt;}
.y1a{bottom:684.093333pt;}
.yc5{bottom:687.133333pt;}
.y6c{bottom:688.893333pt;}
.y48{bottom:696.893333pt;}
.y9f{bottom:700.413333pt;}
.y19{bottom:701.693333pt;}
.yc4{bottom:704.893333pt;}
.y47{bottom:714.493333pt;}
.y9e{bottom:718.013333pt;}
.y18{bottom:719.293333pt;}
.yc3{bottom:722.493333pt;}
.y46{bottom:732.093333pt;}
.y9d{bottom:735.773333pt;}
.y17{bottom:736.893333pt;}
.yc2{bottom:740.093333pt;}
.y45{bottom:749.693333pt;}
.y9c{bottom:751.133333pt;}
.y16{bottom:754.653333pt;}
.yc1{bottom:757.693333pt;}
.y9b{bottom:764.253333pt;}
.y44{bottom:767.293333pt;}
.y15{bottom:770.013333pt;}
.yc0{bottom:775.293333pt;}
.y9a{bottom:782.493333pt;}
.y6b{bottom:785.053333pt;}
.y14{bottom:792.253333pt;}
.y43{bottom:793.053333pt;}
.y99{bottom:800.773333pt;}
.y6a{bottom:802.693333pt;}
.y13{bottom:809.893333pt;}
.y42{bottom:810.693333pt;}
.y98{bottom:819.173333pt;}
.y69{bottom:820.293333pt;}
.y12{bottom:823.333333pt;}
.y41{bottom:828.293333pt;}
.y97{bottom:837.413333pt;}
.y85{bottom:837.893333pt;}
.y11{bottom:842.693333pt;}
.y40{bottom:845.893333pt;}
.y84{bottom:855.493333pt;}
.y96{bottom:855.813333pt;}
.y3f{bottom:863.493333pt;}
.y10{bottom:864.933333pt;}
.y95{bottom:874.053333pt;}
.y3e{bottom:881.253333pt;}
.y94{bottom:892.293333pt;}
.yf{bottom:893.093333pt;}
.y3d{bottom:898.853333pt;}
.y93{bottom:910.693333pt;}
.y3c{bottom:916.453333pt;}
.y9{bottom:931.973333pt;}
.y1{bottom:944.773333pt;}
.y7{bottom:975.333333pt;}
.h6{height:1.787500pt;}
.hf{height:17.600000pt;}
.h11{height:17.632000pt;}
.h10{height:17.760000pt;}
.ha{height:19.360000pt;}
.hd{height:24.131250pt;}
.h7{height:29.760000pt;}
.h8{height:37.090625pt;}
.he{height:37.479688pt;}
.h14{height:38.092813pt;}
.h12{height:38.672812pt;}
.hb{height:41.112500pt;}
.h4{height:41.543750pt;}
.h9{height:47.310625pt;}
.h13{height:50.288438pt;}
.h3{height:56.445312pt;}
.hc{height:60.057813pt;}
.h5{height:100.032000pt;}
.h2{height:130.592000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:8.800000pt;}
.w3{width:117.152000pt;}
.w8{width:183.226667pt;}
.w7{width:200.546667pt;}
.w6{width:311.586667pt;}
.w2{width:581.893333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.200000pt;}
.x1{left:47.360000pt;}
.xd{left:48.640000pt;}
.x10{left:71.999988pt;}
.x6{left:86.431988pt;}
.x11{left:96.031988pt;}
.x4{left:105.146667pt;}
.xb{left:152.346655pt;}
.xa{left:160.666655pt;}
.x9{left:257.026655pt;}
.x7{left:345.986655pt;}
.xe{left:360.866667pt;}
.x8{left:396.893322pt;}
.xf{left:562.053333pt;}
.x3{left:629.253333pt;}
.xc{left:697.893322pt;}
.x5{left:737.120000pt;}
}




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