
    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_9082de40b6d34320a6c23a0c.woff')format("woff");}.ff1{font-family:ff1;line-height:0.958496;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_97e1dcd52bc5b8b8d63323ef.woff')format("woff");}.ff2{font-family:ff2;line-height:0.946289;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_216cd60a2b8d1b9c74732452.woff')format("woff");}.ff3{font-family:ff3;line-height:0.946289;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_d1a89b2ebc4936453d6c24e5.woff')format("woff");}.ff4{font-family:ff4;line-height:0.934082;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_9e252c40c50018ab28a6528a.woff')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_ca31e470f513c85a167c8ff1.woff')format("woff");}.ff6{font-family:ff6;line-height:0.946289;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_e8cf6d1141c4fe50ee0099ff.woff')format("woff");}.ff7{font-family:ff7;line-height:0.907715;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_ef991ac3b361faab083c74b9.woff')format("woff");}.ff8{font-family:ff8;line-height:0.934082;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_6e48a637c58ae397e676e0c6.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_ef4ea02fd11060b993c8980d.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_0b7d69b5dcec7c895546acfa.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_e27868835c263c207fae18d2.woff')format("woff");}.ffc{font-family:ffc;line-height:0.934082;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:ffd;src:url('chunks/assets/font_0b7d69b5dcec7c895546acfa.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_efce38484dcb3513eca66f2b.woff')format("woff");}.ffe{font-family:ffe;line-height:0.946289;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:-24.169922px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:29.003906px;}
.ls0{letter-spacing:0.000000px;}
.ls7{letter-spacing:1569.433771px;}
.ls4{letter-spacing:1680.987646px;}
.ls6{letter-spacing:2086.303384px;}
.ls1{letter-spacing:2252.731379px;}
.ls2{letter-spacing:2253.441718px;}
.ls3{letter-spacing:2337.201586px;}
.ls5{letter-spacing:2397.100483px;}
.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;}
}
.ws5{word-spacing:-14.835938px;}
.ws3{word-spacing:-13.599610px;}
.ws2{word-spacing:-13.212891px;}
.ws0{word-spacing:-12.011718px;}
.ws4{word-spacing:-8.648438px;}
.ws6{word-spacing:-7.207031px;}
.ws1{word-spacing:0.000000px;}
._d{margin-left:-9.392723px;}
._10{margin-left:-5.427444px;}
._8{margin-left:-4.215455px;}
._0{margin-left:-2.957225px;}
._1{margin-left:-1.185767px;}
._a{width:3.507038px;}
._9{width:4.693120px;}
._4{width:8.903441px;}
._11{width:9.965618px;}
._3{width:13.443069px;}
._2{width:17.942829px;}
._f{width:18.993432px;}
._5{width:21.609723px;}
._e{width:23.367297px;}
._c{width:26.999982px;}
._b{width:31.500001px;}
._7{width:36.000804px;}
._6{width:40.430790px;}
._12{width:1001.726308px;}
.fc8{color:rgb(17,85,204);}
.fc7{color:rgb(255,0,0);}
.fc6{color:rgb(255,153,0);}
.fc2{color:rgb(25,96,150);}
.fc1{color:rgb(244,125,32);}
.fc5{color:rgb(67,67,67);}
.fc4{color:rgb(102,102,102);}
.fc3{color:rgb(153,153,153);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:36.000000px;}
.fs5{font-size:43.200002px;}
.fs3{font-size:59.999999px;}
.fs0{font-size:66.000002px;}
.fs4{font-size:72.000000px;}
.fs2{font-size:96.000003px;}
.fs1{font-size:119.999997px;}
.y0{bottom:0.000000px;}
.y31{bottom:11.903137px;}
.y35{bottom:11.903320px;}
.y4f{bottom:12.305786px;}
.y44{bottom:12.305969px;}
.y46{bottom:12.306152px;}
.y33{bottom:12.708985px;}
.yf{bottom:16.004883px;}
.y26{bottom:18.565336px;}
.y17{bottom:18.565337px;}
.y15{bottom:18.565384px;}
.yb{bottom:18.565430px;}
.y7{bottom:18.565453px;}
.y11{bottom:18.565475px;}
.y1f{bottom:18.565513px;}
.y2f{bottom:18.565522px;}
.y21{bottom:19.334381px;}
.y2a{bottom:31.056146px;}
.y2c{bottom:39.149960px;}
.y2{bottom:39.150005px;}
.y62{bottom:39.150143px;}
.y25{bottom:40.538086px;}
.ya{bottom:40.538090px;}
.y1e{bottom:40.538173px;}
.y29{bottom:61.268561px;}
.y9{bottom:62.510765px;}
.y1d{bottom:65.510833px;}
.y28{bottom:81.410156px;}
.y1c{bottom:90.483403px;}
.y88{bottom:107.731569px;}
.y60{bottom:110.517341px;}
.y1b{bottom:115.456093px;}
.y89{bottom:126.042482px;}
.y8b{bottom:139.435545px;}
.y1a{bottom:140.428798px;}
.y8a{bottom:145.478020px;}
.y5f{bottom:148.659296px;}
.y8c{bottom:164.913204px;}
.y19{bottom:165.401413px;}
.y5e{bottom:168.800531px;}
.y8d{bottom:183.224117px;}
.y5d{bottom:193.442141px;}
.y5c{bottom:218.084111px;}
.y27{bottom:228.154718px;}
.y87{bottom:234.459226px;}
.y5b{bottom:242.725346px;}
.y86{bottom:256.431883px;}
.y5a{bottom:267.366941px;}
.y24{bottom:270.131288px;}
.y85{bottom:278.404539px;}
.y23{bottom:281.117613px;}
.y59{bottom:292.008911px;}
.y84{bottom:300.377195px;}
.y58{bottom:316.650146px;}
.y83{bottom:322.349851px;}
.y22{bottom:336.951606px;}
.y82{bottom:344.322508px;}
.y57{bottom:356.125493px;}
.y81{bottom:366.295164px;}
.y18{bottom:381.799166px;}
.y80{bottom:388.267820px;}
.y56{bottom:405.741577px;}
.y7f{bottom:410.240476px;}
.y7e{bottom:432.213133px;}
.y55{bottom:447.718500px;}
.y20{bottom:454.118595px;}
.y7d{bottom:454.185785px;}
.y16{bottom:455.217231px;}
.y7c{bottom:476.158441px;}
.y54{bottom:484.734744px;}
.y42{bottom:489.307073px;}
.y7b{bottom:498.131098px;}
.y7a{bottom:520.103754px;}
.y53{bottom:521.751339px;}
.y41{bottom:534.589601px;}
.y79{bottom:542.076410px;}
.y40{bottom:554.731391px;}
.y52{bottom:558.768315px;}
.y78{bottom:564.049066px;}
.y3f{bottom:571.566827px;}
.y14{bottom:574.607810px;}
.y77{bottom:586.021723px;}
.y51{bottom:595.784544px;}
.y3e{bottom:606.752384px;}
.y76{bottom:609.606083px;}
.y13{bottom:625.900778px;}
.y50{bottom:632.801154px;}
.y3d{bottom:641.937928px;}
.y75{bottom:654.888431px;}
.y12{bottom:667.877328px;}
.y4e{bottom:669.818115px;}
.y74{bottom:675.432854px;}
.y3c{bottom:677.123476px;}
.y73{bottom:697.405520px;}
.y4d{bottom:706.834344px;}
.y3b{bottom:712.309019px;}
.y10{bottom:712.724988px;}
.y72{bottom:719.378176px;}
.y71{bottom:741.350832px;}
.y4c{bottom:743.850954px;}
.y3a{bottom:747.494563px;}
.yd{bottom:757.572648px;}
.ye{bottom:758.924695px;}
.y70{bottom:763.323488px;}
.y4b{bottom:780.867732px;}
.y39{bottom:782.680112px;}
.y6f{bottom:785.296145px;}
.yc{bottom:802.420308px;}
.y6e{bottom:807.268798px;}
.y38{bottom:817.865669px;}
.y4a{bottom:817.884159px;}
.y6d{bottom:829.241452px;}
.y8{bottom:847.267953px;}
.y6c{bottom:851.214111px;}
.y37{bottom:853.051214px;}
.y49{bottom:854.900754px;}
.y6{bottom:869.240620px;}
.y6b{bottom:873.186767px;}
.y36{bottom:888.236762px;}
.y48{bottom:891.917547px;}
.y6a{bottom:895.159423px;}
.y69{bottom:917.132080px;}
.y34{bottom:923.422303px;}
.y47{bottom:928.933959px;}
.y68{bottom:939.104736px;}
.y5{bottom:957.506242px;}
.y32{bottom:958.607853px;}
.y30{bottom:960.438901px;}
.y67{bottom:961.077392px;}
.y45{bottom:965.950569px;}
.y66{bottom:983.050048px;}
.y2e{bottom:997.455321px;}
.y43{bottom:1002.967347px;}
.y65{bottom:1005.022705px;}
.y4{bottom:1006.414467px;}
.y64{bottom:1026.592529px;}
.y3{bottom:1043.035537px;}
.y63{bottom:1048.748290px;}
.y2d{bottom:1048.748474px;}
.y61{bottom:1071.599853px;}
.y1{bottom:1071.599991px;}
.y2b{bottom:1071.600036px;}
.h22{height:25.892578px;}
.h15{height:34.060363px;}
.h17{height:34.060546px;}
.h1b{height:35.891235px;}
.h19{height:35.891418px;}
.h1a{height:35.891601px;}
.h16{height:37.722657px;}
.ha{height:41.018555px;}
.h6{height:42.421874px;}
.h8{height:43.154296px;}
.he{height:43.722564px;}
.hd{height:43.722610px;}
.h9{height:43.722657px;}
.h5{height:43.722679px;}
.hc{height:43.722702px;}
.h14{height:43.722749px;}
.h10{height:45.919830px;}
.h1c{height:46.664064px;}
.h2{height:47.469728px;}
.hb{height:51.785156px;}
.h20{height:60.074999px;}
.h1f{height:60.075001px;}
.h21{height:60.075004px;}
.h1d{height:63.984377px;}
.h11{height:65.695312px;}
.h18{height:67.875002px;}
.h4{height:69.046877px;}
.h3{height:86.308592px;}
.h7{height:87.667992px;}
.h12{height:97.120605px;}
.hf{height:190.558639px;}
.h13{height:191.399964px;}
.h1{height:191.400009px;}
.h1e{height:191.400147px;}
.h0{height:1263.000000px;}
.w8{width:72.000000px;}
.w4{width:74.250000px;}
.w9{width:91.125000px;}
.w6{width:111.375000px;}
.wa{width:141.750000px;}
.wb{width:174.375000px;}
.wd{width:182.250000px;}
.w2{width:195.750000px;}
.w5{width:216.000000px;}
.wc{width:250.875000px;}
.w7{width:261.000000px;}
.w3{width:472.500000px;}
.we{width:490.500000px;}
.w1{width:893.250000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x7{left:6.750000px;}
.x5{left:15.750000px;}
.x3{left:108.000000px;}
.x4{left:109.125000px;}
.x15{left:136.454888px;}
.x14{left:162.000000px;}
.xe{left:182.250000px;}
.x8{left:184.500000px;}
.x1{left:244.125000px;}
.xf{left:274.500000px;}
.x2{left:277.860477px;}
.xb{left:282.375000px;}
.x13{left:292.500000px;}
.x6{left:306.000000px;}
.x9{left:401.625000px;}
.x10{left:417.375000px;}
.xc{left:446.456700px;}
.xa{left:514.125000px;}
.x11{left:592.875000px;}
.x12{left:776.492111px;}
.xd{left:777.522634px;}
@media print{
.v2{vertical-align:-21.484375pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:25.781250pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7{letter-spacing:1395.052241pt;}
.ls4{letter-spacing:1494.211241pt;}
.ls6{letter-spacing:1854.491897pt;}
.ls1{letter-spacing:2002.427893pt;}
.ls2{letter-spacing:2003.059305pt;}
.ls3{letter-spacing:2077.512521pt;}
.ls5{letter-spacing:2130.755985pt;}
.ws5{word-spacing:-13.187500pt;}
.ws3{word-spacing:-12.088542pt;}
.ws2{word-spacing:-11.744792pt;}
.ws0{word-spacing:-10.677083pt;}
.ws4{word-spacing:-7.687500pt;}
.ws6{word-spacing:-6.406250pt;}
.ws1{word-spacing:0.000000pt;}
._d{margin-left:-8.349087pt;}
._10{margin-left:-4.824394pt;}
._8{margin-left:-3.747071pt;}
._0{margin-left:-2.628645pt;}
._1{margin-left:-1.054015pt;}
._a{width:3.117367pt;}
._9{width:4.171662pt;}
._4{width:7.914170pt;}
._11{width:8.858327pt;}
._3{width:11.949395pt;}
._2{width:15.949181pt;}
._f{width:16.883051pt;}
._5{width:19.208643pt;}
._e{width:20.770930pt;}
._c{width:23.999984pt;}
._b{width:28.000001pt;}
._7{width:32.000714pt;}
._6{width:35.938480pt;}
._12{width:890.423385pt;}
.fs6{font-size:32.000000pt;}
.fs5{font-size:38.400002pt;}
.fs3{font-size:53.333332pt;}
.fs0{font-size:58.666668pt;}
.fs4{font-size:64.000000pt;}
.fs2{font-size:85.333336pt;}
.fs1{font-size:106.666664pt;}
.y0{bottom:0.000000pt;}
.y31{bottom:10.580566pt;}
.y35{bottom:10.580729pt;}
.y4f{bottom:10.938476pt;}
.y44{bottom:10.938639pt;}
.y46{bottom:10.938802pt;}
.y33{bottom:11.296876pt;}
.yf{bottom:14.226562pt;}
.y26{bottom:16.502521pt;}
.y17{bottom:16.502522pt;}
.y15{bottom:16.502563pt;}
.yb{bottom:16.502605pt;}
.y7{bottom:16.502625pt;}
.y11{bottom:16.502645pt;}
.y1f{bottom:16.502678pt;}
.y2f{bottom:16.502686pt;}
.y21{bottom:17.186117pt;}
.y2a{bottom:27.605463pt;}
.y2c{bottom:34.799965pt;}
.y2{bottom:34.800005pt;}
.y62{bottom:34.800127pt;}
.y25{bottom:36.033854pt;}
.ya{bottom:36.033858pt;}
.y1e{bottom:36.033932pt;}
.y29{bottom:54.460943pt;}
.y9{bottom:55.565124pt;}
.y1d{bottom:58.231851pt;}
.y28{bottom:72.364583pt;}
.y1c{bottom:80.429691pt;}
.y88{bottom:95.761395pt;}
.y60{bottom:98.237636pt;}
.y1b{bottom:102.627638pt;}
.y89{bottom:112.037762pt;}
.y8b{bottom:123.942707pt;}
.y1a{bottom:124.825598pt;}
.y8a{bottom:129.313796pt;}
.y5f{bottom:132.141596pt;}
.y8c{bottom:146.589515pt;}
.y19{bottom:147.023478pt;}
.y5e{bottom:150.044916pt;}
.y8d{bottom:162.865882pt;}
.y5d{bottom:171.948570pt;}
.y5c{bottom:193.852543pt;}
.y27{bottom:202.804193pt;}
.y87{bottom:208.408201pt;}
.y5b{bottom:215.755863pt;}
.y86{bottom:227.939451pt;}
.y5a{bottom:237.659503pt;}
.y24{bottom:240.116700pt;}
.y85{bottom:247.470701pt;}
.y23{bottom:249.882323pt;}
.y59{bottom:259.563476pt;}
.y84{bottom:267.001951pt;}
.y58{bottom:281.466796pt;}
.y83{bottom:286.533201pt;}
.y22{bottom:299.512539pt;}
.y82{bottom:306.064452pt;}
.y57{bottom:316.555994pt;}
.y81{bottom:325.595701pt;}
.y18{bottom:339.377036pt;}
.y80{bottom:345.126951pt;}
.y56{bottom:360.659180pt;}
.y7f{bottom:364.658201pt;}
.y7e{bottom:384.189452pt;}
.y55{bottom:397.972000pt;}
.y20{bottom:403.660973pt;}
.y7d{bottom:403.720698pt;}
.y16{bottom:404.637539pt;}
.y7c{bottom:423.251948pt;}
.y54{bottom:430.875328pt;}
.y42{bottom:434.939620pt;}
.y7b{bottom:442.783198pt;}
.y7a{bottom:462.314448pt;}
.y53{bottom:463.778968pt;}
.y41{bottom:475.190756pt;}
.y79{bottom:481.845698pt;}
.y40{bottom:493.094570pt;}
.y52{bottom:496.682947pt;}
.y78{bottom:501.376948pt;}
.y3f{bottom:508.059401pt;}
.y14{bottom:510.762497pt;}
.y77{bottom:520.908198pt;}
.y51{bottom:529.586261pt;}
.y3e{bottom:539.335452pt;}
.y76{bottom:541.872073pt;}
.y13{bottom:556.356247pt;}
.y50{bottom:562.489915pt;}
.y3d{bottom:570.611492pt;}
.y75{bottom:582.123050pt;}
.y12{bottom:593.668736pt;}
.y4e{bottom:595.393880pt;}
.y74{bottom:600.384759pt;}
.y3c{bottom:601.887535pt;}
.y73{bottom:619.916017pt;}
.y4d{bottom:628.297195pt;}
.y3b{bottom:633.163572pt;}
.y10{bottom:633.533323pt;}
.y72{bottom:639.447267pt;}
.y71{bottom:658.978517pt;}
.y4c{bottom:661.200848pt;}
.y3a{bottom:664.439612pt;}
.yd{bottom:673.397909pt;}
.ye{bottom:674.599729pt;}
.y70{bottom:678.509767pt;}
.y4b{bottom:694.104651pt;}
.y39{bottom:695.715655pt;}
.y6f{bottom:698.041017pt;}
.yc{bottom:713.262496pt;}
.y6e{bottom:717.572265pt;}
.y38{bottom:726.991705pt;}
.y4a{bottom:727.008141pt;}
.y6d{bottom:737.103513pt;}
.y8{bottom:753.127069pt;}
.y6c{bottom:756.634765pt;}
.y37{bottom:758.267745pt;}
.y49{bottom:759.911781pt;}
.y6{bottom:772.658329pt;}
.y6b{bottom:776.166015pt;}
.y36{bottom:789.543788pt;}
.y48{bottom:792.815597pt;}
.y6a{bottom:795.697265pt;}
.y69{bottom:815.228515pt;}
.y34{bottom:820.819825pt;}
.y47{bottom:825.719075pt;}
.y68{bottom:834.759765pt;}
.y5{bottom:851.116660pt;}
.y32{bottom:852.095869pt;}
.y30{bottom:853.723468pt;}
.y67{bottom:854.291015pt;}
.y45{bottom:858.622728pt;}
.y66{bottom:873.822265pt;}
.y2e{bottom:886.626952pt;}
.y43{bottom:891.526531pt;}
.y65{bottom:893.353516pt;}
.y4{bottom:894.590637pt;}
.y64{bottom:912.526692pt;}
.y3{bottom:927.142700pt;}
.y63{bottom:932.220703pt;}
.y2d{bottom:932.220865pt;}
.y61{bottom:952.533203pt;}
.y1{bottom:952.533325pt;}
.y2b{bottom:952.533365pt;}
.h22{height:23.015625pt;}
.h15{height:30.275879pt;}
.h17{height:30.276041pt;}
.h1b{height:31.903320pt;}
.h19{height:31.903483pt;}
.h1a{height:31.903645pt;}
.h16{height:33.531251pt;}
.ha{height:36.460937pt;}
.h6{height:37.708332pt;}
.h8{height:38.359374pt;}
.he{height:38.864501pt;}
.hd{height:38.864543pt;}
.h9{height:38.864584pt;}
.h5{height:38.864604pt;}
.hc{height:38.864624pt;}
.h14{height:38.864665pt;}
.h10{height:40.817627pt;}
.h1c{height:41.479168pt;}
.h2{height:42.195313pt;}
.hb{height:46.031250pt;}
.h20{height:53.399999pt;}
.h1f{height:53.400001pt;}
.h21{height:53.400003pt;}
.h1d{height:56.875002pt;}
.h11{height:58.395833pt;}
.h18{height:60.333335pt;}
.h4{height:61.375002pt;}
.h3{height:76.718748pt;}
.h7{height:77.927104pt;}
.h12{height:86.329427pt;}
.hf{height:169.385457pt;}
.h13{height:170.133301pt;}
.h1{height:170.133341pt;}
.h1e{height:170.133464pt;}
.h0{height:1122.666667pt;}
.w8{width:64.000000pt;}
.w4{width:66.000000pt;}
.w9{width:81.000000pt;}
.w6{width:99.000000pt;}
.wa{width:126.000000pt;}
.wb{width:155.000000pt;}
.wd{width:162.000000pt;}
.w2{width:174.000000pt;}
.w5{width:192.000000pt;}
.wc{width:223.000000pt;}
.w7{width:232.000000pt;}
.w3{width:420.000000pt;}
.we{width:436.000000pt;}
.w1{width:794.000000pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x7{left:6.000000pt;}
.x5{left:14.000000pt;}
.x3{left:96.000000pt;}
.x4{left:97.000000pt;}
.x15{left:121.293233pt;}
.x14{left:144.000000pt;}
.xe{left:162.000000pt;}
.x8{left:164.000000pt;}
.x1{left:217.000000pt;}
.xf{left:244.000000pt;}
.x2{left:246.987091pt;}
.xb{left:251.000000pt;}
.x13{left:260.000000pt;}
.x6{left:272.000000pt;}
.x9{left:357.000000pt;}
.x10{left:371.000000pt;}
.xc{left:396.850400pt;}
.xa{left:457.000000pt;}
.x11{left:527.000000pt;}
.x12{left:690.215210pt;}
.xd{left:691.131230pt;}
}




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