
    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_175667853c1916904d9f2fc4.woff')format("woff");}.ff1{font-family:ff1;line-height:1.087891;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_045898e349f72b20e6259805.woff')format("woff");}.ff2{font-family:ff2;line-height:1.090332;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_f56d05ab72e53a7663e05617.woff')format("woff");}.ff3{font-family:ff3;line-height:1.090332;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_2de281798301cdfbce3e1f90.woff')format("woff");}.ff4{font-family:ff4;line-height:1.052734;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_2a7a2fe78c978409dd8a5daa.woff')format("woff");}.ff5{font-family:ff5;line-height:0.941406;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_e604d351f18b534df78152b4.woff')format("woff");}.ff6{font-family:ff6;line-height:0.941406;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_e042bcb54b4b73dcafbf659f.woff')format("woff");}.ff7{font-family:ff7;line-height:1.087891;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);}
.v2{vertical-align:-81.120000px;}
.v4{vertical-align:-22.080000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:22.080000px;}
.v6{vertical-align:32.520000px;}
.v7{vertical-align:76.500000px;}
.v3{vertical-align:81.900000px;}
.v1{vertical-align:100.350000px;}
.v8{vertical-align:177.000000px;}
.ls12{letter-spacing:-0.768000px;}
.ls4{letter-spacing:-0.636000px;}
.ls0{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.146400px;}
.ls1{letter-spacing:0.487200px;}
.ls10{letter-spacing:0.547200px;}
.lsc{letter-spacing:0.569400px;}
.lsf{letter-spacing:0.579000px;}
.ls17{letter-spacing:0.681000px;}
.ls7{letter-spacing:0.750000px;}
.ls9{letter-spacing:0.900000px;}
.ls3{letter-spacing:1.008000px;}
.lsa{letter-spacing:1.068000px;}
.ls11{letter-spacing:2.052000px;}
.ls5{letter-spacing:4.740600px;}
.ls2{letter-spacing:4.800600px;}
.ls8{letter-spacing:21.471000px;}
.ls6{letter-spacing:43.670100px;}
.ls16{letter-spacing:52.770000px;}
.ls13{letter-spacing:52.822500px;}
.lsd{letter-spacing:63.528000px;}
.lse{letter-spacing:63.579000px;}
.ls14{letter-spacing:79.770000px;}
.ls15{letter-spacing:79.822500px;}
.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;}
}
.ws1d{word-spacing:-265.950000px;}
.ws9{word-spacing:-108.150000px;}
.ws12{word-spacing:-87.168900px;}
.wsc{word-spacing:-86.988900px;}
.wsa{word-spacing:-81.150000px;}
.ws14{word-spacing:-80.189100px;}
.ws13{word-spacing:-80.147400px;}
.ws8{word-spacing:-75.138900px;}
.wsf{word-spacing:-75.108900px;}
.ws16{word-spacing:-54.003000px;}
.ws4{word-spacing:-51.328350px;}
.ws2{word-spacing:-51.299400px;}
.wsb{word-spacing:-48.979650px;}
.ws11{word-spacing:-48.834000px;}
.ws1a{word-spacing:-43.868400px;}
.ws15{word-spacing:-35.539650px;}
.ws6{word-spacing:-33.860400px;}
.ws1b{word-spacing:-32.033400px;}
.ws0{word-spacing:-29.262450px;}
.ws1c{word-spacing:-26.552400px;}
.ws18{word-spacing:-22.854450px;}
.ws17{word-spacing:-22.523850px;}
.wse{word-spacing:-22.100850px;}
.ws3{word-spacing:-21.954450px;}
.ws19{word-spacing:-21.186450px;}
.wsd{word-spacing:-3.989700px;}
.ws1{word-spacing:0.000000px;}
.ws7{word-spacing:69.673050px;}
.ws5{word-spacing:659.513550px;}
.ws10{word-spacing:710.654400px;}
._12{margin-left:-24.650100px;}
._13{margin-left:-20.757600px;}
._11{margin-left:-14.648400px;}
._e{margin-left:-11.779650px;}
._6{margin-left:-10.018650px;}
._17{margin-left:-8.868300px;}
._7{margin-left:-7.218300px;}
._1{margin-left:-5.515650px;}
._4{margin-left:-3.568950px;}
._0{margin-left:-1.946700px;}
._2{width:1.297800px;}
._5{width:2.595600px;}
._3{width:4.542300px;}
._16{width:5.726700px;}
._10{width:23.748300px;}
._8{width:31.065300px;}
._d{width:45.961950px;}
._f{width:54.907350px;}
._c{width:58.989000px;}
._15{width:63.579000px;}
._9{width:292.094700px;}
._b{width:653.266650px;}
._a{width:755.972550px;}
._14{width:788.990550px;}
.fc6{color:transparent;}
.fc5{color:rgb(44,86,151);}
.fc4{color:rgb(21,96,130);}
.fc1{color:rgb(14,40,65);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(118,118,118);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:72.000000px;}
.fsa{font-size:81.000000px;}
.fs8{font-size:81.150000px;}
.fs4{font-size:108.150000px;}
.fsd{font-size:130.650000px;}
.fse{font-size:130.800000px;}
.fs1{font-size:144.150000px;}
.fs9{font-size:144.300000px;}
.fsf{font-size:157.650000px;}
.fs10{font-size:157.800000px;}
.fs7{font-size:166.650000px;}
.fs6{font-size:166.800000px;}
.fs11{font-size:193.800000px;}
.fs2{font-size:265.800000px;}
.fs5{font-size:265.950000px;}
.fsb{font-size:288.300000px;}
.fsc{font-size:288.450000px;}
.fs0{font-size:324.450000px;}
.y0{bottom:0.000000px;}
.y9{bottom:30.525000px;}
.y7{bottom:32.737500px;}
.y33{bottom:36.675000px;}
.y6{bottom:61.725000px;}
.y75{bottom:64.387500px;}
.y6d{bottom:69.900000px;}
.y3a{bottom:73.012500px;}
.y4c{bottom:77.887500px;}
.y45{bottom:88.950000px;}
.y28{bottom:98.175000px;}
.y6c{bottom:101.475000px;}
.y39{bottom:105.675000px;}
.y5c{bottom:108.562500px;}
.y37{bottom:113.887500px;}
.y40{bottom:117.787500px;}
.y4b{bottom:122.962500px;}
.y27{bottom:130.875000px;}
.y44{bottom:131.775000px;}
.y38{bottom:138.337500px;}
.y17{bottom:140.512500px;}
.y6b{bottom:140.887500px;}
.y36{bottom:146.550000px;}
.y5b{bottom:150.225000px;}
.y3f{bottom:150.450000px;}
.y74{bottom:162.375000px;}
.y26{bottom:163.530000px;}
.y4a{bottom:169.125000px;}
.y5{bottom:169.875000px;}
.y6a{bottom:172.425000px;}
.y43{bottom:174.600000px;}
.y21{bottom:183.870000px;}
.y3e{bottom:185.400000px;}
.y16{bottom:186.720000px;}
.y5a{bottom:200.925000px;}
.y20{bottom:201.945000px;}
.y25{bottom:204.030000px;}
.y69{bottom:211.875000px;}
.y42{bottom:217.395000px;}
.y22{bottom:222.405000px;}
.y4{bottom:223.950000px;}
.y3c{bottom:226.470000px;}
.y15{bottom:231.750000px;}
.y4f{bottom:236.595000px;}
.y68{bottom:243.405000px;}
.y59{bottom:243.750000px;}
.y24{bottom:247.995000px;}
.y3d{bottom:250.725000px;}
.y2a{bottom:256.275000px;}
.y3b{bottom:259.170000px;}
.y73{bottom:259.275000px;}
.y70{bottom:262.155000px;}
.ye{bottom:262.350000px;}
.y4e{bottom:268.155000px;}
.y67{bottom:276.075000px;}
.y30{bottom:284.745000px;}
.y29{bottom:288.945000px;}
.y72{bottom:291.945000px;}
.y14{bottom:292.575000px;}
.y23{bottom:293.025000px;}
.y58{bottom:294.450000px;}
.y31{bottom:303.570000px;}
.y66{bottom:307.605000px;}
.y6f{bottom:313.995000px;}
.y71{bottom:324.600000px;}
.y3{bottom:333.420000px;}
.y57{bottom:337.245000px;}
.y65{bottom:348.195000px;}
.y56{bottom:378.945000px;}
.y1c{bottom:385.875000px;}
.y64{bottom:398.850000px;}
.yc{bottom:406.800000px;}
.yd{bottom:407.550000px;}
.y2d{bottom:417.720000px;}
.y2e{bottom:418.725000px;}
.y2{bottom:421.275000px;}
.y2c{bottom:423.225000px;}
.y55{bottom:430.755000px;}
.y1b{bottom:433.200000px;}
.y13{bottom:434.070000px;}
.y63{bottom:438.300000px;}
.y6e{bottom:441.255000px;}
.y2b{bottom:441.300000px;}
.y2f{bottom:457.275000px;}
.y62{bottom:469.845000px;}
.y32{bottom:470.670000px;}
.y54{bottom:472.425000px;}
.y12{bottom:480.255000px;}
.y1f{bottom:489.150000px;}
.y1e{bottom:494.655000px;}
.y1{bottom:509.175000px;}
.y61{bottom:509.295000px;}
.y1d{bottom:512.745000px;}
.y53{bottom:515.250000px;}
.y11{bottom:525.300000px;}
.yb{bottom:539.220000px;}
.y60{bottom:540.825000px;}
.y1a{bottom:554.880000px;}
.y19{bottom:558.750000px;}
.y52{bottom:565.950000px;}
.ya{bottom:571.875000px;}
.y5f{bottom:580.245000px;}
.y10{bottom:586.170000px;}
.y18{bottom:603.795000px;}
.y51{bottom:607.620000px;}
.y5e{bottom:620.820000px;}
.y49{bottom:623.250000px;}
.y50{bottom:630.495000px;}
.y8{bottom:633.195000px;}
.y34{bottom:657.720000px;}
.y48{bottom:668.325000px;}
.yf{bottom:670.275000px;}
.y4d{bottom:672.825000px;}
.y5d{bottom:681.630000px;}
.y41{bottom:700.125000px;}
.y35{bottom:710.370000px;}
.y47{bottom:723.675000px;}
.y46{bottom:725.400000px;}
.h5{height:62.402344px;}
.hc{height:68.391064px;}
.hb{height:91.145947px;}
.h6{height:93.733521px;}
.he{height:100.911064px;}
.h11{height:100.971064px;}
.h14{height:113.234253px;}
.h15{height:113.364258px;}
.h17{height:115.235376px;}
.h18{height:115.345020px;}
.h2{height:124.934692px;}
.hf{height:125.064697px;}
.h19{height:136.765137px;}
.h9{height:144.435425px;}
.h8{height:144.565430px;}
.h1a{height:167.493164px;}
.hd{height:172.985947px;}
.ha{height:173.045947px;}
.h12{height:210.734912px;}
.h13{height:210.844556px;}
.h3{height:225.284692px;}
.h4{height:229.719727px;}
.h7{height:229.849365px;}
.h10{height:249.365947px;}
.h1{height:280.408447px;}
.h16{height:321.565430px;}
.h0{height:810.000000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x29{left:18.449979px;}
.x33{left:47.849979px;}
.x32{left:68.737479px;}
.x17{left:70.537479px;}
.x2{left:71.549979px;}
.x34{left:106.912479px;}
.x35{left:118.874979px;}
.x18{left:122.962479px;}
.x19{left:133.049979px;}
.x3e{left:136.087479px;}
.x4b{left:149.174979px;}
.x1{left:162.374979px;}
.x41{left:169.604979px;}
.x42{left:178.904979px;}
.xf{left:183.254979px;}
.x43{left:197.279979px;}
.x36{left:200.894979px;}
.x12{left:205.469979px;}
.x3f{left:213.449979px;}
.x15{left:227.474979px;}
.x3{left:228.944979px;}
.x1a{left:257.219979px;}
.x6{left:301.574979px;}
.x8{left:309.719979px;}
.x40{left:354.899979px;}
.x1b{left:374.399979px;}
.x1c{left:412.619979px;}
.x5{left:445.379979px;}
.x28{left:525.869979px;}
.x4{left:566.204979px;}
.x2d{left:567.899979px;}
.x2e{left:569.444979px;}
.xe{left:571.694979px;}
.x20{left:581.249979px;}
.x21{left:590.279979px;}
.x10{left:602.024979px;}
.x11{left:603.674979px;}
.x2f{left:605.549979px;}
.x44{left:629.024979px;}
.x45{left:635.774979px;}
.x37{left:641.729979px;}
.x16{left:656.069979px;}
.x3c{left:666.224979px;}
.x47{left:683.069979px;}
.x3a{left:686.369979px;}
.x13{left:702.899979px;}
.xd{left:708.599979px;}
.x3d{left:767.624979px;}
.x31{left:769.004979px;}
.x30{left:776.849979px;}
.x39{left:784.004979px;}
.x4a{left:812.699979px;}
.xa{left:816.044979px;}
.x38{left:820.994979px;}
.x46{left:842.669979px;}
.xb{left:851.399979px;}
.x48{left:856.379979px;}
.x2a{left:878.744979px;}
.x14{left:885.974979px;}
.x22{left:903.449979px;}
.x23{left:913.499979px;}
.x27{left:931.544979px;}
.x1d{left:940.829979px;}
.x2b{left:947.954979px;}
.x1e{left:956.324979px;}
.x1f{left:963.749979px;}
.x49{left:1008.299979px;}
.xc{left:1029.224979px;}
.x26{left:1101.149979px;}
.x2c{left:1231.349979px;}
.x7{left:1241.504979px;}
.x24{left:1276.199979px;}
.x3b{left:1311.944979px;}
.x25{left:1314.419979px;}
.x9{left:1321.499979px;}
@media print{
.v2{vertical-align:-72.106667pt;}
.v4{vertical-align:-19.626667pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:19.626667pt;}
.v6{vertical-align:28.906667pt;}
.v7{vertical-align:68.000000pt;}
.v3{vertical-align:72.800000pt;}
.v1{vertical-align:89.200000pt;}
.v8{vertical-align:157.333333pt;}
.ls12{letter-spacing:-0.682667pt;}
.ls4{letter-spacing:-0.565333pt;}
.ls0{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.130133pt;}
.ls1{letter-spacing:0.433067pt;}
.ls10{letter-spacing:0.486400pt;}
.lsc{letter-spacing:0.506133pt;}
.lsf{letter-spacing:0.514667pt;}
.ls17{letter-spacing:0.605333pt;}
.ls7{letter-spacing:0.666667pt;}
.ls9{letter-spacing:0.800000pt;}
.ls3{letter-spacing:0.896000pt;}
.lsa{letter-spacing:0.949333pt;}
.ls11{letter-spacing:1.824000pt;}
.ls5{letter-spacing:4.213867pt;}
.ls2{letter-spacing:4.267200pt;}
.ls8{letter-spacing:19.085333pt;}
.ls6{letter-spacing:38.817867pt;}
.ls16{letter-spacing:46.906667pt;}
.ls13{letter-spacing:46.953333pt;}
.lsd{letter-spacing:56.469333pt;}
.lse{letter-spacing:56.514667pt;}
.ls14{letter-spacing:70.906667pt;}
.ls15{letter-spacing:70.953333pt;}
.ws1d{word-spacing:-236.400000pt;}
.ws9{word-spacing:-96.133333pt;}
.ws12{word-spacing:-77.483467pt;}
.wsc{word-spacing:-77.323467pt;}
.wsa{word-spacing:-72.133333pt;}
.ws14{word-spacing:-71.279200pt;}
.ws13{word-spacing:-71.242133pt;}
.ws8{word-spacing:-66.790133pt;}
.wsf{word-spacing:-66.763467pt;}
.ws16{word-spacing:-48.002667pt;}
.ws4{word-spacing:-45.625200pt;}
.ws2{word-spacing:-45.599467pt;}
.wsb{word-spacing:-43.537467pt;}
.ws11{word-spacing:-43.408000pt;}
.ws1a{word-spacing:-38.994133pt;}
.ws15{word-spacing:-31.590800pt;}
.ws6{word-spacing:-30.098133pt;}
.ws1b{word-spacing:-28.474133pt;}
.ws0{word-spacing:-26.011067pt;}
.ws1c{word-spacing:-23.602133pt;}
.ws18{word-spacing:-20.315067pt;}
.ws17{word-spacing:-20.021200pt;}
.wse{word-spacing:-19.645200pt;}
.ws3{word-spacing:-19.515067pt;}
.ws19{word-spacing:-18.832400pt;}
.wsd{word-spacing:-3.546400pt;}
.ws1{word-spacing:0.000000pt;}
.ws7{word-spacing:61.931600pt;}
.ws5{word-spacing:586.234267pt;}
.ws10{word-spacing:631.692800pt;}
._12{margin-left:-21.911200pt;}
._13{margin-left:-18.451200pt;}
._11{margin-left:-13.020800pt;}
._e{margin-left:-10.470800pt;}
._6{margin-left:-8.905467pt;}
._17{margin-left:-7.882933pt;}
._7{margin-left:-6.416267pt;}
._1{margin-left:-4.902800pt;}
._4{margin-left:-3.172400pt;}
._0{margin-left:-1.730400pt;}
._2{width:1.153600pt;}
._5{width:2.307200pt;}
._3{width:4.037600pt;}
._16{width:5.090400pt;}
._10{width:21.109600pt;}
._8{width:27.613600pt;}
._d{width:40.855067pt;}
._f{width:48.806533pt;}
._c{width:52.434667pt;}
._15{width:56.514667pt;}
._9{width:259.639733pt;}
._b{width:580.681467pt;}
._a{width:671.975600pt;}
._14{width:701.324933pt;}
.fs3{font-size:64.000000pt;}
.fsa{font-size:72.000000pt;}
.fs8{font-size:72.133333pt;}
.fs4{font-size:96.133333pt;}
.fsd{font-size:116.133333pt;}
.fse{font-size:116.266667pt;}
.fs1{font-size:128.133333pt;}
.fs9{font-size:128.266667pt;}
.fsf{font-size:140.133333pt;}
.fs10{font-size:140.266667pt;}
.fs7{font-size:148.133333pt;}
.fs6{font-size:148.266667pt;}
.fs11{font-size:172.266667pt;}
.fs2{font-size:236.266667pt;}
.fs5{font-size:236.400000pt;}
.fsb{font-size:256.266667pt;}
.fsc{font-size:256.400000pt;}
.fs0{font-size:288.400000pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:27.133333pt;}
.y7{bottom:29.100000pt;}
.y33{bottom:32.600000pt;}
.y6{bottom:54.866667pt;}
.y75{bottom:57.233333pt;}
.y6d{bottom:62.133333pt;}
.y3a{bottom:64.900000pt;}
.y4c{bottom:69.233333pt;}
.y45{bottom:79.066667pt;}
.y28{bottom:87.266667pt;}
.y6c{bottom:90.200000pt;}
.y39{bottom:93.933333pt;}
.y5c{bottom:96.500000pt;}
.y37{bottom:101.233333pt;}
.y40{bottom:104.700000pt;}
.y4b{bottom:109.300000pt;}
.y27{bottom:116.333333pt;}
.y44{bottom:117.133333pt;}
.y38{bottom:122.966667pt;}
.y17{bottom:124.900000pt;}
.y6b{bottom:125.233333pt;}
.y36{bottom:130.266667pt;}
.y5b{bottom:133.533333pt;}
.y3f{bottom:133.733333pt;}
.y74{bottom:144.333333pt;}
.y26{bottom:145.360000pt;}
.y4a{bottom:150.333333pt;}
.y5{bottom:151.000000pt;}
.y6a{bottom:153.266667pt;}
.y43{bottom:155.200000pt;}
.y21{bottom:163.440000pt;}
.y3e{bottom:164.800000pt;}
.y16{bottom:165.973333pt;}
.y5a{bottom:178.600000pt;}
.y20{bottom:179.506667pt;}
.y25{bottom:181.360000pt;}
.y69{bottom:188.333333pt;}
.y42{bottom:193.240000pt;}
.y22{bottom:197.693333pt;}
.y4{bottom:199.066667pt;}
.y3c{bottom:201.306667pt;}
.y15{bottom:206.000000pt;}
.y4f{bottom:210.306667pt;}
.y68{bottom:216.360000pt;}
.y59{bottom:216.666667pt;}
.y24{bottom:220.440000pt;}
.y3d{bottom:222.866667pt;}
.y2a{bottom:227.800000pt;}
.y3b{bottom:230.373333pt;}
.y73{bottom:230.466667pt;}
.y70{bottom:233.026667pt;}
.ye{bottom:233.200000pt;}
.y4e{bottom:238.360000pt;}
.y67{bottom:245.400000pt;}
.y30{bottom:253.106667pt;}
.y29{bottom:256.840000pt;}
.y72{bottom:259.506667pt;}
.y14{bottom:260.066667pt;}
.y23{bottom:260.466667pt;}
.y58{bottom:261.733333pt;}
.y31{bottom:269.840000pt;}
.y66{bottom:273.426667pt;}
.y6f{bottom:279.106667pt;}
.y71{bottom:288.533333pt;}
.y3{bottom:296.373333pt;}
.y57{bottom:299.773333pt;}
.y65{bottom:309.506667pt;}
.y56{bottom:336.840000pt;}
.y1c{bottom:343.000000pt;}
.y64{bottom:354.533333pt;}
.yc{bottom:361.600000pt;}
.yd{bottom:362.266667pt;}
.y2d{bottom:371.306667pt;}
.y2e{bottom:372.200000pt;}
.y2{bottom:374.466667pt;}
.y2c{bottom:376.200000pt;}
.y55{bottom:382.893333pt;}
.y1b{bottom:385.066667pt;}
.y13{bottom:385.840000pt;}
.y63{bottom:389.600000pt;}
.y6e{bottom:392.226667pt;}
.y2b{bottom:392.266667pt;}
.y2f{bottom:406.466667pt;}
.y62{bottom:417.640000pt;}
.y32{bottom:418.373333pt;}
.y54{bottom:419.933333pt;}
.y12{bottom:426.893333pt;}
.y1f{bottom:434.800000pt;}
.y1e{bottom:439.693333pt;}
.y1{bottom:452.600000pt;}
.y61{bottom:452.706667pt;}
.y1d{bottom:455.773333pt;}
.y53{bottom:458.000000pt;}
.y11{bottom:466.933333pt;}
.yb{bottom:479.306667pt;}
.y60{bottom:480.733333pt;}
.y1a{bottom:493.226667pt;}
.y19{bottom:496.666667pt;}
.y52{bottom:503.066667pt;}
.ya{bottom:508.333333pt;}
.y5f{bottom:515.773333pt;}
.y10{bottom:521.040000pt;}
.y18{bottom:536.706667pt;}
.y51{bottom:540.106667pt;}
.y5e{bottom:551.840000pt;}
.y49{bottom:554.000000pt;}
.y50{bottom:560.440000pt;}
.y8{bottom:562.840000pt;}
.y34{bottom:584.640000pt;}
.y48{bottom:594.066667pt;}
.yf{bottom:595.800000pt;}
.y4d{bottom:598.066667pt;}
.y5d{bottom:605.893333pt;}
.y41{bottom:622.333333pt;}
.y35{bottom:631.440000pt;}
.y47{bottom:643.266667pt;}
.y46{bottom:644.800000pt;}
.h5{height:55.468750pt;}
.hc{height:60.792057pt;}
.hb{height:81.018620pt;}
.h6{height:83.318685pt;}
.he{height:89.698724pt;}
.h11{height:89.752057pt;}
.h14{height:100.652669pt;}
.h15{height:100.768229pt;}
.h17{height:102.431445pt;}
.h18{height:102.528906pt;}
.h2{height:111.053060pt;}
.hf{height:111.168620pt;}
.h19{height:121.569010pt;}
.h9{height:128.387044pt;}
.h8{height:128.502604pt;}
.h1a{height:148.882812pt;}
.hd{height:153.765286pt;}
.ha{height:153.818620pt;}
.h12{height:187.319922pt;}
.h13{height:187.417383pt;}
.h3{height:200.253060pt;}
.h4{height:204.195312pt;}
.h7{height:204.310547pt;}
.h10{height:221.658620pt;}
.h1{height:249.251953pt;}
.h16{height:285.835938pt;}
.h0{height:720.000000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x29{left:16.399981pt;}
.x33{left:42.533314pt;}
.x32{left:61.099981pt;}
.x17{left:62.699981pt;}
.x2{left:63.599981pt;}
.x34{left:95.033314pt;}
.x35{left:105.666648pt;}
.x18{left:109.299981pt;}
.x19{left:118.266648pt;}
.x3e{left:120.966648pt;}
.x4b{left:132.599981pt;}
.x1{left:144.333314pt;}
.x41{left:150.759981pt;}
.x42{left:159.026648pt;}
.xf{left:162.893314pt;}
.x43{left:175.359981pt;}
.x36{left:178.573314pt;}
.x12{left:182.639981pt;}
.x3f{left:189.733314pt;}
.x15{left:202.199981pt;}
.x3{left:203.506648pt;}
.x1a{left:228.639981pt;}
.x6{left:268.066648pt;}
.x8{left:275.306648pt;}
.x40{left:315.466648pt;}
.x1b{left:332.799981pt;}
.x1c{left:366.773314pt;}
.x5{left:395.893314pt;}
.x28{left:467.439981pt;}
.x4{left:503.293314pt;}
.x2d{left:504.799981pt;}
.x2e{left:506.173314pt;}
.xe{left:508.173314pt;}
.x20{left:516.666648pt;}
.x21{left:524.693314pt;}
.x10{left:535.133314pt;}
.x11{left:536.599981pt;}
.x2f{left:538.266648pt;}
.x44{left:559.133314pt;}
.x45{left:565.133314pt;}
.x37{left:570.426648pt;}
.x16{left:583.173314pt;}
.x3c{left:592.199981pt;}
.x47{left:607.173314pt;}
.x3a{left:610.106648pt;}
.x13{left:624.799981pt;}
.xd{left:629.866648pt;}
.x3d{left:682.333314pt;}
.x31{left:683.559981pt;}
.x30{left:690.533314pt;}
.x39{left:696.893314pt;}
.x4a{left:722.399981pt;}
.xa{left:725.373314pt;}
.x38{left:729.773314pt;}
.x46{left:749.039981pt;}
.xb{left:756.799981pt;}
.x48{left:761.226648pt;}
.x2a{left:781.106648pt;}
.x14{left:787.533314pt;}
.x22{left:803.066648pt;}
.x23{left:811.999981pt;}
.x27{left:828.039981pt;}
.x1d{left:836.293314pt;}
.x2b{left:842.626648pt;}
.x1e{left:850.066648pt;}
.x1f{left:856.666648pt;}
.x49{left:896.266648pt;}
.xc{left:914.866648pt;}
.x26{left:978.799981pt;}
.x2c{left:1094.533314pt;}
.x7{left:1103.559981pt;}
.x24{left:1134.399981pt;}
.x3b{left:1166.173314pt;}
.x25{left:1168.373314pt;}
.x9{left:1174.666648pt;}
}




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