
    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_f448fd84385a54a46efc4583.woff')format("woff");}.ff1{font-family:ff1;line-height:1.080566;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_cdb29e3c8a159c1be5ea266a.woff')format("woff");}.ff2{font-family:ff2;line-height:0.893555;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_7b3f2609f190aa9dd011d2a5.woff')format("woff");}.ff3{font-family:ff3;line-height:0.858398;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_12947569723d86103b6a39d4.woff')format("woff");}.ff4{font-family:ff4;line-height:0.910156;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_2167f193c659eceeeafe412e.woff')format("woff");}.ff5{font-family:ff5;line-height:0.910156;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;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.wsc{word-spacing:-55.944000px;}
.ws6c{word-spacing:-38.871000px;}
.ws54{word-spacing:-38.808600px;}
.ws1b{word-spacing:-38.787300px;}
.ws6{word-spacing:-38.657700px;}
.ws43{word-spacing:-38.656500px;}
.ws29{word-spacing:-38.655900px;}
.ws6f{word-spacing:-38.655000px;}
.ws65{word-spacing:-38.651400px;}
.ws5{word-spacing:-38.647800px;}
.ws24{word-spacing:-38.589300px;}
.ws68{word-spacing:-38.583000px;}
.ws77{word-spacing:-38.580300px;}
.ws74{word-spacing:-38.577600px;}
.ws34{word-spacing:-38.575800px;}
.ws71{word-spacing:-38.448000px;}
.ws6d{word-spacing:-38.445300px;}
.wsa{word-spacing:-38.376000px;}
.ws3{word-spacing:-38.374200px;}
.ws9{word-spacing:-38.369700px;}
.ws46{word-spacing:-38.367000px;}
.ws58{word-spacing:-38.362500px;}
.ws78{word-spacing:-38.341800px;}
.ws4e{word-spacing:-38.304000px;}
.ws5d{word-spacing:-38.302200px;}
.ws13{word-spacing:-38.301900px;}
.ws44{word-spacing:-38.300400px;}
.ws10{word-spacing:-38.294100px;}
.ws35{word-spacing:-38.290500px;}
.ws3a{word-spacing:-38.286000px;}
.ws2a{word-spacing:-38.164200px;}
.ws3b{word-spacing:-38.160000px;}
.ws49{word-spacing:-38.158200px;}
.ws55{word-spacing:-38.152500px;}
.wsb{word-spacing:-38.132100px;}
.ws62{word-spacing:-38.081700px;}
.ws0{word-spacing:-37.944000px;}
.ws4{word-spacing:-37.938600px;}
.ws2{word-spacing:-37.931400px;}
.ws7f{word-spacing:-37.734000px;}
.ws56{word-spacing:-37.642500px;}
.ws64{word-spacing:-37.424100px;}
.ws7b{word-spacing:-37.223100px;}
.ws6b{word-spacing:-36.714600px;}
.ws40{word-spacing:-36.711000px;}
.ws6a{word-spacing:-36.144000px;}
.ws16{word-spacing:-35.784000px;}
.ws22{word-spacing:-35.774100px;}
.ws26{word-spacing:-35.278200px;}
.ws60{word-spacing:-35.058000px;}
.ws4a{word-spacing:-34.488000px;}
.ws75{word-spacing:-34.479900px;}
.ws70{word-spacing:-33.975600px;}
.ws51{word-spacing:-33.974100px;}
.ws8{word-spacing:-33.547800px;}
.ws32{word-spacing:-32.400000px;}
.ws5a{word-spacing:-32.398200px;}
.ws3c{word-spacing:-32.184000px;}
.ws20{word-spacing:-31.824000px;}
.ws38{word-spacing:-31.680600px;}
.ws7a{word-spacing:-31.089600px;}
.ws59{word-spacing:-30.517200px;}
.ws17{word-spacing:-30.231000px;}
.ws33{word-spacing:-29.721600px;}
.wse{word-spacing:-29.660100px;}
.wsd{word-spacing:-29.520000px;}
.ws81{word-spacing:-29.304000px;}
.ws3e{word-spacing:-29.295000px;}
.ws3d{word-spacing:-28.058400px;}
.ws25{word-spacing:-27.863700px;}
.ws7c{word-spacing:-27.848700px;}
.ws72{word-spacing:-27.366000px;}
.ws57{word-spacing:-27.141300px;}
.ws37{word-spacing:-26.055900px;}
.ws6e{word-spacing:-25.917000px;}
.wsf{word-spacing:-25.838100px;}
.ws4c{word-spacing:-25.697700px;}
.ws36{word-spacing:-25.052400px;}
.ws27{word-spacing:-23.529600px;}
.ws63{word-spacing:-23.319000px;}
.ws79{word-spacing:-22.824000px;}
.ws19{word-spacing:-22.452300px;}
.ws31{word-spacing:-22.301100px;}
.ws5f{word-spacing:-22.104000px;}
.ws80{word-spacing:-19.944000px;}
.ws5b{word-spacing:-19.858500px;}
.ws21{word-spacing:-19.365300px;}
.ws12{word-spacing:-19.216800px;}
.ws39{word-spacing:-18.999600px;}
.ws76{word-spacing:-18.704700px;}
.ws11{word-spacing:-18.701100px;}
.ws7{word-spacing:-18.472500px;}
.ws23{word-spacing:-18.137700px;}
.ws4d{word-spacing:-17.987400px;}
.ws1f{word-spacing:-17.422200px;}
.ws1e{word-spacing:-17.412300px;}
.ws7e{word-spacing:-17.063100px;}
.ws53{word-spacing:-16.036200px;}
.ws45{word-spacing:-15.965100px;}
.ws5c{word-spacing:-15.835500px;}
.ws4b{word-spacing:-15.768000px;}
.ws1a{word-spacing:-15.118200px;}
.ws2c{word-spacing:-13.464000px;}
.ws2b{word-spacing:-13.378500px;}
.ws61{word-spacing:-12.744000px;}
.ws67{word-spacing:-12.234000px;}
.ws66{word-spacing:-9.636300px;}
.ws48{word-spacing:-9.493800px;}
.ws2d{word-spacing:-9.133200px;}
.ws28{word-spacing:-8.416800px;}
.ws1c{word-spacing:-7.130400px;}
.ws1d{word-spacing:-6.966000px;}
.ws14{word-spacing:-6.464700px;}
.ws69{word-spacing:-5.544000px;}
.ws52{word-spacing:-5.323500px;}
.ws3f{word-spacing:-5.177400px;}
.ws4f{word-spacing:-4.742100px;}
.ws18{word-spacing:-2.582100px;}
.ws30{word-spacing:-1.921800px;}
.ws47{word-spacing:-0.488700px;}
.ws41{word-spacing:-0.428400px;}
.ws5e{word-spacing:0.001800px;}
.ws50{word-spacing:2.309700px;}
.ws42{word-spacing:3.618000px;}
.ws73{word-spacing:7.062600px;}
.ws2f{word-spacing:8.856000px;}
.ws2e{word-spacing:9.644700px;}
.ws15{word-spacing:29.392200px;}
.ws7d{word-spacing:81.576000px;}
.ws1{word-spacing:455.092800px;}
._2{margin-left:-1.273200px;}
._3{width:1.063200px;}
._4{width:18.775800px;}
._1c{width:20.583000px;}
._a{width:21.682800px;}
._12{width:23.158200px;}
._23{width:24.186600px;}
._f{width:25.432800px;}
._5{width:27.360000px;}
._11{width:29.303700px;}
._6{width:31.247700px;}
._1a{width:32.252700px;}
._13{width:33.552000px;}
._c{width:34.956600px;}
._1{width:36.000000px;}
._7{width:37.855500px;}
._10{width:38.857800px;}
._e{width:39.942300px;}
._20{width:41.338800px;}
._d{width:42.544200px;}
._15{width:43.592100px;}
._22{width:44.776500px;}
._1f{width:47.496000px;}
._14{width:48.810000px;}
._8{width:50.816700px;}
._1b{width:52.265400px;}
._b{width:54.995100px;}
._19{width:56.226000px;}
._1e{width:57.368700px;}
._21{width:59.322000px;}
._1d{width:60.888000px;}
._24{width:64.433400px;}
._16{width:66.850800px;}
._17{width:73.008000px;}
._9{width:87.680400px;}
._18{width:91.944000px;}
._25{width:138.960000px;}
._0{width:612.144000px;}
.fc6{color:transparent;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(112,48,160);}
.fc5{color:rgb(31,31,31);}
.fc4{color:rgb(33,33,33);}
.fc3{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:66.300000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y7{bottom:4.471500px;}
.y6{bottom:72.825000px;}
.y5{bottom:77.655000px;}
.y2b{bottom:99.975000px;}
.y2a{bottom:120.675000px;}
.y49{bottom:121.036500px;}
.y41{bottom:129.136500px;}
.y6e{bottom:129.675000px;}
.y5d{bottom:132.736500px;}
.y29{bottom:141.375000px;}
.y48{bottom:141.736500px;}
.y40{bottom:149.836500px;}
.y6d{bottom:150.375000px;}
.y5c{bottom:153.436500px;}
.y47{bottom:162.436500px;}
.y3f{bottom:170.536500px;}
.y6c{bottom:171.075000px;}
.y5b{bottom:174.136500px;}
.y28{bottom:183.136500px;}
.y3d{bottom:203.475000px;}
.y46{bottom:204.196500px;}
.y3e{bottom:212.115000px;}
.y6b{bottom:212.836500px;}
.y5a{bottom:215.896500px;}
.y3c{bottom:224.175000px;}
.y27{bottom:224.896500px;}
.y6a{bottom:233.536500px;}
.y59{bottom:236.596500px;}
.y3b{bottom:244.875000px;}
.y64{bottom:245.236500px;}
.y26{bottom:245.596500px;}
.y69{bottom:254.236500px;}
.y58{bottom:257.295000px;}
.y3a{bottom:265.575000px;}
.y63{bottom:265.936500px;}
.y25{bottom:266.295000px;}
.y71{bottom:274.036500px;}
.y85{bottom:274.936500px;}
.y39{bottom:286.275000px;}
.y24{bottom:286.996500px;}
.y45{bottom:287.175000px;}
.y70{bottom:294.736500px;}
.y68{bottom:295.996500px;}
.y57{bottom:298.875000px;}
.y38{bottom:306.975000px;}
.y62{bottom:307.515000px;}
.y23{bottom:307.696500px;}
.y67{bottom:316.696500px;}
.y22{bottom:328.396500px;}
.y6f{bottom:336.496500px;}
.y66{bottom:337.396500px;}
.y56{bottom:340.636500px;}
.y36{bottom:343.696500px;}
.y37{bottom:348.736500px;}
.y21{bottom:349.096500px;}
.y61{bottom:354.136500px;}
.y84{bottom:358.275000px;}
.y55{bottom:361.336500px;}
.y35{bottom:364.396500px;}
.y20{bottom:369.795000px;}
.y60{bottom:374.836500px;}
.y65{bottom:378.975000px;}
.y54{bottom:382.036500px;}
.y34{bottom:385.096500px;}
.y1f{bottom:390.496500px;}
.y5f{bottom:395.536500px;}
.y53{bottom:402.736500px;}
.y33{bottom:405.795000px;}
.y1e{bottom:411.196500px;}
.y83{bottom:420.736500px;}
.y52{bottom:423.436500px;}
.y32{bottom:426.496500px;}
.y5e{bottom:437.115000px;}
.y82{bottom:441.436500px;}
.y51{bottom:444.136500px;}
.y31{bottom:447.196500px;}
.y4f{bottom:449.536500px;}
.y1d{bottom:452.775000px;}
.y30{bottom:467.896500px;}
.y4e{bottom:470.236500px;}
.y1c{bottom:473.475000px;}
.y81{bottom:483.196500px;}
.y50{bottom:485.715000px;}
.y2f{bottom:488.596500px;}
.y4d{bottom:490.936500px;}
.y1b{bottom:494.175000px;}
.y80{bottom:503.896500px;}
.y2e{bottom:509.296500px;}
.y4c{bottom:511.636500px;}
.y1a{bottom:514.875000px;}
.y7f{bottom:524.596500px;}
.y4b{bottom:532.336500px;}
.y19{bottom:535.575000px;}
.y2d{bottom:550.875000px;}
.y18{bottom:556.275000px;}
.y7e{bottom:566.175000px;}
.y4a{bottom:573.915000px;}
.y17{bottom:576.975000px;}
.y16{bottom:597.675000px;}
.y7d{bottom:607.936500px;}
.y7c{bottom:628.636500px;}
.y15{bottom:639.436500px;}
.y7b{bottom:649.336500px;}
.y14{bottom:660.136500px;}
.y7a{bottom:691.096500px;}
.y13{bottom:701.896500px;}
.y12{bottom:722.596500px;}
.y79{bottom:732.675000px;}
.y11{bottom:743.295000px;}
.y78{bottom:753.375000px;}
.y77{bottom:774.075000px;}
.y10{bottom:784.875000px;}
.y76{bottom:815.836500px;}
.yf{bottom:826.636500px;}
.y75{bottom:836.536500px;}
.ye{bottom:847.336500px;}
.y74{bottom:857.236500px;}
.yd{bottom:889.095000px;}
.y73{bottom:898.995000px;}
.y72{bottom:919.515000px;}
.yc{bottom:930.675000px;}
.yb{bottom:972.436500px;}
.y44{bottom:972.795000px;}
.y43{bottom:993.495000px;}
.y42{bottom:1014.195000px;}
.ya{bottom:1034.895000px;}
.y9{bottom:1055.595000px;}
.y2c{bottom:1076.475000px;}
.y8{bottom:1097.175000px;}
.y4{bottom:1141.455000px;}
.y3{bottom:1162.155000px;}
.y2{bottom:1182.855000px;}
.y1{bottom:1203.375000px;}
.h5{height:20.175000px;}
.h4{height:45.095654px;}
.h3{height:48.796875px;}
.h6{height:49.992188px;}
.h2{height:62.261719px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w2{width:25.050000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:127.620000px;}
.x4{left:169.020000px;}
.xd{left:172.620000px;}
.xc{left:180.720000px;}
.x9{left:216.000000px;}
.x5{left:341.100000px;}
.xb{left:371.880000px;}
.x3{left:465.825000px;}
.xa{left:579.060000px;}
.x8{left:686.338500px;}
.x6{left:714.780000px;}
.x7{left:725.760000px;}
.x2{left:731.160000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.wsc{word-spacing:-49.728000pt;}
.ws6c{word-spacing:-34.552000pt;}
.ws54{word-spacing:-34.496533pt;}
.ws1b{word-spacing:-34.477600pt;}
.ws6{word-spacing:-34.362400pt;}
.ws43{word-spacing:-34.361333pt;}
.ws29{word-spacing:-34.360800pt;}
.ws6f{word-spacing:-34.360000pt;}
.ws65{word-spacing:-34.356800pt;}
.ws5{word-spacing:-34.353600pt;}
.ws24{word-spacing:-34.301600pt;}
.ws68{word-spacing:-34.296000pt;}
.ws77{word-spacing:-34.293600pt;}
.ws74{word-spacing:-34.291200pt;}
.ws34{word-spacing:-34.289600pt;}
.ws71{word-spacing:-34.176000pt;}
.ws6d{word-spacing:-34.173600pt;}
.wsa{word-spacing:-34.112000pt;}
.ws3{word-spacing:-34.110400pt;}
.ws9{word-spacing:-34.106400pt;}
.ws46{word-spacing:-34.104000pt;}
.ws58{word-spacing:-34.100000pt;}
.ws78{word-spacing:-34.081600pt;}
.ws4e{word-spacing:-34.048000pt;}
.ws5d{word-spacing:-34.046400pt;}
.ws13{word-spacing:-34.046133pt;}
.ws44{word-spacing:-34.044800pt;}
.ws10{word-spacing:-34.039200pt;}
.ws35{word-spacing:-34.036000pt;}
.ws3a{word-spacing:-34.032000pt;}
.ws2a{word-spacing:-33.923733pt;}
.ws3b{word-spacing:-33.920000pt;}
.ws49{word-spacing:-33.918400pt;}
.ws55{word-spacing:-33.913333pt;}
.wsb{word-spacing:-33.895200pt;}
.ws62{word-spacing:-33.850400pt;}
.ws0{word-spacing:-33.728000pt;}
.ws4{word-spacing:-33.723200pt;}
.ws2{word-spacing:-33.716800pt;}
.ws7f{word-spacing:-33.541333pt;}
.ws56{word-spacing:-33.460000pt;}
.ws64{word-spacing:-33.265867pt;}
.ws7b{word-spacing:-33.087200pt;}
.ws6b{word-spacing:-32.635200pt;}
.ws40{word-spacing:-32.632000pt;}
.ws6a{word-spacing:-32.128000pt;}
.ws16{word-spacing:-31.808000pt;}
.ws22{word-spacing:-31.799200pt;}
.ws26{word-spacing:-31.358400pt;}
.ws60{word-spacing:-31.162667pt;}
.ws4a{word-spacing:-30.656000pt;}
.ws75{word-spacing:-30.648800pt;}
.ws70{word-spacing:-30.200533pt;}
.ws51{word-spacing:-30.199200pt;}
.ws8{word-spacing:-29.820267pt;}
.ws32{word-spacing:-28.800000pt;}
.ws5a{word-spacing:-28.798400pt;}
.ws3c{word-spacing:-28.608000pt;}
.ws20{word-spacing:-28.288000pt;}
.ws38{word-spacing:-28.160533pt;}
.ws7a{word-spacing:-27.635200pt;}
.ws59{word-spacing:-27.126400pt;}
.ws17{word-spacing:-26.872000pt;}
.ws33{word-spacing:-26.419200pt;}
.wse{word-spacing:-26.364533pt;}
.wsd{word-spacing:-26.240000pt;}
.ws81{word-spacing:-26.048000pt;}
.ws3e{word-spacing:-26.040000pt;}
.ws3d{word-spacing:-24.940800pt;}
.ws25{word-spacing:-24.767733pt;}
.ws7c{word-spacing:-24.754400pt;}
.ws72{word-spacing:-24.325333pt;}
.ws57{word-spacing:-24.125600pt;}
.ws37{word-spacing:-23.160800pt;}
.ws6e{word-spacing:-23.037333pt;}
.wsf{word-spacing:-22.967200pt;}
.ws4c{word-spacing:-22.842400pt;}
.ws36{word-spacing:-22.268800pt;}
.ws27{word-spacing:-20.915200pt;}
.ws63{word-spacing:-20.728000pt;}
.ws79{word-spacing:-20.288000pt;}
.ws19{word-spacing:-19.957600pt;}
.ws31{word-spacing:-19.823200pt;}
.ws5f{word-spacing:-19.648000pt;}
.ws80{word-spacing:-17.728000pt;}
.ws5b{word-spacing:-17.652000pt;}
.ws21{word-spacing:-17.213600pt;}
.ws12{word-spacing:-17.081600pt;}
.ws39{word-spacing:-16.888533pt;}
.ws76{word-spacing:-16.626400pt;}
.ws11{word-spacing:-16.623200pt;}
.ws7{word-spacing:-16.420000pt;}
.ws23{word-spacing:-16.122400pt;}
.ws4d{word-spacing:-15.988800pt;}
.ws1f{word-spacing:-15.486400pt;}
.ws1e{word-spacing:-15.477600pt;}
.ws7e{word-spacing:-15.167200pt;}
.ws53{word-spacing:-14.254400pt;}
.ws45{word-spacing:-14.191200pt;}
.ws5c{word-spacing:-14.076000pt;}
.ws4b{word-spacing:-14.016000pt;}
.ws1a{word-spacing:-13.438400pt;}
.ws2c{word-spacing:-11.968000pt;}
.ws2b{word-spacing:-11.892000pt;}
.ws61{word-spacing:-11.328000pt;}
.ws67{word-spacing:-10.874667pt;}
.ws66{word-spacing:-8.565600pt;}
.ws48{word-spacing:-8.438933pt;}
.ws2d{word-spacing:-8.118400pt;}
.ws28{word-spacing:-7.481600pt;}
.ws1c{word-spacing:-6.338133pt;}
.ws1d{word-spacing:-6.192000pt;}
.ws14{word-spacing:-5.746400pt;}
.ws69{word-spacing:-4.928000pt;}
.ws52{word-spacing:-4.732000pt;}
.ws3f{word-spacing:-4.602133pt;}
.ws4f{word-spacing:-4.215200pt;}
.ws18{word-spacing:-2.295200pt;}
.ws30{word-spacing:-1.708267pt;}
.ws47{word-spacing:-0.434400pt;}
.ws41{word-spacing:-0.380800pt;}
.ws5e{word-spacing:0.001600pt;}
.ws50{word-spacing:2.053067pt;}
.ws42{word-spacing:3.216000pt;}
.ws73{word-spacing:6.277867pt;}
.ws2f{word-spacing:7.872000pt;}
.ws2e{word-spacing:8.573067pt;}
.ws15{word-spacing:26.126400pt;}
.ws7d{word-spacing:72.512000pt;}
.ws1{word-spacing:404.526933pt;}
._2{margin-left:-1.131733pt;}
._3{width:0.945067pt;}
._4{width:16.689600pt;}
._1c{width:18.296000pt;}
._a{width:19.273600pt;}
._12{width:20.585067pt;}
._23{width:21.499200pt;}
._f{width:22.606933pt;}
._5{width:24.320000pt;}
._11{width:26.047733pt;}
._6{width:27.775733pt;}
._1a{width:28.669067pt;}
._13{width:29.824000pt;}
._c{width:31.072533pt;}
._1{width:32.000000pt;}
._7{width:33.649333pt;}
._10{width:34.540267pt;}
._e{width:35.504267pt;}
._20{width:36.745600pt;}
._d{width:37.817067pt;}
._15{width:38.748533pt;}
._22{width:39.801333pt;}
._1f{width:42.218667pt;}
._14{width:43.386667pt;}
._8{width:45.170400pt;}
._1b{width:46.458133pt;}
._b{width:48.884533pt;}
._19{width:49.978667pt;}
._1e{width:50.994400pt;}
._21{width:52.730667pt;}
._1d{width:54.122667pt;}
._24{width:57.274133pt;}
._16{width:59.422933pt;}
._17{width:64.896000pt;}
._9{width:77.938133pt;}
._18{width:81.728000pt;}
._25{width:123.520000pt;}
._0{width:544.128000pt;}
.fs1{font-size:58.933333pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:3.974667pt;}
.y6{bottom:64.733333pt;}
.y5{bottom:69.026667pt;}
.y2b{bottom:88.866667pt;}
.y2a{bottom:107.266667pt;}
.y49{bottom:107.588000pt;}
.y41{bottom:114.788000pt;}
.y6e{bottom:115.266667pt;}
.y5d{bottom:117.988000pt;}
.y29{bottom:125.666667pt;}
.y48{bottom:125.988000pt;}
.y40{bottom:133.188000pt;}
.y6d{bottom:133.666667pt;}
.y5c{bottom:136.388000pt;}
.y47{bottom:144.388000pt;}
.y3f{bottom:151.588000pt;}
.y6c{bottom:152.066667pt;}
.y5b{bottom:154.788000pt;}
.y28{bottom:162.788000pt;}
.y3d{bottom:180.866667pt;}
.y46{bottom:181.508000pt;}
.y3e{bottom:188.546667pt;}
.y6b{bottom:189.188000pt;}
.y5a{bottom:191.908000pt;}
.y3c{bottom:199.266667pt;}
.y27{bottom:199.908000pt;}
.y6a{bottom:207.588000pt;}
.y59{bottom:210.308000pt;}
.y3b{bottom:217.666667pt;}
.y64{bottom:217.988000pt;}
.y26{bottom:218.308000pt;}
.y69{bottom:225.988000pt;}
.y58{bottom:228.706667pt;}
.y3a{bottom:236.066667pt;}
.y63{bottom:236.388000pt;}
.y25{bottom:236.706667pt;}
.y71{bottom:243.588000pt;}
.y85{bottom:244.388000pt;}
.y39{bottom:254.466667pt;}
.y24{bottom:255.108000pt;}
.y45{bottom:255.266667pt;}
.y70{bottom:261.988000pt;}
.y68{bottom:263.108000pt;}
.y57{bottom:265.666667pt;}
.y38{bottom:272.866667pt;}
.y62{bottom:273.346667pt;}
.y23{bottom:273.508000pt;}
.y67{bottom:281.508000pt;}
.y22{bottom:291.908000pt;}
.y6f{bottom:299.108000pt;}
.y66{bottom:299.908000pt;}
.y56{bottom:302.788000pt;}
.y36{bottom:305.508000pt;}
.y37{bottom:309.988000pt;}
.y21{bottom:310.308000pt;}
.y61{bottom:314.788000pt;}
.y84{bottom:318.466667pt;}
.y55{bottom:321.188000pt;}
.y35{bottom:323.908000pt;}
.y20{bottom:328.706667pt;}
.y60{bottom:333.188000pt;}
.y65{bottom:336.866667pt;}
.y54{bottom:339.588000pt;}
.y34{bottom:342.308000pt;}
.y1f{bottom:347.108000pt;}
.y5f{bottom:351.588000pt;}
.y53{bottom:357.988000pt;}
.y33{bottom:360.706667pt;}
.y1e{bottom:365.508000pt;}
.y83{bottom:373.988000pt;}
.y52{bottom:376.388000pt;}
.y32{bottom:379.108000pt;}
.y5e{bottom:388.546667pt;}
.y82{bottom:392.388000pt;}
.y51{bottom:394.788000pt;}
.y31{bottom:397.508000pt;}
.y4f{bottom:399.588000pt;}
.y1d{bottom:402.466667pt;}
.y30{bottom:415.908000pt;}
.y4e{bottom:417.988000pt;}
.y1c{bottom:420.866667pt;}
.y81{bottom:429.508000pt;}
.y50{bottom:431.746667pt;}
.y2f{bottom:434.308000pt;}
.y4d{bottom:436.388000pt;}
.y1b{bottom:439.266667pt;}
.y80{bottom:447.908000pt;}
.y2e{bottom:452.708000pt;}
.y4c{bottom:454.788000pt;}
.y1a{bottom:457.666667pt;}
.y7f{bottom:466.308000pt;}
.y4b{bottom:473.188000pt;}
.y19{bottom:476.066667pt;}
.y2d{bottom:489.666667pt;}
.y18{bottom:494.466667pt;}
.y7e{bottom:503.266667pt;}
.y4a{bottom:510.146667pt;}
.y17{bottom:512.866667pt;}
.y16{bottom:531.266667pt;}
.y7d{bottom:540.388000pt;}
.y7c{bottom:558.788000pt;}
.y15{bottom:568.388000pt;}
.y7b{bottom:577.188000pt;}
.y14{bottom:586.788000pt;}
.y7a{bottom:614.308000pt;}
.y13{bottom:623.908000pt;}
.y12{bottom:642.308000pt;}
.y79{bottom:651.266667pt;}
.y11{bottom:660.706667pt;}
.y78{bottom:669.666667pt;}
.y77{bottom:688.066667pt;}
.y10{bottom:697.666667pt;}
.y76{bottom:725.188000pt;}
.yf{bottom:734.788000pt;}
.y75{bottom:743.588000pt;}
.ye{bottom:753.188000pt;}
.y74{bottom:761.988000pt;}
.yd{bottom:790.306667pt;}
.y73{bottom:799.106667pt;}
.y72{bottom:817.346667pt;}
.yc{bottom:827.266667pt;}
.yb{bottom:864.388000pt;}
.y44{bottom:864.706667pt;}
.y43{bottom:883.106667pt;}
.y42{bottom:901.506667pt;}
.ya{bottom:919.906667pt;}
.y9{bottom:938.306667pt;}
.y2c{bottom:956.866667pt;}
.y8{bottom:975.266667pt;}
.y4{bottom:1014.626667pt;}
.y3{bottom:1033.026667pt;}
.y2{bottom:1051.426667pt;}
.y1{bottom:1069.666667pt;}
.h5{height:17.933333pt;}
.h4{height:40.085026pt;}
.h3{height:43.375000pt;}
.h6{height:44.437500pt;}
.h2{height:55.343750pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w2{width:22.266667pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:113.440000pt;}
.x4{left:150.240000pt;}
.xd{left:153.440000pt;}
.xc{left:160.640000pt;}
.x9{left:192.000000pt;}
.x5{left:303.200000pt;}
.xb{left:330.560000pt;}
.x3{left:414.066667pt;}
.xa{left:514.720000pt;}
.x8{left:610.078667pt;}
.x6{left:635.360000pt;}
.x7{left:645.120000pt;}
.x2{left:649.920000pt;}
}




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