
    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_078a0cd8786bf84edb8047d5.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.939941;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_867da627b1aa917c41275d26.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938965;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_f3410976d2ce2fe8f922be78.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938965;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_b29ac7dcc6e1e4a46e8fa294.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_a28a73e9dfe895ce687aedda.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.939941;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_665a2808b77fb6d0917e43c5.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.053711;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_0d8ac86dccb78867208086df.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.752441;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_8b941d9c143e604c8516bd37.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.202148;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_b7d9e85a06369bbde3597171.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.893555;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_683885cbcca151864e3b8e94.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.977051;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);}
.v3{vertical-align:-36.000000px;}
.v1{vertical-align:-27.000000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:27.000000px;}
.v2{vertical-align:36.000000px;}
.v5{vertical-align:40.680000px;}
.ls16{letter-spacing:-4.500000px;}
.lsc{letter-spacing:-2.322000px;}
.lsa{letter-spacing:-2.220000px;}
.ls18{letter-spacing:-1.800000px;}
.ls17{letter-spacing:-1.734000px;}
.lse{letter-spacing:-1.284000px;}
.ls14{letter-spacing:-1.128000px;}
.lsf{letter-spacing:-0.954000px;}
.ls12{letter-spacing:-0.558000px;}
.ls19{letter-spacing:-0.279000px;}
.ls15{letter-spacing:-0.075000px;}
.lsd{letter-spacing:-0.054000px;}
.ls9{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.027000px;}
.ls5{letter-spacing:0.399300px;}
.ls7{letter-spacing:0.417000px;}
.ls6{letter-spacing:0.675000px;}
.ls4{letter-spacing:0.795000px;}
.ls2{letter-spacing:0.870000px;}
.ls3{letter-spacing:1.075500px;}
.lsb{letter-spacing:1.086000px;}
.ls1{letter-spacing:1.135500px;}
.ls8{letter-spacing:1.264500px;}
.ls10{letter-spacing:1.542000px;}
.ls13{letter-spacing:2.112000px;}
.ls11{letter-spacing:2.172000px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(0,176,80),0 0.015em rgb(0,176,80),0.015em 0 rgb(0,176,80),0 -0.015em  rgb(0,176,80);}
.sc1{text-shadow:-0.015em 0 rgb(23,55,94),0 0.015em rgb(23,55,94),0.015em 0 rgb(23,55,94),0 -0.015em  rgb(23,55,94);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(0,176,80);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(23,55,94);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws10{word-spacing:-130.650000px;}
.wse{word-spacing:-130.500000px;}
.ws6{word-spacing:-121.500000px;}
.wsa{word-spacing:-90.000000px;}
.ws9{word-spacing:-41.625000px;}
.wsb{word-spacing:-37.629000px;}
.ws13{word-spacing:-34.834500px;}
.wsc{word-spacing:-34.167000px;}
.ws16{word-spacing:-32.662500px;}
.wsd{word-spacing:-32.625000px;}
.ws1b{word-spacing:-32.346000px;}
.ws7{word-spacing:-30.412500px;}
.ws3{word-spacing:-30.375000px;}
.ws15{word-spacing:-22.537500px;}
.wsf{word-spacing:-22.500000px;}
.ws18{word-spacing:-20.803500px;}
.ws19{word-spacing:-20.700000px;}
.ws5{word-spacing:-20.250000px;}
.ws11{word-spacing:-6.601500px;}
.ws12{word-spacing:-5.655000px;}
.ws2{word-spacing:-4.010250px;}
.ws14{word-spacing:-2.215500px;}
.ws4{word-spacing:-1.773000px;}
.ws1{word-spacing:-0.400500px;}
.ws0{word-spacing:-0.265650px;}
.ws1a{word-spacing:-0.130500px;}
.ws1c{word-spacing:0.000000px;}
.ws8{word-spacing:4.891500px;}
.ws17{word-spacing:8.733000px;}
._6{margin-left:-21.252000px;}
._19{margin-left:-20.071050px;}
._10{margin-left:-14.700450px;}
._f{margin-left:-13.416750px;}
._5{margin-left:-12.389700px;}
._1a{margin-left:-11.232750px;}
._15{margin-left:-9.949950px;}
._20{margin-left:-8.765100px;}
._3{margin-left:-7.346550px;}
._a{margin-left:-5.940000px;}
._9{margin-left:-4.752000px;}
._8{margin-left:-3.603600px;}
._2{margin-left:-2.592900px;}
._0{margin-left:-1.296450px;}
._4{width:1.296450px;}
._1{width:2.592900px;}
._b{width:3.753450px;}
._7{width:4.888050px;}
._12{width:6.284700px;}
._1f{width:7.439100px;}
._18{width:8.651250px;}
._11{width:10.526550px;}
._16{width:16.243200px;}
._e{width:28.825950px;}
._1e{width:30.726600px;}
._22{width:33.805800px;}
._1c{width:34.814100px;}
._1b{width:36.586500px;}
._1d{width:37.826700px;}
._21{width:38.973900px;}
._23{width:40.101450px;}
._14{width:44.094150px;}
._13{width:45.812550px;}
._17{width:51.598350px;}
._c{width:55.533600px;}
._d{width:57.760500px;}
.fc7{color:transparent;}
.fc6{color:rgb(255,102,0);}
.fc4{color:rgb(255,0,0);}
.fc3{color:rgb(0,112,192);}
.fc2{color:rgb(23,55,94);}
.fc5{color:rgb(0,176,80);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,32,96);}
.fs7{font-size:81.000000px;}
.fsa{font-size:90.000000px;}
.fsd{font-size:90.150000px;}
.fs5{font-size:121.500000px;}
.fs6{font-size:121.650000px;}
.fsb{font-size:130.500000px;}
.fsc{font-size:130.650000px;}
.fs8{font-size:166.500000px;}
.fs9{font-size:166.650000px;}
.fs3{font-size:198.000000px;}
.fs4{font-size:265.500000px;}
.fs2{font-size:265.650000px;}
.fs1{font-size:360.150000px;}
.fs0{font-size:432.150000px;}
.y0{bottom:0.000000px;}
.y19{bottom:107.025000px;}
.y3d{bottom:1058.820000px;}
.y3c{bottom:1099.320000px;}
.y43{bottom:1107.825000px;}
.y3b{bottom:1138.725000px;}
.y42{bottom:1147.200000px;}
.y48{bottom:1150.695000px;}
.y3a{bottom:1178.100000px;}
.y41{bottom:1186.605000px;}
.y47{bottom:1190.100000px;}
.y39{bottom:1217.475000px;}
.y40{bottom:1225.980000px;}
.y46{bottom:1229.475000px;}
.y38{bottom:1256.850000px;}
.y3f{bottom:1265.370000px;}
.y45{bottom:1268.850000px;}
.y37{bottom:1297.350000px;}
.y3e{bottom:1305.870000px;}
.y44{bottom:1309.350000px;}
.y6{bottom:1398.150000px;}
.yf{bottom:1582.395000px;}
.ye{bottom:1618.395000px;}
.yd{bottom:1654.395000px;}
.yc{bottom:1690.395000px;}
.yb{bottom:1726.395000px;}
.ya{bottom:1762.425000px;}
.y9{bottom:1798.425000px;}
.y8{bottom:1834.425000px;}
.y7{bottom:1870.425000px;}
.y56{bottom:1888.800000px;}
.y55{bottom:1928.175000px;}
.y54{bottom:1967.580000px;}
.y53{bottom:2008.080000px;}
.y52{bottom:2047.455000px;}
.y51{bottom:2086.845000px;}
.y50{bottom:2126.205000px;}
.y4f{bottom:2165.625000px;}
.y4e{bottom:2206.125000px;}
.y4d{bottom:2245.500000px;}
.y4c{bottom:2284.875000px;}
.y4b{bottom:2324.295000px;}
.y4a{bottom:2363.670000px;}
.y49{bottom:2404.170000px;}
.y5{bottom:2566.320000px;}
.y28{bottom:2810.100000px;}
.y27{bottom:2849.475000px;}
.y26{bottom:2888.850000px;}
.y25{bottom:2928.270000px;}
.y24{bottom:2967.645000px;}
.y23{bottom:3008.145000px;}
.y22{bottom:3047.505000px;}
.y21{bottom:3126.300000px;}
.y20{bottom:3165.675000px;}
.y1f{bottom:3206.175000px;}
.y1e{bottom:3245.550000px;}
.y1d{bottom:3284.925000px;}
.y1c{bottom:3324.330000px;}
.y1b{bottom:3363.705000px;}
.y1a{bottom:3404.205000px;}
.y29{bottom:3551.355000px;}
.y30{bottom:3687.450000px;}
.y36{bottom:3707.805000px;}
.y2f{bottom:3727.980000px;}
.y35{bottom:3747.180000px;}
.y2e{bottom:3767.355000px;}
.y34{bottom:3786.555000px;}
.y2d{bottom:3806.730000px;}
.y33{bottom:3825.930000px;}
.y2c{bottom:3846.105000px;}
.y32{bottom:3865.350000px;}
.y2b{bottom:3885.480000px;}
.y31{bottom:3905.850000px;}
.y2a{bottom:3926.025000px;}
.y18{bottom:3990.555000px;}
.y17{bottom:4040.055000px;}
.y16{bottom:4090.725000px;}
.y15{bottom:4141.350000px;}
.y14{bottom:4191.975000px;}
.y13{bottom:4242.600000px;}
.y12{bottom:4292.130000px;}
.y11{bottom:4342.755000px;}
.y10{bottom:4393.380000px;}
.y4{bottom:4519.650000px;}
.y3{bottom:4582.680000px;}
.y2{bottom:4668.180000px;}
.y1{bottom:4779.600000px;}
.h7{height:87.980713px;}
.h8{height:88.089331px;}
.he{height:94.497803px;}
.hf{height:94.606421px;}
.h9{height:94.653809px;}
.ha{height:102.396973px;}
.h10{height:109.981934px;}
.h11{height:110.108350px;}
.hb{height:120.566162px;}
.hc{height:120.674780px;}
.h4{height:150.626953px;}
.hd{height:170.483643px;}
.h3{height:192.103345px;}
.h6{height:192.254150px;}
.h5{height:192.362769px;}
.h2{height:260.792212px;}
.h1{height:312.928931px;}
.h0{height:5017.500000px;}
.w2{width:3571.874947px;}
.w0{width:3571.875000px;}
.w1{width:3572.250000px;}
.x0{left:0.000000px;}
.x8{left:288.344947px;}
.xd{left:292.349947px;}
.x10{left:332.849947px;}
.xa{left:333.944947px;}
.x2{left:561.569947px;}
.x1{left:605.594947px;}
.x9{left:700.874947px;}
.x3{left:728.519947px;}
.x6{left:897.254947px;}
.xb{left:947.249947px;}
.x5{left:1005.704947px;}
.x4{left:1245.224947px;}
.xe{left:1542.074947px;}
.x7{left:1602.299947px;}
.xc{left:1739.444947px;}
.xf{left:2515.349947px;}
@media print{
.v3{vertical-align:-32.000000pt;}
.v1{vertical-align:-24.000000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:24.000000pt;}
.v2{vertical-align:32.000000pt;}
.v5{vertical-align:36.160000pt;}
.ls16{letter-spacing:-4.000000pt;}
.lsc{letter-spacing:-2.064000pt;}
.lsa{letter-spacing:-1.973333pt;}
.ls18{letter-spacing:-1.600000pt;}
.ls17{letter-spacing:-1.541333pt;}
.lse{letter-spacing:-1.141333pt;}
.ls14{letter-spacing:-1.002667pt;}
.lsf{letter-spacing:-0.848000pt;}
.ls12{letter-spacing:-0.496000pt;}
.ls19{letter-spacing:-0.248000pt;}
.ls15{letter-spacing:-0.066667pt;}
.lsd{letter-spacing:-0.048000pt;}
.ls9{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.024000pt;}
.ls5{letter-spacing:0.354933pt;}
.ls7{letter-spacing:0.370667pt;}
.ls6{letter-spacing:0.600000pt;}
.ls4{letter-spacing:0.706667pt;}
.ls2{letter-spacing:0.773333pt;}
.ls3{letter-spacing:0.956000pt;}
.lsb{letter-spacing:0.965333pt;}
.ls1{letter-spacing:1.009333pt;}
.ls8{letter-spacing:1.124000pt;}
.ls10{letter-spacing:1.370667pt;}
.ls13{letter-spacing:1.877333pt;}
.ls11{letter-spacing:1.930667pt;}
.ws10{word-spacing:-116.133333pt;}
.wse{word-spacing:-116.000000pt;}
.ws6{word-spacing:-108.000000pt;}
.wsa{word-spacing:-80.000000pt;}
.ws9{word-spacing:-37.000000pt;}
.wsb{word-spacing:-33.448000pt;}
.ws13{word-spacing:-30.964000pt;}
.wsc{word-spacing:-30.370667pt;}
.ws16{word-spacing:-29.033333pt;}
.wsd{word-spacing:-29.000000pt;}
.ws1b{word-spacing:-28.752000pt;}
.ws7{word-spacing:-27.033333pt;}
.ws3{word-spacing:-27.000000pt;}
.ws15{word-spacing:-20.033333pt;}
.wsf{word-spacing:-20.000000pt;}
.ws18{word-spacing:-18.492000pt;}
.ws19{word-spacing:-18.400000pt;}
.ws5{word-spacing:-18.000000pt;}
.ws11{word-spacing:-5.868000pt;}
.ws12{word-spacing:-5.026667pt;}
.ws2{word-spacing:-3.564667pt;}
.ws14{word-spacing:-1.969333pt;}
.ws4{word-spacing:-1.576000pt;}
.ws1{word-spacing:-0.356000pt;}
.ws0{word-spacing:-0.236133pt;}
.ws1a{word-spacing:-0.116000pt;}
.ws1c{word-spacing:0.000000pt;}
.ws8{word-spacing:4.348000pt;}
.ws17{word-spacing:7.762667pt;}
._6{margin-left:-18.890667pt;}
._19{margin-left:-17.840933pt;}
._10{margin-left:-13.067067pt;}
._f{margin-left:-11.926000pt;}
._5{margin-left:-11.013067pt;}
._1a{margin-left:-9.984667pt;}
._15{margin-left:-8.844400pt;}
._20{margin-left:-7.791200pt;}
._3{margin-left:-6.530267pt;}
._a{margin-left:-5.280000pt;}
._9{margin-left:-4.224000pt;}
._8{margin-left:-3.203200pt;}
._2{margin-left:-2.304800pt;}
._0{margin-left:-1.152400pt;}
._4{width:1.152400pt;}
._1{width:2.304800pt;}
._b{width:3.336400pt;}
._7{width:4.344933pt;}
._12{width:5.586400pt;}
._1f{width:6.612533pt;}
._18{width:7.690000pt;}
._11{width:9.356933pt;}
._16{width:14.438400pt;}
._e{width:25.623067pt;}
._1e{width:27.312533pt;}
._22{width:30.049600pt;}
._1c{width:30.945867pt;}
._1b{width:32.521333pt;}
._1d{width:33.623733pt;}
._21{width:34.643467pt;}
._23{width:35.645733pt;}
._14{width:39.194800pt;}
._13{width:40.722267pt;}
._17{width:45.865200pt;}
._c{width:49.363200pt;}
._d{width:51.342667pt;}
.fs7{font-size:72.000000pt;}
.fsa{font-size:80.000000pt;}
.fsd{font-size:80.133333pt;}
.fs5{font-size:108.000000pt;}
.fs6{font-size:108.133333pt;}
.fsb{font-size:116.000000pt;}
.fsc{font-size:116.133333pt;}
.fs8{font-size:148.000000pt;}
.fs9{font-size:148.133333pt;}
.fs3{font-size:176.000000pt;}
.fs4{font-size:236.000000pt;}
.fs2{font-size:236.133333pt;}
.fs1{font-size:320.133333pt;}
.fs0{font-size:384.133333pt;}
.y0{bottom:0.000000pt;}
.y19{bottom:95.133333pt;}
.y3d{bottom:941.173333pt;}
.y3c{bottom:977.173333pt;}
.y43{bottom:984.733333pt;}
.y3b{bottom:1012.200000pt;}
.y42{bottom:1019.733333pt;}
.y48{bottom:1022.840000pt;}
.y3a{bottom:1047.200000pt;}
.y41{bottom:1054.760000pt;}
.y47{bottom:1057.866667pt;}
.y39{bottom:1082.200000pt;}
.y40{bottom:1089.760000pt;}
.y46{bottom:1092.866667pt;}
.y38{bottom:1117.200000pt;}
.y3f{bottom:1124.773333pt;}
.y45{bottom:1127.866667pt;}
.y37{bottom:1153.200000pt;}
.y3e{bottom:1160.773333pt;}
.y44{bottom:1163.866667pt;}
.y6{bottom:1242.800000pt;}
.yf{bottom:1406.573333pt;}
.ye{bottom:1438.573333pt;}
.yd{bottom:1470.573333pt;}
.yc{bottom:1502.573333pt;}
.yb{bottom:1534.573333pt;}
.ya{bottom:1566.600000pt;}
.y9{bottom:1598.600000pt;}
.y8{bottom:1630.600000pt;}
.y7{bottom:1662.600000pt;}
.y56{bottom:1678.933333pt;}
.y55{bottom:1713.933333pt;}
.y54{bottom:1748.960000pt;}
.y53{bottom:1784.960000pt;}
.y52{bottom:1819.960000pt;}
.y51{bottom:1854.973333pt;}
.y50{bottom:1889.960000pt;}
.y4f{bottom:1925.000000pt;}
.y4e{bottom:1961.000000pt;}
.y4d{bottom:1996.000000pt;}
.y4c{bottom:2031.000000pt;}
.y4b{bottom:2066.040000pt;}
.y4a{bottom:2101.040000pt;}
.y49{bottom:2137.040000pt;}
.y5{bottom:2281.173333pt;}
.y28{bottom:2497.866667pt;}
.y27{bottom:2532.866667pt;}
.y26{bottom:2567.866667pt;}
.y25{bottom:2602.906667pt;}
.y24{bottom:2637.906667pt;}
.y23{bottom:2673.906667pt;}
.y22{bottom:2708.893333pt;}
.y21{bottom:2778.933333pt;}
.y20{bottom:2813.933333pt;}
.y1f{bottom:2849.933333pt;}
.y1e{bottom:2884.933333pt;}
.y1d{bottom:2919.933333pt;}
.y1c{bottom:2954.960000pt;}
.y1b{bottom:2989.960000pt;}
.y1a{bottom:3025.960000pt;}
.y29{bottom:3156.760000pt;}
.y30{bottom:3277.733333pt;}
.y36{bottom:3295.826667pt;}
.y2f{bottom:3313.760000pt;}
.y35{bottom:3330.826667pt;}
.y2e{bottom:3348.760000pt;}
.y34{bottom:3365.826667pt;}
.y2d{bottom:3383.760000pt;}
.y33{bottom:3400.826667pt;}
.y2c{bottom:3418.760000pt;}
.y32{bottom:3435.866667pt;}
.y2b{bottom:3453.760000pt;}
.y31{bottom:3471.866667pt;}
.y2a{bottom:3489.800000pt;}
.y18{bottom:3547.160000pt;}
.y17{bottom:3591.160000pt;}
.y16{bottom:3636.200000pt;}
.y15{bottom:3681.200000pt;}
.y14{bottom:3726.200000pt;}
.y13{bottom:3771.200000pt;}
.y12{bottom:3815.226667pt;}
.y11{bottom:3860.226667pt;}
.y10{bottom:3905.226667pt;}
.y4{bottom:4017.466667pt;}
.y3{bottom:4073.493333pt;}
.y2{bottom:4149.493333pt;}
.y1{bottom:4248.533333pt;}
.h7{height:78.205078pt;}
.h8{height:78.301628pt;}
.he{height:83.998047pt;}
.hf{height:84.094596pt;}
.h9{height:84.136719pt;}
.ha{height:91.019531pt;}
.h10{height:97.761719pt;}
.h11{height:97.874089pt;}
.hb{height:107.169922pt;}
.hc{height:107.266471pt;}
.h4{height:133.890625pt;}
.hd{height:151.541016pt;}
.h3{height:170.758529pt;}
.h6{height:170.892578pt;}
.h5{height:170.989128pt;}
.h2{height:231.815299pt;}
.h1{height:278.159049pt;}
.h0{height:4460.000000pt;}
.w2{width:3174.999953pt;}
.w0{width:3175.000000pt;}
.w1{width:3175.333333pt;}
.x0{left:0.000000pt;}
.x8{left:256.306619pt;}
.xd{left:259.866619pt;}
.x10{left:295.866619pt;}
.xa{left:296.839953pt;}
.x2{left:499.173286pt;}
.x1{left:538.306619pt;}
.x9{left:622.999953pt;}
.x3{left:647.573286pt;}
.x6{left:797.559953pt;}
.xb{left:841.999953pt;}
.x5{left:893.959953pt;}
.x4{left:1106.866619pt;}
.xe{left:1370.733286pt;}
.x7{left:1424.266619pt;}
.xc{left:1546.173286pt;}
.xf{left:2235.866619pt;}
}




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