
    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_004cc2eeb0a418e8437a9fc4.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_a37ffc6327cb60a84ce06db9.woff')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_b97d9a09eacb2979765777f1.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_af508cf85967703a4dac932e.woff')format("woff");}.ff4{font-family:ff4;line-height:1.435059;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_f6d8e3e4d782653d537ad2cd.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_04c63f451a7933c21c175b9d.woff')format("woff");}.ff6{font-family:ff6;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_33d6efd2728f397ea4ff93b2.woff')format("woff");}.ff7{font-family:ff7;line-height:0.946777;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_c6490879ea5d605275023739.woff')format("woff");}.ff8{font-family:ff8;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);}
.v1{vertical-align:-106.560000px;}
.v0{vertical-align:0.000000px;}
.ls10{letter-spacing:-0.900000px;}
.ls12{letter-spacing:-0.360000px;}
.lsb{letter-spacing:-0.180000px;}
.lsa{letter-spacing:-0.017280px;}
.ls9{letter-spacing:-0.008640px;}
.ls8{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.008640px;}
.ls5{letter-spacing:0.017280px;}
.ls1{letter-spacing:0.025920px;}
.ls11{letter-spacing:0.028080px;}
.ls0{letter-spacing:0.034560px;}
.ls4{letter-spacing:0.205920px;}
.lse{letter-spacing:0.360000px;}
.ls13{letter-spacing:0.504000px;}
.lsc{letter-spacing:0.540000px;}
.ls3{letter-spacing:0.745920px;}
.ls14{letter-spacing:21.221280px;}
.lsd{letter-spacing:22.140000px;}
.lsf{letter-spacing:29.340000px;}
.ls7{letter-spacing:61.020000px;}
.ls6{letter-spacing:84.960000px;}
.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;}
}
.ws0{word-spacing:-21.617280px;}
.wsa{word-spacing:-21.420000px;}
.ws7{word-spacing:-21.060000px;}
.ws9{word-spacing:-20.700000px;}
.ws3{word-spacing:-19.474560px;}
.ws6{word-spacing:-19.457280px;}
.ws4{word-spacing:-19.448640px;}
.ws2{word-spacing:-19.440000px;}
.ws5{word-spacing:-19.422720px;}
.ws1{word-spacing:-0.077760px;}
.ws8{word-spacing:0.000000px;}
._f{margin-left:-2.234880px;}
._0{margin-left:-1.224000px;}
._1{width:1.788000px;}
._e{width:3.223680px;}
._20{width:5.222880px;}
._26{width:6.304080px;}
._23{width:7.413120px;}
._19{width:8.533920px;}
._31{width:9.550320px;}
._2b{width:10.747680px;}
._2a{width:12.006720px;}
._29{width:13.464480px;}
._6{width:14.697120px;}
._5{width:15.863040px;}
._1a{width:17.664480px;}
._1e{width:19.734000px;}
._3{width:22.939680px;}
._2{width:24.105600px;}
._b{width:25.332480px;}
._22{width:26.488320px;}
._a{width:27.683040px;}
._9{width:28.771200px;}
._1f{width:29.774160px;}
._4{width:30.870720px;}
._16{width:32.652000px;}
._17{width:34.571520px;}
._2c{width:36.745680px;}
._11{width:37.870080px;}
._10{width:38.879280px;}
._14{width:40.233840px;}
._15{width:41.324400px;}
._1b{width:42.819600px;}
._8{width:44.712480px;}
._7{width:45.800640px;}
._30{width:47.354880px;}
._27{width:48.360480px;}
._18{width:49.409280px;}
._12{width:50.653920px;}
._13{width:52.526160px;}
._1c{width:55.455600px;}
._1d{width:56.530080px;}
._21{width:58.008480px;}
._32{width:59.095920px;}
._d{width:60.405120px;}
._c{width:61.539840px;}
._24{width:75.394800px;}
._25{width:76.644480px;}
._28{width:78.162960px;}
._2d{width:83.358000px;}
._2e{width:96.312960px;}
._2f{width:97.847280px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(31,73,125);}
.fs0{font-size:72.000000px;}
.fs1{font-size:77.760000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y16{bottom:7.560000px;}
.y2a{bottom:8.100000px;}
.y6e{bottom:8.265000px;}
.y70{bottom:8.280000px;}
.y56{bottom:8.460000px;}
.y5c{bottom:8.640000px;}
.y63{bottom:8.820000px;}
.y60{bottom:22.500000px;}
.y59{bottom:22.680000px;}
.y15{bottom:33.480000px;}
.y29{bottom:33.840000px;}
.y25{bottom:34.200000px;}
.y5b{bottom:36.540000px;}
.y21{bottom:46.980000px;}
.y58{bottom:50.400000px;}
.y24{bottom:56.700000px;}
.yd{bottom:58.140000px;}
.y28{bottom:59.760000px;}
.y5f{bottom:64.260000px;}
.y5a{bottom:64.305000px;}
.y20{bottom:72.720000px;}
.y23{bottom:79.020000px;}
.yc{bottom:82.296000px;}
.y27{bottom:85.500000px;}
.y1f{bottom:98.460000px;}
.yb{bottom:106.416000px;}
.y1e{bottom:124.380000px;}
.ya{bottom:130.536000px;}
.y1d{bottom:150.120000px;}
.y9{bottom:154.470000px;}
.y1c{bottom:175.860000px;}
.y8{bottom:176.250000px;}
.y7{bottom:198.750000px;}
.y1b{bottom:201.600000px;}
.y6{bottom:221.250000px;}
.y1a{bottom:227.520000px;}
.y6d{bottom:248.085000px;}
.y36{bottom:249.510000px;}
.y19{bottom:253.260000px;}
.y7e{bottom:260.850000px;}
.y8c{bottom:266.970000px;}
.y54{bottom:271.290000px;}
.y35{bottom:277.230000px;}
.y6c{bottom:288.570000px;}
.y8b{bottom:294.690000px;}
.y53{bottom:299.010000px;}
.y34{bottom:304.950000px;}
.y6b{bottom:316.290000px;}
.y52{bottom:326.910000px;}
.y33{bottom:332.715000px;}
.y8a{bottom:334.695000px;}
.y6a{bottom:344.235000px;}
.y51{bottom:354.675000px;}
.y32{bottom:360.615000px;}
.y89{bottom:362.235000px;}
.y69{bottom:371.955000px;}
.y50{bottom:382.395000px;}
.y31{bottom:388.335000px;}
.y68{bottom:399.675000px;}
.y88{bottom:402.195000px;}
.y4f{bottom:410.115000px;}
.y30{bottom:416.055000px;}
.y67{bottom:427.575000px;}
.y87{bottom:429.735000px;}
.y4e{bottom:438.015000px;}
.y2f{bottom:443.955000px;}
.y66{bottom:455.295000px;}
.y4d{bottom:465.735000px;}
.y86{bottom:469.695000px;}
.y2e{bottom:471.675000px;}
.y65{bottom:483.015000px;}
.y4c{bottom:493.455000px;}
.y85{bottom:497.235000px;}
.y2d{bottom:499.395000px;}
.y64{bottom:510.735000px;}
.y4b{bottom:521.355000px;}
.y2c{bottom:527.115000px;}
.y62{bottom:533.955000px;}
.y84{bottom:537.195000px;}
.y7d{bottom:538.635000px;}
.y4a{bottom:549.075000px;}
.y83{bottom:564.735000px;}
.y7c{bottom:566.355000px;}
.y49{bottom:576.795000px;}
.y2b{bottom:581.655000px;}
.y7b{bottom:594.075000px;}
.y61{bottom:595.545000px;}
.y18{bottom:599.865000px;}
.y48{bottom:604.545000px;}
.y82{bottom:604.725000px;}
.y7a{bottom:621.825000px;}
.y47{bottom:632.445000px;}
.y79{bottom:649.725000px;}
.y5e{bottom:657.105000px;}
.y81{bottom:659.805000px;}
.y46{bottom:660.165000px;}
.y78{bottom:677.445000px;}
.y80{bottom:687.525000px;}
.y45{bottom:687.885000px;}
.y26{bottom:703.725000px;}
.y77{bottom:705.165000px;}
.y7f{bottom:715.425000px;}
.y44{bottom:715.785000px;}
.y76{bottom:733.065000px;}
.y43{bottom:743.505000px;}
.y5d{bottom:746.385000px;}
.y22{bottom:747.465000px;}
.y75{bottom:756.105000px;}
.y42{bottom:771.225000px;}
.y41{bottom:798.945000px;}
.y57{bottom:807.945000px;}
.y74{bottom:817.665000px;}
.y40{bottom:826.845000px;}
.y17{bottom:845.025000px;}
.y3f{bottom:854.565000px;}
.y73{bottom:879.270000px;}
.y14{bottom:880.530000px;}
.y3e{bottom:882.330000px;}
.y55{bottom:897.270000px;}
.y3d{bottom:910.050000px;}
.y91{bottom:914.730000px;}
.y3c{bottom:937.950000px;}
.y72{bottom:940.830000px;}
.y90{bottom:941.730000px;}
.y13{bottom:949.290000px;}
.y3b{bottom:965.670000px;}
.y12{bottom:975.030000px;}
.y8f{bottom:981.690000px;}
.y3a{bottom:993.390000px;}
.y11{bottom:1000.770000px;}
.y71{bottom:1002.390000px;}
.y8e{bottom:1009.230000px;}
.y39{bottom:1021.290000px;}
.y10{bottom:1026.150000px;}
.y38{bottom:1049.010000px;}
.y8d{bottom:1049.190000px;}
.yf{bottom:1051.890000px;}
.y6f{bottom:1063.950000px;}
.y37{bottom:1076.730000px;}
.ye{bottom:1077.630000px;}
.y5{bottom:1100.850000px;}
.y4{bottom:1124.250000px;}
.y3{bottom:1147.140000px;}
.y2{bottom:1170.900000px;}
.y1{bottom:1193.220000px;}
.h17{height:27.705000px;}
.h12{height:27.885000px;}
.hb{height:34.762500px;}
.hf{height:43.740000px;}
.h16{height:55.605000px;}
.h14{height:55.620000px;}
.h18{height:55.642500px;}
.hd{height:56.839219px;}
.h11{height:58.819922px;}
.ha{height:60.645000px;}
.h2{height:72.562500px;}
.h9{height:76.279219px;}
.h8{height:76.317188px;}
.h3{height:78.367500px;}
.h7{height:80.949375px;}
.h5{height:81.101250px;}
.h6{height:82.676953px;}
.h15{height:83.340000px;}
.h13{height:83.362500px;}
.h4{height:84.898125px;}
.h19{height:87.859687px;}
.he{height:96.660000px;}
.h10{height:103.140000px;}
.hc{height:279.930000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:145.834500px;}
.w4{width:198.748500px;}
.w2{width:209.539500px;}
.w6{width:216.375000px;}
.w8{width:279.240000px;}
.w9{width:292.695000px;}
.w5{width:302.610000px;}
.w3{width:432.795000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1f{left:1.245000px;}
.x33{left:2.685000px;}
.x30{left:5.205000px;}
.x2d{left:6.838500px;}
.xf{left:8.100000px;}
.x34{left:10.785000px;}
.x1c{left:12.405000px;}
.x28{left:14.385000px;}
.x32{left:17.805000px;}
.x11{left:19.069500px;}
.x21{left:21.045000px;}
.x24{left:23.220000px;}
.x1e{left:26.280000px;}
.x22{left:27.394500px;}
.xe{left:29.323500px;}
.x12{left:32.023500px;}
.x35{left:33.645000px;}
.x10{left:34.723500px;}
.x23{left:36.720000px;}
.x26{left:41.565000px;}
.x27{left:43.594500px;}
.x2a{left:45.034500px;}
.x31{left:46.425000px;}
.xb{left:47.683500px;}
.x18{left:54.934500px;}
.x2b{left:57.780000px;}
.x36{left:61.905000px;}
.x1d{left:66.094500px;}
.xa{left:70.363500px;}
.x29{left:74.910000px;}
.x17{left:83.881500px;}
.x1{left:84.960000px;}
.x20{left:101.340000px;}
.x2{left:103.356000px;}
.x25{left:110.880000px;}
.x13{left:111.996000px;}
.x1a{left:123.120000px;}
.x9{left:125.326500px;}
.x7{left:132.696000px;}
.x14{left:138.096000px;}
.xd{left:151.770000px;}
.x15{left:162.750000px;}
.x2c{left:168.690000px;}
.x4{left:181.290000px;}
.x2e{left:233.505000px;}
.x8{left:276.870000px;}
.x19{left:286.455000px;}
.x6{left:310.215000px;}
.xc{left:334.875000px;}
.x16{left:356.835000px;}
.x5{left:457.095000px;}
.x37{left:472.965000px;}
.x2f{left:516.540000px;}
.x1b{left:592.860000px;}
.x3{left:778.650000px;}
@media print{
.v1{vertical-align:-94.720000pt;}
.v0{vertical-align:0.000000pt;}
.ls10{letter-spacing:-0.800000pt;}
.ls12{letter-spacing:-0.320000pt;}
.lsb{letter-spacing:-0.160000pt;}
.lsa{letter-spacing:-0.015360pt;}
.ls9{letter-spacing:-0.007680pt;}
.ls8{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.007680pt;}
.ls5{letter-spacing:0.015360pt;}
.ls1{letter-spacing:0.023040pt;}
.ls11{letter-spacing:0.024960pt;}
.ls0{letter-spacing:0.030720pt;}
.ls4{letter-spacing:0.183040pt;}
.lse{letter-spacing:0.320000pt;}
.ls13{letter-spacing:0.448000pt;}
.lsc{letter-spacing:0.480000pt;}
.ls3{letter-spacing:0.663040pt;}
.ls14{letter-spacing:18.863360pt;}
.lsd{letter-spacing:19.680000pt;}
.lsf{letter-spacing:26.080000pt;}
.ls7{letter-spacing:54.240000pt;}
.ls6{letter-spacing:75.520000pt;}
.ws0{word-spacing:-19.215360pt;}
.wsa{word-spacing:-19.040000pt;}
.ws7{word-spacing:-18.720000pt;}
.ws9{word-spacing:-18.400000pt;}
.ws3{word-spacing:-17.310720pt;}
.ws6{word-spacing:-17.295360pt;}
.ws4{word-spacing:-17.287680pt;}
.ws2{word-spacing:-17.280000pt;}
.ws5{word-spacing:-17.264640pt;}
.ws1{word-spacing:-0.069120pt;}
.ws8{word-spacing:0.000000pt;}
._f{margin-left:-1.986560pt;}
._0{margin-left:-1.088000pt;}
._1{width:1.589333pt;}
._e{width:2.865493pt;}
._20{width:4.642560pt;}
._26{width:5.603627pt;}
._23{width:6.589440pt;}
._19{width:7.585707pt;}
._31{width:8.489173pt;}
._2b{width:9.553493pt;}
._2a{width:10.672640pt;}
._29{width:11.968427pt;}
._6{width:13.064107pt;}
._5{width:14.100480pt;}
._1a{width:15.701760pt;}
._1e{width:17.541333pt;}
._3{width:20.390827pt;}
._2{width:21.427200pt;}
._b{width:22.517760pt;}
._22{width:23.545173pt;}
._a{width:24.607147pt;}
._9{width:25.574400pt;}
._1f{width:26.465920pt;}
._4{width:27.440640pt;}
._16{width:29.024000pt;}
._17{width:30.730240pt;}
._2c{width:32.662827pt;}
._11{width:33.662293pt;}
._10{width:34.559360pt;}
._14{width:35.763413pt;}
._15{width:36.732800pt;}
._1b{width:38.061867pt;}
._8{width:39.744427pt;}
._7{width:40.711680pt;}
._30{width:42.093227pt;}
._27{width:42.987093pt;}
._18{width:43.919360pt;}
._12{width:45.025707pt;}
._13{width:46.689920pt;}
._1c{width:49.293867pt;}
._1d{width:50.248960pt;}
._21{width:51.563093pt;}
._32{width:52.529707pt;}
._d{width:53.693440pt;}
._c{width:54.702080pt;}
._24{width:67.017600pt;}
._25{width:68.128427pt;}
._28{width:69.478187pt;}
._2d{width:74.096000pt;}
._2e{width:85.611520pt;}
._2f{width:86.975360pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:69.120000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y16{bottom:6.720000pt;}
.y2a{bottom:7.200000pt;}
.y6e{bottom:7.346667pt;}
.y70{bottom:7.360000pt;}
.y56{bottom:7.520000pt;}
.y5c{bottom:7.680000pt;}
.y63{bottom:7.840000pt;}
.y60{bottom:20.000000pt;}
.y59{bottom:20.160000pt;}
.y15{bottom:29.760000pt;}
.y29{bottom:30.080000pt;}
.y25{bottom:30.400000pt;}
.y5b{bottom:32.480000pt;}
.y21{bottom:41.760000pt;}
.y58{bottom:44.800000pt;}
.y24{bottom:50.400000pt;}
.yd{bottom:51.680000pt;}
.y28{bottom:53.120000pt;}
.y5f{bottom:57.120000pt;}
.y5a{bottom:57.160000pt;}
.y20{bottom:64.640000pt;}
.y23{bottom:70.240000pt;}
.yc{bottom:73.152000pt;}
.y27{bottom:76.000000pt;}
.y1f{bottom:87.520000pt;}
.yb{bottom:94.592000pt;}
.y1e{bottom:110.560000pt;}
.ya{bottom:116.032000pt;}
.y1d{bottom:133.440000pt;}
.y9{bottom:137.306667pt;}
.y1c{bottom:156.320000pt;}
.y8{bottom:156.666667pt;}
.y7{bottom:176.666667pt;}
.y1b{bottom:179.200000pt;}
.y6{bottom:196.666667pt;}
.y1a{bottom:202.240000pt;}
.y6d{bottom:220.520000pt;}
.y36{bottom:221.786667pt;}
.y19{bottom:225.120000pt;}
.y7e{bottom:231.866667pt;}
.y8c{bottom:237.306667pt;}
.y54{bottom:241.146667pt;}
.y35{bottom:246.426667pt;}
.y6c{bottom:256.506667pt;}
.y8b{bottom:261.946667pt;}
.y53{bottom:265.786667pt;}
.y34{bottom:271.066667pt;}
.y6b{bottom:281.146667pt;}
.y52{bottom:290.586667pt;}
.y33{bottom:295.746667pt;}
.y8a{bottom:297.506667pt;}
.y6a{bottom:305.986667pt;}
.y51{bottom:315.266667pt;}
.y32{bottom:320.546667pt;}
.y89{bottom:321.986667pt;}
.y69{bottom:330.626667pt;}
.y50{bottom:339.906667pt;}
.y31{bottom:345.186667pt;}
.y68{bottom:355.266667pt;}
.y88{bottom:357.506667pt;}
.y4f{bottom:364.546667pt;}
.y30{bottom:369.826667pt;}
.y67{bottom:380.066667pt;}
.y87{bottom:381.986667pt;}
.y4e{bottom:389.346667pt;}
.y2f{bottom:394.626667pt;}
.y66{bottom:404.706667pt;}
.y4d{bottom:413.986667pt;}
.y86{bottom:417.506667pt;}
.y2e{bottom:419.266667pt;}
.y65{bottom:429.346667pt;}
.y4c{bottom:438.626667pt;}
.y85{bottom:441.986667pt;}
.y2d{bottom:443.906667pt;}
.y64{bottom:453.986667pt;}
.y4b{bottom:463.426667pt;}
.y2c{bottom:468.546667pt;}
.y62{bottom:474.626667pt;}
.y84{bottom:477.506667pt;}
.y7d{bottom:478.786667pt;}
.y4a{bottom:488.066667pt;}
.y83{bottom:501.986667pt;}
.y7c{bottom:503.426667pt;}
.y49{bottom:512.706667pt;}
.y2b{bottom:517.026667pt;}
.y7b{bottom:528.066667pt;}
.y61{bottom:529.373333pt;}
.y18{bottom:533.213333pt;}
.y48{bottom:537.373333pt;}
.y82{bottom:537.533333pt;}
.y7a{bottom:552.733333pt;}
.y47{bottom:562.173333pt;}
.y79{bottom:577.533333pt;}
.y5e{bottom:584.093333pt;}
.y81{bottom:586.493333pt;}
.y46{bottom:586.813333pt;}
.y78{bottom:602.173333pt;}
.y80{bottom:611.133333pt;}
.y45{bottom:611.453333pt;}
.y26{bottom:625.533333pt;}
.y77{bottom:626.813333pt;}
.y7f{bottom:635.933333pt;}
.y44{bottom:636.253333pt;}
.y76{bottom:651.613333pt;}
.y43{bottom:660.893333pt;}
.y5d{bottom:663.453333pt;}
.y22{bottom:664.413333pt;}
.y75{bottom:672.093333pt;}
.y42{bottom:685.533333pt;}
.y41{bottom:710.173333pt;}
.y57{bottom:718.173333pt;}
.y74{bottom:726.813333pt;}
.y40{bottom:734.973333pt;}
.y17{bottom:751.133333pt;}
.y3f{bottom:759.613333pt;}
.y73{bottom:781.573333pt;}
.y14{bottom:782.693333pt;}
.y3e{bottom:784.293333pt;}
.y55{bottom:797.573333pt;}
.y3d{bottom:808.933333pt;}
.y91{bottom:813.093333pt;}
.y3c{bottom:833.733333pt;}
.y72{bottom:836.293333pt;}
.y90{bottom:837.093333pt;}
.y13{bottom:843.813333pt;}
.y3b{bottom:858.373333pt;}
.y12{bottom:866.693333pt;}
.y8f{bottom:872.613333pt;}
.y3a{bottom:883.013333pt;}
.y11{bottom:889.573333pt;}
.y71{bottom:891.013333pt;}
.y8e{bottom:897.093333pt;}
.y39{bottom:907.813333pt;}
.y10{bottom:912.133333pt;}
.y38{bottom:932.453333pt;}
.y8d{bottom:932.613333pt;}
.yf{bottom:935.013333pt;}
.y6f{bottom:945.733333pt;}
.y37{bottom:957.093333pt;}
.ye{bottom:957.893333pt;}
.y5{bottom:978.533333pt;}
.y4{bottom:999.333333pt;}
.y3{bottom:1019.680000pt;}
.y2{bottom:1040.800000pt;}
.y1{bottom:1060.640000pt;}
.h17{height:24.626667pt;}
.h12{height:24.786667pt;}
.hb{height:30.900000pt;}
.hf{height:38.880000pt;}
.h16{height:49.426667pt;}
.h14{height:49.440000pt;}
.h18{height:49.460000pt;}
.hd{height:50.523750pt;}
.h11{height:52.284375pt;}
.ha{height:53.906667pt;}
.h2{height:64.500000pt;}
.h9{height:67.803750pt;}
.h8{height:67.837500pt;}
.h3{height:69.660000pt;}
.h7{height:71.955000pt;}
.h5{height:72.090000pt;}
.h6{height:73.490625pt;}
.h15{height:74.080000pt;}
.h13{height:74.100000pt;}
.h4{height:75.465000pt;}
.h19{height:78.097500pt;}
.he{height:85.920000pt;}
.h10{height:91.680000pt;}
.hc{height:248.826667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:129.630667pt;}
.w4{width:176.665333pt;}
.w2{width:186.257333pt;}
.w6{width:192.333333pt;}
.w8{width:248.213333pt;}
.w9{width:260.173333pt;}
.w5{width:268.986667pt;}
.w3{width:384.706667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1f{left:1.106667pt;}
.x33{left:2.386667pt;}
.x30{left:4.626667pt;}
.x2d{left:6.078667pt;}
.xf{left:7.200000pt;}
.x34{left:9.586667pt;}
.x1c{left:11.026667pt;}
.x28{left:12.786667pt;}
.x32{left:15.826667pt;}
.x11{left:16.950667pt;}
.x21{left:18.706667pt;}
.x24{left:20.640000pt;}
.x1e{left:23.360000pt;}
.x22{left:24.350667pt;}
.xe{left:26.065333pt;}
.x12{left:28.465333pt;}
.x35{left:29.906667pt;}
.x10{left:30.865333pt;}
.x23{left:32.640000pt;}
.x26{left:36.946667pt;}
.x27{left:38.750667pt;}
.x2a{left:40.030667pt;}
.x31{left:41.266667pt;}
.xb{left:42.385333pt;}
.x18{left:48.830667pt;}
.x2b{left:51.360000pt;}
.x36{left:55.026667pt;}
.x1d{left:58.750667pt;}
.xa{left:62.545333pt;}
.x29{left:66.586667pt;}
.x17{left:74.561333pt;}
.x1{left:75.520000pt;}
.x20{left:90.080000pt;}
.x2{left:91.872000pt;}
.x25{left:98.560000pt;}
.x13{left:99.552000pt;}
.x1a{left:109.440000pt;}
.x9{left:111.401333pt;}
.x7{left:117.952000pt;}
.x14{left:122.752000pt;}
.xd{left:134.906667pt;}
.x15{left:144.666667pt;}
.x2c{left:149.946667pt;}
.x4{left:161.146667pt;}
.x2e{left:207.560000pt;}
.x8{left:246.106667pt;}
.x19{left:254.626667pt;}
.x6{left:275.746667pt;}
.xc{left:297.666667pt;}
.x16{left:317.186667pt;}
.x5{left:406.306667pt;}
.x37{left:420.413333pt;}
.x2f{left:459.146667pt;}
.x1b{left:526.986667pt;}
.x3{left:692.133333pt;}
}




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