
    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_0c7b789c7e799fc02db68181.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.777000;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_8af2009e2de3cb2d7e7f39c2.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.922000;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_98e990c93ee97c3c8025b2c7.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.688000;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_f56b0a2e774d6ac945be0f24.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.451000;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_1d39119fda1342ea6953cdc8.woff2')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_14f7de5f98f523bfb2cdb879.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.901000;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_bda4afe170b87378bb48bd11.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.901000;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_255d3ecb790922bd97d909a4.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.714000;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_583c5eeae560b1ac842fe3d8.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.716000;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_34e13d3343d7330bcdfccc08.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.389000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-23.754000px;}
.v3{vertical-align:-10.662000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:12.078000px;}
.v1{vertical-align:31.236000px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.003924px;}
.lsa{letter-spacing:0.024161px;}
.ls0{letter-spacing:2.986053px;}
.ls6{letter-spacing:9.032735px;}
.lsb{letter-spacing:9.098189px;}
.ls5{letter-spacing:23.432747px;}
.lsd{letter-spacing:29.389115px;}
.ls9{letter-spacing:29.912752px;}
.lsc{letter-spacing:30.894571px;}
.ls3{letter-spacing:31.287299px;}
.ls4{letter-spacing:31.876390px;}
.ls8{letter-spacing:32.727300px;}
.ls7{letter-spacing:34.101847px;}
.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;}
}
.ws8{word-spacing:-22.416000px;}
.ws2e{word-spacing:-18.183288px;}
.ws18{word-spacing:-1.885092px;}
.ws11{word-spacing:-1.557819px;}
.ws17{word-spacing:-0.968728px;}
.ws33{word-spacing:-0.248727px;}
.ws7{word-spacing:0.000000px;}
.ws20{word-spacing:0.798546px;}
.ws1e{word-spacing:0.929455px;}
.ws26{word-spacing:1.256728px;}
.ws1a{word-spacing:1.649456px;}
.wsc{word-spacing:1.714911px;}
.ws36{word-spacing:2.238547px;}
.ws3b{word-spacing:3.024003px;}
.ws1d{word-spacing:3.220366px;}
.ws19{word-spacing:3.547639px;}
.ws5{word-spacing:3.613094px;}
.wsb{word-spacing:3.678549px;}
.ws14{word-spacing:3.809458px;}
.wsf{word-spacing:4.071276px;}
.wsa{word-spacing:4.162913px;}
.ws28{word-spacing:4.228367px;}
.ws25{word-spacing:4.483200px;}
.ws2f{word-spacing:4.660368px;}
.ws29{word-spacing:4.856731px;}
.ws2a{word-spacing:5.249459px;}
.ws37{word-spacing:5.314914px;}
.ws24{word-spacing:5.445823px;}
.ws35{word-spacing:5.511277px;}
.ws15{word-spacing:5.707641px;}
.ws30{word-spacing:6.296733px;}
.ws32{word-spacing:6.624006px;}
.ws3d{word-spacing:6.885824px;}
.ws3c{word-spacing:7.213097px;}
.ws23{word-spacing:7.344006px;}
.ws38{word-spacing:7.474915px;}
.ws13{word-spacing:7.933098px;}
.ws3{word-spacing:7.990856px;}
.ws3e{word-spacing:7.998552px;}
.ws10{word-spacing:8.914917px;}
.ws27{word-spacing:9.176735px;}
.ws4{word-spacing:9.589000px;}
.ws12{word-spacing:10.158554px;}
.ws6{word-spacing:10.878555px;}
.ws1c{word-spacing:11.140373px;}
.ws2d{word-spacing:11.205828px;}
.ws2c{word-spacing:11.336737px;}
.wsd{word-spacing:11.467646px;}
.ws1f{word-spacing:11.764046px;}
.ws1b{word-spacing:11.925828px;}
.ws39{word-spacing:12.253101px;}
.ws3f{word-spacing:12.973102px;}
.ws2b{word-spacing:13.064738px;}
.wse{word-spacing:13.169466px;}
.ws21{word-spacing:13.693102px;}
.ws1{word-spacing:16.418975px;}
.ws2{word-spacing:16.567698px;}
.ws3a{word-spacing:29.847298px;}
.ws31{word-spacing:30.370934px;}
.ws0{word-spacing:31.322414px;}
.ws34{word-spacing:32.138209px;}
.ws22{word-spacing:33.774574px;}
.ws9{word-spacing:39.639306px;}
.ws16{word-spacing:58.281600px;}
._11{margin-left:-6.218187px;}
._1{margin-left:-4.312955px;}
._1c{margin-left:-3.274519px;}
._2{margin-left:-2.223667px;}
._19{margin-left:-1.112728px;}
._21{width:1.050852px;}
._3{width:2.223667px;}
._0{width:4.610401px;}
._17{width:17.672742px;}
._27{width:19.049078px;}
._1e{width:20.878228px;}
._1d{width:22.840077px;}
._25{width:25.116377px;}
._18{width:27.620052px;}
._1a{width:29.521814px;}
._26{width:30.551304px;}
._15{width:32.461903px;}
._1b{width:34.558240px;}
._29{width:40.514608px;}
._2a{width:42.283672px;}
._1f{width:45.165463px;}
._24{width:46.407311px;}
._20{width:52.100072px;}
._28{width:55.114562px;}
._16{width:57.990986px;}
._5{width:60.545505px;}
._7{width:66.894601px;}
._23{width:75.272790px;}
._22{width:80.697600px;}
._6{width:1086.610025px;}
._d{width:1114.366354px;}
._c{width:1168.039126px;}
._b{width:1286.446498px;}
._13{width:1349.604819px;}
._10{width:1411.661147px;}
._12{width:1552.515868px;}
._9{width:1672.103212px;}
._8{width:1689.645044px;}
._a{width:1756.997828px;}
._e{width:1787.034441px;}
._f{width:1904.008859px;}
._4{width:2079.361733px;}
._14{width:2134.278142px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:47.820600px;}
.fs0{font-size:59.775600px;}
.fs5{font-size:65.454600px;}
.fs2{font-size:71.731200px;}
.fs3{font-size:86.077200px;}
.fs1{font-size:148.722600px;}
.y0{bottom:0.000000px;}
.y2c{bottom:93.813000px;}
.y2b{bottom:176.005500px;}
.y2a{bottom:196.329000px;}
.y50{bottom:200.970000px;}
.y29{bottom:216.652500px;}
.y4f{bottom:221.295000px;}
.y6b{bottom:225.805500px;}
.y28{bottom:237.090000px;}
.y4e{bottom:241.618500px;}
.y6a{bottom:246.129000px;}
.y27{bottom:257.413500px;}
.y4d{bottom:261.942000px;}
.y26{bottom:277.737000px;}
.y69{bottom:283.786500px;}
.y4c{bottom:291.549000px;}
.y25{bottom:298.060500px;}
.y68{bottom:321.442500px;}
.y4b{bottom:323.655000px;}
.y24{bottom:334.915500px;}
.y4a{bottom:355.762500px;}
.y67{bottom:359.100000px;}
.y23{bottom:381.301500px;}
.y49{bottom:387.868500px;}
.y66{bottom:396.757500px;}
.y22{bottom:401.626500px;}
.y48{bottom:417.475500px;}
.y21{bottom:421.950000px;}
.y65{bottom:436.087500px;}
.y20{bottom:442.273500px;}
.y47{bottom:452.431500px;}
.y1f{bottom:462.711000px;}
.y1e{bottom:483.034500px;}
.y64{bottom:488.590500px;}
.y7f{bottom:492.319500px;}
.y46{bottom:495.262500px;}
.y1d{bottom:503.358000px;}
.y7e{bottom:512.644500px;}
.y45{bottom:515.586000px;}
.y63{bottom:518.065500px;}
.y1c{bottom:523.681500px;}
.y7{bottom:532.603500px;}
.y7d{bottom:532.968000px;}
.y44{bottom:535.909500px;}
.y62{bottom:538.389000px;}
.y1b{bottom:544.005000px;}
.y7c{bottom:553.291500px;}
.y1a{bottom:564.442500px;}
.y43{bottom:565.516500px;}
.y6{bottom:569.326500px;}
.y61{bottom:569.512500px;}
.y7b{bottom:573.615000px;}
.y19{bottom:584.766000px;}
.y42{bottom:585.840000px;}
.y7a{bottom:593.938500px;}
.y5{bottom:598.059000px;}
.y18{bottom:605.089500px;}
.y60{bottom:611.589000px;}
.y41{bottom:613.440000px;}
.y17{bottom:625.414500px;}
.y79{bottom:630.468000px;}
.y5f{bottom:631.912500px;}
.y16{bottom:646.681500px;}
.y40{bottom:648.004500px;}
.y5e{bottom:663.034500px;}
.y3f{bottom:668.328000px;}
.y78{bottom:676.048500px;}
.y15{bottom:683.595000px;}
.y3e{bottom:695.928000px;}
.y5d{bottom:705.112500px;}
.y77{bottom:709.821000px;}
.y14{bottom:720.508500px;}
.y5c{bottom:725.436000px;}
.y3d{bottom:730.491000px;}
.y76{bottom:743.595000px;}
.y3c{bottom:750.814500px;}
.y13{bottom:757.422000px;}
.y4{bottom:759.814500px;}
.y5b{bottom:764.766000px;}
.y3b{bottom:771.139500px;}
.y75{bottom:777.367500px;}
.y12{bottom:794.335500px;}
.y3{bottom:797.095500px;}
.y3a{bottom:798.738000px;}
.y74{bottom:811.141500px;}
.y11{bottom:814.794000px;}
.y5a{bottom:817.269000px;}
.y73{bottom:831.465000px;}
.y39{bottom:833.302500px;}
.y10{bottom:835.254000px;}
.y59{bottom:837.592500px;}
.y2{bottom:841.927500px;}
.y58{bottom:867.067500px;}
.y72{bottom:867.993000px;}
.y38{bottom:868.260000px;}
.yf{bottom:872.167500px;}
.y57{bottom:887.392500px;}
.y56{bottom:908.686500px;}
.ye{bottom:909.081000px;}
.y37{bottom:911.089500px;}
.y71{bottom:913.573500px;}
.y55{bottom:929.010000px;}
.y36{bottom:931.413000px;}
.yd{bottom:945.994500px;}
.y70{bottom:947.347500px;}
.y35{bottom:951.738000px;}
.yc{bottom:966.454500px;}
.y54{bottom:966.667500px;}
.y34{bottom:976.702500px;}
.y6f{bottom:981.121500px;}
.yb{bottom:986.913000px;}
.y33{bottom:997.026000px;}
.y53{bottom:1004.325000px;}
.ya{bottom:1007.373000px;}
.y6e{bottom:1014.894000px;}
.y32{bottom:1017.349500px;}
.y31{bottom:1037.674500px;}
.y52{bottom:1041.982500px;}
.y9{bottom:1044.286500px;}
.y6d{bottom:1048.668000px;}
.y30{bottom:1057.998000px;}
.y2f{bottom:1078.321500px;}
.y51{bottom:1079.638500px;}
.y8{bottom:1081.200000px;}
.y6c{bottom:1082.440500px;}
.y1{bottom:1087.587000px;}
.y2e{bottom:1098.645000px;}
.y2d{bottom:1118.968500px;}
.h6{height:25.336950px;}
.h2{height:41.484266px;}
.h9{height:45.818220px;}
.h7{height:49.090950px;}
.h8{height:50.211840px;}
.h4{height:51.359539px;}
.ha{height:61.168950px;}
.h5{height:71.704081px;}
.h3{height:106.485382px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:127.426500px;}
.x3{left:131.838000px;}
.x4{left:139.332000px;}
.x5{left:151.972500px;}
.x6{left:164.010000px;}
.x8{left:256.009500px;}
.x1{left:286.581000px;}
.x7{left:438.466500px;}
@media print{
.v2{vertical-align:-21.114667pt;}
.v3{vertical-align:-9.477333pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:10.736000pt;}
.v1{vertical-align:27.765333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.003488pt;}
.lsa{letter-spacing:0.021477pt;}
.ls0{letter-spacing:2.654270pt;}
.ls6{letter-spacing:8.029098pt;}
.lsb{letter-spacing:8.087279pt;}
.ls5{letter-spacing:20.829108pt;}
.lsd{letter-spacing:26.123658pt;}
.ls9{letter-spacing:26.589113pt;}
.lsc{letter-spacing:27.461841pt;}
.ls3{letter-spacing:27.810932pt;}
.ls4{letter-spacing:28.334569pt;}
.ls8{letter-spacing:29.090933pt;}
.ls7{letter-spacing:30.312753pt;}
.ws8{word-spacing:-19.925333pt;}
.ws2e{word-spacing:-16.162923pt;}
.ws18{word-spacing:-1.675638pt;}
.ws11{word-spacing:-1.384728pt;}
.ws17{word-spacing:-0.861092pt;}
.ws33{word-spacing:-0.221091pt;}
.ws7{word-spacing:0.000000pt;}
.ws20{word-spacing:0.709819pt;}
.ws1e{word-spacing:0.826183pt;}
.ws26{word-spacing:1.117092pt;}
.ws1a{word-spacing:1.466183pt;}
.wsc{word-spacing:1.524365pt;}
.ws36{word-spacing:1.989820pt;}
.ws3b{word-spacing:2.688002pt;}
.ws1d{word-spacing:2.862548pt;}
.ws19{word-spacing:3.153457pt;}
.ws5{word-spacing:3.211639pt;}
.wsb{word-spacing:3.269821pt;}
.ws14{word-spacing:3.386185pt;}
.wsf{word-spacing:3.618912pt;}
.wsa{word-spacing:3.700367pt;}
.ws28{word-spacing:3.758549pt;}
.ws25{word-spacing:3.985067pt;}
.ws2f{word-spacing:4.142549pt;}
.ws29{word-spacing:4.317095pt;}
.ws2a{word-spacing:4.666186pt;}
.ws37{word-spacing:4.724368pt;}
.ws24{word-spacing:4.840731pt;}
.ws35{word-spacing:4.898913pt;}
.ws15{word-spacing:5.073459pt;}
.ws30{word-spacing:5.597096pt;}
.ws32{word-spacing:5.888005pt;}
.ws3d{word-spacing:6.120732pt;}
.ws3c{word-spacing:6.411642pt;}
.ws23{word-spacing:6.528005pt;}
.ws38{word-spacing:6.644369pt;}
.ws13{word-spacing:7.051642pt;}
.ws3{word-spacing:7.102983pt;}
.ws3e{word-spacing:7.109824pt;}
.ws10{word-spacing:7.924370pt;}
.ws27{word-spacing:8.157098pt;}
.ws4{word-spacing:8.523556pt;}
.ws12{word-spacing:9.029826pt;}
.ws6{word-spacing:9.669826pt;}
.ws1c{word-spacing:9.902554pt;}
.ws2d{word-spacing:9.960736pt;}
.ws2c{word-spacing:10.077099pt;}
.wsd{word-spacing:10.193463pt;}
.ws1f{word-spacing:10.456930pt;}
.ws1b{word-spacing:10.600736pt;}
.ws39{word-spacing:10.891645pt;}
.ws3f{word-spacing:11.531646pt;}
.ws2b{word-spacing:11.613101pt;}
.wse{word-spacing:11.706192pt;}
.ws21{word-spacing:12.171647pt;}
.ws1{word-spacing:14.594644pt;}
.ws2{word-spacing:14.726842pt;}
.ws3a{word-spacing:26.530931pt;}
.ws31{word-spacing:26.996386pt;}
.ws0{word-spacing:27.842146pt;}
.ws34{word-spacing:28.567297pt;}
.ws22{word-spacing:30.021843pt;}
.ws9{word-spacing:35.234938pt;}
.ws16{word-spacing:51.805867pt;}
._11{margin-left:-5.527277pt;}
._1{margin-left:-3.833738pt;}
._1c{margin-left:-2.910684pt;}
._2{margin-left:-1.976593pt;}
._19{margin-left:-0.989092pt;}
._21{width:0.934091pt;}
._3{width:1.976593pt;}
._0{width:4.098134pt;}
._17{width:15.709104pt;}
._27{width:16.932514pt;}
._1e{width:18.558425pt;}
._1d{width:20.302291pt;}
._25{width:22.325668pt;}
._18{width:24.551157pt;}
._1a{width:26.241612pt;}
._26{width:27.156715pt;}
._15{width:28.855025pt;}
._1b{width:30.718435pt;}
._29{width:36.012985pt;}
._2a{width:37.585486pt;}
._1f{width:40.147078pt;}
._24{width:41.250943pt;}
._20{width:46.311175pt;}
._28{width:48.990722pt;}
._16{width:51.547543pt;}
._5{width:53.818227pt;}
._7{width:59.461868pt;}
._23{width:66.909147pt;}
._22{width:71.731200pt;}
._6{width:965.875578pt;}
._d{width:990.547870pt;}
._c{width:1038.257001pt;}
._b{width:1143.507998pt;}
._13{width:1199.648728pt;}
._10{width:1254.809909pt;}
._12{width:1380.014105pt;}
._9{width:1486.313966pt;}
._8{width:1501.906706pt;}
._a{width:1561.775847pt;}
._e{width:1588.475059pt;}
._f{width:1692.452319pt;}
._4{width:1848.321540pt;}
._14{width:1897.136126pt;}
.fs4{font-size:42.507200pt;}
.fs0{font-size:53.133867pt;}
.fs5{font-size:58.181867pt;}
.fs2{font-size:63.761067pt;}
.fs3{font-size:76.513067pt;}
.fs1{font-size:132.197867pt;}
.y0{bottom:0.000000pt;}
.y2c{bottom:83.389333pt;}
.y2b{bottom:156.449333pt;}
.y2a{bottom:174.514667pt;}
.y50{bottom:178.640000pt;}
.y29{bottom:192.580000pt;}
.y4f{bottom:196.706667pt;}
.y6b{bottom:200.716000pt;}
.y28{bottom:210.746667pt;}
.y4e{bottom:214.772000pt;}
.y6a{bottom:218.781333pt;}
.y27{bottom:228.812000pt;}
.y4d{bottom:232.837333pt;}
.y26{bottom:246.877333pt;}
.y69{bottom:252.254667pt;}
.y4c{bottom:259.154667pt;}
.y25{bottom:264.942667pt;}
.y68{bottom:285.726667pt;}
.y4b{bottom:287.693333pt;}
.y24{bottom:297.702667pt;}
.y4a{bottom:316.233333pt;}
.y67{bottom:319.200000pt;}
.y23{bottom:338.934667pt;}
.y49{bottom:344.772000pt;}
.y66{bottom:352.673333pt;}
.y22{bottom:357.001333pt;}
.y48{bottom:371.089333pt;}
.y21{bottom:375.066667pt;}
.y65{bottom:387.633333pt;}
.y20{bottom:393.132000pt;}
.y47{bottom:402.161333pt;}
.y1f{bottom:411.298667pt;}
.y1e{bottom:429.364000pt;}
.y64{bottom:434.302667pt;}
.y7f{bottom:437.617333pt;}
.y46{bottom:440.233333pt;}
.y1d{bottom:447.429333pt;}
.y7e{bottom:455.684000pt;}
.y45{bottom:458.298667pt;}
.y63{bottom:460.502667pt;}
.y1c{bottom:465.494667pt;}
.y7{bottom:473.425333pt;}
.y7d{bottom:473.749333pt;}
.y44{bottom:476.364000pt;}
.y62{bottom:478.568000pt;}
.y1b{bottom:483.560000pt;}
.y7c{bottom:491.814667pt;}
.y1a{bottom:501.726667pt;}
.y43{bottom:502.681333pt;}
.y6{bottom:506.068000pt;}
.y61{bottom:506.233333pt;}
.y7b{bottom:509.880000pt;}
.y19{bottom:519.792000pt;}
.y42{bottom:520.746667pt;}
.y7a{bottom:527.945333pt;}
.y5{bottom:531.608000pt;}
.y18{bottom:537.857333pt;}
.y60{bottom:543.634667pt;}
.y41{bottom:545.280000pt;}
.y17{bottom:555.924000pt;}
.y79{bottom:560.416000pt;}
.y5f{bottom:561.700000pt;}
.y16{bottom:574.828000pt;}
.y40{bottom:576.004000pt;}
.y5e{bottom:589.364000pt;}
.y3f{bottom:594.069333pt;}
.y78{bottom:600.932000pt;}
.y15{bottom:607.640000pt;}
.y3e{bottom:618.602667pt;}
.y5d{bottom:626.766667pt;}
.y77{bottom:630.952000pt;}
.y14{bottom:640.452000pt;}
.y5c{bottom:644.832000pt;}
.y3d{bottom:649.325333pt;}
.y76{bottom:660.973333pt;}
.y3c{bottom:667.390667pt;}
.y13{bottom:673.264000pt;}
.y4{bottom:675.390667pt;}
.y5b{bottom:679.792000pt;}
.y3b{bottom:685.457333pt;}
.y75{bottom:690.993333pt;}
.y12{bottom:706.076000pt;}
.y3{bottom:708.529333pt;}
.y3a{bottom:709.989333pt;}
.y74{bottom:721.014667pt;}
.y11{bottom:724.261333pt;}
.y5a{bottom:726.461333pt;}
.y73{bottom:739.080000pt;}
.y39{bottom:740.713333pt;}
.y10{bottom:742.448000pt;}
.y59{bottom:744.526667pt;}
.y2{bottom:748.380000pt;}
.y58{bottom:770.726667pt;}
.y72{bottom:771.549333pt;}
.y38{bottom:771.786667pt;}
.yf{bottom:775.260000pt;}
.y57{bottom:788.793333pt;}
.y56{bottom:807.721333pt;}
.ye{bottom:808.072000pt;}
.y37{bottom:809.857333pt;}
.y71{bottom:812.065333pt;}
.y55{bottom:825.786667pt;}
.y36{bottom:827.922667pt;}
.yd{bottom:840.884000pt;}
.y70{bottom:842.086667pt;}
.y35{bottom:845.989333pt;}
.yc{bottom:859.070667pt;}
.y54{bottom:859.260000pt;}
.y34{bottom:868.180000pt;}
.y6f{bottom:872.108000pt;}
.yb{bottom:877.256000pt;}
.y33{bottom:886.245333pt;}
.y53{bottom:892.733333pt;}
.ya{bottom:895.442667pt;}
.y6e{bottom:902.128000pt;}
.y32{bottom:904.310667pt;}
.y31{bottom:922.377333pt;}
.y52{bottom:926.206667pt;}
.y9{bottom:928.254667pt;}
.y6d{bottom:932.149333pt;}
.y30{bottom:940.442667pt;}
.y2f{bottom:958.508000pt;}
.y51{bottom:959.678667pt;}
.y8{bottom:961.066667pt;}
.y6c{bottom:962.169333pt;}
.y1{bottom:966.744000pt;}
.y2e{bottom:976.573333pt;}
.y2d{bottom:994.638667pt;}
.h6{height:22.521733pt;}
.h2{height:36.874903pt;}
.h9{height:40.727307pt;}
.h7{height:43.636400pt;}
.h8{height:44.632747pt;}
.h4{height:45.652924pt;}
.ha{height:54.372400pt;}
.h5{height:63.736961pt;}
.h3{height:94.653673pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:113.268000pt;}
.x3{left:117.189333pt;}
.x4{left:123.850667pt;}
.x5{left:135.086667pt;}
.x6{left:145.786667pt;}
.x8{left:227.564000pt;}
.x1{left:254.738667pt;}
.x7{left:389.748000pt;}
}




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