
    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_cd7d1ec6bdd9372654f6b792.woff')format("woff");}.ff1{font-family:ff1;line-height:0.955000;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_f3e502a67b687b2c57c3a24b.woff')format("woff");}.ff2{font-family:ff2;line-height:0.958000;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_4c9261c37df11b70363bf3fb.woff')format("woff");}.ff3{font-family:ff3;line-height:1.137000;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_b46337a4fbc4d30ec000093a.woff')format("woff");}.ff4{font-family:ff4;line-height:0.949000;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_1151bbd3163cf790611eb7c5.woff')format("woff");}.ff5{font-family:ff5;line-height:0.974000;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_1cb0e23bc2cee010d3dbe5b2.woff')format("woff");}.ff6{font-family:ff6;line-height:0.987000;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_bbb0239e4f2ea5ad0f41e7b8.woff')format("woff");}.ff7{font-family:ff7;line-height:0.700000;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_64c3765408b3c864ffd1c108.woff')format("woff");}.ff8{font-family:ff8;line-height:0.868000;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_71e549c642e7ed9db327c363.woff')format("woff");}.ff9{font-family:ff9;line-height:0.872000;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.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);}
.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:-84.157200px;}
.v3{vertical-align:-3.811200px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:3.811200px;}
.v1{vertical-align:15.187800px;}
.ls8{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.990000px;}
.ls3{letter-spacing:1.440000px;}
.ls1{letter-spacing:1.620000px;}
.lsa{letter-spacing:1.980000px;}
.ls0{letter-spacing:2.400000px;}
.ls6{letter-spacing:1798.684200px;}
.ls2{letter-spacing:2138.370600px;}
.ls5{letter-spacing:3942.695400px;}
.ls4{letter-spacing:4925.158800px;}
.ls7{letter-spacing:6130.953600px;}
.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;}
}
.wsb{word-spacing:-78.792000px;}
.ws0{word-spacing:-65.520000px;}
.ws7{word-spacing:-58.560000px;}
.wsa{word-spacing:-55.632000px;}
.ws8{word-spacing:-44.184000px;}
.ws3{word-spacing:-43.920000px;}
.ws9{word-spacing:-39.528000px;}
.ws6{word-spacing:-39.450000px;}
.ws2{word-spacing:-36.600000px;}
.ws4{word-spacing:-36.576000px;}
.ws11{word-spacing:-35.250000px;}
.ws1{word-spacing:-32.400000px;}
.wsd{word-spacing:-2.400000px;}
.ws10{word-spacing:-1.980000px;}
.wsf{word-spacing:-0.990000px;}
.wse{word-spacing:-0.810000px;}
.ws5{word-spacing:-0.144000px;}
.wsc{word-spacing:0.000000px;}
._c{margin-left:-94.006800px;}
._2{margin-left:-15.330000px;}
._5{margin-left:-13.620000px;}
._9{margin-left:-12.240000px;}
._b{margin-left:-11.010600px;}
._7{margin-left:-9.120000px;}
._3{margin-left:-7.539000px;}
._6{margin-left:-6.429000px;}
._0{margin-left:-4.851000px;}
._1{margin-left:-2.940000px;}
._4{margin-left:-1.701000px;}
._8{width:1.554000px;}
._a{width:35.250000px;}
.fcd{color:transparent;}
.fc5{color:rgb(231,55,67);}
.fc7{color:rgb(233,115,93);}
.fc0{color:rgb(48,128,226);}
.fcc{color:rgb(233,81,35);}
.fc2{color:rgb(0,186,174);}
.fc3{color:rgb(255,255,255);}
.fc1{color:rgb(0,151,117);}
.fc4{color:rgb(0,0,0);}
.fc6{color:rgb(58,61,145);}
.fc8{color:rgb(82,187,174);}
.fc9{color:rgb(233,74,71);}
.fca{color:rgb(65,97,171);}
.fcb{color:rgb(245,51,63);}
.fs10{font-size:66.000000px;}
.fs14{font-size:72.000000px;}
.fs1b{font-size:78.000000px;}
.fs11{font-size:96.000000px;}
.fsf{font-size:102.000000px;}
.fs3{font-size:108.000000px;}
.fsd{font-size:114.000000px;}
.fs5{font-size:120.000000px;}
.fs13{font-size:132.000000px;}
.fs12{font-size:138.000000px;}
.fsb{font-size:144.000000px;}
.fs7{font-size:150.000000px;}
.fsc{font-size:156.000000px;}
.fs8{font-size:162.000000px;}
.fs15{font-size:168.000000px;}
.fs9{font-size:180.000000px;}
.fse{font-size:186.000000px;}
.fs6{font-size:192.000000px;}
.fs2{font-size:198.000000px;}
.fs0{font-size:210.000000px;}
.fs1{font-size:216.000000px;}
.fsa{font-size:228.000000px;}
.fs4{font-size:240.000000px;}
.fs16{font-size:294.000000px;}
.fs1a{font-size:390.000000px;}
.fs17{font-size:396.000000px;}
.fs19{font-size:402.000000px;}
.fs18{font-size:414.000000px;}
.y0{bottom:0.000000px;}
.y75{bottom:94.637400px;}
.y71{bottom:119.772150px;}
.y63{bottom:138.874350px;}
.y68{bottom:148.410450px;}
.y6d{bottom:154.950750px;}
.y67{bottom:180.810450px;}
.y64{bottom:185.585100px;}
.y70{bottom:191.772150px;}
.y6c{bottom:198.150750px;}
.y6f{bottom:234.972150px;}
.y6b{bottom:241.350750px;}
.y6e{bottom:278.172150px;}
.y6a{bottom:284.550750px;}
.y69{bottom:322.350300px;}
.y55{bottom:509.111850px;}
.y66{bottom:527.095800px;}
.y65{bottom:527.095950px;}
.y54{bottom:581.111850px;}
.y53{bottom:613.511850px;}
.y47{bottom:639.530850px;}
.y52{bottom:645.911850px;}
.y46{bottom:684.530850px;}
.y51{bottom:690.911850px;}
.y4b{bottom:705.501750px;}
.y45{bottom:729.530850px;}
.y50{bottom:735.911850px;}
.y4a{bottom:750.501750px;}
.y44{bottom:774.530850px;}
.y3d{bottom:795.739950px;}
.y49{bottom:810.609150px;}
.y19{bottom:813.916200px;}
.y43{bottom:833.074350px;}
.y48{bottom:841.779900px;}
.y42{bottom:868.685100px;}
.y4f{bottom:936.723000px;}
.y41{bottom:965.965350px;}
.y4e{bottom:969.123000px;}
.y40{bottom:1005.565350px;}
.y4d{bottom:1014.123000px;}
.y3f{bottom:1048.765350px;}
.y4c{bottom:1059.123000px;}
.y3c{bottom:1102.509750px;}
.y3e{bottom:1113.110550px;}
.y56{bottom:1207.804050px;}
.y3b{bottom:1214.601900px;}
.y2f{bottom:1292.150550px;}
.y2e{bottom:1322.750400px;}
.y2b{bottom:1363.401750px;}
.y2d{bottom:1376.750400px;}
.y28{bottom:1382.938200px;}
.y27{bottom:1417.138200px;}
.y2a{bottom:1419.201750px;}
.y2c{bottom:1430.750400px;}
.y29{bottom:1541.522250px;}
.yb{bottom:1560.272100px;}
.yf{bottom:1655.544300px;}
.y36{bottom:1680.869400px;}
.ye{bottom:1687.944150px;}
.y35{bottom:1713.269400px;}
.yd{bottom:1745.544300px;}
.y34{bottom:1770.869400px;}
.yc{bottom:1803.144300px;}
.y33{bottom:1828.469400px;}
.y3a{bottom:1857.079050px;}
.y39{bottom:1898.479050px;}
.y38{bottom:1990.831350px;}
.ya{bottom:2001.130800px;}
.y26{bottom:2015.713500px;}
.y25{bottom:2060.713500px;}
.y32{bottom:2075.772900px;}
.y24{bottom:2105.713500px;}
.y31{bottom:2122.573050px;}
.y23{bottom:2150.713500px;}
.y30{bottom:2167.573050px;}
.y22{bottom:2224.919550px;}
.y1d{bottom:2263.571100px;}
.y18{bottom:2268.798450px;}
.y21{bottom:2269.919550px;}
.y1c{bottom:2310.371100px;}
.y13{bottom:2324.757000px;}
.y17{bottom:2340.798450px;}
.y12{bottom:2371.557150px;}
.y1b{bottom:2406.130500px;}
.y20{bottom:2409.278250px;}
.y16{bottom:2417.298450px;}
.y1f{bottom:2441.678250px;}
.y1a{bottom:2452.930650px;}
.y1e{bottom:2486.678250px;}
.y11{bottom:2568.310500px;}
.y14{bottom:2583.511200px;}
.y10{bottom:2628.737700px;}
.y9{bottom:2715.389700px;}
.y15{bottom:2736.721950px;}
.y8{bottom:2751.389700px;}
.y37{bottom:2907.370800px;}
.y5e{bottom:2986.657950px;}
.y5d{bottom:3037.057950px;}
.y7{bottom:3050.553750px;}
.y6{bottom:3050.853150px;}
.y5{bottom:3052.019700px;}
.y5c{bottom:3087.458100px;}
.y4{bottom:3116.819850px;}
.y5b{bottom:3137.857950px;}
.y3{bottom:3179.819850px;}
.y2{bottom:3242.819850px;}
.y62{bottom:3243.849300px;}
.y61{bottom:3294.249450px;}
.y1{bottom:3305.819850px;}
.y60{bottom:3344.649600px;}
.y5f{bottom:3395.049300px;}
.y58{bottom:3398.783550px;}
.y57{bottom:3429.383850px;}
.y5a{bottom:3438.609000px;}
.y59{bottom:3469.209300px;}
.y74{bottom:3638.852400px;}
.y73{bottom:3783.103650px;}
.y72{bottom:3895.603650px;}
.h1d{height:50.400000px;}
.h16{height:50.820000px;}
.h26{height:59.124000px;}
.h18{height:71.712000px;}
.h14{height:75.888000px;}
.h1e{height:76.602000px;}
.h7{height:81.108000px;}
.h11{height:85.614000px;}
.h5{height:90.120000px;}
.h1c{height:99.132000px;}
.h19{height:103.638000px;}
.h23{height:107.136000px;}
.h1a{height:108.144000px;}
.h1b{height:112.608000px;}
.he{height:112.650000px;}
.hb{height:115.500000px;}
.h15{height:120.120000px;}
.h20{height:121.662000px;}
.h10{height:135.180000px;}
.ha{height:139.650000px;}
.h13{height:139.686000px;}
.h6{height:144.192000px;}
.hf{height:145.236000px;}
.hd{height:148.698000px;}
.h8{height:149.107800px;}
.h9{height:150.822000px;}
.h1f{height:156.408000px;}
.h2{height:156.870000px;}
.h12{height:157.710000px;}
.h3{height:161.352000px;}
.hc{height:171.228000px;}
.h21{height:171.228600px;}
.h17{height:180.240000px;}
.h22{height:218.736000px;}
.h4{height:223.440000px;}
.h25{height:301.902000px;}
.h24{height:310.914000px;}
.h0{height:4039.365000px;}
.h1{height:4039.500000px;}
.w1{width:2763.750000px;}
.w0{width:2763.780000px;}
.x0{left:0.000000px;}
.x6{left:119.254650px;}
.xa{left:120.764100px;}
.x9{left:125.856150px;}
.x32{left:132.830700px;}
.x33{left:136.851900px;}
.x7{left:155.254650px;}
.x13{left:162.683700px;}
.x8{left:165.276750px;}
.x36{left:171.714900px;}
.x31{left:188.559600px;}
.x30{left:195.342000px;}
.x17{left:216.591450px;}
.x16{left:283.155150px;}
.x21{left:299.297400px;}
.x27{left:302.483100px;}
.x26{left:308.510250px;}
.x29{left:313.230600px;}
.x28{left:320.709000px;}
.x23{left:322.935000px;}
.x35{left:338.309550px;}
.x2d{left:402.294300px;}
.x39{left:424.124250px;}
.x2f{left:436.679550px;}
.x1e{left:482.200500px;}
.x18{left:486.522900px;}
.xd{left:491.595150px;}
.xf{left:689.280150px;}
.xc{left:697.939650px;}
.x34{left:710.922750px;}
.x37{left:749.655450px;}
.x1b{left:822.846150px;}
.x2a{left:999.037050px;}
.x2c{left:1003.965750px;}
.x2b{left:1014.065850px;}
.x1a{left:1025.258250px;}
.x3a{left:1176.403050px;}
.x20{left:1181.346000px;}
.x11{left:1247.787600px;}
.x10{left:1315.081200px;}
.x19{left:1380.909900px;}
.x12{left:1426.680750px;}
.xb{left:1572.525450px;}
.x1c{left:1608.279450px;}
.x38{left:1632.355200px;}
.x1d{left:1655.030250px;}
.x22{left:1657.115100px;}
.x25{left:1684.678500px;}
.x14{left:1692.649950px;}
.xe{left:1700.419950px;}
.x2e{left:1704.072450px;}
.x15{left:1707.005550px;}
.x5{left:1716.676950px;}
.x4{left:1734.685050px;}
.x1{left:1745.079000px;}
.x2{left:1755.867750px;}
.x3{left:1851.442050px;}
.x24{left:1941.935250px;}
.x1f{left:2234.607750px;}
.x3b{left:2744.939700px;}
@media print{
.v2{vertical-align:-74.806400pt;}
.v3{vertical-align:-3.387733pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:3.387733pt;}
.v1{vertical-align:13.500267pt;}
.ls8{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.880000pt;}
.ls3{letter-spacing:1.280000pt;}
.ls1{letter-spacing:1.440000pt;}
.lsa{letter-spacing:1.760000pt;}
.ls0{letter-spacing:2.133333pt;}
.ls6{letter-spacing:1598.830400pt;}
.ls2{letter-spacing:1900.773867pt;}
.ls5{letter-spacing:3504.618133pt;}
.ls4{letter-spacing:4377.918933pt;}
.ls7{letter-spacing:5449.736533pt;}
.wsb{word-spacing:-70.037333pt;}
.ws0{word-spacing:-58.240000pt;}
.ws7{word-spacing:-52.053333pt;}
.wsa{word-spacing:-49.450667pt;}
.ws8{word-spacing:-39.274667pt;}
.ws3{word-spacing:-39.040000pt;}
.ws9{word-spacing:-35.136000pt;}
.ws6{word-spacing:-35.066667pt;}
.ws2{word-spacing:-32.533333pt;}
.ws4{word-spacing:-32.512000pt;}
.ws11{word-spacing:-31.333333pt;}
.ws1{word-spacing:-28.800000pt;}
.wsd{word-spacing:-2.133333pt;}
.ws10{word-spacing:-1.760000pt;}
.wsf{word-spacing:-0.880000pt;}
.wse{word-spacing:-0.720000pt;}
.ws5{word-spacing:-0.128000pt;}
.wsc{word-spacing:0.000000pt;}
._c{margin-left:-83.561600pt;}
._2{margin-left:-13.626667pt;}
._5{margin-left:-12.106667pt;}
._9{margin-left:-10.880000pt;}
._b{margin-left:-9.787200pt;}
._7{margin-left:-8.106667pt;}
._3{margin-left:-6.701333pt;}
._6{margin-left:-5.714667pt;}
._0{margin-left:-4.312000pt;}
._1{margin-left:-2.613333pt;}
._4{margin-left:-1.512000pt;}
._8{width:1.381333pt;}
._a{width:31.333333pt;}
.fs10{font-size:58.666667pt;}
.fs14{font-size:64.000000pt;}
.fs1b{font-size:69.333333pt;}
.fs11{font-size:85.333333pt;}
.fsf{font-size:90.666667pt;}
.fs3{font-size:96.000000pt;}
.fsd{font-size:101.333333pt;}
.fs5{font-size:106.666667pt;}
.fs13{font-size:117.333333pt;}
.fs12{font-size:122.666667pt;}
.fsb{font-size:128.000000pt;}
.fs7{font-size:133.333333pt;}
.fsc{font-size:138.666667pt;}
.fs8{font-size:144.000000pt;}
.fs15{font-size:149.333333pt;}
.fs9{font-size:160.000000pt;}
.fse{font-size:165.333333pt;}
.fs6{font-size:170.666667pt;}
.fs2{font-size:176.000000pt;}
.fs0{font-size:186.666667pt;}
.fs1{font-size:192.000000pt;}
.fsa{font-size:202.666667pt;}
.fs4{font-size:213.333333pt;}
.fs16{font-size:261.333333pt;}
.fs1a{font-size:346.666667pt;}
.fs17{font-size:352.000000pt;}
.fs19{font-size:357.333333pt;}
.fs18{font-size:368.000000pt;}
.y0{bottom:0.000000pt;}
.y75{bottom:84.122133pt;}
.y71{bottom:106.464133pt;}
.y63{bottom:123.443867pt;}
.y68{bottom:131.920400pt;}
.y6d{bottom:137.734000pt;}
.y67{bottom:160.720400pt;}
.y64{bottom:164.964533pt;}
.y70{bottom:170.464133pt;}
.y6c{bottom:176.134000pt;}
.y6f{bottom:208.864133pt;}
.y6b{bottom:214.534000pt;}
.y6e{bottom:247.264133pt;}
.y6a{bottom:252.934000pt;}
.y69{bottom:286.533600pt;}
.y55{bottom:452.543867pt;}
.y66{bottom:468.529600pt;}
.y65{bottom:468.529733pt;}
.y54{bottom:516.543867pt;}
.y53{bottom:545.343867pt;}
.y47{bottom:568.471867pt;}
.y52{bottom:574.143867pt;}
.y46{bottom:608.471867pt;}
.y51{bottom:614.143867pt;}
.y4b{bottom:627.112667pt;}
.y45{bottom:648.471867pt;}
.y50{bottom:654.143867pt;}
.y4a{bottom:667.112667pt;}
.y44{bottom:688.471867pt;}
.y3d{bottom:707.324400pt;}
.y49{bottom:720.541467pt;}
.y19{bottom:723.481067pt;}
.y43{bottom:740.510533pt;}
.y48{bottom:748.248800pt;}
.y42{bottom:772.164533pt;}
.y4f{bottom:832.642667pt;}
.y41{bottom:858.635867pt;}
.y4e{bottom:861.442667pt;}
.y40{bottom:893.835867pt;}
.y4d{bottom:901.442667pt;}
.y3f{bottom:932.235867pt;}
.y4c{bottom:941.442667pt;}
.y3c{bottom:980.008667pt;}
.y3e{bottom:989.431600pt;}
.y56{bottom:1073.603600pt;}
.y3b{bottom:1079.646133pt;}
.y2f{bottom:1148.578267pt;}
.y2e{bottom:1175.778133pt;}
.y2b{bottom:1211.912667pt;}
.y2d{bottom:1223.778133pt;}
.y28{bottom:1229.278400pt;}
.y27{bottom:1259.678400pt;}
.y2a{bottom:1261.512667pt;}
.y2c{bottom:1271.778133pt;}
.y29{bottom:1370.242000pt;}
.yb{bottom:1386.908533pt;}
.yf{bottom:1471.594933pt;}
.y36{bottom:1494.106133pt;}
.ye{bottom:1500.394800pt;}
.y35{bottom:1522.906133pt;}
.yd{bottom:1551.594933pt;}
.y34{bottom:1574.106133pt;}
.yc{bottom:1602.794933pt;}
.y33{bottom:1625.306133pt;}
.y3a{bottom:1650.736933pt;}
.y39{bottom:1687.536933pt;}
.y38{bottom:1769.627867pt;}
.ya{bottom:1778.782933pt;}
.y26{bottom:1791.745333pt;}
.y25{bottom:1831.745333pt;}
.y32{bottom:1845.131467pt;}
.y24{bottom:1871.745333pt;}
.y31{bottom:1886.731600pt;}
.y23{bottom:1911.745333pt;}
.y30{bottom:1926.731600pt;}
.y22{bottom:1977.706267pt;}
.y1d{bottom:2012.063200pt;}
.y18{bottom:2016.709733pt;}
.y21{bottom:2017.706267pt;}
.y1c{bottom:2053.663200pt;}
.y13{bottom:2066.450667pt;}
.y17{bottom:2080.709733pt;}
.y12{bottom:2108.050800pt;}
.y1b{bottom:2138.782667pt;}
.y20{bottom:2141.580667pt;}
.y16{bottom:2148.709733pt;}
.y1f{bottom:2170.380667pt;}
.y1a{bottom:2180.382800pt;}
.y1e{bottom:2210.380667pt;}
.y11{bottom:2282.942667pt;}
.y14{bottom:2296.454400pt;}
.y10{bottom:2336.655733pt;}
.y9{bottom:2413.679733pt;}
.y15{bottom:2432.641733pt;}
.y8{bottom:2445.679733pt;}
.y37{bottom:2584.329600pt;}
.y5e{bottom:2654.807067pt;}
.y5d{bottom:2699.607067pt;}
.y7{bottom:2711.603333pt;}
.y6{bottom:2711.869467pt;}
.y5{bottom:2712.906400pt;}
.y5c{bottom:2744.407200pt;}
.y4{bottom:2770.506533pt;}
.y5b{bottom:2789.207067pt;}
.y3{bottom:2826.506533pt;}
.y2{bottom:2882.506533pt;}
.y62{bottom:2883.421600pt;}
.y61{bottom:2928.221733pt;}
.y1{bottom:2938.506533pt;}
.y60{bottom:2973.021867pt;}
.y5f{bottom:3017.821600pt;}
.y58{bottom:3021.140933pt;}
.y57{bottom:3048.341200pt;}
.y5a{bottom:3056.541333pt;}
.y59{bottom:3083.741600pt;}
.y74{bottom:3234.535467pt;}
.y73{bottom:3362.758800pt;}
.y72{bottom:3462.758800pt;}
.h1d{height:44.800000pt;}
.h16{height:45.173333pt;}
.h26{height:52.554667pt;}
.h18{height:63.744000pt;}
.h14{height:67.456000pt;}
.h1e{height:68.090667pt;}
.h7{height:72.096000pt;}
.h11{height:76.101333pt;}
.h5{height:80.106667pt;}
.h1c{height:88.117333pt;}
.h19{height:92.122667pt;}
.h23{height:95.232000pt;}
.h1a{height:96.128000pt;}
.h1b{height:100.096000pt;}
.he{height:100.133333pt;}
.hb{height:102.666667pt;}
.h15{height:106.773333pt;}
.h20{height:108.144000pt;}
.h10{height:120.160000pt;}
.ha{height:124.133333pt;}
.h13{height:124.165333pt;}
.h6{height:128.170667pt;}
.hf{height:129.098667pt;}
.hd{height:132.176000pt;}
.h8{height:132.540267pt;}
.h9{height:134.064000pt;}
.h1f{height:139.029333pt;}
.h2{height:139.440000pt;}
.h12{height:140.186667pt;}
.h3{height:143.424000pt;}
.hc{height:152.202667pt;}
.h21{height:152.203200pt;}
.h17{height:160.213333pt;}
.h22{height:194.432000pt;}
.h4{height:198.613333pt;}
.h25{height:268.357333pt;}
.h24{height:276.368000pt;}
.h0{height:3590.546667pt;}
.h1{height:3590.666667pt;}
.w1{width:2456.666667pt;}
.w0{width:2456.693333pt;}
.x0{left:0.000000pt;}
.x6{left:106.004133pt;}
.xa{left:107.345867pt;}
.x9{left:111.872133pt;}
.x32{left:118.071733pt;}
.x33{left:121.646133pt;}
.x7{left:138.004133pt;}
.x13{left:144.607733pt;}
.x8{left:146.912667pt;}
.x36{left:152.635467pt;}
.x31{left:167.608533pt;}
.x30{left:173.637333pt;}
.x17{left:192.525733pt;}
.x16{left:251.693467pt;}
.x21{left:266.042133pt;}
.x27{left:268.873867pt;}
.x26{left:274.231333pt;}
.x29{left:278.427200pt;}
.x28{left:285.074667pt;}
.x23{left:287.053333pt;}
.x35{left:300.719600pt;}
.x2d{left:357.594933pt;}
.x39{left:376.999333pt;}
.x2f{left:388.159600pt;}
.x1e{left:428.622667pt;}
.x18{left:432.464800pt;}
.xd{left:436.973467pt;}
.xf{left:612.693467pt;}
.xc{left:620.390800pt;}
.x34{left:631.931333pt;}
.x37{left:666.360400pt;}
.x1b{left:731.418800pt;}
.x2a{left:888.032933pt;}
.x2c{left:892.414000pt;}
.x2b{left:901.391867pt;}
.x1a{left:911.340667pt;}
.x3a{left:1045.691600pt;}
.x20{left:1050.085333pt;}
.x11{left:1109.144533pt;}
.x10{left:1168.961067pt;}
.x19{left:1227.475467pt;}
.x12{left:1268.160667pt;}
.xb{left:1397.800400pt;}
.x1c{left:1429.581733pt;}
.x38{left:1450.982400pt;}
.x1d{left:1471.138000pt;}
.x22{left:1472.991200pt;}
.x25{left:1497.492000pt;}
.x14{left:1504.577733pt;}
.xe{left:1511.484400pt;}
.x2e{left:1514.731067pt;}
.x15{left:1517.338267pt;}
.x5{left:1525.935067pt;}
.x4{left:1541.942267pt;}
.x1{left:1551.181333pt;}
.x2{left:1560.771333pt;}
.x3{left:1645.726267pt;}
.x24{left:1726.164667pt;}
.x1f{left:1986.318000pt;}
.x3b{left:2439.946400pt;}
}




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