
    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_2aab99e2859abeaba04de46f.woff')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_7bba2c5e1b2b3b134f6959f2.woff')format("woff");}.ff2{font-family:ff2;line-height:1.091309;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_46aedb97fc0821fbd4774223.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_76c9f621ba84cb5bfd2fca48.woff')format("woff");}.ff4{font-family:ff4;line-height:1.311035;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_4f225295f04d0def70f27104.woff')format("woff");}.ff5{font-family:ff5;line-height:0.972656;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_4273230278093d6f73b88d3f.woff')format("woff");}.ff6{font-family:ff6;line-height:0.916016;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_23c0eb5aa58e8768006bbd85.woff')format("woff");}.ff7{font-family:ff7;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_acccf433b69f516bbb26a5a7.woff')format("woff");}.ff8{font-family:ff8;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_e5840045bb7eb129c4a2534f.woff')format("woff");}.ff9{font-family:ff9;line-height:0.976562;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);}
.v3{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:23.760000px;}
.v1{vertical-align:27.360000px;}
.ls5{letter-spacing:-4.320000px;}
.ls6{letter-spacing:-0.720000px;}
.ls7{letter-spacing:-0.387600px;}
.ls4{letter-spacing:-0.288000px;}
.ls9{letter-spacing:-0.216000px;}
.lsa{letter-spacing:-0.144000px;}
.ls2{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.144000px;}
.lsd{letter-spacing:0.180000px;}
.lsb{letter-spacing:0.216000px;}
.ls1{letter-spacing:0.252720px;}
.lsc{letter-spacing:0.289440px;}
.ls0{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.792000px;}
.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;}
}
.ws6{word-spacing:-28.977840px;}
.ws7{word-spacing:-28.590240px;}
.ws9{word-spacing:-21.060000px;}
.wsc{word-spacing:-18.216000px;}
.ws2{word-spacing:-18.144000px;}
.ws1{word-spacing:-18.000000px;}
.wsb{word-spacing:-17.856000px;}
.wse{word-spacing:-17.784000px;}
.ws3{word-spacing:-17.712000px;}
.ws5{word-spacing:-17.280000px;}
.ws4{word-spacing:-13.680000px;}
.wsa{word-spacing:-12.420000px;}
.wsd{word-spacing:-12.349440px;}
.ws0{word-spacing:-12.060000px;}
.ws8{word-spacing:0.000000px;}
._5{margin-left:-8.496000px;}
._8{margin-left:-7.080000px;}
._4{margin-left:-5.976000px;}
._3{margin-left:-4.968000px;}
._6{margin-left:-3.912000px;}
._7{margin-left:-2.880000px;}
._0{margin-left:-1.356000px;}
._1{width:1.080000px;}
._2{width:2.733600px;}
._9{width:3.770400px;}
._f{width:5.217600px;}
._15{width:6.662400px;}
._17{width:8.025600px;}
._16{width:9.132000px;}
._d{width:10.512000px;}
._c{width:11.520000px;}
._a{width:13.104000px;}
._b{width:14.472000px;}
._1a{width:15.480000px;}
._10{width:16.560000px;}
._e{width:19.200000px;}
._14{width:20.736000px;}
._1b{width:22.104000px;}
._18{width:23.184000px;}
._13{width:24.336000px;}
._1d{width:28.656000px;}
._1e{width:29.928000px;}
._1c{width:32.544000px;}
._19{width:37.068000px;}
._11{width:44.928000px;}
._12{width:46.080000px;}
.fc5{color:transparent;}
.fc4{color:rgb(0,32,96);}
.fc2{color:rgb(0,0,255);}
.fc6{color:rgb(38,38,38);}
.fc1{color:rgb(0,0,0);}
.fc3{color:rgb(192,0,0);}
.fc0{color:rgb(57,85,160);}
.fs3{font-size:48.240000px;}
.fs1{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.fs4{font-size:120.240000px;}
.y1e{bottom:-30.060000px;}
.y27{bottom:-14.760060px;}
.y0{bottom:0.000000px;}
.y1d{bottom:8.640000px;}
.y26{bottom:9.180000px;}
.y22{bottom:14.040000px;}
.yae{bottom:14.265000px;}
.yb3{bottom:14.580000px;}
.yb9{bottom:14.610000px;}
.yb0{bottom:14.760000px;}
.y20{bottom:14.940000px;}
.y23{bottom:16.200000px;}
.y4{bottom:16.920000px;}
.yc2{bottom:19.800000px;}
.y64{bottom:22.320000px;}
.y1{bottom:24.480000px;}
.y25{bottom:32.940000px;}
.y3{bottom:41.400000px;}
.y63{bottom:53.820000px;}
.y24{bottom:56.700000px;}
.y1c{bottom:59.790000px;}
.y2{bottom:65.160000px;}
.y5{bottom:76.500000px;}
.y62{bottom:84.960000px;}
.y29{bottom:97.920000px;}
.y92{bottom:112.140000px;}
.y84{bottom:112.500000px;}
.y61{bottom:115.920000px;}
.yf4{bottom:117.720000px;}
.yd3{bottom:122.040000px;}
.ya8{bottom:124.920000px;}
.yc9{bottom:129.276000px;}
.y47{bottom:130.176000px;}
.ye7{bottom:138.456000px;}
.y91{bottom:143.316000px;}
.y83{bottom:143.676000px;}
.y60{bottom:147.060000px;}
.yf3{bottom:148.716000px;}
.ya7{bottom:155.910000px;}
.yd2{bottom:158.250000px;}
.yc8{bottom:160.410000px;}
.y46{bottom:166.350000px;}
.ye6{bottom:169.410000px;}
.y90{bottom:174.270000px;}
.y82{bottom:174.630000px;}
.y5f{bottom:178.020000px;}
.yf2{bottom:179.850000px;}
.y48{bottom:185.610000px;}
.ya6{bottom:187.050000px;}
.yc7{bottom:191.370000px;}
.yd1{bottom:192.270000px;}
.ye5{bottom:200.550000px;}
.y45{bottom:202.710000px;}
.y8f{bottom:205.410000px;}
.y81{bottom:205.770000px;}
.y5e{bottom:209.205000px;}
.yf1{bottom:210.810000px;}
.ya5{bottom:218.010000px;}
.yc6{bottom:222.510000px;}
.yd0{bottom:223.410000px;}
.ye4{bottom:231.510000px;}
.y8e{bottom:236.370000px;}
.y80{bottom:236.730000px;}
.y44{bottom:238.890000px;}
.y5d{bottom:240.165000px;}
.yf0{bottom:241.950000px;}
.ya4{bottom:249.150000px;}
.ycf{bottom:250.050000px;}
.yc5{bottom:253.470000px;}
.ye3{bottom:264.630000px;}
.y8d{bottom:267.330000px;}
.y7f{bottom:267.690000px;}
.y5c{bottom:271.305000px;}
.yef{bottom:272.910000px;}
.y43{bottom:275.070000px;}
.ya3{bottom:280.110000px;}
.yc4{bottom:284.610000px;}
.y8c{bottom:298.470000px;}
.y7e{bottom:298.830000px;}
.yc3{bottom:301.710000px;}
.y5b{bottom:302.265000px;}
.yee{bottom:304.050000px;}
.y42{bottom:311.250000px;}
.y8b{bottom:329.430000px;}
.y7d{bottom:329.790000px;}
.y5a{bottom:333.405000px;}
.yc1{bottom:333.570000px;}
.yed{bottom:335.010000px;}
.ya2{bottom:342.210000px;}
.y41{bottom:347.430000px;}
.y8a{bottom:360.570000px;}
.y7c{bottom:360.930000px;}
.y59{bottom:364.365000px;}
.yec{bottom:366.150000px;}
.yc0{bottom:370.515000px;}
.ya1{bottom:373.395000px;}
.y40{bottom:383.835000px;}
.y89{bottom:391.575000px;}
.y7b{bottom:391.935000px;}
.y58{bottom:395.505000px;}
.yeb{bottom:397.155000px;}
.ybf{bottom:402.375000px;}
.ya0{bottom:404.355000px;}
.y3f{bottom:420.015000px;}
.y88{bottom:422.715000px;}
.y7a{bottom:423.075000px;}
.y57{bottom:426.495000px;}
.yea{bottom:428.295000px;}
.ybe{bottom:434.055000px;}
.y9f{bottom:435.315000px;}
.y79{bottom:454.035000px;}
.y3e{bottom:456.195000px;}
.y56{bottom:457.455000px;}
.ye9{bottom:459.255000px;}
.y1a{bottom:459.435000px;}
.ybd{bottom:465.915000px;}
.y9e{bottom:466.455000px;}
.y78{bottom:485.175000px;}
.ye2{bottom:487.335000px;}
.y55{bottom:488.595000px;}
.ye8{bottom:490.395000px;}
.y3d{bottom:492.375000px;}
.y9d{bottom:497.415000px;}
.ybc{bottom:497.775000px;}
.y19{bottom:499.035000px;}
.y77{bottom:516.135000px;}
.y54{bottom:519.555000px;}
.ye1{bottom:521.355000px;}
.y9c{bottom:528.555000px;}
.y3c{bottom:528.735000px;}
.ybb{bottom:529.455000px;}
.y18{bottom:538.815000px;}
.y76{bottom:547.275000px;}
.y53{bottom:550.695000px;}
.ye0{bottom:552.495000px;}
.y9b{bottom:559.515000px;}
.yba{bottom:561.315000px;}
.y3b{bottom:564.915000px;}
.y75{bottom:578.235000px;}
.y17{bottom:578.415000px;}
.y52{bottom:581.655000px;}
.ydf{bottom:583.455000px;}
.y9a{bottom:590.655000px;}
.yb8{bottom:593.175000px;}
.y3a{bottom:601.095000px;}
.y74{bottom:609.405000px;}
.y51{bottom:612.795000px;}
.yde{bottom:614.625000px;}
.yce{bottom:616.245000px;}
.y99{bottom:621.645000px;}
.yb7{bottom:624.885000px;}
.y16{bottom:629.565000px;}
.y39{bottom:637.305000px;}
.y73{bottom:640.365000px;}
.y50{bottom:643.755000px;}
.ydd{bottom:645.585000px;}
.ycd{bottom:647.385000px;}
.y98{bottom:652.785000px;}
.yb6{bottom:656.745000px;}
.y15{bottom:660.525000px;}
.y72{bottom:671.505000px;}
.y38{bottom:673.665000px;}
.y4f{bottom:674.940000px;}
.ydc{bottom:676.725000px;}
.ycc{bottom:678.345000px;}
.y97{bottom:683.745000px;}
.yb5{bottom:688.605000px;}
.y14{bottom:691.665000px;}
.y71{bottom:702.465000px;}
.y4e{bottom:705.900000px;}
.y37{bottom:707.325000px;}
.ydb{bottom:707.685000px;}
.ycb{bottom:709.485000px;}
.y96{bottom:714.885000px;}
.y13{bottom:715.065000px;}
.yb4{bottom:720.285000px;}
.y70{bottom:733.605000px;}
.yca{bottom:736.125000px;}
.y4d{bottom:737.040000px;}
.y36{bottom:738.465000px;}
.yda{bottom:738.825000px;}
.y12{bottom:739.185000px;}
.y95{bottom:745.845000px;}
.yb2{bottom:752.145000px;}
.y11{bottom:762.945000px;}
.y6f{bottom:764.565000px;}
.y4c{bottom:768.000000px;}
.y35{bottom:769.425000px;}
.yd9{bottom:769.785000px;}
.y94{bottom:776.625000px;}
.yb1{bottom:783.825000px;}
.y10{bottom:786.885000px;}
.y6e{bottom:795.705000px;}
.y4b{bottom:799.140000px;}
.y34{bottom:800.385000px;}
.yd8{bottom:800.745000px;}
.y93{bottom:803.625000px;}
.yf{bottom:810.645000px;}
.yaf{bottom:815.685000px;}
.y6d{bottom:826.665000px;}
.y4a{bottom:830.100000px;}
.y33{bottom:831.525000px;}
.yd7{bottom:831.885000px;}
.ye{bottom:834.405000px;}
.yad{bottom:847.545000px;}
.y6c{bottom:857.850000px;}
.y49{bottom:860.880000px;}
.y32{bottom:862.530000px;}
.yd6{bottom:862.890000px;}
.yd{bottom:865.050000px;}
.yc{bottom:888.810000px;}
.y31{bottom:893.670000px;}
.yd5{bottom:894.030000px;}
.yb{bottom:912.570000px;}
.y6b{bottom:919.950000px;}
.y30{bottom:924.630000px;}
.yd4{bottom:924.990000px;}
.yf5{bottom:926.610000px;}
.ya{bottom:936.330000px;}
.y6a{bottom:950.910000px;}
.y2f{bottom:955.770000px;}
.yac{bottom:956.130000px;}
.y9{bottom:960.270000px;}
.y69{bottom:982.050000px;}
.y8{bottom:986.010000px;}
.y2e{bottom:986.730000px;}
.yab{bottom:987.090000px;}
.y68{bottom:1013.010000px;}
.y2d{bottom:1017.870000px;}
.yaa{bottom:1018.230000px;}
.y7{bottom:1018.590000px;}
.y67{bottom:1044.150000px;}
.y87{bottom:1046.130000px;}
.y2c{bottom:1048.830000px;}
.ya9{bottom:1049.190000px;}
.y1b{bottom:1052.970000px;}
.y6{bottom:1053.870000px;}
.y66{bottom:1075.110000px;}
.y2b{bottom:1079.970000px;}
.y86{bottom:1080.330000px;}
.y65{bottom:1108.260000px;}
.y2a{bottom:1110.960000px;}
.y85{bottom:1111.320000px;}
.y28{bottom:1131.120000px;}
.y21{bottom:1133.280000px;}
.y1f{bottom:1133.640000px;}
.h15{height:30.960000px;}
.h13{height:30.996000px;}
.h14{height:31.140000px;}
.hc{height:33.660000px;}
.hb{height:34.560000px;}
.h16{height:36.216000px;}
.h4{height:58.651172px;}
.h11{height:63.035156px;}
.ha{height:65.010937px;}
.h10{height:70.628906px;}
.h3{height:70.664062px;}
.h7{height:72.562500px;}
.hd{height:73.080000px;}
.h12{height:74.680922px;}
.h6{height:74.704922px;}
.h2{height:81.540000px;}
.he{height:84.898125px;}
.h8{height:87.156000px;}
.h9{height:90.884531px;}
.h5{height:96.508125px;}
.hf{height:885.705000px;}
.h1{height:1200.000000px;}
.h0{height:1200.060000px;}
.w5{width:103.896000px;}
.w8{width:149.436000px;}
.w9{width:162.570000px;}
.wa{width:270.930000px;}
.w4{width:619.710000px;}
.w3{width:642.570000px;}
.w7{width:703.050000px;}
.w1{width:824.400000px;}
.w6{width:831.600000px;}
.w2{width:899.999987px;}
.w0{width:900.000000px;}
.x0{left:0.000000px;}
.xc{left:1.440000px;}
.x16{left:7.740000px;}
.xb{left:10.800000px;}
.x2{left:19.980000px;}
.xf{left:23.580000px;}
.x1{left:41.760000px;}
.xe{left:43.200000px;}
.x5{left:57.059987px;}
.x9{left:85.715987px;}
.x12{left:104.436000px;}
.x15{left:157.890000px;}
.x7{left:210.269987px;}
.xa{left:238.170000px;}
.x8{left:281.414987px;}
.x17{left:308.055000px;}
.x14{left:324.254987px;}
.x3{left:359.895000px;}
.x10{left:363.495000px;}
.x4{left:402.225000px;}
.x11{left:405.825000px;}
.x18{left:471.345000px;}
.x13{left:676.409987px;}
.x19{left:691.169987px;}
.x1a{left:698.009987px;}
.xd{left:717.990000px;}
.x1c{left:768.239987px;}
.x6{left:834.119987px;}
.x1b{left:843.299987px;}
@media print{
.v3{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.120000pt;}
.v1{vertical-align:24.320000pt;}
.ls5{letter-spacing:-3.840000pt;}
.ls6{letter-spacing:-0.640000pt;}
.ls7{letter-spacing:-0.344533pt;}
.ls4{letter-spacing:-0.256000pt;}
.ls9{letter-spacing:-0.192000pt;}
.lsa{letter-spacing:-0.128000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.128000pt;}
.lsd{letter-spacing:0.160000pt;}
.lsb{letter-spacing:0.192000pt;}
.ls1{letter-spacing:0.224640pt;}
.lsc{letter-spacing:0.257280pt;}
.ls0{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.704000pt;}
.ws6{word-spacing:-25.758080pt;}
.ws7{word-spacing:-25.413547pt;}
.ws9{word-spacing:-18.720000pt;}
.wsc{word-spacing:-16.192000pt;}
.ws2{word-spacing:-16.128000pt;}
.ws1{word-spacing:-16.000000pt;}
.wsb{word-spacing:-15.872000pt;}
.wse{word-spacing:-15.808000pt;}
.ws3{word-spacing:-15.744000pt;}
.ws5{word-spacing:-15.360000pt;}
.ws4{word-spacing:-12.160000pt;}
.wsa{word-spacing:-11.040000pt;}
.wsd{word-spacing:-10.977280pt;}
.ws0{word-spacing:-10.720000pt;}
.ws8{word-spacing:0.000000pt;}
._5{margin-left:-7.552000pt;}
._8{margin-left:-6.293333pt;}
._4{margin-left:-5.312000pt;}
._3{margin-left:-4.416000pt;}
._6{margin-left:-3.477333pt;}
._7{margin-left:-2.560000pt;}
._0{margin-left:-1.205333pt;}
._1{width:0.960000pt;}
._2{width:2.429867pt;}
._9{width:3.351467pt;}
._f{width:4.637867pt;}
._15{width:5.922133pt;}
._17{width:7.133867pt;}
._16{width:8.117333pt;}
._d{width:9.344000pt;}
._c{width:10.240000pt;}
._a{width:11.648000pt;}
._b{width:12.864000pt;}
._1a{width:13.760000pt;}
._10{width:14.720000pt;}
._e{width:17.066667pt;}
._14{width:18.432000pt;}
._1b{width:19.648000pt;}
._18{width:20.608000pt;}
._13{width:21.632000pt;}
._1d{width:25.472000pt;}
._1e{width:26.602667pt;}
._1c{width:28.928000pt;}
._19{width:32.949333pt;}
._11{width:39.936000pt;}
._12{width:40.960000pt;}
.fs3{font-size:42.880000pt;}
.fs1{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.fs4{font-size:106.880000pt;}
.y1e{bottom:-26.720000pt;}
.y27{bottom:-13.120053pt;}
.y0{bottom:0.000000pt;}
.y1d{bottom:7.680000pt;}
.y26{bottom:8.160000pt;}
.y22{bottom:12.480000pt;}
.yae{bottom:12.680000pt;}
.yb3{bottom:12.960000pt;}
.yb9{bottom:12.986667pt;}
.yb0{bottom:13.120000pt;}
.y20{bottom:13.280000pt;}
.y23{bottom:14.400000pt;}
.y4{bottom:15.040000pt;}
.yc2{bottom:17.600000pt;}
.y64{bottom:19.840000pt;}
.y1{bottom:21.760000pt;}
.y25{bottom:29.280000pt;}
.y3{bottom:36.800000pt;}
.y63{bottom:47.840000pt;}
.y24{bottom:50.400000pt;}
.y1c{bottom:53.146667pt;}
.y2{bottom:57.920000pt;}
.y5{bottom:68.000000pt;}
.y62{bottom:75.520000pt;}
.y29{bottom:87.040000pt;}
.y92{bottom:99.680000pt;}
.y84{bottom:100.000000pt;}
.y61{bottom:103.040000pt;}
.yf4{bottom:104.640000pt;}
.yd3{bottom:108.480000pt;}
.ya8{bottom:111.040000pt;}
.yc9{bottom:114.912000pt;}
.y47{bottom:115.712000pt;}
.ye7{bottom:123.072000pt;}
.y91{bottom:127.392000pt;}
.y83{bottom:127.712000pt;}
.y60{bottom:130.720000pt;}
.yf3{bottom:132.192000pt;}
.ya7{bottom:138.586667pt;}
.yd2{bottom:140.666667pt;}
.yc8{bottom:142.586667pt;}
.y46{bottom:147.866667pt;}
.ye6{bottom:150.586667pt;}
.y90{bottom:154.906667pt;}
.y82{bottom:155.226667pt;}
.y5f{bottom:158.240000pt;}
.yf2{bottom:159.866667pt;}
.y48{bottom:164.986667pt;}
.ya6{bottom:166.266667pt;}
.yc7{bottom:170.106667pt;}
.yd1{bottom:170.906667pt;}
.ye5{bottom:178.266667pt;}
.y45{bottom:180.186667pt;}
.y8f{bottom:182.586667pt;}
.y81{bottom:182.906667pt;}
.y5e{bottom:185.960000pt;}
.yf1{bottom:187.386667pt;}
.ya5{bottom:193.786667pt;}
.yc6{bottom:197.786667pt;}
.yd0{bottom:198.586667pt;}
.ye4{bottom:205.786667pt;}
.y8e{bottom:210.106667pt;}
.y80{bottom:210.426667pt;}
.y44{bottom:212.346667pt;}
.y5d{bottom:213.480000pt;}
.yf0{bottom:215.066667pt;}
.ya4{bottom:221.466667pt;}
.ycf{bottom:222.266667pt;}
.yc5{bottom:225.306667pt;}
.ye3{bottom:235.226667pt;}
.y8d{bottom:237.626667pt;}
.y7f{bottom:237.946667pt;}
.y5c{bottom:241.160000pt;}
.yef{bottom:242.586667pt;}
.y43{bottom:244.506667pt;}
.ya3{bottom:248.986667pt;}
.yc4{bottom:252.986667pt;}
.y8c{bottom:265.306667pt;}
.y7e{bottom:265.626667pt;}
.yc3{bottom:268.186667pt;}
.y5b{bottom:268.680000pt;}
.yee{bottom:270.266667pt;}
.y42{bottom:276.666667pt;}
.y8b{bottom:292.826667pt;}
.y7d{bottom:293.146667pt;}
.y5a{bottom:296.360000pt;}
.yc1{bottom:296.506667pt;}
.yed{bottom:297.786667pt;}
.ya2{bottom:304.186667pt;}
.y41{bottom:308.826667pt;}
.y8a{bottom:320.506667pt;}
.y7c{bottom:320.826667pt;}
.y59{bottom:323.880000pt;}
.yec{bottom:325.466667pt;}
.yc0{bottom:329.346667pt;}
.ya1{bottom:331.906667pt;}
.y40{bottom:341.186667pt;}
.y89{bottom:348.066667pt;}
.y7b{bottom:348.386667pt;}
.y58{bottom:351.560000pt;}
.yeb{bottom:353.026667pt;}
.ybf{bottom:357.666667pt;}
.ya0{bottom:359.426667pt;}
.y3f{bottom:373.346667pt;}
.y88{bottom:375.746667pt;}
.y7a{bottom:376.066667pt;}
.y57{bottom:379.106667pt;}
.yea{bottom:380.706667pt;}
.ybe{bottom:385.826667pt;}
.y9f{bottom:386.946667pt;}
.y79{bottom:403.586667pt;}
.y3e{bottom:405.506667pt;}
.y56{bottom:406.626667pt;}
.ye9{bottom:408.226667pt;}
.y1a{bottom:408.386667pt;}
.ybd{bottom:414.146667pt;}
.y9e{bottom:414.626667pt;}
.y78{bottom:431.266667pt;}
.ye2{bottom:433.186667pt;}
.y55{bottom:434.306667pt;}
.ye8{bottom:435.906667pt;}
.y3d{bottom:437.666667pt;}
.y9d{bottom:442.146667pt;}
.ybc{bottom:442.466667pt;}
.y19{bottom:443.586667pt;}
.y77{bottom:458.786667pt;}
.y54{bottom:461.826667pt;}
.ye1{bottom:463.426667pt;}
.y9c{bottom:469.826667pt;}
.y3c{bottom:469.986667pt;}
.ybb{bottom:470.626667pt;}
.y18{bottom:478.946667pt;}
.y76{bottom:486.466667pt;}
.y53{bottom:489.506667pt;}
.ye0{bottom:491.106667pt;}
.y9b{bottom:497.346667pt;}
.yba{bottom:498.946667pt;}
.y3b{bottom:502.146667pt;}
.y75{bottom:513.986667pt;}
.y17{bottom:514.146667pt;}
.y52{bottom:517.026667pt;}
.ydf{bottom:518.626667pt;}
.y9a{bottom:525.026667pt;}
.yb8{bottom:527.266667pt;}
.y3a{bottom:534.306667pt;}
.y74{bottom:541.693333pt;}
.y51{bottom:544.706667pt;}
.yde{bottom:546.333333pt;}
.yce{bottom:547.773333pt;}
.y99{bottom:552.573333pt;}
.yb7{bottom:555.453333pt;}
.y16{bottom:559.613333pt;}
.y39{bottom:566.493333pt;}
.y73{bottom:569.213333pt;}
.y50{bottom:572.226667pt;}
.ydd{bottom:573.853333pt;}
.ycd{bottom:575.453333pt;}
.y98{bottom:580.253333pt;}
.yb6{bottom:583.773333pt;}
.y15{bottom:587.133333pt;}
.y72{bottom:596.893333pt;}
.y38{bottom:598.813333pt;}
.y4f{bottom:599.946667pt;}
.ydc{bottom:601.533333pt;}
.ycc{bottom:602.973333pt;}
.y97{bottom:607.773333pt;}
.yb5{bottom:612.093333pt;}
.y14{bottom:614.813333pt;}
.y71{bottom:624.413333pt;}
.y4e{bottom:627.466667pt;}
.y37{bottom:628.733333pt;}
.ydb{bottom:629.053333pt;}
.ycb{bottom:630.653333pt;}
.y96{bottom:635.453333pt;}
.y13{bottom:635.613333pt;}
.yb4{bottom:640.253333pt;}
.y70{bottom:652.093333pt;}
.yca{bottom:654.333333pt;}
.y4d{bottom:655.146667pt;}
.y36{bottom:656.413333pt;}
.yda{bottom:656.733333pt;}
.y12{bottom:657.053333pt;}
.y95{bottom:662.973333pt;}
.yb2{bottom:668.573333pt;}
.y11{bottom:678.173333pt;}
.y6f{bottom:679.613333pt;}
.y4c{bottom:682.666667pt;}
.y35{bottom:683.933333pt;}
.yd9{bottom:684.253333pt;}
.y94{bottom:690.333333pt;}
.yb1{bottom:696.733333pt;}
.y10{bottom:699.453333pt;}
.y6e{bottom:707.293333pt;}
.y4b{bottom:710.346667pt;}
.y34{bottom:711.453333pt;}
.yd8{bottom:711.773333pt;}
.y93{bottom:714.333333pt;}
.yf{bottom:720.573333pt;}
.yaf{bottom:725.053333pt;}
.y6d{bottom:734.813333pt;}
.y4a{bottom:737.866667pt;}
.y33{bottom:739.133333pt;}
.yd7{bottom:739.453333pt;}
.ye{bottom:741.693333pt;}
.yad{bottom:753.373333pt;}
.y6c{bottom:762.533333pt;}
.y49{bottom:765.226667pt;}
.y32{bottom:766.693333pt;}
.yd6{bottom:767.013333pt;}
.yd{bottom:768.933333pt;}
.yc{bottom:790.053333pt;}
.y31{bottom:794.373333pt;}
.yd5{bottom:794.693333pt;}
.yb{bottom:811.173333pt;}
.y6b{bottom:817.733333pt;}
.y30{bottom:821.893333pt;}
.yd4{bottom:822.213333pt;}
.yf5{bottom:823.653333pt;}
.ya{bottom:832.293333pt;}
.y6a{bottom:845.253333pt;}
.y2f{bottom:849.573333pt;}
.yac{bottom:849.893333pt;}
.y9{bottom:853.573333pt;}
.y69{bottom:872.933333pt;}
.y8{bottom:876.453333pt;}
.y2e{bottom:877.093333pt;}
.yab{bottom:877.413333pt;}
.y68{bottom:900.453333pt;}
.y2d{bottom:904.773333pt;}
.yaa{bottom:905.093333pt;}
.y7{bottom:905.413333pt;}
.y67{bottom:928.133333pt;}
.y87{bottom:929.893333pt;}
.y2c{bottom:932.293333pt;}
.ya9{bottom:932.613333pt;}
.y1b{bottom:935.973333pt;}
.y6{bottom:936.773333pt;}
.y66{bottom:955.653333pt;}
.y2b{bottom:959.973333pt;}
.y86{bottom:960.293333pt;}
.y65{bottom:985.120000pt;}
.y2a{bottom:987.520000pt;}
.y85{bottom:987.840000pt;}
.y28{bottom:1005.440000pt;}
.y21{bottom:1007.360000pt;}
.y1f{bottom:1007.680000pt;}
.h15{height:27.520000pt;}
.h13{height:27.552000pt;}
.h14{height:27.680000pt;}
.hc{height:29.920000pt;}
.hb{height:30.720000pt;}
.h16{height:32.192000pt;}
.h4{height:52.134375pt;}
.h11{height:56.031250pt;}
.ha{height:57.787500pt;}
.h10{height:62.781250pt;}
.h3{height:62.812500pt;}
.h7{height:64.500000pt;}
.hd{height:64.960000pt;}
.h12{height:66.383042pt;}
.h6{height:66.404375pt;}
.h2{height:72.480000pt;}
.he{height:75.465000pt;}
.h8{height:77.472000pt;}
.h9{height:80.786250pt;}
.h5{height:85.785000pt;}
.hf{height:787.293333pt;}
.h1{height:1066.666667pt;}
.h0{height:1066.720000pt;}
.w5{width:92.352000pt;}
.w8{width:132.832000pt;}
.w9{width:144.506667pt;}
.wa{width:240.826667pt;}
.w4{width:550.853333pt;}
.w3{width:571.173333pt;}
.w7{width:624.933333pt;}
.w1{width:732.800000pt;}
.w6{width:739.200000pt;}
.w2{width:799.999988pt;}
.w0{width:800.000000pt;}
.x0{left:0.000000pt;}
.xc{left:1.280000pt;}
.x16{left:6.880000pt;}
.xb{left:9.600000pt;}
.x2{left:17.760000pt;}
.xf{left:20.960000pt;}
.x1{left:37.120000pt;}
.xe{left:38.400000pt;}
.x5{left:50.719988pt;}
.x9{left:76.191988pt;}
.x12{left:92.832000pt;}
.x15{left:140.346667pt;}
.x7{left:186.906655pt;}
.xa{left:211.706667pt;}
.x8{left:250.146655pt;}
.x17{left:273.826667pt;}
.x14{left:288.226655pt;}
.x3{left:319.906667pt;}
.x10{left:323.106667pt;}
.x4{left:357.533333pt;}
.x11{left:360.733333pt;}
.x18{left:418.973333pt;}
.x13{left:601.253321pt;}
.x19{left:614.373321pt;}
.x1a{left:620.453321pt;}
.xd{left:638.213333pt;}
.x1c{left:682.879988pt;}
.x6{left:741.439988pt;}
.x1b{left:749.599988pt;}
}




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