
    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_2b98c2fa25eec175a49e05fd.woff')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_03342c1c0df7208c89009001.woff')format("woff");}.ff2{font-family:ff2;line-height:1.202148;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_4215b9099f56a9265775b113.woff')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_472216c7abd038d0c89bd2d3.woff')format("woff");}.ff4{font-family:ff4;line-height:0.739746;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_b4e41fc6faeed63382c981a4.woff')format("woff");}.ff5{font-family:ff5;line-height:0.942383;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_6c626fe804310b824f4a2ee9.woff')format("woff");}.ff6{font-family:ff6;line-height:0.942383;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;}
.m2{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,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);}
.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);}
.v1{vertical-align:-3.600000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:3.600000px;}
.ls18{letter-spacing:-1.488000px;}
.ls1f{letter-spacing:-0.126000px;}
.lsf{letter-spacing:-0.066000px;}
.ls17{letter-spacing:-0.036000px;}
.ls19{letter-spacing:-0.000006px;}
.ls0{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.036000px;}
.lsd{letter-spacing:0.038160px;}
.ls1e{letter-spacing:0.083400px;}
.lse{letter-spacing:0.100800px;}
.ls11{letter-spacing:0.142800px;}
.ls1d{letter-spacing:0.208200px;}
.ls8{letter-spacing:0.360000px;}
.ls16{letter-spacing:0.432000px;}
.ls1c{letter-spacing:9.816480px;}
.ls7{letter-spacing:16.704000px;}
.ls10{letter-spacing:16.824000px;}
.ls1{letter-spacing:25.416000px;}
.ls15{letter-spacing:32.688000px;}
.ls12{letter-spacing:49.284000px;}
.ls14{letter-spacing:57.549600px;}
.ls5{letter-spacing:57.600000px;}
.ls9{letter-spacing:59.136768px;}
.ls13{letter-spacing:59.208480px;}
.lsa{letter-spacing:61.884000px;}
.ls6{letter-spacing:65.916000px;}
.lsb{letter-spacing:68.184000px;}
.ls2{letter-spacing:76.644000px;}
.ls1b{letter-spacing:91.065600px;}
.ls1a{letter-spacing:91.116000px;}
.ls3{letter-spacing:111.600000px;}
.ls4{letter-spacing:119.916000px;}
.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;}
}
.ws9{word-spacing:-73.224000px;}
.wsa{word-spacing:-59.718240px;}
.ws12{word-spacing:-37.946304px;}
.ws4{word-spacing:-37.913760px;}
.ws17{word-spacing:-32.976000px;}
.ws15{word-spacing:-32.576544px;}
.ws18{word-spacing:-31.088544px;}
.wse{word-spacing:-30.428640px;}
.ws6{word-spacing:-27.174240px;}
.ws5{word-spacing:-24.408000px;}
.ws8{word-spacing:-16.272000px;}
.ws1e{word-spacing:-13.505760px;}
.ws1d{word-spacing:-11.110440px;}
.ws1c{word-spacing:-10.902240px;}
.ws0{word-spacing:-9.437760px;}
.ws7{word-spacing:-1.584000px;}
.ws16{word-spacing:-1.152000px;}
.ws1a{word-spacing:-1.032000px;}
.ws19{word-spacing:-0.540000px;}
.ws13{word-spacing:-0.242352px;}
.ws14{word-spacing:-0.159408px;}
.ws11{word-spacing:-0.066240px;}
.ws1{word-spacing:0.000000px;}
.wsf{word-spacing:0.416496px;}
.ws1b{word-spacing:1.152000px;}
.wsb{word-spacing:6.323760px;}
.wsd{word-spacing:7.710960px;}
.ws3{word-spacing:432.969600px;}
.ws2{word-spacing:433.275456px;}
.ws10{word-spacing:1214.622000px;}
.wsc{word-spacing:1343.266080px;}
._1b{margin-left:-4490.609280px;}
._14{margin-left:-25.254528px;}
._13{margin-left:-20.238528px;}
._b{margin-left:-14.741280px;}
._18{margin-left:-13.536000px;}
._0{margin-left:-10.661328px;}
._d{margin-left:-8.723520px;}
._a{margin-left:-7.023600px;}
._5{margin-left:-5.904000px;}
._12{margin-left:-4.782048px;}
._1{margin-left:-3.695232px;}
._2{margin-left:-1.872000px;}
._3{width:1.008000px;}
._7{width:2.243520px;}
._c{width:3.879024px;}
._19{width:9.844320px;}
._8{width:11.580480px;}
._1a{width:13.502640px;}
._6{width:23.460672px;}
._15{width:29.389200px;}
._16{width:31.006752px;}
._4{width:33.828000px;}
._10{width:57.858624px;}
._9{width:433.833600px;}
._e{width:995.152416px;}
._11{width:996.160416px;}
._17{width:1426.671360px;}
._f{width:1463.391360px;}
.fc4{color:rgb(251,251,247);}
.fc6{color:rgb(102,204,102);}
.fc3{color:rgb(235,237,238);}
.fc5{color:rgb(252,251,249);}
.fc2{color:rgb(209,243,229);}
.fc1{color:rgb(255,169,51);}
.fc7{color:rgb(38,38,38);}
.fc0{color:rgb(251,250,247);}
.fs5{font-size:41.760000px;}
.fs1a{font-size:48.240000px;}
.fs1b{font-size:48.384000px;}
.fs18{font-size:54.000000px;}
.fs1c{font-size:59.760000px;}
.fs19{font-size:66.240000px;}
.fsf{font-size:72.000000px;}
.fs6{font-size:72.144000px;}
.fsa{font-size:84.384000px;}
.fs3{font-size:95.760000px;}
.fs4{font-size:95.904000px;}
.fsb{font-size:108.000000px;}
.fsc{font-size:108.144000px;}
.fs13{font-size:113.760000px;}
.fs14{font-size:113.904000px;}
.fsd{font-size:120.240000px;}
.fs12{font-size:131.760000px;}
.fs15{font-size:131.904000px;}
.fs17{font-size:134.640000px;}
.fs2{font-size:144.000000px;}
.fs16{font-size:144.144000px;}
.fs8{font-size:167.760000px;}
.fs9{font-size:167.904000px;}
.fse{font-size:264.240000px;}
.fs7{font-size:264.384000px;}
.fs1{font-size:288.000000px;}
.fs0{font-size:288.144000px;}
.fs11{font-size:324.000000px;}
.fs10{font-size:324.144000px;}
.y0{bottom:0.000000px;}
.y7{bottom:5.760000px;}
.y54{bottom:30.636000px;}
.y8{bottom:31.536000px;}
.y3f{bottom:81.900000px;}
.y6{bottom:83.088000px;}
.y56{bottom:96.228000px;}
.y5f{bottom:101.736000px;}
.y3e{bottom:103.500000px;}
.y7f{bottom:105.732000px;}
.y7e{bottom:109.872000px;}
.y18{bottom:113.436000px;}
.y7d{bottom:122.832000px;}
.y5{bottom:123.948000px;}
.y2d{bottom:130.932000px;}
.y55{bottom:131.004000px;}
.y6a{bottom:137.232000px;}
.y17{bottom:145.872000px;}
.y36{bottom:146.016000px;}
.y3d{bottom:146.700000px;}
.y7c{bottom:150.735000px;}
.y53{bottom:162.615000px;}
.y42{bottom:167.010000px;}
.y35{bottom:167.610000px;}
.y3c{bottom:168.300000px;}
.y2c{bottom:170.895000px;}
.y10{bottom:177.015000px;}
.y5e{bottom:177.330000px;}
.y7b{bottom:178.815000px;}
.y41{bottom:188.610000px;}
.y34{bottom:189.255000px;}
.y58{bottom:189.795000px;}
.y3b{bottom:189.900000px;}
.y4{bottom:193.965000px;}
.y69{bottom:197.535000px;}
.y52{bottom:200.775000px;}
.y7a{bottom:206.715000px;}
.y40{bottom:210.210000px;}
.y2b{bottom:210.675000px;}
.y33{bottom:210.855000px;}
.y3a{bottom:211.500000px;}
.yf{bottom:222.375000px;}
.y5d{bottom:231.375000px;}
.y51{bottom:231.555000px;}
.y32{bottom:232.455000px;}
.y39{bottom:233.130000px;}
.y79{bottom:234.615000px;}
.y68{bottom:241.275000px;}
.y3{bottom:247.965000px;}
.y2a{bottom:252.255000px;}
.y31{bottom:254.055000px;}
.y38{bottom:254.730000px;}
.y62{bottom:254.880000px;}
.y78{bottom:262.695000px;}
.y20{bottom:263.340000px;}
.y24{bottom:267.765000px;}
.y50{bottom:271.185000px;}
.y30{bottom:275.655000px;}
.y37{bottom:276.330000px;}
.y67{bottom:280.185000px;}
.ye{bottom:282.885000px;}
.y77{bottom:290.625000px;}
.y16{bottom:295.410000px;}
.y1f{bottom:295.740000px;}
.y82{bottom:296.895000px;}
.y76{bottom:303.585000px;}
.y4f{bottom:306.825000px;}
.y44{bottom:308.010000px;}
.y23{bottom:313.125000px;}
.y5c{bottom:319.035000px;}
.y43{bottom:320.610000px;}
.y47{bottom:322.995000px;}
.y15{bottom:327.810000px;}
.y1e{bottom:328.140000px;}
.y75{bottom:331.485000px;}
.y66{bottom:334.005000px;}
.y2{bottom:343.185000px;}
.y29{bottom:344.445000px;}
.y4e{bottom:356.145000px;}
.y81{bottom:357.375000px;}
.y1d{bottom:360.540000px;}
.y74{bottom:372.525000px;}
.y65{bottom:372.885000px;}
.y22{bottom:373.605000px;}
.y28{bottom:385.845000px;}
.y4d{bottom:386.925000px;}
.y5b{bottom:390.345000px;}
.y73{bottom:400.425000px;}
.yd{bottom:403.485000px;}
.y46{bottom:410.505000px;}
.y1{bottom:420.990000px;}
.y4c{bottom:425.265000px;}
.y72{bottom:428.325000px;}
.y21{bottom:433.905000px;}
.y71{bottom:441.330000px;}
.yc{bottom:448.890000px;}
.y1c{bottom:450.180000px;}
.y14{bottom:450.285000px;}
.y4b{bottom:456.090000px;}
.y5a{bottom:461.625000px;}
.y64{bottom:466.710000px;}
.y70{bottom:469.410000px;}
.y80{bottom:478.005000px;}
.y27{bottom:478.230000px;}
.y1b{bottom:482.580000px;}
.y13{bottom:482.730000px;}
.y4a{bottom:486.870000px;}
.y61{bottom:494.250000px;}
.y6f{bottom:497.310000px;}
.yb{bottom:509.370000px;}
.y1a{bottom:514.980000px;}
.y12{bottom:515.130000px;}
.y26{bottom:518.010000px;}
.y63{bottom:520.710000px;}
.y6e{bottom:525.210000px;}
.y49{bottom:526.290000px;}
.y59{bottom:532.905000px;}
.y57{bottom:536.145000px;}
.y6d{bottom:538.170000px;}
.y19{bottom:547.380000px;}
.y11{bottom:547.530000px;}
.ya{bottom:554.730000px;}
.y25{bottom:559.590000px;}
.y48{bottom:561.930000px;}
.y6c{bottom:566.250000px;}
.y6b{bottom:579.210000px;}
.y45{bottom:595.230000px;}
.y2f{bottom:634.860000px;}
.y9{bottom:670.530000px;}
.y2e{bottom:706.170000px;}
.y60{bottom:794.085000px;}
.h6{height:41.535703px;}
.h21{height:47.980898px;}
.h22{height:48.124125px;}
.h1b{height:53.709961px;}
.h23{height:59.439023px;}
.h1d{height:65.884219px;}
.h12{height:71.613281px;}
.h1e{height:71.613290px;}
.h1f{height:71.613334px;}
.h7{height:71.756508px;}
.hc{height:80.330766px;}
.h19{height:83.930766px;}
.h4{height:95.245664px;}
.h5{height:95.388891px;}
.hd{height:107.419922px;}
.he{height:107.563148px;}
.h16{height:113.148984px;}
.h17{height:113.292211px;}
.h10{height:119.594180px;}
.h20{height:128.113594px;}
.h15{height:131.052305px;}
.h18{height:131.195531px;}
.h3{height:143.226562px;}
.h1c{height:143.369789px;}
.h1a{height:147.592758px;}
.ha{height:166.858945px;}
.hf{height:167.002172px;}
.h9{height:171.773789px;}
.hb{height:171.921234px;}
.h11{height:262.820742px;}
.h8{height:262.963969px;}
.h2{height:286.453125px;}
.h1{height:286.596352px;}
.h14{height:322.259766px;}
.h13{height:322.402992px;}
.h0{height:810.000000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.xa{left:54.935979px;}
.x1{left:109.799979px;}
.x2{left:111.239979px;}
.x19{left:112.319979px;}
.x11{left:136.799979px;}
.x8{left:143.639979px;}
.x18{left:161.174979px;}
.x9{left:163.799979px;}
.x12{left:190.799979px;}
.x1c{left:217.904979px;}
.x14{left:221.249979px;}
.x15{left:266.834979px;}
.x3{left:300.269979px;}
.x6{left:311.189979px;}
.x5{left:433.829979px;}
.xb{left:459.719979px;}
.x13{left:541.184979px;}
.x1f{left:563.369979px;}
.x21{left:697.499979px;}
.x20{left:700.919979px;}
.x4{left:716.684979px;}
.x16{left:834.734979px;}
.x17{left:872.894979px;}
.xc{left:905.864979px;}
.x7{left:923.294979px;}
.x10{left:945.899979px;}
.x1d{left:973.904979px;}
.x1e{left:1102.829979px;}
.xe{left:1217.309979px;}
.xd{left:1228.289979px;}
.xf{left:1245.389979px;}
.x1b{left:1319.429979px;}
.x1a{left:1341.029979px;}
@media print{
.v1{vertical-align:-3.200000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:3.200000pt;}
.ls18{letter-spacing:-1.322667pt;}
.ls1f{letter-spacing:-0.112000pt;}
.lsf{letter-spacing:-0.058667pt;}
.ls17{letter-spacing:-0.032000pt;}
.ls19{letter-spacing:-0.000005pt;}
.ls0{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.032000pt;}
.lsd{letter-spacing:0.033920pt;}
.ls1e{letter-spacing:0.074133pt;}
.lse{letter-spacing:0.089600pt;}
.ls11{letter-spacing:0.126933pt;}
.ls1d{letter-spacing:0.185067pt;}
.ls8{letter-spacing:0.320000pt;}
.ls16{letter-spacing:0.384000pt;}
.ls1c{letter-spacing:8.725760pt;}
.ls7{letter-spacing:14.848000pt;}
.ls10{letter-spacing:14.954667pt;}
.ls1{letter-spacing:22.592000pt;}
.ls15{letter-spacing:29.056000pt;}
.ls12{letter-spacing:43.808000pt;}
.ls14{letter-spacing:51.155200pt;}
.ls5{letter-spacing:51.200000pt;}
.ls9{letter-spacing:52.566016pt;}
.ls13{letter-spacing:52.629760pt;}
.lsa{letter-spacing:55.008000pt;}
.ls6{letter-spacing:58.592000pt;}
.lsb{letter-spacing:60.608000pt;}
.ls2{letter-spacing:68.128000pt;}
.ls1b{letter-spacing:80.947200pt;}
.ls1a{letter-spacing:80.992000pt;}
.ls3{letter-spacing:99.200000pt;}
.ls4{letter-spacing:106.592000pt;}
.ws9{word-spacing:-65.088000pt;}
.wsa{word-spacing:-53.082880pt;}
.ws12{word-spacing:-33.730048pt;}
.ws4{word-spacing:-33.701120pt;}
.ws17{word-spacing:-29.312000pt;}
.ws15{word-spacing:-28.956928pt;}
.ws18{word-spacing:-27.634261pt;}
.wse{word-spacing:-27.047680pt;}
.ws6{word-spacing:-24.154880pt;}
.ws5{word-spacing:-21.696000pt;}
.ws8{word-spacing:-14.464000pt;}
.ws1e{word-spacing:-12.005120pt;}
.ws1d{word-spacing:-9.875947pt;}
.ws1c{word-spacing:-9.690880pt;}
.ws0{word-spacing:-8.389120pt;}
.ws7{word-spacing:-1.408000pt;}
.ws16{word-spacing:-1.024000pt;}
.ws1a{word-spacing:-0.917333pt;}
.ws19{word-spacing:-0.480000pt;}
.ws13{word-spacing:-0.215424pt;}
.ws14{word-spacing:-0.141696pt;}
.ws11{word-spacing:-0.058880pt;}
.ws1{word-spacing:0.000000pt;}
.wsf{word-spacing:0.370219pt;}
.ws1b{word-spacing:1.024000pt;}
.wsb{word-spacing:5.621120pt;}
.wsd{word-spacing:6.854187pt;}
.ws3{word-spacing:384.861867pt;}
.ws2{word-spacing:385.133739pt;}
.ws10{word-spacing:1079.664000pt;}
.wsc{word-spacing:1194.014293pt;}
._1b{margin-left:-3991.652693pt;}
._14{margin-left:-22.448469pt;}
._13{margin-left:-17.989803pt;}
._b{margin-left:-13.103360pt;}
._18{margin-left:-12.032000pt;}
._0{margin-left:-9.476736pt;}
._d{margin-left:-7.754240pt;}
._a{margin-left:-6.243200pt;}
._5{margin-left:-5.248000pt;}
._12{margin-left:-4.250709pt;}
._1{margin-left:-3.284651pt;}
._2{margin-left:-1.664000pt;}
._3{width:0.896000pt;}
._7{width:1.994240pt;}
._c{width:3.448021pt;}
._19{width:8.750507pt;}
._8{width:10.293760pt;}
._1a{width:12.002347pt;}
._6{width:20.853931pt;}
._15{width:26.123733pt;}
._16{width:27.561557pt;}
._4{width:30.069333pt;}
._10{width:51.429888pt;}
._9{width:385.629867pt;}
._e{width:884.579925pt;}
._11{width:885.475925pt;}
._17{width:1268.152320pt;}
._f{width:1300.792320pt;}
.fs5{font-size:37.120000pt;}
.fs1a{font-size:42.880000pt;}
.fs1b{font-size:43.008000pt;}
.fs18{font-size:48.000000pt;}
.fs1c{font-size:53.120000pt;}
.fs19{font-size:58.880000pt;}
.fsf{font-size:64.000000pt;}
.fs6{font-size:64.128000pt;}
.fsa{font-size:75.008000pt;}
.fs3{font-size:85.120000pt;}
.fs4{font-size:85.248000pt;}
.fsb{font-size:96.000000pt;}
.fsc{font-size:96.128000pt;}
.fs13{font-size:101.120000pt;}
.fs14{font-size:101.248000pt;}
.fsd{font-size:106.880000pt;}
.fs12{font-size:117.120000pt;}
.fs15{font-size:117.248000pt;}
.fs17{font-size:119.680000pt;}
.fs2{font-size:128.000000pt;}
.fs16{font-size:128.128000pt;}
.fs8{font-size:149.120000pt;}
.fs9{font-size:149.248000pt;}
.fse{font-size:234.880000pt;}
.fs7{font-size:235.008000pt;}
.fs1{font-size:256.000000pt;}
.fs0{font-size:256.128000pt;}
.fs11{font-size:288.000000pt;}
.fs10{font-size:288.128000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:5.120000pt;}
.y54{bottom:27.232000pt;}
.y8{bottom:28.032000pt;}
.y3f{bottom:72.800000pt;}
.y6{bottom:73.856000pt;}
.y56{bottom:85.536000pt;}
.y5f{bottom:90.432000pt;}
.y3e{bottom:92.000000pt;}
.y7f{bottom:93.984000pt;}
.y7e{bottom:97.664000pt;}
.y18{bottom:100.832000pt;}
.y7d{bottom:109.184000pt;}
.y5{bottom:110.176000pt;}
.y2d{bottom:116.384000pt;}
.y55{bottom:116.448000pt;}
.y6a{bottom:121.984000pt;}
.y17{bottom:129.664000pt;}
.y36{bottom:129.792000pt;}
.y3d{bottom:130.400000pt;}
.y7c{bottom:133.986667pt;}
.y53{bottom:144.546667pt;}
.y42{bottom:148.453333pt;}
.y35{bottom:148.986667pt;}
.y3c{bottom:149.600000pt;}
.y2c{bottom:151.906667pt;}
.y10{bottom:157.346667pt;}
.y5e{bottom:157.626667pt;}
.y7b{bottom:158.946667pt;}
.y41{bottom:167.653333pt;}
.y34{bottom:168.226667pt;}
.y58{bottom:168.706667pt;}
.y3b{bottom:168.800000pt;}
.y4{bottom:172.413333pt;}
.y69{bottom:175.586667pt;}
.y52{bottom:178.466667pt;}
.y7a{bottom:183.746667pt;}
.y40{bottom:186.853333pt;}
.y2b{bottom:187.266667pt;}
.y33{bottom:187.426667pt;}
.y3a{bottom:188.000000pt;}
.yf{bottom:197.666667pt;}
.y5d{bottom:205.666667pt;}
.y51{bottom:205.826667pt;}
.y32{bottom:206.626667pt;}
.y39{bottom:207.226667pt;}
.y79{bottom:208.546667pt;}
.y68{bottom:214.466667pt;}
.y3{bottom:220.413333pt;}
.y2a{bottom:224.226667pt;}
.y31{bottom:225.826667pt;}
.y38{bottom:226.426667pt;}
.y62{bottom:226.560000pt;}
.y78{bottom:233.506667pt;}
.y20{bottom:234.080000pt;}
.y24{bottom:238.013333pt;}
.y50{bottom:241.053333pt;}
.y30{bottom:245.026667pt;}
.y37{bottom:245.626667pt;}
.y67{bottom:249.053333pt;}
.ye{bottom:251.453333pt;}
.y77{bottom:258.333333pt;}
.y16{bottom:262.586667pt;}
.y1f{bottom:262.880000pt;}
.y82{bottom:263.906667pt;}
.y76{bottom:269.853333pt;}
.y4f{bottom:272.733333pt;}
.y44{bottom:273.786667pt;}
.y23{bottom:278.333333pt;}
.y5c{bottom:283.586667pt;}
.y43{bottom:284.986667pt;}
.y47{bottom:287.106667pt;}
.y15{bottom:291.386667pt;}
.y1e{bottom:291.680000pt;}
.y75{bottom:294.653333pt;}
.y66{bottom:296.893333pt;}
.y2{bottom:305.053333pt;}
.y29{bottom:306.173333pt;}
.y4e{bottom:316.573333pt;}
.y81{bottom:317.666667pt;}
.y1d{bottom:320.480000pt;}
.y74{bottom:331.133333pt;}
.y65{bottom:331.453333pt;}
.y22{bottom:332.093333pt;}
.y28{bottom:342.973333pt;}
.y4d{bottom:343.933333pt;}
.y5b{bottom:346.973333pt;}
.y73{bottom:355.933333pt;}
.yd{bottom:358.653333pt;}
.y46{bottom:364.893333pt;}
.y1{bottom:374.213333pt;}
.y4c{bottom:378.013333pt;}
.y72{bottom:380.733333pt;}
.y21{bottom:385.693333pt;}
.y71{bottom:392.293333pt;}
.yc{bottom:399.013333pt;}
.y1c{bottom:400.160000pt;}
.y14{bottom:400.253333pt;}
.y4b{bottom:405.413333pt;}
.y5a{bottom:410.333333pt;}
.y64{bottom:414.853333pt;}
.y70{bottom:417.253333pt;}
.y80{bottom:424.893333pt;}
.y27{bottom:425.093333pt;}
.y1b{bottom:428.960000pt;}
.y13{bottom:429.093333pt;}
.y4a{bottom:432.773333pt;}
.y61{bottom:439.333333pt;}
.y6f{bottom:442.053333pt;}
.yb{bottom:452.773333pt;}
.y1a{bottom:457.760000pt;}
.y12{bottom:457.893333pt;}
.y26{bottom:460.453333pt;}
.y63{bottom:462.853333pt;}
.y6e{bottom:466.853333pt;}
.y49{bottom:467.813333pt;}
.y59{bottom:473.693333pt;}
.y57{bottom:476.573333pt;}
.y6d{bottom:478.373333pt;}
.y19{bottom:486.560000pt;}
.y11{bottom:486.693333pt;}
.ya{bottom:493.093333pt;}
.y25{bottom:497.413333pt;}
.y48{bottom:499.493333pt;}
.y6c{bottom:503.333333pt;}
.y6b{bottom:514.853333pt;}
.y45{bottom:529.093333pt;}
.y2f{bottom:564.320000pt;}
.y9{bottom:596.026667pt;}
.y2e{bottom:627.706667pt;}
.y60{bottom:705.853333pt;}
.h6{height:36.920625pt;}
.h21{height:42.649687pt;}
.h22{height:42.777000pt;}
.h1b{height:47.742188pt;}
.h23{height:52.834688pt;}
.h1d{height:58.563750pt;}
.h12{height:63.656250pt;}
.h1e{height:63.656258pt;}
.h1f{height:63.656297pt;}
.h7{height:63.783562pt;}
.hc{height:71.405125pt;}
.h19{height:74.605125pt;}
.h4{height:84.662813pt;}
.h5{height:84.790125pt;}
.hd{height:95.484375pt;}
.he{height:95.611688pt;}
.h16{height:100.576875pt;}
.h17{height:100.704187pt;}
.h10{height:106.305937pt;}
.h20{height:113.878750pt;}
.h15{height:116.490937pt;}
.h18{height:116.618250pt;}
.h3{height:127.312500pt;}
.h1c{height:127.439813pt;}
.h1a{height:131.193562pt;}
.ha{height:148.319063pt;}
.hf{height:148.446375pt;}
.h9{height:152.687812pt;}
.hb{height:152.818875pt;}
.h11{height:233.618437pt;}
.h8{height:233.745750pt;}
.h2{height:254.625000pt;}
.h1{height:254.752312pt;}
.h14{height:286.453125pt;}
.h13{height:286.580437pt;}
.h0{height:720.000000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.xa{left:48.831981pt;}
.x1{left:97.599981pt;}
.x2{left:98.879981pt;}
.x19{left:99.839981pt;}
.x11{left:121.599981pt;}
.x8{left:127.679981pt;}
.x18{left:143.266648pt;}
.x9{left:145.599981pt;}
.x12{left:169.599981pt;}
.x1c{left:193.693314pt;}
.x14{left:196.666648pt;}
.x15{left:237.186648pt;}
.x3{left:266.906648pt;}
.x6{left:276.613314pt;}
.x5{left:385.626648pt;}
.xb{left:408.639981pt;}
.x13{left:481.053314pt;}
.x1f{left:500.773314pt;}
.x21{left:619.999981pt;}
.x20{left:623.039981pt;}
.x4{left:637.053314pt;}
.x16{left:741.986648pt;}
.x17{left:775.906648pt;}
.xc{left:805.213314pt;}
.x7{left:820.706648pt;}
.x10{left:840.799981pt;}
.x1d{left:865.693314pt;}
.x1e{left:980.293314pt;}
.xe{left:1082.053314pt;}
.xd{left:1091.813314pt;}
.xf{left:1107.013314pt;}
.x1b{left:1172.826648pt;}
.x1a{left:1192.026648pt;}
}




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