
    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_4d60736ec820516b6e5a8dcf.woff')format("woff");}.ff1{font-family:ff1;line-height:0.952000;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_4d60736ec820516b6e5a8dcf.woff')format("woff");}.ff2{font-family:ff2;line-height:0.952000;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_73bf7b62eac4dd9adbc1c1f1.woff')format("woff");}.ff3{font-family:ff3;line-height:1.034000;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_56f293d9208798d5626192dd.woff')format("woff");}.ff4{font-family:ff4;line-height:1.034000;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_4d60736ec820516b6e5a8dcf.woff')format("woff");}.ff5{font-family:ff5;line-height:0.952000;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_4d60736ec820516b6e5a8dcf.woff')format("woff");}.ff6{font-family:ff6;line-height:0.952000;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_4109b3d51c7c5c764f3c9ed3.woff')format("woff");}.ff7{font-family:ff7;line-height:0.957000;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_946cfc4377f37b9ca1302aca.woff')format("woff");}.ff8{font-family:ff8;line-height:0.907000;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_6f32d04848f0ef1b7d2ee3d7.woff')format("woff");}.ff9{font-family:ff9;line-height:0.957000;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_4addd689ab439ae5c78fffa7.woff')format("woff");}.ffa{font-family:ffa;line-height:0.700000;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_37e1a5947c7aceb3373d3ac8.woff')format("woff");}.ffb{font-family:ffb;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;}
@font-face{font-family:ffc;src:url('chunks/assets/font_82b2171489e5721172279646.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_e054d89e8ed1af1685ddbff6.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_4b774721bcba53642f63571c.woff')format("woff");}.ffe{font-family:ffe;line-height:0.925781;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-42.768000px;}
.v2{vertical-align:-31.350600px;}
.v1{vertical-align:-13.500000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:21.600000px;}
.ls23{letter-spacing:-6.210000px;}
.ls2f{letter-spacing:-2.256000px;}
.ls27{letter-spacing:-0.768000px;}
.ls31{letter-spacing:-0.720000px;}
.ls9{letter-spacing:-0.540000px;}
.lsa{letter-spacing:-0.270000px;}
.ls1{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.000006px;}
.ls15{letter-spacing:0.000330px;}
.ls34{letter-spacing:0.001200px;}
.ls21{letter-spacing:0.019050px;}
.ls1e{letter-spacing:0.027000px;}
.ls2{letter-spacing:0.054000px;}
.ls1f{letter-spacing:0.058206px;}
.ls20{letter-spacing:0.058806px;}
.ls29{letter-spacing:0.081000px;}
.ls5{letter-spacing:0.108000px;}
.ls2a{letter-spacing:0.157410px;}
.ls0{letter-spacing:0.162000px;}
.lsf{letter-spacing:0.189000px;}
.ls1b{letter-spacing:0.201006px;}
.ls6{letter-spacing:0.216000px;}
.ls28{letter-spacing:0.243000px;}
.ls26{letter-spacing:0.270000px;}
.ls14{letter-spacing:0.297000px;}
.ls1a{letter-spacing:0.314406px;}
.ls3{letter-spacing:0.324000px;}
.lsb{letter-spacing:0.351000px;}
.ls8{letter-spacing:0.366000px;}
.ls4{letter-spacing:0.378000px;}
.ls2d{letter-spacing:0.404400px;}
.ls2e{letter-spacing:0.405000px;}
.ls7{letter-spacing:0.432000px;}
.ls32{letter-spacing:0.441000px;}
.ls33{letter-spacing:0.441600px;}
.ls2b{letter-spacing:0.459000px;}
.ls17{letter-spacing:0.472206px;}
.ls1d{letter-spacing:0.486000px;}
.ls19{letter-spacing:0.539400px;}
.ls12{letter-spacing:0.540000px;}
.ls30{letter-spacing:0.594000px;}
.ls1c{letter-spacing:0.648000px;}
.ls2c{letter-spacing:0.702000px;}
.ls35{letter-spacing:0.783000px;}
.ls16{letter-spacing:0.809400px;}
.ls18{letter-spacing:0.810000px;}
.ls37{letter-spacing:0.918000px;}
.ls11{letter-spacing:0.972000px;}
.ls36{letter-spacing:0.999000px;}
.lsc{letter-spacing:1.004400px;}
.ls10{letter-spacing:2.106000px;}
.lsd{letter-spacing:4.632000px;}
.ls22{letter-spacing:4.698000px;}
.lse{letter-spacing:4.993200px;}
.ls24{letter-spacing:14.591485px;}
.ls25{letter-spacing:15.876000px;}
.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;}
}
.ws13{word-spacing:-54.000000px;}
.ws1b{word-spacing:-14.591485px;}
.ws29{word-spacing:-14.472000px;}
.wsc{word-spacing:-14.310000px;}
.ws24{word-spacing:-14.283000px;}
.ws23{word-spacing:-14.148000px;}
.ws25{word-spacing:-14.121000px;}
.ws26{word-spacing:-13.986000px;}
.ws8{word-spacing:-13.878000px;}
.ws0{word-spacing:-9.828000px;}
.ws1e{word-spacing:-8.248284px;}
.wsd{word-spacing:-8.090874px;}
.ws27{word-spacing:-8.016000px;}
.ws1d{word-spacing:-7.968000px;}
.ws22{word-spacing:-6.480000px;}
.ws19{word-spacing:-4.698000px;}
.ws2a{word-spacing:-1.026000px;}
.wse{word-spacing:-0.972000px;}
.ws2b{word-spacing:-0.918000px;}
.ws10{word-spacing:-0.810000px;}
.ws21{word-spacing:-0.702000px;}
.ws11{word-spacing:-0.648000px;}
.ws28{word-spacing:-0.594000px;}
.wsf{word-spacing:-0.540000px;}
.ws12{word-spacing:-0.486000px;}
.wsb{word-spacing:-0.432000px;}
.ws5{word-spacing:-0.378000px;}
.ws4{word-spacing:-0.324000px;}
.ws1c{word-spacing:-0.270000px;}
.ws7{word-spacing:-0.216000px;}
.ws2{word-spacing:-0.162000px;}
.ws6{word-spacing:-0.108000px;}
.ws3{word-spacing:-0.054000px;}
.ws1{word-spacing:0.000000px;}
.wsa{word-spacing:0.270000px;}
.ws9{word-spacing:0.540000px;}
.ws15{word-spacing:5.486400px;}
.ws1a{word-spacing:6.210000px;}
.ws1f{word-spacing:7.236000px;}
.ws18{word-spacing:9.189600px;}
.ws20{word-spacing:14.904000px;}
.ws16{word-spacing:52.493400px;}
.ws17{word-spacing:155.466000px;}
.ws14{word-spacing:156.897000px;}
._11{margin-left:-15.078600px;}
._2{margin-left:-13.893000px;}
._12{margin-left:-11.914200px;}
._c{margin-left:-6.226200px;}
._9{margin-left:-5.067000px;}
._1{margin-left:-3.628800px;}
._6{margin-left:-2.376000px;}
._3{margin-left:-1.248000px;}
._0{width:1.680000px;}
._5{width:3.272400px;}
._4{width:4.320000px;}
._7{width:5.362200px;}
._b{width:7.052400px;}
._a{width:8.991000px;}
._14{width:10.081800px;}
._8{width:13.554000px;}
._10{width:15.552000px;}
._13{width:34.938000px;}
._e{width:64.848600px;}
._f{width:75.114000px;}
._d{width:151.317600px;}
.fc2{color:rgb(26,58,94);}
.fc3{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs5{font-size:31.312200px;}
.fs4{font-size:31.482000px;}
.fs3{font-size:42.000000px;}
.fs0{font-size:48.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:78.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:45.610500px;}
.y4d{bottom:76.110150px;}
.y27{bottom:76.110300px;}
.y4c{bottom:94.110150px;}
.y26{bottom:94.110300px;}
.y4b{bottom:112.110150px;}
.y25{bottom:112.110300px;}
.y4a{bottom:130.110150px;}
.y24{bottom:130.110300px;}
.y49{bottom:148.110150px;}
.y23{bottom:148.110300px;}
.y48{bottom:166.110150px;}
.y22{bottom:166.110300px;}
.y47{bottom:184.110150px;}
.y21{bottom:184.110300px;}
.y46{bottom:202.110150px;}
.y20{bottom:202.110300px;}
.y45{bottom:220.110150px;}
.y1f{bottom:220.110300px;}
.y44{bottom:238.110150px;}
.y1e{bottom:238.110300px;}
.y43{bottom:256.110150px;}
.y1d{bottom:256.110300px;}
.y42{bottom:274.110150px;}
.y1c{bottom:274.110300px;}
.y41{bottom:292.110150px;}
.y1b{bottom:292.110300px;}
.y40{bottom:310.110150px;}
.y1a{bottom:310.110300px;}
.y3f{bottom:328.110150px;}
.y19{bottom:328.110300px;}
.y3e{bottom:346.110150px;}
.y18{bottom:346.110300px;}
.y3d{bottom:364.110150px;}
.y17{bottom:364.110300px;}
.y3c{bottom:382.110150px;}
.y16{bottom:382.110300px;}
.y5f{bottom:389.407350px;}
.y60{bottom:392.272650px;}
.y5e{bottom:400.099350px;}
.y61{bottom:400.100850px;}
.y3b{bottom:400.110150px;}
.y15{bottom:400.110300px;}
.y5d{bottom:408.725850px;}
.y3a{bottom:418.110150px;}
.y14{bottom:418.110300px;}
.y39{bottom:436.110150px;}
.y13{bottom:436.110300px;}
.y5c{bottom:454.110150px;}
.y12{bottom:454.110300px;}
.y5b{bottom:472.110150px;}
.y11{bottom:472.110300px;}
.y38{bottom:490.110150px;}
.y10{bottom:490.110300px;}
.y37{bottom:508.110150px;}
.yf{bottom:508.110300px;}
.y36{bottom:526.110150px;}
.ye{bottom:526.110300px;}
.y5a{bottom:544.110150px;}
.yd{bottom:544.110300px;}
.y35{bottom:562.110150px;}
.y58{bottom:562.110300px;}
.y2a{bottom:576.717000px;}
.y3{bottom:576.895650px;}
.y59{bottom:580.110150px;}
.yc{bottom:580.110300px;}
.y34{bottom:598.110150px;}
.y57{bottom:598.110300px;}
.yb{bottom:611.689950px;}
.y33{bottom:616.110150px;}
.y56{bottom:616.110300px;}
.ya{bottom:629.689950px;}
.y32{bottom:634.110150px;}
.y55{bottom:634.110300px;}
.y9{bottom:647.689950px;}
.y31{bottom:652.110150px;}
.y54{bottom:652.110300px;}
.y8{bottom:665.689950px;}
.y30{bottom:670.110150px;}
.y53{bottom:670.110300px;}
.y2f{bottom:688.110150px;}
.y52{bottom:688.110300px;}
.y2{bottom:704.520150px;}
.y2e{bottom:706.110150px;}
.y51{bottom:706.110300px;}
.y2d{bottom:724.110150px;}
.y50{bottom:724.110300px;}
.y7{bottom:733.119000px;}
.y2c{bottom:742.110150px;}
.y4f{bottom:742.110300px;}
.y6{bottom:746.619000px;}
.y2b{bottom:760.110150px;}
.y4e{bottom:760.110300px;}
.y5{bottom:760.119000px;}
.y29{bottom:784.747950px;}
.y4{bottom:787.119000px;}
.y28{bottom:796.747950px;}
.h9{height:25.331570px;}
.h5{height:33.978000px;}
.h8{height:36.571289px;}
.h2{height:38.304000px;}
.h6{height:43.092000px;}
.h4{height:43.686000px;}
.ha{height:43.729800px;}
.hb{height:47.068938px;}
.h7{height:48.546000px;}
.h3{height:62.244000px;}
.h0{height:850.393500px;}
.h1{height:850.500000px;}
.w1{width:616.500000px;}
.w0{width:616.536000px;}
.x0{left:0.000000px;}
.x3{left:36.097500px;}
.x8{left:63.779550px;}
.x14{left:70.880250px;}
.xa{left:78.784050px;}
.x9{left:85.039350px;}
.x15{left:93.543300px;}
.x2{left:98.984100px;}
.x7{left:106.299150px;}
.x12{left:132.323700px;}
.xf{left:139.117950px;}
.xd{left:154.914150px;}
.x10{left:170.430450px;}
.xe{left:182.102400px;}
.xc{left:189.133950px;}
.x11{left:196.961700px;}
.x5{left:260.568300px;}
.x1{left:300.419850px;}
.x13{left:301.541850px;}
.x6{left:308.154900px;}
.x4{left:382.275150px;}
.xb{left:592.254900px;}
@media print{
.v3{vertical-align:-38.016000pt;}
.v2{vertical-align:-27.867200pt;}
.v1{vertical-align:-12.000000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:19.200000pt;}
.ls23{letter-spacing:-5.520000pt;}
.ls2f{letter-spacing:-2.005333pt;}
.ls27{letter-spacing:-0.682667pt;}
.ls31{letter-spacing:-0.640000pt;}
.ls9{letter-spacing:-0.480000pt;}
.lsa{letter-spacing:-0.240000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.000005pt;}
.ls15{letter-spacing:0.000293pt;}
.ls34{letter-spacing:0.001067pt;}
.ls21{letter-spacing:0.016933pt;}
.ls1e{letter-spacing:0.024000pt;}
.ls2{letter-spacing:0.048000pt;}
.ls1f{letter-spacing:0.051739pt;}
.ls20{letter-spacing:0.052272pt;}
.ls29{letter-spacing:0.072000pt;}
.ls5{letter-spacing:0.096000pt;}
.ls2a{letter-spacing:0.139920pt;}
.ls0{letter-spacing:0.144000pt;}
.lsf{letter-spacing:0.168000pt;}
.ls1b{letter-spacing:0.178672pt;}
.ls6{letter-spacing:0.192000pt;}
.ls28{letter-spacing:0.216000pt;}
.ls26{letter-spacing:0.240000pt;}
.ls14{letter-spacing:0.264000pt;}
.ls1a{letter-spacing:0.279472pt;}
.ls3{letter-spacing:0.288000pt;}
.lsb{letter-spacing:0.312000pt;}
.ls8{letter-spacing:0.325333pt;}
.ls4{letter-spacing:0.336000pt;}
.ls2d{letter-spacing:0.359467pt;}
.ls2e{letter-spacing:0.360000pt;}
.ls7{letter-spacing:0.384000pt;}
.ls32{letter-spacing:0.392000pt;}
.ls33{letter-spacing:0.392533pt;}
.ls2b{letter-spacing:0.408000pt;}
.ls17{letter-spacing:0.419739pt;}
.ls1d{letter-spacing:0.432000pt;}
.ls19{letter-spacing:0.479467pt;}
.ls12{letter-spacing:0.480000pt;}
.ls30{letter-spacing:0.528000pt;}
.ls1c{letter-spacing:0.576000pt;}
.ls2c{letter-spacing:0.624000pt;}
.ls35{letter-spacing:0.696000pt;}
.ls16{letter-spacing:0.719467pt;}
.ls18{letter-spacing:0.720000pt;}
.ls37{letter-spacing:0.816000pt;}
.ls11{letter-spacing:0.864000pt;}
.ls36{letter-spacing:0.888000pt;}
.lsc{letter-spacing:0.892800pt;}
.ls10{letter-spacing:1.872000pt;}
.lsd{letter-spacing:4.117333pt;}
.ls22{letter-spacing:4.176000pt;}
.lse{letter-spacing:4.438400pt;}
.ls24{letter-spacing:12.970209pt;}
.ls25{letter-spacing:14.112000pt;}
.ws13{word-spacing:-48.000000pt;}
.ws1b{word-spacing:-12.970209pt;}
.ws29{word-spacing:-12.864000pt;}
.wsc{word-spacing:-12.720000pt;}
.ws24{word-spacing:-12.696000pt;}
.ws23{word-spacing:-12.576000pt;}
.ws25{word-spacing:-12.552000pt;}
.ws26{word-spacing:-12.432000pt;}
.ws8{word-spacing:-12.336000pt;}
.ws0{word-spacing:-8.736000pt;}
.ws1e{word-spacing:-7.331808pt;}
.wsd{word-spacing:-7.191888pt;}
.ws27{word-spacing:-7.125333pt;}
.ws1d{word-spacing:-7.082667pt;}
.ws22{word-spacing:-5.760000pt;}
.ws19{word-spacing:-4.176000pt;}
.ws2a{word-spacing:-0.912000pt;}
.wse{word-spacing:-0.864000pt;}
.ws2b{word-spacing:-0.816000pt;}
.ws10{word-spacing:-0.720000pt;}
.ws21{word-spacing:-0.624000pt;}
.ws11{word-spacing:-0.576000pt;}
.ws28{word-spacing:-0.528000pt;}
.wsf{word-spacing:-0.480000pt;}
.ws12{word-spacing:-0.432000pt;}
.wsb{word-spacing:-0.384000pt;}
.ws5{word-spacing:-0.336000pt;}
.ws4{word-spacing:-0.288000pt;}
.ws1c{word-spacing:-0.240000pt;}
.ws7{word-spacing:-0.192000pt;}
.ws2{word-spacing:-0.144000pt;}
.ws6{word-spacing:-0.096000pt;}
.ws3{word-spacing:-0.048000pt;}
.ws1{word-spacing:0.000000pt;}
.wsa{word-spacing:0.240000pt;}
.ws9{word-spacing:0.480000pt;}
.ws15{word-spacing:4.876800pt;}
.ws1a{word-spacing:5.520000pt;}
.ws1f{word-spacing:6.432000pt;}
.ws18{word-spacing:8.168533pt;}
.ws20{word-spacing:13.248000pt;}
.ws16{word-spacing:46.660800pt;}
.ws17{word-spacing:138.192000pt;}
.ws14{word-spacing:139.464000pt;}
._11{margin-left:-13.403200pt;}
._2{margin-left:-12.349333pt;}
._12{margin-left:-10.590400pt;}
._c{margin-left:-5.534400pt;}
._9{margin-left:-4.504000pt;}
._1{margin-left:-3.225600pt;}
._6{margin-left:-2.112000pt;}
._3{margin-left:-1.109333pt;}
._0{width:1.493333pt;}
._5{width:2.908800pt;}
._4{width:3.840000pt;}
._7{width:4.766400pt;}
._b{width:6.268800pt;}
._a{width:7.992000pt;}
._14{width:8.961600pt;}
._8{width:12.048000pt;}
._10{width:13.824000pt;}
._13{width:31.056000pt;}
._e{width:57.643200pt;}
._f{width:66.768000pt;}
._d{width:134.504533pt;}
.fs5{font-size:27.833067pt;}
.fs4{font-size:27.984000pt;}
.fs3{font-size:37.333333pt;}
.fs0{font-size:42.666667pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:69.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:40.542667pt;}
.y4d{bottom:67.653467pt;}
.y27{bottom:67.653600pt;}
.y4c{bottom:83.653467pt;}
.y26{bottom:83.653600pt;}
.y4b{bottom:99.653467pt;}
.y25{bottom:99.653600pt;}
.y4a{bottom:115.653467pt;}
.y24{bottom:115.653600pt;}
.y49{bottom:131.653467pt;}
.y23{bottom:131.653600pt;}
.y48{bottom:147.653467pt;}
.y22{bottom:147.653600pt;}
.y47{bottom:163.653467pt;}
.y21{bottom:163.653600pt;}
.y46{bottom:179.653467pt;}
.y20{bottom:179.653600pt;}
.y45{bottom:195.653467pt;}
.y1f{bottom:195.653600pt;}
.y44{bottom:211.653467pt;}
.y1e{bottom:211.653600pt;}
.y43{bottom:227.653467pt;}
.y1d{bottom:227.653600pt;}
.y42{bottom:243.653467pt;}
.y1c{bottom:243.653600pt;}
.y41{bottom:259.653467pt;}
.y1b{bottom:259.653600pt;}
.y40{bottom:275.653467pt;}
.y1a{bottom:275.653600pt;}
.y3f{bottom:291.653467pt;}
.y19{bottom:291.653600pt;}
.y3e{bottom:307.653467pt;}
.y18{bottom:307.653600pt;}
.y3d{bottom:323.653467pt;}
.y17{bottom:323.653600pt;}
.y3c{bottom:339.653467pt;}
.y16{bottom:339.653600pt;}
.y5f{bottom:346.139867pt;}
.y60{bottom:348.686800pt;}
.y5e{bottom:355.643867pt;}
.y61{bottom:355.645200pt;}
.y3b{bottom:355.653467pt;}
.y15{bottom:355.653600pt;}
.y5d{bottom:363.311867pt;}
.y3a{bottom:371.653467pt;}
.y14{bottom:371.653600pt;}
.y39{bottom:387.653467pt;}
.y13{bottom:387.653600pt;}
.y5c{bottom:403.653467pt;}
.y12{bottom:403.653600pt;}
.y5b{bottom:419.653467pt;}
.y11{bottom:419.653600pt;}
.y38{bottom:435.653467pt;}
.y10{bottom:435.653600pt;}
.y37{bottom:451.653467pt;}
.yf{bottom:451.653600pt;}
.y36{bottom:467.653467pt;}
.ye{bottom:467.653600pt;}
.y5a{bottom:483.653467pt;}
.yd{bottom:483.653600pt;}
.y35{bottom:499.653467pt;}
.y58{bottom:499.653600pt;}
.y2a{bottom:512.637333pt;}
.y3{bottom:512.796133pt;}
.y59{bottom:515.653467pt;}
.yc{bottom:515.653600pt;}
.y34{bottom:531.653467pt;}
.y57{bottom:531.653600pt;}
.yb{bottom:543.724400pt;}
.y33{bottom:547.653467pt;}
.y56{bottom:547.653600pt;}
.ya{bottom:559.724400pt;}
.y32{bottom:563.653467pt;}
.y55{bottom:563.653600pt;}
.y9{bottom:575.724400pt;}
.y31{bottom:579.653467pt;}
.y54{bottom:579.653600pt;}
.y8{bottom:591.724400pt;}
.y30{bottom:595.653467pt;}
.y53{bottom:595.653600pt;}
.y2f{bottom:611.653467pt;}
.y52{bottom:611.653600pt;}
.y2{bottom:626.240133pt;}
.y2e{bottom:627.653467pt;}
.y51{bottom:627.653600pt;}
.y2d{bottom:643.653467pt;}
.y50{bottom:643.653600pt;}
.y7{bottom:651.661333pt;}
.y2c{bottom:659.653467pt;}
.y4f{bottom:659.653600pt;}
.y6{bottom:663.661333pt;}
.y2b{bottom:675.653467pt;}
.y4e{bottom:675.653600pt;}
.y5{bottom:675.661333pt;}
.y29{bottom:697.553733pt;}
.y4{bottom:699.661333pt;}
.y28{bottom:708.220400pt;}
.h9{height:22.516951pt;}
.h5{height:30.202667pt;}
.h8{height:32.507812pt;}
.h2{height:34.048000pt;}
.h6{height:38.304000pt;}
.h4{height:38.832000pt;}
.ha{height:38.870933pt;}
.hb{height:41.839056pt;}
.h7{height:43.152000pt;}
.h3{height:55.328000pt;}
.h0{height:755.905333pt;}
.h1{height:756.000000pt;}
.w1{width:548.000000pt;}
.w0{width:548.032000pt;}
.x0{left:0.000000pt;}
.x3{left:32.086667pt;}
.x8{left:56.692933pt;}
.x14{left:63.004667pt;}
.xa{left:70.030267pt;}
.x9{left:75.590533pt;}
.x15{left:83.149600pt;}
.x2{left:87.985867pt;}
.x7{left:94.488133pt;}
.x12{left:117.621067pt;}
.xf{left:123.660400pt;}
.xd{left:137.701467pt;}
.x10{left:151.493733pt;}
.xe{left:161.868800pt;}
.xc{left:168.119067pt;}
.x11{left:175.077067pt;}
.x5{left:231.616267pt;}
.x1{left:267.039867pt;}
.x13{left:268.037200pt;}
.x6{left:273.915467pt;}
.x4{left:339.800133pt;}
.xb{left:526.448800pt;}
}




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