
    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_c6b98d97dbc6d3dd6958b81b.woff')format("woff");}.ff1{font-family:ff1;line-height:0.986816;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_6ed9fc976f5d770a5695c65c.woff')format("woff");}.ff2{font-family:ff2;line-height:0.856445;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_8b3a9e223030552193577a3c.woff')format("woff");}.ff3{font-family:ff3;line-height:0.986816;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_3c723947845b841de356cb2d.woff')format("woff");}.ff4{font-family:ff4;line-height:0.986816;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_c39af704c144fa7f049f7d33.woff')format("woff");}.ff5{font-family:ff5;line-height:0.724121;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_7f2476b1b1d54be591babfb5.woff')format("woff");}.ff6{font-family:ff6;line-height:1.092773;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_cd56cd219f7c20b2bcac8a5c.woff')format("woff");}.ff7{font-family:ff7;line-height:0.982910;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_79146adb150221e62d9118d7.woff')format("woff");}.ff8{font-family:ff8;line-height:0.982910;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_c4a8b6e4d5c83c8844e9fd87.woff')format("woff");}.ff9{font-family:ff9;line-height:0.722656;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_9ba903e480385ea20682f251.woff')format("woff");}.ffa{font-family:ffa;line-height:0.986816;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_be3944d85f0988806d42dd11.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_5588b76e9841b2a07d73148d.woff')format("woff");}.ffc{font-family:ffc;line-height:0.764160;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);}
.v1{vertical-align:-22.014600px;}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:17.172000px;}
.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;}
}
.ws6{word-spacing:-18.216000px;}
.ws1{word-spacing:-14.904000px;}
.ws2{word-spacing:-14.796000px;}
.ws4{word-spacing:-3.630000px;}
.wsa{word-spacing:-1.782000px;}
.ws3{word-spacing:0.000000px;}
.ws8{word-spacing:0.858000px;}
.ws5{word-spacing:6.858000px;}
.ws7{word-spacing:16.896000px;}
.wsb{word-spacing:21.360000px;}
.ws9{word-spacing:28.080000px;}
.ws0{word-spacing:278.967600px;}
._14{margin-left:-65.664000px;}
._29{margin-left:-13.707241px;}
._21{margin-left:-10.362000px;}
._13{margin-left:-9.174600px;}
._12{margin-left:-7.873200px;}
._a{margin-left:-6.210600px;}
._17{margin-left:-4.768800px;}
._0{margin-left:-3.486000px;}
._5{margin-left:-1.501200px;}
._1{width:1.587241px;}
._9{width:2.838000px;}
._e{width:4.611600px;}
._c{width:5.883000px;}
._b{width:6.883800px;}
._16{width:8.388600px;}
._8{width:9.682200px;}
._f{width:10.863600px;}
._10{width:12.159000px;}
._11{width:13.211400px;}
._d{width:14.902800px;}
._1c{width:16.473600px;}
._2a{width:17.820000px;}
._7{width:19.440000px;}
._15{width:20.494800px;}
._6{width:21.696000px;}
._1f{width:22.962600px;}
._4{width:24.576000px;}
._24{width:26.229600px;}
._22{width:27.666000px;}
._19{width:29.271000px;}
._1d{width:30.841800px;}
._1e{width:31.963800px;}
._20{width:32.973600px;}
._23{width:33.990000px;}
._18{width:35.270400px;}
._28{width:36.594000px;}
._27{width:40.680000px;}
._1b{width:43.788000px;}
._1a{width:44.919000px;}
._26{width:47.308800px;}
._25{width:48.807000px;}
._2{width:153.107843px;}
._3{width:183.490826px;}
.fc4{color:transparent;}
.fc3{color:rgb(48,88,159);}
.fc2{color:rgb(54,108,190);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fs6{font-size:48.000000px;}
.fs3{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.fs2{font-size:62.872800px;}
.fs8{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs7{font-size:84.000000px;}
.fs4{font-size:108.000000px;}
.fs0{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y35{bottom:56.878800px;}
.y34{bottom:73.078800px;}
.y3{bottom:81.772500px;}
.yfe{bottom:118.983150px;}
.yd4{bottom:130.173750px;}
.y7d{bottom:134.268900px;}
.yb6{bottom:134.615400px;}
.ya6{bottom:135.126900px;}
.yfd{bottom:144.108150px;}
.y69{bottom:146.033400px;}
.yd3{bottom:151.178250px;}
.y7c{bottom:153.012900px;}
.ya5{bottom:153.870900px;}
.yb5{bottom:155.619900px;}
.yfc{bottom:162.858150px;}
.y68{bottom:164.777400px;}
.y7b{bottom:171.756900px;}
.yb4{bottom:176.624400px;}
.yd2{bottom:180.680250px;}
.yfb{bottom:181.608150px;}
.y67{bottom:183.521400px;}
.ya4{bottom:189.626400px;}
.y7a{bottom:190.500900px;}
.yb3{bottom:197.628900px;}
.y66{bottom:202.265400px;}
.yfa{bottom:206.733150px;}
.ya3{bottom:208.370400px;}
.y79{bottom:209.244900px;}
.yd1{bottom:210.182250px;}
.yb2{bottom:218.633400px;}
.y65{bottom:221.009400px;}
.yf9{bottom:225.483150px;}
.ya2{bottom:227.114400px;}
.y78{bottom:227.988900px;}
.yb1{bottom:239.637900px;}
.yd0{bottom:239.684250px;}
.y64{bottom:239.753400px;}
.yf8{bottom:244.233150px;}
.ya1{bottom:245.858400px;}
.y77{bottom:246.732900px;}
.y63{bottom:258.497400px;}
.yb0{bottom:260.642400px;}
.yf7{bottom:262.983150px;}
.ya0{bottom:264.602400px;}
.y76{bottom:265.476900px;}
.ycf{bottom:269.186250px;}
.y62{bottom:277.241400px;}
.yaf{bottom:281.646900px;}
.yf6{bottom:281.733150px;}
.y9f{bottom:283.346400px;}
.y61{bottom:295.985400px;}
.yce{bottom:298.688250px;}
.yf5{bottom:300.483150px;}
.y75{bottom:301.232400px;}
.y9e{bottom:302.090400px;}
.yae{bottom:302.651400px;}
.y60{bottom:314.729400px;}
.y74{bottom:319.976400px;}
.y9d{bottom:320.834400px;}
.yad{bottom:323.655900px;}
.yf4{bottom:325.608150px;}
.y5f{bottom:333.473400px;}
.y73{bottom:338.720400px;}
.yf3{bottom:344.358150px;}
.yac{bottom:344.660400px;}
.y5e{bottom:352.217400px;}
.y9c{bottom:356.589900px;}
.y72{bottom:357.464400px;}
.ycd{bottom:357.692250px;}
.yf2{bottom:363.108150px;}
.yab{bottom:369.905400px;}
.y5d{bottom:370.961400px;}
.y9b{bottom:375.333900px;}
.y71{bottom:376.208400px;}
.ycc{bottom:378.696750px;}
.yf1{bottom:381.858150px;}
.y5c{bottom:389.705400px;}
.y33{bottom:390.382800px;}
.y9a{bottom:394.077900px;}
.y70{bottom:394.952400px;}
.ycb{bottom:399.701250px;}
.y5b{bottom:408.449400px;}
.yf0{bottom:409.023750px;}
.y32{bottom:410.835300px;}
.y99{bottom:412.821900px;}
.y6f{bottom:413.696400px;}
.yba{bottom:413.953050px;}
.yca{bottom:420.705750px;}
.y5a{bottom:427.193400px;}
.y31{bottom:431.287800px;}
.y98{bottom:431.565900px;}
.y6e{bottom:432.440400px;}
.yb9{bottom:434.953050px;}
.yc9{bottom:441.710250px;}
.y59{bottom:445.937400px;}
.y97{bottom:450.309900px;}
.y6d{bottom:451.184400px;}
.y30{bottom:451.740300px;}
.yc8{bottom:462.714750px;}
.yef{bottom:465.635250px;}
.y96{bottom:469.053900px;}
.y6c{bottom:469.928400px;}
.y2f{bottom:472.192800px;}
.y58{bottom:481.692900px;}
.yc7{bottom:483.719250px;}
.yee{bottom:486.639750px;}
.y95{bottom:487.797900px;}
.y6b{bottom:488.672400px;}
.y2e{bottom:492.645300px;}
.y57{bottom:500.436900px;}
.yc6{bottom:504.723750px;}
.y94{bottom:506.541900px;}
.y6a{bottom:507.416400px;}
.y2d{bottom:513.097800px;}
.yed{bottom:516.141750px;}
.y56{bottom:519.180900px;}
.y93{bottom:525.285900px;}
.yc5{bottom:525.728250px;}
.y81{bottom:534.435450px;}
.y1c{bottom:535.233150px;}
.y55{bottom:537.924900px;}
.y92{bottom:544.029900px;}
.yec{bottom:545.643750px;}
.yc4{bottom:546.732750px;}
.y1b{bottom:551.433150px;}
.y2c{bottom:554.002800px;}
.y54{bottom:556.668900px;}
.y80{bottom:556.935450px;}
.y91{bottom:562.773900px;}
.yc3{bottom:567.737250px;}
.y2b{bottom:574.455300px;}
.yeb{bottom:575.145750px;}
.y53{bottom:575.412900px;}
.y7f{bottom:579.435450px;}
.y90{bottom:581.517900px;}
.y52{bottom:594.156900px;}
.y2a{bottom:594.907800px;}
.y8f{bottom:600.261900px;}
.y1a{bottom:604.194150px;}
.yea{bottom:604.647750px;}
.yc2{bottom:605.753250px;}
.y51{bottom:612.900900px;}
.y29{bottom:615.360300px;}
.y8e{bottom:619.005900px;}
.y19{bottom:623.994150px;}
.ye9{bottom:625.652250px;}
.yc1{bottom:626.757750px;}
.y50{bottom:631.644900px;}
.y28{bottom:635.812800px;}
.y8d{bottom:637.749900px;}
.y18{bottom:643.794150px;}
.yc0{bottom:647.762250px;}
.y118{bottom:648.040200px;}
.y4f{bottom:650.388900px;}
.ye8{bottom:655.154250px;}
.y8c{bottom:656.493900px;}
.y17{bottom:663.594150px;}
.y117{bottom:667.840200px;}
.ybf{bottom:668.766750px;}
.y4e{bottom:669.132900px;}
.y8b{bottom:675.237900px;}
.y27{bottom:676.717800px;}
.y16{bottom:683.394150px;}
.ye7{bottom:684.656250px;}
.y116{bottom:687.640200px;}
.ybe{bottom:689.771250px;}
.y4d{bottom:692.133900px;}
.y26{bottom:692.917800px;}
.y15{bottom:703.194150px;}
.y8a{bottom:710.993400px;}
.y25{bottom:713.370300px;}
.ye6{bottom:714.158250px;}
.y14{bottom:722.994150px;}
.yff{bottom:725.270250px;}
.y89{bottom:729.737400px;}
.y115{bottom:733.632900px;}
.y24{bottom:733.822800px;}
.y13{bottom:742.794150px;}
.y88{bottom:748.481400px;}
.y4c{bottom:750.890400px;}
.y114{bottom:753.432900px;}
.y12{bottom:762.594150px;}
.y87{bottom:767.225400px;}
.y4b{bottom:769.634400px;}
.y113{bottom:772.182900px;}
.ye5{bottom:773.162250px;}
.y23{bottom:774.727800px;}
.y86{bottom:785.969400px;}
.y4a{bottom:788.378400px;}
.ye4{bottom:794.166750px;}
.yb8{bottom:794.892300px;}
.y22{bottom:795.180300px;}
.y112{bottom:797.307900px;}
.y49{bottom:807.122400px;}
.ye3{bottom:815.171250px;}
.y111{bottom:816.057900px;}
.y11{bottom:817.972800px;}
.y48{bottom:825.866400px;}
.yb7{bottom:832.493100px;}
.y110{bottom:834.807900px;}
.y21{bottom:836.085300px;}
.y47{bottom:844.610400px;}
.ye2{bottom:844.673250px;}
.y20{bottom:852.285300px;}
.y10f{bottom:853.557900px;}
.y10{bottom:854.688450px;}
.y1f{bottom:868.485300px;}
.yf{bottom:869.088450px;}
.y10e{bottom:872.307900px;}
.ye1{bottom:874.175250px;}
.y46{bottom:880.365900px;}
.ye{bottom:883.488450px;}
.y1e{bottom:884.685300px;}
.y7e{bottom:894.016650px;}
.ye0{bottom:895.179750px;}
.y10d{bottom:897.432900px;}
.yd{bottom:897.888450px;}
.y45{bottom:899.109900px;}
.y1d{bottom:905.137800px;}
.yc{bottom:912.288450px;}
.y10c{bottom:916.182900px;}
.ydf{bottom:916.184250px;}
.y44{bottom:917.853900px;}
.yb{bottom:934.370400px;}
.y10b{bottom:934.932900px;}
.y43{bottom:936.597900px;}
.yde{bottom:945.686250px;}
.ya{bottom:952.370400px;}
.y10a{bottom:953.682900px;}
.y42{bottom:955.341900px;}
.y41{bottom:974.085900px;}
.ydd{bottom:975.188250px;}
.y109{bottom:978.807900px;}
.y8{bottom:983.242800px;}
.y40{bottom:992.829900px;}
.ydc{bottom:996.192750px;}
.y108{bottom:997.557900px;}
.y3f{bottom:1011.573900px;}
.y7{bottom:1015.642800px;}
.y107{bottom:1016.307900px;}
.ydb{bottom:1017.197250px;}
.y3e{bottom:1030.317900px;}
.y106{bottom:1035.057900px;}
.yda{bottom:1038.201750px;}
.y3d{bottom:1049.061900px;}
.y6{bottom:1053.546450px;}
.y105{bottom:1060.182900px;}
.yd9{bottom:1067.703750px;}
.y3c{bottom:1067.805900px;}
.y5{bottom:1069.746450px;}
.y104{bottom:1078.932900px;}
.y3b{bottom:1086.549900px;}
.yd8{bottom:1097.205750px;}
.y103{bottom:1097.682900px;}
.yaa{bottom:1100.921400px;}
.y85{bottom:1102.983900px;}
.y3a{bottom:1105.293900px;}
.y102{bottom:1116.432900px;}
.yd7{bottom:1118.210250px;}
.y84{bottom:1121.727900px;}
.ya9{bottom:1121.925900px;}
.y9{bottom:1123.179750px;}
.y39{bottom:1124.037900px;}
.ybd{bottom:1126.773750px;}
.yd6{bottom:1139.214750px;}
.y83{bottom:1140.471900px;}
.ya8{bottom:1140.669900px;}
.y101{bottom:1141.557900px;}
.y38{bottom:1142.781900px;}
.ybc{bottom:1147.778250px;}
.y82{bottom:1159.215900px;}
.ya7{bottom:1159.413900px;}
.y100{bottom:1160.307900px;}
.y37{bottom:1165.782900px;}
.yd5{bottom:1168.716750px;}
.ybb{bottom:1168.782750px;}
.y4{bottom:1172.255700px;}
.y2{bottom:1191.347400px;}
.y36{bottom:1197.407400px;}
.y1{bottom:1207.755900px;}
.hb{height:36.093750px;}
.h6{height:39.972656px;}
.hf{height:40.394531px;}
.he{height:40.605469px;}
.h3{height:44.414062px;}
.h12{height:44.882812px;}
.h4{height:45.117188px;}
.h5{height:47.277398px;}
.hd{height:49.371094px;}
.h11{height:49.628906px;}
.h9{height:51.257812px;}
.ha{height:51.445312px;}
.h10{height:54.140625px;}
.h7{height:59.196337px;}
.hc{height:72.023438px;}
.h8{height:81.210938px;}
.h2{height:90.234375px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x13{left:6.125250px;}
.x10{left:15.575250px;}
.xf{left:18.315750px;}
.xe{left:21.339750px;}
.x16{left:23.175750px;}
.xd{left:29.844750px;}
.x14{left:35.892750px;}
.x6{left:37.232700px;}
.x12{left:45.896250px;}
.x15{left:48.609750px;}
.xc{left:57.182250px;}
.x5{left:63.044700px;}
.x1b{left:64.523550px;}
.x17{left:66.672750px;}
.x19{left:72.283350px;}
.x11{left:88.677750px;}
.x1d{left:90.779550px;}
.x2{left:208.546950px;}
.x7{left:211.181100px;}
.x9{left:212.774700px;}
.xb{left:232.786800px;}
.xa{left:242.046600px;}
.x4{left:308.436300px;}
.x1{left:408.040350px;}
.x1a{left:461.545050px;}
.x1c{left:489.082650px;}
.x8{left:707.440500px;}
.x3{left:798.829500px;}
.x18{left:800.565300px;}
@media print{
.v1{vertical-align:-19.568533pt;}
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:15.264000pt;}
.ws6{word-spacing:-16.192000pt;}
.ws1{word-spacing:-13.248000pt;}
.ws2{word-spacing:-13.152000pt;}
.ws4{word-spacing:-3.226667pt;}
.wsa{word-spacing:-1.584000pt;}
.ws3{word-spacing:0.000000pt;}
.ws8{word-spacing:0.762667pt;}
.ws5{word-spacing:6.096000pt;}
.ws7{word-spacing:15.018667pt;}
.wsb{word-spacing:18.986667pt;}
.ws9{word-spacing:24.960000pt;}
.ws0{word-spacing:247.971200pt;}
._14{margin-left:-58.368000pt;}
._29{margin-left:-12.184215pt;}
._21{margin-left:-9.210667pt;}
._13{margin-left:-8.155200pt;}
._12{margin-left:-6.998400pt;}
._a{margin-left:-5.520533pt;}
._17{margin-left:-4.238933pt;}
._0{margin-left:-3.098667pt;}
._5{margin-left:-1.334400pt;}
._1{width:1.410881pt;}
._9{width:2.522667pt;}
._e{width:4.099200pt;}
._c{width:5.229333pt;}
._b{width:6.118933pt;}
._16{width:7.456533pt;}
._8{width:8.606400pt;}
._f{width:9.656533pt;}
._10{width:10.808000pt;}
._11{width:11.743467pt;}
._d{width:13.246933pt;}
._1c{width:14.643200pt;}
._2a{width:15.840000pt;}
._7{width:17.280000pt;}
._15{width:18.217600pt;}
._6{width:19.285333pt;}
._1f{width:20.411200pt;}
._4{width:21.845333pt;}
._24{width:23.315200pt;}
._22{width:24.592000pt;}
._19{width:26.018667pt;}
._1d{width:27.414933pt;}
._1e{width:28.412267pt;}
._20{width:29.309867pt;}
._23{width:30.213333pt;}
._18{width:31.351467pt;}
._28{width:32.528000pt;}
._27{width:36.160000pt;}
._1b{width:38.922667pt;}
._1a{width:39.928000pt;}
._26{width:42.052267pt;}
._25{width:43.384000pt;}
._2{width:136.095860pt;}
._3{width:163.102957pt;}
.fs6{font-size:42.666667pt;}
.fs3{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.fs2{font-size:55.886933pt;}
.fs8{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs7{font-size:74.666667pt;}
.fs4{font-size:96.000000pt;}
.fs0{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y35{bottom:50.558933pt;}
.y34{bottom:64.958933pt;}
.y3{bottom:72.686667pt;}
.yfe{bottom:105.762800pt;}
.yd4{bottom:115.710000pt;}
.y7d{bottom:119.350133pt;}
.yb6{bottom:119.658133pt;}
.ya6{bottom:120.112800pt;}
.yfd{bottom:128.096133pt;}
.y69{bottom:129.807467pt;}
.yd3{bottom:134.380667pt;}
.y7c{bottom:136.011467pt;}
.ya5{bottom:136.774133pt;}
.yb5{bottom:138.328800pt;}
.yfc{bottom:144.762800pt;}
.y68{bottom:146.468800pt;}
.y7b{bottom:152.672800pt;}
.yb4{bottom:156.999467pt;}
.yd2{bottom:160.604667pt;}
.yfb{bottom:161.429467pt;}
.y67{bottom:163.130133pt;}
.ya4{bottom:168.556800pt;}
.y7a{bottom:169.334133pt;}
.yb3{bottom:175.670133pt;}
.y66{bottom:179.791467pt;}
.yfa{bottom:183.762800pt;}
.ya3{bottom:185.218133pt;}
.y79{bottom:185.995467pt;}
.yd1{bottom:186.828667pt;}
.yb2{bottom:194.340800pt;}
.y65{bottom:196.452800pt;}
.yf9{bottom:200.429467pt;}
.ya2{bottom:201.879467pt;}
.y78{bottom:202.656800pt;}
.yb1{bottom:213.011467pt;}
.yd0{bottom:213.052667pt;}
.y64{bottom:213.114133pt;}
.yf8{bottom:217.096133pt;}
.ya1{bottom:218.540800pt;}
.y77{bottom:219.318133pt;}
.y63{bottom:229.775467pt;}
.yb0{bottom:231.682133pt;}
.yf7{bottom:233.762800pt;}
.ya0{bottom:235.202133pt;}
.y76{bottom:235.979467pt;}
.ycf{bottom:239.276667pt;}
.y62{bottom:246.436800pt;}
.yaf{bottom:250.352800pt;}
.yf6{bottom:250.429467pt;}
.y9f{bottom:251.863467pt;}
.y61{bottom:263.098133pt;}
.yce{bottom:265.500667pt;}
.yf5{bottom:267.096133pt;}
.y75{bottom:267.762133pt;}
.y9e{bottom:268.524800pt;}
.yae{bottom:269.023467pt;}
.y60{bottom:279.759467pt;}
.y74{bottom:284.423467pt;}
.y9d{bottom:285.186133pt;}
.yad{bottom:287.694133pt;}
.yf4{bottom:289.429467pt;}
.y5f{bottom:296.420800pt;}
.y73{bottom:301.084800pt;}
.yf3{bottom:306.096133pt;}
.yac{bottom:306.364800pt;}
.y5e{bottom:313.082133pt;}
.y9c{bottom:316.968800pt;}
.y72{bottom:317.746133pt;}
.ycd{bottom:317.948667pt;}
.yf2{bottom:322.762800pt;}
.yab{bottom:328.804800pt;}
.y5d{bottom:329.743467pt;}
.y9b{bottom:333.630133pt;}
.y71{bottom:334.407467pt;}
.ycc{bottom:336.619333pt;}
.yf1{bottom:339.429467pt;}
.y5c{bottom:346.404800pt;}
.y33{bottom:347.006933pt;}
.y9a{bottom:350.291467pt;}
.y70{bottom:351.068800pt;}
.ycb{bottom:355.290000pt;}
.y5b{bottom:363.066133pt;}
.yf0{bottom:363.576667pt;}
.y32{bottom:365.186933pt;}
.y99{bottom:366.952800pt;}
.y6f{bottom:367.730133pt;}
.yba{bottom:367.958267pt;}
.yca{bottom:373.960667pt;}
.y5a{bottom:379.727467pt;}
.y31{bottom:383.366933pt;}
.y98{bottom:383.614133pt;}
.y6e{bottom:384.391467pt;}
.yb9{bottom:386.624933pt;}
.yc9{bottom:392.631333pt;}
.y59{bottom:396.388800pt;}
.y97{bottom:400.275467pt;}
.y6d{bottom:401.052800pt;}
.y30{bottom:401.546933pt;}
.yc8{bottom:411.302000pt;}
.yef{bottom:413.898000pt;}
.y96{bottom:416.936800pt;}
.y6c{bottom:417.714133pt;}
.y2f{bottom:419.726933pt;}
.y58{bottom:428.171467pt;}
.yc7{bottom:429.972667pt;}
.yee{bottom:432.568667pt;}
.y95{bottom:433.598133pt;}
.y6b{bottom:434.375467pt;}
.y2e{bottom:437.906933pt;}
.y57{bottom:444.832800pt;}
.yc6{bottom:448.643333pt;}
.y94{bottom:450.259467pt;}
.y6a{bottom:451.036800pt;}
.y2d{bottom:456.086933pt;}
.yed{bottom:458.792667pt;}
.y56{bottom:461.494133pt;}
.y93{bottom:466.920800pt;}
.yc5{bottom:467.314000pt;}
.y81{bottom:475.053733pt;}
.y1c{bottom:475.762800pt;}
.y55{bottom:478.155467pt;}
.y92{bottom:483.582133pt;}
.yec{bottom:485.016667pt;}
.yc4{bottom:485.984667pt;}
.y1b{bottom:490.162800pt;}
.y2c{bottom:492.446933pt;}
.y54{bottom:494.816800pt;}
.y80{bottom:495.053733pt;}
.y91{bottom:500.243467pt;}
.yc3{bottom:504.655333pt;}
.y2b{bottom:510.626933pt;}
.yeb{bottom:511.240667pt;}
.y53{bottom:511.478133pt;}
.y7f{bottom:515.053733pt;}
.y90{bottom:516.904800pt;}
.y52{bottom:528.139467pt;}
.y2a{bottom:528.806933pt;}
.y8f{bottom:533.566133pt;}
.y1a{bottom:537.061467pt;}
.yea{bottom:537.464667pt;}
.yc2{bottom:538.447333pt;}
.y51{bottom:544.800800pt;}
.y29{bottom:546.986933pt;}
.y8e{bottom:550.227467pt;}
.y19{bottom:554.661467pt;}
.ye9{bottom:556.135333pt;}
.yc1{bottom:557.118000pt;}
.y50{bottom:561.462133pt;}
.y28{bottom:565.166933pt;}
.y8d{bottom:566.888800pt;}
.y18{bottom:572.261467pt;}
.yc0{bottom:575.788667pt;}
.y118{bottom:576.035733pt;}
.y4f{bottom:578.123467pt;}
.ye8{bottom:582.359333pt;}
.y8c{bottom:583.550133pt;}
.y17{bottom:589.861467pt;}
.y117{bottom:593.635733pt;}
.ybf{bottom:594.459333pt;}
.y4e{bottom:594.784800pt;}
.y8b{bottom:600.211467pt;}
.y27{bottom:601.526933pt;}
.y16{bottom:607.461467pt;}
.ye7{bottom:608.583333pt;}
.y116{bottom:611.235733pt;}
.ybe{bottom:613.130000pt;}
.y4d{bottom:615.230133pt;}
.y26{bottom:615.926933pt;}
.y15{bottom:625.061467pt;}
.y8a{bottom:631.994133pt;}
.y25{bottom:634.106933pt;}
.ye6{bottom:634.807333pt;}
.y14{bottom:642.661467pt;}
.yff{bottom:644.684667pt;}
.y89{bottom:648.655467pt;}
.y115{bottom:652.118133pt;}
.y24{bottom:652.286933pt;}
.y13{bottom:660.261467pt;}
.y88{bottom:665.316800pt;}
.y4c{bottom:667.458133pt;}
.y114{bottom:669.718133pt;}
.y12{bottom:677.861467pt;}
.y87{bottom:681.978133pt;}
.y4b{bottom:684.119467pt;}
.y113{bottom:686.384800pt;}
.ye5{bottom:687.255333pt;}
.y23{bottom:688.646933pt;}
.y86{bottom:698.639467pt;}
.y4a{bottom:700.780800pt;}
.ye4{bottom:705.926000pt;}
.yb8{bottom:706.570933pt;}
.y22{bottom:706.826933pt;}
.y112{bottom:708.718133pt;}
.y49{bottom:717.442133pt;}
.ye3{bottom:724.596667pt;}
.y111{bottom:725.384800pt;}
.y11{bottom:727.086933pt;}
.y48{bottom:734.103467pt;}
.yb7{bottom:739.993867pt;}
.y110{bottom:742.051467pt;}
.y21{bottom:743.186933pt;}
.y47{bottom:750.764800pt;}
.ye2{bottom:750.820667pt;}
.y20{bottom:757.586933pt;}
.y10f{bottom:758.718133pt;}
.y10{bottom:759.723067pt;}
.y1f{bottom:771.986933pt;}
.yf{bottom:772.523067pt;}
.y10e{bottom:775.384800pt;}
.ye1{bottom:777.044667pt;}
.y46{bottom:782.547467pt;}
.ye{bottom:785.323067pt;}
.y1e{bottom:786.386933pt;}
.y7e{bottom:794.681467pt;}
.ye0{bottom:795.715333pt;}
.y10d{bottom:797.718133pt;}
.yd{bottom:798.123067pt;}
.y45{bottom:799.208800pt;}
.y1d{bottom:804.566933pt;}
.yc{bottom:810.923067pt;}
.y10c{bottom:814.384800pt;}
.ydf{bottom:814.386000pt;}
.y44{bottom:815.870133pt;}
.yb{bottom:830.551467pt;}
.y10b{bottom:831.051467pt;}
.y43{bottom:832.531467pt;}
.yde{bottom:840.610000pt;}
.ya{bottom:846.551467pt;}
.y10a{bottom:847.718133pt;}
.y42{bottom:849.192800pt;}
.y41{bottom:865.854133pt;}
.ydd{bottom:866.834000pt;}
.y109{bottom:870.051467pt;}
.y8{bottom:873.993600pt;}
.y40{bottom:882.515467pt;}
.ydc{bottom:885.504667pt;}
.y108{bottom:886.718133pt;}
.y3f{bottom:899.176800pt;}
.y7{bottom:902.793600pt;}
.y107{bottom:903.384800pt;}
.ydb{bottom:904.175333pt;}
.y3e{bottom:915.838133pt;}
.y106{bottom:920.051467pt;}
.yda{bottom:922.846000pt;}
.y3d{bottom:932.499467pt;}
.y6{bottom:936.485733pt;}
.y105{bottom:942.384800pt;}
.yd9{bottom:949.070000pt;}
.y3c{bottom:949.160800pt;}
.y5{bottom:950.885733pt;}
.y104{bottom:959.051467pt;}
.y3b{bottom:965.822133pt;}
.yd8{bottom:975.294000pt;}
.y103{bottom:975.718133pt;}
.yaa{bottom:978.596800pt;}
.y85{bottom:980.430133pt;}
.y3a{bottom:982.483467pt;}
.y102{bottom:992.384800pt;}
.yd7{bottom:993.964667pt;}
.y84{bottom:997.091467pt;}
.ya9{bottom:997.267467pt;}
.y9{bottom:998.382000pt;}
.y39{bottom:999.144800pt;}
.ybd{bottom:1001.576667pt;}
.yd6{bottom:1012.635333pt;}
.y83{bottom:1013.752800pt;}
.ya8{bottom:1013.928800pt;}
.y101{bottom:1014.718133pt;}
.y38{bottom:1015.806133pt;}
.ybc{bottom:1020.247333pt;}
.y82{bottom:1030.414133pt;}
.ya7{bottom:1030.590133pt;}
.y100{bottom:1031.384800pt;}
.y37{bottom:1036.251467pt;}
.yd5{bottom:1038.859333pt;}
.ybb{bottom:1038.918000pt;}
.y4{bottom:1042.005067pt;}
.y2{bottom:1058.975467pt;}
.y36{bottom:1064.362133pt;}
.y1{bottom:1073.560800pt;}
.hb{height:32.083333pt;}
.h6{height:35.531250pt;}
.hf{height:35.906250pt;}
.he{height:36.093750pt;}
.h3{height:39.479167pt;}
.h12{height:39.895833pt;}
.h4{height:40.104167pt;}
.h5{height:42.024354pt;}
.hd{height:43.885417pt;}
.h11{height:44.114583pt;}
.h9{height:45.562500pt;}
.ha{height:45.729167pt;}
.h10{height:48.125000pt;}
.h7{height:52.618967pt;}
.hc{height:64.020833pt;}
.h8{height:72.187500pt;}
.h2{height:80.208333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x13{left:5.444667pt;}
.x10{left:13.844667pt;}
.xf{left:16.280667pt;}
.xe{left:18.968667pt;}
.x16{left:20.600667pt;}
.xd{left:26.528667pt;}
.x14{left:31.904667pt;}
.x6{left:33.095733pt;}
.x12{left:40.796667pt;}
.x15{left:43.208667pt;}
.xc{left:50.828667pt;}
.x5{left:56.039733pt;}
.x1b{left:57.354267pt;}
.x17{left:59.264667pt;}
.x19{left:64.251867pt;}
.x11{left:78.824667pt;}
.x1d{left:80.692933pt;}
.x2{left:185.375067pt;}
.x7{left:187.716533pt;}
.x9{left:189.133067pt;}
.xb{left:206.921600pt;}
.xa{left:215.152533pt;}
.x4{left:274.165600pt;}
.x1{left:362.702533pt;}
.x1a{left:410.262267pt;}
.x1c{left:434.740133pt;}
.x8{left:628.836000pt;}
.x3{left:710.070667pt;}
.x18{left:711.613600pt;}
}




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