
    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_4c018b9a43ce17050cd35ed5.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.976562;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_b17ec8ec00770164b58d6947.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.976562;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_23a3ec878dcd22560751f3c4.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.976562;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_a1263ebf8f362c17a5965e79.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.976562;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_eb88723f0c4ea036620e2500.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.976562;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_2cf8564e6ea7385a463fc824.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.976562;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_2646cbd030e7deca7f3d38f1.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.976562;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v5{vertical-align:-86.400000px;}
.v2{vertical-align:-72.000000px;}
.v3{vertical-align:-64.800000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:64.800000px;}
.v1{vertical-align:72.000000px;}
.v4{vertical-align:86.400000px;}
.ls21{letter-spacing:-2.976000px;}
.ls16{letter-spacing:-2.496000px;}
.ls13{letter-spacing:-2.262000px;}
.ls1c{letter-spacing:-2.064000px;}
.ls20{letter-spacing:-2.052000px;}
.ls1b{letter-spacing:-1.818000px;}
.lse{letter-spacing:-1.596000px;}
.lsd{letter-spacing:-1.344000px;}
.ls29{letter-spacing:-1.182000px;}
.ls28{letter-spacing:-1.158000px;}
.ls1d{letter-spacing:-0.894000px;}
.ls23{letter-spacing:-0.864000px;}
.ls27{letter-spacing:-0.648000px;}
.ls1a{letter-spacing:-0.378600px;}
.ls17{letter-spacing:-0.377400px;}
.ls18{letter-spacing:-0.376800px;}
.ls25{letter-spacing:-0.360000px;}
.ls24{letter-spacing:-0.288000px;}
.ls10{letter-spacing:-0.226800px;}
.ls1e{letter-spacing:-0.184800px;}
.lsc{letter-spacing:-0.171600px;}
.ls26{letter-spacing:-0.144000px;}
.ls15{letter-spacing:-0.139800px;}
.lsf{letter-spacing:-0.099600px;}
.lsb{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.065400px;}
.ls11{letter-spacing:0.107400px;}
.ls8{letter-spacing:0.144000px;}
.ls14{letter-spacing:0.156000px;}
.ls19{letter-spacing:0.342600px;}
.ls9{letter-spacing:0.360000px;}
.ls22{letter-spacing:0.548400px;}
.ls1f{letter-spacing:0.624000px;}
.lsa{letter-spacing:0.793200px;}
.ls6{letter-spacing:3.240000px;}
.ls0{letter-spacing:6.526800px;}
.ls2{letter-spacing:38.206800px;}
.ls3{letter-spacing:46.126800px;}
.ls4{letter-spacing:48.600000px;}
.ls1{letter-spacing:129.646800px;}
.ls7{letter-spacing:135.000000px;}
.ls5{letter-spacing:135.720000px;}
.sc_{text-shadow:none;}
.sc3{text-shadow:-0.015em 0 rgb(30,100,200),0 0.015em rgb(30,100,200),0.015em 0 rgb(30,100,200),0 -0.015em  rgb(30,100,200);}
.sc2{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);}
.sc1{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.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;}
.sc3{-webkit-text-stroke:0.015em rgb(30,100,200);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4{word-spacing:-239.760000px;}
.ws23{word-spacing:-216.000000px;}
.ws0{word-spacing:-204.480000px;}
.wsd{word-spacing:-56.160000px;}
.ws27{word-spacing:-51.554880px;}
.ws24{word-spacing:-51.526800px;}
.ws18{word-spacing:-47.377200px;}
.ws1c{word-spacing:-47.301600px;}
.ws11{word-spacing:-47.095800px;}
.ws8{word-spacing:-46.860600px;}
.ws9{word-spacing:-46.818600px;}
.ws28{word-spacing:-46.781280px;}
.ws5{word-spacing:-46.753200px;}
.ws6{word-spacing:-46.653600px;}
.wsc{word-spacing:-46.613400px;}
.ws19{word-spacing:-46.581600px;}
.ws17{word-spacing:-46.568400px;}
.ws10{word-spacing:-46.376400px;}
.wsf{word-spacing:-46.375800px;}
.ws12{word-spacing:-46.374600px;}
.ws16{word-spacing:-45.859200px;}
.ws2{word-spacing:-45.409200px;}
.ws3{word-spacing:-45.157200px;}
.ws13{word-spacing:-44.935200px;}
.ws1a{word-spacing:-44.701200px;}
.ws15{word-spacing:-44.689200px;}
.wsa{word-spacing:-44.491200px;}
.wse{word-spacing:-44.257200px;}
.ws1b{word-spacing:-43.777200px;}
.ws26{word-spacing:-42.480000px;}
.ws22{word-spacing:-42.120000px;}
.ws20{word-spacing:-41.976000px;}
.ws1e{word-spacing:-41.832000px;}
.ws1f{word-spacing:-41.760000px;}
.ws21{word-spacing:-41.472000px;}
.ws1d{word-spacing:-41.256000px;}
.ws14{word-spacing:-31.168800px;}
.ws25{word-spacing:-28.080000px;}
.ws29{word-spacing:0.000000px;}
.wsb{word-spacing:135.272160px;}
.ws7{word-spacing:137.477520px;}
.ws1{word-spacing:171.927360px;}
._16{margin-left:-4.652400px;}
._b{margin-left:-3.499440px;}
._1{margin-left:-2.397600px;}
._5{margin-left:-1.198800px;}
._0{width:1.152000px;}
._7{width:2.386080px;}
._2{width:4.333680px;}
._4{width:5.455200px;}
._3{width:6.742560px;}
._18{width:23.646240px;}
._19{width:25.185360px;}
._6{width:29.944320px;}
._14{width:38.244720px;}
._13{width:39.370320px;}
._20{width:48.340608px;}
._27{width:49.373184px;}
._e{width:50.416800px;}
._21{width:54.223200px;}
._11{width:61.140960px;}
._15{width:77.130000px;}
._1b{width:82.866720px;}
._24{width:87.485760px;}
._8{width:99.626880px;}
._10{width:105.038880px;}
._f{width:106.562400px;}
._1f{width:118.528560px;}
._d{width:129.563760px;}
._12{width:132.994800px;}
._2a{width:134.568000px;}
._28{width:135.792000px;}
._29{width:140.832000px;}
._2b{width:142.066800px;}
._a{width:147.084240px;}
._9{width:148.439520px;}
._1a{width:169.981440px;}
._23{width:171.919920px;}
._22{width:173.727120px;}
._1d{width:191.416320px;}
._1c{width:193.471200px;}
._c{width:210.124800px;}
._17{width:235.662480px;}
._1e{width:236.915280px;}
._25{width:238.438080px;}
._26{width:305.364960px;}
.fc5{color:transparent;}
.fc2{color:rgb(23,95,198);}
.fc4{color:rgb(127,127,127);}
.fc3{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(30,100,200);}
.fs9{font-size:144.000000px;}
.fs3{font-size:159.840000px;}
.fsc{font-size:192.240000px;}
.fs8{font-size:216.000000px;}
.fs2{font-size:239.760000px;}
.fs7{font-size:239.904000px;}
.fs1{font-size:264.240000px;}
.fs4{font-size:264.384000px;}
.fs5{font-size:288.000000px;}
.fsa{font-size:360.000000px;}
.fsb{font-size:360.144000px;}
.fs0{font-size:576.000000px;}
.fs6{font-size:750.240000px;}
.y0{bottom:0.000000px;}
.y3f{bottom:587.955000px;}
.y23{bottom:598.830000px;}
.y3e{bottom:667.155000px;}
.y22{bottom:670.860000px;}
.y21{bottom:742.860000px;}
.y20{bottom:823.860000px;}
.y3d{bottom:885.420000px;}
.y1f{bottom:895.860000px;}
.y3c{bottom:950.220000px;}
.y1e{bottom:967.860000px;}
.y3b{bottom:1015.020000px;}
.y1d{bottom:1039.860000px;}
.y3a{bottom:1088.820000px;}
.y1c{bottom:1120.860000px;}
.y39{bottom:1153.620000px;}
.y1b{bottom:1192.860000px;}
.y38{bottom:1227.420000px;}
.y1a{bottom:1264.860000px;}
.y37{bottom:1292.220000px;}
.y19{bottom:1345.860000px;}
.y36{bottom:1357.020000px;}
.y18{bottom:1417.860000px;}
.y35{bottom:1430.820000px;}
.y17{bottom:1489.860000px;}
.y34{bottom:1495.620000px;}
.y46{bottom:1574.925000px;}
.y45{bottom:1575.180000px;}
.y12{bottom:1820.850000px;}
.y11{bottom:1892.850000px;}
.y33{bottom:1909.050000px;}
.y10{bottom:1964.850000px;}
.y32{bottom:1981.050000px;}
.yf{bottom:2036.850000px;}
.y31{bottom:2053.050000px;}
.ye{bottom:2119.470000px;}
.y30{bottom:2125.050000px;}
.y2f{bottom:2197.050000px;}
.yd{bottom:2198.670000px;}
.y2e{bottom:2269.050000px;}
.yc{bottom:2294.250000px;}
.y2d{bottom:2341.050000px;}
.yb{bottom:2366.250000px;}
.y2c{bottom:2422.050000px;}
.ya{bottom:2438.250000px;}
.y2b{bottom:2494.080000px;}
.y9{bottom:2511.900000px;}
.y2a{bottom:2566.080000px;}
.y8{bottom:2591.100000px;}
.y29{bottom:2638.080000px;}
.y7{bottom:2686.680000px;}
.y28{bottom:2710.080000px;}
.y6{bottom:2758.680000px;}
.y27{bottom:2791.080000px;}
.y5{bottom:2830.680000px;}
.y26{bottom:2863.080000px;}
.y4{bottom:2904.300000px;}
.y25{bottom:2935.080000px;}
.y3{bottom:3001.500000px;}
.y24{bottom:3007.080000px;}
.y43{bottom:3100.680000px;}
.y4f{bottom:3384.825000px;}
.y4e{bottom:3456.825000px;}
.y4d{bottom:3530.490000px;}
.y4c{bottom:3626.070000px;}
.y4b{bottom:3698.070000px;}
.y52{bottom:3748.860000px;}
.y4a{bottom:3770.070000px;}
.y51{bottom:3820.890000px;}
.y49{bottom:3843.690000px;}
.y50{bottom:3892.890000px;}
.y48{bottom:3893.190000px;}
.y44{bottom:4000.680000px;}
.y42{bottom:4185.075000px;}
.y41{bottom:4250.955000px;}
.y40{bottom:4317.015000px;}
.y47{bottom:4397.370000px;}
.y2{bottom:4507.020000px;}
.y1{bottom:4679.820000px;}
.y15{bottom:4786.380000px;}
.y16{bottom:4855.650000px;}
.y14{bottom:4864.140000px;}
.y13{bottom:4941.900000px;}
.hb{height:105.468750px;}
.ha{height:158.203125px;}
.hf{height:170.268750px;}
.h5{height:175.605469px;}
.h9{height:175.710937px;}
.h4{height:189.070312px;}
.h3{height:193.535156px;}
.h6{height:193.640625px;}
.h7{height:210.937500px;}
.he{height:227.200781px;}
.hc{height:263.671875px;}
.hd{height:263.777344px;}
.h2{height:421.875000px;}
.h8{height:549.492188px;}
.h0{height:5055.480000px;}
.h1{height:5055.750000px;}
.w2{width:3575.879947px;}
.w0{width:3575.880000px;}
.w1{width:3576.000000px;}
.x0{left:0.000000px;}
.xd{left:109.763947px;}
.x14{left:112.571947px;}
.xb{left:126.467947px;}
.x11{left:131.831947px;}
.x1{left:505.724947px;}
.x2{left:1152.149947px;}
.x3{left:1503.434947px;}
.x5{left:1591.274947px;}
.x4{left:1611.434947px;}
.x8{left:1855.724947px;}
.x12{left:1878.509947px;}
.xc{left:1945.259947px;}
.x10{left:2127.164947px;}
.x9{left:2747.954947px;}
.xa{left:2752.664947px;}
.x7{left:2793.239947px;}
.x13{left:2863.829947px;}
.xf{left:2943.209947px;}
.xe{left:2948.549947px;}
.x6{left:3178.184947px;}
@media print{
.v5{vertical-align:-76.800000pt;}
.v2{vertical-align:-64.000000pt;}
.v3{vertical-align:-57.600000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:57.600000pt;}
.v1{vertical-align:64.000000pt;}
.v4{vertical-align:76.800000pt;}
.ls21{letter-spacing:-2.645333pt;}
.ls16{letter-spacing:-2.218667pt;}
.ls13{letter-spacing:-2.010667pt;}
.ls1c{letter-spacing:-1.834667pt;}
.ls20{letter-spacing:-1.824000pt;}
.ls1b{letter-spacing:-1.616000pt;}
.lse{letter-spacing:-1.418667pt;}
.lsd{letter-spacing:-1.194667pt;}
.ls29{letter-spacing:-1.050667pt;}
.ls28{letter-spacing:-1.029333pt;}
.ls1d{letter-spacing:-0.794667pt;}
.ls23{letter-spacing:-0.768000pt;}
.ls27{letter-spacing:-0.576000pt;}
.ls1a{letter-spacing:-0.336533pt;}
.ls17{letter-spacing:-0.335467pt;}
.ls18{letter-spacing:-0.334933pt;}
.ls25{letter-spacing:-0.320000pt;}
.ls24{letter-spacing:-0.256000pt;}
.ls10{letter-spacing:-0.201600pt;}
.ls1e{letter-spacing:-0.164267pt;}
.lsc{letter-spacing:-0.152533pt;}
.ls26{letter-spacing:-0.128000pt;}
.ls15{letter-spacing:-0.124267pt;}
.lsf{letter-spacing:-0.088533pt;}
.lsb{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.058133pt;}
.ls11{letter-spacing:0.095467pt;}
.ls8{letter-spacing:0.128000pt;}
.ls14{letter-spacing:0.138667pt;}
.ls19{letter-spacing:0.304533pt;}
.ls9{letter-spacing:0.320000pt;}
.ls22{letter-spacing:0.487467pt;}
.ls1f{letter-spacing:0.554667pt;}
.lsa{letter-spacing:0.705067pt;}
.ls6{letter-spacing:2.880000pt;}
.ls0{letter-spacing:5.801600pt;}
.ls2{letter-spacing:33.961600pt;}
.ls3{letter-spacing:41.001600pt;}
.ls4{letter-spacing:43.200000pt;}
.ls1{letter-spacing:115.241600pt;}
.ls7{letter-spacing:120.000000pt;}
.ls5{letter-spacing:120.640000pt;}
.ws4{word-spacing:-213.120000pt;}
.ws23{word-spacing:-192.000000pt;}
.ws0{word-spacing:-181.760000pt;}
.wsd{word-spacing:-49.920000pt;}
.ws27{word-spacing:-45.826560pt;}
.ws24{word-spacing:-45.801600pt;}
.ws18{word-spacing:-42.113067pt;}
.ws1c{word-spacing:-42.045867pt;}
.ws11{word-spacing:-41.862933pt;}
.ws8{word-spacing:-41.653867pt;}
.ws9{word-spacing:-41.616533pt;}
.ws28{word-spacing:-41.583360pt;}
.ws5{word-spacing:-41.558400pt;}
.ws6{word-spacing:-41.469867pt;}
.wsc{word-spacing:-41.434133pt;}
.ws19{word-spacing:-41.405867pt;}
.ws17{word-spacing:-41.394133pt;}
.ws10{word-spacing:-41.223467pt;}
.wsf{word-spacing:-41.222933pt;}
.ws12{word-spacing:-41.221867pt;}
.ws16{word-spacing:-40.763733pt;}
.ws2{word-spacing:-40.363733pt;}
.ws3{word-spacing:-40.139733pt;}
.ws13{word-spacing:-39.942400pt;}
.ws1a{word-spacing:-39.734400pt;}
.ws15{word-spacing:-39.723733pt;}
.wsa{word-spacing:-39.547733pt;}
.wse{word-spacing:-39.339733pt;}
.ws1b{word-spacing:-38.913067pt;}
.ws26{word-spacing:-37.760000pt;}
.ws22{word-spacing:-37.440000pt;}
.ws20{word-spacing:-37.312000pt;}
.ws1e{word-spacing:-37.184000pt;}
.ws1f{word-spacing:-37.120000pt;}
.ws21{word-spacing:-36.864000pt;}
.ws1d{word-spacing:-36.672000pt;}
.ws14{word-spacing:-27.705600pt;}
.ws25{word-spacing:-24.960000pt;}
.ws29{word-spacing:0.000000pt;}
.wsb{word-spacing:120.241920pt;}
.ws7{word-spacing:122.202240pt;}
.ws1{word-spacing:152.824320pt;}
._16{margin-left:-4.135467pt;}
._b{margin-left:-3.110613pt;}
._1{margin-left:-2.131200pt;}
._5{margin-left:-1.065600pt;}
._0{width:1.024000pt;}
._7{width:2.120960pt;}
._2{width:3.852160pt;}
._4{width:4.849067pt;}
._3{width:5.993387pt;}
._18{width:21.018880pt;}
._19{width:22.386987pt;}
._6{width:26.617173pt;}
._14{width:33.995307pt;}
._13{width:34.995840pt;}
._20{width:42.969429pt;}
._27{width:43.887275pt;}
._e{width:44.814933pt;}
._21{width:48.198400pt;}
._11{width:54.347520pt;}
._15{width:68.560000pt;}
._1b{width:73.659307pt;}
._24{width:77.765120pt;}
._8{width:88.557227pt;}
._10{width:93.367893pt;}
._f{width:94.722133pt;}
._1f{width:105.358720pt;}
._d{width:115.167787pt;}
._12{width:118.217600pt;}
._2a{width:119.616000pt;}
._28{width:120.704000pt;}
._29{width:125.184000pt;}
._2b{width:126.281600pt;}
._a{width:130.741547pt;}
._9{width:131.946240pt;}
._1a{width:151.094613pt;}
._23{width:152.817707pt;}
._22{width:154.424107pt;}
._1d{width:170.147840pt;}
._1c{width:171.974400pt;}
._c{width:186.777600pt;}
._17{width:209.477760pt;}
._1e{width:210.591360pt;}
._25{width:211.944960pt;}
._26{width:271.435520pt;}
.fs9{font-size:128.000000pt;}
.fs3{font-size:142.080000pt;}
.fsc{font-size:170.880000pt;}
.fs8{font-size:192.000000pt;}
.fs2{font-size:213.120000pt;}
.fs7{font-size:213.248000pt;}
.fs1{font-size:234.880000pt;}
.fs4{font-size:235.008000pt;}
.fs5{font-size:256.000000pt;}
.fsa{font-size:320.000000pt;}
.fsb{font-size:320.128000pt;}
.fs0{font-size:512.000000pt;}
.fs6{font-size:666.880000pt;}
.y0{bottom:0.000000pt;}
.y3f{bottom:522.626667pt;}
.y23{bottom:532.293333pt;}
.y3e{bottom:593.026667pt;}
.y22{bottom:596.320000pt;}
.y21{bottom:660.320000pt;}
.y20{bottom:732.320000pt;}
.y3d{bottom:787.040000pt;}
.y1f{bottom:796.320000pt;}
.y3c{bottom:844.640000pt;}
.y1e{bottom:860.320000pt;}
.y3b{bottom:902.240000pt;}
.y1d{bottom:924.320000pt;}
.y3a{bottom:967.840000pt;}
.y1c{bottom:996.320000pt;}
.y39{bottom:1025.440000pt;}
.y1b{bottom:1060.320000pt;}
.y38{bottom:1091.040000pt;}
.y1a{bottom:1124.320000pt;}
.y37{bottom:1148.640000pt;}
.y19{bottom:1196.320000pt;}
.y36{bottom:1206.240000pt;}
.y18{bottom:1260.320000pt;}
.y35{bottom:1271.840000pt;}
.y17{bottom:1324.320000pt;}
.y34{bottom:1329.440000pt;}
.y46{bottom:1399.933333pt;}
.y45{bottom:1400.160000pt;}
.y12{bottom:1618.533333pt;}
.y11{bottom:1682.533333pt;}
.y33{bottom:1696.933333pt;}
.y10{bottom:1746.533333pt;}
.y32{bottom:1760.933333pt;}
.yf{bottom:1810.533333pt;}
.y31{bottom:1824.933333pt;}
.ye{bottom:1883.973333pt;}
.y30{bottom:1888.933333pt;}
.y2f{bottom:1952.933333pt;}
.yd{bottom:1954.373333pt;}
.y2e{bottom:2016.933333pt;}
.yc{bottom:2039.333333pt;}
.y2d{bottom:2080.933333pt;}
.yb{bottom:2103.333333pt;}
.y2c{bottom:2152.933333pt;}
.ya{bottom:2167.333333pt;}
.y2b{bottom:2216.960000pt;}
.y9{bottom:2232.800000pt;}
.y2a{bottom:2280.960000pt;}
.y8{bottom:2303.200000pt;}
.y29{bottom:2344.960000pt;}
.y7{bottom:2388.160000pt;}
.y28{bottom:2408.960000pt;}
.y6{bottom:2452.160000pt;}
.y27{bottom:2480.960000pt;}
.y5{bottom:2516.160000pt;}
.y26{bottom:2544.960000pt;}
.y4{bottom:2581.600000pt;}
.y25{bottom:2608.960000pt;}
.y3{bottom:2668.000000pt;}
.y24{bottom:2672.960000pt;}
.y43{bottom:2756.160000pt;}
.y4f{bottom:3008.733333pt;}
.y4e{bottom:3072.733333pt;}
.y4d{bottom:3138.213333pt;}
.y4c{bottom:3223.173333pt;}
.y4b{bottom:3287.173333pt;}
.y52{bottom:3332.320000pt;}
.y4a{bottom:3351.173333pt;}
.y51{bottom:3396.346667pt;}
.y49{bottom:3416.613333pt;}
.y50{bottom:3460.346667pt;}
.y48{bottom:3460.613333pt;}
.y44{bottom:3556.160000pt;}
.y42{bottom:3720.066667pt;}
.y41{bottom:3778.626667pt;}
.y40{bottom:3837.346667pt;}
.y47{bottom:3908.773333pt;}
.y2{bottom:4006.240000pt;}
.y1{bottom:4159.840000pt;}
.y15{bottom:4254.560000pt;}
.y16{bottom:4316.133333pt;}
.y14{bottom:4323.680000pt;}
.y13{bottom:4392.800000pt;}
.hb{height:93.750000pt;}
.ha{height:140.625000pt;}
.hf{height:151.350000pt;}
.h5{height:156.093750pt;}
.h9{height:156.187500pt;}
.h4{height:168.062500pt;}
.h3{height:172.031250pt;}
.h6{height:172.125000pt;}
.h7{height:187.500000pt;}
.he{height:201.956250pt;}
.hc{height:234.375000pt;}
.hd{height:234.468750pt;}
.h2{height:375.000000pt;}
.h8{height:488.437500pt;}
.h0{height:4493.760000pt;}
.h1{height:4494.000000pt;}
.w2{width:3178.559953pt;}
.w0{width:3178.560000pt;}
.w1{width:3178.666667pt;}
.x0{left:0.000000pt;}
.xd{left:97.567953pt;}
.x14{left:100.063953pt;}
.xb{left:112.415953pt;}
.x11{left:117.183953pt;}
.x1{left:449.533286pt;}
.x2{left:1024.133286pt;}
.x3{left:1336.386619pt;}
.x5{left:1414.466619pt;}
.x4{left:1432.386619pt;}
.x8{left:1649.533286pt;}
.x12{left:1669.786619pt;}
.xc{left:1729.119953pt;}
.x10{left:1890.813286pt;}
.x9{left:2442.626619pt;}
.xa{left:2446.813286pt;}
.x7{left:2482.879953pt;}
.x13{left:2545.626619pt;}
.xf{left:2616.186619pt;}
.xe{left:2620.933286pt;}
.x6{left:2825.053286pt;}
}




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