
    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_97e7bdc21a310f808f9aaba8.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.882324;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_eade9a3a83d0d8b8e3275465.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.910156;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_d689aeae35aa091dc057e4da.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.910645;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_0cc3f89d38b7f042fbe506dd.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910156;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_67e1f6c1ab44fd0a525b6a1d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.675781;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_76360ce408a1672d629333c9.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.877930;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_baea33ca77c639ef17439800.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910645;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_366da4b296fd50615243ed80.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666504;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_4c78b9ac985519d4bb539351.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.693359;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_f2de34fbf9ea4cd7e90a8f20.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.666504;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_306fc8c3b28344f55b050f4f.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.692871;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_92450168265c8674ffc3bf30.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.692871;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_262abdc31cfd91c069634713.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.910645;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_5d1b07d82ac00e85145ed766.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.893066;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_8c58cd487338d648f7ac5201.woff2')format("woff");}.fff{font-family:fff;line-height:0.701660;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_50339ab283e1bddf9d355da4.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.910156;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_1228d6cc2f135b76f7dec311.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.690918;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;}
.v1{vertical-align:18.720000px;}
.ls1c{letter-spacing:-0.776736px;}
.ls1d{letter-spacing:-0.659808px;}
.ls1b{letter-spacing:-0.618048px;}
.ls23{letter-spacing:-0.481536px;}
.ls1e{letter-spacing:-0.448704px;}
.ls20{letter-spacing:-0.393984px;}
.ls25{letter-spacing:-0.361152px;}
.ls12{letter-spacing:-0.338688px;}
.ls21{letter-spacing:-0.328320px;}
.ls15{letter-spacing:-0.320544px;}
.lsa{letter-spacing:-0.318384px;}
.ls18{letter-spacing:-0.302400px;}
.ls1f{letter-spacing:-0.273600px;}
.ls13{letter-spacing:-0.241920px;}
.lsc{letter-spacing:-0.241200px;}
.ls24{letter-spacing:-0.240768px;}
.ls17{letter-spacing:-0.223776px;}
.ls14{letter-spacing:-0.157248px;}
.lsd{letter-spacing:-0.154368px;}
.ls16{letter-spacing:-0.120960px;}
.ls27{letter-spacing:-0.014400px;}
.ls22{letter-spacing:-0.007200px;}
.lsb{letter-spacing:0.000000px;}
.ls26{letter-spacing:0.000576px;}
.ls28{letter-spacing:0.014400px;}
.ls6{letter-spacing:0.017280px;}
.lse{letter-spacing:0.116928px;}
.ls8{letter-spacing:0.119520px;}
.ls2{letter-spacing:0.120960px;}
.ls3{letter-spacing:0.131472px;}
.lsf{letter-spacing:0.191232px;}
.ls7{letter-spacing:0.200448px;}
.ls4{letter-spacing:0.239040px;}
.ls1{letter-spacing:0.240480px;}
.ls0{letter-spacing:0.242208px;}
.ls11{letter-spacing:0.359136px;}
.ls5{letter-spacing:0.447552px;}
.ls10{letter-spacing:0.449280px;}
.ls1a{letter-spacing:2.472768px;}
.ls9{letter-spacing:3.150720px;}
.ls29{letter-spacing:26.524800px;}
.ls19{letter-spacing:935.226288px;}
.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;}
}
.ws4{word-spacing:-27.000000px;}
.ws1{word-spacing:-24.120000px;}
.ws2{word-spacing:-23.878800px;}
.ws0{word-spacing:-23.801616px;}
.ws5{word-spacing:-22.049280px;}
.ws3{word-spacing:-21.122208px;}
.ws6{word-spacing:-21.080448px;}
.wsb{word-spacing:-20.261952px;}
.wsc{word-spacing:-20.220192px;}
.ws15{word-spacing:-18.014400px;}
.wsd{word-spacing:-18.000000px;}
.ws14{word-spacing:-17.985600px;}
.ws7{word-spacing:-15.120000px;}
.ws9{word-spacing:-14.962752px;}
.ws8{word-spacing:-14.878080px;}
.wsf{word-spacing:-13.680000px;}
.ws13{word-spacing:-13.439232px;}
.ws10{word-spacing:-13.286016px;}
.wse{word-spacing:-13.231296px;}
.ws12{word-spacing:-13.198464px;}
.ws11{word-spacing:-0.028800px;}
.wsa{word-spacing:0.000000px;}
._f{margin-left:-4.147488px;}
._4{margin-left:-2.933856px;}
._1{margin-left:-1.386000px;}
._2{width:1.620000px;}
._e{width:2.628000px;}
._3{width:3.628800px;}
._b{width:4.766400px;}
._d{width:5.860800px;}
._c{width:7.632000px;}
._7{width:9.453600px;}
._6{width:10.612800px;}
._10{width:11.750400px;}
._5{width:13.060800px;}
._12{width:14.414400px;}
._a{width:15.616800px;}
._9{width:16.855200px;}
._13{width:20.937600px;}
._16{width:23.277600px;}
._11{width:25.495200px;}
._15{width:27.309600px;}
._14{width:134.408880px;}
._8{width:194.399280px;}
._0{width:688.081680px;}
.fc4{color:transparent;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(238,0,0);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:36.000000px;}
.fs3{font-size:47.520000px;}
.fs9{font-size:54.720000px;}
.fs2{font-size:60.480000px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:83.520000px;}
.fs7{font-size:86.400000px;}
.fs0{font-size:96.480000px;}
.fs6{font-size:108.000000px;}
.fs5{font-size:119.520000px;}
.y0{bottom:0.000000px;}
.y26{bottom:4.380000px;}
.y21{bottom:11.460000px;}
.y25{bottom:52.500000px;}
.y9{bottom:62.280000px;}
.y8{bottom:77.760000px;}
.y8c{bottom:97.200000px;}
.y8b{bottom:101.880000px;}
.y93{bottom:102.600000px;}
.y7{bottom:110.160000px;}
.y8a{bottom:113.760000px;}
.y77{bottom:117.360000px;}
.y92{bottom:126.360000px;}
.y4e{bottom:133.560000px;}
.y6{bottom:133.920000px;}
.y76{bottom:141.120000px;}
.y91{bottom:150.120000px;}
.y4d{bottom:157.320000px;}
.y5{bottom:157.680000px;}
.y75{bottom:165.240000px;}
.y90{bottom:174.240000px;}
.y4c{bottom:181.440000px;}
.y74{bottom:189.000000px;}
.y4{bottom:193.320000px;}
.y8f{bottom:198.000000px;}
.y4b{bottom:205.200000px;}
.y73{bottom:212.760000px;}
.y89{bottom:221.760000px;}
.y4a{bottom:228.960000px;}
.y72{bottom:236.520000px;}
.y88{bottom:245.520000px;}
.y49{bottom:252.720000px;}
.y71{bottom:260.280000px;}
.y87{bottom:269.280000px;}
.y48{bottom:276.480000px;}
.y70{bottom:284.040000px;}
.y86{bottom:293.040000px;}
.y47{bottom:300.240000px;}
.y6f{bottom:307.800000px;}
.y85{bottom:316.800000px;}
.y46{bottom:324.000000px;}
.ya9{bottom:336.960000px;}
.y6e{bottom:340.560000px;}
.y84{bottom:346.680000px;}
.y45{bottom:347.760000px;}
.y6d{bottom:364.320000px;}
.ya8{bottom:369.720000px;}
.y44{bottom:371.520000px;}
.y83{bottom:373.320000px;}
.y6c{bottom:388.440000px;}
.y43{bottom:395.640000px;}
.y82{bottom:397.440000px;}
.ya7{bottom:402.480000px;}
.y6b{bottom:412.200000px;}
.y42{bottom:419.400000px;}
.y81{bottom:421.200000px;}
.ya6{bottom:426.240000px;}
.y6a{bottom:435.960000px;}
.y80{bottom:444.960000px;}
.y41{bottom:452.160000px;}
.ya5{bottom:459.000000px;}
.y69{bottom:468.720000px;}
.y40{bottom:475.920000px;}
.ya4{bottom:482.760000px;}
.y68{bottom:492.480000px;}
.y3f{bottom:499.680000px;}
.ya3{bottom:515.880000px;}
.y67{bottom:516.240000px;}
.y7f{bottom:525.240000px;}
.y1f{bottom:525.960000px;}
.y3e{bottom:532.440000px;}
.ya2{bottom:539.640000px;}
.y66{bottom:540.000000px;}
.y7e{bottom:549.000000px;}
.y3d{bottom:556.200000px;}
.y1e{bottom:557.640000px;}
.y65{bottom:563.760000px;}
.ya1{bottom:572.400000px;}
.y7d{bottom:572.760000px;}
.y3c{bottom:579.960000px;}
.y1d{bottom:586.800000px;}
.y64{bottom:587.880000px;}
.y7c{bottom:596.880000px;}
.y3b{bottom:604.080000px;}
.ya0{bottom:605.160000px;}
.y1c{bottom:606.600000px;}
.y63{bottom:611.640000px;}
.y7b{bottom:620.640000px;}
.y3a{bottom:627.840000px;}
.y1b{bottom:628.920000px;}
.y62{bottom:644.400000px;}
.y39{bottom:651.600000px;}
.y1a{bottom:656.640000px;}
.y9f{bottom:661.680000px;}
.y61{bottom:668.160000px;}
.y38{bottom:675.360000px;}
.y20{bottom:676.500000px;}
.y19{bottom:684.360000px;}
.y9e{bottom:685.440000px;}
.y60{bottom:691.920000px;}
.y37{bottom:699.120000px;}
.y18{bottom:712.080000px;}
.y5f{bottom:715.680000px;}
.y9d{bottom:718.200000px;}
.y36{bottom:722.880000px;}
.y5e{bottom:739.440000px;}
.y17{bottom:739.800000px;}
.y9c{bottom:741.960000px;}
.y35{bottom:746.640000px;}
.y7a{bottom:748.440000px;}
.y8e{bottom:763.200000px;}
.y16{bottom:765.360000px;}
.y34{bottom:770.400000px;}
.y5d{bottom:772.200000px;}
.y9b{bottom:775.080000px;}
.y8d{bottom:786.960000px;}
.y5c{bottom:795.960000px;}
.y15{bottom:797.040000px;}
.y9a{bottom:798.840000px;}
.y33{bottom:803.520000px;}
.y5b{bottom:820.080000px;}
.y32{bottom:827.280000px;}
.y14{bottom:831.240000px;}
.y99{bottom:831.600000px;}
.y5a{bottom:843.840000px;}
.y31{bottom:851.040000px;}
.y98{bottom:855.360000px;}
.y13{bottom:865.800000px;}
.y59{bottom:867.600000px;}
.y30{bottom:874.800000px;}
.y97{bottom:888.120000px;}
.y58{bottom:891.360000px;}
.y2f{bottom:898.560000px;}
.y12{bottom:900.360000px;}
.y57{bottom:915.120000px;}
.y96{bottom:920.880000px;}
.y2e{bottom:922.320000px;}
.y11{bottom:934.920000px;}
.y56{bottom:938.880000px;}
.y2d{bottom:946.080000px;}
.y95{bottom:953.640000px;}
.y55{bottom:962.640000px;}
.y10{bottom:967.680000px;}
.y2c{bottom:969.840000px;}
.y79{bottom:986.400000px;}
.yf{bottom:987.120000px;}
.y2b{bottom:993.600000px;}
.y54{bottom:995.400000px;}
.y78{bottom:1010.520000px;}
.y2a{bottom:1017.720000px;}
.y53{bottom:1019.520000px;}
.ye{bottom:1025.640000px;}
.y94{bottom:1034.280000px;}
.yd{bottom:1041.480000px;}
.y52{bottom:1043.280000px;}
.y29{bottom:1065.240000px;}
.yc{bottom:1065.600000px;}
.y51{bottom:1067.040000px;}
.y28{bottom:1089.000000px;}
.yb{bottom:1089.720000px;}
.y50{bottom:1090.800000px;}
.y27{bottom:1112.760000px;}
.ya{bottom:1114.200000px;}
.y4f{bottom:1114.560000px;}
.y24{bottom:1143.720000px;}
.y3{bottom:1150.920000px;}
.y23{bottom:1164.960000px;}
.y2{bottom:1172.160000px;}
.y22{bottom:1189.800000px;}
.y1{bottom:1197.360000px;}
.hf{height:21.000000px;}
.h11{height:24.996094px;}
.hd{height:28.500000px;}
.h5{height:32.113125px;}
.h4{height:41.993438px;}
.hc{height:42.022969px;}
.h12{height:43.716094px;}
.h13{height:48.761719px;}
.h2{height:49.992188px;}
.h3{height:50.027344px;}
.h8{height:55.666406px;}
.he{height:56.563594px;}
.h7{height:58.031719px;}
.h1{height:64.304297px;}
.h6{height:65.387813px;}
.hb{height:73.142578px;}
.ha{height:79.660547px;}
.h9{height:81.002813px;}
.h10{height:1245.000000px;}
.h0{height:1263.000000px;}
.w2{width:10.500000px;}
.w1{width:51.000000px;}
.w3{width:874.500000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x10{left:10.920036px;}
.x13{left:18.000000px;}
.x16{left:77.760000px;}
.x1{left:95.760144px;}
.x17{left:100.440324px;}
.xe{left:138.285288px;}
.xf{left:141.000000px;}
.x9{left:166.268196px;}
.x2{left:200.496852px;}
.x15{left:311.760144px;}
.xc{left:318.930192px;}
.x4{left:324.143172px;}
.xd{left:348.907464px;}
.xb{left:353.691648px;}
.x5{left:357.015744px;}
.x14{left:381.846960px;}
.x11{left:436.500000px;}
.xa{left:446.609880px;}
.x3{left:491.384160px;}
.x6{left:672.080400px;}
.x7{left:673.263360px;}
.x8{left:676.349280px;}
.x12{left:786.809880px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.640000pt;}
.ls1c{letter-spacing:-0.690432pt;}
.ls1d{letter-spacing:-0.586496pt;}
.ls1b{letter-spacing:-0.549376pt;}
.ls23{letter-spacing:-0.428032pt;}
.ls1e{letter-spacing:-0.398848pt;}
.ls20{letter-spacing:-0.350208pt;}
.ls25{letter-spacing:-0.321024pt;}
.ls12{letter-spacing:-0.301056pt;}
.ls21{letter-spacing:-0.291840pt;}
.ls15{letter-spacing:-0.284928pt;}
.lsa{letter-spacing:-0.283008pt;}
.ls18{letter-spacing:-0.268800pt;}
.ls1f{letter-spacing:-0.243200pt;}
.ls13{letter-spacing:-0.215040pt;}
.lsc{letter-spacing:-0.214400pt;}
.ls24{letter-spacing:-0.214016pt;}
.ls17{letter-spacing:-0.198912pt;}
.ls14{letter-spacing:-0.139776pt;}
.lsd{letter-spacing:-0.137216pt;}
.ls16{letter-spacing:-0.107520pt;}
.ls27{letter-spacing:-0.012800pt;}
.ls22{letter-spacing:-0.006400pt;}
.lsb{letter-spacing:0.000000pt;}
.ls26{letter-spacing:0.000512pt;}
.ls28{letter-spacing:0.012800pt;}
.ls6{letter-spacing:0.015360pt;}
.lse{letter-spacing:0.103936pt;}
.ls8{letter-spacing:0.106240pt;}
.ls2{letter-spacing:0.107520pt;}
.ls3{letter-spacing:0.116864pt;}
.lsf{letter-spacing:0.169984pt;}
.ls7{letter-spacing:0.178176pt;}
.ls4{letter-spacing:0.212480pt;}
.ls1{letter-spacing:0.213760pt;}
.ls0{letter-spacing:0.215296pt;}
.ls11{letter-spacing:0.319232pt;}
.ls5{letter-spacing:0.397824pt;}
.ls10{letter-spacing:0.399360pt;}
.ls1a{letter-spacing:2.198016pt;}
.ls9{letter-spacing:2.800640pt;}
.ls29{letter-spacing:23.577600pt;}
.ls19{letter-spacing:831.312256pt;}
.ws4{word-spacing:-24.000000pt;}
.ws1{word-spacing:-21.440000pt;}
.ws2{word-spacing:-21.225600pt;}
.ws0{word-spacing:-21.156992pt;}
.ws5{word-spacing:-19.599360pt;}
.ws3{word-spacing:-18.775296pt;}
.ws6{word-spacing:-18.738176pt;}
.wsb{word-spacing:-18.010624pt;}
.wsc{word-spacing:-17.973504pt;}
.ws15{word-spacing:-16.012800pt;}
.wsd{word-spacing:-16.000000pt;}
.ws14{word-spacing:-15.987200pt;}
.ws7{word-spacing:-13.440000pt;}
.ws9{word-spacing:-13.300224pt;}
.ws8{word-spacing:-13.224960pt;}
.wsf{word-spacing:-12.160000pt;}
.ws13{word-spacing:-11.945984pt;}
.ws10{word-spacing:-11.809792pt;}
.wse{word-spacing:-11.761152pt;}
.ws12{word-spacing:-11.731968pt;}
.ws11{word-spacing:-0.025600pt;}
.wsa{word-spacing:0.000000pt;}
._f{margin-left:-3.686656pt;}
._4{margin-left:-2.607872pt;}
._1{margin-left:-1.232000pt;}
._2{width:1.440000pt;}
._e{width:2.336000pt;}
._3{width:3.225600pt;}
._b{width:4.236800pt;}
._d{width:5.209600pt;}
._c{width:6.784000pt;}
._7{width:8.403200pt;}
._6{width:9.433600pt;}
._10{width:10.444800pt;}
._5{width:11.609600pt;}
._12{width:12.812800pt;}
._a{width:13.881600pt;}
._9{width:14.982400pt;}
._13{width:18.611200pt;}
._16{width:20.691200pt;}
._11{width:22.662400pt;}
._15{width:24.275200pt;}
._14{width:119.474560pt;}
._8{width:172.799360pt;}
._0{width:611.628160pt;}
.fs8{font-size:32.000000pt;}
.fs3{font-size:42.240000pt;}
.fs9{font-size:48.640000pt;}
.fs2{font-size:53.760000pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:74.240000pt;}
.fs7{font-size:76.800000pt;}
.fs0{font-size:85.760000pt;}
.fs6{font-size:96.000000pt;}
.fs5{font-size:106.240000pt;}
.y0{bottom:0.000000pt;}
.y26{bottom:3.893333pt;}
.y21{bottom:10.186667pt;}
.y25{bottom:46.666667pt;}
.y9{bottom:55.360000pt;}
.y8{bottom:69.120000pt;}
.y8c{bottom:86.400000pt;}
.y8b{bottom:90.560000pt;}
.y93{bottom:91.200000pt;}
.y7{bottom:97.920000pt;}
.y8a{bottom:101.120000pt;}
.y77{bottom:104.320000pt;}
.y92{bottom:112.320000pt;}
.y4e{bottom:118.720000pt;}
.y6{bottom:119.040000pt;}
.y76{bottom:125.440000pt;}
.y91{bottom:133.440000pt;}
.y4d{bottom:139.840000pt;}
.y5{bottom:140.160000pt;}
.y75{bottom:146.880000pt;}
.y90{bottom:154.880000pt;}
.y4c{bottom:161.280000pt;}
.y74{bottom:168.000000pt;}
.y4{bottom:171.840000pt;}
.y8f{bottom:176.000000pt;}
.y4b{bottom:182.400000pt;}
.y73{bottom:189.120000pt;}
.y89{bottom:197.120000pt;}
.y4a{bottom:203.520000pt;}
.y72{bottom:210.240000pt;}
.y88{bottom:218.240000pt;}
.y49{bottom:224.640000pt;}
.y71{bottom:231.360000pt;}
.y87{bottom:239.360000pt;}
.y48{bottom:245.760000pt;}
.y70{bottom:252.480000pt;}
.y86{bottom:260.480000pt;}
.y47{bottom:266.880000pt;}
.y6f{bottom:273.600000pt;}
.y85{bottom:281.600000pt;}
.y46{bottom:288.000000pt;}
.ya9{bottom:299.520000pt;}
.y6e{bottom:302.720000pt;}
.y84{bottom:308.160000pt;}
.y45{bottom:309.120000pt;}
.y6d{bottom:323.840000pt;}
.ya8{bottom:328.640000pt;}
.y44{bottom:330.240000pt;}
.y83{bottom:331.840000pt;}
.y6c{bottom:345.280000pt;}
.y43{bottom:351.680000pt;}
.y82{bottom:353.280000pt;}
.ya7{bottom:357.760000pt;}
.y6b{bottom:366.400000pt;}
.y42{bottom:372.800000pt;}
.y81{bottom:374.400000pt;}
.ya6{bottom:378.880000pt;}
.y6a{bottom:387.520000pt;}
.y80{bottom:395.520000pt;}
.y41{bottom:401.920000pt;}
.ya5{bottom:408.000000pt;}
.y69{bottom:416.640000pt;}
.y40{bottom:423.040000pt;}
.ya4{bottom:429.120000pt;}
.y68{bottom:437.760000pt;}
.y3f{bottom:444.160000pt;}
.ya3{bottom:458.560000pt;}
.y67{bottom:458.880000pt;}
.y7f{bottom:466.880000pt;}
.y1f{bottom:467.520000pt;}
.y3e{bottom:473.280000pt;}
.ya2{bottom:479.680000pt;}
.y66{bottom:480.000000pt;}
.y7e{bottom:488.000000pt;}
.y3d{bottom:494.400000pt;}
.y1e{bottom:495.680000pt;}
.y65{bottom:501.120000pt;}
.ya1{bottom:508.800000pt;}
.y7d{bottom:509.120000pt;}
.y3c{bottom:515.520000pt;}
.y1d{bottom:521.600000pt;}
.y64{bottom:522.560000pt;}
.y7c{bottom:530.560000pt;}
.y3b{bottom:536.960000pt;}
.ya0{bottom:537.920000pt;}
.y1c{bottom:539.200000pt;}
.y63{bottom:543.680000pt;}
.y7b{bottom:551.680000pt;}
.y3a{bottom:558.080000pt;}
.y1b{bottom:559.040000pt;}
.y62{bottom:572.800000pt;}
.y39{bottom:579.200000pt;}
.y1a{bottom:583.680000pt;}
.y9f{bottom:588.160000pt;}
.y61{bottom:593.920000pt;}
.y38{bottom:600.320000pt;}
.y20{bottom:601.333333pt;}
.y19{bottom:608.320000pt;}
.y9e{bottom:609.280000pt;}
.y60{bottom:615.040000pt;}
.y37{bottom:621.440000pt;}
.y18{bottom:632.960000pt;}
.y5f{bottom:636.160000pt;}
.y9d{bottom:638.400000pt;}
.y36{bottom:642.560000pt;}
.y5e{bottom:657.280000pt;}
.y17{bottom:657.600000pt;}
.y9c{bottom:659.520000pt;}
.y35{bottom:663.680000pt;}
.y7a{bottom:665.280000pt;}
.y8e{bottom:678.400000pt;}
.y16{bottom:680.320000pt;}
.y34{bottom:684.800000pt;}
.y5d{bottom:686.400000pt;}
.y9b{bottom:688.960000pt;}
.y8d{bottom:699.520000pt;}
.y5c{bottom:707.520000pt;}
.y15{bottom:708.480000pt;}
.y9a{bottom:710.080000pt;}
.y33{bottom:714.240000pt;}
.y5b{bottom:728.960000pt;}
.y32{bottom:735.360000pt;}
.y14{bottom:738.880000pt;}
.y99{bottom:739.200000pt;}
.y5a{bottom:750.080000pt;}
.y31{bottom:756.480000pt;}
.y98{bottom:760.320000pt;}
.y13{bottom:769.600000pt;}
.y59{bottom:771.200000pt;}
.y30{bottom:777.600000pt;}
.y97{bottom:789.440000pt;}
.y58{bottom:792.320000pt;}
.y2f{bottom:798.720000pt;}
.y12{bottom:800.320000pt;}
.y57{bottom:813.440000pt;}
.y96{bottom:818.560000pt;}
.y2e{bottom:819.840000pt;}
.y11{bottom:831.040000pt;}
.y56{bottom:834.560000pt;}
.y2d{bottom:840.960000pt;}
.y95{bottom:847.680000pt;}
.y55{bottom:855.680000pt;}
.y10{bottom:860.160000pt;}
.y2c{bottom:862.080000pt;}
.y79{bottom:876.800000pt;}
.yf{bottom:877.440000pt;}
.y2b{bottom:883.200000pt;}
.y54{bottom:884.800000pt;}
.y78{bottom:898.240000pt;}
.y2a{bottom:904.640000pt;}
.y53{bottom:906.240000pt;}
.ye{bottom:911.680000pt;}
.y94{bottom:919.360000pt;}
.yd{bottom:925.760000pt;}
.y52{bottom:927.360000pt;}
.y29{bottom:946.880000pt;}
.yc{bottom:947.200000pt;}
.y51{bottom:948.480000pt;}
.y28{bottom:968.000000pt;}
.yb{bottom:968.640000pt;}
.y50{bottom:969.600000pt;}
.y27{bottom:989.120000pt;}
.ya{bottom:990.400000pt;}
.y4f{bottom:990.720000pt;}
.y24{bottom:1016.640000pt;}
.y3{bottom:1023.040000pt;}
.y23{bottom:1035.520000pt;}
.y2{bottom:1041.920000pt;}
.y22{bottom:1057.600000pt;}
.y1{bottom:1064.320000pt;}
.hf{height:18.666667pt;}
.h11{height:22.218750pt;}
.hd{height:25.333333pt;}
.h5{height:28.545000pt;}
.h4{height:37.327500pt;}
.hc{height:37.353750pt;}
.h12{height:38.858750pt;}
.h13{height:43.343750pt;}
.h2{height:44.437500pt;}
.h3{height:44.468750pt;}
.h8{height:49.481250pt;}
.he{height:50.278750pt;}
.h7{height:51.583750pt;}
.h1{height:57.159375pt;}
.h6{height:58.122500pt;}
.hb{height:65.015625pt;}
.ha{height:70.809375pt;}
.h9{height:72.002500pt;}
.h10{height:1106.666667pt;}
.h0{height:1122.666667pt;}
.w2{width:9.333333pt;}
.w1{width:45.333333pt;}
.w3{width:777.333333pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x10{left:9.706699pt;}
.x13{left:16.000000pt;}
.x16{left:69.120000pt;}
.x1{left:85.120128pt;}
.x17{left:89.280288pt;}
.xe{left:122.920256pt;}
.xf{left:125.333333pt;}
.x9{left:147.793952pt;}
.x2{left:178.219424pt;}
.x15{left:277.120128pt;}
.xc{left:283.493504pt;}
.x4{left:288.127264pt;}
.xd{left:310.139968pt;}
.xb{left:314.392576pt;}
.x5{left:317.347328pt;}
.x14{left:339.419520pt;}
.x11{left:388.000000pt;}
.xa{left:396.986560pt;}
.x3{left:436.785920pt;}
.x6{left:597.404800pt;}
.x7{left:598.456320pt;}
.x8{left:601.199360pt;}
.x12{left:699.386560pt;}
}




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