
    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_5910435dc1fa9244fcb7bafd.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.777000;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_6509987b4b71c43f03b0fe22.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.922000;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_26329e2491d44773cad9f1ab.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.453000;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_6b2206bc5ef1c59cfe5a4387.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.451000;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_d84d056304e951b55b60c4ac.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;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_02de8211c45d26d1afefc3e0.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.901000;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_8a3c8a821170466f4273b0ee.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.901000;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_8162bfdacd1bfbb4b9eb7863.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.921000;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:ff9;src:url('chunks/assets/font_d1b5f23e33a18936399f51bf.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.389000;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);}
.v2{vertical-align:-23.748000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:31.236000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:2.986053px;}
.ls3{letter-spacing:29.912752px;}
.ls2{letter-spacing:32.727300px;}
.ls4{letter-spacing:35.476393px;}
.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;}
}
.wsf{word-spacing:-22.416000px;}
.ws1a{word-spacing:-18.183288px;}
.ws17{word-spacing:-3.652367px;}
.ws28{word-spacing:-3.128730px;}
.ws22{word-spacing:-2.997821px;}
.ws19{word-spacing:-2.736002px;}
.ws18{word-spacing:-2.016002px;}
.ws23{word-spacing:-0.903273px;}
.ws3b{word-spacing:-0.059776px;}
.ws24{word-spacing:-0.052364px;}
.wse{word-spacing:0.000000px;}
.ws29{word-spacing:0.602182px;}
.ws9{word-spacing:1.256728px;}
.ws36{word-spacing:1.453092px;}
.ws20{word-spacing:2.696730px;}
.ws2d{word-spacing:3.285821px;}
.ws39{word-spacing:3.299613px;}
.ws3d{word-spacing:3.359389px;}
.ws5{word-spacing:3.613094px;}
.ws11{word-spacing:3.678549px;}
.ws1f{word-spacing:3.874912px;}
.ws25{word-spacing:4.071276px;}
.ws10{word-spacing:4.162913px;}
.ws13{word-spacing:4.228367px;}
.ws15{word-spacing:4.483200px;}
.ws2a{word-spacing:4.594913px;}
.ws2c{word-spacing:5.184004px;}
.ws27{word-spacing:5.445823px;}
.ws38{word-spacing:5.576732px;}
.ws8{word-spacing:5.707641px;}
.ws1e{word-spacing:5.838550px;}
.ws1b{word-spacing:5.904005px;}
.ws2e{word-spacing:6.624006px;}
.wsb{word-spacing:6.951279px;}
.ws1c{word-spacing:7.344006px;}
.ws37{word-spacing:7.474915px;}
.ws34{word-spacing:8.391280px;}
.ws2f{word-spacing:8.849462px;}
.ws30{word-spacing:9.504008px;}
.wsa{word-spacing:10.354918px;}
.ws35{word-spacing:10.813100px;}
.ws6{word-spacing:10.878555px;}
.ws26{word-spacing:12.318556px;}
.wsc{word-spacing:12.973102px;}
.wsd{word-spacing:13.300375px;}
.ws32{word-spacing:13.824012px;}
.ws16{word-spacing:17.031287px;}
.ws3c{word-spacing:21.280114px;}
.ws3a{word-spacing:21.339889px;}
.ws3{word-spacing:26.253619px;}
.ws1d{word-spacing:26.770931px;}
.ws21{word-spacing:30.370934px;}
.ws0{word-spacing:31.322414px;}
.ws4{word-spacing:31.504255px;}
.ws14{word-spacing:39.639306px;}
.ws31{word-spacing:39.796397px;}
.ws12{word-spacing:48.711313px;}
.ws2{word-spacing:54.283749px;}
.ws2b{word-spacing:54.366591px;}
.ws1{word-spacing:54.432472px;}
.ws33{word-spacing:58.281600px;}
.ws7{word-spacing:59.230136px;}
._5{margin-left:-7.005431px;}
._2{margin-left:-5.498186px;}
._3{margin-left:-4.381880px;}
._21{margin-left:-3.338185px;}
._0{margin-left:-2.223667px;}
._7{margin-left:-1.181761px;}
._6{width:1.181761px;}
._1{width:2.223667px;}
._1a{width:4.776397px;}
._1e{width:17.996437px;}
._1f{width:25.325563px;}
._4{width:28.341842px;}
._20{width:29.971050px;}
._25{width:31.676448px;}
._27{width:32.697253px;}
._24{width:35.081876px;}
._23{width:46.669130px;}
._26{width:51.052799px;}
._8{width:56.945502px;}
._9{width:58.123685px;}
._a{width:60.545505px;}
._f{width:66.894601px;}
._22{width:75.272790px;}
._1d{width:80.697600px;}
._e{width:866.487995px;}
._1b{width:1153.833689px;}
._11{width:1196.833783px;}
._13{width:1203.317366px;}
._d{width:1367.473925px;}
._c{width:1569.532275px;}
._12{width:1571.954095px;}
._19{width:1611.097735px;}
._17{width:1618.692258px;}
._10{width:1622.159563px;}
._18{width:1726.950588px;}
._15{width:1800.852410px;}
._16{width:1856.879758px;}
._b{width:1875.534319px;}
._14{width:1927.245242px;}
._1c{width:2134.278142px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:47.820600px;}
.fs0{font-size:59.775600px;}
.fs5{font-size:65.454600px;}
.fs2{font-size:71.731200px;}
.fs3{font-size:86.077200px;}
.fs1{font-size:148.722600px;}
.y0{bottom:0.000000px;}
.y32{bottom:93.813000px;}
.y31{bottom:176.005500px;}
.y8a{bottom:183.489000px;}
.y30{bottom:196.329000px;}
.y6c{bottom:199.309500px;}
.y89{bottom:203.812500px;}
.y2f{bottom:216.652500px;}
.y6b{bottom:219.633000px;}
.y88{bottom:224.136000px;}
.y2e{bottom:236.976000px;}
.y6a{bottom:239.956500px;}
.y87{bottom:244.461000px;}
.y2d{bottom:257.301000px;}
.y86{bottom:264.784500px;}
.y69{bottom:268.735500px;}
.y4e{bottom:274.351500px;}
.y2c{bottom:277.624500px;}
.y85{bottom:285.108000px;}
.y4d{bottom:294.675000px;}
.y68{bottom:305.263500px;}
.y84{bottom:305.431500px;}
.y2b{bottom:313.683000px;}
.y67{bottom:325.587000px;}
.y4c{bottom:328.449000px;}
.y83{bottom:341.959500px;}
.y66{bottom:354.364500px;}
.y2a{bottom:358.443000px;}
.y4b{bottom:362.221500px;}
.y29{bottom:378.766500px;}
.y82{bottom:387.540000px;}
.y65{bottom:390.894000px;}
.y4a{bottom:395.995500px;}
.y28{bottom:399.090000px;}
.y81{bottom:407.865000px;}
.yf{bottom:412.959000px;}
.y27{bottom:419.415000px;}
.y64{bottom:424.666500px;}
.y49{bottom:429.768000px;}
.ye{bottom:433.282500px;}
.y26{bottom:439.738500px;}
.y80{bottom:441.637500px;}
.yd{bottom:453.606000px;}
.y63{bottom:458.440500px;}
.y48{bottom:458.547000px;}
.y25{bottom:460.062000px;}
.yc{bottom:473.929500px;}
.y7f{bottom:475.411500px;}
.y24{bottom:480.385500px;}
.y62{bottom:492.213000px;}
.yb{bottom:494.254500px;}
.y47{bottom:495.075000px;}
.y23{bottom:500.709000px;}
.y7e{bottom:509.184000px;}
.ya{bottom:514.578000px;}
.y46{bottom:515.398500px;}
.y61{bottom:525.987000px;}
.y9{bottom:534.901500px;}
.y22{bottom:536.769000px;}
.y7d{bottom:542.958000px;}
.y60{bottom:546.310500px;}
.y45{bottom:551.928000px;}
.y7c{bottom:563.281500px;}
.y8{bottom:574.653000px;}
.y5f{bottom:575.089500px;}
.y21{bottom:581.529000px;}
.y44{bottom:597.508500px;}
.y7b{bottom:599.809500px;}
.y7{bottom:611.374500px;}
.y5e{bottom:611.617500px;}
.y43{bottom:617.832000px;}
.y20{bottom:626.737500px;}
.y5d{bottom:631.941000px;}
.y42{bottom:638.155500px;}
.y6{bottom:640.107000px;}
.y7a{bottom:645.390000px;}
.y41{bottom:658.479000px;}
.y1f{bottom:663.424500px;}
.y79{bottom:665.715000px;}
.y5c{bottom:668.469000px;}
.y40{bottom:692.253000px;}
.y78{bottom:699.487500px;}
.y1e{bottom:700.111500px;}
.y5b{bottom:714.049500px;}
.y3f{bottom:726.025500px;}
.y77{bottom:733.261500px;}
.y1d{bottom:736.800000px;}
.y5a{bottom:747.823500px;}
.y1c{bottom:757.123500px;}
.y3e{bottom:759.799500px;}
.y5{bottom:764.628000px;}
.y76{bottom:767.034000px;}
.y1b{bottom:777.447000px;}
.y59{bottom:781.596000px;}
.y3d{bottom:793.572000px;}
.y1a{bottom:797.770500px;}
.y75{bottom:800.808000px;}
.y4{bottom:801.909000px;}
.y58{bottom:815.370000px;}
.y19{bottom:818.094000px;}
.y3c{bottom:827.346000px;}
.y74{bottom:837.336000px;}
.y18{bottom:838.419000px;}
.y3{bottom:846.741000px;}
.y3b{bottom:847.669500px;}
.y57{bottom:849.144000px;}
.y56{bottom:869.467500px;}
.y17{bottom:875.106000px;}
.y73{bottom:882.916500px;}
.y3a{bottom:884.197500px;}
.y2{bottom:891.573000px;}
.y16{bottom:895.429500px;}
.y55{bottom:898.245000px;}
.y72{bottom:903.240000px;}
.y15{bottom:915.753000px;}
.y71{bottom:923.563500px;}
.y39{bottom:929.778000px;}
.y54{bottom:934.773000px;}
.y14{bottom:936.078000px;}
.y38{bottom:950.103000px;}
.y70{bottom:952.342500px;}
.y53{bottom:968.547000px;}
.y13{bottom:972.765000px;}
.y90{bottom:980.224500px;}
.y37{bottom:983.875500px;}
.y6f{bottom:988.870500px;}
.y8f{bottom:998.157000px;}
.y52{bottom:1002.321000px;}
.y12{bottom:1009.452000px;}
.y36{bottom:1017.649500px;}
.y6e{bottom:1022.644500px;}
.y8e{bottom:1023.561000px;}
.y51{bottom:1036.093500px;}
.y8d{bottom:1041.495000px;}
.y11{bottom:1046.139000px;}
.y35{bottom:1051.422000px;}
.y6d{bottom:1056.417000px;}
.y8c{bottom:1066.899000px;}
.y50{bottom:1069.867500px;}
.y10{bottom:1082.827500px;}
.y8b{bottom:1084.831500px;}
.y34{bottom:1085.196000px;}
.y1{bottom:1087.587000px;}
.y4f{bottom:1090.191000px;}
.y33{bottom:1118.968500px;}
.h6{height:25.342950px;}
.h2{height:41.484266px;}
.ha{height:44.831700px;}
.h9{height:45.818220px;}
.h7{height:49.090950px;}
.h8{height:50.211840px;}
.h4{height:51.359539px;}
.h5{height:61.631275px;}
.h3{height:106.485382px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:127.426500px;}
.x3{left:131.838000px;}
.x8{left:137.107500px;}
.x4{left:139.332000px;}
.x5{left:151.972500px;}
.x9{left:161.064000px;}
.x6{left:164.010000px;}
.x1{left:286.581000px;}
.x7{left:438.466500px;}
@media print{
.v2{vertical-align:-21.109333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:27.765333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:2.654270pt;}
.ls3{letter-spacing:26.589113pt;}
.ls2{letter-spacing:29.090933pt;}
.ls4{letter-spacing:31.534572pt;}
.wsf{word-spacing:-19.925333pt;}
.ws1a{word-spacing:-16.162923pt;}
.ws17{word-spacing:-3.246548pt;}
.ws28{word-spacing:-2.781093pt;}
.ws22{word-spacing:-2.664729pt;}
.ws19{word-spacing:-2.432002pt;}
.ws18{word-spacing:-1.792001pt;}
.ws23{word-spacing:-0.802910pt;}
.ws3b{word-spacing:-0.053134pt;}
.ws24{word-spacing:-0.046545pt;}
.wse{word-spacing:0.000000pt;}
.ws29{word-spacing:0.535273pt;}
.ws9{word-spacing:1.117092pt;}
.ws36{word-spacing:1.291637pt;}
.ws20{word-spacing:2.397093pt;}
.ws2d{word-spacing:2.920730pt;}
.ws39{word-spacing:2.932989pt;}
.ws3d{word-spacing:2.986123pt;}
.ws5{word-spacing:3.211639pt;}
.ws11{word-spacing:3.269821pt;}
.ws1f{word-spacing:3.444367pt;}
.ws25{word-spacing:3.618912pt;}
.ws10{word-spacing:3.700367pt;}
.ws13{word-spacing:3.758549pt;}
.ws15{word-spacing:3.985067pt;}
.ws2a{word-spacing:4.084367pt;}
.ws2c{word-spacing:4.608004pt;}
.ws27{word-spacing:4.840731pt;}
.ws38{word-spacing:4.957095pt;}
.ws8{word-spacing:5.073459pt;}
.ws1e{word-spacing:5.189823pt;}
.ws1b{word-spacing:5.248004pt;}
.ws2e{word-spacing:5.888005pt;}
.wsb{word-spacing:6.178914pt;}
.ws1c{word-spacing:6.528005pt;}
.ws37{word-spacing:6.644369pt;}
.ws34{word-spacing:7.458915pt;}
.ws2f{word-spacing:7.866188pt;}
.ws30{word-spacing:8.448007pt;}
.wsa{word-spacing:9.204371pt;}
.ws35{word-spacing:9.611644pt;}
.ws6{word-spacing:9.669826pt;}
.ws26{word-spacing:10.949827pt;}
.wsc{word-spacing:11.531646pt;}
.wsd{word-spacing:11.822555pt;}
.ws32{word-spacing:12.288010pt;}
.ws16{word-spacing:15.138922pt;}
.ws3c{word-spacing:18.915657pt;}
.ws3a{word-spacing:18.968790pt;}
.ws3{word-spacing:23.336550pt;}
.ws1d{word-spacing:23.796383pt;}
.ws21{word-spacing:26.996386pt;}
.ws0{word-spacing:27.842146pt;}
.ws4{word-spacing:28.003782pt;}
.ws14{word-spacing:35.234938pt;}
.ws31{word-spacing:35.374575pt;}
.ws12{word-spacing:43.298945pt;}
.ws2{word-spacing:48.252221pt;}
.ws2b{word-spacing:48.325858pt;}
.ws1{word-spacing:48.384419pt;}
.ws33{word-spacing:51.805867pt;}
.ws7{word-spacing:52.649010pt;}
._5{margin-left:-6.227050pt;}
._2{margin-left:-4.887277pt;}
._3{margin-left:-3.895004pt;}
._21{margin-left:-2.967275pt;}
._0{margin-left:-1.976593pt;}
._7{margin-left:-1.050454pt;}
._6{width:1.050454pt;}
._1{width:1.976593pt;}
._1a{width:4.245686pt;}
._1e{width:15.996833pt;}
._1f{width:22.511611pt;}
._4{width:25.192748pt;}
._20{width:26.640933pt;}
._25{width:28.156843pt;}
._27{width:29.064225pt;}
._24{width:31.183890pt;}
._23{width:41.483671pt;}
._26{width:45.380266pt;}
._8{width:50.618224pt;}
._9{width:51.665498pt;}
._a{width:53.818227pt;}
._f{width:59.461868pt;}
._22{width:66.909147pt;}
._1d{width:71.731200pt;}
._e{width:770.211551pt;}
._1b{width:1025.629946pt;}
._11{width:1063.852251pt;}
._13{width:1069.615437pt;}
._d{width:1215.532378pt;}
._c{width:1395.139800pt;}
._12{width:1397.292529pt;}
._19{width:1432.086876pt;}
._17{width:1438.837563pt;}
._10{width:1441.919611pt;}
._18{width:1535.067189pt;}
._15{width:1600.757698pt;}
._16{width:1650.559785pt;}
._b{width:1667.141617pt;}
._14{width:1713.106882pt;}
._1c{width:1897.136126pt;}
.fs4{font-size:42.507200pt;}
.fs0{font-size:53.133867pt;}
.fs5{font-size:58.181867pt;}
.fs2{font-size:63.761067pt;}
.fs3{font-size:76.513067pt;}
.fs1{font-size:132.197867pt;}
.y0{bottom:0.000000pt;}
.y32{bottom:83.389333pt;}
.y31{bottom:156.449333pt;}
.y8a{bottom:163.101333pt;}
.y30{bottom:174.514667pt;}
.y6c{bottom:177.164000pt;}
.y89{bottom:181.166667pt;}
.y2f{bottom:192.580000pt;}
.y6b{bottom:195.229333pt;}
.y88{bottom:199.232000pt;}
.y2e{bottom:210.645333pt;}
.y6a{bottom:213.294667pt;}
.y87{bottom:217.298667pt;}
.y2d{bottom:228.712000pt;}
.y86{bottom:235.364000pt;}
.y69{bottom:238.876000pt;}
.y4e{bottom:243.868000pt;}
.y2c{bottom:246.777333pt;}
.y85{bottom:253.429333pt;}
.y4d{bottom:261.933333pt;}
.y68{bottom:271.345333pt;}
.y84{bottom:271.494667pt;}
.y2b{bottom:278.829333pt;}
.y67{bottom:289.410667pt;}
.y4c{bottom:291.954667pt;}
.y83{bottom:303.964000pt;}
.y66{bottom:314.990667pt;}
.y2a{bottom:318.616000pt;}
.y4b{bottom:321.974667pt;}
.y29{bottom:336.681333pt;}
.y82{bottom:344.480000pt;}
.y65{bottom:347.461333pt;}
.y4a{bottom:351.996000pt;}
.y28{bottom:354.746667pt;}
.y81{bottom:362.546667pt;}
.yf{bottom:367.074667pt;}
.y27{bottom:372.813333pt;}
.y64{bottom:377.481333pt;}
.y49{bottom:382.016000pt;}
.ye{bottom:385.140000pt;}
.y26{bottom:390.878667pt;}
.y80{bottom:392.566667pt;}
.yd{bottom:403.205333pt;}
.y63{bottom:407.502667pt;}
.y48{bottom:407.597333pt;}
.y25{bottom:408.944000pt;}
.yc{bottom:421.270667pt;}
.y7f{bottom:422.588000pt;}
.y24{bottom:427.009333pt;}
.y62{bottom:437.522667pt;}
.yb{bottom:439.337333pt;}
.y47{bottom:440.066667pt;}
.y23{bottom:445.074667pt;}
.y7e{bottom:452.608000pt;}
.ya{bottom:457.402667pt;}
.y46{bottom:458.132000pt;}
.y61{bottom:467.544000pt;}
.y9{bottom:475.468000pt;}
.y22{bottom:477.128000pt;}
.y7d{bottom:482.629333pt;}
.y60{bottom:485.609333pt;}
.y45{bottom:490.602667pt;}
.y7c{bottom:500.694667pt;}
.y8{bottom:510.802667pt;}
.y5f{bottom:511.190667pt;}
.y21{bottom:516.914667pt;}
.y44{bottom:531.118667pt;}
.y7b{bottom:533.164000pt;}
.y7{bottom:543.444000pt;}
.y5e{bottom:543.660000pt;}
.y43{bottom:549.184000pt;}
.y20{bottom:557.100000pt;}
.y5d{bottom:561.725333pt;}
.y42{bottom:567.249333pt;}
.y6{bottom:568.984000pt;}
.y7a{bottom:573.680000pt;}
.y41{bottom:585.314667pt;}
.y1f{bottom:589.710667pt;}
.y79{bottom:591.746667pt;}
.y5c{bottom:594.194667pt;}
.y40{bottom:615.336000pt;}
.y78{bottom:621.766667pt;}
.y1e{bottom:622.321333pt;}
.y5b{bottom:634.710667pt;}
.y3f{bottom:645.356000pt;}
.y77{bottom:651.788000pt;}
.y1d{bottom:654.933333pt;}
.y5a{bottom:664.732000pt;}
.y1c{bottom:672.998667pt;}
.y3e{bottom:675.377333pt;}
.y5{bottom:679.669333pt;}
.y76{bottom:681.808000pt;}
.y1b{bottom:691.064000pt;}
.y59{bottom:694.752000pt;}
.y3d{bottom:705.397333pt;}
.y1a{bottom:709.129333pt;}
.y75{bottom:711.829333pt;}
.y4{bottom:712.808000pt;}
.y58{bottom:724.773333pt;}
.y19{bottom:727.194667pt;}
.y3c{bottom:735.418667pt;}
.y74{bottom:744.298667pt;}
.y18{bottom:745.261333pt;}
.y3{bottom:752.658667pt;}
.y3b{bottom:753.484000pt;}
.y57{bottom:754.794667pt;}
.y56{bottom:772.860000pt;}
.y17{bottom:777.872000pt;}
.y73{bottom:784.814667pt;}
.y3a{bottom:785.953333pt;}
.y2{bottom:792.509333pt;}
.y16{bottom:795.937333pt;}
.y55{bottom:798.440000pt;}
.y72{bottom:802.880000pt;}
.y15{bottom:814.002667pt;}
.y71{bottom:820.945333pt;}
.y39{bottom:826.469333pt;}
.y54{bottom:830.909333pt;}
.y14{bottom:832.069333pt;}
.y38{bottom:844.536000pt;}
.y70{bottom:846.526667pt;}
.y53{bottom:860.930667pt;}
.y13{bottom:864.680000pt;}
.y90{bottom:871.310667pt;}
.y37{bottom:874.556000pt;}
.y6f{bottom:878.996000pt;}
.y8f{bottom:887.250667pt;}
.y52{bottom:890.952000pt;}
.y12{bottom:897.290667pt;}
.y36{bottom:904.577333pt;}
.y6e{bottom:909.017333pt;}
.y8e{bottom:909.832000pt;}
.y51{bottom:920.972000pt;}
.y8d{bottom:925.773333pt;}
.y11{bottom:929.901333pt;}
.y35{bottom:934.597333pt;}
.y6d{bottom:939.037333pt;}
.y8c{bottom:948.354667pt;}
.y50{bottom:950.993333pt;}
.y10{bottom:962.513333pt;}
.y8b{bottom:964.294667pt;}
.y34{bottom:964.618667pt;}
.y1{bottom:966.744000pt;}
.y4f{bottom:969.058667pt;}
.y33{bottom:994.638667pt;}
.h6{height:22.527067pt;}
.h2{height:36.874903pt;}
.ha{height:39.850400pt;}
.h9{height:40.727307pt;}
.h7{height:43.636400pt;}
.h8{height:44.632747pt;}
.h4{height:45.652924pt;}
.h5{height:54.783356pt;}
.h3{height:94.653673pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:113.268000pt;}
.x3{left:117.189333pt;}
.x8{left:121.873333pt;}
.x4{left:123.850667pt;}
.x5{left:135.086667pt;}
.x9{left:143.168000pt;}
.x6{left:145.786667pt;}
.x1{left:254.738667pt;}
.x7{left:389.748000pt;}
}




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