
    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_81ca20b3f8469f09aa157232.woff')format("woff");}.ff1{font-family:ff1;line-height:0.964000;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_45c3250a6284a92b8bad4495.woff')format("woff");}.ff2{font-family:ff2;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_f99cbcfb84d585a699deb5ae.woff')format("woff");}.ff3{font-family:ff3;line-height:0.315000;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_3ba9300616f88583a2d8521b.woff')format("woff");}.ff4{font-family:ff4;line-height:0.959000;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_04c6c92896d64c20a771a813.woff')format("woff");}.ff5{font-family:ff5;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_d997b90a57749fd921df928a.woff')format("woff");}.ff6{font-family:ff6;line-height:0.427000;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_28420411093535ed3119770b.woff')format("woff");}.ff7{font-family:ff7;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_6939ff1d43e85b28ae01caee.woff')format("woff");}.ff8{font-family:ff8;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_3c871a30d7bab849b34e475f.woff')format("woff");}.ff9{font-family:ff9;line-height:0.097000;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_3f0a25297e6a01a5330a78ec.woff')format("woff");}.ffa{font-family:ffa;line-height:0.683000;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_b46cd1ab67c8aeabe9c23ec7.woff')format("woff");}.ffb{font-family:ffb;line-height:0.895000;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_7950c34d61df051b86a99c3e.woff')format("woff");}.ffc{font-family:ffc;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_662a50387aa3e4d1f580b824.woff')format("woff");}.ffd{font-family:ffd;line-height:0.490000;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_0874b3a76bf0baccd89346d0.woff')format("woff");}.ffe{font-family:ffe;line-height:0.851000;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_a4ac7b8fa11170b200322a5b.woff')format("woff");}.fff{font-family:fff;line-height:0.686000;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_aa834656ef18e0eddea358f5.woff')format("woff");}.ff10{font-family:ff10;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_5e43079f1aa618cd81a61f23.woff')format("woff");}.ff11{font-family:ff11;line-height:0.888000;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_908079c64ae09e8e178acc72.woff')format("woff");}.ff12{font-family:ff12;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v2{vertical-align:-78.333913px;}
.v4{vertical-align:-30.724827px;}
.v7{vertical-align:-20.503784px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:44.565395px;}
.v6{vertical-align:49.501110px;}
.v5{vertical-align:51.783879px;}
.v3{vertical-align:74.344210px;}
.v1{vertical-align:78.333913px;}
.ls14{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.001823px;}
.lse{letter-spacing:0.006397px;}
.ls3{letter-spacing:0.006612px;}
.lsb{letter-spacing:0.007606px;}
.lsd{letter-spacing:0.010386px;}
.ls10{letter-spacing:0.011205px;}
.ls2{letter-spacing:10.243432px;}
.lsc{letter-spacing:10.249215px;}
.ls11{letter-spacing:10.253057px;}
.ls6{letter-spacing:54.098418px;}
.lsf{letter-spacing:56.906528px;}
.ls1{letter-spacing:58.942489px;}
.lsa{letter-spacing:65.448623px;}
.ls13{letter-spacing:69.673760px;}
.ls7{letter-spacing:76.447683px;}
.ls4{letter-spacing:87.117218px;}
.ls9{letter-spacing:88.857492px;}
.ls5{letter-spacing:99.157384px;}
.ls8{letter-spacing:108.726500px;}
.ls12{letter-spacing:154.899113px;}
.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;}
}
.ws1b{word-spacing:-133.462513px;}
.ws1c{word-spacing:-99.246609px;}
.ws1d{word-spacing:-54.110472px;}
.ws1a{word-spacing:-6.228544px;}
.wse{word-spacing:-6.033902px;}
.ws28{word-spacing:-1.946420px;}
.ws13{word-spacing:-0.445839px;}
.ws15{word-spacing:-0.389284px;}
.ws4{word-spacing:-0.280283px;}
.ws20{word-spacing:-0.204886px;}
.ws2d{word-spacing:-0.184398px;}
.wsb{word-spacing:-0.143420px;}
.ws2{word-spacing:-0.122932px;}
.ws23{word-spacing:-0.006375px;}
.ws16{word-spacing:0.000000px;}
.ws10{word-spacing:0.778568px;}
.ws27{word-spacing:2.530346px;}
.ws30{word-spacing:6.228544px;}
.ws1f{word-spacing:6.423186px;}
.wsa{word-spacing:7.591037px;}
.ws32{word-spacing:11.873161px;}
.ws18{word-spacing:14.014223px;}
.ws19{word-spacing:14.598149px;}
.ws9{word-spacing:15.766001px;}
.wsf{word-spacing:16.349927px;}
.ws12{word-spacing:17.128495px;}
.ws31{word-spacing:29.974866px;}
.wsd{word-spacing:30.558792px;}
.wsc{word-spacing:35.424841px;}
.ws8{word-spacing:37.565903px;}
.ws6{word-spacing:43.015879px;}
.ws2c{word-spacing:48.515818px;}
.ws2e{word-spacing:48.523798px;}
.ws1{word-spacing:48.523962px;}
.ws29{word-spacing:51.969410px;}
.ws14{word-spacing:53.331904px;}
.ws2b{word-spacing:53.915830px;}
.ws2a{word-spacing:56.251534px;}
.ws2f{word-spacing:58.818234px;}
.ws21{word-spacing:60.430596px;}
.ws1e{word-spacing:64.210333px;}
.ws3{word-spacing:64.698996px;}
.ws24{word-spacing:67.004197px;}
.ws22{word-spacing:70.720434px;}
.ws11{word-spacing:71.062729px;}
.ws17{word-spacing:77.638339px;}
.ws26{word-spacing:80.971066px;}
.ws7{word-spacing:91.481733px;}
.ws5{word-spacing:102.770968px;}
.ws0{word-spacing:111.821016px;}
.ws25{word-spacing:182.574182px;}
._29{margin-left:-35.424841px;}
._20{margin-left:-23.357038px;}
._5{margin-left:-20.508616px;}
._8{margin-left:-14.014141px;}
._1{margin-left:-12.110579px;}
._7{margin-left:-10.510606px;}
._28{margin-left:-9.313376px;}
._2{margin-left:-8.073720px;}
._11{margin-left:-5.644618px;}
._b{margin-left:-4.638542px;}
._6{margin-left:-3.531792px;}
._a{margin-left:-2.058770px;}
._9{width:1.135007px;}
._4{width:2.950160px;}
._3{width:4.036860px;}
._e{width:5.839260px;}
._1b{width:8.693159px;}
._10{width:10.224871px;}
._22{width:16.605691px;}
._1d{width:22.332536px;}
._21{width:28.762189px;}
._c{width:45.769103px;}
._27{width:57.583497px;}
._1c{width:60.260805px;}
._14{width:64.505982px;}
._26{width:66.955640px;}
._15{width:71.595385px;}
._19{width:72.824339px;}
._25{width:75.715732px;}
._12{width:85.693096px;}
._13{width:93.067105px;}
._1e{width:102.381684px;}
._18{width:109.273639px;}
._1a{width:110.976585px;}
._f{width:114.477724px;}
._16{width:116.162776px;}
._17{width:118.342327px;}
._0{width:138.867976px;}
._24{width:155.308886px;}
._1f{width:176.934459px;}
._d{width:180.173615px;}
._23{width:282.230262px;}
.fc3{color:rgb(46,49,146);}
.fc2{color:rgb(237,28,36);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fs2{font-size:122.932213px;}
.fs6{font-size:143.419544px;}
.fs1{font-size:175.176759px;}
.fs9{font-size:184.398320px;}
.fs5{font-size:194.641985px;}
.fs7{font-size:204.885651px;}
.fs3{font-size:233.570383px;}
.fs4{font-size:280.282814px;}
.fs8{font-size:295.036489px;}
.fs0{font-size:403.685977px;}
.y0{bottom:0.000000px;}
.y1c{bottom:232.014068px;}
.y3d{bottom:398.558467px;}
.y3c{bottom:562.825238px;}
.y3b{bottom:624.290317px;}
.y3a{bottom:685.760536px;}
.y39{bottom:747.225615px;}
.y38{bottom:808.690693px;}
.y37{bottom:907.718621px;}
.y36{bottom:1080.098474px;}
.y35{bottom:1141.563552px;}
.y34{bottom:1264.493709px;}
.y33{bottom:1325.958787px;}
.y32{bottom:1448.894085px;}
.y31{bottom:1510.359164px;}
.y30{bottom:1600.831852px;}
.y2f{bottom:1796.635787px;}
.y2e{bottom:1858.100865px;}
.y1b{bottom:1946.198240px;}
.y1a{bottom:2007.663318px;}
.y19{bottom:2069.128397px;}
.y2d{bottom:2767.753177px;}
.y2c{bottom:2829.223396px;}
.y2b{bottom:2890.688475px;}
.y2a{bottom:2952.153553px;}
.y29{bottom:3013.618631px;}
.y28{bottom:3025.999050px;}
.y27{bottom:3075.083710px;}
.y26{bottom:3198.019008px;}
.y18{bottom:3207.489411px;}
.y25{bottom:3259.484086px;}
.y17{bottom:3268.954490px;}
.y16{bottom:3330.419568px;}
.y23{bottom:3352.182987px;}
.y24{bottom:3370.830736px;}
.y15{bottom:3391.884646px;}
.y14{bottom:3487.483280px;}
.y22{bottom:3517.436902px;}
.y21{bottom:3578.901980px;}
.y20{bottom:3591.853091px;}
.y13{bottom:3627.996922px;}
.y12{bottom:3689.467142px;}
.y1f{bottom:3701.837278px;}
.y11{bottom:3750.932220px;}
.y1e{bottom:3763.302356px;}
.y10{bottom:3812.397299px;}
.yf{bottom:3873.862377px;}
.ye{bottom:3935.327455px;}
.yd{bottom:3996.792534px;}
.yc{bottom:4058.262753px;}
.yb{bottom:4119.727832px;}
.ya{bottom:4181.192910px;}
.y9{bottom:4242.657988px;}
.y8{bottom:4304.123067px;}
.y7{bottom:4387.490381px;}
.y1d{bottom:4394.307838px;}
.y5{bottom:4541.566957px;}
.y6{bottom:4551.973090px;}
.y4{bottom:4597.911231px;}
.y3{bottom:4634.672027px;}
.y2{bottom:4729.221821px;}
.y1{bottom:4857.277924px;}
.h4{height:92.199160px;}
.hb{height:130.506685px;}
.h12{height:138.298740px;}
.hf{height:142.395527px;}
.h8{height:144.229711px;}
.h7{height:145.008279px;}
.ha{height:153.664238px;}
.h3{height:170.533073px;}
.h10{height:171.316388px;}
.h5{height:174.009935px;}
.h9{height:181.908869px;}
.h11{height:182.864135px;}
.he{height:191.896638px;}
.hd{height:196.199265px;}
.hc{height:205.448117px;}
.h6{height:208.810696px;}
.h2{height:300.746053px;}
.h0{height:5055.591000px;}
.h1{height:5055.750000px;}
.w0{width:3575.905500px;}
.w1{width:3576.000000px;}
.x0{left:0.000000px;}
.x6{left:89.605716px;}
.x9{left:99.533702px;}
.xc{left:123.312538px;}
.xb{left:156.304709px;}
.xa{left:157.559204px;}
.x8{left:220.170807px;}
.x1{left:543.506425px;}
.x5{left:589.686211px;}
.x3{left:630.215630px;}
.x7{left:742.333486px;}
.x4{left:777.048016px;}
.x2{left:1052.193573px;}
.x1e{left:1835.779492px;}
.xe{left:1840.504411px;}
.x15{left:1849.085358px;}
.x11{left:1865.296097px;}
.x17{left:1891.722739px;}
.x19{left:1902.581312px;}
.x18{left:1920.627521px;}
.xf{left:1933.306140px;}
.x10{left:2161.130527px;}
.x1b{left:2173.248736px;}
.x12{left:2244.914293px;}
.xd{left:2262.009348px;}
.x1c{left:2292.739316px;}
.x1a{left:2333.186474px;}
.x1f{left:2358.219805px;}
.x1d{left:2478.353056px;}
.x14{left:2551.746113px;}
.x13{left:2586.522339px;}
.x16{left:2869.112600px;}
@media print{
.v2{vertical-align:-69.630145pt;}
.v4{vertical-align:-27.310957pt;}
.v7{vertical-align:-18.225585pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:39.613685pt;}
.v6{vertical-align:44.000987pt;}
.v5{vertical-align:46.030114pt;}
.v3{vertical-align:66.083742pt;}
.v1{vertical-align:69.630145pt;}
.ls14{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.001620pt;}
.lse{letter-spacing:0.005686pt;}
.ls3{letter-spacing:0.005877pt;}
.lsb{letter-spacing:0.006761pt;}
.lsd{letter-spacing:0.009232pt;}
.ls10{letter-spacing:0.009960pt;}
.ls2{letter-spacing:9.105273pt;}
.lsc{letter-spacing:9.110414pt;}
.ls11{letter-spacing:9.113828pt;}
.ls6{letter-spacing:48.087482pt;}
.lsf{letter-spacing:50.583581pt;}
.ls1{letter-spacing:52.393323pt;}
.lsa{letter-spacing:58.176554pt;}
.ls13{letter-spacing:61.932231pt;}
.ls7{letter-spacing:67.953496pt;}
.ls4{letter-spacing:77.437527pt;}
.ls9{letter-spacing:78.984437pt;}
.ls5{letter-spacing:88.139897pt;}
.ls8{letter-spacing:96.645778pt;}
.ls12{letter-spacing:137.688101pt;}
.ws1b{word-spacing:-118.633345pt;}
.ws1c{word-spacing:-88.219208pt;}
.ws1d{word-spacing:-48.098197pt;}
.ws1a{word-spacing:-5.536483pt;}
.wse{word-spacing:-5.363468pt;}
.ws28{word-spacing:-1.730151pt;}
.ws13{word-spacing:-0.396301pt;}
.ws15{word-spacing:-0.346030pt;}
.ws4{word-spacing:-0.249140pt;}
.ws20{word-spacing:-0.182121pt;}
.ws2d{word-spacing:-0.163910pt;}
.wsb{word-spacing:-0.127484pt;}
.ws2{word-spacing:-0.109273pt;}
.ws23{word-spacing:-0.005667pt;}
.ws16{word-spacing:0.000000pt;}
.ws10{word-spacing:0.692060pt;}
.ws27{word-spacing:2.249196pt;}
.ws30{word-spacing:5.536483pt;}
.ws1f{word-spacing:5.709498pt;}
.wsa{word-spacing:6.747589pt;}
.ws32{word-spacing:10.553921pt;}
.ws18{word-spacing:12.457087pt;}
.ws19{word-spacing:12.976132pt;}
.ws9{word-spacing:14.014223pt;}
.wsf{word-spacing:14.533268pt;}
.ws12{word-spacing:15.225329pt;}
.ws31{word-spacing:26.644325pt;}
.wsd{word-spacing:27.163370pt;}
.wsc{word-spacing:31.488748pt;}
.ws8{word-spacing:33.391914pt;}
.ws6{word-spacing:38.236337pt;}
.ws2c{word-spacing:43.125172pt;}
.ws2e{word-spacing:43.132265pt;}
.ws1{word-spacing:43.132411pt;}
.ws29{word-spacing:46.195031pt;}
.ws14{word-spacing:47.406137pt;}
.ws2b{word-spacing:47.925182pt;}
.ws2a{word-spacing:50.001363pt;}
.ws2f{word-spacing:52.282874pt;}
.ws21{word-spacing:53.716085pt;}
.ws1e{word-spacing:57.075851pt;}
.ws3{word-spacing:57.510219pt;}
.ws24{word-spacing:59.559286pt;}
.ws22{word-spacing:62.862608pt;}
.ws11{word-spacing:63.166870pt;}
.ws17{word-spacing:69.011857pt;}
.ws26{word-spacing:71.974281pt;}
.ws7{word-spacing:81.317096pt;}
.ws5{word-spacing:91.351972pt;}
.ws0{word-spacing:99.396458pt;}
.ws25{word-spacing:162.288162pt;}
._29{margin-left:-31.488748pt;}
._20{margin-left:-20.761812pt;}
._5{margin-left:-18.229881pt;}
._8{margin-left:-12.457014pt;}
._1{margin-left:-10.764959pt;}
._7{margin-left:-9.342760pt;}
._28{margin-left:-8.278556pt;}
._2{margin-left:-7.176640pt;}
._11{margin-left:-5.017438pt;}
._b{margin-left:-4.123149pt;}
._6{margin-left:-3.139371pt;}
._a{margin-left:-1.830018pt;}
._9{width:1.008895pt;}
._4{width:2.622364pt;}
._3{width:3.588320pt;}
._e{width:5.190453pt;}
._1b{width:7.727252pt;}
._10{width:9.088774pt;}
._22{width:14.760615pt;}
._1d{width:19.851143pt;}
._21{width:25.566391pt;}
._c{width:40.683647pt;}
._27{width:51.185331pt;}
._1c{width:53.565160pt;}
._14{width:57.338651pt;}
._26{width:59.516124pt;}
._15{width:63.640343pt;}
._19{width:64.732746pt;}
._25{width:67.302873pt;}
._12{width:76.171640pt;}
._13{width:82.726316pt;}
._1e{width:91.005942pt;}
._18{width:97.132123pt;}
._1a{width:98.645854pt;}
._f{width:101.757977pt;}
._16{width:103.255801pt;}
._17{width:105.193180pt;}
._0{width:123.438201pt;}
._24{width:138.052343pt;}
._1f{width:157.275075pt;}
._d{width:160.154324pt;}
._23{width:250.871344pt;}
.fs2{font-size:109.273078pt;}
.fs6{font-size:127.484039pt;}
.fs1{font-size:155.712674pt;}
.fs9{font-size:163.909618pt;}
.fs5{font-size:173.015098pt;}
.fs7{font-size:182.120579pt;}
.fs3{font-size:207.618118pt;}
.fs4{font-size:249.140279pt;}
.fs8{font-size:262.254657pt;}
.fs0{font-size:358.831979pt;}
.y0{bottom:0.000000pt;}
.y1c{bottom:206.234727pt;}
.y3d{bottom:354.274193pt;}
.y3c{bottom:500.289101pt;}
.y3b{bottom:554.924726pt;}
.y3a{bottom:609.564921pt;}
.y39{bottom:664.200546pt;}
.y38{bottom:718.836172pt;}
.y37{bottom:806.860996pt;}
.y36{bottom:960.087532pt;}
.y35{bottom:1014.723158pt;}
.y34{bottom:1123.994408pt;}
.y33{bottom:1178.630033pt;}
.y32{bottom:1287.905854pt;}
.y31{bottom:1342.541479pt;}
.y30{bottom:1422.961646pt;}
.y2f{bottom:1597.009588pt;}
.y2e{bottom:1651.645213pt;}
.y1b{bottom:1729.953991pt;}
.y1a{bottom:1784.589616pt;}
.y19{bottom:1839.225242pt;}
.y2d{bottom:2460.225046pt;}
.y2c{bottom:2514.865241pt;}
.y2b{bottom:2569.500866pt;}
.y2a{bottom:2624.136492pt;}
.y29{bottom:2678.772117pt;}
.y28{bottom:2689.776934pt;}
.y27{bottom:2733.407742pt;}
.y26{bottom:2842.683562pt;}
.y18{bottom:2851.101699pt;}
.y25{bottom:2897.319188pt;}
.y17{bottom:2905.737324pt;}
.y16{bottom:2960.372949pt;}
.y23{bottom:2979.718211pt;}
.y24{bottom:2996.293988pt;}
.y15{bottom:3015.008574pt;}
.y14{bottom:3099.985138pt;}
.y22{bottom:3126.610579pt;}
.y21{bottom:3181.246204pt;}
.y20{bottom:3192.758303pt;}
.y13{bottom:3224.886153pt;}
.y12{bottom:3279.526348pt;}
.y1f{bottom:3290.522025pt;}
.y11{bottom:3334.161974pt;}
.y1e{bottom:3345.157650pt;}
.y10{bottom:3388.797599pt;}
.yf{bottom:3443.433224pt;}
.ye{bottom:3498.068849pt;}
.yd{bottom:3552.704474pt;}
.yc{bottom:3607.344670pt;}
.yb{bottom:3661.980295pt;}
.ya{bottom:3716.615920pt;}
.y9{bottom:3771.251545pt;}
.y8{bottom:3825.887170pt;}
.y7{bottom:3899.991450pt;}
.y1d{bottom:3906.051412pt;}
.y5{bottom:4036.948407pt;}
.y6{bottom:4046.198303pt;}
.y4{bottom:4087.032206pt;}
.y3{bottom:4119.708468pt;}
.y2{bottom:4203.752730pt;}
.y1{bottom:4317.580377pt;}
.h4{height:81.954809pt;}
.hb{height:116.005942pt;}
.h12{height:122.932213pt;}
.hf{height:126.573802pt;}
.h8{height:128.204188pt;}
.h7{height:128.896248pt;}
.ha{height:136.590434pt;}
.h3{height:151.584954pt;}
.h10{height:152.281234pt;}
.h5{height:154.675498pt;}
.h9{height:161.696772pt;}
.h11{height:162.545898pt;}
.he{height:170.574789pt;}
.hd{height:174.399347pt;}
.hc{height:182.620548pt;}
.h6{height:185.609508pt;}
.h2{height:267.329824pt;}
.h0{height:4493.858667pt;}
.h1{height:4494.000000pt;}
.w0{width:3178.582667pt;}
.w1{width:3178.666667pt;}
.x0{left:0.000000pt;}
.x6{left:79.649526pt;}
.x9{left:88.474401pt;}
.xc{left:109.611145pt;}
.xb{left:138.937519pt;}
.xa{left:140.052625pt;}
.x8{left:195.707384pt;}
.x1{left:483.116822pt;}
.x5{left:524.165521pt;}
.x3{left:560.191671pt;}
.x7{left:659.851987pt;}
.x4{left:690.709348pt;}
.x2{left:935.283176pt;}
.x1e{left:1631.803993pt;}
.xe{left:1636.003921pt;}
.x15{left:1643.631429pt;}
.x11{left:1658.040975pt;}
.x17{left:1681.531324pt;}
.x19{left:1691.183389pt;}
.x18{left:1707.224463pt;}
.xf{left:1718.494346pt;}
.x10{left:1921.004913pt;}
.x1b{left:1931.776654pt;}
.x12{left:1995.479371pt;}
.xd{left:2010.674976pt;}
.x1c{left:2037.990503pt;}
.x1a{left:2073.943533pt;}
.x1f{left:2096.195382pt;}
.x1d{left:2202.980494pt;}
.x14{left:2268.218767pt;}
.x13{left:2299.130968pt;}
.x16{left:2550.322311pt;}
}




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