
    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_6b2b4f8c44f4e14d0ac099e6.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_198f5e6d6aef2c265c346533.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_dbd703684f6e18c45bd3e65f.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_0e5b116b6fc72527aa6a9cb6.woff')format("woff");}.ff4{font-family:ff4;line-height:0.691406;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_460f4495f4462fc1c42b722f.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;}
.ls0{letter-spacing:0.000000px;}
.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;}
.ws4e{word-spacing:-38.880000px;}
.wsd{word-spacing:-38.668200px;}
.ws1f{word-spacing:-38.656800px;}
.ws2a{word-spacing:-38.655900px;}
.ws17{word-spacing:-38.653200px;}
.ws3d{word-spacing:-38.652000px;}
.ws1b{word-spacing:-38.647800px;}
.ws78{word-spacing:-38.645100px;}
.ws42{word-spacing:-38.643000px;}
.ws12{word-spacing:-38.638800px;}
.ws5d{word-spacing:-38.446800px;}
.ws6e{word-spacing:-38.444400px;}
.ws52{word-spacing:-38.444100px;}
.ws39{word-spacing:-38.443200px;}
.ws57{word-spacing:-38.440800px;}
.wsa{word-spacing:-38.434800px;}
.wsc{word-spacing:-38.293200px;}
.ws51{word-spacing:-38.160000px;}
.ws46{word-spacing:-38.155200px;}
.ws4a{word-spacing:-38.151000px;}
.ws61{word-spacing:-38.149200px;}
.ws0{word-spacing:-38.096400px;}
.ws6b{word-spacing:-38.075400px;}
.ws9{word-spacing:-38.073600px;}
.ws41{word-spacing:-37.944600px;}
.ws1{word-spacing:-37.944000px;}
.ws6d{word-spacing:-37.941300px;}
.wsb{word-spacing:-37.939500px;}
.ws6f{word-spacing:-37.937400px;}
.ws75{word-spacing:-37.935900px;}
.ws35{word-spacing:-37.934100px;}
.ws29{word-spacing:-37.933200px;}
.ws3{word-spacing:-37.931400px;}
.ws2f{word-spacing:-37.927800px;}
.ws56{word-spacing:-37.207800px;}
.ws60{word-spacing:-36.496800px;}
.ws47{word-spacing:-36.491400px;}
.wsf{word-spacing:-36.000000px;}
.ws69{word-spacing:-35.551800px;}
.ws30{word-spacing:-35.280000px;}
.ws10{word-spacing:-35.056800px;}
.ws31{word-spacing:-34.128000px;}
.ws4f{word-spacing:-33.614100px;}
.ws8{word-spacing:-33.547800px;}
.ws68{word-spacing:-33.408000px;}
.ws5c{word-spacing:-32.165100px;}
.ws20{word-spacing:-31.447800px;}
.ws54{word-spacing:-31.394400px;}
.ws59{word-spacing:-30.501900px;}
.ws76{word-spacing:-30.216600px;}
.ws19{word-spacing:-29.802600px;}
.ws77{word-spacing:-29.718000px;}
.ws27{word-spacing:-28.791900px;}
.ws44{word-spacing:-28.782000px;}
.ws24{word-spacing:-27.354000px;}
.ws49{word-spacing:-27.140400px;}
.ws3f{word-spacing:-27.135000px;}
.ws18{word-spacing:-27.127800px;}
.ws28{word-spacing:-26.640000px;}
.ws2b{word-spacing:-26.413200px;}
.ws74{word-spacing:-25.920000px;}
.ws3e{word-spacing:-25.701300px;}
.ws73{word-spacing:-25.683000px;}
.ws55{word-spacing:-25.197000px;}
.ws13{word-spacing:-25.181100px;}
.ws72{word-spacing:-25.110900px;}
.ws16{word-spacing:-24.981000px;}
.ws1d{word-spacing:-24.760800px;}
.ws66{word-spacing:-24.255000px;}
.ws4d{word-spacing:-24.249600px;}
.ws5{word-spacing:-23.687700px;}
.ws43{word-spacing:-23.539200px;}
.ws6a{word-spacing:-23.535000px;}
.ws26{word-spacing:-23.326200px;}
.ws53{word-spacing:-21.367800px;}
.ws1c{word-spacing:-20.653200px;}
.ws3c{word-spacing:-20.149800px;}
.ws1e{word-spacing:-19.713600px;}
.ws2e{word-spacing:-19.440000px;}
.ws67{word-spacing:-19.429200px;}
.ws37{word-spacing:-19.202400px;}
.ws58{word-spacing:-18.493200px;}
.ws48{word-spacing:-17.750400px;}
.ws2c{word-spacing:-17.559000px;}
.ws5a{word-spacing:-16.337700px;}
.ws50{word-spacing:-16.122600px;}
.ws23{word-spacing:-15.626400px;}
.ws21{word-spacing:-15.613200px;}
.ws64{word-spacing:-15.400800px;}
.ws7a{word-spacing:-15.315300px;}
.ws45{word-spacing:-14.668200px;}
.ws79{word-spacing:-14.616000px;}
.ws40{word-spacing:-14.166000px;}
.ws3b{word-spacing:-13.953600px;}
.ws25{word-spacing:-13.456800px;}
.ws22{word-spacing:-13.444500px;}
.ws36{word-spacing:-12.954600px;}
.ws5b{word-spacing:-10.783800px;}
.ws63{word-spacing:-10.584000px;}
.ws62{word-spacing:-10.575000px;}
.ws33{word-spacing:-10.573200px;}
.ws32{word-spacing:-10.571400px;}
.ws38{word-spacing:-9.646800px;}
.ws34{word-spacing:-9.349200px;}
.ws14{word-spacing:-9.135600px;}
.wse{word-spacing:-6.986400px;}
.ws4c{word-spacing:-6.480000px;}
.ws4b{word-spacing:-6.476400px;}
.ws4{word-spacing:-5.177700px;}
.ws2d{word-spacing:-5.036400px;}
.ws7b{word-spacing:-4.816800px;}
.ws7c{word-spacing:-4.517100px;}
.ws3a{word-spacing:-2.643600px;}
.ws7d{word-spacing:0.000000px;}
.ws11{word-spacing:0.216000px;}
.ws65{word-spacing:0.952200px;}
.ws5e{word-spacing:4.029600px;}
.ws5f{word-spacing:5.050800px;}
.ws15{word-spacing:8.143500px;}
.ws1a{word-spacing:8.865000px;}
.ws70{word-spacing:31.401300px;}
.ws71{word-spacing:31.899600px;}
.ws6c{word-spacing:102.456000px;}
.ws2{word-spacing:537.269400px;}
._0{margin-left:-1.228800px;}
._3{width:1.089900px;}
._4{width:18.775200px;}
._1f{width:20.147400px;}
._7{width:21.151800px;}
._18{width:22.176000px;}
._19{width:23.308200px;}
._20{width:24.823800px;}
._12{width:25.831800px;}
._e{width:27.642600px;}
._1d{width:28.931100px;}
._d{width:30.616800px;}
._a{width:31.848300px;}
._10{width:33.472800px;}
._1c{width:35.190600px;}
._f{width:36.493200px;}
._11{width:38.140500px;}
._1e{width:40.059300px;}
._8{width:41.296800px;}
._22{width:42.391200px;}
._13{width:43.558500px;}
._14{width:45.049800px;}
._1a{width:46.402200px;}
._b{width:48.005700px;}
._5{width:49.970400px;}
._6{width:50.970900px;}
._17{width:52.743300px;}
._1b{width:54.699600px;}
._15{width:55.916700px;}
._9{width:57.723000px;}
._21{width:60.978900px;}
._c{width:65.487600px;}
._1{width:71.928000px;}
._16{width:158.400000px;}
._2{width:432.072000px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(112,48,160);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.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;}
.y56{bottom:123.015000px;}
.y30{bottom:140.115000px;}
.y55{bottom:143.715000px;}
.y78{bottom:164.415000px;}
.y2f{bottom:175.936500px;}
.y54{bottom:179.536500px;}
.y77{bottom:185.115000px;}
.y2e{bottom:196.636500px;}
.y53{bottom:200.236500px;}
.y76{bottom:205.815000px;}
.y2d{bottom:217.336500px;}
.y52{bottom:220.936500px;}
.y75{bottom:226.515000px;}
.y2c{bottom:238.036500px;}
.y51{bottom:241.636500px;}
.y74{bottom:247.215000px;}
.y73{bottom:267.915000px;}
.y2b{bottom:273.675000px;}
.y50{bottom:277.275000px;}
.y72{bottom:288.615000px;}
.y2a{bottom:294.375000px;}
.y4f{bottom:297.975000px;}
.y71{bottom:309.315000px;}
.y29{bottom:315.075000px;}
.y4e{bottom:318.675000px;}
.y70{bottom:330.015000px;}
.y28{bottom:335.775000px;}
.y4d{bottom:339.375000px;}
.y4c{bottom:360.075000px;}
.y6f{bottom:365.836500px;}
.y27{bottom:371.415000px;}
.y26{bottom:392.115000px;}
.y4b{bottom:395.715000px;}
.y6e{bottom:401.475000px;}
.y25{bottom:412.815000px;}
.y4a{bottom:416.415000px;}
.y6d{bottom:422.175000px;}
.y24{bottom:433.515000px;}
.y49{bottom:437.115000px;}
.y6c{bottom:442.875000px;}
.y48{bottom:457.815000px;}
.y6b{bottom:463.575000px;}
.y23{bottom:469.336500px;}
.y22{bottom:490.036500px;}
.y47{bottom:493.636500px;}
.y6a{bottom:499.215000px;}
.y21{bottom:510.736500px;}
.y69{bottom:519.915000px;}
.y46{bottom:529.275000px;}
.y20{bottom:531.436500px;}
.y68{bottom:540.615000px;}
.y45{bottom:549.975000px;}
.y67{bottom:561.315000px;}
.y1f{bottom:567.075000px;}
.y44{bottom:570.675000px;}
.y66{bottom:582.015000px;}
.y1e{bottom:587.775000px;}
.y43{bottom:591.375000px;}
.y65{bottom:602.715000px;}
.y1d{bottom:608.475000px;}
.y42{bottom:627.015000px;}
.y1c{bottom:629.175000px;}
.y64{bottom:638.536500px;}
.y41{bottom:647.715000px;}
.y1b{bottom:664.815000px;}
.y40{bottom:668.415000px;}
.y63{bottom:674.175000px;}
.y1a{bottom:685.515000px;}
.y3f{bottom:689.115000px;}
.y62{bottom:694.875000px;}
.y19{bottom:706.215000px;}
.y61{bottom:715.575000px;}
.y3e{bottom:724.936500px;}
.y18{bottom:726.915000px;}
.y3d{bottom:745.636500px;}
.y17{bottom:747.615000px;}
.y60{bottom:751.215000px;}
.y3c{bottom:766.336500px;}
.y5f{bottom:771.915000px;}
.y16{bottom:783.436500px;}
.y3b{bottom:787.036500px;}
.y5e{bottom:792.615000px;}
.y15{bottom:804.136500px;}
.y3a{bottom:807.736500px;}
.y5d{bottom:813.315000px;}
.y14{bottom:824.836500px;}
.y5c{bottom:834.015000px;}
.y39{bottom:843.375000px;}
.y13{bottom:845.536500px;}
.y5b{bottom:854.715000px;}
.y38{bottom:864.075000px;}
.y12{bottom:866.236500px;}
.y37{bottom:884.775000px;}
.y5a{bottom:890.536500px;}
.y11{bottom:901.875000px;}
.y36{bottom:905.475000px;}
.y59{bottom:911.236500px;}
.y35{bottom:926.175000px;}
.y58{bottom:931.936500px;}
.y10{bottom:937.515000px;}
.y34{bottom:946.875000px;}
.y57{bottom:952.636500px;}
.yf{bottom:973.336500px;}
.y33{bottom:982.515000px;}
.y32{bottom:1003.215000px;}
.ye{bottom:1008.975000px;}
.y31{bottom:1023.915000px;}
.yd{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;}
.h6{height:45.225146px;}
.h4{height:48.761719px;}
.h3{height:48.796875px;}
.h8{height:50.027344px;}
.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;}
.x4{left:172.980000px;}
.x1{left:201.060000px;}
.x7{left:272.880000px;}
.x5{left:339.120000px;}
.x3{left:465.675000px;}
.x8{left:478.800000px;}
.x6{left:608.580000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws7{word-spacing:-49.728000pt;}
.ws6{word-spacing:-36.416000pt;}
.ws4e{word-spacing:-34.560000pt;}
.wsd{word-spacing:-34.371733pt;}
.ws1f{word-spacing:-34.361600pt;}
.ws2a{word-spacing:-34.360800pt;}
.ws17{word-spacing:-34.358400pt;}
.ws3d{word-spacing:-34.357333pt;}
.ws1b{word-spacing:-34.353600pt;}
.ws78{word-spacing:-34.351200pt;}
.ws42{word-spacing:-34.349333pt;}
.ws12{word-spacing:-34.345600pt;}
.ws5d{word-spacing:-34.174933pt;}
.ws6e{word-spacing:-34.172800pt;}
.ws52{word-spacing:-34.172533pt;}
.ws39{word-spacing:-34.171733pt;}
.ws57{word-spacing:-34.169600pt;}
.wsa{word-spacing:-34.164267pt;}
.wsc{word-spacing:-34.038400pt;}
.ws51{word-spacing:-33.920000pt;}
.ws46{word-spacing:-33.915733pt;}
.ws4a{word-spacing:-33.912000pt;}
.ws61{word-spacing:-33.910400pt;}
.ws0{word-spacing:-33.863467pt;}
.ws6b{word-spacing:-33.844800pt;}
.ws9{word-spacing:-33.843200pt;}
.ws41{word-spacing:-33.728533pt;}
.ws1{word-spacing:-33.728000pt;}
.ws6d{word-spacing:-33.725600pt;}
.wsb{word-spacing:-33.724000pt;}
.ws6f{word-spacing:-33.722133pt;}
.ws75{word-spacing:-33.720800pt;}
.ws35{word-spacing:-33.719200pt;}
.ws29{word-spacing:-33.718400pt;}
.ws3{word-spacing:-33.716800pt;}
.ws2f{word-spacing:-33.713600pt;}
.ws56{word-spacing:-33.073600pt;}
.ws60{word-spacing:-32.441600pt;}
.ws47{word-spacing:-32.436800pt;}
.wsf{word-spacing:-32.000000pt;}
.ws69{word-spacing:-31.601600pt;}
.ws30{word-spacing:-31.360000pt;}
.ws10{word-spacing:-31.161600pt;}
.ws31{word-spacing:-30.336000pt;}
.ws4f{word-spacing:-29.879200pt;}
.ws8{word-spacing:-29.820267pt;}
.ws68{word-spacing:-29.696000pt;}
.ws5c{word-spacing:-28.591200pt;}
.ws20{word-spacing:-27.953600pt;}
.ws54{word-spacing:-27.906133pt;}
.ws59{word-spacing:-27.112800pt;}
.ws76{word-spacing:-26.859200pt;}
.ws19{word-spacing:-26.491200pt;}
.ws77{word-spacing:-26.416000pt;}
.ws27{word-spacing:-25.592800pt;}
.ws44{word-spacing:-25.584000pt;}
.ws24{word-spacing:-24.314667pt;}
.ws49{word-spacing:-24.124800pt;}
.ws3f{word-spacing:-24.120000pt;}
.ws18{word-spacing:-24.113600pt;}
.ws28{word-spacing:-23.680000pt;}
.ws2b{word-spacing:-23.478400pt;}
.ws74{word-spacing:-23.040000pt;}
.ws3e{word-spacing:-22.845600pt;}
.ws73{word-spacing:-22.829333pt;}
.ws55{word-spacing:-22.397333pt;}
.ws13{word-spacing:-22.383200pt;}
.ws72{word-spacing:-22.320800pt;}
.ws16{word-spacing:-22.205333pt;}
.ws1d{word-spacing:-22.009600pt;}
.ws66{word-spacing:-21.560000pt;}
.ws4d{word-spacing:-21.555200pt;}
.ws5{word-spacing:-21.055733pt;}
.ws43{word-spacing:-20.923733pt;}
.ws6a{word-spacing:-20.920000pt;}
.ws26{word-spacing:-20.734400pt;}
.ws53{word-spacing:-18.993600pt;}
.ws1c{word-spacing:-18.358400pt;}
.ws3c{word-spacing:-17.910933pt;}
.ws1e{word-spacing:-17.523200pt;}
.ws2e{word-spacing:-17.280000pt;}
.ws67{word-spacing:-17.270400pt;}
.ws37{word-spacing:-17.068800pt;}
.ws58{word-spacing:-16.438400pt;}
.ws48{word-spacing:-15.778133pt;}
.ws2c{word-spacing:-15.608000pt;}
.ws5a{word-spacing:-14.522400pt;}
.ws50{word-spacing:-14.331200pt;}
.ws23{word-spacing:-13.890133pt;}
.ws21{word-spacing:-13.878400pt;}
.ws64{word-spacing:-13.689600pt;}
.ws7a{word-spacing:-13.613600pt;}
.ws45{word-spacing:-13.038400pt;}
.ws79{word-spacing:-12.992000pt;}
.ws40{word-spacing:-12.592000pt;}
.ws3b{word-spacing:-12.403200pt;}
.ws25{word-spacing:-11.961600pt;}
.ws22{word-spacing:-11.950667pt;}
.ws36{word-spacing:-11.515200pt;}
.ws5b{word-spacing:-9.585600pt;}
.ws63{word-spacing:-9.408000pt;}
.ws62{word-spacing:-9.400000pt;}
.ws33{word-spacing:-9.398400pt;}
.ws32{word-spacing:-9.396800pt;}
.ws38{word-spacing:-8.574933pt;}
.ws34{word-spacing:-8.310400pt;}
.ws14{word-spacing:-8.120533pt;}
.wse{word-spacing:-6.210133pt;}
.ws4c{word-spacing:-5.760000pt;}
.ws4b{word-spacing:-5.756800pt;}
.ws4{word-spacing:-4.602400pt;}
.ws2d{word-spacing:-4.476800pt;}
.ws7b{word-spacing:-4.281600pt;}
.ws7c{word-spacing:-4.015200pt;}
.ws3a{word-spacing:-2.349867pt;}
.ws7d{word-spacing:0.000000pt;}
.ws11{word-spacing:0.192000pt;}
.ws65{word-spacing:0.846400pt;}
.ws5e{word-spacing:3.581867pt;}
.ws5f{word-spacing:4.489600pt;}
.ws15{word-spacing:7.238667pt;}
.ws1a{word-spacing:7.880000pt;}
.ws70{word-spacing:27.912267pt;}
.ws71{word-spacing:28.355200pt;}
.ws6c{word-spacing:91.072000pt;}
.ws2{word-spacing:477.572800pt;}
._0{margin-left:-1.092267pt;}
._3{width:0.968800pt;}
._4{width:16.689067pt;}
._1f{width:17.908800pt;}
._7{width:18.801600pt;}
._18{width:19.712000pt;}
._19{width:20.718400pt;}
._20{width:22.065600pt;}
._12{width:22.961600pt;}
._e{width:24.571200pt;}
._1d{width:25.716533pt;}
._d{width:27.214933pt;}
._a{width:28.309600pt;}
._10{width:29.753600pt;}
._1c{width:31.280533pt;}
._f{width:32.438400pt;}
._11{width:33.902667pt;}
._1e{width:35.608267pt;}
._8{width:36.708267pt;}
._22{width:37.681067pt;}
._13{width:38.718667pt;}
._14{width:40.044267pt;}
._1a{width:41.246400pt;}
._b{width:42.671733pt;}
._5{width:44.418133pt;}
._6{width:45.307467pt;}
._17{width:46.882933pt;}
._1b{width:48.621867pt;}
._15{width:49.703733pt;}
._9{width:51.309333pt;}
._21{width:54.203467pt;}
._c{width:58.211200pt;}
._1{width:63.936000pt;}
._16{width:140.800000pt;}
._2{width:384.064000pt;}
.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;}
.y56{bottom:109.346667pt;}
.y30{bottom:124.546667pt;}
.y55{bottom:127.746667pt;}
.y78{bottom:146.146667pt;}
.y2f{bottom:156.388000pt;}
.y54{bottom:159.588000pt;}
.y77{bottom:164.546667pt;}
.y2e{bottom:174.788000pt;}
.y53{bottom:177.988000pt;}
.y76{bottom:182.946667pt;}
.y2d{bottom:193.188000pt;}
.y52{bottom:196.388000pt;}
.y75{bottom:201.346667pt;}
.y2c{bottom:211.588000pt;}
.y51{bottom:214.788000pt;}
.y74{bottom:219.746667pt;}
.y73{bottom:238.146667pt;}
.y2b{bottom:243.266667pt;}
.y50{bottom:246.466667pt;}
.y72{bottom:256.546667pt;}
.y2a{bottom:261.666667pt;}
.y4f{bottom:264.866667pt;}
.y71{bottom:274.946667pt;}
.y29{bottom:280.066667pt;}
.y4e{bottom:283.266667pt;}
.y70{bottom:293.346667pt;}
.y28{bottom:298.466667pt;}
.y4d{bottom:301.666667pt;}
.y4c{bottom:320.066667pt;}
.y6f{bottom:325.188000pt;}
.y27{bottom:330.146667pt;}
.y26{bottom:348.546667pt;}
.y4b{bottom:351.746667pt;}
.y6e{bottom:356.866667pt;}
.y25{bottom:366.946667pt;}
.y4a{bottom:370.146667pt;}
.y6d{bottom:375.266667pt;}
.y24{bottom:385.346667pt;}
.y49{bottom:388.546667pt;}
.y6c{bottom:393.666667pt;}
.y48{bottom:406.946667pt;}
.y6b{bottom:412.066667pt;}
.y23{bottom:417.188000pt;}
.y22{bottom:435.588000pt;}
.y47{bottom:438.788000pt;}
.y6a{bottom:443.746667pt;}
.y21{bottom:453.988000pt;}
.y69{bottom:462.146667pt;}
.y46{bottom:470.466667pt;}
.y20{bottom:472.388000pt;}
.y68{bottom:480.546667pt;}
.y45{bottom:488.866667pt;}
.y67{bottom:498.946667pt;}
.y1f{bottom:504.066667pt;}
.y44{bottom:507.266667pt;}
.y66{bottom:517.346667pt;}
.y1e{bottom:522.466667pt;}
.y43{bottom:525.666667pt;}
.y65{bottom:535.746667pt;}
.y1d{bottom:540.866667pt;}
.y42{bottom:557.346667pt;}
.y1c{bottom:559.266667pt;}
.y64{bottom:567.588000pt;}
.y41{bottom:575.746667pt;}
.y1b{bottom:590.946667pt;}
.y40{bottom:594.146667pt;}
.y63{bottom:599.266667pt;}
.y1a{bottom:609.346667pt;}
.y3f{bottom:612.546667pt;}
.y62{bottom:617.666667pt;}
.y19{bottom:627.746667pt;}
.y61{bottom:636.066667pt;}
.y3e{bottom:644.388000pt;}
.y18{bottom:646.146667pt;}
.y3d{bottom:662.788000pt;}
.y17{bottom:664.546667pt;}
.y60{bottom:667.746667pt;}
.y3c{bottom:681.188000pt;}
.y5f{bottom:686.146667pt;}
.y16{bottom:696.388000pt;}
.y3b{bottom:699.588000pt;}
.y5e{bottom:704.546667pt;}
.y15{bottom:714.788000pt;}
.y3a{bottom:717.988000pt;}
.y5d{bottom:722.946667pt;}
.y14{bottom:733.188000pt;}
.y5c{bottom:741.346667pt;}
.y39{bottom:749.666667pt;}
.y13{bottom:751.588000pt;}
.y5b{bottom:759.746667pt;}
.y38{bottom:768.066667pt;}
.y12{bottom:769.988000pt;}
.y37{bottom:786.466667pt;}
.y5a{bottom:791.588000pt;}
.y11{bottom:801.666667pt;}
.y36{bottom:804.866667pt;}
.y59{bottom:809.988000pt;}
.y35{bottom:823.266667pt;}
.y58{bottom:828.388000pt;}
.y10{bottom:833.346667pt;}
.y34{bottom:841.666667pt;}
.y57{bottom:846.788000pt;}
.yf{bottom:865.188000pt;}
.y33{bottom:873.346667pt;}
.y32{bottom:891.746667pt;}
.ye{bottom:896.866667pt;}
.y31{bottom:910.146667pt;}
.yd{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;}
.h6{height:40.200130pt;}
.h4{height:43.343750pt;}
.h3{height:43.375000pt;}
.h8{height:44.468750pt;}
.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;}
.x4{left:153.760000pt;}
.x1{left:178.720000pt;}
.x7{left:242.560000pt;}
.x5{left:301.440000pt;}
.x3{left:413.933333pt;}
.x8{left:425.600000pt;}
.x6{left:540.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; }
  