
    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_a3ff0c4bef7b5987e08061eb.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.031738;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_fc0bd3e53a8719c5c33fc5e7.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.973633;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_698ae8b0a9073847e36c0915.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.989000;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_7017bd69353fc97bbae6333a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.724000;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_f114367120e1265ec31a74e1.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.942000;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_436e21e516a5f62ab5149afb.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.031738;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_e49fcd9f2b5058c61da24a7d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.989000;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_5889fdd25f690fb20818eb74.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.748000;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_2e649e95d197dd359079463c.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_df40506fb8b17142494432f2.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.031738;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_7397d1156a2ed5667a34b318.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.969881;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_dcfb6bc25429895a2516b335.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.011230;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_a0c9c60f78b6df4c7b04789f.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.031738;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_29071328862966bfa98f9493.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.899902;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_60e3a925b33bf28ebd0f6679.woff2')format("woff");}.fff{font-family:fff;line-height:1.031738;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_c4831b9f72f8b96c9a32dab4.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.031738;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_29071328862966bfa98f9493.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.899902;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_60e3a925b33bf28ebd0f6679.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.031738;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_c4831b9f72f8b96c9a32dab4.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.031738;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;}
.ls3{letter-spacing:-1.080000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:1.408200px;}
.ls4{letter-spacing:2.520000px;}
.ls1{letter-spacing:4.422000px;}
.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;}
}
.ws3{word-spacing:-27.216000px;}
.ws2{word-spacing:-16.962000px;}
.ws5{word-spacing:-16.368000px;}
.ws0{word-spacing:-16.200000px;}
.ws4{word-spacing:-16.170000px;}
.wsa{word-spacing:-3.894000px;}
.ws22{word-spacing:-3.366000px;}
.ws9{word-spacing:-3.300000px;}
.wsf{word-spacing:-2.838000px;}
.ws6{word-spacing:-2.508000px;}
.ws23{word-spacing:-1.650000px;}
.ws21{word-spacing:-1.518000px;}
.ws15{word-spacing:-1.224000px;}
.wsb{word-spacing:-0.858000px;}
.ws26{word-spacing:-0.144000px;}
.ws1c{word-spacing:-0.132000px;}
.ws1{word-spacing:0.000000px;}
.ws16{word-spacing:0.330000px;}
.ws18{word-spacing:0.396000px;}
.ws25{word-spacing:0.660000px;}
.ws10{word-spacing:1.188000px;}
.ws13{word-spacing:1.320000px;}
.ws12{word-spacing:1.386000px;}
.ws1b{word-spacing:1.452000px;}
.ws11{word-spacing:1.650000px;}
.ws20{word-spacing:2.310000px;}
.ws8{word-spacing:2.640000px;}
.ws14{word-spacing:2.706000px;}
.wsc{word-spacing:2.904000px;}
.ws7{word-spacing:4.422000px;}
.ws24{word-spacing:7.260000px;}
.wse{word-spacing:8.052000px;}
.ws1a{word-spacing:8.382000px;}
.ws28{word-spacing:8.910000px;}
.ws1f{word-spacing:10.626000px;}
.ws1e{word-spacing:10.824000px;}
.ws17{word-spacing:12.078000px;}
.ws1d{word-spacing:12.342000px;}
.wsd{word-spacing:13.926000px;}
.ws19{word-spacing:14.190000px;}
.ws27{word-spacing:17.688000px;}
._2{margin-left:-7.804800px;}
._b{margin-left:-6.521400px;}
._3{margin-left:-5.073600px;}
._1{margin-left:-3.862800px;}
._0{margin-left:-1.990800px;}
._4{width:1.181400px;}
._6{width:2.555400px;}
._5{width:3.590400px;}
._7{width:4.600800px;}
._8{width:5.821200px;}
._9{width:7.895400px;}
._a{width:9.261000px;}
.fc1{color:rgb(48,88,159);}
.fc0{color:rgb(35,31,32);}
.fs7{font-size:60.000000px;}
.fs6{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:84.000000px;}
.fs4{font-size:108.000000px;}
.fs3{font-size:114.000000px;}
.fs5{font-size:126.000000px;}
.fs2{font-size:132.000000px;}
.y0{bottom:0.000000px;}
.y32{bottom:45.129900px;}
.y6b{bottom:45.165300px;}
.y67{bottom:104.596650px;}
.yd{bottom:109.849650px;}
.y66{bottom:124.396500px;}
.yc{bottom:131.449650px;}
.y65{bottom:144.196500px;}
.y2e{bottom:144.423450px;}
.y64{bottom:163.996650px;}
.y2d{bottom:164.223450px;}
.y63{bottom:183.796650px;}
.y2c{bottom:184.023450px;}
.y4{bottom:188.629200px;}
.y2b{bottom:203.823450px;}
.y62{bottom:207.848550px;}
.y3{bottom:210.229200px;}
.y2a{bottom:223.623450px;}
.y61{bottom:227.648550px;}
.y2{bottom:231.829200px;}
.y29{bottom:243.423450px;}
.y60{bottom:247.448550px;}
.y5f{bottom:267.248550px;}
.y28{bottom:267.475500px;}
.y5e{bottom:287.048550px;}
.y27{bottom:287.275500px;}
.y5d{bottom:306.848550px;}
.y26{bottom:307.075500px;}
.y9{bottom:326.852550px;}
.y25{bottom:326.875500px;}
.y5c{bottom:330.900450px;}
.y5b{bottom:350.700600px;}
.y24{bottom:350.927400px;}
.y5a{bottom:370.500600px;}
.y23{bottom:370.727400px;}
.y59{bottom:390.300600px;}
.y22{bottom:390.527400px;}
.y58{bottom:410.100600px;}
.y21{bottom:410.327400px;}
.y57{bottom:429.900450px;}
.y20{bottom:430.127400px;}
.y56{bottom:449.700600px;}
.y1f{bottom:449.927400px;}
.y55{bottom:469.500600px;}
.y1e{bottom:469.727400px;}
.yb{bottom:485.161200px;}
.y1d{bottom:489.527400px;}
.y54{bottom:493.552500px;}
.y1c{bottom:509.327400px;}
.y53{bottom:513.352500px;}
.ya{bottom:517.561200px;}
.y1b{bottom:529.127400px;}
.y52{bottom:533.152500px;}
.y1a{bottom:548.927400px;}
.y51{bottom:552.952500px;}
.y8{bottom:567.099750px;}
.y19{bottom:568.727400px;}
.y50{bottom:572.752500px;}
.y4f{bottom:592.552500px;}
.y7{bottom:603.099750px;}
.y4e{bottom:612.352500px;}
.y4d{bottom:632.152500px;}
.y6{bottom:639.099750px;}
.y4c{bottom:656.204400px;}
.y5{bottom:675.099750px;}
.y4b{bottom:676.004400px;}
.y4a{bottom:695.804400px;}
.y49{bottom:715.604400px;}
.y48{bottom:735.404550px;}
.y47{bottom:755.204400px;}
.y18{bottom:761.324250px;}
.y6f{bottom:768.277650px;}
.y46{bottom:775.004550px;}
.y17{bottom:779.324400px;}
.y45{bottom:794.804400px;}
.y16{bottom:797.324250px;}
.y44{bottom:818.856450px;}
.y15{bottom:837.576300px;}
.y43{bottom:842.908500px;}
.y42{bottom:862.708350px;}
.y41{bottom:882.508350px;}
.y14{bottom:891.236100px;}
.y40{bottom:906.560400px;}
.y13{bottom:909.236100px;}
.y3f{bottom:926.360400px;}
.y12{bottom:927.236100px;}
.y3e{bottom:946.160400px;}
.y3d{bottom:965.960400px;}
.y11{bottom:967.488150px;}
.y3c{bottom:985.760400px;}
.y6e{bottom:1005.560400px;}
.y3b{bottom:1009.812450px;}
.y10{bottom:1021.147950px;}
.y3a{bottom:1029.612300px;}
.y39{bottom:1049.412300px;}
.yf{bottom:1058.947950px;}
.y38{bottom:1069.212300px;}
.y37{bottom:1089.012300px;}
.ye{bottom:1096.747950px;}
.y36{bottom:1108.812450px;}
.y35{bottom:1128.612300px;}
.y6d{bottom:1132.864350px;}
.y34{bottom:1152.664350px;}
.y1{bottom:1153.541250px;}
.y31{bottom:1188.134700px;}
.y6a{bottom:1189.634700px;}
.y33{bottom:1195.334700px;}
.y6c{bottom:1198.334700px;}
.y30{bottom:1209.734550px;}
.y69{bottom:1211.234550px;}
.y2f{bottom:1231.334700px;}
.y68{bottom:1232.834700px;}
.he{height:48.134766px;}
.hb{height:49.236000px;}
.hd{height:51.890625px;}
.hc{height:52.948242px;}
.h3{height:54.738281px;}
.h8{height:57.761719px;}
.h2{height:67.388672px;}
.h6{height:70.728000px;}
.ha{height:80.136000px;}
.h7{height:84.996000px;}
.h5{height:93.984000px;}
.h9{height:99.162000px;}
.h4{height:103.884000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:95.669250px;}
.x12{left:97.370100px;}
.x16{left:102.533100px;}
.x9{left:104.589450px;}
.x11{left:118.629900px;}
.x3{left:130.748100px;}
.xa{left:150.548100px;}
.x8{left:159.652950px;}
.x2{left:242.905500px;}
.x14{left:246.418800px;}
.xc{left:313.630650px;}
.xf{left:316.317900px;}
.x19{left:323.148750px;}
.xb{left:358.586400px;}
.x6{left:400.122300px;}
.x7{left:406.494300px;}
.x5{left:492.802650px;}
.xe{left:522.567300px;}
.x15{left:543.955050px;}
.x10{left:568.469100px;}
.x4{left:584.142300px;}
.xd{left:644.318550px;}
.x18{left:661.641750px;}
.x13{left:673.136700px;}
.x17{left:775.078950px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:-0.960000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:1.251733pt;}
.ls4{letter-spacing:2.240000pt;}
.ls1{letter-spacing:3.930667pt;}
.ws3{word-spacing:-24.192000pt;}
.ws2{word-spacing:-15.077333pt;}
.ws5{word-spacing:-14.549333pt;}
.ws0{word-spacing:-14.400000pt;}
.ws4{word-spacing:-14.373333pt;}
.wsa{word-spacing:-3.461333pt;}
.ws22{word-spacing:-2.992000pt;}
.ws9{word-spacing:-2.933333pt;}
.wsf{word-spacing:-2.522667pt;}
.ws6{word-spacing:-2.229333pt;}
.ws23{word-spacing:-1.466667pt;}
.ws21{word-spacing:-1.349333pt;}
.ws15{word-spacing:-1.088000pt;}
.wsb{word-spacing:-0.762667pt;}
.ws26{word-spacing:-0.128000pt;}
.ws1c{word-spacing:-0.117333pt;}
.ws1{word-spacing:0.000000pt;}
.ws16{word-spacing:0.293333pt;}
.ws18{word-spacing:0.352000pt;}
.ws25{word-spacing:0.586667pt;}
.ws10{word-spacing:1.056000pt;}
.ws13{word-spacing:1.173333pt;}
.ws12{word-spacing:1.232000pt;}
.ws1b{word-spacing:1.290667pt;}
.ws11{word-spacing:1.466667pt;}
.ws20{word-spacing:2.053333pt;}
.ws8{word-spacing:2.346667pt;}
.ws14{word-spacing:2.405333pt;}
.wsc{word-spacing:2.581333pt;}
.ws7{word-spacing:3.930667pt;}
.ws24{word-spacing:6.453333pt;}
.wse{word-spacing:7.157333pt;}
.ws1a{word-spacing:7.450667pt;}
.ws28{word-spacing:7.920000pt;}
.ws1f{word-spacing:9.445333pt;}
.ws1e{word-spacing:9.621333pt;}
.ws17{word-spacing:10.736000pt;}
.ws1d{word-spacing:10.970667pt;}
.wsd{word-spacing:12.378667pt;}
.ws19{word-spacing:12.613333pt;}
.ws27{word-spacing:15.722667pt;}
._2{margin-left:-6.937600pt;}
._b{margin-left:-5.796800pt;}
._3{margin-left:-4.509867pt;}
._1{margin-left:-3.433600pt;}
._0{margin-left:-1.769600pt;}
._4{width:1.050133pt;}
._6{width:2.271467pt;}
._5{width:3.191467pt;}
._7{width:4.089600pt;}
._8{width:5.174400pt;}
._9{width:7.018133pt;}
._a{width:8.232000pt;}
.fs7{font-size:53.333333pt;}
.fs6{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:74.666667pt;}
.fs4{font-size:96.000000pt;}
.fs3{font-size:101.333333pt;}
.fs5{font-size:112.000000pt;}
.fs2{font-size:117.333333pt;}
.y0{bottom:0.000000pt;}
.y32{bottom:40.115467pt;}
.y6b{bottom:40.146933pt;}
.y67{bottom:92.974800pt;}
.yd{bottom:97.644133pt;}
.y66{bottom:110.574667pt;}
.yc{bottom:116.844133pt;}
.y65{bottom:128.174667pt;}
.y2e{bottom:128.376400pt;}
.y64{bottom:145.774800pt;}
.y2d{bottom:145.976400pt;}
.y63{bottom:163.374800pt;}
.y2c{bottom:163.576400pt;}
.y4{bottom:167.670400pt;}
.y2b{bottom:181.176400pt;}
.y62{bottom:184.754267pt;}
.y3{bottom:186.870400pt;}
.y2a{bottom:198.776400pt;}
.y61{bottom:202.354267pt;}
.y2{bottom:206.070400pt;}
.y29{bottom:216.376400pt;}
.y60{bottom:219.954267pt;}
.y5f{bottom:237.554267pt;}
.y28{bottom:237.756000pt;}
.y5e{bottom:255.154267pt;}
.y27{bottom:255.356000pt;}
.y5d{bottom:272.754267pt;}
.y26{bottom:272.956000pt;}
.y9{bottom:290.535600pt;}
.y25{bottom:290.556000pt;}
.y5c{bottom:294.133733pt;}
.y5b{bottom:311.733867pt;}
.y24{bottom:311.935467pt;}
.y5a{bottom:329.333867pt;}
.y23{bottom:329.535467pt;}
.y59{bottom:346.933867pt;}
.y22{bottom:347.135467pt;}
.y58{bottom:364.533867pt;}
.y21{bottom:364.735467pt;}
.y57{bottom:382.133733pt;}
.y20{bottom:382.335467pt;}
.y56{bottom:399.733867pt;}
.y1f{bottom:399.935467pt;}
.y55{bottom:417.333867pt;}
.y1e{bottom:417.535467pt;}
.yb{bottom:431.254400pt;}
.y1d{bottom:435.135467pt;}
.y54{bottom:438.713333pt;}
.y1c{bottom:452.735467pt;}
.y53{bottom:456.313333pt;}
.ya{bottom:460.054400pt;}
.y1b{bottom:470.335467pt;}
.y52{bottom:473.913333pt;}
.y1a{bottom:487.935467pt;}
.y51{bottom:491.513333pt;}
.y8{bottom:504.088667pt;}
.y19{bottom:505.535467pt;}
.y50{bottom:509.113333pt;}
.y4f{bottom:526.713333pt;}
.y7{bottom:536.088667pt;}
.y4e{bottom:544.313333pt;}
.y4d{bottom:561.913333pt;}
.y6{bottom:568.088667pt;}
.y4c{bottom:583.292800pt;}
.y5{bottom:600.088667pt;}
.y4b{bottom:600.892800pt;}
.y4a{bottom:618.492800pt;}
.y49{bottom:636.092800pt;}
.y48{bottom:653.692933pt;}
.y47{bottom:671.292800pt;}
.y18{bottom:676.732667pt;}
.y6f{bottom:682.913467pt;}
.y46{bottom:688.892933pt;}
.y17{bottom:692.732800pt;}
.y45{bottom:706.492800pt;}
.y16{bottom:708.732667pt;}
.y44{bottom:727.872400pt;}
.y15{bottom:744.512267pt;}
.y43{bottom:749.252000pt;}
.y42{bottom:766.851867pt;}
.y41{bottom:784.451867pt;}
.y14{bottom:792.209867pt;}
.y40{bottom:805.831467pt;}
.y13{bottom:808.209867pt;}
.y3f{bottom:823.431467pt;}
.y12{bottom:824.209867pt;}
.y3e{bottom:841.031467pt;}
.y3d{bottom:858.631467pt;}
.y11{bottom:859.989467pt;}
.y3c{bottom:876.231467pt;}
.y6e{bottom:893.831467pt;}
.y3b{bottom:897.611067pt;}
.y10{bottom:907.687067pt;}
.y3a{bottom:915.210933pt;}
.y39{bottom:932.810933pt;}
.yf{bottom:941.287067pt;}
.y38{bottom:950.410933pt;}
.y37{bottom:968.010933pt;}
.ye{bottom:974.887067pt;}
.y36{bottom:985.611067pt;}
.y35{bottom:1003.210933pt;}
.y6d{bottom:1006.990533pt;}
.y34{bottom:1024.590533pt;}
.y1{bottom:1025.370000pt;}
.y31{bottom:1056.119733pt;}
.y6a{bottom:1057.453067pt;}
.y33{bottom:1062.519733pt;}
.y6c{bottom:1065.186400pt;}
.y30{bottom:1075.319600pt;}
.y69{bottom:1076.652933pt;}
.y2f{bottom:1094.519733pt;}
.y68{bottom:1095.853067pt;}
.he{height:42.786458pt;}
.hb{height:43.765333pt;}
.hd{height:46.125000pt;}
.hc{height:47.065104pt;}
.h3{height:48.656250pt;}
.h8{height:51.343750pt;}
.h2{height:59.901042pt;}
.h6{height:62.869333pt;}
.ha{height:71.232000pt;}
.h7{height:75.552000pt;}
.h5{height:83.541333pt;}
.h9{height:88.144000pt;}
.h4{height:92.341333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:85.039333pt;}
.x12{left:86.551200pt;}
.x16{left:91.140533pt;}
.x9{left:92.968400pt;}
.x11{left:105.448800pt;}
.x3{left:116.220533pt;}
.xa{left:133.820533pt;}
.x8{left:141.913733pt;}
.x2{left:215.916000pt;}
.x14{left:219.038933pt;}
.xc{left:278.782800pt;}
.xf{left:281.171467pt;}
.x19{left:287.243333pt;}
.xb{left:318.743467pt;}
.x6{left:355.664267pt;}
.x7{left:361.328267pt;}
.x5{left:438.046800pt;}
.xe{left:464.504267pt;}
.x15{left:483.515600pt;}
.x10{left:505.305867pt;}
.x4{left:519.237600pt;}
.xd{left:572.727600pt;}
.x18{left:588.126000pt;}
.x13{left:598.343733pt;}
.x17{left:688.959067pt;}
}




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