
    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_066fcd623e0b22c7e3eef3cf.woff')format("woff");}.ff1{font-family:ff1;line-height:1.002930;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_b984ac1d1efe6d4be28f2819.woff')format("woff");}.ff2{font-family:ff2;line-height:1.077637;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_d0f4229aa4f1140da738058e.woff')format("woff");}.ff3{font-family:ff3;line-height:1.002930;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_15427fb15020a0bead453a0d.woff')format("woff");}.ff4{font-family:ff4;line-height:0.942871;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_edcf8d3ba116031f97868b94.woff')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_c748bbac2807ddb4fd018f8c.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_14fc330548993c5317037191.woff')format("woff");}.ff7{font-family:ff7;line-height:0.696777;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_98c26070686e414a3e1af596.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_f2c7c7a901cd686bc846c75b.woff')format("woff");}.ff9{font-family:ff9;line-height:0.862793;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_381765506f0109869f0d0096.woff')format("woff");}.ffa{font-family:ffa;line-height:1.002930;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_5a543952154ca5ab7eaf33f1.woff')format("woff");}.ffb{font-family:ffb;line-height:0.862793;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_d508411ac8dba81a2cfba179.woff')format("woff");}.ffc{font-family:ffc;line-height:0.722656;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_d7bcd7b42d2064d730ce9f8f.woff')format("woff");}.ffd{font-family:ffd;line-height:1.002930;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;}
.m1{transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-ms-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-webkit-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,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);}
.m2{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:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.lsf{letter-spacing:-7.603886px;}
.lse{letter-spacing:-4.067195px;}
.lsd{letter-spacing:-3.690720px;}
.lsb{letter-spacing:-3.187440px;}
.lsc{letter-spacing:-3.019680px;}
.ls10{letter-spacing:-2.851920px;}
.ls2d{letter-spacing:-1.523520px;}
.ls28{letter-spacing:-0.927360px;}
.ls33{letter-spacing:-0.794880px;}
.ls32{letter-spacing:-0.728640px;}
.ls2b{letter-spacing:-0.662400px;}
.ls37{letter-spacing:-0.596160px;}
.ls2a{letter-spacing:-0.529920px;}
.ls14{letter-spacing:-0.463680px;}
.ls2c{letter-spacing:-0.397440px;}
.ls1b{letter-spacing:-0.298800px;}
.ls25{letter-spacing:-0.287280px;}
.ls26{letter-spacing:-0.264960px;}
.ls1a{letter-spacing:-0.239040px;}
.ls29{letter-spacing:-0.198720px;}
.ls2f{letter-spacing:-0.190080px;}
.ls15{letter-spacing:-0.167040px;}
.ls31{letter-spacing:-0.126720px;}
.ls24{letter-spacing:-0.095760px;}
.ls27{letter-spacing:-0.066240px;}
.ls17{letter-spacing:-0.059760px;}
.lsa{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.059760px;}
.ls1d{letter-spacing:0.066240px;}
.ls19{letter-spacing:0.119520px;}
.ls35{letter-spacing:0.125856px;}
.ls1{letter-spacing:0.132480px;}
.ls8{letter-spacing:0.174240px;}
.ls5{letter-spacing:0.179280px;}
.ls36{letter-spacing:0.185472px;}
.ls23{letter-spacing:0.191520px;}
.ls1e{letter-spacing:0.201600px;}
.ls2e{letter-spacing:0.264960px;}
.ls3{letter-spacing:0.269280px;}
.ls2{letter-spacing:0.282240px;}
.ls18{letter-spacing:0.298800px;}
.ls16{letter-spacing:0.331200px;}
.ls30{letter-spacing:0.380160px;}
.ls11{letter-spacing:4.213440px;}
.ls0{letter-spacing:4.309200px;}
.ls13{letter-spacing:4.404960px;}
.ls12{letter-spacing:4.883760px;}
.ls1c{letter-spacing:37.028160px;}
.ls21{letter-spacing:38.485440px;}
.ls1f{letter-spacing:39.214080px;}
.ls34{letter-spacing:41.333760px;}
.ls20{letter-spacing:44.323200px;}
.ls22{letter-spacing:44.976960px;}
.ls6{letter-spacing:64.002960px;}
.ls7{letter-spacing:64.026720px;}
.ls9{letter-spacing:849.029760px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws23{word-spacing:-66.240000px;}
.ws2{word-spacing:-59.760000px;}
.ws1d{word-spacing:-21.641760px;}
.ws26{word-spacing:-15.301440px;}
.ws27{word-spacing:-15.235200px;}
.ws3c{word-spacing:-15.102720px;}
.ws2a{word-spacing:-15.036480px;}
.ws22{word-spacing:-14.970240px;}
.ws24{word-spacing:-14.904000px;}
.ws1f{word-spacing:-14.771520px;}
.ws20{word-spacing:-14.705280px;}
.ws28{word-spacing:-14.572800px;}
.ws0{word-spacing:-14.506560px;}
.ws21{word-spacing:-14.307840px;}
.ws29{word-spacing:-14.241600px;}
.ws25{word-spacing:-14.129280px;}
.ws1e{word-spacing:-14.042880px;}
.ws5{word-spacing:-13.685040px;}
.ws3{word-spacing:-13.147200px;}
.ws1{word-spacing:-12.728880px;}
.ws4{word-spacing:-12.669120px;}
.ws3b{word-spacing:-9.437760px;}
.ws3d{word-spacing:-8.786880px;}
.ws10{word-spacing:-4.883760px;}
.ws12{word-spacing:-4.213440px;}
.ws34{word-spacing:-0.728640px;}
.ws3e{word-spacing:-0.529920px;}
.ws38{word-spacing:-0.380160px;}
.ws15{word-spacing:-0.331200px;}
.ws19{word-spacing:-0.298800px;}
.ws36{word-spacing:-0.264960px;}
.ws2b{word-spacing:-0.191520px;}
.ws18{word-spacing:-0.179280px;}
.ws32{word-spacing:-0.132480px;}
.ws1a{word-spacing:-0.119520px;}
.ws11{word-spacing:-0.095760px;}
.ws17{word-spacing:-0.059760px;}
.ws6{word-spacing:0.000000px;}
.ws16{word-spacing:0.059760px;}
.ws30{word-spacing:0.066240px;}
.wse{word-spacing:0.095760px;}
.ws39{word-spacing:0.126720px;}
.ws14{word-spacing:0.167040px;}
.ws37{word-spacing:0.190080px;}
.ws31{word-spacing:0.198720px;}
.ws1c{word-spacing:0.239040px;}
.ws2f{word-spacing:0.264960px;}
.ws2c{word-spacing:0.287280px;}
.ws1b{word-spacing:0.298800px;}
.ws8{word-spacing:0.335520px;}
.ws2e{word-spacing:0.397440px;}
.ws13{word-spacing:0.463680px;}
.ws2d{word-spacing:0.478800px;}
.ws3f{word-spacing:0.596160px;}
.ws33{word-spacing:0.662400px;}
.wsf{word-spacing:0.766080px;}
.ws3a{word-spacing:0.794880px;}
.wsa{word-spacing:1.237842px;}
.ws35{word-spacing:1.523520px;}
.wsd{word-spacing:2.851920px;}
.ws7{word-spacing:3.187440px;}
.ws9{word-spacing:3.690720px;}
.wsc{word-spacing:4.774533px;}
.wsb{word-spacing:7.603886px;}
._9{margin-left:-6.603326px;}
._a{margin-left:-4.844520px;}
._4{margin-left:-3.489038px;}
._0{margin-left:-2.130552px;}
._2{margin-left:-1.006560px;}
._1{width:1.073664px;}
._5{width:2.501126px;}
._7{width:4.208663px;}
._6{width:5.562530px;}
._3{width:6.586783px;}
._8{width:11.175945px;}
.fc4{color:rgb(47,84,150);}
.fc3{color:rgb(5,99,193);}
.fc1{color:rgb(255,0,0);}
.fc2{color:rgb(90,90,90);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs7{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs8{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:95.760000px;}
.fs2{font-size:167.760000px;}
.fs3{font-size:176.834567px;}
.y0{bottom:0.000000px;}
.y4{bottom:2.520000px;}
.y1b{bottom:2.880000px;}
.y13{bottom:3.960000px;}
.y12{bottom:5.400000px;}
.y29{bottom:5.580000px;}
.y1d{bottom:33.120000px;}
.y1{bottom:57.600000px;}
.y16{bottom:90.000000px;}
.y15{bottom:91.440000px;}
.y22{bottom:99.180000px;}
.y66{bottom:111.960000px;}
.y50{bottom:116.497440px;}
.y65{bottom:135.540000px;}
.y4f{bottom:136.650960px;}
.y64{bottom:149.040000px;}
.y4e{bottom:156.638880px;}
.y4d{bottom:176.792400px;}
.y4c{bottom:196.945920px;}
.y2a{bottom:200.520000px;}
.y28{bottom:215.640000px;}
.y4b{bottom:217.099440px;}
.y21{bottom:234.000000px;}
.y4a{bottom:237.252960px;}
.y27{bottom:237.960000px;}
.y26{bottom:257.040000px;}
.y49{bottom:257.406480px;}
.y48{bottom:277.560000px;}
.y25{bottom:284.400000px;}
.y47{bottom:297.732960px;}
.y24{bottom:303.480000px;}
.y46{bottom:317.886480px;}
.y23{bottom:322.560000px;}
.y45{bottom:338.040000px;}
.y1c{bottom:345.960000px;}
.y1e{bottom:351.900000px;}
.y20{bottom:354.600000px;}
.y44{bottom:358.018560px;}
.y1f{bottom:372.960000px;}
.y43{bottom:391.850640px;}
.y14{bottom:391.860000px;}
.y1a{bottom:408.600000px;}
.y42{bottom:425.517120px;}
.y19{bottom:426.960000px;}
.y18{bottom:445.320000px;}
.y41{bottom:447.293520px;}
.y17{bottom:463.680000px;}
.y40{bottom:480.960000px;}
.y11{bottom:496.260000px;}
.y3f{bottom:514.800000px;}
.y10{bottom:532.621440px;}
.y3e{bottom:536.580000px;}
.y3d{bottom:565.567200px;}
.yf{bottom:566.453520px;}
.y3c{bottom:585.720720px;}
.ye{bottom:600.120000px;}
.y3b{bottom:619.552800px;}
.yd{bottom:626.767380px;}
.y3a{bottom:648.714960px;}
.yc{bottom:658.440000px;}
.y39{bottom:682.381440px;}
.yb{bottom:689.940000px;}
.y63{bottom:692.820000px;}
.y38{bottom:716.213520px;}
.y62{bottom:721.980000px;}
.ya{bottom:733.140000px;}
.y61{bottom:742.140000px;}
.y37{bottom:749.880000px;}
.y9{bottom:760.140000px;}
.y60{bottom:762.355440px;}
.y5f{bottom:782.508960px;}
.y36{bottom:783.560880px;}
.y5e{bottom:802.496880px;}
.y35{bottom:805.337280px;}
.y8{bottom:811.440000px;}
.y5d{bottom:822.650400px;}
.y34{bottom:827.113680px;}
.y5c{bottom:842.803920px;}
.y33{bottom:848.890080px;}
.y7{bottom:862.740000px;}
.y5b{bottom:862.957440px;}
.y32{bottom:870.484320px;}
.y5a{bottom:883.110960px;}
.y31{bottom:892.260720px;}
.y59{bottom:903.264480px;}
.y30{bottom:914.037120px;}
.y6{bottom:920.707920px;}
.y58{bottom:923.418000px;}
.y2f{bottom:935.813520px;}
.y57{bottom:943.571520px;}
.y5{bottom:954.540000px;}
.y56{bottom:963.725040px;}
.y2e{bottom:969.480000px;}
.y3{bottom:970.200000px;}
.y55{bottom:983.878560px;}
.y2d{bottom:993.962340px;}
.y54{bottom:1003.866480px;}
.y53{bottom:1024.032960px;}
.y2c{bottom:1025.467380px;}
.y52{bottom:1044.186480px;}
.y2b{bottom:1057.140000px;}
.y2{bottom:1064.332080px;}
.y51{bottom:1064.340000px;}
.h8{height:18.360000px;}
.h16{height:32.064609px;}
.hd{height:34.460156px;}
.h11{height:39.830273px;}
.ha{height:41.260078px;}
.h9{height:44.560547px;}
.h12{height:45.410625px;}
.he{height:45.900000px;}
.h17{height:49.284492px;}
.h3{height:49.313672px;}
.hc{height:50.312812px;}
.h1{height:54.628594px;}
.h15{height:58.147926px;}
.h7{height:58.199766px;}
.h10{height:62.327813px;}
.h14{height:66.082500px;}
.h13{height:69.086250px;}
.h2{height:76.140000px;}
.h6{height:78.973945px;}
.hb{height:104.400000px;}
.hf{height:111.961500px;}
.h4{height:138.352852px;}
.h5{height:145.836711px;}
.h0{height:1188.000000px;}
.w3{width:78.480000px;}
.w1{width:322.198500px;}
.w2{width:347.760000px;}
.w4{width:839.520000px;}
.w0{width:918.000000px;}
.x7{left:-14.040000px;}
.x0{left:0.000000px;}
.xa{left:4.680000px;}
.x9{left:8.100000px;}
.xf{left:41.940000px;}
.x8{left:78.480000px;}
.xb{left:86.580000px;}
.xe{left:113.580000px;}
.x2{left:134.825040px;}
.x1{left:145.440000px;}
.x10{left:161.812800px;}
.x11{left:188.805600px;}
.xc{left:191.520000px;}
.xd{left:215.460000px;}
.x12{left:242.803440px;}
.x5{left:249.300000px;}
.x3{left:269.820000px;}
.x13{left:350.820000px;}
.x4{left:457.020000px;}
.x6{left:521.640000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.lsf{letter-spacing:-6.759010pt;}
.lse{letter-spacing:-3.615284pt;}
.lsd{letter-spacing:-3.280640pt;}
.lsb{letter-spacing:-2.833280pt;}
.lsc{letter-spacing:-2.684160pt;}
.ls10{letter-spacing:-2.535040pt;}
.ls2d{letter-spacing:-1.354240pt;}
.ls28{letter-spacing:-0.824320pt;}
.ls33{letter-spacing:-0.706560pt;}
.ls32{letter-spacing:-0.647680pt;}
.ls2b{letter-spacing:-0.588800pt;}
.ls37{letter-spacing:-0.529920pt;}
.ls2a{letter-spacing:-0.471040pt;}
.ls14{letter-spacing:-0.412160pt;}
.ls2c{letter-spacing:-0.353280pt;}
.ls1b{letter-spacing:-0.265600pt;}
.ls25{letter-spacing:-0.255360pt;}
.ls26{letter-spacing:-0.235520pt;}
.ls1a{letter-spacing:-0.212480pt;}
.ls29{letter-spacing:-0.176640pt;}
.ls2f{letter-spacing:-0.168960pt;}
.ls15{letter-spacing:-0.148480pt;}
.ls31{letter-spacing:-0.112640pt;}
.ls24{letter-spacing:-0.085120pt;}
.ls27{letter-spacing:-0.058880pt;}
.ls17{letter-spacing:-0.053120pt;}
.lsa{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.053120pt;}
.ls1d{letter-spacing:0.058880pt;}
.ls19{letter-spacing:0.106240pt;}
.ls35{letter-spacing:0.111872pt;}
.ls1{letter-spacing:0.117760pt;}
.ls8{letter-spacing:0.154880pt;}
.ls5{letter-spacing:0.159360pt;}
.ls36{letter-spacing:0.164864pt;}
.ls23{letter-spacing:0.170240pt;}
.ls1e{letter-spacing:0.179200pt;}
.ls2e{letter-spacing:0.235520pt;}
.ls3{letter-spacing:0.239360pt;}
.ls2{letter-spacing:0.250880pt;}
.ls18{letter-spacing:0.265600pt;}
.ls16{letter-spacing:0.294400pt;}
.ls30{letter-spacing:0.337920pt;}
.ls11{letter-spacing:3.745280pt;}
.ls0{letter-spacing:3.830400pt;}
.ls13{letter-spacing:3.915520pt;}
.ls12{letter-spacing:4.341120pt;}
.ls1c{letter-spacing:32.913920pt;}
.ls21{letter-spacing:34.209280pt;}
.ls1f{letter-spacing:34.856960pt;}
.ls34{letter-spacing:36.741120pt;}
.ls20{letter-spacing:39.398400pt;}
.ls22{letter-spacing:39.979520pt;}
.ls6{letter-spacing:56.891520pt;}
.ls7{letter-spacing:56.912640pt;}
.ls9{letter-spacing:754.693120pt;}
.ws23{word-spacing:-58.880000pt;}
.ws2{word-spacing:-53.120000pt;}
.ws1d{word-spacing:-19.237120pt;}
.ws26{word-spacing:-13.601280pt;}
.ws27{word-spacing:-13.542400pt;}
.ws3c{word-spacing:-13.424640pt;}
.ws2a{word-spacing:-13.365760pt;}
.ws22{word-spacing:-13.306880pt;}
.ws24{word-spacing:-13.248000pt;}
.ws1f{word-spacing:-13.130240pt;}
.ws20{word-spacing:-13.071360pt;}
.ws28{word-spacing:-12.953600pt;}
.ws0{word-spacing:-12.894720pt;}
.ws21{word-spacing:-12.718080pt;}
.ws29{word-spacing:-12.659200pt;}
.ws25{word-spacing:-12.559360pt;}
.ws1e{word-spacing:-12.482560pt;}
.ws5{word-spacing:-12.164480pt;}
.ws3{word-spacing:-11.686400pt;}
.ws1{word-spacing:-11.314560pt;}
.ws4{word-spacing:-11.261440pt;}
.ws3b{word-spacing:-8.389120pt;}
.ws3d{word-spacing:-7.810560pt;}
.ws10{word-spacing:-4.341120pt;}
.ws12{word-spacing:-3.745280pt;}
.ws34{word-spacing:-0.647680pt;}
.ws3e{word-spacing:-0.471040pt;}
.ws38{word-spacing:-0.337920pt;}
.ws15{word-spacing:-0.294400pt;}
.ws19{word-spacing:-0.265600pt;}
.ws36{word-spacing:-0.235520pt;}
.ws2b{word-spacing:-0.170240pt;}
.ws18{word-spacing:-0.159360pt;}
.ws32{word-spacing:-0.117760pt;}
.ws1a{word-spacing:-0.106240pt;}
.ws11{word-spacing:-0.085120pt;}
.ws17{word-spacing:-0.053120pt;}
.ws6{word-spacing:0.000000pt;}
.ws16{word-spacing:0.053120pt;}
.ws30{word-spacing:0.058880pt;}
.wse{word-spacing:0.085120pt;}
.ws39{word-spacing:0.112640pt;}
.ws14{word-spacing:0.148480pt;}
.ws37{word-spacing:0.168960pt;}
.ws31{word-spacing:0.176640pt;}
.ws1c{word-spacing:0.212480pt;}
.ws2f{word-spacing:0.235520pt;}
.ws2c{word-spacing:0.255360pt;}
.ws1b{word-spacing:0.265600pt;}
.ws8{word-spacing:0.298240pt;}
.ws2e{word-spacing:0.353280pt;}
.ws13{word-spacing:0.412160pt;}
.ws2d{word-spacing:0.425600pt;}
.ws3f{word-spacing:0.529920pt;}
.ws33{word-spacing:0.588800pt;}
.wsf{word-spacing:0.680960pt;}
.ws3a{word-spacing:0.706560pt;}
.wsa{word-spacing:1.100304pt;}
.ws35{word-spacing:1.354240pt;}
.wsd{word-spacing:2.535040pt;}
.ws7{word-spacing:2.833280pt;}
.ws9{word-spacing:3.280640pt;}
.wsc{word-spacing:4.244030pt;}
.wsb{word-spacing:6.759010pt;}
._9{margin-left:-5.869624pt;}
._a{margin-left:-4.306240pt;}
._4{margin-left:-3.101367pt;}
._0{margin-left:-1.893824pt;}
._2{margin-left:-0.894720pt;}
._1{width:0.954368pt;}
._5{width:2.223224pt;}
._7{width:3.741034pt;}
._6{width:4.944471pt;}
._3{width:5.854918pt;}
._8{width:9.934173pt;}
.fs9{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs7{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs8{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:85.120000pt;}
.fs2{font-size:149.120000pt;}
.fs3{font-size:157.186282pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:2.240000pt;}
.y1b{bottom:2.560000pt;}
.y13{bottom:3.520000pt;}
.y12{bottom:4.800000pt;}
.y29{bottom:4.960000pt;}
.y1d{bottom:29.440000pt;}
.y1{bottom:51.200000pt;}
.y16{bottom:80.000000pt;}
.y15{bottom:81.280000pt;}
.y22{bottom:88.160000pt;}
.y66{bottom:99.520000pt;}
.y50{bottom:103.553280pt;}
.y65{bottom:120.480000pt;}
.y4f{bottom:121.467520pt;}
.y64{bottom:132.480000pt;}
.y4e{bottom:139.234560pt;}
.y4d{bottom:157.148800pt;}
.y4c{bottom:175.063040pt;}
.y2a{bottom:178.240000pt;}
.y28{bottom:191.680000pt;}
.y4b{bottom:192.977280pt;}
.y21{bottom:208.000000pt;}
.y4a{bottom:210.891520pt;}
.y27{bottom:211.520000pt;}
.y26{bottom:228.480000pt;}
.y49{bottom:228.805760pt;}
.y48{bottom:246.720000pt;}
.y25{bottom:252.800000pt;}
.y47{bottom:264.651520pt;}
.y24{bottom:269.760000pt;}
.y46{bottom:282.565760pt;}
.y23{bottom:286.720000pt;}
.y45{bottom:300.480000pt;}
.y1c{bottom:307.520000pt;}
.y1e{bottom:312.800000pt;}
.y20{bottom:315.200000pt;}
.y44{bottom:318.238720pt;}
.y1f{bottom:331.520000pt;}
.y43{bottom:348.311680pt;}
.y14{bottom:348.320000pt;}
.y1a{bottom:363.200000pt;}
.y42{bottom:378.237440pt;}
.y19{bottom:379.520000pt;}
.y18{bottom:395.840000pt;}
.y41{bottom:397.594240pt;}
.y17{bottom:412.160000pt;}
.y40{bottom:427.520000pt;}
.y11{bottom:441.120000pt;}
.y3f{bottom:457.600000pt;}
.y10{bottom:473.441280pt;}
.y3e{bottom:476.960000pt;}
.y3d{bottom:502.726400pt;}
.yf{bottom:503.514240pt;}
.y3c{bottom:520.640640pt;}
.ye{bottom:533.440000pt;}
.y3b{bottom:550.713600pt;}
.yd{bottom:557.126560pt;}
.y3a{bottom:576.635520pt;}
.yc{bottom:585.280000pt;}
.y39{bottom:606.561280pt;}
.yb{bottom:613.280000pt;}
.y63{bottom:615.840000pt;}
.y38{bottom:636.634240pt;}
.y62{bottom:641.760000pt;}
.ya{bottom:651.680000pt;}
.y61{bottom:659.680000pt;}
.y37{bottom:666.560000pt;}
.y9{bottom:675.680000pt;}
.y60{bottom:677.649280pt;}
.y5f{bottom:695.563520pt;}
.y36{bottom:696.498560pt;}
.y5e{bottom:713.330560pt;}
.y35{bottom:715.855360pt;}
.y8{bottom:721.280000pt;}
.y5d{bottom:731.244800pt;}
.y34{bottom:735.212160pt;}
.y5c{bottom:749.159040pt;}
.y33{bottom:754.568960pt;}
.y7{bottom:766.880000pt;}
.y5b{bottom:767.073280pt;}
.y32{bottom:773.763840pt;}
.y5a{bottom:784.987520pt;}
.y31{bottom:793.120640pt;}
.y59{bottom:802.901760pt;}
.y30{bottom:812.477440pt;}
.y6{bottom:818.407040pt;}
.y58{bottom:820.816000pt;}
.y2f{bottom:831.834240pt;}
.y57{bottom:838.730240pt;}
.y5{bottom:848.480000pt;}
.y56{bottom:856.644480pt;}
.y2e{bottom:861.760000pt;}
.y3{bottom:862.400000pt;}
.y55{bottom:874.558720pt;}
.y2d{bottom:883.522080pt;}
.y54{bottom:892.325760pt;}
.y53{bottom:910.251520pt;}
.y2c{bottom:911.526560pt;}
.y52{bottom:928.165760pt;}
.y2b{bottom:939.680000pt;}
.y2{bottom:946.072960pt;}
.y51{bottom:946.080000pt;}
.h8{height:16.320000pt;}
.h16{height:28.501875pt;}
.hd{height:30.631250pt;}
.h11{height:35.404688pt;}
.ha{height:36.675625pt;}
.h9{height:39.609375pt;}
.h12{height:40.365000pt;}
.he{height:40.800000pt;}
.h17{height:43.808438pt;}
.h3{height:43.834375pt;}
.hc{height:44.722500pt;}
.h1{height:48.558750pt;}
.h15{height:51.687045pt;}
.h7{height:51.733125pt;}
.h10{height:55.402500pt;}
.h14{height:58.740000pt;}
.h13{height:61.410000pt;}
.h2{height:67.680000pt;}
.h6{height:70.199062pt;}
.hb{height:92.800000pt;}
.hf{height:99.521333pt;}
.h4{height:122.980312pt;}
.h5{height:129.632632pt;}
.h0{height:1056.000000pt;}
.w3{width:69.760000pt;}
.w1{width:286.398667pt;}
.w2{width:309.120000pt;}
.w4{width:746.240000pt;}
.w0{width:816.000000pt;}
.x7{left:-12.480000pt;}
.x0{left:0.000000pt;}
.xa{left:4.160000pt;}
.x9{left:7.200000pt;}
.xf{left:37.280000pt;}
.x8{left:69.760000pt;}
.xb{left:76.960000pt;}
.xe{left:100.960000pt;}
.x2{left:119.844480pt;}
.x1{left:129.280000pt;}
.x10{left:143.833600pt;}
.x11{left:167.827200pt;}
.xc{left:170.240000pt;}
.xd{left:191.520000pt;}
.x12{left:215.825280pt;}
.x5{left:221.600000pt;}
.x3{left:239.840000pt;}
.x13{left:311.840000pt;}
.x4{left:406.240000pt;}
.x6{left:463.680000pt;}
}




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