
    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_024a74bbf5dc2c8a7ebbc227.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_3f463914736c495fb45f6190.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_7a679402cf96a12fdd4cb642.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.040039;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_21aae30012a8efb822ee0663.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.929199;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_88f3cd1b3f0cf44c0529f189.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.929199;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_819507d2cea20ecef7e35100.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.084961;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_5d98c08424d8c2910451c47e.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.040039;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_38853ef3ed94269e3e707464.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.131836;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_e0ab303796c939aa17f1b2c1.woff2')format("woff");}.ff9{font-family:ff9;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;}
.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;}
.ls25{letter-spacing:-0.720000px;}
.ls17{letter-spacing:-0.540000px;}
.ls7{letter-spacing:-0.496200px;}
.ls19{letter-spacing:-0.457800px;}
.lsa{letter-spacing:-0.450600px;}
.ls23{letter-spacing:-0.414600px;}
.ls6{letter-spacing:-0.181200px;}
.ls16{letter-spacing:-0.109200px;}
.ls5{letter-spacing:-0.106800px;}
.ls4{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.008640px;}
.ls15{letter-spacing:0.109200px;}
.lse{letter-spacing:0.109440px;}
.ls0{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.223800px;}
.ls2{letter-spacing:0.259920px;}
.lsf{letter-spacing:0.262080px;}
.ls1a{letter-spacing:0.262200px;}
.ls1c{letter-spacing:0.269400px;}
.ls1f{letter-spacing:0.305280px;}
.ls1{letter-spacing:0.360000px;}
.ls26{letter-spacing:0.720000px;}
.ls18{letter-spacing:3.060000px;}
.lsd{letter-spacing:3.780000px;}
.ls24{letter-spacing:4.320000px;}
.ls9{letter-spacing:4.500000px;}
.ls11{letter-spacing:5.940000px;}
.ls1e{letter-spacing:6.480000px;}
.lsc{letter-spacing:7.380000px;}
.ls21{letter-spacing:7.920000px;}
.ls14{letter-spacing:10.260000px;}
.ls1b{letter-spacing:10.800000px;}
.ls1d{letter-spacing:11.520000px;}
.ls13{letter-spacing:13.860000px;}
.ls22{letter-spacing:16.865280px;}
.ls10{letter-spacing:34.841280px;}
.ls20{letter-spacing:38.340000px;}
.lsb{letter-spacing:39.905280px;}
.ls12{letter-spacing:43.505280px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb{word-spacing:-16.669200px;}
.ws8{word-spacing:-16.560000px;}
.ws0{word-spacing:-14.940000px;}
.ws4{word-spacing:-13.500000px;}
.ws3{word-spacing:-13.410720px;}
.ws2{word-spacing:-13.229520px;}
.wsc{word-spacing:-12.420000px;}
.wsd{word-spacing:-12.329400px;}
.ws7{word-spacing:-12.283800px;}
.ws5{word-spacing:-12.060000px;}
.wsa{word-spacing:-11.609400px;}
.ws6{word-spacing:-11.563800px;}
.ws9{word-spacing:0.000000px;}
.ws1{word-spacing:0.047040px;}
._19{margin-left:-4.915440px;}
._13{margin-left:-3.214080px;}
._1{margin-left:-1.736640px;}
._0{width:1.254960px;}
._2{width:3.034560px;}
._5{width:4.212000px;}
._7{width:5.832000px;}
._6{width:7.398000px;}
._15{width:8.627040px;}
._b{width:10.368000px;}
._c{width:11.389680px;}
._d{width:12.449280px;}
._18{width:13.653120px;}
._3{width:14.796000px;}
._8{width:16.254000px;}
._14{width:18.206640px;}
._4{width:19.224000px;}
._1c{width:20.468160px;}
._1d{width:21.765600px;}
._a{width:23.107680px;}
._9{width:24.138000px;}
._1a{width:25.920000px;}
._26{width:27.057600px;}
._22{width:28.152000px;}
._23{width:29.424960px;}
._12{width:31.122000px;}
._11{width:32.166000px;}
._10{width:33.966000px;}
._20{width:36.630720px;}
._21{width:37.789200px;}
._e{width:39.378720px;}
._f{width:40.446000px;}
._24{width:41.664960px;}
._25{width:43.188480px;}
._1e{width:45.109440px;}
._1f{width:46.372320px;}
._16{width:56.592000px;}
._17{width:96.714000px;}
._1b{width:196.369680px;}
.fc4{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(17,85,204);}
.fc1{color:rgb(5,99,193);}
.fc7{color:rgb(14,14,14);}
.fc6{color:rgb(26,26,26);}
.fc5{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:30.240000px;}
.fs6{font-size:41.760000px;}
.fs3{font-size:48.240000px;}
.fs5{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y38{bottom:2.880000px;}
.y2{bottom:6.480000px;}
.y3a{bottom:9.900000px;}
.y3b{bottom:11.340000px;}
.y37{bottom:18.360000px;}
.y5{bottom:25.410000px;}
.y8{bottom:28.830000px;}
.y36{bottom:34.065000px;}
.y4{bottom:42.690000px;}
.y7{bottom:46.110000px;}
.y35{bottom:49.545000px;}
.ya{bottom:56.340000px;}
.y3{bottom:60.690000px;}
.y6{bottom:63.390000px;}
.y34{bottom:65.025000px;}
.y33{bottom:80.505000px;}
.y32{bottom:96.165000px;}
.y78{bottom:110.376000px;}
.y31{bottom:111.645000px;}
.y94{bottom:114.876000px;}
.y77{bottom:124.236000px;}
.y41{bottom:127.116000px;}
.y30{bottom:127.125000px;}
.y80{bottom:128.736000px;}
.y76{bottom:137.916000px;}
.y83{bottom:138.996000px;}
.y9e{bottom:141.876000px;}
.y75{bottom:142.416000px;}
.y2f{bottom:142.605000px;}
.y40{bottom:148.896000px;}
.y74{bottom:151.770000px;}
.y90{bottom:152.670000px;}
.y8e{bottom:156.270000px;}
.y2e{bottom:158.265000px;}
.y9d{bottom:163.650000px;}
.y73{bottom:165.630000px;}
.y9a{bottom:166.530000px;}
.y72{bottom:170.130000px;}
.y3f{bottom:170.850000px;}
.y2d{bottom:173.745000px;}
.y71{bottom:179.310000px;}
.y7f{bottom:180.390000px;}
.y8d{bottom:183.810000px;}
.y82{bottom:185.430000px;}
.y2c{bottom:189.225000px;}
.y3e{bottom:192.630000px;}
.y70{bottom:193.170000px;}
.y98{bottom:194.070000px;}
.y6f{bottom:197.670000px;}
.y2b{bottom:204.705000px;}
.y6e{bottom:207.030000px;}
.y7e{bottom:207.390000px;}
.y93{bottom:207.930000px;}
.y8c{bottom:211.530000px;}
.y3d{bottom:214.410000px;}
.y2a{bottom:220.365000px;}
.y6d{bottom:220.710000px;}
.y6c{bottom:225.210000px;}
.y7d{bottom:229.170000px;}
.y3c{bottom:229.890000px;}
.y6b{bottom:234.570000px;}
.y8b{bottom:235.470000px;}
.y29{bottom:235.845000px;}
.y6a{bottom:248.430000px;}
.y7b{bottom:250.950000px;}
.y28{bottom:251.325000px;}
.y39{bottom:252.030000px;}
.y69{bottom:252.930000px;}
.y7c{bottom:256.890000px;}
.y68{bottom:263.190000px;}
.y27{bottom:266.805000px;}
.y7a{bottom:272.730000px;}
.y92{bottom:278.670000px;}
.y26{bottom:282.465000px;}
.y12{bottom:283.530000px;}
.y67{bottom:294.690000px;}
.y25{bottom:297.975000px;}
.y24{bottom:313.455000px;}
.y65{bottom:316.470000px;}
.y66{bottom:322.455000px;}
.y23{bottom:328.935000px;}
.y64{bottom:338.295000px;}
.y97{bottom:344.235000px;}
.y22{bottom:344.595000px;}
.y21{bottom:360.075000px;}
.y63{bottom:366.015000px;}
.y20{bottom:375.555000px;}
.y62{bottom:381.855000px;}
.y8a{bottom:387.795000px;}
.y1f{bottom:391.035000px;}
.y61{bottom:403.815000px;}
.y1e{bottom:406.695000px;}
.y1d{bottom:422.175000px;}
.y60{bottom:425.595000px;}
.y9c{bottom:431.535000px;}
.y1c{bottom:437.655000px;}
.y5f{bottom:447.375000px;}
.y1b{bottom:453.135000px;}
.y89{bottom:453.315000px;}
.y1a{bottom:468.795000px;}
.y5e{bottom:469.155000px;}
.y91{bottom:475.095000px;}
.y19{bottom:484.275000px;}
.y5d{bottom:491.115000px;}
.y18{bottom:499.755000px;}
.y5c{bottom:512.895000px;}
.y17{bottom:515.235000px;}
.y9b{bottom:518.835000px;}
.y16{bottom:530.715000px;}
.y5b{bottom:534.675000px;}
.y79{bottom:540.615000px;}
.y15{bottom:546.420000px;}
.y5a{bottom:556.455000px;}
.y14{bottom:561.900000px;}
.y96{bottom:562.395000px;}
.y13{bottom:577.380000px;}
.y59{bottom:578.265000px;}
.y57{bottom:600.225000px;}
.y58{bottom:606.165000px;}
.y56{bottom:622.005000px;}
.y88{bottom:627.945000px;}
.y55{bottom:643.785000px;}
.y54{bottom:665.565000px;}
.y53{bottom:687.345000px;}
.y52{bottom:709.305000px;}
.y8f{bottom:715.245000px;}
.y51{bottom:731.085000px;}
.y50{bottom:752.865000px;}
.y4f{bottom:774.645000px;}
.y81{bottom:780.585000px;}
.y4e{bottom:796.605000px;}
.y87{bottom:802.545000px;}
.y4c{bottom:818.385000px;}
.y4d{bottom:824.370000px;}
.y4b{bottom:840.210000px;}
.y86{bottom:846.150000px;}
.y4a{bottom:861.990000px;}
.y95{bottom:867.930000px;}
.y11{bottom:879.810000px;}
.y49{bottom:883.770000px;}
.y10{bottom:901.230000px;}
.y48{bottom:905.730000px;}
.yf{bottom:921.030000px;}
.y46{bottom:927.510000px;}
.y47{bottom:933.450000px;}
.ye{bottom:941.370000px;}
.y45{bottom:949.290000px;}
.y85{bottom:955.230000px;}
.yd{bottom:963.150000px;}
.y44{bottom:971.070000px;}
.y99{bottom:977.010000px;}
.yc{bottom:986.370000px;}
.y43{bottom:993.030000px;}
.y84{bottom:998.970000px;}
.yb{bottom:1012.110000px;}
.y42{bottom:1014.810000px;}
.y9{bottom:1036.590000px;}
.y1{bottom:1056.570000px;}
.h14{height:21.114844px;}
.h12{height:29.158594px;}
.hf{height:31.500000px;}
.h11{height:33.683203px;}
.hd{height:37.705078px;}
.hc{height:38.100586px;}
.h7{height:39.147891px;}
.h15{height:39.760312px;}
.h2{height:41.726953px;}
.h4{height:42.164648px;}
.he{height:44.507812px;}
.ha{height:46.251562px;}
.h9{height:46.736719px;}
.h10{height:47.980898px;}
.h6{height:48.224531px;}
.h5{height:49.255313px;}
.h3{height:50.800781px;}
.h13{height:54.596250px;}
.h8{height:54.864844px;}
.h1{height:77.436000px;}
.hb{height:589.965000px;}
.h0{height:1188.000000px;}
.w1{width:72.000000px;}
.w3{width:209.370000px;}
.w6{width:224.130000px;}
.w7{width:297.750000px;}
.w8{width:391.575000px;}
.w2{width:427.935000px;}
.w5{width:459.075000px;}
.w9{width:917.999973px;}
.w4{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x4{left:8.100000px;}
.x12{left:29.700000px;}
.x6{left:44.640000px;}
.x2{left:69.294000px;}
.x7{left:85.725000px;}
.x1{left:99.936000px;}
.x9{left:108.035986px;}
.x20{left:111.815986px;}
.x11{left:116.136000px;}
.x8{left:127.305000px;}
.x5d{left:129.275986px;}
.xb{left:135.575986px;}
.x5e{left:140.075986px;}
.x19{left:142.415973px;}
.x1a{left:147.635986px;}
.x42{left:150.149973px;}
.x3c{left:156.089973px;}
.x43{left:160.589986px;}
.x15{left:162.029986px;}
.x3d{left:166.529986px;}
.x3{left:171.930000px;}
.xc{left:173.189986px;}
.x21{left:175.529986px;}
.x4a{left:177.149973px;}
.x17{left:186.329973px;}
.x4b{left:187.589986px;}
.x28{left:189.029986px;}
.x18{left:191.549986px;}
.x29{left:216.029986px;}
.x22{left:221.789973px;}
.x23{left:227.009986px;}
.x34{left:237.989973px;}
.x2e{left:239.429973px;}
.x1b{left:241.949973px;}
.x1c{left:247.169986px;}
.x35{left:248.429986px;}
.x2f{left:249.869986px;}
.x57{left:283.169973px;}
.x4c{left:285.554973px;}
.x58{left:293.654986px;}
.x4d{left:295.994986px;}
.x1f{left:324.074986px;}
.xe{left:339.014986px;}
.xd{left:347.834986px;}
.xf{left:356.114986px;}
.x1d{left:383.654973px;}
.x1e{left:388.874986px;}
.x30{left:395.174973px;}
.x31{left:405.614986px;}
.x3a{left:407.774973px;}
.x13{left:413.895000px;}
.x40{left:416.234973px;}
.x3b{left:418.214986px;}
.x41{left:426.674986px;}
.x59{left:448.994973px;}
.x3e{left:455.294973px;}
.x5a{left:459.434986px;}
.x3f{left:465.734986px;}
.x5b{left:475.814973px;}
.x5c{left:486.284986px;}
.x52{left:487.544973px;}
.x44{left:488.984973px;}
.x53{left:497.984986px;}
.x45{left:499.424986px;}
.x54{left:501.944973px;}
.x2c{left:503.384973px;}
.x55{left:512.384986px;}
.x2d{left:513.824986px;}
.xa{left:521.024986px;}
.x46{left:526.424973px;}
.x47{left:536.864986px;}
.x10{left:567.105000px;}
.x26{left:587.804973px;}
.x27{left:593.024986px;}
.x16{left:595.184973px;}
.x5{left:599.865000px;}
.x2a{left:623.624973px;}
.x2b{left:628.844986px;}
.x32{left:639.644973px;}
.x33{left:650.084986px;}
.x50{left:662.864973px;}
.x51{left:673.304986px;}
.x4e{left:675.329973px;}
.x38{left:678.749973px;}
.x4f{left:685.769986px;}
.x39{left:689.189986px;}
.x36{left:745.709973px;}
.x37{left:756.149986px;}
.x48{left:785.489973px;}
.x49{left:795.929986px;}
.x56{left:799.709973px;}
.x14{left:802.949986px;}
.x24{left:804.929973px;}
.x25{left:810.149986px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls25{letter-spacing:-0.640000pt;}
.ls17{letter-spacing:-0.480000pt;}
.ls7{letter-spacing:-0.441067pt;}
.ls19{letter-spacing:-0.406933pt;}
.lsa{letter-spacing:-0.400533pt;}
.ls23{letter-spacing:-0.368533pt;}
.ls6{letter-spacing:-0.161067pt;}
.ls16{letter-spacing:-0.097067pt;}
.ls5{letter-spacing:-0.094933pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.007680pt;}
.ls15{letter-spacing:0.097067pt;}
.lse{letter-spacing:0.097280pt;}
.ls0{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.198933pt;}
.ls2{letter-spacing:0.231040pt;}
.lsf{letter-spacing:0.232960pt;}
.ls1a{letter-spacing:0.233067pt;}
.ls1c{letter-spacing:0.239467pt;}
.ls1f{letter-spacing:0.271360pt;}
.ls1{letter-spacing:0.320000pt;}
.ls26{letter-spacing:0.640000pt;}
.ls18{letter-spacing:2.720000pt;}
.lsd{letter-spacing:3.360000pt;}
.ls24{letter-spacing:3.840000pt;}
.ls9{letter-spacing:4.000000pt;}
.ls11{letter-spacing:5.280000pt;}
.ls1e{letter-spacing:5.760000pt;}
.lsc{letter-spacing:6.560000pt;}
.ls21{letter-spacing:7.040000pt;}
.ls14{letter-spacing:9.120000pt;}
.ls1b{letter-spacing:9.600000pt;}
.ls1d{letter-spacing:10.240000pt;}
.ls13{letter-spacing:12.320000pt;}
.ls22{letter-spacing:14.991360pt;}
.ls10{letter-spacing:30.970027pt;}
.ls20{letter-spacing:34.080000pt;}
.lsb{letter-spacing:35.471360pt;}
.ls12{letter-spacing:38.671360pt;}
.wsb{word-spacing:-14.817067pt;}
.ws8{word-spacing:-14.720000pt;}
.ws0{word-spacing:-13.280000pt;}
.ws4{word-spacing:-12.000000pt;}
.ws3{word-spacing:-11.920640pt;}
.ws2{word-spacing:-11.759573pt;}
.wsc{word-spacing:-11.040000pt;}
.wsd{word-spacing:-10.959467pt;}
.ws7{word-spacing:-10.918933pt;}
.ws5{word-spacing:-10.720000pt;}
.wsa{word-spacing:-10.319467pt;}
.ws6{word-spacing:-10.278933pt;}
.ws9{word-spacing:0.000000pt;}
.ws1{word-spacing:0.041813pt;}
._19{margin-left:-4.369280pt;}
._13{margin-left:-2.856960pt;}
._1{margin-left:-1.543680pt;}
._0{width:1.115520pt;}
._2{width:2.697387pt;}
._5{width:3.744000pt;}
._7{width:5.184000pt;}
._6{width:6.576000pt;}
._15{width:7.668480pt;}
._b{width:9.216000pt;}
._c{width:10.124160pt;}
._d{width:11.066027pt;}
._18{width:12.136107pt;}
._3{width:13.152000pt;}
._8{width:14.448000pt;}
._14{width:16.183680pt;}
._4{width:17.088000pt;}
._1c{width:18.193920pt;}
._1d{width:19.347200pt;}
._a{width:20.540160pt;}
._9{width:21.456000pt;}
._1a{width:23.040000pt;}
._26{width:24.051200pt;}
._22{width:25.024000pt;}
._23{width:26.155520pt;}
._12{width:27.664000pt;}
._11{width:28.592000pt;}
._10{width:30.192000pt;}
._20{width:32.560640pt;}
._21{width:33.590400pt;}
._e{width:35.003307pt;}
._f{width:35.952000pt;}
._24{width:37.035520pt;}
._25{width:38.389760pt;}
._1e{width:40.097280pt;}
._1f{width:41.219840pt;}
._16{width:50.304000pt;}
._17{width:85.968000pt;}
._1b{width:174.550827pt;}
.fs7{font-size:26.880000pt;}
.fs6{font-size:37.120000pt;}
.fs3{font-size:42.880000pt;}
.fs5{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y38{bottom:2.560000pt;}
.y2{bottom:5.760000pt;}
.y3a{bottom:8.800000pt;}
.y3b{bottom:10.080000pt;}
.y37{bottom:16.320000pt;}
.y5{bottom:22.586667pt;}
.y8{bottom:25.626667pt;}
.y36{bottom:30.280000pt;}
.y4{bottom:37.946667pt;}
.y7{bottom:40.986667pt;}
.y35{bottom:44.040000pt;}
.ya{bottom:50.080000pt;}
.y3{bottom:53.946667pt;}
.y6{bottom:56.346667pt;}
.y34{bottom:57.800000pt;}
.y33{bottom:71.560000pt;}
.y32{bottom:85.480000pt;}
.y78{bottom:98.112000pt;}
.y31{bottom:99.240000pt;}
.y94{bottom:102.112000pt;}
.y77{bottom:110.432000pt;}
.y41{bottom:112.992000pt;}
.y30{bottom:113.000000pt;}
.y80{bottom:114.432000pt;}
.y76{bottom:122.592000pt;}
.y83{bottom:123.552000pt;}
.y9e{bottom:126.112000pt;}
.y75{bottom:126.592000pt;}
.y2f{bottom:126.760000pt;}
.y40{bottom:132.352000pt;}
.y74{bottom:134.906667pt;}
.y90{bottom:135.706667pt;}
.y8e{bottom:138.906667pt;}
.y2e{bottom:140.680000pt;}
.y9d{bottom:145.466667pt;}
.y73{bottom:147.226667pt;}
.y9a{bottom:148.026667pt;}
.y72{bottom:151.226667pt;}
.y3f{bottom:151.866667pt;}
.y2d{bottom:154.440000pt;}
.y71{bottom:159.386667pt;}
.y7f{bottom:160.346667pt;}
.y8d{bottom:163.386667pt;}
.y82{bottom:164.826667pt;}
.y2c{bottom:168.200000pt;}
.y3e{bottom:171.226667pt;}
.y70{bottom:171.706667pt;}
.y98{bottom:172.506667pt;}
.y6f{bottom:175.706667pt;}
.y2b{bottom:181.960000pt;}
.y6e{bottom:184.026667pt;}
.y7e{bottom:184.346667pt;}
.y93{bottom:184.826667pt;}
.y8c{bottom:188.026667pt;}
.y3d{bottom:190.586667pt;}
.y2a{bottom:195.880000pt;}
.y6d{bottom:196.186667pt;}
.y6c{bottom:200.186667pt;}
.y7d{bottom:203.706667pt;}
.y3c{bottom:204.346667pt;}
.y6b{bottom:208.506667pt;}
.y8b{bottom:209.306667pt;}
.y29{bottom:209.640000pt;}
.y6a{bottom:220.826667pt;}
.y7b{bottom:223.066667pt;}
.y28{bottom:223.400000pt;}
.y39{bottom:224.026667pt;}
.y69{bottom:224.826667pt;}
.y7c{bottom:228.346667pt;}
.y68{bottom:233.946667pt;}
.y27{bottom:237.160000pt;}
.y7a{bottom:242.426667pt;}
.y92{bottom:247.706667pt;}
.y26{bottom:251.080000pt;}
.y12{bottom:252.026667pt;}
.y67{bottom:261.946667pt;}
.y25{bottom:264.866667pt;}
.y24{bottom:278.626667pt;}
.y65{bottom:281.306667pt;}
.y66{bottom:286.626667pt;}
.y23{bottom:292.386667pt;}
.y64{bottom:300.706667pt;}
.y97{bottom:305.986667pt;}
.y22{bottom:306.306667pt;}
.y21{bottom:320.066667pt;}
.y63{bottom:325.346667pt;}
.y20{bottom:333.826667pt;}
.y62{bottom:339.426667pt;}
.y8a{bottom:344.706667pt;}
.y1f{bottom:347.586667pt;}
.y61{bottom:358.946667pt;}
.y1e{bottom:361.506667pt;}
.y1d{bottom:375.266667pt;}
.y60{bottom:378.306667pt;}
.y9c{bottom:383.586667pt;}
.y1c{bottom:389.026667pt;}
.y5f{bottom:397.666667pt;}
.y1b{bottom:402.786667pt;}
.y89{bottom:402.946667pt;}
.y1a{bottom:416.706667pt;}
.y5e{bottom:417.026667pt;}
.y91{bottom:422.306667pt;}
.y19{bottom:430.466667pt;}
.y5d{bottom:436.546667pt;}
.y18{bottom:444.226667pt;}
.y5c{bottom:455.906667pt;}
.y17{bottom:457.986667pt;}
.y9b{bottom:461.186667pt;}
.y16{bottom:471.746667pt;}
.y5b{bottom:475.266667pt;}
.y79{bottom:480.546667pt;}
.y15{bottom:485.706667pt;}
.y5a{bottom:494.626667pt;}
.y14{bottom:499.466667pt;}
.y96{bottom:499.906667pt;}
.y13{bottom:513.226667pt;}
.y59{bottom:514.013333pt;}
.y57{bottom:533.533333pt;}
.y58{bottom:538.813333pt;}
.y56{bottom:552.893333pt;}
.y88{bottom:558.173333pt;}
.y55{bottom:572.253333pt;}
.y54{bottom:591.613333pt;}
.y53{bottom:610.973333pt;}
.y52{bottom:630.493333pt;}
.y8f{bottom:635.773333pt;}
.y51{bottom:649.853333pt;}
.y50{bottom:669.213333pt;}
.y4f{bottom:688.573333pt;}
.y81{bottom:693.853333pt;}
.y4e{bottom:708.093333pt;}
.y87{bottom:713.373333pt;}
.y4c{bottom:727.453333pt;}
.y4d{bottom:732.773333pt;}
.y4b{bottom:746.853333pt;}
.y86{bottom:752.133333pt;}
.y4a{bottom:766.213333pt;}
.y95{bottom:771.493333pt;}
.y11{bottom:782.053333pt;}
.y49{bottom:785.573333pt;}
.y10{bottom:801.093333pt;}
.y48{bottom:805.093333pt;}
.yf{bottom:818.693333pt;}
.y46{bottom:824.453333pt;}
.y47{bottom:829.733333pt;}
.ye{bottom:836.773333pt;}
.y45{bottom:843.813333pt;}
.y85{bottom:849.093333pt;}
.yd{bottom:856.133333pt;}
.y44{bottom:863.173333pt;}
.y99{bottom:868.453333pt;}
.yc{bottom:876.773333pt;}
.y43{bottom:882.693333pt;}
.y84{bottom:887.973333pt;}
.yb{bottom:899.653333pt;}
.y42{bottom:902.053333pt;}
.y9{bottom:921.413333pt;}
.y1{bottom:939.173333pt;}
.h14{height:18.768750pt;}
.h12{height:25.918750pt;}
.hf{height:28.000000pt;}
.h11{height:29.940625pt;}
.hd{height:33.515625pt;}
.hc{height:33.867188pt;}
.h7{height:34.798125pt;}
.h15{height:35.342500pt;}
.h2{height:37.090625pt;}
.h4{height:37.479688pt;}
.he{height:39.562500pt;}
.ha{height:41.112500pt;}
.h9{height:41.543750pt;}
.h10{height:42.649687pt;}
.h6{height:42.866250pt;}
.h5{height:43.782500pt;}
.h3{height:45.156250pt;}
.h13{height:48.530000pt;}
.h8{height:48.768750pt;}
.h1{height:68.832000pt;}
.hb{height:524.413333pt;}
.h0{height:1056.000000pt;}
.w1{width:64.000000pt;}
.w3{width:186.106667pt;}
.w6{width:199.226667pt;}
.w7{width:264.666667pt;}
.w8{width:348.066667pt;}
.w2{width:380.386667pt;}
.w5{width:408.066667pt;}
.w9{width:815.999976pt;}
.w4{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.200000pt;}
.x12{left:26.400000pt;}
.x6{left:39.680000pt;}
.x2{left:61.594667pt;}
.x7{left:76.200000pt;}
.x1{left:88.832000pt;}
.x9{left:96.031988pt;}
.x20{left:99.391988pt;}
.x11{left:103.232000pt;}
.x8{left:113.160000pt;}
.x5d{left:114.911988pt;}
.xb{left:120.511988pt;}
.x5e{left:124.511988pt;}
.x19{left:126.591976pt;}
.x1a{left:131.231988pt;}
.x42{left:133.466642pt;}
.x3c{left:138.746642pt;}
.x43{left:142.746655pt;}
.x15{left:144.026655pt;}
.x3d{left:148.026655pt;}
.x3{left:152.826667pt;}
.xc{left:153.946655pt;}
.x21{left:156.026655pt;}
.x4a{left:157.466642pt;}
.x17{left:165.626642pt;}
.x4b{left:166.746655pt;}
.x28{left:168.026655pt;}
.x18{left:170.266655pt;}
.x29{left:192.026655pt;}
.x22{left:197.146642pt;}
.x23{left:201.786655pt;}
.x34{left:211.546642pt;}
.x2e{left:212.826642pt;}
.x1b{left:215.066642pt;}
.x1c{left:219.706655pt;}
.x35{left:220.826655pt;}
.x2f{left:222.106655pt;}
.x57{left:251.706642pt;}
.x4c{left:253.826642pt;}
.x58{left:261.026655pt;}
.x4d{left:263.106655pt;}
.x1f{left:288.066655pt;}
.xe{left:301.346655pt;}
.xd{left:309.186655pt;}
.xf{left:316.546655pt;}
.x1d{left:341.026642pt;}
.x1e{left:345.666655pt;}
.x30{left:351.266642pt;}
.x31{left:360.546655pt;}
.x3a{left:362.466642pt;}
.x13{left:367.906667pt;}
.x40{left:369.986642pt;}
.x3b{left:371.746655pt;}
.x41{left:379.266655pt;}
.x59{left:399.106642pt;}
.x3e{left:404.706642pt;}
.x5a{left:408.386655pt;}
.x3f{left:413.986655pt;}
.x5b{left:422.946642pt;}
.x5c{left:432.253321pt;}
.x52{left:433.373309pt;}
.x44{left:434.653309pt;}
.x53{left:442.653321pt;}
.x45{left:443.933321pt;}
.x54{left:446.173309pt;}
.x2c{left:447.453309pt;}
.x55{left:455.453321pt;}
.x2d{left:456.733321pt;}
.xa{left:463.133321pt;}
.x46{left:467.933309pt;}
.x47{left:477.213321pt;}
.x10{left:504.093333pt;}
.x26{left:522.493309pt;}
.x27{left:527.133321pt;}
.x16{left:529.053309pt;}
.x5{left:533.213333pt;}
.x2a{left:554.333309pt;}
.x2b{left:558.973321pt;}
.x32{left:568.573309pt;}
.x33{left:577.853321pt;}
.x50{left:589.213309pt;}
.x51{left:598.493321pt;}
.x4e{left:600.293309pt;}
.x38{left:603.333309pt;}
.x4f{left:609.573321pt;}
.x39{left:612.613321pt;}
.x36{left:662.853309pt;}
.x37{left:672.133321pt;}
.x48{left:698.213309pt;}
.x49{left:707.493321pt;}
.x56{left:710.853309pt;}
.x14{left:713.733321pt;}
.x24{left:715.493309pt;}
.x25{left:720.133321pt;}
}




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