
    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_6dc0627a41642039d989210d.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_a46adcac8e8f3b96abecd35e.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_6dfd8e5b89fa41f25278736e.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_670794d03c3fdfb0ff0041eb.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_545cf520297ec1150eec0873.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_3490e2f46b80601a222fa828.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_b84c0fae0408b39afb5dd30a.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_ee3a1cde461df4b366bd5631.woff2')format("woff");}.ff8{font-family:ff8;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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_d90317b806b8f6fe8db46374.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.687000;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:ffa;src:url('chunks/assets/font_c36eebc8bc0c08c94f822545.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910000;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.754000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:31.236000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:2.986053px;}
.ls2{letter-spacing:32.727300px;}
.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;}
}
.wse{word-spacing:-22.416000px;}
.ws1a{word-spacing:-18.183288px;}
.ws8{word-spacing:-1.819638px;}
.ws2c{word-spacing:-1.754183px;}
.ws38{word-spacing:-1.557819px;}
.ws30{word-spacing:-1.034183px;}
.ws31{word-spacing:-0.837819px;}
.ws39{word-spacing:-0.117818px;}
.ws3f{word-spacing:-0.059776px;}
.wsd{word-spacing:0.000000px;}
.ws15{word-spacing:1.518547px;}
.ws1d{word-spacing:1.780365px;}
.ws36{word-spacing:2.173093px;}
.ws14{word-spacing:2.238547px;}
.ws3a{word-spacing:2.304002px;}
.ws3d{word-spacing:2.642082px;}
.ws29{word-spacing:3.024003px;}
.ws23{word-spacing:3.220366px;}
.ws3b{word-spacing:3.299613px;}
.ws4{word-spacing:3.613094px;}
.ws10{word-spacing:3.678549px;}
.ws7{word-spacing:3.809458px;}
.ws1f{word-spacing:3.874912px;}
.ws9{word-spacing:4.005822px;}
.ws2a{word-spacing:4.071276px;}
.wsf{word-spacing:4.162913px;}
.ws17{word-spacing:4.202185px;}
.ws11{word-spacing:4.228367px;}
.ws13{word-spacing:4.483200px;}
.ws28{word-spacing:5.152657px;}
.ws20{word-spacing:5.576732px;}
.ws1e{word-spacing:6.231278px;}
.ws1c{word-spacing:6.427642px;}
.ws32{word-spacing:6.754915px;}
.wsc{word-spacing:7.147642px;}
.ws21{word-spacing:7.344006px;}
.wsa{word-spacing:7.736734px;}
.ws2d{word-spacing:8.391280px;}
.ws27{word-spacing:8.500090px;}
.ws34{word-spacing:8.522189px;}
.ws18{word-spacing:9.045826px;}
.ws37{word-spacing:9.176735px;}
.ws2b{word-spacing:9.307644px;}
.wsb{word-spacing:9.438553px;}
.ws26{word-spacing:9.779288px;}
.ws5{word-spacing:10.878555px;}
.ws2e{word-spacing:11.860374px;}
.ws2f{word-spacing:12.056737px;}
.ws16{word-spacing:13.300375px;}
.ws19{word-spacing:13.365829px;}
.ws35{word-spacing:13.496739px;}
.ws1b{word-spacing:14.413103px;}
.ws22{word-spacing:16.638559px;}
.ws3e{word-spacing:20.682358px;}
.ws40{word-spacing:21.280114px;}
.ws3c{word-spacing:21.339889px;}
.ws2{word-spacing:26.253619px;}
.ws0{word-spacing:31.322414px;}
.ws3{word-spacing:31.504255px;}
.ws12{word-spacing:39.639306px;}
.ws6{word-spacing:51.441039px;}
.ws24{word-spacing:53.554954px;}
.ws1{word-spacing:54.432472px;}
.ws33{word-spacing:58.281600px;}
.ws25{word-spacing:457.789472px;}
._4{margin-left:-8.822938px;}
._27{margin-left:-5.738458px;}
._0{margin-left:-4.610401px;}
._5{margin-left:-3.380428px;}
._2{margin-left:-2.223667px;}
._7{margin-left:-1.114517px;}
._29{width:1.010398px;}
._3{width:2.223667px;}
._1{width:4.461678px;}
._2b{width:17.649406px;}
._20{width:21.039505px;}
._1e{width:22.806779px;}
._6{width:27.229114px;}
._21{width:29.061842px;}
._1b{width:31.154600px;}
._2c{width:32.697253px;}
._1a{width:33.905483px;}
._1f{width:37.114547px;}
._9{width:39.340004px;}
._28{width:42.141798px;}
._8{width:46.016373px;}
._2a{width:55.215104px;}
._1c{width:59.167380px;}
._a{width:60.545505px;}
._d{width:66.894601px;}
._1d{width:75.272790px;}
._19{width:80.697600px;}
._25{width:289.438452px;}
._23{width:337.353008px;}
._22{width:446.502703px;}
._24{width:600.480500px;}
._26{width:631.898708px;}
._15{width:763.814728px;}
._c{width:972.751178px;}
._17{width:1041.382686px;}
._13{width:1231.229605px;}
._10{width:1330.079716px;}
._16{width:1355.198828px;}
._14{width:1388.426554px;}
._12{width:1425.337580px;}
._f{width:1519.622572px;}
._11{width:1803.709201px;}
._e{width:1824.088793px;}
._b{width:1874.492413px;}
._18{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;}
.y30{bottom:93.813000px;}
.y2f{bottom:180.699000px;}
.y72{bottom:210.427500px;}
.y2e{bottom:214.473000px;}
.y71{bottom:230.751000px;}
.y2d{bottom:248.245500px;}
.y70{bottom:251.074500px;}
.y6f{bottom:271.398000px;}
.y2c{bottom:277.024500px;}
.y6e{bottom:291.723000px;}
.y4d{bottom:301.096500px;}
.y6d{bottom:312.046500px;}
.y2b{bottom:313.552500px;}
.y4c{bottom:321.420000px;}
.y6c{bottom:332.370000px;}
.y2a{bottom:333.876000px;}
.y4b{bottom:341.745000px;}
.y6b{bottom:352.693500px;}
.y29{bottom:354.199500px;}
.y4a{bottom:362.068500px;}
.y6a{bottom:373.017000px;}
.y10{bottom:386.586000px;}
.y28{bottom:390.729000px;}
.y49{bottom:398.596500px;}
.yf{bottom:406.909500px;}
.y69{bottom:409.546500px;}
.ye{bottom:427.233000px;}
.y27{bottom:436.309500px;}
.y48{bottom:444.177000px;}
.yd{bottom:447.558000px;}
.y68{bottom:455.127000px;}
.y26{bottom:456.633000px;}
.y47{bottom:464.500500px;}
.yc{bottom:467.881500px;}
.y67{bottom:475.450500px;}
.y25{bottom:476.956500px;}
.yb{bottom:488.205000px;}
.y66{bottom:495.774000px;}
.y24{bottom:497.280000px;}
.y46{bottom:498.274500px;}
.ya{bottom:508.528500px;}
.y65{bottom:516.097500px;}
.y23{bottom:517.603500px;}
.y45{bottom:532.047000px;}
.y64{bottom:536.421000px;}
.y22{bottom:537.928500px;}
.y9{bottom:548.280000px;}
.y63{bottom:556.746000px;}
.y21{bottom:558.252000px;}
.y44{bottom:565.821000px;}
.y62{bottom:577.069500px;}
.y8{bottom:585.003000px;}
.y20{bottom:594.780000px;}
.y43{bottom:599.593500px;}
.y61{bottom:613.597500px;}
.y7{bottom:613.734000px;}
.y42{bottom:619.918500px;}
.y1f{bottom:640.360500px;}
.y41{bottom:656.446500px;}
.y60{bottom:659.178000px;}
.y5f{bottom:679.501500px;}
.y1e{bottom:686.887500px;}
.y5e{bottom:699.825000px;}
.y40{bottom:702.027000px;}
.y3f{bottom:722.350500px;}
.y1d{bottom:723.574500px;}
.y6{bottom:730.344000px;}
.y5d{bottom:736.354500px;}
.y3e{bottom:751.129500px;}
.y1c{bottom:760.263000px;}
.y5{bottom:767.625000px;}
.y5c{bottom:781.935000px;}
.y3d{bottom:787.657500px;}
.y1b{bottom:796.950000px;}
.y5b{bottom:802.258500px;}
.y3c{bottom:807.981000px;}
.y4{bottom:812.457000px;}
.y7f{bottom:817.335000px;}
.y5a{bottom:822.582000px;}
.y1a{bottom:833.637000px;}
.y7e{bottom:835.267500px;}
.y3b{bottom:836.758500px;}
.y59{bottom:842.905500px;}
.y3{bottom:857.289000px;}
.y7d{bottom:860.673000px;}
.y58{bottom:863.229000px;}
.y19{bottom:870.325500px;}
.y3a{bottom:873.288000px;}
.y7c{bottom:878.605500px;}
.y57{bottom:883.554000px;}
.y39{bottom:893.611500px;}
.y2{bottom:902.121000px;}
.y56{bottom:903.877500px;}
.y7b{bottom:904.009500px;}
.y18{bottom:907.012500px;}
.y38{bottom:913.935000px;}
.y7a{bottom:921.942000px;}
.y17{bottom:927.336000px;}
.y55{bottom:940.405500px;}
.y37{bottom:942.714000px;}
.y79{bottom:947.347500px;}
.y16{bottom:947.659500px;}
.y78{bottom:965.280000px;}
.y15{bottom:967.984500px;}
.y36{bottom:979.242000px;}
.y14{bottom:988.308000px;}
.y54{bottom:989.637000px;}
.y77{bottom:990.685500px;}
.y35{bottom:999.565500px;}
.y53{bottom:1007.571000px;}
.y13{bottom:1008.631500px;}
.y76{bottom:1016.089500px;}
.y34{bottom:1019.889000px;}
.y52{bottom:1025.503500px;}
.y75{bottom:1041.495000px;}
.y12{bottom:1045.318500px;}
.y33{bottom:1048.668000px;}
.y51{bottom:1059.013500px;}
.y74{bottom:1066.899000px;}
.y50{bottom:1079.338500px;}
.y11{bottom:1082.007000px;}
.y73{bottom:1084.831500px;}
.y32{bottom:1085.196000px;}
.y1{bottom:1087.587000px;}
.y4f{bottom:1099.662000px;}
.y31{bottom:1118.968500px;}
.y4e{bottom:1120.582500px;}
.h6{height:25.336950px;}
.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.114667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:27.765333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:2.654270pt;}
.ls2{letter-spacing:29.090933pt;}
.wse{word-spacing:-19.925333pt;}
.ws1a{word-spacing:-16.162923pt;}
.ws8{word-spacing:-1.617456pt;}
.ws2c{word-spacing:-1.559274pt;}
.ws38{word-spacing:-1.384728pt;}
.ws30{word-spacing:-0.919273pt;}
.ws31{word-spacing:-0.744728pt;}
.ws39{word-spacing:-0.104727pt;}
.ws3f{word-spacing:-0.053134pt;}
.wsd{word-spacing:0.000000pt;}
.ws15{word-spacing:1.349819pt;}
.ws1d{word-spacing:1.582547pt;}
.ws36{word-spacing:1.931638pt;}
.ws14{word-spacing:1.989820pt;}
.ws3a{word-spacing:2.048002pt;}
.ws3d{word-spacing:2.348517pt;}
.ws29{word-spacing:2.688002pt;}
.ws23{word-spacing:2.862548pt;}
.ws3b{word-spacing:2.932989pt;}
.ws4{word-spacing:3.211639pt;}
.ws10{word-spacing:3.269821pt;}
.ws7{word-spacing:3.386185pt;}
.ws1f{word-spacing:3.444367pt;}
.ws9{word-spacing:3.560730pt;}
.ws2a{word-spacing:3.618912pt;}
.wsf{word-spacing:3.700367pt;}
.ws17{word-spacing:3.735276pt;}
.ws11{word-spacing:3.758549pt;}
.ws13{word-spacing:3.985067pt;}
.ws28{word-spacing:4.580139pt;}
.ws20{word-spacing:4.957095pt;}
.ws1e{word-spacing:5.538914pt;}
.ws1c{word-spacing:5.713459pt;}
.ws32{word-spacing:6.004369pt;}
.wsc{word-spacing:6.353460pt;}
.ws21{word-spacing:6.528005pt;}
.wsa{word-spacing:6.877097pt;}
.ws2d{word-spacing:7.458915pt;}
.ws27{word-spacing:7.555636pt;}
.ws34{word-spacing:7.575279pt;}
.ws18{word-spacing:8.040734pt;}
.ws37{word-spacing:8.157098pt;}
.ws2b{word-spacing:8.273461pt;}
.wsb{word-spacing:8.389825pt;}
.ws26{word-spacing:8.692701pt;}
.ws5{word-spacing:9.669826pt;}
.ws2e{word-spacing:10.542554pt;}
.ws2f{word-spacing:10.717100pt;}
.ws16{word-spacing:11.822555pt;}
.ws19{word-spacing:11.880737pt;}
.ws35{word-spacing:11.997101pt;}
.ws1b{word-spacing:12.811647pt;}
.ws22{word-spacing:14.789831pt;}
.ws3e{word-spacing:18.384318pt;}
.ws40{word-spacing:18.915657pt;}
.ws3c{word-spacing:18.968790pt;}
.ws2{word-spacing:23.336550pt;}
.ws0{word-spacing:27.842146pt;}
.ws3{word-spacing:28.003782pt;}
.ws12{word-spacing:35.234938pt;}
.ws6{word-spacing:45.725368pt;}
.ws24{word-spacing:47.604403pt;}
.ws1{word-spacing:48.384419pt;}
.ws33{word-spacing:51.805867pt;}
.ws25{word-spacing:406.923975pt;}
._4{margin-left:-7.842611pt;}
._27{margin-left:-5.100851pt;}
._0{margin-left:-4.098134pt;}
._5{margin-left:-3.004825pt;}
._2{margin-left:-1.976593pt;}
._7{margin-left:-0.990682pt;}
._29{width:0.898131pt;}
._3{width:1.976593pt;}
._1{width:3.965936pt;}
._2b{width:15.688361pt;}
._20{width:18.701782pt;}
._1e{width:20.272693pt;}
._6{width:24.203657pt;}
._21{width:25.832749pt;}
._1b{width:27.692978pt;}
._2c{width:29.064225pt;}
._1a{width:30.138207pt;}
._1f{width:32.990709pt;}
._9{width:34.968892pt;}
._28{width:37.459376pt;}
._8{width:40.903443pt;}
._2a{width:49.080092pt;}
._1c{width:52.593227pt;}
._a{width:53.818227pt;}
._d{width:59.461868pt;}
._1d{width:66.909147pt;}
._19{width:71.731200pt;}
._25{width:257.278624pt;}
._23{width:299.869341pt;}
._22{width:396.891291pt;}
._24{width:533.760445pt;}
._26{width:561.687741pt;}
._15{width:678.946425pt;}
._c{width:864.667714pt;}
._17{width:925.673499pt;}
._13{width:1094.426315pt;}
._10{width:1182.293081pt;}
._16{width:1204.621180pt;}
._14{width:1234.156937pt;}
._12{width:1266.966738pt;}
._f{width:1350.775620pt;}
._11{width:1603.297068pt;}
._e{width:1621.412260pt;}
._b{width:1666.215478pt;}
._18{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;}
.y30{bottom:83.389333pt;}
.y2f{bottom:160.621333pt;}
.y72{bottom:187.046667pt;}
.y2e{bottom:190.642667pt;}
.y71{bottom:205.112000pt;}
.y2d{bottom:220.662667pt;}
.y70{bottom:223.177333pt;}
.y6f{bottom:241.242667pt;}
.y2c{bottom:246.244000pt;}
.y6e{bottom:259.309333pt;}
.y4d{bottom:267.641333pt;}
.y6d{bottom:277.374667pt;}
.y2b{bottom:278.713333pt;}
.y4c{bottom:285.706667pt;}
.y6c{bottom:295.440000pt;}
.y2a{bottom:296.778667pt;}
.y4b{bottom:303.773333pt;}
.y6b{bottom:313.505333pt;}
.y29{bottom:314.844000pt;}
.y4a{bottom:321.838667pt;}
.y6a{bottom:331.570667pt;}
.y10{bottom:343.632000pt;}
.y28{bottom:347.314667pt;}
.y49{bottom:354.308000pt;}
.yf{bottom:361.697333pt;}
.y69{bottom:364.041333pt;}
.ye{bottom:379.762667pt;}
.y27{bottom:387.830667pt;}
.y48{bottom:394.824000pt;}
.yd{bottom:397.829333pt;}
.y68{bottom:404.557333pt;}
.y26{bottom:405.896000pt;}
.y47{bottom:412.889333pt;}
.yc{bottom:415.894667pt;}
.y67{bottom:422.622667pt;}
.y25{bottom:423.961333pt;}
.yb{bottom:433.960000pt;}
.y66{bottom:440.688000pt;}
.y24{bottom:442.026667pt;}
.y46{bottom:442.910667pt;}
.ya{bottom:452.025333pt;}
.y65{bottom:458.753333pt;}
.y23{bottom:460.092000pt;}
.y45{bottom:472.930667pt;}
.y64{bottom:476.818667pt;}
.y22{bottom:478.158667pt;}
.y9{bottom:487.360000pt;}
.y63{bottom:494.885333pt;}
.y21{bottom:496.224000pt;}
.y44{bottom:502.952000pt;}
.y62{bottom:512.950667pt;}
.y8{bottom:520.002667pt;}
.y20{bottom:528.693333pt;}
.y43{bottom:532.972000pt;}
.y61{bottom:545.420000pt;}
.y7{bottom:545.541333pt;}
.y42{bottom:551.038667pt;}
.y1f{bottom:569.209333pt;}
.y41{bottom:583.508000pt;}
.y60{bottom:585.936000pt;}
.y5f{bottom:604.001333pt;}
.y1e{bottom:610.566667pt;}
.y5e{bottom:622.066667pt;}
.y40{bottom:624.024000pt;}
.y3f{bottom:642.089333pt;}
.y1d{bottom:643.177333pt;}
.y6{bottom:649.194667pt;}
.y5d{bottom:654.537333pt;}
.y3e{bottom:667.670667pt;}
.y1c{bottom:675.789333pt;}
.y5{bottom:682.333333pt;}
.y5c{bottom:695.053333pt;}
.y3d{bottom:700.140000pt;}
.y1b{bottom:708.400000pt;}
.y5b{bottom:713.118667pt;}
.y3c{bottom:718.205333pt;}
.y4{bottom:722.184000pt;}
.y7f{bottom:726.520000pt;}
.y5a{bottom:731.184000pt;}
.y1a{bottom:741.010667pt;}
.y7e{bottom:742.460000pt;}
.y3b{bottom:743.785333pt;}
.y59{bottom:749.249333pt;}
.y3{bottom:762.034667pt;}
.y7d{bottom:765.042667pt;}
.y58{bottom:767.314667pt;}
.y19{bottom:773.622667pt;}
.y3a{bottom:776.256000pt;}
.y7c{bottom:780.982667pt;}
.y57{bottom:785.381333pt;}
.y39{bottom:794.321333pt;}
.y2{bottom:801.885333pt;}
.y56{bottom:803.446667pt;}
.y7b{bottom:803.564000pt;}
.y18{bottom:806.233333pt;}
.y38{bottom:812.386667pt;}
.y7a{bottom:819.504000pt;}
.y17{bottom:824.298667pt;}
.y55{bottom:835.916000pt;}
.y37{bottom:837.968000pt;}
.y79{bottom:842.086667pt;}
.y16{bottom:842.364000pt;}
.y78{bottom:858.026667pt;}
.y15{bottom:860.430667pt;}
.y36{bottom:870.437333pt;}
.y14{bottom:878.496000pt;}
.y54{bottom:879.677333pt;}
.y77{bottom:880.609333pt;}
.y35{bottom:888.502667pt;}
.y53{bottom:895.618667pt;}
.y13{bottom:896.561333pt;}
.y76{bottom:903.190667pt;}
.y34{bottom:906.568000pt;}
.y52{bottom:911.558667pt;}
.y75{bottom:925.773333pt;}
.y12{bottom:929.172000pt;}
.y33{bottom:932.149333pt;}
.y51{bottom:941.345333pt;}
.y74{bottom:948.354667pt;}
.y50{bottom:959.412000pt;}
.y11{bottom:961.784000pt;}
.y73{bottom:964.294667pt;}
.y32{bottom:964.618667pt;}
.y1{bottom:966.744000pt;}
.y4f{bottom:977.477333pt;}
.y31{bottom:994.638667pt;}
.y4e{bottom:996.073333pt;}
.h6{height:22.521733pt;}
.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; }
  