
    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_9eadb65b7ad56cbbb2a7ecd4.woff')format("woff");}.ff1{font-family:ff1;line-height:0.935000;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_97a3ca8a30670032be622793.woff')format("woff");}.ff2{font-family:ff2;line-height:0.926000;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_df208d612b8ae7e1c9aa5441.woff')format("woff");}.ff3{font-family:ff3;line-height:0.936000;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_a1eb835441dd936a3cf9e076.woff')format("woff");}.ff4{font-family:ff4;line-height:0.941000;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_db75d96c0f66787c8bcb3ad8.woff')format("woff");}.ff5{font-family:ff5;line-height:0.909000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_15429891e5d0b3dfc4f603e3.woff')format("woff");}.ff6{font-family:ff6;line-height:0.920000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_7ee073de22fab702decd015e.woff')format("woff");}.ff7{font-family:ff7;line-height:0.927000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_88e406d8ca69854690d08500.woff')format("woff");}.ff8{font-family:ff8;line-height:0.936000;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);}
.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;}
}
.ws6{word-spacing:-53.664000px;}
.ws0{word-spacing:-36.696000px;}
.ws4{word-spacing:-25.020000px;}
.ws7{word-spacing:-21.684000px;}
.ws3{word-spacing:-16.680000px;}
.ws5{word-spacing:-0.300000px;}
.ws2{word-spacing:-0.180000px;}
.ws1{word-spacing:0.000000px;}
._3{margin-left:-16.560000px;}
._4{margin-left:-9.936000px;}
._9{margin-left:-7.992000px;}
._6{margin-left:-6.660000px;}
._8{margin-left:-5.520000px;}
._7{margin-left:-4.440000px;}
._1{margin-left:-3.240000px;}
._0{margin-left:-1.620000px;}
._5{width:1.080000px;}
._2{width:3.240000px;}
.fc3{color:rgb(42,62,146);}
.fc2{color:rgb(157,23,28);}
.fc1{color:rgb(38,69,143);}
.fc4{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fs5{font-size:60.000000px;}
.fs6{font-size:66.000000px;}
.fs8{font-size:72.000000px;}
.fs7{font-size:78.000000px;}
.fs0{font-size:90.000000px;}
.fs3{font-size:108.000000px;}
.fs4{font-size:132.000000px;}
.fs1{font-size:168.000000px;}
.fs2{font-size:180.000000px;}
.y0{bottom:0.000000px;}
.y102{bottom:83.094300px;}
.y4b{bottom:95.160750px;}
.y101{bottom:104.694300px;}
.y23{bottom:113.100750px;}
.y4a{bottom:113.160750px;}
.y22{bottom:131.100750px;}
.y49{bottom:131.160750px;}
.y85{bottom:139.836000px;}
.y21{bottom:149.100750px;}
.y48{bottom:149.160750px;}
.y84{bottom:157.836000px;}
.y20{bottom:167.100750px;}
.y47{bottom:167.160750px;}
.y83{bottom:175.836000px;}
.y1f{bottom:185.100750px;}
.y46{bottom:185.160750px;}
.yeb{bottom:185.514900px;}
.y82{bottom:193.836000px;}
.yb9{bottom:202.694400px;}
.y1e{bottom:203.100750px;}
.y45{bottom:203.160750px;}
.yea{bottom:203.514900px;}
.y81{bottom:211.836000px;}
.yb8{bottom:220.694400px;}
.y1d{bottom:221.100750px;}
.y44{bottom:221.160750px;}
.ye9{bottom:221.514900px;}
.y80{bottom:229.836000px;}
.yb7{bottom:238.694400px;}
.y1c{bottom:239.100750px;}
.y43{bottom:239.160750px;}
.ye8{bottom:239.514900px;}
.y7f{bottom:247.836000px;}
.yb6{bottom:256.694400px;}
.y1b{bottom:257.100750px;}
.y42{bottom:257.160750px;}
.ye7{bottom:257.514900px;}
.y7e{bottom:265.836000px;}
.yb5{bottom:274.694400px;}
.y41{bottom:275.160750px;}
.ye6{bottom:275.514900px;}
.y7d{bottom:283.836000px;}
.yb4{bottom:292.694400px;}
.y1a{bottom:293.100750px;}
.y40{bottom:293.160750px;}
.ye5{bottom:293.514900px;}
.y7c{bottom:301.836000px;}
.yb3{bottom:310.694400px;}
.y3f{bottom:311.160750px;}
.ye4{bottom:311.514900px;}
.y7b{bottom:319.836000px;}
.y19{bottom:326.100750px;}
.yb2{bottom:328.694400px;}
.y3e{bottom:329.160750px;}
.ye3{bottom:329.514900px;}
.y7a{bottom:337.836000px;}
.yb1{bottom:346.694400px;}
.y3d{bottom:347.160750px;}
.ye2{bottom:347.514900px;}
.y79{bottom:355.836000px;}
.y89{bottom:358.836000px;}
.yb0{bottom:364.694400px;}
.y3c{bottom:365.160750px;}
.ye1{bottom:365.514900px;}
.y78{bottom:373.836000px;}
.yaf{bottom:382.694400px;}
.ye0{bottom:383.514900px;}
.y77{bottom:391.836000px;}
.yae{bottom:400.694400px;}
.y3b{bottom:401.160750px;}
.ydf{bottom:401.514900px;}
.y18{bottom:401.700750px;}
.y76{bottom:409.836000px;}
.yad{bottom:418.694400px;}
.y3a{bottom:419.160750px;}
.yde{bottom:419.514900px;}
.y17{bottom:419.700750px;}
.y75{bottom:427.836000px;}
.yac{bottom:436.694400px;}
.y39{bottom:437.160750px;}
.ydd{bottom:437.514900px;}
.y16{bottom:437.700750px;}
.y74{bottom:445.836000px;}
.yab{bottom:454.694400px;}
.y38{bottom:455.160750px;}
.ydc{bottom:455.514900px;}
.y15{bottom:455.700750px;}
.y73{bottom:463.836000px;}
.yaa{bottom:472.694400px;}
.y37{bottom:473.160750px;}
.y14{bottom:473.700750px;}
.y72{bottom:481.836000px;}
.y100{bottom:483.965550px;}
.y36{bottom:491.160750px;}
.ydb{bottom:491.514900px;}
.ya9{bottom:496.686900px;}
.y88{bottom:499.836000px;}
.yff{bottom:507.970050px;}
.y35{bottom:509.160750px;}
.yda{bottom:509.514900px;}
.y13{bottom:509.700750px;}
.ya8{bottom:516.194400px;}
.y71{bottom:517.836000px;}
.y34{bottom:527.160750px;}
.yd9{bottom:527.514900px;}
.y12{bottom:527.700750px;}
.y70{bottom:535.836000px;}
.y33{bottom:545.160750px;}
.yd8{bottom:545.514900px;}
.y11{bottom:545.700750px;}
.y6f{bottom:553.836000px;}
.yfe{bottom:555.979050px;}
.y32{bottom:563.160750px;}
.yd7{bottom:563.514900px;}
.y10{bottom:563.700750px;}
.y6e{bottom:571.836000px;}
.yfd{bottom:579.983550px;}
.y31{bottom:581.160750px;}
.yd6{bottom:581.514900px;}
.yf{bottom:581.700750px;}
.ya7{bottom:585.194400px;}
.y6d{bottom:589.836000px;}
.y30{bottom:599.160750px;}
.yd5{bottom:599.514900px;}
.ye{bottom:599.700750px;}
.ya6{bottom:603.194400px;}
.yfc{bottom:603.988050px;}
.y6c{bottom:607.836000px;}
.y2f{bottom:617.160750px;}
.yd4{bottom:617.514900px;}
.ya5{bottom:621.194400px;}
.y6b{bottom:625.836000px;}
.y2e{bottom:635.160750px;}
.yd3{bottom:635.514900px;}
.yd{bottom:635.700750px;}
.ya4{bottom:639.194400px;}
.y6a{bottom:643.836000px;}
.yfb{bottom:651.997050px;}
.y2d{bottom:653.160750px;}
.yd2{bottom:653.514900px;}
.y69{bottom:661.836000px;}
.y2c{bottom:671.160750px;}
.yd1{bottom:671.514900px;}
.ya3{bottom:675.194400px;}
.yfa{bottom:676.001550px;}
.y68{bottom:679.836000px;}
.y2b{bottom:689.160750px;}
.yd0{bottom:689.514900px;}
.ya2{bottom:693.194400px;}
.y67{bottom:697.836000px;}
.y2a{bottom:707.160750px;}
.ycf{bottom:707.514900px;}
.ya1{bottom:711.194400px;}
.yc{bottom:711.300750px;}
.y66{bottom:715.836000px;}
.yf9{bottom:724.010550px;}
.y29{bottom:725.160750px;}
.yce{bottom:725.514900px;}
.ya0{bottom:729.194400px;}
.yb{bottom:729.300750px;}
.y65{bottom:733.836000px;}
.y28{bottom:743.160750px;}
.ycd{bottom:743.514900px;}
.y9f{bottom:747.194400px;}
.ya{bottom:747.300750px;}
.yf8{bottom:748.015050px;}
.y64{bottom:751.836000px;}
.y27{bottom:761.160750px;}
.y9e{bottom:765.194400px;}
.y9{bottom:765.300750px;}
.y63{bottom:769.836000px;}
.y26{bottom:779.160750px;}
.ycc{bottom:779.514900px;}
.y9d{bottom:783.194400px;}
.y62{bottom:787.836000px;}
.yf7{bottom:790.014900px;}
.y25{bottom:797.160750px;}
.ycb{bottom:797.514900px;}
.y9c{bottom:801.194400px;}
.y8{bottom:801.300600px;}
.y61{bottom:805.836000px;}
.y24{bottom:815.160750px;}
.yca{bottom:815.514900px;}
.y9b{bottom:819.194400px;}
.y60{bottom:823.836000px;}
.yc9{bottom:833.514900px;}
.y9a{bottom:837.194400px;}
.y5f{bottom:841.836000px;}
.yc8{bottom:851.514900px;}
.y99{bottom:855.194400px;}
.y87{bottom:859.836000px;}
.yf6{bottom:862.014900px;}
.yc7{bottom:869.514900px;}
.y98{bottom:873.194400px;}
.y5e{bottom:877.836000px;}
.yf5{bottom:880.014900px;}
.yc6{bottom:887.514900px;}
.y7{bottom:889.243500px;}
.y97{bottom:891.194400px;}
.y5d{bottom:895.836000px;}
.yf4{bottom:898.014900px;}
.yc5{bottom:905.514900px;}
.y5c{bottom:913.836000px;}
.yc4{bottom:923.514900px;}
.y96{bottom:927.194400px;}
.y6{bottom:931.243500px;}
.y5b{bottom:931.836000px;}
.yf3{bottom:934.014900px;}
.yc3{bottom:941.514900px;}
.y4f{bottom:942.717150px;}
.y95{bottom:945.194400px;}
.y5a{bottom:949.836000px;}
.yf2{bottom:952.014900px;}
.yc2{bottom:959.514900px;}
.y94{bottom:963.194400px;}
.y4e{bottom:963.721650px;}
.y59{bottom:967.836000px;}
.y5{bottom:976.243500px;}
.y93{bottom:981.194400px;}
.y58{bottom:985.836000px;}
.yf1{bottom:988.014900px;}
.y4d{bottom:989.214150px;}
.yc1{bottom:995.514900px;}
.y92{bottom:999.194400px;}
.y57{bottom:1003.836000px;}
.yf0{bottom:1006.014900px;}
.y4c{bottom:1010.812650px;}
.yc0{bottom:1013.514900px;}
.y91{bottom:1017.194400px;}
.y4{bottom:1021.243500px;}
.y56{bottom:1021.836000px;}
.y86{bottom:1024.836000px;}
.ybf{bottom:1031.514900px;}
.y90{bottom:1035.194400px;}
.y55{bottom:1039.836000px;}
.yef{bottom:1042.014900px;}
.ybe{bottom:1049.514900px;}
.y8f{bottom:1053.194400px;}
.y54{bottom:1057.836000px;}
.yee{bottom:1060.014900px;}
.ybd{bottom:1067.514900px;}
.y8e{bottom:1071.194400px;}
.y53{bottom:1075.836000px;}
.ybc{bottom:1085.514900px;}
.y8d{bottom:1089.194400px;}
.y52{bottom:1093.836000px;}
.yed{bottom:1096.014900px;}
.ybb{bottom:1103.514900px;}
.y2{bottom:1106.822250px;}
.y8c{bottom:1107.194400px;}
.y51{bottom:1111.836000px;}
.yec{bottom:1114.014900px;}
.y8b{bottom:1125.194400px;}
.y1{bottom:1133.822250px;}
.yba{bottom:1139.514900px;}
.y8a{bottom:1147.694400px;}
.y50{bottom:1147.836000px;}
.y3{bottom:1188.577950px;}
.h7{height:43.860000px;}
.h8{height:48.048000px;}
.h9{height:48.246000px;}
.hc{height:52.632000px;}
.hb{height:57.018000px;}
.h2{height:65.610000px;}
.ha{height:65.790000px;}
.h5{height:78.948000px;}
.h6{height:96.492000px;}
.h3{height:122.808000px;}
.h4{height:131.580000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:63.779550px;}
.x5{left:72.283500px;}
.x7{left:85.034550px;}
.x2{left:457.079550px;}
.x6{left:461.338650px;}
.x8{left:465.590550px;}
.x4{left:472.726500px;}
.x3{left:651.968550px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws6{word-spacing:-47.701333pt;}
.ws0{word-spacing:-32.618667pt;}
.ws4{word-spacing:-22.240000pt;}
.ws7{word-spacing:-19.274667pt;}
.ws3{word-spacing:-14.826667pt;}
.ws5{word-spacing:-0.266667pt;}
.ws2{word-spacing:-0.160000pt;}
.ws1{word-spacing:0.000000pt;}
._3{margin-left:-14.720000pt;}
._4{margin-left:-8.832000pt;}
._9{margin-left:-7.104000pt;}
._6{margin-left:-5.920000pt;}
._8{margin-left:-4.906667pt;}
._7{margin-left:-3.946667pt;}
._1{margin-left:-2.880000pt;}
._0{margin-left:-1.440000pt;}
._5{width:0.960000pt;}
._2{width:2.880000pt;}
.fs5{font-size:53.333333pt;}
.fs6{font-size:58.666667pt;}
.fs8{font-size:64.000000pt;}
.fs7{font-size:69.333333pt;}
.fs0{font-size:80.000000pt;}
.fs3{font-size:96.000000pt;}
.fs4{font-size:117.333333pt;}
.fs1{font-size:149.333333pt;}
.fs2{font-size:160.000000pt;}
.y0{bottom:0.000000pt;}
.y102{bottom:73.861600pt;}
.y4b{bottom:84.587333pt;}
.y101{bottom:93.061600pt;}
.y23{bottom:100.534000pt;}
.y4a{bottom:100.587333pt;}
.y22{bottom:116.534000pt;}
.y49{bottom:116.587333pt;}
.y85{bottom:124.298667pt;}
.y21{bottom:132.534000pt;}
.y48{bottom:132.587333pt;}
.y84{bottom:140.298667pt;}
.y20{bottom:148.534000pt;}
.y47{bottom:148.587333pt;}
.y83{bottom:156.298667pt;}
.y1f{bottom:164.534000pt;}
.y46{bottom:164.587333pt;}
.yeb{bottom:164.902133pt;}
.y82{bottom:172.298667pt;}
.yb9{bottom:180.172800pt;}
.y1e{bottom:180.534000pt;}
.y45{bottom:180.587333pt;}
.yea{bottom:180.902133pt;}
.y81{bottom:188.298667pt;}
.yb8{bottom:196.172800pt;}
.y1d{bottom:196.534000pt;}
.y44{bottom:196.587333pt;}
.ye9{bottom:196.902133pt;}
.y80{bottom:204.298667pt;}
.yb7{bottom:212.172800pt;}
.y1c{bottom:212.534000pt;}
.y43{bottom:212.587333pt;}
.ye8{bottom:212.902133pt;}
.y7f{bottom:220.298667pt;}
.yb6{bottom:228.172800pt;}
.y1b{bottom:228.534000pt;}
.y42{bottom:228.587333pt;}
.ye7{bottom:228.902133pt;}
.y7e{bottom:236.298667pt;}
.yb5{bottom:244.172800pt;}
.y41{bottom:244.587333pt;}
.ye6{bottom:244.902133pt;}
.y7d{bottom:252.298667pt;}
.yb4{bottom:260.172800pt;}
.y1a{bottom:260.534000pt;}
.y40{bottom:260.587333pt;}
.ye5{bottom:260.902133pt;}
.y7c{bottom:268.298667pt;}
.yb3{bottom:276.172800pt;}
.y3f{bottom:276.587333pt;}
.ye4{bottom:276.902133pt;}
.y7b{bottom:284.298667pt;}
.y19{bottom:289.867333pt;}
.yb2{bottom:292.172800pt;}
.y3e{bottom:292.587333pt;}
.ye3{bottom:292.902133pt;}
.y7a{bottom:300.298667pt;}
.yb1{bottom:308.172800pt;}
.y3d{bottom:308.587333pt;}
.ye2{bottom:308.902133pt;}
.y79{bottom:316.298667pt;}
.y89{bottom:318.965333pt;}
.yb0{bottom:324.172800pt;}
.y3c{bottom:324.587333pt;}
.ye1{bottom:324.902133pt;}
.y78{bottom:332.298667pt;}
.yaf{bottom:340.172800pt;}
.ye0{bottom:340.902133pt;}
.y77{bottom:348.298667pt;}
.yae{bottom:356.172800pt;}
.y3b{bottom:356.587333pt;}
.ydf{bottom:356.902133pt;}
.y18{bottom:357.067333pt;}
.y76{bottom:364.298667pt;}
.yad{bottom:372.172800pt;}
.y3a{bottom:372.587333pt;}
.yde{bottom:372.902133pt;}
.y17{bottom:373.067333pt;}
.y75{bottom:380.298667pt;}
.yac{bottom:388.172800pt;}
.y39{bottom:388.587333pt;}
.ydd{bottom:388.902133pt;}
.y16{bottom:389.067333pt;}
.y74{bottom:396.298667pt;}
.yab{bottom:404.172800pt;}
.y38{bottom:404.587333pt;}
.ydc{bottom:404.902133pt;}
.y15{bottom:405.067333pt;}
.y73{bottom:412.298667pt;}
.yaa{bottom:420.172800pt;}
.y37{bottom:420.587333pt;}
.y14{bottom:421.067333pt;}
.y72{bottom:428.298667pt;}
.y100{bottom:430.191600pt;}
.y36{bottom:436.587333pt;}
.ydb{bottom:436.902133pt;}
.ya9{bottom:441.499467pt;}
.y88{bottom:444.298667pt;}
.yff{bottom:451.528933pt;}
.y35{bottom:452.587333pt;}
.yda{bottom:452.902133pt;}
.y13{bottom:453.067333pt;}
.ya8{bottom:458.839467pt;}
.y71{bottom:460.298667pt;}
.y34{bottom:468.587333pt;}
.yd9{bottom:468.902133pt;}
.y12{bottom:469.067333pt;}
.y70{bottom:476.298667pt;}
.y33{bottom:484.587333pt;}
.yd8{bottom:484.902133pt;}
.y11{bottom:485.067333pt;}
.y6f{bottom:492.298667pt;}
.yfe{bottom:494.203600pt;}
.y32{bottom:500.587333pt;}
.yd7{bottom:500.902133pt;}
.y10{bottom:501.067333pt;}
.y6e{bottom:508.298667pt;}
.yfd{bottom:515.540933pt;}
.y31{bottom:516.587333pt;}
.yd6{bottom:516.902133pt;}
.yf{bottom:517.067333pt;}
.ya7{bottom:520.172800pt;}
.y6d{bottom:524.298667pt;}
.y30{bottom:532.587333pt;}
.yd5{bottom:532.902133pt;}
.ye{bottom:533.067333pt;}
.ya6{bottom:536.172800pt;}
.yfc{bottom:536.878267pt;}
.y6c{bottom:540.298667pt;}
.y2f{bottom:548.587333pt;}
.yd4{bottom:548.902133pt;}
.ya5{bottom:552.172800pt;}
.y6b{bottom:556.298667pt;}
.y2e{bottom:564.587333pt;}
.yd3{bottom:564.902133pt;}
.yd{bottom:565.067333pt;}
.ya4{bottom:568.172800pt;}
.y6a{bottom:572.298667pt;}
.yfb{bottom:579.552933pt;}
.y2d{bottom:580.587333pt;}
.yd2{bottom:580.902133pt;}
.y69{bottom:588.298667pt;}
.y2c{bottom:596.587333pt;}
.yd1{bottom:596.902133pt;}
.ya3{bottom:600.172800pt;}
.yfa{bottom:600.890267pt;}
.y68{bottom:604.298667pt;}
.y2b{bottom:612.587333pt;}
.yd0{bottom:612.902133pt;}
.ya2{bottom:616.172800pt;}
.y67{bottom:620.298667pt;}
.y2a{bottom:628.587333pt;}
.ycf{bottom:628.902133pt;}
.ya1{bottom:632.172800pt;}
.yc{bottom:632.267333pt;}
.y66{bottom:636.298667pt;}
.yf9{bottom:643.564933pt;}
.y29{bottom:644.587333pt;}
.yce{bottom:644.902133pt;}
.ya0{bottom:648.172800pt;}
.yb{bottom:648.267333pt;}
.y65{bottom:652.298667pt;}
.y28{bottom:660.587333pt;}
.ycd{bottom:660.902133pt;}
.y9f{bottom:664.172800pt;}
.ya{bottom:664.267333pt;}
.yf8{bottom:664.902267pt;}
.y64{bottom:668.298667pt;}
.y27{bottom:676.587333pt;}
.y9e{bottom:680.172800pt;}
.y9{bottom:680.267333pt;}
.y63{bottom:684.298667pt;}
.y26{bottom:692.587333pt;}
.ycc{bottom:692.902133pt;}
.y9d{bottom:696.172800pt;}
.y62{bottom:700.298667pt;}
.yf7{bottom:702.235467pt;}
.y25{bottom:708.587333pt;}
.ycb{bottom:708.902133pt;}
.y9c{bottom:712.172800pt;}
.y8{bottom:712.267200pt;}
.y61{bottom:716.298667pt;}
.y24{bottom:724.587333pt;}
.yca{bottom:724.902133pt;}
.y9b{bottom:728.172800pt;}
.y60{bottom:732.298667pt;}
.yc9{bottom:740.902133pt;}
.y9a{bottom:744.172800pt;}
.y5f{bottom:748.298667pt;}
.yc8{bottom:756.902133pt;}
.y99{bottom:760.172800pt;}
.y87{bottom:764.298667pt;}
.yf6{bottom:766.235467pt;}
.yc7{bottom:772.902133pt;}
.y98{bottom:776.172800pt;}
.y5e{bottom:780.298667pt;}
.yf5{bottom:782.235467pt;}
.yc6{bottom:788.902133pt;}
.y7{bottom:790.438667pt;}
.y97{bottom:792.172800pt;}
.y5d{bottom:796.298667pt;}
.yf4{bottom:798.235467pt;}
.yc5{bottom:804.902133pt;}
.y5c{bottom:812.298667pt;}
.yc4{bottom:820.902133pt;}
.y96{bottom:824.172800pt;}
.y6{bottom:827.772000pt;}
.y5b{bottom:828.298667pt;}
.yf3{bottom:830.235467pt;}
.yc3{bottom:836.902133pt;}
.y4f{bottom:837.970800pt;}
.y95{bottom:840.172800pt;}
.y5a{bottom:844.298667pt;}
.yf2{bottom:846.235467pt;}
.yc2{bottom:852.902133pt;}
.y94{bottom:856.172800pt;}
.y4e{bottom:856.641467pt;}
.y59{bottom:860.298667pt;}
.y5{bottom:867.772000pt;}
.y93{bottom:872.172800pt;}
.y58{bottom:876.298667pt;}
.yf1{bottom:878.235467pt;}
.y4d{bottom:879.301467pt;}
.yc1{bottom:884.902133pt;}
.y92{bottom:888.172800pt;}
.y57{bottom:892.298667pt;}
.yf0{bottom:894.235467pt;}
.y4c{bottom:898.500133pt;}
.yc0{bottom:900.902133pt;}
.y91{bottom:904.172800pt;}
.y4{bottom:907.772000pt;}
.y56{bottom:908.298667pt;}
.y86{bottom:910.965333pt;}
.ybf{bottom:916.902133pt;}
.y90{bottom:920.172800pt;}
.y55{bottom:924.298667pt;}
.yef{bottom:926.235467pt;}
.ybe{bottom:932.902133pt;}
.y8f{bottom:936.172800pt;}
.y54{bottom:940.298667pt;}
.yee{bottom:942.235467pt;}
.ybd{bottom:948.902133pt;}
.y8e{bottom:952.172800pt;}
.y53{bottom:956.298667pt;}
.ybc{bottom:964.902133pt;}
.y8d{bottom:968.172800pt;}
.y52{bottom:972.298667pt;}
.yed{bottom:974.235467pt;}
.ybb{bottom:980.902133pt;}
.y2{bottom:983.842000pt;}
.y8c{bottom:984.172800pt;}
.y51{bottom:988.298667pt;}
.yec{bottom:990.235467pt;}
.y8b{bottom:1000.172800pt;}
.y1{bottom:1007.842000pt;}
.yba{bottom:1012.902133pt;}
.y8a{bottom:1020.172800pt;}
.y50{bottom:1020.298667pt;}
.y3{bottom:1056.513733pt;}
.h7{height:38.986667pt;}
.h8{height:42.709333pt;}
.h9{height:42.885333pt;}
.hc{height:46.784000pt;}
.hb{height:50.682667pt;}
.h2{height:58.320000pt;}
.ha{height:58.480000pt;}
.h5{height:70.176000pt;}
.h6{height:85.770667pt;}
.h3{height:109.162667pt;}
.h4{height:116.960000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:56.692933pt;}
.x5{left:64.252000pt;}
.x7{left:75.586267pt;}
.x2{left:406.292933pt;}
.x6{left:410.078800pt;}
.x8{left:413.858267pt;}
.x4{left:420.201333pt;}
.x3{left:579.527600pt;}
}




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