
    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_cbf765f9baddf0ab3f70569d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.062000;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_910b11b93b9c797cf75cdfe3.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.042000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_2ab1fbaaa0fad2bedd055fc8.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.061000;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_7c24d57da433862eb85d6ef4.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.043083;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_e9aa39e8904827043e093d33.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.043083;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_007550f6e708988be4945c7f.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.042000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_805e00f2d564e681d4d0b436.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.062000;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_7080de280d6a7c601faf01b5.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.061000;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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff9{font-family:ff9;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;}
.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;}
.ls1f{letter-spacing:-6.420000px;}
.ls1b{letter-spacing:-1.542000px;}
.ls20{letter-spacing:-0.582000px;}
.ls1d{letter-spacing:-0.348600px;}
.lsa{letter-spacing:-0.288000px;}
.ls1e{letter-spacing:-0.234600px;}
.ls10{letter-spacing:-0.144000px;}
.lsc{letter-spacing:-0.108000px;}
.ls1c{letter-spacing:-0.100800px;}
.ls2{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.010080px;}
.ls6{letter-spacing:0.046800px;}
.lse{letter-spacing:0.066960px;}
.ls7{letter-spacing:0.123000px;}
.ls8{letter-spacing:0.129600px;}
.ls11{letter-spacing:0.138240px;}
.ls3{letter-spacing:0.216000px;}
.ls1{letter-spacing:0.228960px;}
.ls5{letter-spacing:0.296400px;}
.ls9{letter-spacing:0.371520px;}
.ls4{letter-spacing:0.374400px;}
.lsd{letter-spacing:0.485280px;}
.ls18{letter-spacing:1.850400px;}
.ls1a{letter-spacing:2.388000px;}
.ls19{letter-spacing:6.170400px;}
.ls17{letter-spacing:24.170400px;}
.ls14{letter-spacing:25.610400px;}
.ls13{letter-spacing:26.330400px;}
.ls15{letter-spacing:27.050400px;}
.ls12{letter-spacing:28.490400px;}
.ls16{letter-spacing:33.530400px;}
.ls0{letter-spacing:520.020000px;}
.lsf{letter-spacing:844.284000px;}
.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;}
}
.ws1{word-spacing:-15.120000px;}
.ws9{word-spacing:-14.937600px;}
.ws8{word-spacing:-14.832000px;}
.ws0{word-spacing:-14.616000px;}
.ws2{word-spacing:-12.924000px;}
.wsb{word-spacing:-12.679200px;}
.ws4{word-spacing:-12.596400px;}
.wse{word-spacing:-12.559680px;}
.ws3{word-spacing:-12.549600px;}
.wsc{word-spacing:-12.448800px;}
.wsf{word-spacing:-12.315000px;}
.wsd{word-spacing:-12.201000px;}
.ws6{word-spacing:-12.131280px;}
.ws5{word-spacing:-12.071520px;}
.ws11{word-spacing:-11.967600px;}
.wsa{word-spacing:-11.007600px;}
.ws10{word-spacing:-6.129600px;}
.ws7{word-spacing:0.000000px;}
._2e{margin-left:-9.629280px;}
._29{margin-left:-7.734960px;}
._5{margin-left:-6.660000px;}
._2a{margin-left:-5.614800px;}
._8{margin-left:-4.244160px;}
._1{margin-left:-2.592000px;}
._0{margin-left:-1.536000px;}
._4{width:1.704000px;}
._11{width:3.240000px;}
._12{width:4.416000px;}
._c{width:6.120000px;}
._b{width:7.704000px;}
._24{width:8.928000px;}
._1e{width:10.080000px;}
._14{width:11.664000px;}
._1b{width:12.984000px;}
._e{width:14.112000px;}
._d{width:16.224000px;}
._13{width:17.256000px;}
._17{width:18.984000px;}
._16{width:20.088000px;}
._15{width:21.168000px;}
._20{width:22.272000px;}
._1f{width:23.688000px;}
._21{width:24.840000px;}
._23{width:26.208000px;}
._19{width:27.648000px;}
._1a{width:28.776000px;}
._22{width:30.480000px;}
._10{width:31.608000px;}
._f{width:32.688000px;}
._18{width:34.320000px;}
._25{width:36.792000px;}
._1d{width:38.088000px;}
._1c{width:39.384000px;}
._34{width:44.156640px;}
._31{width:46.105680px;}
._2f{width:47.179680px;}
._30{width:48.436320px;}
._2b{width:61.998000px;}
._a{width:63.288000px;}
._28{width:73.416000px;}
._27{width:74.664000px;}
._32{width:141.690960px;}
._33{width:142.826400px;}
._2d{width:167.655840px;}
._2c{width:168.941520px;}
._2{width:475.164000px;}
._6{width:556.662240px;}
._3{width:1299.180000px;}
._26{width:1484.630400px;}
._9{width:1486.070400px;}
._7{width:1491.110400px;}
.fc3{color:rgb(14,40,65);}
.fc2{color:rgb(70,120,134);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(192,0,0);}
.fs3{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y12{bottom:4.500000px;}
.y16{bottom:5.805000px;}
.y11{bottom:22.500000px;}
.y8{bottom:28.260000px;}
.y15{bottom:29.205000px;}
.y14{bottom:30.645000px;}
.y3c{bottom:40.494000px;}
.y10{bottom:40.500000px;}
.y5{bottom:57.600000px;}
.y3b{bottom:58.494000px;}
.yf{bottom:58.500000px;}
.y3a{bottom:76.494000px;}
.ye{bottom:77.400000px;}
.y4{bottom:79.056000px;}
.y39{bottom:94.494000px;}
.yd{bottom:99.360000px;}
.y38{bottom:112.494000px;}
.y17{bottom:117.216000px;}
.yc{bottom:122.760000px;}
.y37{bottom:130.494000px;}
.yb2{bottom:131.256000px;}
.y99{bottom:132.336000px;}
.y6a{bottom:133.056000px;}
.yb{bottom:146.160000px;}
.y36{bottom:148.494000px;}
.yb1{bottom:152.850000px;}
.y98{bottom:153.930000px;}
.y69{bottom:154.650000px;}
.y35{bottom:167.394000px;}
.ya{bottom:169.560000px;}
.yb0{bottom:174.450000px;}
.y97{bottom:175.530000px;}
.y68{bottom:176.250000px;}
.y34{bottom:188.994000px;}
.y9{bottom:192.960000px;}
.yaf{bottom:196.050000px;}
.y96{bottom:197.130000px;}
.y67{bottom:197.850000px;}
.y33{bottom:210.594000px;}
.yae{bottom:217.650000px;}
.y95{bottom:218.730000px;}
.y66{bottom:219.450000px;}
.y32{bottom:232.239000px;}
.yad{bottom:239.250000px;}
.y94{bottom:240.330000px;}
.y65{bottom:241.050000px;}
.y31{bottom:253.839000px;}
.ya4{bottom:256.890000px;}
.yac{bottom:260.850000px;}
.y93{bottom:261.930000px;}
.y64{bottom:262.650000px;}
.y30{bottom:275.439000px;}
.ya3{bottom:278.490000px;}
.yab{bottom:282.450000px;}
.y92{bottom:283.530000px;}
.y63{bottom:284.250000px;}
.y2f{bottom:297.039000px;}
.ya2{bottom:300.090000px;}
.yaa{bottom:304.050000px;}
.y91{bottom:305.130000px;}
.y62{bottom:305.850000px;}
.ye0{bottom:315.030000px;}
.y2e{bottom:318.639000px;}
.ya1{bottom:321.690000px;}
.ya9{bottom:325.650000px;}
.y90{bottom:326.730000px;}
.y61{bottom:327.450000px;}
.ydf{bottom:333.030000px;}
.y2d{bottom:340.239000px;}
.ya0{bottom:343.335000px;}
.ya8{bottom:347.295000px;}
.y8f{bottom:348.375000px;}
.y60{bottom:349.095000px;}
.yde{bottom:351.075000px;}
.y2c{bottom:361.839000px;}
.y9f{bottom:364.935000px;}
.ydd{bottom:369.075000px;}
.y8e{bottom:369.975000px;}
.y5f{bottom:370.695000px;}
.ya7{bottom:382.395000px;}
.y2b{bottom:383.439000px;}
.ydc{bottom:387.075000px;}
.y8d{bottom:391.575000px;}
.y5e{bottom:392.295000px;}
.ya6{bottom:398.595000px;}
.y9e{bottom:400.215000px;}
.y2a{bottom:405.039000px;}
.ydb{bottom:405.075000px;}
.ya5{bottom:410.835000px;}
.y8c{bottom:413.175000px;}
.y5d{bottom:413.895000px;}
.y9d{bottom:416.415000px;}
.yda{bottom:423.075000px;}
.y29{bottom:426.639000px;}
.y9c{bottom:428.655000px;}
.y8b{bottom:434.775000px;}
.y5c{bottom:435.495000px;}
.yd9{bottom:441.075000px;}
.y28{bottom:448.239000px;}
.y8a{bottom:456.375000px;}
.y5b{bottom:457.095000px;}
.yd8{bottom:459.075000px;}
.y27{bottom:469.839000px;}
.yd7{bottom:477.075000px;}
.y89{bottom:477.975000px;}
.y5a{bottom:478.695000px;}
.y26{bottom:491.469000px;}
.yd6{bottom:495.075000px;}
.y88{bottom:499.575000px;}
.y59{bottom:500.295000px;}
.y25{bottom:513.069000px;}
.yd5{bottom:513.075000px;}
.y87{bottom:521.175000px;}
.y58{bottom:521.895000px;}
.yd4{bottom:531.075000px;}
.y24{bottom:534.669000px;}
.y86{bottom:542.775000px;}
.yd3{bottom:549.075000px;}
.y23{bottom:555.369000px;}
.y57{bottom:557.175000px;}
.y85{bottom:564.375000px;}
.yd2{bottom:567.075000px;}
.y22{bottom:573.369000px;}
.y56{bottom:580.395000px;}
.yd1{bottom:585.075000px;}
.y84{bottom:585.975000px;}
.y21{bottom:591.369000px;}
.y55{bottom:602.175000px;}
.yd0{bottom:603.075000px;}
.y83{bottom:607.605000px;}
.y20{bottom:609.369000px;}
.ycf{bottom:621.105000px;}
.y54{bottom:623.805000px;}
.y1f{bottom:627.369000px;}
.y82{bottom:629.205000px;}
.yce{bottom:639.105000px;}
.y1e{bottom:645.369000px;}
.y53{bottom:645.405000px;}
.y81{bottom:650.805000px;}
.ycd{bottom:657.105000px;}
.y1d{bottom:663.369000px;}
.y52{bottom:667.005000px;}
.y80{bottom:672.405000px;}
.ycc{bottom:675.105000px;}
.yb3{bottom:680.325000px;}
.y1c{bottom:681.369000px;}
.y9b{bottom:683.925000px;}
.y51{bottom:688.605000px;}
.ycb{bottom:693.105000px;}
.y7f{bottom:694.005000px;}
.y9a{bottom:696.165000px;}
.y1b{bottom:699.369000px;}
.y50{bottom:710.205000px;}
.yca{bottom:711.105000px;}
.y7e{bottom:715.605000px;}
.y1a{bottom:717.369000px;}
.yc9{bottom:729.105000px;}
.y4f{bottom:731.805000px;}
.y18{bottom:732.669000px;}
.y19{bottom:735.369000px;}
.y7d{bottom:737.205000px;}
.yc8{bottom:747.105000px;}
.y4e{bottom:753.405000px;}
.y7c{bottom:758.805000px;}
.yc7{bottom:765.105000px;}
.y4d{bottom:775.005000px;}
.y7b{bottom:780.405000px;}
.yc6{bottom:783.105000px;}
.y4c{bottom:796.605000px;}
.yc5{bottom:801.105000px;}
.y7a{bottom:802.005000px;}
.y4b{bottom:818.205000px;}
.yc4{bottom:819.105000px;}
.y79{bottom:823.605000px;}
.yc3{bottom:837.105000px;}
.y4a{bottom:839.805000px;}
.y78{bottom:845.205000px;}
.yc2{bottom:855.105000px;}
.y49{bottom:861.405000px;}
.y13{bottom:866.085000px;}
.y77{bottom:866.805000px;}
.yc1{bottom:873.150000px;}
.y48{bottom:883.050000px;}
.y76{bottom:888.450000px;}
.yc0{bottom:891.150000px;}
.y47{bottom:904.650000px;}
.ybf{bottom:909.150000px;}
.y75{bottom:910.050000px;}
.y7{bottom:913.650000px;}
.y46{bottom:926.250000px;}
.ybe{bottom:927.150000px;}
.y74{bottom:931.650000px;}
.ybd{bottom:945.150000px;}
.y45{bottom:947.850000px;}
.y73{bottom:953.250000px;}
.ybc{bottom:963.150000px;}
.y44{bottom:969.450000px;}
.y72{bottom:974.850000px;}
.ybb{bottom:981.150000px;}
.y43{bottom:991.050000px;}
.y71{bottom:996.450000px;}
.yba{bottom:999.150000px;}
.y42{bottom:1012.650000px;}
.yb9{bottom:1017.150000px;}
.y70{bottom:1018.050000px;}
.y41{bottom:1034.250000px;}
.yb8{bottom:1035.150000px;}
.y6f{bottom:1039.650000px;}
.yb7{bottom:1053.150000px;}
.y40{bottom:1055.850000px;}
.y6e{bottom:1061.250000px;}
.yb6{bottom:1071.150000px;}
.y3f{bottom:1077.810000px;}
.y6d{bottom:1082.850000px;}
.yb5{bottom:1089.150000px;}
.y3e{bottom:1101.210000px;}
.y6c{bottom:1104.450000px;}
.yb4{bottom:1107.150000px;}
.y3d{bottom:1124.610000px;}
.y6b{bottom:1126.050000px;}
.y6{bottom:1128.750000px;}
.y3{bottom:1147.680000px;}
.y2{bottom:1169.280000px;}
.y1{bottom:1193.580000px;}
.hd{height:45.630000px;}
.hc{height:46.656000px;}
.h8{height:46.836000px;}
.h5{height:50.497200px;}
.ha{height:51.632640px;}
.hb{height:51.692400px;}
.h4{height:60.840000px;}
.h3{height:62.208000px;}
.h2{height:62.280000px;}
.h7{height:67.262400px;}
.h6{height:210.600000px;}
.h9{height:748.875000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:202.215000px;}
.w4{width:531.615000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:8.100000px;}
.x1{left:84.959987px;}
.x8{left:106.235987px;}
.x2{left:190.290000px;}
.x3{left:287.175000px;}
.x5{left:793.229987px;}
.x6{left:798.629987px;}
.x7{left:800.789987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1f{letter-spacing:-5.706667pt;}
.ls1b{letter-spacing:-1.370667pt;}
.ls20{letter-spacing:-0.517333pt;}
.ls1d{letter-spacing:-0.309867pt;}
.lsa{letter-spacing:-0.256000pt;}
.ls1e{letter-spacing:-0.208533pt;}
.ls10{letter-spacing:-0.128000pt;}
.lsc{letter-spacing:-0.096000pt;}
.ls1c{letter-spacing:-0.089600pt;}
.ls2{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.008960pt;}
.ls6{letter-spacing:0.041600pt;}
.lse{letter-spacing:0.059520pt;}
.ls7{letter-spacing:0.109333pt;}
.ls8{letter-spacing:0.115200pt;}
.ls11{letter-spacing:0.122880pt;}
.ls3{letter-spacing:0.192000pt;}
.ls1{letter-spacing:0.203520pt;}
.ls5{letter-spacing:0.263467pt;}
.ls9{letter-spacing:0.330240pt;}
.ls4{letter-spacing:0.332800pt;}
.lsd{letter-spacing:0.431360pt;}
.ls18{letter-spacing:1.644800pt;}
.ls1a{letter-spacing:2.122667pt;}
.ls19{letter-spacing:5.484800pt;}
.ls17{letter-spacing:21.484800pt;}
.ls14{letter-spacing:22.764800pt;}
.ls13{letter-spacing:23.404800pt;}
.ls15{letter-spacing:24.044800pt;}
.ls12{letter-spacing:25.324800pt;}
.ls16{letter-spacing:29.804800pt;}
.ls0{letter-spacing:462.240000pt;}
.lsf{letter-spacing:750.474667pt;}
.ws1{word-spacing:-13.440000pt;}
.ws9{word-spacing:-13.277867pt;}
.ws8{word-spacing:-13.184000pt;}
.ws0{word-spacing:-12.992000pt;}
.ws2{word-spacing:-11.488000pt;}
.wsb{word-spacing:-11.270400pt;}
.ws4{word-spacing:-11.196800pt;}
.wse{word-spacing:-11.164160pt;}
.ws3{word-spacing:-11.155200pt;}
.wsc{word-spacing:-11.065600pt;}
.wsf{word-spacing:-10.946667pt;}
.wsd{word-spacing:-10.845333pt;}
.ws6{word-spacing:-10.783360pt;}
.ws5{word-spacing:-10.730240pt;}
.ws11{word-spacing:-10.637867pt;}
.wsa{word-spacing:-9.784533pt;}
.ws10{word-spacing:-5.448533pt;}
.ws7{word-spacing:0.000000pt;}
._2e{margin-left:-8.559360pt;}
._29{margin-left:-6.875520pt;}
._5{margin-left:-5.920000pt;}
._2a{margin-left:-4.990933pt;}
._8{margin-left:-3.772587pt;}
._1{margin-left:-2.304000pt;}
._0{margin-left:-1.365333pt;}
._4{width:1.514667pt;}
._11{width:2.880000pt;}
._12{width:3.925333pt;}
._c{width:5.440000pt;}
._b{width:6.848000pt;}
._24{width:7.936000pt;}
._1e{width:8.960000pt;}
._14{width:10.368000pt;}
._1b{width:11.541333pt;}
._e{width:12.544000pt;}
._d{width:14.421333pt;}
._13{width:15.338667pt;}
._17{width:16.874667pt;}
._16{width:17.856000pt;}
._15{width:18.816000pt;}
._20{width:19.797333pt;}
._1f{width:21.056000pt;}
._21{width:22.080000pt;}
._23{width:23.296000pt;}
._19{width:24.576000pt;}
._1a{width:25.578667pt;}
._22{width:27.093333pt;}
._10{width:28.096000pt;}
._f{width:29.056000pt;}
._18{width:30.506667pt;}
._25{width:32.704000pt;}
._1d{width:33.856000pt;}
._1c{width:35.008000pt;}
._34{width:39.250347pt;}
._31{width:40.982827pt;}
._2f{width:41.937493pt;}
._30{width:43.054507pt;}
._2b{width:55.109333pt;}
._a{width:56.256000pt;}
._28{width:65.258667pt;}
._27{width:66.368000pt;}
._32{width:125.947520pt;}
._33{width:126.956800pt;}
._2d{width:149.027413pt;}
._2c{width:150.170240pt;}
._2{width:422.368000pt;}
._6{width:494.810880pt;}
._3{width:1154.826667pt;}
._26{width:1319.671467pt;}
._9{width:1320.951467pt;}
._7{width:1325.431467pt;}
.fs3{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y12{bottom:4.000000pt;}
.y16{bottom:5.160000pt;}
.y11{bottom:20.000000pt;}
.y8{bottom:25.120000pt;}
.y15{bottom:25.960000pt;}
.y14{bottom:27.240000pt;}
.y3c{bottom:35.994667pt;}
.y10{bottom:36.000000pt;}
.y5{bottom:51.200000pt;}
.y3b{bottom:51.994667pt;}
.yf{bottom:52.000000pt;}
.y3a{bottom:67.994667pt;}
.ye{bottom:68.800000pt;}
.y4{bottom:70.272000pt;}
.y39{bottom:83.994667pt;}
.yd{bottom:88.320000pt;}
.y38{bottom:99.994667pt;}
.y17{bottom:104.192000pt;}
.yc{bottom:109.120000pt;}
.y37{bottom:115.994667pt;}
.yb2{bottom:116.672000pt;}
.y99{bottom:117.632000pt;}
.y6a{bottom:118.272000pt;}
.yb{bottom:129.920000pt;}
.y36{bottom:131.994667pt;}
.yb1{bottom:135.866667pt;}
.y98{bottom:136.826667pt;}
.y69{bottom:137.466667pt;}
.y35{bottom:148.794667pt;}
.ya{bottom:150.720000pt;}
.yb0{bottom:155.066667pt;}
.y97{bottom:156.026667pt;}
.y68{bottom:156.666667pt;}
.y34{bottom:167.994667pt;}
.y9{bottom:171.520000pt;}
.yaf{bottom:174.266667pt;}
.y96{bottom:175.226667pt;}
.y67{bottom:175.866667pt;}
.y33{bottom:187.194667pt;}
.yae{bottom:193.466667pt;}
.y95{bottom:194.426667pt;}
.y66{bottom:195.066667pt;}
.y32{bottom:206.434667pt;}
.yad{bottom:212.666667pt;}
.y94{bottom:213.626667pt;}
.y65{bottom:214.266667pt;}
.y31{bottom:225.634667pt;}
.ya4{bottom:228.346667pt;}
.yac{bottom:231.866667pt;}
.y93{bottom:232.826667pt;}
.y64{bottom:233.466667pt;}
.y30{bottom:244.834667pt;}
.ya3{bottom:247.546667pt;}
.yab{bottom:251.066667pt;}
.y92{bottom:252.026667pt;}
.y63{bottom:252.666667pt;}
.y2f{bottom:264.034667pt;}
.ya2{bottom:266.746667pt;}
.yaa{bottom:270.266667pt;}
.y91{bottom:271.226667pt;}
.y62{bottom:271.866667pt;}
.ye0{bottom:280.026667pt;}
.y2e{bottom:283.234667pt;}
.ya1{bottom:285.946667pt;}
.ya9{bottom:289.466667pt;}
.y90{bottom:290.426667pt;}
.y61{bottom:291.066667pt;}
.ydf{bottom:296.026667pt;}
.y2d{bottom:302.434667pt;}
.ya0{bottom:305.186667pt;}
.ya8{bottom:308.706667pt;}
.y8f{bottom:309.666667pt;}
.y60{bottom:310.306667pt;}
.yde{bottom:312.066667pt;}
.y2c{bottom:321.634667pt;}
.y9f{bottom:324.386667pt;}
.ydd{bottom:328.066667pt;}
.y8e{bottom:328.866667pt;}
.y5f{bottom:329.506667pt;}
.ya7{bottom:339.906667pt;}
.y2b{bottom:340.834667pt;}
.ydc{bottom:344.066667pt;}
.y8d{bottom:348.066667pt;}
.y5e{bottom:348.706667pt;}
.ya6{bottom:354.306667pt;}
.y9e{bottom:355.746667pt;}
.y2a{bottom:360.034667pt;}
.ydb{bottom:360.066667pt;}
.ya5{bottom:365.186667pt;}
.y8c{bottom:367.266667pt;}
.y5d{bottom:367.906667pt;}
.y9d{bottom:370.146667pt;}
.yda{bottom:376.066667pt;}
.y29{bottom:379.234667pt;}
.y9c{bottom:381.026667pt;}
.y8b{bottom:386.466667pt;}
.y5c{bottom:387.106667pt;}
.yd9{bottom:392.066667pt;}
.y28{bottom:398.434667pt;}
.y8a{bottom:405.666667pt;}
.y5b{bottom:406.306667pt;}
.yd8{bottom:408.066667pt;}
.y27{bottom:417.634667pt;}
.yd7{bottom:424.066667pt;}
.y89{bottom:424.866667pt;}
.y5a{bottom:425.506667pt;}
.y26{bottom:436.861333pt;}
.yd6{bottom:440.066667pt;}
.y88{bottom:444.066667pt;}
.y59{bottom:444.706667pt;}
.y25{bottom:456.061333pt;}
.yd5{bottom:456.066667pt;}
.y87{bottom:463.266667pt;}
.y58{bottom:463.906667pt;}
.yd4{bottom:472.066667pt;}
.y24{bottom:475.261333pt;}
.y86{bottom:482.466667pt;}
.yd3{bottom:488.066667pt;}
.y23{bottom:493.661333pt;}
.y57{bottom:495.266667pt;}
.y85{bottom:501.666667pt;}
.yd2{bottom:504.066667pt;}
.y22{bottom:509.661333pt;}
.y56{bottom:515.906667pt;}
.yd1{bottom:520.066667pt;}
.y84{bottom:520.866667pt;}
.y21{bottom:525.661333pt;}
.y55{bottom:535.266667pt;}
.yd0{bottom:536.066667pt;}
.y83{bottom:540.093333pt;}
.y20{bottom:541.661333pt;}
.ycf{bottom:552.093333pt;}
.y54{bottom:554.493333pt;}
.y1f{bottom:557.661333pt;}
.y82{bottom:559.293333pt;}
.yce{bottom:568.093333pt;}
.y1e{bottom:573.661333pt;}
.y53{bottom:573.693333pt;}
.y81{bottom:578.493333pt;}
.ycd{bottom:584.093333pt;}
.y1d{bottom:589.661333pt;}
.y52{bottom:592.893333pt;}
.y80{bottom:597.693333pt;}
.ycc{bottom:600.093333pt;}
.yb3{bottom:604.733333pt;}
.y1c{bottom:605.661333pt;}
.y9b{bottom:607.933333pt;}
.y51{bottom:612.093333pt;}
.ycb{bottom:616.093333pt;}
.y7f{bottom:616.893333pt;}
.y9a{bottom:618.813333pt;}
.y1b{bottom:621.661333pt;}
.y50{bottom:631.293333pt;}
.yca{bottom:632.093333pt;}
.y7e{bottom:636.093333pt;}
.y1a{bottom:637.661333pt;}
.yc9{bottom:648.093333pt;}
.y4f{bottom:650.493333pt;}
.y18{bottom:651.261333pt;}
.y19{bottom:653.661333pt;}
.y7d{bottom:655.293333pt;}
.yc8{bottom:664.093333pt;}
.y4e{bottom:669.693333pt;}
.y7c{bottom:674.493333pt;}
.yc7{bottom:680.093333pt;}
.y4d{bottom:688.893333pt;}
.y7b{bottom:693.693333pt;}
.yc6{bottom:696.093333pt;}
.y4c{bottom:708.093333pt;}
.yc5{bottom:712.093333pt;}
.y7a{bottom:712.893333pt;}
.y4b{bottom:727.293333pt;}
.yc4{bottom:728.093333pt;}
.y79{bottom:732.093333pt;}
.yc3{bottom:744.093333pt;}
.y4a{bottom:746.493333pt;}
.y78{bottom:751.293333pt;}
.yc2{bottom:760.093333pt;}
.y49{bottom:765.693333pt;}
.y13{bottom:769.853333pt;}
.y77{bottom:770.493333pt;}
.yc1{bottom:776.133333pt;}
.y48{bottom:784.933333pt;}
.y76{bottom:789.733333pt;}
.yc0{bottom:792.133333pt;}
.y47{bottom:804.133333pt;}
.ybf{bottom:808.133333pt;}
.y75{bottom:808.933333pt;}
.y7{bottom:812.133333pt;}
.y46{bottom:823.333333pt;}
.ybe{bottom:824.133333pt;}
.y74{bottom:828.133333pt;}
.ybd{bottom:840.133333pt;}
.y45{bottom:842.533333pt;}
.y73{bottom:847.333333pt;}
.ybc{bottom:856.133333pt;}
.y44{bottom:861.733333pt;}
.y72{bottom:866.533333pt;}
.ybb{bottom:872.133333pt;}
.y43{bottom:880.933333pt;}
.y71{bottom:885.733333pt;}
.yba{bottom:888.133333pt;}
.y42{bottom:900.133333pt;}
.yb9{bottom:904.133333pt;}
.y70{bottom:904.933333pt;}
.y41{bottom:919.333333pt;}
.yb8{bottom:920.133333pt;}
.y6f{bottom:924.133333pt;}
.yb7{bottom:936.133333pt;}
.y40{bottom:938.533333pt;}
.y6e{bottom:943.333333pt;}
.yb6{bottom:952.133333pt;}
.y3f{bottom:958.053333pt;}
.y6d{bottom:962.533333pt;}
.yb5{bottom:968.133333pt;}
.y3e{bottom:978.853333pt;}
.y6c{bottom:981.733333pt;}
.yb4{bottom:984.133333pt;}
.y3d{bottom:999.653333pt;}
.y6b{bottom:1000.933333pt;}
.y6{bottom:1003.333333pt;}
.y3{bottom:1020.160000pt;}
.y2{bottom:1039.360000pt;}
.y1{bottom:1060.960000pt;}
.hd{height:40.560000pt;}
.hc{height:41.472000pt;}
.h8{height:41.632000pt;}
.h5{height:44.886400pt;}
.ha{height:45.895680pt;}
.hb{height:45.948800pt;}
.h4{height:54.080000pt;}
.h3{height:55.296000pt;}
.h2{height:55.360000pt;}
.h7{height:59.788800pt;}
.h6{height:187.200000pt;}
.h9{height:665.666667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:179.746667pt;}
.w4{width:472.546667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.200000pt;}
.x1{left:75.519988pt;}
.x8{left:94.431988pt;}
.x2{left:169.146667pt;}
.x3{left:255.266667pt;}
.x5{left:705.093322pt;}
.x6{left:709.893322pt;}
.x7{left:711.813322pt;}
}




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