
    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_0d6faa871e11910fc5341e6b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_fcd3b88c79b1747a50401268.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_d9e1adc94f4965d28282e676.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_18e88ddb3a853b9f4230b753.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_2c87d70034de48282d0a8740.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.003906;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_0afcb952c159d921a99f938f.woff2')format("woff");}.ff6{font-family:ff6;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;}
.m2{transform:matrix(0.249221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249221,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249908,0.000000,0.000000,0.250000,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);}
.v2{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.lsa{letter-spacing:-0.936000px;}
.ls9{letter-spacing:-0.521789px;}
.lsb{letter-spacing:-0.450600px;}
.ls7{letter-spacing:-0.288000px;}
.lsc{letter-spacing:-0.144000px;}
.ls6{letter-spacing:-0.072000px;}
.ls4{letter-spacing:-0.053280px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.216000px;}
.ls3{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.720000px;}
.ls0{letter-spacing:3.708000px;}
.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;}
}
.ws4{word-spacing:-18.216000px;}
.wsa{word-spacing:-18.000000px;}
.ws2{word-spacing:-17.928000px;}
.ws9{word-spacing:-17.856000px;}
.ws3{word-spacing:-17.712000px;}
.ws7{word-spacing:-17.064000px;}
.ws1{word-spacing:-15.300000px;}
.ws0{word-spacing:-14.940000px;}
.wsb{word-spacing:-13.410720px;}
.ws8{word-spacing:-11.609400px;}
.wsc{word-spacing:-8.406720px;}
.ws6{word-spacing:-7.664518px;}
.ws5{word-spacing:0.000000px;}
._15{margin-left:-2.155440px;}
._2{margin-left:-1.080000px;}
._0{width:1.053360px;}
._1{width:2.497920px;}
._3{width:3.888480px;}
._9{width:5.378400px;}
._18{width:7.053600px;}
._6{width:9.083520px;}
._7{width:10.192800px;}
._c{width:11.484480px;}
._d{width:12.696480px;}
._8{width:13.939680px;}
._e{width:15.268320px;}
._5{width:16.497600px;}
._4{width:17.808960px;}
._a{width:19.481760px;}
._b{width:20.627760px;}
._1b{width:21.864480px;}
._14{width:23.256000px;}
._13{width:24.768000px;}
._f{width:26.208000px;}
._16{width:30.600000px;}
._17{width:31.815360px;}
._19{width:48.816000px;}
._1a{width:49.896000px;}
._10{width:52.128000px;}
._11{width:53.234640px;}
._12{width:55.500000px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,128);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:27.570207px;}
.fs8{font-size:30.240000px;}
.fs7{font-size:48.240000px;}
.fs3{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs5{font-size:64.742686px;}
.fs4{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y8a{bottom:2.115372px;}
.ya2{bottom:2.340000px;}
.y5c{bottom:2.644204px;}
.y58{bottom:2.644214px;}
.y56{bottom:2.644217px;}
.y76{bottom:2.658307px;}
.y6e{bottom:2.659012px;}
.y6c{bottom:2.665358px;}
.y5f{bottom:7.932606px;}
.y5a{bottom:7.932608px;}
.y74{bottom:7.946708px;}
.y70{bottom:7.947413px;}
.y63{bottom:7.950233px;}
.y67{bottom:7.953759px;}
.y89{bottom:11.119767px;}
.y4e{bottom:12.271935px;}
.ya1{bottom:16.200000px;}
.y34{bottom:112.896000px;}
.y33{bottom:133.596000px;}
.y32{bottom:154.290000px;}
.y31{bottom:174.990000px;}
.y30{bottom:195.690000px;}
.y2f{bottom:216.390000px;}
.y2e{bottom:245.730000px;}
.y54{bottom:254.910000px;}
.y2d{bottom:275.790000px;}
.y53{bottom:282.855000px;}
.y2c{bottom:296.535000px;}
.y52{bottom:310.935000px;}
.y2b{bottom:317.235000px;}
.y51{bottom:329.115000px;}
.y2a{bottom:337.935000px;}
.y50{bottom:344.595000px;}
.y29{bottom:358.635000px;}
.y4f{bottom:365.835000px;}
.y4d{bottom:365.864959px;}
.y28{bottom:379.335000px;}
.y27{bottom:400.035000px;}
.y26{bottom:420.735000px;}
.y9f{bottom:421.455000px;}
.y25{bottom:441.435000px;}
.y9e{bottom:442.155000px;}
.y24{bottom:462.135000px;}
.y9d{bottom:471.855000px;}
.y23{bottom:482.835000px;}
.y9c{bottom:492.555000px;}
.y22{bottom:503.535000px;}
.y9b{bottom:513.255000px;}
.y21{bottom:524.235000px;}
.y9a{bottom:542.955000px;}
.y20{bottom:544.935000px;}
.y99{bottom:563.655000px;}
.y1f{bottom:574.665000px;}
.y98{bottom:584.385000px;}
.y1e{bottom:595.365000px;}
.y97{bottom:614.085000px;}
.y1d{bottom:616.065000px;}
.y96{bottom:634.785000px;}
.y1c{bottom:636.765000px;}
.y4c{bottom:641.085000px;}
.y95{bottom:655.485000px;}
.y1b{bottom:657.465000px;}
.y4b{bottom:669.345000px;}
.y1a{bottom:678.165000px;}
.y94{bottom:685.185000px;}
.y4a{bottom:690.045000px;}
.y19{bottom:698.865000px;}
.y93{bottom:705.885000px;}
.y49{bottom:710.745000px;}
.y18{bottom:719.565000px;}
.y92{bottom:726.585000px;}
.y48{bottom:731.445000px;}
.y17{bottom:740.265000px;}
.y47{bottom:752.145000px;}
.y91{bottom:755.925000px;}
.y16{bottom:760.965000px;}
.y46{bottom:772.665000px;}
.y90{bottom:776.625000px;}
.y15{bottom:790.305000px;}
.y45{bottom:793.365000px;}
.y8f{bottom:796.605000px;}
.y14{bottom:810.285000px;}
.y8e{bottom:812.085000px;}
.y44{bottom:814.065000px;}
.y13{bottom:827.025000px;}
.y8d{bottom:831.885000px;}
.y43{bottom:834.765000px;}
.y12{bottom:843.945000px;}
.y8c{bottom:851.910000px;}
.y42{bottom:855.510000px;}
.y11{bottom:861.630000px;}
.y8b{bottom:873.510000px;}
.y41{bottom:876.210000px;}
.y10{bottom:878.910000px;}
.y61{bottom:885.105807px;}
.y62{bottom:885.105811px;}
.y57{bottom:889.354103px;}
.y59{bottom:889.354119px;}
.y60{bottom:895.171400px;}
.yf{bottom:896.190000px;}
.y55{bottom:899.948537px;}
.y40{bottom:905.550000px;}
.ye{bottom:913.290000px;}
.y69{bottom:917.435572px;}
.y6a{bottom:917.435577px;}
.y3f{bottom:925.530000px;}
.y68{bottom:927.501166px;}
.yd{bottom:930.570000px;}
.y6d{bottom:941.797473px;}
.y6f{bottom:941.797478px;}
.yc{bottom:947.850000px;}
.y6b{bottom:951.860246px;}
.y3e{bottom:952.170000px;}
.y72{bottom:956.640955px;}
.y73{bottom:956.640960px;}
.y65{bottom:965.116531px;}
.y66{bottom:965.116536px;}
.yb{bottom:965.130000px;}
.y71{bottom:966.703023px;}
.y3d{bottom:972.870000px;}
.y64{bottom:975.185650px;}
.ya{bottom:982.410000px;}
.y77{bottom:987.891886px;}
.y78{bottom:987.891890px;}
.y3c{bottom:993.570000px;}
.y75{bottom:997.961005px;}
.y9{bottom:999.690000px;}
.y5d{bottom:1009.101932px;}
.y5e{bottom:1009.101937px;}
.y3b{bottom:1014.270000px;}
.y8{bottom:1016.790000px;}
.y5b{bottom:1019.164000px;}
.y7{bottom:1034.070000px;}
.y3a{bottom:1034.970000px;}
.y7a{bottom:1040.352833px;}
.y7b{bottom:1040.352837px;}
.y83{bottom:1049.364302px;}
.y84{bottom:1049.364307px;}
.y79{bottom:1050.421952px;}
.y6{bottom:1051.350000px;}
.y39{bottom:1055.670000px;}
.y82{bottom:1059.426370px;}
.y5{bottom:1068.630000px;}
.y7d{bottom:1071.610811px;}
.y7e{bottom:1071.610816px;}
.y38{bottom:1076.370000px;}
.y7c{bottom:1081.672879px;}
.y86{bottom:1081.672909px;}
.y87{bottom:1081.672913px;}
.y85{bottom:1091.756130px;}
.y4{bottom:1094.910000px;}
.y37{bottom:1097.070000px;}
.y80{bottom:1100.767531px;}
.y81{bottom:1100.767536px;}
.ya0{bottom:1101.570000px;}
.y88{bottom:1105.527148px;}
.y7f{bottom:1110.829599px;}
.y36{bottom:1117.770000px;}
.y3{bottom:1132.560000px;}
.y35{bottom:1138.500000px;}
.y2{bottom:1161.540000px;}
.y1{bottom:1177.920000px;}
.h11{height:9.536757px;}
.h10{height:10.065598px;}
.hd{height:10.065609px;}
.h13{height:10.083226px;}
.h15{height:18.015844px;}
.h12{height:20.131189px;}
.h14{height:20.148817px;}
.hf{height:20.660032px;}
.h17{height:27.180000px;}
.he{height:28.754864px;}
.h18{height:50.312812px;}
.h6{height:52.998047px;}
.hc{height:54.421875px;}
.h5{height:58.651172px;}
.h4{height:60.226875px;}
.ha{height:64.394947px;}
.h8{height:65.010937px;}
.hb{height:69.086250px;}
.h2{height:70.664062px;}
.h7{height:72.562500px;}
.h16{height:74.704922px;}
.h3{height:96.508125px;}
.h9{height:788.934237px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:12.652597px;}
.w9{width:12.670170px;}
.w8{width:32.703449px;}
.w6{width:32.721022px;}
.w5{width:36.411362px;}
.w4{width:117.669152px;}
.wa{width:139.305093px;}
.wb{width:153.930000px;}
.w3{width:622.435001px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:3.163149px;}
.xf{left:4.217532px;}
.x9{left:5.271915px;}
.xb{left:11.612272px;}
.x7{left:21.635941px;}
.x28{left:42.834000px;}
.x29{left:48.234000px;}
.x25{left:53.805169px;}
.x2{left:135.035987px;}
.x27{left:144.756000px;}
.x24{left:154.613660px;}
.x11{left:209.480241px;}
.x10{left:224.782854px;}
.xc{left:271.759135px;}
.xe{left:280.194200px;}
.xa{left:287.047690px;}
.xd{left:295.496813px;}
.x21{left:297.078387px;}
.x13{left:311.312559px;}
.x20{left:312.388030px;}
.x12{left:326.622201px;}
.x23{left:368.825641px;}
.x15{left:369.880024px;}
.x22{left:384.135284px;}
.x14{left:385.189667px;}
.x17{left:427.400136px;}
.x16{left:442.709778px;}
.x19{left:462.229924px;}
.x18{left:477.539566px;}
.x1b{left:533.457016px;}
.x1a{left:548.759629px;}
.x8{left:579.371884px;}
.x1d{left:590.442906px;}
.x1c{left:605.752549px;}
.x5{left:618.419204px;}
.x3{left:620.075461px;}
.x1f{left:649.544593px;}
.x1e{left:664.847206px;}
.x26{left:748.769987px;}
.x4{left:757.589987px;}
.x1{left:784.049987px;}
@media print{
.v2{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.lsa{letter-spacing:-0.832000pt;}
.ls9{letter-spacing:-0.463813pt;}
.lsb{letter-spacing:-0.400533pt;}
.ls7{letter-spacing:-0.256000pt;}
.lsc{letter-spacing:-0.128000pt;}
.ls6{letter-spacing:-0.064000pt;}
.ls4{letter-spacing:-0.047360pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.192000pt;}
.ls3{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.640000pt;}
.ls0{letter-spacing:3.296000pt;}
.ws4{word-spacing:-16.192000pt;}
.wsa{word-spacing:-16.000000pt;}
.ws2{word-spacing:-15.936000pt;}
.ws9{word-spacing:-15.872000pt;}
.ws3{word-spacing:-15.744000pt;}
.ws7{word-spacing:-15.168000pt;}
.ws1{word-spacing:-13.600000pt;}
.ws0{word-spacing:-13.280000pt;}
.wsb{word-spacing:-11.920640pt;}
.ws8{word-spacing:-10.319467pt;}
.wsc{word-spacing:-7.472640pt;}
.ws6{word-spacing:-6.812904pt;}
.ws5{word-spacing:0.000000pt;}
._15{margin-left:-1.915947pt;}
._2{margin-left:-0.960000pt;}
._0{width:0.936320pt;}
._1{width:2.220373pt;}
._3{width:3.456427pt;}
._9{width:4.780800pt;}
._18{width:6.269867pt;}
._6{width:8.074240pt;}
._7{width:9.060267pt;}
._c{width:10.208427pt;}
._d{width:11.285760pt;}
._8{width:12.390827pt;}
._e{width:13.571840pt;}
._5{width:14.664533pt;}
._4{width:15.830187pt;}
._a{width:17.317120pt;}
._b{width:18.335787pt;}
._1b{width:19.435093pt;}
._14{width:20.672000pt;}
._13{width:22.016000pt;}
._f{width:23.296000pt;}
._16{width:27.200000pt;}
._17{width:28.280320pt;}
._19{width:43.392000pt;}
._1a{width:44.352000pt;}
._10{width:46.336000pt;}
._11{width:47.319680pt;}
._12{width:49.333333pt;}
.fs6{font-size:24.506851pt;}
.fs8{font-size:26.880000pt;}
.fs7{font-size:42.880000pt;}
.fs3{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs5{font-size:57.549054pt;}
.fs4{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y8a{bottom:1.880331pt;}
.ya2{bottom:2.080000pt;}
.y5c{bottom:2.350404pt;}
.y58{bottom:2.350413pt;}
.y56{bottom:2.350415pt;}
.y76{bottom:2.362939pt;}
.y6e{bottom:2.363566pt;}
.y6c{bottom:2.369207pt;}
.y5f{bottom:7.051205pt;}
.y5a{bottom:7.051207pt;}
.y74{bottom:7.063740pt;}
.y70{bottom:7.064367pt;}
.y63{bottom:7.066874pt;}
.y67{bottom:7.070008pt;}
.y89{bottom:9.884237pt;}
.y4e{bottom:10.908387pt;}
.ya1{bottom:14.400000pt;}
.y34{bottom:100.352000pt;}
.y33{bottom:118.752000pt;}
.y32{bottom:137.146667pt;}
.y31{bottom:155.546667pt;}
.y30{bottom:173.946667pt;}
.y2f{bottom:192.346667pt;}
.y2e{bottom:218.426667pt;}
.y54{bottom:226.586667pt;}
.y2d{bottom:245.146667pt;}
.y53{bottom:251.426667pt;}
.y2c{bottom:263.586667pt;}
.y52{bottom:276.386667pt;}
.y2b{bottom:281.986667pt;}
.y51{bottom:292.546667pt;}
.y2a{bottom:300.386667pt;}
.y50{bottom:306.306667pt;}
.y29{bottom:318.786667pt;}
.y4f{bottom:325.186667pt;}
.y4d{bottom:325.213297pt;}
.y28{bottom:337.186667pt;}
.y27{bottom:355.586667pt;}
.y26{bottom:373.986667pt;}
.y9f{bottom:374.626667pt;}
.y25{bottom:392.386667pt;}
.y9e{bottom:393.026667pt;}
.y24{bottom:410.786667pt;}
.y9d{bottom:419.426667pt;}
.y23{bottom:429.186667pt;}
.y9c{bottom:437.826667pt;}
.y22{bottom:447.586667pt;}
.y9b{bottom:456.226667pt;}
.y21{bottom:465.986667pt;}
.y9a{bottom:482.626667pt;}
.y20{bottom:484.386667pt;}
.y99{bottom:501.026667pt;}
.y1f{bottom:510.813333pt;}
.y98{bottom:519.453333pt;}
.y1e{bottom:529.213333pt;}
.y97{bottom:545.853333pt;}
.y1d{bottom:547.613333pt;}
.y96{bottom:564.253333pt;}
.y1c{bottom:566.013333pt;}
.y4c{bottom:569.853333pt;}
.y95{bottom:582.653333pt;}
.y1b{bottom:584.413333pt;}
.y4b{bottom:594.973333pt;}
.y1a{bottom:602.813333pt;}
.y94{bottom:609.053333pt;}
.y4a{bottom:613.373333pt;}
.y19{bottom:621.213333pt;}
.y93{bottom:627.453333pt;}
.y49{bottom:631.773333pt;}
.y18{bottom:639.613333pt;}
.y92{bottom:645.853333pt;}
.y48{bottom:650.173333pt;}
.y17{bottom:658.013333pt;}
.y47{bottom:668.573333pt;}
.y91{bottom:671.933333pt;}
.y16{bottom:676.413333pt;}
.y46{bottom:686.813333pt;}
.y90{bottom:690.333333pt;}
.y15{bottom:702.493333pt;}
.y45{bottom:705.213333pt;}
.y8f{bottom:708.093333pt;}
.y14{bottom:720.253333pt;}
.y8e{bottom:721.853333pt;}
.y44{bottom:723.613333pt;}
.y13{bottom:735.133333pt;}
.y8d{bottom:739.453333pt;}
.y43{bottom:742.013333pt;}
.y12{bottom:750.173333pt;}
.y8c{bottom:757.253333pt;}
.y42{bottom:760.453333pt;}
.y11{bottom:765.893333pt;}
.y8b{bottom:776.453333pt;}
.y41{bottom:778.853333pt;}
.y10{bottom:781.253333pt;}
.y61{bottom:786.760717pt;}
.y62{bottom:786.760721pt;}
.y57{bottom:790.536980pt;}
.y59{bottom:790.536995pt;}
.y60{bottom:795.707911pt;}
.yf{bottom:796.613333pt;}
.y55{bottom:799.954255pt;}
.y40{bottom:804.933333pt;}
.ye{bottom:811.813333pt;}
.y69{bottom:815.498286pt;}
.y6a{bottom:815.498290pt;}
.y3f{bottom:822.693333pt;}
.y68{bottom:824.445480pt;}
.yd{bottom:827.173333pt;}
.y6d{bottom:837.153310pt;}
.y6f{bottom:837.153314pt;}
.yc{bottom:842.533333pt;}
.y6b{bottom:846.097997pt;}
.y3e{bottom:846.373333pt;}
.y72{bottom:850.347516pt;}
.y73{bottom:850.347520pt;}
.y65{bottom:857.881361pt;}
.y66{bottom:857.881365pt;}
.yb{bottom:857.893333pt;}
.y71{bottom:859.291576pt;}
.y3d{bottom:864.773333pt;}
.y64{bottom:866.831689pt;}
.ya{bottom:873.253333pt;}
.y77{bottom:878.126121pt;}
.y78{bottom:878.126125pt;}
.y3c{bottom:883.173333pt;}
.y75{bottom:887.076449pt;}
.y9{bottom:888.613333pt;}
.y5d{bottom:896.979495pt;}
.y5e{bottom:896.979499pt;}
.y3b{bottom:901.573333pt;}
.y8{bottom:903.813333pt;}
.y5b{bottom:905.923555pt;}
.y7{bottom:919.173333pt;}
.y3a{bottom:919.973333pt;}
.y7a{bottom:924.758073pt;}
.y7b{bottom:924.758078pt;}
.y83{bottom:932.768269pt;}
.y84{bottom:932.768273pt;}
.y79{bottom:933.708401pt;}
.y6{bottom:934.533333pt;}
.y39{bottom:938.373333pt;}
.y82{bottom:941.712329pt;}
.y5{bottom:949.893333pt;}
.y7d{bottom:952.542944pt;}
.y7e{bottom:952.542948pt;}
.y38{bottom:956.773333pt;}
.y7c{bottom:961.487004pt;}
.y86{bottom:961.487030pt;}
.y87{bottom:961.487034pt;}
.y85{bottom:970.449893pt;}
.y4{bottom:973.253333pt;}
.y37{bottom:975.173333pt;}
.y80{bottom:978.460028pt;}
.y81{bottom:978.460032pt;}
.ya0{bottom:979.173333pt;}
.y88{bottom:982.690798pt;}
.y7f{bottom:987.404088pt;}
.y36{bottom:993.573333pt;}
.y3{bottom:1006.720000pt;}
.y35{bottom:1012.000000pt;}
.y2{bottom:1032.480000pt;}
.y1{bottom:1047.040000pt;}
.h11{height:8.477118pt;}
.h10{height:8.947198pt;}
.hd{height:8.947208pt;}
.h13{height:8.962867pt;}
.h15{height:16.014084pt;}
.h12{height:17.894390pt;}
.h14{height:17.910059pt;}
.hf{height:18.364473pt;}
.h17{height:24.160000pt;}
.he{height:25.559879pt;}
.h18{height:44.722500pt;}
.h6{height:47.109375pt;}
.hc{height:48.375000pt;}
.h5{height:52.134375pt;}
.h4{height:53.535000pt;}
.ha{height:57.239953pt;}
.h8{height:57.787500pt;}
.hb{height:61.410000pt;}
.h2{height:62.812500pt;}
.h7{height:64.500000pt;}
.h16{height:66.404375pt;}
.h3{height:85.785000pt;}
.h9{height:701.274878pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:11.246753pt;}
.w9{width:11.262373pt;}
.w8{width:29.069732pt;}
.w6{width:29.085353pt;}
.w5{width:32.365655pt;}
.w4{width:104.594802pt;}
.wa{width:123.826749pt;}
.wb{width:136.826667pt;}
.w3{width:553.275556pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:2.811688pt;}
.xf{left:3.748918pt;}
.x9{left:4.686147pt;}
.xb{left:10.322020pt;}
.x7{left:19.231947pt;}
.x28{left:38.074667pt;}
.x29{left:42.874667pt;}
.x25{left:47.826817pt;}
.x2{left:120.031988pt;}
.x27{left:128.672000pt;}
.x24{left:137.434364pt;}
.x11{left:186.204659pt;}
.x10{left:199.806981pt;}
.xc{left:241.563675pt;}
.xe{left:249.061511pt;}
.xa{left:255.153502pt;}
.xd{left:262.663833pt;}
.x21{left:264.069678pt;}
.x13{left:276.722275pt;}
.x20{left:277.678249pt;}
.x12{left:290.330846pt;}
.x23{left:327.845015pt;}
.x15{left:328.782244pt;}
.x22{left:341.453585pt;}
.x14{left:342.390815pt;}
.x17{left:379.911232pt;}
.x16{left:393.519803pt;}
.x19{left:410.871043pt;}
.x18{left:424.479614pt;}
.x1b{left:474.184014pt;}
.x1a{left:487.786337pt;}
.x8{left:514.997230pt;}
.x1d{left:524.838139pt;}
.x1c{left:538.446710pt;}
.x5{left:549.705959pt;}
.x3{left:551.178187pt;}
.x1f{left:577.372971pt;}
.x1e{left:590.975294pt;}
.x26{left:665.573322pt;}
.x4{left:673.413322pt;}
.x1{left:696.933322pt;}
}




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