
    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_29d646c35f331140759b5a53.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.895996;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_ec9722cb2e516be4fec76d59.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.861816;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_164606e28c6a9bc1c918af87.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.677734;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_dee4c30e1a4f5390e4af4c39.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.666504;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_d2896e8e5f66cf0603612788.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;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_a915f9b5ebc2de0bddca64a2.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.861816;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;}
.ls23{letter-spacing:-5.961600px;}
.ls4{letter-spacing:-5.438304px;}
.ls21{letter-spacing:-4.186368px;}
.ls2{letter-spacing:-3.186144px;}
.ls27{letter-spacing:-2.159424px;}
.lsc{letter-spacing:-1.444032px;}
.ls6{letter-spacing:-1.404288px;}
.ls1d{letter-spacing:-1.291680px;}
.ls10{letter-spacing:-1.278432px;}
.ls14{letter-spacing:-1.145952px;}
.ls2b{letter-spacing:-1.099584px;}
.lsd{letter-spacing:-0.980352px;}
.ls29{letter-spacing:-0.940608px;}
.ls16{letter-spacing:-0.828000px;}
.ls11{letter-spacing:-0.794880px;}
.ls1c{letter-spacing:-0.775008px;}
.ls15{letter-spacing:-0.728640px;}
.ls2c{letter-spacing:-0.715392px;}
.ls18{letter-spacing:-0.682272px;}
.ls13{letter-spacing:-0.662400px;}
.ls2e{letter-spacing:-0.649152px;}
.ls30{letter-spacing:-0.642528px;}
.ls1a{letter-spacing:-0.470304px;}
.ls26{letter-spacing:-0.423936px;}
.ls1b{letter-spacing:-0.390816px;}
.ls17{letter-spacing:-0.205344px;}
.ls24{letter-spacing:-0.178848px;}
.ls19{letter-spacing:-0.165600px;}
.ls25{letter-spacing:-0.152352px;}
.ls12{letter-spacing:-0.145728px;}
.ls5{letter-spacing:-0.132480px;}
.ls2a{letter-spacing:-0.125856px;}
.lsa{letter-spacing:-0.112608px;}
.lsb{letter-spacing:-0.105984px;}
.ls8{letter-spacing:-0.099360px;}
.ls3{letter-spacing:-0.092736px;}
.lsf{letter-spacing:-0.086112px;}
.ls22{letter-spacing:-0.079488px;}
.ls7{letter-spacing:-0.072864px;}
.ls28{letter-spacing:-0.066240px;}
.ls9{letter-spacing:-0.059616px;}
.ls2f{letter-spacing:-0.046368px;}
.ls2d{letter-spacing:-0.033120px;}
.lse{letter-spacing:-0.019872px;}
.ls1{letter-spacing:0.000000px;}
.ls1f{letter-spacing:0.549648px;}
.ls0{letter-spacing:4.092480px;}
.ls1e{letter-spacing:10.468224px;}
.ls20{letter-spacing:21.164544px;}
.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;}
}
.ws4{word-spacing:-14.970240px;}
.wsa{word-spacing:-14.950368px;}
.ws12{word-spacing:-14.884128px;}
.ws1{word-spacing:-14.877504px;}
.wsb{word-spacing:-14.870880px;}
.ws10{word-spacing:-14.864256px;}
.ws9{word-spacing:-14.857632px;}
.ws14{word-spacing:-14.844384px;}
.ws2{word-spacing:-14.837760px;}
.ws6{word-spacing:-14.824512px;}
.wsf{word-spacing:-14.764896px;}
.ws11{word-spacing:-14.546304px;}
.ws16{word-spacing:-14.327712px;}
.ws8{word-spacing:-14.287968px;}
.ws15{word-spacing:-14.254848px;}
.wsc{word-spacing:-14.175360px;}
.ws5{word-spacing:-13.989888px;}
.ws13{word-spacing:-13.870656px;}
.ws7{word-spacing:-13.824288px;}
.ws3{word-spacing:-13.565952px;}
.ws0{word-spacing:-11.784096px;}
.wse{word-spacing:-10.783872px;}
.wsd{word-spacing:0.000000px;}
._c{margin-left:-7.021440px;}
._22{margin-left:-5.084640px;}
._4{margin-left:-3.709440px;}
._3{margin-left:-1.936800px;}
._2{width:1.258560px;}
._0{width:3.047040px;}
._a{width:4.255200px;}
._1{width:5.365440px;}
._24{width:6.573600px;}
._7{width:8.112960px;}
._8{width:9.491040px;}
._14{width:10.598400px;}
._26{width:11.648016px;}
._16{width:12.711600px;}
._11{width:13.813632px;}
._20{width:14.904000px;}
._d{width:16.096320px;}
._e{width:17.951040px;}
._2f{width:18.992160px;}
._10{width:20.666880px;}
._f{width:21.792960px;}
._13{width:23.184000px;}
._1a{width:24.789600px;}
._28{width:25.965360px;}
._5{width:27.556560px;}
._6{width:28.813680px;}
._21{width:30.471840px;}
._23{width:31.744800px;}
._b{width:32.855040px;}
._19{width:34.195680px;}
._9{width:35.785440px;}
._33{width:36.993600px;}
._1c{width:39.232800px;}
._1b{width:40.305600px;}
._1f{width:41.469120px;}
._15{width:43.188480px;}
._25{width:45.705600px;}
._1e{width:47.544480px;}
._1d{width:48.834720px;}
._18{width:50.806080px;}
._17{width:52.080480px;}
._27{width:53.206560px;}
._29{width:55.442880px;}
._2a{width:56.584800px;}
._2b{width:59.035680px;}
._30{width:62.928000px;}
._31{width:64.003680px;}
._12{width:66.703680px;}
._2c{width:67.711104px;}
._32{width:81.607680px;}
._2d{width:116.913600px;}
._2e{width:118.386720px;}
.fc5{color:rgb(5,99,193);}
.fc3{color:transparent;}
.fc4{color:rgb(166,166,166);}
.fc2{color:rgb(38,38,38);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs2{font-size:36.000000px;}
.fs3{font-size:54.720000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.ye{bottom:4.980000px;}
.y9{bottom:5.100000px;}
.yd{bottom:5.280000px;}
.y7{bottom:5.760000px;}
.y10{bottom:5.820000px;}
.yb{bottom:5.940000px;}
.y13{bottom:57.600000px;}
.y12{bottom:77.760000px;}
.y5{bottom:85.260000px;}
.y3{bottom:86.640000px;}
.y2{bottom:87.360000px;}
.y9e{bottom:98.280000px;}
.y41{bottom:106.560000px;}
.y9d{bottom:118.800000px;}
.y40{bottom:126.720000px;}
.y9c{bottom:141.120000px;}
.y3f{bottom:146.520000px;}
.y9b{bottom:161.280000px;}
.y3e{bottom:166.680000px;}
.y9a{bottom:181.080000px;}
.y54{bottom:186.840000px;}
.y3d{bottom:191.520000px;}
.y99{bottom:201.600000px;}
.y53{bottom:207.000000px;}
.y3c{bottom:211.680000px;}
.y52{bottom:227.160000px;}
.y3b{bottom:231.840000px;}
.y83{bottom:246.960000px;}
.y51{bottom:247.320000px;}
.y3a{bottom:252.000000px;}
.y98{bottom:258.120000px;}
.y82{bottom:267.120000px;}
.y50{bottom:267.480000px;}
.y39{bottom:272.160000px;}
.y97{bottom:282.960000px;}
.y81{bottom:287.280000px;}
.y4f{bottom:287.640000px;}
.y38{bottom:292.320000px;}
.y80{bottom:307.440000px;}
.y4e{bottom:312.120000px;}
.y37{bottom:312.480000px;}
.y7f{bottom:327.600000px;}
.y36{bottom:332.280000px;}
.y7e{bottom:347.760000px;}
.y35{bottom:352.440000px;}
.y96{bottom:356.760000px;}
.y7d{bottom:367.920000px;}
.y34{bottom:372.600000px;}
.y95{bottom:376.920000px;}
.y7c{bottom:388.080000px;}
.y33{bottom:392.760000px;}
.y94{bottom:397.080000px;}
.y7b{bottom:408.240000px;}
.y32{bottom:412.920000px;}
.y93{bottom:417.240000px;}
.y7a{bottom:428.400000px;}
.y31{bottom:433.080000px;}
.y92{bottom:437.400000px;}
.y79{bottom:452.880000px;}
.y30{bottom:453.240000px;}
.y91{bottom:457.560000px;}
.y78{bottom:473.040000px;}
.y2f{bottom:473.400000px;}
.y90{bottom:477.720000px;}
.y77{bottom:493.200000px;}
.y2e{bottom:493.560000px;}
.y8f{bottom:497.880000px;}
.y76{bottom:513.360000px;}
.y4d{bottom:513.720000px;}
.y2d{bottom:518.040000px;}
.y75{bottom:533.520000px;}
.y4c{bottom:533.880000px;}
.y2c{bottom:538.200000px;}
.y74{bottom:553.680000px;}
.y4b{bottom:554.040000px;}
.y2b{bottom:558.360000px;}
.y73{bottom:573.840000px;}
.y4a{bottom:574.200000px;}
.y2a{bottom:578.520000px;}
.y72{bottom:594.000000px;}
.y49{bottom:594.360000px;}
.y29{bottom:598.680000px;}
.y71{bottom:614.160000px;}
.y48{bottom:614.520000px;}
.y28{bottom:618.840000px;}
.y70{bottom:634.320000px;}
.y47{bottom:634.680000px;}
.y8e{bottom:638.640000px;}
.y27{bottom:639.000000px;}
.y46{bottom:654.840000px;}
.y6f{bottom:658.800000px;}
.y26{bottom:659.160000px;}
.y45{bottom:675.000000px;}
.y6e{bottom:678.960000px;}
.y25{bottom:679.320000px;}
.y44{bottom:695.160000px;}
.y6d{bottom:699.120000px;}
.y24{bottom:699.480000px;}
.y43{bottom:715.320000px;}
.y6c{bottom:719.280000px;}
.y23{bottom:719.640000px;}
.y8d{bottom:723.960000px;}
.y42{bottom:735.120000px;}
.y6b{bottom:739.440000px;}
.y22{bottom:739.800000px;}
.y8c{bottom:744.120000px;}
.y6a{bottom:759.600000px;}
.y21{bottom:759.960000px;}
.y8b{bottom:764.280000px;}
.y69{bottom:779.760000px;}
.y20{bottom:780.120000px;}
.y8a{bottom:784.440000px;}
.y68{bottom:799.920000px;}
.y1f{bottom:800.280000px;}
.y89{bottom:804.600000px;}
.y1e{bottom:820.440000px;}
.y67{bottom:824.400000px;}
.y88{bottom:824.760000px;}
.y1d{bottom:840.600000px;}
.y66{bottom:844.560000px;}
.y1c{bottom:860.760000px;}
.y65{bottom:864.720000px;}
.ya6{bottom:879.840000px;}
.y1b{bottom:880.920000px;}
.y64{bottom:884.880000px;}
.y1a{bottom:901.080000px;}
.ya5{bottom:904.680000px;}
.y63{bottom:905.040000px;}
.y19{bottom:921.240000px;}
.y62{bottom:925.200000px;}
.ya4{bottom:929.160000px;}
.y87{bottom:929.880000px;}
.y18{bottom:941.040000px;}
.y61{bottom:945.360000px;}
.y86{bottom:950.040000px;}
.ya3{bottom:954.000000px;}
.y17{bottom:961.200000px;}
.y60{bottom:965.520000px;}
.y85{bottom:970.200000px;}
.ya2{bottom:974.160000px;}
.y16{bottom:981.360000px;}
.y5f{bottom:985.680000px;}
.y84{bottom:990.360000px;}
.ya1{bottom:994.320000px;}
.y15{bottom:1006.560000px;}
.y5e{bottom:1010.520000px;}
.ya0{bottom:1014.120000px;}
.y5d{bottom:1030.680000px;}
.y14{bottom:1032.840000px;}
.y9f{bottom:1034.280000px;}
.y5c{bottom:1050.480000px;}
.y5b{bottom:1070.640000px;}
.y11{bottom:1073.160000px;}
.y1{bottom:1083.000000px;}
.yf{bottom:1087.500000px;}
.y5a{bottom:1090.800000px;}
.y4{bottom:1108.500000px;}
.y59{bottom:1110.960000px;}
.yc{bottom:1128.000000px;}
.y58{bottom:1131.120000px;}
.ya{bottom:1147.500000px;}
.y57{bottom:1151.280000px;}
.y8{bottom:1168.500000px;}
.y56{bottom:1180.800000px;}
.ya8{bottom:1182.960000px;}
.y6{bottom:1188.000000px;}
.y55{bottom:1193.760000px;}
.ya7{bottom:1201.320000px;}
.h7{height:21.000000px;}
.h5{height:22.500000px;}
.h9{height:23.994141px;}
.ha{height:36.471094px;}
.h6{height:45.281250px;}
.h3{height:47.545313px;}
.h8{height:47.988281px;}
.h4{height:102.000000px;}
.h2{height:179.880000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:22.500000px;}
.w6{width:76.500000px;}
.w4{width:225.000000px;}
.w5{width:277.500000px;}
.w2{width:330.000000px;}
.w3{width:375.300000px;}
.w8{width:384.000000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x5{left:9.239856px;}
.x1{left:11.519899px;}
.x4{left:84.000000px;}
.x13{left:148.784904px;}
.xb{left:171.102528px;}
.x12{left:233.689464px;}
.x3{left:325.500000px;}
.x6{left:360.000000px;}
.xa{left:406.895400px;}
.xd{left:426.835440px;}
.x7{left:435.000000px;}
.x9{left:438.022080px;}
.xe{left:446.384880px;}
.x8{left:456.000000px;}
.xc{left:473.040000px;}
.x2{left:517.500000px;}
.x10{left:661.824000px;}
.xf{left:700.367040px;}
.x11{left:709.173000px;}
.x15{left:750.240000px;}
.x14{left:807.809760px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls23{letter-spacing:-5.299200pt;}
.ls4{letter-spacing:-4.834048pt;}
.ls21{letter-spacing:-3.721216pt;}
.ls2{letter-spacing:-2.832128pt;}
.ls27{letter-spacing:-1.919488pt;}
.lsc{letter-spacing:-1.283584pt;}
.ls6{letter-spacing:-1.248256pt;}
.ls1d{letter-spacing:-1.148160pt;}
.ls10{letter-spacing:-1.136384pt;}
.ls14{letter-spacing:-1.018624pt;}
.ls2b{letter-spacing:-0.977408pt;}
.lsd{letter-spacing:-0.871424pt;}
.ls29{letter-spacing:-0.836096pt;}
.ls16{letter-spacing:-0.736000pt;}
.ls11{letter-spacing:-0.706560pt;}
.ls1c{letter-spacing:-0.688896pt;}
.ls15{letter-spacing:-0.647680pt;}
.ls2c{letter-spacing:-0.635904pt;}
.ls18{letter-spacing:-0.606464pt;}
.ls13{letter-spacing:-0.588800pt;}
.ls2e{letter-spacing:-0.577024pt;}
.ls30{letter-spacing:-0.571136pt;}
.ls1a{letter-spacing:-0.418048pt;}
.ls26{letter-spacing:-0.376832pt;}
.ls1b{letter-spacing:-0.347392pt;}
.ls17{letter-spacing:-0.182528pt;}
.ls24{letter-spacing:-0.158976pt;}
.ls19{letter-spacing:-0.147200pt;}
.ls25{letter-spacing:-0.135424pt;}
.ls12{letter-spacing:-0.129536pt;}
.ls5{letter-spacing:-0.117760pt;}
.ls2a{letter-spacing:-0.111872pt;}
.lsa{letter-spacing:-0.100096pt;}
.lsb{letter-spacing:-0.094208pt;}
.ls8{letter-spacing:-0.088320pt;}
.ls3{letter-spacing:-0.082432pt;}
.lsf{letter-spacing:-0.076544pt;}
.ls22{letter-spacing:-0.070656pt;}
.ls7{letter-spacing:-0.064768pt;}
.ls28{letter-spacing:-0.058880pt;}
.ls9{letter-spacing:-0.052992pt;}
.ls2f{letter-spacing:-0.041216pt;}
.ls2d{letter-spacing:-0.029440pt;}
.lse{letter-spacing:-0.017664pt;}
.ls1{letter-spacing:0.000000pt;}
.ls1f{letter-spacing:0.488576pt;}
.ls0{letter-spacing:3.637760pt;}
.ls1e{letter-spacing:9.305088pt;}
.ls20{letter-spacing:18.812928pt;}
.ws4{word-spacing:-13.306880pt;}
.wsa{word-spacing:-13.289216pt;}
.ws12{word-spacing:-13.230336pt;}
.ws1{word-spacing:-13.224448pt;}
.wsb{word-spacing:-13.218560pt;}
.ws10{word-spacing:-13.212672pt;}
.ws9{word-spacing:-13.206784pt;}
.ws14{word-spacing:-13.195008pt;}
.ws2{word-spacing:-13.189120pt;}
.ws6{word-spacing:-13.177344pt;}
.wsf{word-spacing:-13.124352pt;}
.ws11{word-spacing:-12.930048pt;}
.ws16{word-spacing:-12.735744pt;}
.ws8{word-spacing:-12.700416pt;}
.ws15{word-spacing:-12.670976pt;}
.wsc{word-spacing:-12.600320pt;}
.ws5{word-spacing:-12.435456pt;}
.ws13{word-spacing:-12.329472pt;}
.ws7{word-spacing:-12.288256pt;}
.ws3{word-spacing:-12.058624pt;}
.ws0{word-spacing:-10.474752pt;}
.wse{word-spacing:-9.585664pt;}
.wsd{word-spacing:0.000000pt;}
._c{margin-left:-6.241280pt;}
._22{margin-left:-4.519680pt;}
._4{margin-left:-3.297280pt;}
._3{margin-left:-1.721600pt;}
._2{width:1.118720pt;}
._0{width:2.708480pt;}
._a{width:3.782400pt;}
._1{width:4.769280pt;}
._24{width:5.843200pt;}
._7{width:7.211520pt;}
._8{width:8.436480pt;}
._14{width:9.420800pt;}
._26{width:10.353792pt;}
._16{width:11.299200pt;}
._11{width:12.278784pt;}
._20{width:13.248000pt;}
._d{width:14.307840pt;}
._e{width:15.956480pt;}
._2f{width:16.881920pt;}
._10{width:18.370560pt;}
._f{width:19.371520pt;}
._13{width:20.608000pt;}
._1a{width:22.035200pt;}
._28{width:23.080320pt;}
._5{width:24.494720pt;}
._6{width:25.612160pt;}
._21{width:27.086080pt;}
._23{width:28.217600pt;}
._b{width:29.204480pt;}
._19{width:30.396160pt;}
._9{width:31.809280pt;}
._33{width:32.883200pt;}
._1c{width:34.873600pt;}
._1b{width:35.827200pt;}
._1f{width:36.861440pt;}
._15{width:38.389760pt;}
._25{width:40.627200pt;}
._1e{width:42.261760pt;}
._1d{width:43.408640pt;}
._18{width:45.160960pt;}
._17{width:46.293760pt;}
._27{width:47.294720pt;}
._29{width:49.282560pt;}
._2a{width:50.297600pt;}
._2b{width:52.476160pt;}
._30{width:55.936000pt;}
._31{width:56.892160pt;}
._12{width:59.292160pt;}
._2c{width:60.187648pt;}
._32{width:72.540160pt;}
._2d{width:103.923200pt;}
._2e{width:105.232640pt;}
.fs2{font-size:32.000000pt;}
.fs3{font-size:48.640000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.ye{bottom:4.426667pt;}
.y9{bottom:4.533333pt;}
.yd{bottom:4.693333pt;}
.y7{bottom:5.120000pt;}
.y10{bottom:5.173333pt;}
.yb{bottom:5.280000pt;}
.y13{bottom:51.200000pt;}
.y12{bottom:69.120000pt;}
.y5{bottom:75.786667pt;}
.y3{bottom:77.013333pt;}
.y2{bottom:77.653333pt;}
.y9e{bottom:87.360000pt;}
.y41{bottom:94.720000pt;}
.y9d{bottom:105.600000pt;}
.y40{bottom:112.640000pt;}
.y9c{bottom:125.440000pt;}
.y3f{bottom:130.240000pt;}
.y9b{bottom:143.360000pt;}
.y3e{bottom:148.160000pt;}
.y9a{bottom:160.960000pt;}
.y54{bottom:166.080000pt;}
.y3d{bottom:170.240000pt;}
.y99{bottom:179.200000pt;}
.y53{bottom:184.000000pt;}
.y3c{bottom:188.160000pt;}
.y52{bottom:201.920000pt;}
.y3b{bottom:206.080000pt;}
.y83{bottom:219.520000pt;}
.y51{bottom:219.840000pt;}
.y3a{bottom:224.000000pt;}
.y98{bottom:229.440000pt;}
.y82{bottom:237.440000pt;}
.y50{bottom:237.760000pt;}
.y39{bottom:241.920000pt;}
.y97{bottom:251.520000pt;}
.y81{bottom:255.360000pt;}
.y4f{bottom:255.680000pt;}
.y38{bottom:259.840000pt;}
.y80{bottom:273.280000pt;}
.y4e{bottom:277.440000pt;}
.y37{bottom:277.760000pt;}
.y7f{bottom:291.200000pt;}
.y36{bottom:295.360000pt;}
.y7e{bottom:309.120000pt;}
.y35{bottom:313.280000pt;}
.y96{bottom:317.120000pt;}
.y7d{bottom:327.040000pt;}
.y34{bottom:331.200000pt;}
.y95{bottom:335.040000pt;}
.y7c{bottom:344.960000pt;}
.y33{bottom:349.120000pt;}
.y94{bottom:352.960000pt;}
.y7b{bottom:362.880000pt;}
.y32{bottom:367.040000pt;}
.y93{bottom:370.880000pt;}
.y7a{bottom:380.800000pt;}
.y31{bottom:384.960000pt;}
.y92{bottom:388.800000pt;}
.y79{bottom:402.560000pt;}
.y30{bottom:402.880000pt;}
.y91{bottom:406.720000pt;}
.y78{bottom:420.480000pt;}
.y2f{bottom:420.800000pt;}
.y90{bottom:424.640000pt;}
.y77{bottom:438.400000pt;}
.y2e{bottom:438.720000pt;}
.y8f{bottom:442.560000pt;}
.y76{bottom:456.320000pt;}
.y4d{bottom:456.640000pt;}
.y2d{bottom:460.480000pt;}
.y75{bottom:474.240000pt;}
.y4c{bottom:474.560000pt;}
.y2c{bottom:478.400000pt;}
.y74{bottom:492.160000pt;}
.y4b{bottom:492.480000pt;}
.y2b{bottom:496.320000pt;}
.y73{bottom:510.080000pt;}
.y4a{bottom:510.400000pt;}
.y2a{bottom:514.240000pt;}
.y72{bottom:528.000000pt;}
.y49{bottom:528.320000pt;}
.y29{bottom:532.160000pt;}
.y71{bottom:545.920000pt;}
.y48{bottom:546.240000pt;}
.y28{bottom:550.080000pt;}
.y70{bottom:563.840000pt;}
.y47{bottom:564.160000pt;}
.y8e{bottom:567.680000pt;}
.y27{bottom:568.000000pt;}
.y46{bottom:582.080000pt;}
.y6f{bottom:585.600000pt;}
.y26{bottom:585.920000pt;}
.y45{bottom:600.000000pt;}
.y6e{bottom:603.520000pt;}
.y25{bottom:603.840000pt;}
.y44{bottom:617.920000pt;}
.y6d{bottom:621.440000pt;}
.y24{bottom:621.760000pt;}
.y43{bottom:635.840000pt;}
.y6c{bottom:639.360000pt;}
.y23{bottom:639.680000pt;}
.y8d{bottom:643.520000pt;}
.y42{bottom:653.440000pt;}
.y6b{bottom:657.280000pt;}
.y22{bottom:657.600000pt;}
.y8c{bottom:661.440000pt;}
.y6a{bottom:675.200000pt;}
.y21{bottom:675.520000pt;}
.y8b{bottom:679.360000pt;}
.y69{bottom:693.120000pt;}
.y20{bottom:693.440000pt;}
.y8a{bottom:697.280000pt;}
.y68{bottom:711.040000pt;}
.y1f{bottom:711.360000pt;}
.y89{bottom:715.200000pt;}
.y1e{bottom:729.280000pt;}
.y67{bottom:732.800000pt;}
.y88{bottom:733.120000pt;}
.y1d{bottom:747.200000pt;}
.y66{bottom:750.720000pt;}
.y1c{bottom:765.120000pt;}
.y65{bottom:768.640000pt;}
.ya6{bottom:782.080000pt;}
.y1b{bottom:783.040000pt;}
.y64{bottom:786.560000pt;}
.y1a{bottom:800.960000pt;}
.ya5{bottom:804.160000pt;}
.y63{bottom:804.480000pt;}
.y19{bottom:818.880000pt;}
.y62{bottom:822.400000pt;}
.ya4{bottom:825.920000pt;}
.y87{bottom:826.560000pt;}
.y18{bottom:836.480000pt;}
.y61{bottom:840.320000pt;}
.y86{bottom:844.480000pt;}
.ya3{bottom:848.000000pt;}
.y17{bottom:854.400000pt;}
.y60{bottom:858.240000pt;}
.y85{bottom:862.400000pt;}
.ya2{bottom:865.920000pt;}
.y16{bottom:872.320000pt;}
.y5f{bottom:876.160000pt;}
.y84{bottom:880.320000pt;}
.ya1{bottom:883.840000pt;}
.y15{bottom:894.720000pt;}
.y5e{bottom:898.240000pt;}
.ya0{bottom:901.440000pt;}
.y5d{bottom:916.160000pt;}
.y14{bottom:918.080000pt;}
.y9f{bottom:919.360000pt;}
.y5c{bottom:933.760000pt;}
.y5b{bottom:951.680000pt;}
.y11{bottom:953.920000pt;}
.y1{bottom:962.666667pt;}
.yf{bottom:966.666667pt;}
.y5a{bottom:969.600000pt;}
.y4{bottom:985.333333pt;}
.y59{bottom:987.520000pt;}
.yc{bottom:1002.666667pt;}
.y58{bottom:1005.440000pt;}
.ya{bottom:1020.000000pt;}
.y57{bottom:1023.360000pt;}
.y8{bottom:1038.666667pt;}
.y56{bottom:1049.600000pt;}
.ya8{bottom:1051.520000pt;}
.y6{bottom:1056.000000pt;}
.y55{bottom:1061.120000pt;}
.ya7{bottom:1067.840000pt;}
.h7{height:18.666667pt;}
.h5{height:20.000000pt;}
.h9{height:21.328125pt;}
.ha{height:32.418750pt;}
.h6{height:40.250000pt;}
.h3{height:42.262500pt;}
.h8{height:42.656250pt;}
.h4{height:90.666667pt;}
.h2{height:159.893333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:20.000000pt;}
.w6{width:68.000000pt;}
.w4{width:200.000000pt;}
.w5{width:246.666667pt;}
.w2{width:293.333333pt;}
.w3{width:333.600000pt;}
.w8{width:341.333333pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x5{left:8.213205pt;}
.x1{left:10.239910pt;}
.x4{left:74.666667pt;}
.x13{left:132.253248pt;}
.xb{left:152.091136pt;}
.x12{left:207.723968pt;}
.x3{left:289.333333pt;}
.x6{left:320.000000pt;}
.xa{left:361.684800pt;}
.xd{left:379.409280pt;}
.x7{left:386.666667pt;}
.x9{left:389.352960pt;}
.xe{left:396.786560pt;}
.x8{left:405.333333pt;}
.xc{left:420.480000pt;}
.x2{left:460.000000pt;}
.x10{left:588.288000pt;}
.xf{left:622.548480pt;}
.x11{left:630.376000pt;}
.x15{left:666.880000pt;}
.x14{left:718.053120pt;}
}




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