
    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_d39d3c4649869c793de4f9af.woff')format("woff");}.ff1{font-family:ff1;line-height:0.724609;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_41af0450cf3bb8f2253ab999.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_4a3c5436f5ceeb45d5f372df.woff')format("woff");}.ff3{font-family:ff3;line-height:0.893066;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_6483a943f7ee4f3ef60ef5e8.woff')format("woff");}.ff4{font-family:ff4;line-height:0.862095;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_8b74665c03e6e5aa4660e269.woff')format("woff");}.ff5{font-family:ff5;line-height:0.910645;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;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.030900px;}
.ls4{letter-spacing:0.031800px;}
.ls1{letter-spacing:13.711800px;}
.ls0{letter-spacing:23.766000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws7{word-spacing:-55.944000px;}
.ws6{word-spacing:-40.968000px;}
.ws4d{word-spacing:-38.661000px;}
.ws92{word-spacing:-38.658600px;}
.ws98{word-spacing:-38.656800px;}
.ws48{word-spacing:-38.646900px;}
.ws19{word-spacing:-38.643000px;}
.ws85{word-spacing:-38.434500px;}
.ws90{word-spacing:-38.430000px;}
.wsa6{word-spacing:-38.359800px;}
.ws16{word-spacing:-38.304000px;}
.ws55{word-spacing:-38.158200px;}
.wsa5{word-spacing:-38.156400px;}
.ws69{word-spacing:-38.154600px;}
.ws5d{word-spacing:-38.153700px;}
.ws18{word-spacing:-38.151900px;}
.wsf{word-spacing:-38.148000px;}
.ws17{word-spacing:-38.145600px;}
.ws72{word-spacing:-38.141100px;}
.ws0{word-spacing:-38.096400px;}
.ws9{word-spacing:-38.079900px;}
.ws1{word-spacing:-37.944000px;}
.wsb{word-spacing:-37.943700px;}
.wsa{word-spacing:-37.943100px;}
.ws24{word-spacing:-37.940100px;}
.ws27{word-spacing:-37.938600px;}
.ws3a{word-spacing:-37.935000px;}
.ws3{word-spacing:-37.931400px;}
.ws83{word-spacing:-37.930800px;}
.ws64{word-spacing:-37.711800px;}
.ws3c{word-spacing:-37.434300px;}
.wsaa{word-spacing:-37.428300px;}
.ws6c{word-spacing:-37.423800px;}
.ws12{word-spacing:-37.222200px;}
.ws94{word-spacing:-37.216800px;}
.ws11{word-spacing:-37.203300px;}
.ws46{word-spacing:-36.998400px;}
.ws44{word-spacing:-36.502800px;}
.ws9b{word-spacing:-36.491400px;}
.ws10{word-spacing:-36.487800px;}
.ws5f{word-spacing:-36.280800px;}
.ws8b{word-spacing:-35.992800px;}
.ws1d{word-spacing:-35.781000px;}
.ws53{word-spacing:-35.776800px;}
.ws4b{word-spacing:-35.773200px;}
.ws66{word-spacing:-35.534400px;}
.ws34{word-spacing:-35.269800px;}
.ws9a{word-spacing:-35.062200px;}
.ws61{word-spacing:-35.060400px;}
.ws59{word-spacing:-35.055600px;}
.ws89{word-spacing:-34.844400px;}
.ws37{word-spacing:-33.825600px;}
.ws71{word-spacing:-33.623100px;}
.ws20{word-spacing:-33.615000px;}
.ws9c{word-spacing:-33.613800px;}
.ws1f{word-spacing:-33.613200px;}
.ws5a{word-spacing:-33.601800px;}
.ws8{word-spacing:-33.547800px;}
.ws3d{word-spacing:-33.388200px;}
.ws97{word-spacing:-33.124200px;}
.ws6b{word-spacing:-33.116400px;}
.wse{word-spacing:-33.114600px;}
.ws75{word-spacing:-33.111000px;}
.ws2a{word-spacing:-32.896800px;}
.ws2d{word-spacing:-32.893200px;}
.ws4e{word-spacing:-32.882400px;}
.ws63{word-spacing:-32.391000px;}
.ws52{word-spacing:-32.178600px;}
.ws91{word-spacing:-32.175000px;}
.ws88{word-spacing:-32.171400px;}
.ws2e{word-spacing:-31.966200px;}
.ws56{word-spacing:-31.797900px;}
.ws80{word-spacing:-31.777800px;}
.ws82{word-spacing:-31.700700px;}
.ws54{word-spacing:-31.470000px;}
.wsa9{word-spacing:-31.464000px;}
.ws6d{word-spacing:-31.451100px;}
.ws7b{word-spacing:-31.235400px;}
.ws57{word-spacing:-31.071900px;}
.ws31{word-spacing:-31.065000px;}
.ws7d{word-spacing:-30.954600px;}
.ws7c{word-spacing:-30.744000px;}
.ws23{word-spacing:-30.742200px;}
.wsa2{word-spacing:-30.735600px;}
.ws4a{word-spacing:-30.240000px;}
.ws81{word-spacing:-30.239100px;}
.ws9e{word-spacing:-30.236400px;}
.ws95{word-spacing:-30.230100px;}
.ws8c{word-spacing:-30.218400px;}
.ws39{word-spacing:-30.022200px;}
.ws96{word-spacing:-30.018600px;}
.ws70{word-spacing:-29.806200px;}
.ws14{word-spacing:-29.736000px;}
.ws13{word-spacing:-29.304000px;}
.ws38{word-spacing:-29.300400px;}
.ws1a{word-spacing:-29.296800px;}
.ws21{word-spacing:-29.291400px;}
.ws40{word-spacing:-29.284500px;}
.ws4c{word-spacing:-28.796400px;}
.ws76{word-spacing:-28.580400px;}
.ws1e{word-spacing:-28.086000px;}
.ws3f{word-spacing:-28.062000px;}
.wsa3{word-spacing:-27.862200px;}
.ws6a{word-spacing:-27.856800px;}
.ws93{word-spacing:-27.142200px;}
.ws7e{word-spacing:-27.138600px;}
.ws36{word-spacing:-27.135000px;}
.ws74{word-spacing:-27.065700px;}
.ws35{word-spacing:-26.406000px;}
.ws22{word-spacing:-26.202600px;}
.ws84{word-spacing:-25.920000px;}
.ws5e{word-spacing:-25.693200px;}
.ws73{word-spacing:-25.488000px;}
.ws3e{word-spacing:-25.470000px;}
.ws5c{word-spacing:-25.204200px;}
.ws68{word-spacing:-24.973200px;}
.wsd{word-spacing:-24.045000px;}
.ws65{word-spacing:-23.760000px;}
.ws5{word-spacing:-23.687700px;}
.ws99{word-spacing:-23.544000px;}
.ws6f{word-spacing:-23.535000px;}
.ws4f{word-spacing:-23.525400px;}
.wsc{word-spacing:-23.525100px;}
.wsa1{word-spacing:-23.036400px;}
.ws41{word-spacing:-22.812000px;}
.ws86{word-spacing:-22.086000px;}
.ws8e{word-spacing:-21.594000px;}
.ws43{word-spacing:-21.384000px;}
.ws2b{word-spacing:-21.160800px;}
.ws6e{word-spacing:-21.159900px;}
.ws3b{word-spacing:-20.880000px;}
.ws9f{word-spacing:-20.655000px;}
.ws50{word-spacing:-20.162400px;}
.ws77{word-spacing:-19.715400px;}
.ws7f{word-spacing:-19.440600px;}
.ws25{word-spacing:-19.000800px;}
.ws26{word-spacing:-18.504000px;}
.ws47{word-spacing:-17.996400px;}
.ws32{word-spacing:-17.228400px;}
.ws15{word-spacing:-16.696800px;}
.ws30{word-spacing:-16.452600px;}
.ws8d{word-spacing:-16.348200px;}
.ws79{word-spacing:-15.613200px;}
.wsa4{word-spacing:-13.960800px;}
.wsa0{word-spacing:-12.950400px;}
.ws51{word-spacing:-12.746400px;}
.ws8a{word-spacing:-12.744000px;}
.ws1b{word-spacing:-12.240000px;}
.ws87{word-spacing:-10.582800px;}
.ws42{word-spacing:-9.856800px;}
.ws8f{word-spacing:-9.357000px;}
.ws49{word-spacing:-8.926200px;}
.ws9d{word-spacing:-7.704000px;}
.ws60{word-spacing:-6.258600px;}
.ws29{word-spacing:-6.243300px;}
.ws4{word-spacing:-5.177700px;}
.ws28{word-spacing:-4.824000px;}
.ws1c{word-spacing:-4.304400px;}
.ws58{word-spacing:-2.880000px;}
.ws2c{word-spacing:-2.863800px;}
.ws5b{word-spacing:-2.444400px;}
.ws67{word-spacing:-1.931400px;}
.ws33{word-spacing:0.000000px;}
.ws45{word-spacing:0.729000px;}
.ws2f{word-spacing:2.383500px;}
.ws7a{word-spacing:4.530000px;}
.ws78{word-spacing:5.482200px;}
.ws62{word-spacing:12.461400px;}
.wsa7{word-spacing:13.018500px;}
.wsa8{word-spacing:17.496000px;}
.ws2{word-spacing:537.269400px;}
._0{margin-left:-1.228800px;}
._3{width:1.089900px;}
._1b{width:16.053300px;}
._8{width:17.712000px;}
._4{width:18.775200px;}
._6{width:19.927800px;}
._7{width:21.172800px;}
._e{width:22.360200px;}
._10{width:23.651700px;}
._16{width:25.005900px;}
._12{width:26.768700px;}
._9{width:27.854100px;}
._f{width:29.520900px;}
._11{width:31.448100px;}
._5{width:33.602100px;}
._2a{width:34.679400px;}
._18{width:35.853600px;}
._20{width:36.923100px;}
._13{width:38.926500px;}
._a{width:40.710600px;}
._2b{width:43.191900px;}
._b{width:44.928000px;}
._1c{width:46.028100px;}
._1f{width:47.200800px;}
._22{width:48.265500px;}
._29{width:49.300200px;}
._15{width:50.770800px;}
._14{width:52.122900px;}
._c{width:53.176800px;}
._19{width:54.918600px;}
._1d{width:57.005100px;}
._21{width:58.383000px;}
._1a{width:60.544500px;}
._25{width:62.070000px;}
._24{width:64.440000px;}
._1e{width:67.667100px;}
._17{width:70.211700px;}
._1{width:71.928000px;}
._23{width:73.185000px;}
._27{width:92.726100px;}
._28{width:97.704000px;}
._d{width:104.482500px;}
._26{width:123.132600px;}
._2c{width:128.082900px;}
._2{width:432.072000px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(112,48,160);}
.fc1{color:rgb(0,0,255);}
.fc4{color:rgb(31,31,31);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:59.700000px;}
.fs2{font-size:66.300000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:84.300000px;}
.y0{bottom:0.000000px;}
.yb{bottom:4.486500px;}
.y8{bottom:34.725000px;}
.y9{bottom:42.571500px;}
.y53{bottom:100.155000px;}
.y30{bottom:100.336500px;}
.y69{bottom:120.315000px;}
.y2f{bottom:139.575000px;}
.y68{bottom:140.115000px;}
.y67{bottom:159.915000px;}
.y2e{bottom:160.275000px;}
.y52{bottom:163.155000px;}
.y84{bottom:173.775000px;}
.y66{bottom:180.796500px;}
.y2d{bottom:180.975000px;}
.y83{bottom:194.475000px;}
.y2c{bottom:201.675000px;}
.y51{bottom:205.096500px;}
.y2b{bottom:222.375000px;}
.y50{bottom:226.155000px;}
.y82{bottom:230.115000px;}
.y65{bottom:233.715000px;}
.y2a{bottom:243.075000px;}
.y64{bottom:254.415000px;}
.y29{bottom:263.775000px;}
.y81{bottom:265.936500px;}
.y63{bottom:275.115000px;}
.y80{bottom:286.636500px;}
.y62{bottom:295.815000px;}
.y28{bottom:299.415000px;}
.y4f{bottom:301.575000px;}
.y7f{bottom:307.336500px;}
.y61{bottom:316.515000px;}
.y27{bottom:320.115000px;}
.y4e{bottom:322.275000px;}
.y7e{bottom:328.036500px;}
.y60{bottom:337.215000px;}
.y26{bottom:340.815000px;}
.y4d{bottom:342.975000px;}
.y7d{bottom:348.736500px;}
.y5f{bottom:357.915000px;}
.y25{bottom:361.515000px;}
.y4c{bottom:363.675000px;}
.y7c{bottom:369.436500px;}
.y5e{bottom:378.615000px;}
.y24{bottom:382.215000px;}
.y4b{bottom:384.375000px;}
.y7b{bottom:390.136500px;}
.y5d{bottom:399.315000px;}
.y23{bottom:402.915000px;}
.y4a{bottom:405.075000px;}
.y7a{bottom:410.836500px;}
.y5c{bottom:420.015000px;}
.y22{bottom:423.615000px;}
.y49{bottom:425.775000px;}
.y79{bottom:431.536500px;}
.y5b{bottom:440.715000px;}
.y21{bottom:444.315000px;}
.y48{bottom:446.475000px;}
.y78{bottom:452.236500px;}
.y5a{bottom:461.415000px;}
.y20{bottom:465.015000px;}
.y47{bottom:482.115000px;}
.y1f{bottom:485.715000px;}
.y77{bottom:487.875000px;}
.y59{bottom:497.236500px;}
.y46{bottom:502.815000px;}
.y1e{bottom:506.415000px;}
.y76{bottom:508.575000px;}
.y58{bottom:517.936500px;}
.y45{bottom:523.515000px;}
.y1d{bottom:527.115000px;}
.y75{bottom:529.275000px;}
.y57{bottom:538.636500px;}
.y44{bottom:544.215000px;}
.y1c{bottom:547.815000px;}
.y74{bottom:549.975000px;}
.y56{bottom:559.336500px;}
.y43{bottom:564.915000px;}
.y1b{bottom:568.515000px;}
.y55{bottom:580.036500px;}
.y73{bottom:585.615000px;}
.y42{bottom:600.736500px;}
.y72{bottom:606.315000px;}
.y1a{bottom:609.915000px;}
.y41{bottom:621.436500px;}
.y71{bottom:627.015000px;}
.y40{bottom:642.136500px;}
.y70{bottom:647.715000px;}
.y19{bottom:651.315000px;}
.y3f{bottom:662.836500px;}
.y6f{bottom:668.415000px;}
.y3e{bottom:683.536500px;}
.y6e{bottom:689.115000px;}
.y18{bottom:692.715000px;}
.y3d{bottom:704.236500px;}
.y3c{bottom:724.936500px;}
.y17{bottom:734.115000px;}
.y3b{bottom:745.636500px;}
.y16{bottom:754.815000px;}
.y3a{bottom:766.336500px;}
.y15{bottom:775.515000px;}
.y6d{bottom:781.275000px;}
.y39{bottom:801.975000px;}
.y14{bottom:816.915000px;}
.y38{bottom:822.675000px;}
.y13{bottom:837.615000px;}
.y37{bottom:843.375000px;}
.y36{bottom:864.075000px;}
.y12{bottom:879.015000px;}
.y35{bottom:884.775000px;}
.y11{bottom:899.715000px;}
.y34{bottom:905.475000px;}
.y10{bottom:920.415000px;}
.y54{bottom:926.175000px;}
.y33{bottom:941.115000px;}
.y6c{bottom:946.875000px;}
.yf{bottom:961.815000px;}
.y6b{bottom:967.575000px;}
.ye{bottom:982.515000px;}
.y6a{bottom:988.275000px;}
.yd{bottom:1003.215000px;}
.y32{bottom:1023.915000px;}
.y31{bottom:1044.615000px;}
.yc{bottom:1065.315000px;}
.y7{bottom:1106.715000px;}
.y6{bottom:1127.415000px;}
.y5{bottom:1148.115000px;}
.y4{bottom:1168.815000px;}
.y3{bottom:1189.515000px;}
.y2{bottom:1210.215000px;}
.y1{bottom:1231.275000px;}
.ya{bottom:1231.650000px;}
.h7{height:20.175000px;}
.ha{height:40.856355px;}
.hb{height:41.481006px;}
.h6{height:45.373138px;}
.h4{height:48.761719px;}
.h3{height:48.796875px;}
.h8{height:50.027344px;}
.h9{height:50.747344px;}
.h5{height:58.275000px;}
.h2{height:60.467139px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w2{width:16.725000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:127.620000px;}
.x8{left:132.120000px;}
.x9{left:154.620000px;}
.xb{left:159.480000px;}
.xa{left:180.720000px;}
.x4{left:186.480000px;}
.x1{left:201.060000px;}
.x7{left:410.220000px;}
.x3{left:465.675000px;}
.x6{left:594.000000px;}
.x5{left:631.080000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.027467pt;}
.ls4{letter-spacing:0.028267pt;}
.ls1{letter-spacing:12.188267pt;}
.ls0{letter-spacing:21.125333pt;}
.ws7{word-spacing:-49.728000pt;}
.ws6{word-spacing:-36.416000pt;}
.ws4d{word-spacing:-34.365333pt;}
.ws92{word-spacing:-34.363200pt;}
.ws98{word-spacing:-34.361600pt;}
.ws48{word-spacing:-34.352800pt;}
.ws19{word-spacing:-34.349333pt;}
.ws85{word-spacing:-34.164000pt;}
.ws90{word-spacing:-34.160000pt;}
.wsa6{word-spacing:-34.097600pt;}
.ws16{word-spacing:-34.048000pt;}
.ws55{word-spacing:-33.918400pt;}
.wsa5{word-spacing:-33.916800pt;}
.ws69{word-spacing:-33.915200pt;}
.ws5d{word-spacing:-33.914400pt;}
.ws18{word-spacing:-33.912800pt;}
.wsf{word-spacing:-33.909333pt;}
.ws17{word-spacing:-33.907200pt;}
.ws72{word-spacing:-33.903200pt;}
.ws0{word-spacing:-33.863467pt;}
.ws9{word-spacing:-33.848800pt;}
.ws1{word-spacing:-33.728000pt;}
.wsb{word-spacing:-33.727733pt;}
.wsa{word-spacing:-33.727200pt;}
.ws24{word-spacing:-33.724533pt;}
.ws27{word-spacing:-33.723200pt;}
.ws3a{word-spacing:-33.720000pt;}
.ws3{word-spacing:-33.716800pt;}
.ws83{word-spacing:-33.716267pt;}
.ws64{word-spacing:-33.521600pt;}
.ws3c{word-spacing:-33.274933pt;}
.wsaa{word-spacing:-33.269600pt;}
.ws6c{word-spacing:-33.265600pt;}
.ws12{word-spacing:-33.086400pt;}
.ws94{word-spacing:-33.081600pt;}
.ws11{word-spacing:-33.069600pt;}
.ws46{word-spacing:-32.887467pt;}
.ws44{word-spacing:-32.446933pt;}
.ws9b{word-spacing:-32.436800pt;}
.ws10{word-spacing:-32.433600pt;}
.ws5f{word-spacing:-32.249600pt;}
.ws8b{word-spacing:-31.993600pt;}
.ws1d{word-spacing:-31.805333pt;}
.ws53{word-spacing:-31.801600pt;}
.ws4b{word-spacing:-31.798400pt;}
.ws66{word-spacing:-31.586133pt;}
.ws34{word-spacing:-31.350933pt;}
.ws9a{word-spacing:-31.166400pt;}
.ws61{word-spacing:-31.164800pt;}
.ws59{word-spacing:-31.160533pt;}
.ws89{word-spacing:-30.972800pt;}
.ws37{word-spacing:-30.067200pt;}
.ws71{word-spacing:-29.887200pt;}
.ws20{word-spacing:-29.880000pt;}
.ws9c{word-spacing:-29.878933pt;}
.ws1f{word-spacing:-29.878400pt;}
.ws5a{word-spacing:-29.868267pt;}
.ws8{word-spacing:-29.820267pt;}
.ws3d{word-spacing:-29.678400pt;}
.ws97{word-spacing:-29.443733pt;}
.ws6b{word-spacing:-29.436800pt;}
.wse{word-spacing:-29.435200pt;}
.ws75{word-spacing:-29.432000pt;}
.ws2a{word-spacing:-29.241600pt;}
.ws2d{word-spacing:-29.238400pt;}
.ws4e{word-spacing:-29.228800pt;}
.ws63{word-spacing:-28.792000pt;}
.ws52{word-spacing:-28.603200pt;}
.ws91{word-spacing:-28.600000pt;}
.ws88{word-spacing:-28.596800pt;}
.ws2e{word-spacing:-28.414400pt;}
.ws56{word-spacing:-28.264800pt;}
.ws80{word-spacing:-28.246933pt;}
.ws82{word-spacing:-28.178400pt;}
.ws54{word-spacing:-27.973333pt;}
.wsa9{word-spacing:-27.968000pt;}
.ws6d{word-spacing:-27.956533pt;}
.ws7b{word-spacing:-27.764800pt;}
.ws57{word-spacing:-27.619467pt;}
.ws31{word-spacing:-27.613333pt;}
.ws7d{word-spacing:-27.515200pt;}
.ws7c{word-spacing:-27.328000pt;}
.ws23{word-spacing:-27.326400pt;}
.wsa2{word-spacing:-27.320533pt;}
.ws4a{word-spacing:-26.880000pt;}
.ws81{word-spacing:-26.879200pt;}
.ws9e{word-spacing:-26.876800pt;}
.ws95{word-spacing:-26.871200pt;}
.ws8c{word-spacing:-26.860800pt;}
.ws39{word-spacing:-26.686400pt;}
.ws96{word-spacing:-26.683200pt;}
.ws70{word-spacing:-26.494400pt;}
.ws14{word-spacing:-26.432000pt;}
.ws13{word-spacing:-26.048000pt;}
.ws38{word-spacing:-26.044800pt;}
.ws1a{word-spacing:-26.041600pt;}
.ws21{word-spacing:-26.036800pt;}
.ws40{word-spacing:-26.030667pt;}
.ws4c{word-spacing:-25.596800pt;}
.ws76{word-spacing:-25.404800pt;}
.ws1e{word-spacing:-24.965333pt;}
.ws3f{word-spacing:-24.944000pt;}
.wsa3{word-spacing:-24.766400pt;}
.ws6a{word-spacing:-24.761600pt;}
.ws93{word-spacing:-24.126400pt;}
.ws7e{word-spacing:-24.123200pt;}
.ws36{word-spacing:-24.120000pt;}
.ws74{word-spacing:-24.058400pt;}
.ws35{word-spacing:-23.472000pt;}
.ws22{word-spacing:-23.291200pt;}
.ws84{word-spacing:-23.040000pt;}
.ws5e{word-spacing:-22.838400pt;}
.ws73{word-spacing:-22.656000pt;}
.ws3e{word-spacing:-22.640000pt;}
.ws5c{word-spacing:-22.403733pt;}
.ws68{word-spacing:-22.198400pt;}
.wsd{word-spacing:-21.373333pt;}
.ws65{word-spacing:-21.120000pt;}
.ws5{word-spacing:-21.055733pt;}
.ws99{word-spacing:-20.928000pt;}
.ws6f{word-spacing:-20.920000pt;}
.ws4f{word-spacing:-20.911467pt;}
.wsc{word-spacing:-20.911200pt;}
.wsa1{word-spacing:-20.476800pt;}
.ws41{word-spacing:-20.277333pt;}
.ws86{word-spacing:-19.632000pt;}
.ws8e{word-spacing:-19.194667pt;}
.ws43{word-spacing:-19.008000pt;}
.ws2b{word-spacing:-18.809600pt;}
.ws6e{word-spacing:-18.808800pt;}
.ws3b{word-spacing:-18.560000pt;}
.ws9f{word-spacing:-18.360000pt;}
.ws50{word-spacing:-17.922133pt;}
.ws77{word-spacing:-17.524800pt;}
.ws7f{word-spacing:-17.280533pt;}
.ws25{word-spacing:-16.889600pt;}
.ws26{word-spacing:-16.448000pt;}
.ws47{word-spacing:-15.996800pt;}
.ws32{word-spacing:-15.314133pt;}
.ws15{word-spacing:-14.841600pt;}
.ws30{word-spacing:-14.624533pt;}
.ws8d{word-spacing:-14.531733pt;}
.ws79{word-spacing:-13.878400pt;}
.wsa4{word-spacing:-12.409600pt;}
.wsa0{word-spacing:-11.511467pt;}
.ws51{word-spacing:-11.330133pt;}
.ws8a{word-spacing:-11.328000pt;}
.ws1b{word-spacing:-10.880000pt;}
.ws87{word-spacing:-9.406933pt;}
.ws42{word-spacing:-8.761600pt;}
.ws8f{word-spacing:-8.317333pt;}
.ws49{word-spacing:-7.934400pt;}
.ws9d{word-spacing:-6.848000pt;}
.ws60{word-spacing:-5.563200pt;}
.ws29{word-spacing:-5.549600pt;}
.ws4{word-spacing:-4.602400pt;}
.ws28{word-spacing:-4.288000pt;}
.ws1c{word-spacing:-3.826133pt;}
.ws58{word-spacing:-2.560000pt;}
.ws2c{word-spacing:-2.545600pt;}
.ws5b{word-spacing:-2.172800pt;}
.ws67{word-spacing:-1.716800pt;}
.ws33{word-spacing:0.000000pt;}
.ws45{word-spacing:0.648000pt;}
.ws2f{word-spacing:2.118667pt;}
.ws7a{word-spacing:4.026667pt;}
.ws78{word-spacing:4.873067pt;}
.ws62{word-spacing:11.076800pt;}
.wsa7{word-spacing:11.572000pt;}
.wsa8{word-spacing:15.552000pt;}
.ws2{word-spacing:477.572800pt;}
._0{margin-left:-1.092267pt;}
._3{width:0.968800pt;}
._1b{width:14.269600pt;}
._8{width:15.744000pt;}
._4{width:16.689067pt;}
._6{width:17.713600pt;}
._7{width:18.820267pt;}
._e{width:19.875733pt;}
._10{width:21.023733pt;}
._16{width:22.227467pt;}
._12{width:23.794400pt;}
._9{width:24.759200pt;}
._f{width:26.240800pt;}
._11{width:27.953867pt;}
._5{width:29.868533pt;}
._2a{width:30.826133pt;}
._18{width:31.869867pt;}
._20{width:32.820533pt;}
._13{width:34.601333pt;}
._a{width:36.187200pt;}
._2b{width:38.392800pt;}
._b{width:39.936000pt;}
._1c{width:40.913867pt;}
._1f{width:41.956267pt;}
._22{width:42.902667pt;}
._29{width:43.822400pt;}
._15{width:45.129600pt;}
._14{width:46.331467pt;}
._c{width:47.268267pt;}
._19{width:48.816533pt;}
._1d{width:50.671200pt;}
._21{width:51.896000pt;}
._1a{width:53.817333pt;}
._25{width:55.173333pt;}
._24{width:57.280000pt;}
._1e{width:60.148533pt;}
._17{width:62.410400pt;}
._1{width:63.936000pt;}
._23{width:65.053333pt;}
._27{width:82.423200pt;}
._28{width:86.848000pt;}
._d{width:92.873333pt;}
._26{width:109.451200pt;}
._2c{width:113.851467pt;}
._2{width:384.064000pt;}
.fs3{font-size:53.066667pt;}
.fs2{font-size:58.933333pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:74.933333pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:3.988000pt;}
.y8{bottom:30.866667pt;}
.y9{bottom:37.841333pt;}
.y53{bottom:89.026667pt;}
.y30{bottom:89.188000pt;}
.y69{bottom:106.946667pt;}
.y2f{bottom:124.066667pt;}
.y68{bottom:124.546667pt;}
.y67{bottom:142.146667pt;}
.y2e{bottom:142.466667pt;}
.y52{bottom:145.026667pt;}
.y84{bottom:154.466667pt;}
.y66{bottom:160.708000pt;}
.y2d{bottom:160.866667pt;}
.y83{bottom:172.866667pt;}
.y2c{bottom:179.266667pt;}
.y51{bottom:182.308000pt;}
.y2b{bottom:197.666667pt;}
.y50{bottom:201.026667pt;}
.y82{bottom:204.546667pt;}
.y65{bottom:207.746667pt;}
.y2a{bottom:216.066667pt;}
.y64{bottom:226.146667pt;}
.y29{bottom:234.466667pt;}
.y81{bottom:236.388000pt;}
.y63{bottom:244.546667pt;}
.y80{bottom:254.788000pt;}
.y62{bottom:262.946667pt;}
.y28{bottom:266.146667pt;}
.y4f{bottom:268.066667pt;}
.y7f{bottom:273.188000pt;}
.y61{bottom:281.346667pt;}
.y27{bottom:284.546667pt;}
.y4e{bottom:286.466667pt;}
.y7e{bottom:291.588000pt;}
.y60{bottom:299.746667pt;}
.y26{bottom:302.946667pt;}
.y4d{bottom:304.866667pt;}
.y7d{bottom:309.988000pt;}
.y5f{bottom:318.146667pt;}
.y25{bottom:321.346667pt;}
.y4c{bottom:323.266667pt;}
.y7c{bottom:328.388000pt;}
.y5e{bottom:336.546667pt;}
.y24{bottom:339.746667pt;}
.y4b{bottom:341.666667pt;}
.y7b{bottom:346.788000pt;}
.y5d{bottom:354.946667pt;}
.y23{bottom:358.146667pt;}
.y4a{bottom:360.066667pt;}
.y7a{bottom:365.188000pt;}
.y5c{bottom:373.346667pt;}
.y22{bottom:376.546667pt;}
.y49{bottom:378.466667pt;}
.y79{bottom:383.588000pt;}
.y5b{bottom:391.746667pt;}
.y21{bottom:394.946667pt;}
.y48{bottom:396.866667pt;}
.y78{bottom:401.988000pt;}
.y5a{bottom:410.146667pt;}
.y20{bottom:413.346667pt;}
.y47{bottom:428.546667pt;}
.y1f{bottom:431.746667pt;}
.y77{bottom:433.666667pt;}
.y59{bottom:441.988000pt;}
.y46{bottom:446.946667pt;}
.y1e{bottom:450.146667pt;}
.y76{bottom:452.066667pt;}
.y58{bottom:460.388000pt;}
.y45{bottom:465.346667pt;}
.y1d{bottom:468.546667pt;}
.y75{bottom:470.466667pt;}
.y57{bottom:478.788000pt;}
.y44{bottom:483.746667pt;}
.y1c{bottom:486.946667pt;}
.y74{bottom:488.866667pt;}
.y56{bottom:497.188000pt;}
.y43{bottom:502.146667pt;}
.y1b{bottom:505.346667pt;}
.y55{bottom:515.588000pt;}
.y73{bottom:520.546667pt;}
.y42{bottom:533.988000pt;}
.y72{bottom:538.946667pt;}
.y1a{bottom:542.146667pt;}
.y41{bottom:552.388000pt;}
.y71{bottom:557.346667pt;}
.y40{bottom:570.788000pt;}
.y70{bottom:575.746667pt;}
.y19{bottom:578.946667pt;}
.y3f{bottom:589.188000pt;}
.y6f{bottom:594.146667pt;}
.y3e{bottom:607.588000pt;}
.y6e{bottom:612.546667pt;}
.y18{bottom:615.746667pt;}
.y3d{bottom:625.988000pt;}
.y3c{bottom:644.388000pt;}
.y17{bottom:652.546667pt;}
.y3b{bottom:662.788000pt;}
.y16{bottom:670.946667pt;}
.y3a{bottom:681.188000pt;}
.y15{bottom:689.346667pt;}
.y6d{bottom:694.466667pt;}
.y39{bottom:712.866667pt;}
.y14{bottom:726.146667pt;}
.y38{bottom:731.266667pt;}
.y13{bottom:744.546667pt;}
.y37{bottom:749.666667pt;}
.y36{bottom:768.066667pt;}
.y12{bottom:781.346667pt;}
.y35{bottom:786.466667pt;}
.y11{bottom:799.746667pt;}
.y34{bottom:804.866667pt;}
.y10{bottom:818.146667pt;}
.y54{bottom:823.266667pt;}
.y33{bottom:836.546667pt;}
.y6c{bottom:841.666667pt;}
.yf{bottom:854.946667pt;}
.y6b{bottom:860.066667pt;}
.ye{bottom:873.346667pt;}
.y6a{bottom:878.466667pt;}
.yd{bottom:891.746667pt;}
.y32{bottom:910.146667pt;}
.y31{bottom:928.546667pt;}
.yc{bottom:946.946667pt;}
.y7{bottom:983.746667pt;}
.y6{bottom:1002.146667pt;}
.y5{bottom:1020.546667pt;}
.y4{bottom:1038.946667pt;}
.y3{bottom:1057.346667pt;}
.y2{bottom:1075.746667pt;}
.y1{bottom:1094.466667pt;}
.ya{bottom:1094.800000pt;}
.h7{height:17.933333pt;}
.ha{height:36.316760pt;}
.hb{height:36.872005pt;}
.h6{height:40.331678pt;}
.h4{height:43.343750pt;}
.h3{height:43.375000pt;}
.h8{height:44.468750pt;}
.h9{height:45.108750pt;}
.h5{height:51.800000pt;}
.h2{height:53.748568pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w2{width:14.866667pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:113.440000pt;}
.x8{left:117.440000pt;}
.x9{left:137.440000pt;}
.xb{left:141.760000pt;}
.xa{left:160.640000pt;}
.x4{left:165.760000pt;}
.x1{left:178.720000pt;}
.x7{left:364.640000pt;}
.x3{left:413.933333pt;}
.x6{left:528.000000pt;}
.x5{left:560.960000pt;}
}




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