
    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_21585e1531b3eb626991096e.woff')format("woff");}.ff1{font-family:ff1;line-height:1.006348;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_e8887d27d18403984a8b3a40.woff')format("woff");}.ff2{font-family:ff2;line-height:1.006348;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_c9435b3e58b3f4949b6e9111.woff')format("woff");}.ff3{font-family:ff3;line-height:1.005371;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_77d7ab6e1a6437799cb20700.woff')format("woff");}.ff4{font-family:ff4;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_286cc574362bd5b3dffc4a9c.woff')format("woff");}.ff5{font-family:ff5;line-height:1.106934;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_6f6fd2a7c76207fae91b9ede.woff')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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_ba8e39acaf6f45d6126d8cec.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_55c63eb23caae529e9445d18.woff')format("woff");}.ff8{font-family:ff8;line-height:0.976074;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_4f6703d43236e6ff3d18c3c8.woff')format("woff");}.ff9{font-family:ff9;line-height:0.963867;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:ffa;src:url('chunks/assets/font_769e886f551e372203e08fd2.woff')format("woff");}.ffa{font-family:ffa;line-height:0.963867;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:ffb;src:url('chunks/assets/font_647a5d0e28d7599cba611710.woff')format("woff");}.ffb{font-family:ffb;line-height:1.166504;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:ffc;src:url('chunks/assets/font_15d09e58b8de6827f8df08bb.woff')format("woff");}.ffc{font-family:ffc;line-height:1.005371;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:ffd;src:url('chunks/assets/font_e2b8ee0292eeebc05d4e32f2.woff')format("woff");}.ffd{font-family:ffd;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:78.300000px;}
.lsa{letter-spacing:-0.732000px;}
.ls1{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.384600px;}
.ls11{letter-spacing:0.486000px;}
.lsc{letter-spacing:0.526200px;}
.ls13{letter-spacing:1.419750px;}
.ls12{letter-spacing:1.512000px;}
.ls7{letter-spacing:1.740000px;}
.lsb{letter-spacing:2.052000px;}
.ls9{letter-spacing:2.445900px;}
.ls0{letter-spacing:33.045000px;}
.ls3{letter-spacing:94.246800px;}
.ls2{letter-spacing:94.337400px;}
.ls5{letter-spacing:94.396800px;}
.ls4{letter-spacing:94.487400px;}
.ls10{letter-spacing:99.922500px;}
.ls8{letter-spacing:100.853400px;}
.lsf{letter-spacing:101.872500px;}
.lse{letter-spacing:101.970000px;}
.lsd{letter-spacing:102.022500px;}
.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;}
}
.wsa{word-spacing:-180.300000px;}
.ws10{word-spacing:-40.115400px;}
.wsc{word-spacing:-26.354400px;}
.wsb{word-spacing:-26.312700px;}
.ws14{word-spacing:-23.810700px;}
.ws3{word-spacing:-20.442300px;}
.ws1{word-spacing:-20.373900px;}
.ws7{word-spacing:-20.057700px;}
.wsd{word-spacing:-17.514000px;}
.wsf{word-spacing:-16.524000px;}
.ws2{word-spacing:-16.263000px;}
.ws5{word-spacing:-15.288900px;}
.ws9{word-spacing:-15.012000px;}
.ws6{word-spacing:-2.364300px;}
.ws8{word-spacing:-1.394100px;}
.ws4{word-spacing:-0.054150px;}
.ws0{word-spacing:0.000000px;}
.wse{word-spacing:0.399000px;}
.ws13{word-spacing:0.428400px;}
.ws12{word-spacing:1.686600px;}
.ws11{word-spacing:2.534550px;}
._8{margin-left:-6.928350px;}
._5{margin-left:-5.568600px;}
._4{margin-left:-3.831000px;}
._3{margin-left:-2.652300px;}
._0{margin-left:-1.641900px;}
._2{width:1.515600px;}
._1{width:3.031200px;}
._6{width:4.766250px;}
._9{width:5.907300px;}
._7{width:21.234000px;}
._b{width:29.110950px;}
._a{width:45.718200px;}
._c{width:504.783750px;}
.fc6{color:rgb(204,7,30);}
.fc5{color:rgb(48,133,237);}
.fc4{color:rgb(17,134,195);}
.fc7{color:transparent;}
.fc1{color:rgb(239,130,0);}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(136,136,136);}
.fc0{color:rgb(255,255,255);}
.fs12{font-size:40.500000px;}
.fs13{font-size:40.650000px;}
.fse{font-size:54.000000px;}
.fs3{font-size:54.150000px;}
.fs8{font-size:58.500000px;}
.fsc{font-size:63.000000px;}
.fsd{font-size:63.150000px;}
.fs10{font-size:67.500000px;}
.fsf{font-size:67.650000px;}
.fs9{font-size:72.150000px;}
.fsb{font-size:76.650000px;}
.fs2{font-size:85.650000px;}
.fs11{font-size:85.800000px;}
.fs6{font-size:90.150000px;}
.fs14{font-size:94.650000px;}
.fs15{font-size:94.800000px;}
.fs4{font-size:108.150000px;}
.fs1{font-size:126.150000px;}
.fs0{font-size:126.300000px;}
.fs5{font-size:130.650000px;}
.fs7{font-size:130.800000px;}
.fs16{font-size:144.300000px;}
.fsa{font-size:180.300000px;}
.y0{bottom:0.000000px;}
.y10{bottom:13.462500px;}
.y3d{bottom:23.212500px;}
.y9{bottom:27.000000px;}
.y3c{bottom:35.587500px;}
.y5c{bottom:43.050000px;}
.y3b{bottom:48.000000px;}
.y3a{bottom:60.412500px;}
.y1b{bottom:63.300000px;}
.y6{bottom:71.325000px;}
.y39{bottom:73.912500px;}
.y8{bottom:83.175000px;}
.y5b{bottom:85.875000px;}
.y38{bottom:86.325000px;}
.y1a{bottom:91.500000px;}
.y5{bottom:97.237500px;}
.y37{bottom:98.700000px;}
.y31{bottom:107.325000px;}
.y7{bottom:117.000000px;}
.y19{bottom:119.662500px;}
.y4d{bottom:120.000000px;}
.y4{bottom:122.025000px;}
.y4c{bottom:125.212500px;}
.y5a{bottom:128.700000px;}
.y53{bottom:135.037500px;}
.y3{bottom:146.850000px;}
.y18{bottom:147.825000px;}
.y30{bottom:150.150000px;}
.y4b{bottom:168.045000px;}
.y59{bottom:172.650000px;}
.y17{bottom:176.025000px;}
.y52{bottom:177.855000px;}
.y2{bottom:185.850000px;}
.y23{bottom:204.150000px;}
.y4a{bottom:211.995000px;}
.y58{bottom:215.475000px;}
.y3f{bottom:219.195000px;}
.y1{bottom:219.675000px;}
.y22{bottom:219.945000px;}
.y51{bottom:221.820000px;}
.y45{bottom:226.995000px;}
.y21{bottom:236.850000px;}
.y1d{bottom:238.350000px;}
.y1f{bottom:239.400000px;}
.y15{bottom:244.875000px;}
.y5f{bottom:250.470000px;}
.y3e{bottom:250.770000px;}
.y20{bottom:252.600000px;}
.y49{bottom:254.820000px;}
.y1c{bottom:256.350000px;}
.y1e{bottom:257.445000px;}
.yf{bottom:259.050000px;}
.y57{bottom:259.425000px;}
.y50{bottom:264.645000px;}
.y14{bottom:266.295000px;}
.y44{bottom:270.975000px;}
.ye{bottom:286.095000px;}
.y13{bottom:287.700000px;}
.y28{bottom:291.600000px;}
.y2f{bottom:293.445000px;}
.y48{bottom:297.645000px;}
.y5e{bottom:300.045000px;}
.y56{bottom:302.250000px;}
.y2b{bottom:302.505000px;}
.y4f{bottom:307.455000px;}
.y12{bottom:309.120000px;}
.y26{bottom:309.600000px;}
.yd{bottom:313.155000px;}
.y43{bottom:313.800000px;}
.y27{bottom:325.695000px;}
.y5d{bottom:325.995000px;}
.y11{bottom:330.525000px;}
.y36{bottom:334.725000px;}
.yc{bottom:340.200000px;}
.y47{bottom:341.625000px;}
.y55{bottom:345.075000px;}
.y42{bottom:356.625000px;}
.y35{bottom:362.895000px;}
.yb{bottom:367.245000px;}
.y46{bottom:384.450000px;}
.y25{bottom:386.475000px;}
.y34{bottom:391.095000px;}
.y4e{bottom:392.025000px;}
.y41{bottom:400.575000px;}
.ya{bottom:403.320000px;}
.y2a{bottom:409.320000px;}
.y2d{bottom:410.625000px;}
.y33{bottom:419.250000px;}
.y2e{bottom:419.745000px;}
.y29{bottom:428.475000px;}
.y54{bottom:429.630000px;}
.y2c{bottom:435.450000px;}
.y40{bottom:443.400000px;}
.y32{bottom:447.450000px;}
.y24{bottom:451.755000px;}
.y16{bottom:539.220000px;}
.he{height:41.291016px;}
.hf{height:41.405713px;}
.h4{height:41.432153px;}
.h14{height:42.240234px;}
.h15{height:42.396680px;}
.h17{height:56.320312px;}
.h16{height:56.476758px;}
.h8{height:61.013672px;}
.h3{height:65.617603px;}
.hc{height:65.707031px;}
.hd{height:65.863477px;}
.h11{height:67.137451px;}
.h10{height:67.286646px;}
.hb{height:68.715527px;}
.h9{height:75.250195px;}
.h13{height:87.699243px;}
.h12{height:87.852832px;}
.h1c{height:89.330273px;}
.h2{height:96.645190px;}
.h1{height:96.760107px;}
.h18{height:98.716992px;}
.h19{height:98.873438px;}
.h5{height:107.569116px;}
.h6{height:117.125684px;}
.h7{height:117.260156px;}
.ha{height:137.954150px;}
.h1a{height:144.007031px;}
.h1b{height:150.500391px;}
.h0{height:607.500000px;}
.w1{width:1079.999984px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x25{left:10.799984px;}
.x26{left:20.099984px;}
.x2b{left:22.799984px;}
.x22{left:23.812484px;}
.x2f{left:25.462484px;}
.x28{left:34.649984px;}
.x23{left:47.174984px;}
.x2c{left:56.549984px;}
.x30{left:59.249984px;}
.x11{left:61.837484px;}
.x29{left:68.437484px;}
.x2d{left:91.087484px;}
.x24{left:101.212484px;}
.x2a{left:102.824984px;}
.xa{left:115.237484px;}
.xb{left:125.962484px;}
.x16{left:144.112484px;}
.x7{left:155.654984px;}
.x17{left:173.474984px;}
.x14{left:198.524984px;}
.x21{left:201.644984px;}
.x18{left:202.649984px;}
.x15{left:208.349984px;}
.x10{left:210.299984px;}
.xe{left:236.699984px;}
.x1{left:237.974984px;}
.xf{left:349.349984px;}
.x32{left:411.944984px;}
.x2e{left:431.399984px;}
.x20{left:441.494984px;}
.x1b{left:445.124984px;}
.x33{left:446.294984px;}
.x1a{left:448.799984px;}
.x31{left:462.149984px;}
.x1f{left:489.149984px;}
.x2{left:505.424984px;}
.xc{left:584.849984px;}
.x12{left:591.524984px;}
.xd{left:595.574984px;}
.x8{left:601.049984px;}
.x19{left:606.104984px;}
.x13{left:654.224984px;}
.x1e{left:789.629984px;}
.x3{left:807.944984px;}
.x5{left:845.849984px;}
.x1c{left:846.899984px;}
.x1d{left:854.294984px;}
.x6{left:866.879984px;}
.x4{left:911.744984px;}
.x27{left:983.174984px;}
.x9{left:990.869984px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:69.600000pt;}
.lsa{letter-spacing:-0.650667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.341867pt;}
.ls11{letter-spacing:0.432000pt;}
.lsc{letter-spacing:0.467733pt;}
.ls13{letter-spacing:1.262000pt;}
.ls12{letter-spacing:1.344000pt;}
.ls7{letter-spacing:1.546667pt;}
.lsb{letter-spacing:1.824000pt;}
.ls9{letter-spacing:2.174133pt;}
.ls0{letter-spacing:29.373333pt;}
.ls3{letter-spacing:83.774933pt;}
.ls2{letter-spacing:83.855467pt;}
.ls5{letter-spacing:83.908267pt;}
.ls4{letter-spacing:83.988800pt;}
.ls10{letter-spacing:88.820000pt;}
.ls8{letter-spacing:89.647467pt;}
.lsf{letter-spacing:90.553333pt;}
.lse{letter-spacing:90.640000pt;}
.lsd{letter-spacing:90.686667pt;}
.wsa{word-spacing:-160.266667pt;}
.ws10{word-spacing:-35.658133pt;}
.wsc{word-spacing:-23.426133pt;}
.wsb{word-spacing:-23.389067pt;}
.ws14{word-spacing:-21.165067pt;}
.ws3{word-spacing:-18.170933pt;}
.ws1{word-spacing:-18.110133pt;}
.ws7{word-spacing:-17.829067pt;}
.wsd{word-spacing:-15.568000pt;}
.wsf{word-spacing:-14.688000pt;}
.ws2{word-spacing:-14.456000pt;}
.ws5{word-spacing:-13.590133pt;}
.ws9{word-spacing:-13.344000pt;}
.ws6{word-spacing:-2.101600pt;}
.ws8{word-spacing:-1.239200pt;}
.ws4{word-spacing:-0.048133pt;}
.ws0{word-spacing:0.000000pt;}
.wse{word-spacing:0.354667pt;}
.ws13{word-spacing:0.380800pt;}
.ws12{word-spacing:1.499200pt;}
.ws11{word-spacing:2.252933pt;}
._8{margin-left:-6.158533pt;}
._5{margin-left:-4.949867pt;}
._4{margin-left:-3.405333pt;}
._3{margin-left:-2.357600pt;}
._0{margin-left:-1.459467pt;}
._2{width:1.347200pt;}
._1{width:2.694400pt;}
._6{width:4.236667pt;}
._9{width:5.250933pt;}
._7{width:18.874667pt;}
._b{width:25.876400pt;}
._a{width:40.638400pt;}
._c{width:448.696667pt;}
.fs12{font-size:36.000000pt;}
.fs13{font-size:36.133333pt;}
.fse{font-size:48.000000pt;}
.fs3{font-size:48.133333pt;}
.fs8{font-size:52.000000pt;}
.fsc{font-size:56.000000pt;}
.fsd{font-size:56.133333pt;}
.fs10{font-size:60.000000pt;}
.fsf{font-size:60.133333pt;}
.fs9{font-size:64.133333pt;}
.fsb{font-size:68.133333pt;}
.fs2{font-size:76.133333pt;}
.fs11{font-size:76.266667pt;}
.fs6{font-size:80.133333pt;}
.fs14{font-size:84.133333pt;}
.fs15{font-size:84.266667pt;}
.fs4{font-size:96.133333pt;}
.fs1{font-size:112.133333pt;}
.fs0{font-size:112.266667pt;}
.fs5{font-size:116.133333pt;}
.fs7{font-size:116.266667pt;}
.fs16{font-size:128.266667pt;}
.fsa{font-size:160.266667pt;}
.y0{bottom:0.000000pt;}
.y10{bottom:11.966667pt;}
.y3d{bottom:20.633333pt;}
.y9{bottom:24.000000pt;}
.y3c{bottom:31.633333pt;}
.y5c{bottom:38.266667pt;}
.y3b{bottom:42.666667pt;}
.y3a{bottom:53.700000pt;}
.y1b{bottom:56.266667pt;}
.y6{bottom:63.400000pt;}
.y39{bottom:65.700000pt;}
.y8{bottom:73.933333pt;}
.y5b{bottom:76.333333pt;}
.y38{bottom:76.733333pt;}
.y1a{bottom:81.333333pt;}
.y5{bottom:86.433333pt;}
.y37{bottom:87.733333pt;}
.y31{bottom:95.400000pt;}
.y7{bottom:104.000000pt;}
.y19{bottom:106.366667pt;}
.y4d{bottom:106.666667pt;}
.y4{bottom:108.466667pt;}
.y4c{bottom:111.300000pt;}
.y5a{bottom:114.400000pt;}
.y53{bottom:120.033333pt;}
.y3{bottom:130.533333pt;}
.y18{bottom:131.400000pt;}
.y30{bottom:133.466667pt;}
.y4b{bottom:149.373333pt;}
.y59{bottom:153.466667pt;}
.y17{bottom:156.466667pt;}
.y52{bottom:158.093333pt;}
.y2{bottom:165.200000pt;}
.y23{bottom:181.466667pt;}
.y4a{bottom:188.440000pt;}
.y58{bottom:191.533333pt;}
.y3f{bottom:194.840000pt;}
.y1{bottom:195.266667pt;}
.y22{bottom:195.506667pt;}
.y51{bottom:197.173333pt;}
.y45{bottom:201.773333pt;}
.y21{bottom:210.533333pt;}
.y1d{bottom:211.866667pt;}
.y1f{bottom:212.800000pt;}
.y15{bottom:217.666667pt;}
.y5f{bottom:222.640000pt;}
.y3e{bottom:222.906667pt;}
.y20{bottom:224.533333pt;}
.y49{bottom:226.506667pt;}
.y1c{bottom:227.866667pt;}
.y1e{bottom:228.840000pt;}
.yf{bottom:230.266667pt;}
.y57{bottom:230.600000pt;}
.y50{bottom:235.240000pt;}
.y14{bottom:236.706667pt;}
.y44{bottom:240.866667pt;}
.ye{bottom:254.306667pt;}
.y13{bottom:255.733333pt;}
.y28{bottom:259.200000pt;}
.y2f{bottom:260.840000pt;}
.y48{bottom:264.573333pt;}
.y5e{bottom:266.706667pt;}
.y56{bottom:268.666667pt;}
.y2b{bottom:268.893333pt;}
.y4f{bottom:273.293333pt;}
.y12{bottom:274.773333pt;}
.y26{bottom:275.200000pt;}
.yd{bottom:278.360000pt;}
.y43{bottom:278.933333pt;}
.y27{bottom:289.506667pt;}
.y5d{bottom:289.773333pt;}
.y11{bottom:293.800000pt;}
.y36{bottom:297.533333pt;}
.yc{bottom:302.400000pt;}
.y47{bottom:303.666667pt;}
.y55{bottom:306.733333pt;}
.y42{bottom:317.000000pt;}
.y35{bottom:322.573333pt;}
.yb{bottom:326.440000pt;}
.y46{bottom:341.733333pt;}
.y25{bottom:343.533333pt;}
.y34{bottom:347.640000pt;}
.y4e{bottom:348.466667pt;}
.y41{bottom:356.066667pt;}
.ya{bottom:358.506667pt;}
.y2a{bottom:363.840000pt;}
.y2d{bottom:365.000000pt;}
.y33{bottom:372.666667pt;}
.y2e{bottom:373.106667pt;}
.y29{bottom:380.866667pt;}
.y54{bottom:381.893333pt;}
.y2c{bottom:387.066667pt;}
.y40{bottom:394.133333pt;}
.y32{bottom:397.733333pt;}
.y24{bottom:401.560000pt;}
.y16{bottom:479.306667pt;}
.he{height:36.703125pt;}
.hf{height:36.805078pt;}
.h4{height:36.828581pt;}
.h14{height:37.546875pt;}
.h15{height:37.685938pt;}
.h17{height:50.062500pt;}
.h16{height:50.201563pt;}
.h8{height:54.234375pt;}
.h3{height:58.326758pt;}
.hc{height:58.406250pt;}
.hd{height:58.545313pt;}
.h11{height:59.677734pt;}
.h10{height:59.810352pt;}
.hb{height:61.080469pt;}
.h9{height:66.889063pt;}
.h13{height:77.954883pt;}
.h12{height:78.091406pt;}
.h1c{height:79.404688pt;}
.h2{height:85.906836pt;}
.h1{height:86.008984pt;}
.h18{height:87.748438pt;}
.h19{height:87.887500pt;}
.h5{height:95.616992pt;}
.h6{height:104.111719pt;}
.h7{height:104.231250pt;}
.ha{height:122.625911pt;}
.h1a{height:128.006250pt;}
.h1b{height:133.778125pt;}
.h0{height:540.000000pt;}
.w1{width:959.999986pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x25{left:9.599986pt;}
.x26{left:17.866652pt;}
.x2b{left:20.266652pt;}
.x22{left:21.166652pt;}
.x2f{left:22.633319pt;}
.x28{left:30.799986pt;}
.x23{left:41.933319pt;}
.x2c{left:50.266652pt;}
.x30{left:52.666652pt;}
.x11{left:54.966652pt;}
.x29{left:60.833319pt;}
.x2d{left:80.966652pt;}
.x24{left:89.966652pt;}
.x2a{left:91.399986pt;}
.xa{left:102.433319pt;}
.xb{left:111.966652pt;}
.x16{left:128.099986pt;}
.x7{left:138.359986pt;}
.x17{left:154.199986pt;}
.x14{left:176.466652pt;}
.x21{left:179.239986pt;}
.x18{left:180.133319pt;}
.x15{left:185.199986pt;}
.x10{left:186.933319pt;}
.xe{left:210.399986pt;}
.x1{left:211.533319pt;}
.xf{left:310.533319pt;}
.x32{left:366.173319pt;}
.x2e{left:383.466652pt;}
.x20{left:392.439986pt;}
.x1b{left:395.666652pt;}
.x33{left:396.706652pt;}
.x1a{left:398.933319pt;}
.x31{left:410.799986pt;}
.x1f{left:434.799986pt;}
.x2{left:449.266652pt;}
.xc{left:519.866652pt;}
.x12{left:525.799986pt;}
.xd{left:529.399986pt;}
.x8{left:534.266652pt;}
.x19{left:538.759986pt;}
.x13{left:581.533319pt;}
.x1e{left:701.893319pt;}
.x3{left:718.173319pt;}
.x5{left:751.866652pt;}
.x1c{left:752.799986pt;}
.x1d{left:759.373319pt;}
.x6{left:770.559986pt;}
.x4{left:810.439986pt;}
.x27{left:873.933319pt;}
.x9{left:880.773319pt;}
}




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