
    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_b8a739bc05820cc9d667e76e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.180000;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_11572015f51579ecc84f67bf.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.066000;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_e51801e94a963c1c49afecba.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.806000;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_9fecc6e53ce37007ac5a424f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.900879;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_644f848a8d562a96f1681711.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.743164;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_d79738251c9ca26f228084f2.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.743164;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_fda7c50f6078173e0807f804.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.005000;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_7dbb11c099a5c89a11725a3a.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.005000;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_ecf53b99b417b3ba4cd28696.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.682617;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_c8638d821704bb7a1e41f7d9.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.005000;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_da7242f64c237c07e4ed0432.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_a7ef89b3a8c229962b62d6ad.woff2')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_f29ed3db80d02132b09887ec.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.708008;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:ffe;src:url('chunks/assets/font_6acb5b4990357816dc8fb9f2.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.076000;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:fff;src:url('chunks/assets/font_34249e4a47c4a205cc8e9bda.woff2')format("woff");}.fff{font-family:fff;line-height:1.000000;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:ff10;src:url('chunks/assets/font_d7abdfd288bb918aea1f0694.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.710000;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:ff11;src:url('chunks/assets/font_63ca766ef554ba6e673980af.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.945000;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:ff12;src:url('chunks/assets/font_759b2e4406a4532dcc7ebe6a.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_c849d86e05b84863fbe6079b.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.752000;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);}
.v0{vertical-align:0.000000px;}
.ls9{letter-spacing:-0.154200px;}
.ls11{letter-spacing:-0.108000px;}
.lsa{letter-spacing:-0.075000px;}
.lsb{letter-spacing:-0.036000px;}
.ls0{letter-spacing:0.000000px;}
.lse{letter-spacing:0.207000px;}
.lsc{letter-spacing:93.536064px;}
.lsd{letter-spacing:93.623040px;}
.ls5{letter-spacing:94.536000px;}
.ls10{letter-spacing:94.569984px;}
.lsf{letter-spacing:94.656960px;}
.ls6{letter-spacing:99.345600px;}
.ls7{letter-spacing:99.396000px;}
.ls4{letter-spacing:104.457600px;}
.ls2{letter-spacing:104.544000px;}
.ls8{letter-spacing:107.316000px;}
.ls3{letter-spacing:130.893600px;}
.ls1{letter-spacing:130.944000px;}
.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;}
}
.wse{word-spacing:-42.084000px;}
.ws9{word-spacing:-41.256000px;}
.ws10{word-spacing:-35.979840px;}
.ws11{word-spacing:-35.942400px;}
.ws5{word-spacing:-34.257600px;}
.wsb{word-spacing:-31.108200px;}
.wsf{word-spacing:-20.628000px;}
.ws13{word-spacing:-1.947840px;}
.ws12{word-spacing:-1.110480px;}
.wsc{word-spacing:-0.287280px;}
.wsd{word-spacing:-0.216144px;}
.ws15{word-spacing:-0.198000px;}
.ws16{word-spacing:-0.131760px;}
.wsa{word-spacing:-0.120240px;}
.ws8{word-spacing:-0.119520px;}
.ws0{word-spacing:-0.108000px;}
.ws1{word-spacing:0.000000px;}
.ws2{word-spacing:0.594720px;}
.ws4{word-spacing:1.263600px;}
.ws3{word-spacing:1.603440px;}
.ws7{word-spacing:2.032992px;}
.ws6{word-spacing:2.574144px;}
.ws14{word-spacing:57.870000px;}
._3{margin-left:-2.418624px;}
._1{margin-left:-1.179360px;}
._0{width:1.296000px;}
._2{width:2.360880px;}
.fc7{color:rgb(3,105,163);}
.fc6{color:rgb(8,53,94);}
.fc5{color:rgb(0,92,109);}
.fc4{color:rgb(15,158,213);}
.fc3{color:rgb(21,96,130);}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs4{font-size:84.240000px;}
.fs7{font-size:95.760000px;}
.fsa{font-size:95.904000px;}
.fs3{font-size:102.240000px;}
.fs2{font-size:108.000000px;}
.fsb{font-size:108.144000px;}
.fs5{font-size:113.760000px;}
.fs8{font-size:113.904000px;}
.fs10{font-size:119.520000px;}
.fs11{font-size:120.240000px;}
.fse{font-size:126.000000px;}
.fsf{font-size:126.144000px;}
.fs6{font-size:131.760000px;}
.fs9{font-size:131.904000px;}
.fs14{font-size:138.240000px;}
.fsd{font-size:138.384000px;}
.fs15{font-size:156.240000px;}
.fs16{font-size:162.000000px;}
.fs13{font-size:179.280000px;}
.fs12{font-size:179.424000px;}
.fs17{font-size:198.000000px;}
.fs1{font-size:216.000000px;}
.fs0{font-size:216.144000px;}
.fsc{font-size:288.144000px;}
.y0{bottom:0.000000px;}
.y20{bottom:13.932000px;}
.y3c{bottom:33.696000px;}
.y2e{bottom:43.884000px;}
.y1f{bottom:49.932000px;}
.y3b{bottom:75.096000px;}
.y1d{bottom:75.420000px;}
.y11{bottom:77.328000px;}
.y2d{bottom:85.320000px;}
.y44{bottom:90.252000px;}
.y1c{bottom:113.256000px;}
.y10{bottom:113.868000px;}
.y2c{bottom:126.720000px;}
.y43{bottom:129.888000px;}
.y5{bottom:134.532000px;}
.y1b{bottom:151.050000px;}
.y3a{bottom:157.935000px;}
.y4{bottom:160.455000px;}
.yf{bottom:161.565000px;}
.y49{bottom:161.790000px;}
.y2b{bottom:167.040000px;}
.y42{bottom:169.485000px;}
.y1a{bottom:188.850000px;}
.ye{bottom:197.430000px;}
.y39{bottom:199.335000px;}
.y48{bottom:201.390000px;}
.y2a{bottom:204.150000px;}
.y32{bottom:206.460000px;}
.y41{bottom:209.085000px;}
.y12{bottom:225.540000px;}
.y19{bottom:226.650000px;}
.y3{bottom:231.120000px;}
.y38{bottom:240.765000px;}
.y47{bottom:241.020000px;}
.yd{bottom:243.330000px;}
.y23{bottom:245.490000px;}
.y29{bottom:245.550000px;}
.y40{bottom:248.730000px;}
.y31{bottom:250.200000px;}
.y18{bottom:264.495000px;}
.yc{bottom:280.050000px;}
.y46{bottom:280.620000px;}
.y37{bottom:282.165000px;}
.y28{bottom:286.950000px;}
.y3f{bottom:288.330000px;}
.y30{bottom:293.970000px;}
.y2{bottom:295.950000px;}
.y17{bottom:302.295000px;}
.y22{bottom:304.020000px;}
.yb{bottom:315.870000px;}
.y45{bottom:320.580000px;}
.y36{bottom:323.565000px;}
.y3e{bottom:327.930000px;}
.y27{bottom:328.395000px;}
.y16{bottom:340.095000px;}
.y1{bottom:360.795000px;}
.y35{bottom:360.870000px;}
.y21{bottom:362.340000px;}
.ya{bottom:363.240000px;}
.y3d{bottom:376.920000px;}
.y15{bottom:378.645000px;}
.y9{bottom:399.240000px;}
.y26{bottom:402.810000px;}
.y1e{bottom:451.410000px;}
.y4b{bottom:462.750000px;}
.y25{bottom:467.640000px;}
.y14{bottom:469.590000px;}
.y34{bottom:486.360000px;}
.y8{bottom:494.460000px;}
.y4a{bottom:502.350000px;}
.y2f{bottom:504.180000px;}
.y13{bottom:521.430000px;}
.y33{bottom:531.720000px;}
.y24{bottom:542.490000px;}
.y6{bottom:578.130000px;}
.y7{bottom:633.750000px;}
.h6{height:61.575820px;}
.h5{height:77.628516px;}
.h8{height:82.620000px;}
.ha{height:82.730160px;}
.h4{height:85.968000px;}
.h11{height:91.354219px;}
.h10{height:95.735520px;}
.h12{height:96.312240px;}
.he{height:96.407227px;}
.hf{height:96.517406px;}
.h3{height:97.632000px;}
.h7{height:100.796400px;}
.h1c{height:100.814414px;}
.h9{height:100.906560px;}
.h1d{height:100.924594px;}
.h1e{height:105.539760px;}
.h15{height:105.753600px;}
.h1b{height:105.772500px;}
.h16{height:105.863760px;}
.hd{height:105.882680px;}
.h17{height:114.204727px;}
.h19{height:123.952148px;}
.h14{height:131.045977px;}
.h13{height:131.151234px;}
.h1a{height:148.698000px;}
.h18{height:151.300800px;}
.h2{height:171.936000px;}
.hc{height:195.264000px;}
.h1{height:195.394176px;}
.hb{height:220.469555px;}
.h0{height:607.500000px;}
.w1{width:1079.999984px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x13{left:26.567984px;}
.x15{left:29.663984px;}
.x16{left:33.119984px;}
.xd{left:38.051984px;}
.x8{left:44.171984px;}
.xe{left:48.887984px;}
.x17{left:73.655984px;}
.x18{left:87.155984px;}
.xf{left:91.547984px;}
.x19{left:121.895984px;}
.x1{left:143.891984px;}
.x2{left:159.734984px;}
.x14{left:223.709984px;}
.x1a{left:290.414984px;}
.x25{left:359.534984px;}
.x1b{left:373.679984px;}
.x26{left:375.194984px;}
.x3{left:386.204984px;}
.x4{left:405.284984px;}
.x7{left:442.334984px;}
.x9{left:470.699984px;}
.x5{left:484.529984px;}
.xa{left:513.389984px;}
.xb{left:526.889984px;}
.x1e{left:540.074984px;}
.x1f{left:543.854984px;}
.x21{left:550.514984px;}
.xc{left:566.024984px;}
.x1c{left:593.099984px;}
.x11{left:597.134984px;}
.x20{left:604.544984px;}
.x1d{left:637.379984px;}
.x10{left:650.189984px;}
.x22{left:693.104984px;}
.x23{left:696.884984px;}
.x12{left:733.964984px;}
.x24{left:740.444984px;}
.x6{left:884.669984px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-0.137067pt;}
.ls11{letter-spacing:-0.096000pt;}
.lsa{letter-spacing:-0.066667pt;}
.lsb{letter-spacing:-0.032000pt;}
.ls0{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.184000pt;}
.lsc{letter-spacing:83.143168pt;}
.lsd{letter-spacing:83.220480pt;}
.ls5{letter-spacing:84.032000pt;}
.ls10{letter-spacing:84.062208pt;}
.lsf{letter-spacing:84.139520pt;}
.ls6{letter-spacing:88.307200pt;}
.ls7{letter-spacing:88.352000pt;}
.ls4{letter-spacing:92.851200pt;}
.ls2{letter-spacing:92.928000pt;}
.ls8{letter-spacing:95.392000pt;}
.ls3{letter-spacing:116.349867pt;}
.ls1{letter-spacing:116.394667pt;}
.wse{word-spacing:-37.408000pt;}
.ws9{word-spacing:-36.672000pt;}
.ws10{word-spacing:-31.982080pt;}
.ws11{word-spacing:-31.948800pt;}
.ws5{word-spacing:-30.451200pt;}
.wsb{word-spacing:-27.651733pt;}
.wsf{word-spacing:-18.336000pt;}
.ws13{word-spacing:-1.731413pt;}
.ws12{word-spacing:-0.987093pt;}
.wsc{word-spacing:-0.255360pt;}
.wsd{word-spacing:-0.192128pt;}
.ws15{word-spacing:-0.176000pt;}
.ws16{word-spacing:-0.117120pt;}
.wsa{word-spacing:-0.106880pt;}
.ws8{word-spacing:-0.106240pt;}
.ws0{word-spacing:-0.096000pt;}
.ws1{word-spacing:0.000000pt;}
.ws2{word-spacing:0.528640pt;}
.ws4{word-spacing:1.123200pt;}
.ws3{word-spacing:1.425280pt;}
.ws7{word-spacing:1.807104pt;}
.ws6{word-spacing:2.288128pt;}
.ws14{word-spacing:51.440000pt;}
._3{margin-left:-2.149888pt;}
._1{margin-left:-1.048320pt;}
._0{width:1.152000pt;}
._2{width:2.098560pt;}
.fs4{font-size:74.880000pt;}
.fs7{font-size:85.120000pt;}
.fsa{font-size:85.248000pt;}
.fs3{font-size:90.880000pt;}
.fs2{font-size:96.000000pt;}
.fsb{font-size:96.128000pt;}
.fs5{font-size:101.120000pt;}
.fs8{font-size:101.248000pt;}
.fs10{font-size:106.240000pt;}
.fs11{font-size:106.880000pt;}
.fse{font-size:112.000000pt;}
.fsf{font-size:112.128000pt;}
.fs6{font-size:117.120000pt;}
.fs9{font-size:117.248000pt;}
.fs14{font-size:122.880000pt;}
.fsd{font-size:123.008000pt;}
.fs15{font-size:138.880000pt;}
.fs16{font-size:144.000000pt;}
.fs13{font-size:159.360000pt;}
.fs12{font-size:159.488000pt;}
.fs17{font-size:176.000000pt;}
.fs1{font-size:192.000000pt;}
.fs0{font-size:192.128000pt;}
.fsc{font-size:256.128000pt;}
.y0{bottom:0.000000pt;}
.y20{bottom:12.384000pt;}
.y3c{bottom:29.952000pt;}
.y2e{bottom:39.008000pt;}
.y1f{bottom:44.384000pt;}
.y3b{bottom:66.752000pt;}
.y1d{bottom:67.040000pt;}
.y11{bottom:68.736000pt;}
.y2d{bottom:75.840000pt;}
.y44{bottom:80.224000pt;}
.y1c{bottom:100.672000pt;}
.y10{bottom:101.216000pt;}
.y2c{bottom:112.640000pt;}
.y43{bottom:115.456000pt;}
.y5{bottom:119.584000pt;}
.y1b{bottom:134.266667pt;}
.y3a{bottom:140.386667pt;}
.y4{bottom:142.626667pt;}
.yf{bottom:143.613333pt;}
.y49{bottom:143.813333pt;}
.y2b{bottom:148.480000pt;}
.y42{bottom:150.653333pt;}
.y1a{bottom:167.866667pt;}
.ye{bottom:175.493333pt;}
.y39{bottom:177.186667pt;}
.y48{bottom:179.013333pt;}
.y2a{bottom:181.466667pt;}
.y32{bottom:183.520000pt;}
.y41{bottom:185.853333pt;}
.y12{bottom:200.480000pt;}
.y19{bottom:201.466667pt;}
.y3{bottom:205.440000pt;}
.y38{bottom:214.013333pt;}
.y47{bottom:214.240000pt;}
.yd{bottom:216.293333pt;}
.y23{bottom:218.213333pt;}
.y29{bottom:218.266667pt;}
.y40{bottom:221.093333pt;}
.y31{bottom:222.400000pt;}
.y18{bottom:235.106667pt;}
.yc{bottom:248.933333pt;}
.y46{bottom:249.440000pt;}
.y37{bottom:250.813333pt;}
.y28{bottom:255.066667pt;}
.y3f{bottom:256.293333pt;}
.y30{bottom:261.306667pt;}
.y2{bottom:263.066667pt;}
.y17{bottom:268.706667pt;}
.y22{bottom:270.240000pt;}
.yb{bottom:280.773333pt;}
.y45{bottom:284.960000pt;}
.y36{bottom:287.613333pt;}
.y3e{bottom:291.493333pt;}
.y27{bottom:291.906667pt;}
.y16{bottom:302.306667pt;}
.y1{bottom:320.706667pt;}
.y35{bottom:320.773333pt;}
.y21{bottom:322.080000pt;}
.ya{bottom:322.880000pt;}
.y3d{bottom:335.040000pt;}
.y15{bottom:336.573333pt;}
.y9{bottom:354.880000pt;}
.y26{bottom:358.053333pt;}
.y1e{bottom:401.253333pt;}
.y4b{bottom:411.333333pt;}
.y25{bottom:415.680000pt;}
.y14{bottom:417.413333pt;}
.y34{bottom:432.320000pt;}
.y8{bottom:439.520000pt;}
.y4a{bottom:446.533333pt;}
.y2f{bottom:448.160000pt;}
.y13{bottom:463.493333pt;}
.y33{bottom:472.640000pt;}
.y24{bottom:482.213333pt;}
.y6{bottom:513.893333pt;}
.y7{bottom:563.333333pt;}
.h6{height:54.734062pt;}
.h5{height:69.003125pt;}
.h8{height:73.440000pt;}
.ha{height:73.537920pt;}
.h4{height:76.416000pt;}
.h11{height:81.203750pt;}
.h10{height:85.098240pt;}
.h12{height:85.610880pt;}
.he{height:85.695312pt;}
.hf{height:85.793250pt;}
.h3{height:86.784000pt;}
.h7{height:89.596800pt;}
.h1c{height:89.612812pt;}
.h9{height:89.694720pt;}
.h1d{height:89.710750pt;}
.h1e{height:93.813120pt;}
.h15{height:94.003200pt;}
.h1b{height:94.020000pt;}
.h16{height:94.101120pt;}
.hd{height:94.117938pt;}
.h17{height:101.515313pt;}
.h19{height:110.179688pt;}
.h14{height:116.485312pt;}
.h13{height:116.578875pt;}
.h1a{height:132.176000pt;}
.h18{height:134.489600pt;}
.h2{height:152.832000pt;}
.hc{height:173.568000pt;}
.h1{height:173.683712pt;}
.hb{height:195.972937pt;}
.h0{height:540.000000pt;}
.w1{width:959.999986pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x13{left:23.615986pt;}
.x15{left:26.367986pt;}
.x16{left:29.439986pt;}
.xd{left:33.823986pt;}
.x8{left:39.263986pt;}
.xe{left:43.455986pt;}
.x17{left:65.471986pt;}
.x18{left:77.471986pt;}
.xf{left:81.375986pt;}
.x19{left:108.351986pt;}
.x1{left:127.903986pt;}
.x2{left:141.986652pt;}
.x14{left:198.853319pt;}
.x1a{left:258.146652pt;}
.x25{left:319.586652pt;}
.x1b{left:332.159986pt;}
.x26{left:333.506652pt;}
.x3{left:343.293319pt;}
.x4{left:360.253319pt;}
.x7{left:393.186652pt;}
.x9{left:418.399986pt;}
.x5{left:430.693319pt;}
.xa{left:456.346652pt;}
.xb{left:468.346652pt;}
.x1e{left:480.066652pt;}
.x1f{left:483.426652pt;}
.x21{left:489.346652pt;}
.xc{left:503.133319pt;}
.x1c{left:527.199986pt;}
.x11{left:530.786652pt;}
.x20{left:537.373319pt;}
.x1d{left:566.559986pt;}
.x10{left:577.946652pt;}
.x22{left:616.093319pt;}
.x23{left:619.453319pt;}
.x12{left:652.413319pt;}
.x24{left:658.173319pt;}
.x6{left:786.373319pt;}
}




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