
    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_b21bd8a7e64b6af6d8ce5218.woff')format("woff");}.ff1{font-family:ff1;line-height:1.284180;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_12e14e4008175a0469703f74.woff')format("woff");}.ff2{font-family:ff2;line-height:0.774902;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_b2bc7771b006d14fd5d8cc91.woff')format("woff");}.ff3{font-family:ff3;line-height:0.776367;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_d96db5018acac4b1cb6a7846.woff')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_d3c8dbb041514b757149c09f.woff')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_a3dd1d17c0fc83afa0809915.woff')format("woff");}.ff6{font-family:ff6;line-height:1.432129;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_d0e38f408eeec9e2c54a82ca.woff')format("woff");}.ff7{font-family:ff7;line-height:1.401855;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_9fdd79867e291b35797f1edd.woff')format("woff");}.ff8{font-family:ff8;line-height:1.104492;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_6d28b67d4ce1e36dfadc1cbf.woff')format("woff");}.ff9{font-family:ff9;line-height:0.962402;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_625a06f1941c4ac1c817114a.woff')format("woff");}.ffa{font-family:ffa;line-height:0.768555;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_f5ef45ec2773ceb3fc574f65.woff')format("woff");}.ffb{font-family:ffb;line-height:1.432129;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_70c80e162ccfca8f3a62ac90.woff')format("woff");}.ffc{font-family:ffc;line-height:1.432129;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_c1c4a99d7522dd30d8013780.woff')format("woff");}.ffd{font-family:ffd;line-height:0.941406;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_5d123772bb4c8abe91c34807.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_bbe2ab9419e4e8362fbeeb34.woff')format("woff");}.fff{font-family:fff;line-height:1.402354;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.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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);}
.m2{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);}
.v1{vertical-align:-105.840000px;}
.v4{vertical-align:-82.800000px;}
.v2{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:23.760000px;}
.ls9{letter-spacing:-0.828000px;}
.ls7{letter-spacing:-0.305400px;}
.lse{letter-spacing:-0.262200px;}
.ls6{letter-spacing:-0.109200px;}
.lsa{letter-spacing:-0.089400px;}
.ls4{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.189735px;}
.ls1{letter-spacing:0.216000px;}
.lsd{letter-spacing:0.262200px;}
.ls5{letter-spacing:0.284602px;}
.ls3{letter-spacing:0.305280px;}
.ls8{letter-spacing:0.305400px;}
.lsb{letter-spacing:12.725280px;}
.lsc{letter-spacing:59.345280px;}
.lsf{letter-spacing:309.864000px;}
.ls2{letter-spacing:335.640000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8{word-spacing:-66.240000px;}
.ws4{word-spacing:-28.080745px;}
.ws1{word-spacing:-27.985877px;}
.ws3{word-spacing:-27.796143px;}
.ws5{word-spacing:-20.232000px;}
.wsb{word-spacing:-18.720120px;}
.wsf{word-spacing:-18.676920px;}
.ws6{word-spacing:-18.414720px;}
.ws7{word-spacing:-18.305520px;}
.ws9{word-spacing:-18.109320px;}
.ws0{word-spacing:-18.000000px;}
.wsc{word-spacing:-17.586720px;}
.ws2{word-spacing:-14.965519px;}
.wsa{word-spacing:-11.609280px;}
.wse{word-spacing:-11.519880px;}
.wsd{word-spacing:0.000000px;}
._f{margin-left:-4.716000px;}
._d{margin-left:-3.510720px;}
._e{margin-left:-2.486400px;}
._2{margin-left:-1.080000px;}
._3{width:1.092000px;}
._4{width:2.491920px;}
._5{width:3.576960px;}
._6{width:4.855680px;}
._7{width:6.690240px;}
._8{width:8.381280px;}
._16{width:9.523680px;}
._c{width:10.532160px;}
._a{width:11.592000px;}
._b{width:12.613920px;}
._10{width:13.737600px;}
._15{width:14.808000px;}
._11{width:15.831360px;}
._12{width:17.073600px;}
._9{width:19.739520px;}
._13{width:20.865600px;}
._14{width:22.307520px;}
._17{width:24.343200px;}
._0{width:413.280000px;}
._1{width:1336.620000px;}
.fc8{color:rgb(33,37,41);}
.fc6{color:rgb(46,116,181);}
.fc5{color:rgb(255,0,0);}
.fc4{color:rgb(33,94,153);}
.fc3{color:rgb(23,26,108);}
.fc2{color:rgb(31,73,125);}
.fc1{color:rgb(5,99,193);}
.fc7{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:41.760000px;}
.fs1{font-size:47.813160px;}
.fs7{font-size:48.000000px;}
.fs4{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:90.000000px;}
.fs2{font-size:94.867381px;}
.fs3{font-size:95.760000px;}
.yf{bottom:-8.100000px;}
.yb{bottom:-1.800000px;}
.y0{bottom:0.000000px;}
.y60{bottom:3.420000px;}
.y40{bottom:3.600000px;}
.y98{bottom:4.680000px;}
.y15{bottom:7.920000px;}
.y17{bottom:8.100000px;}
.y42{bottom:9.000000px;}
.y25{bottom:9.180000px;}
.y1d{bottom:9.225000px;}
.y1a{bottom:9.360000px;}
.y1c{bottom:9.405000px;}
.y19{bottom:9.540000px;}
.y7{bottom:10.980000px;}
.ya{bottom:14.040000px;}
.ye{bottom:19.080000px;}
.y3f{bottom:22.500000px;}
.ya2{bottom:23.760000px;}
.y97{bottom:25.200000px;}
.y41{bottom:27.000000px;}
.y20{bottom:29.700000px;}
.y1f{bottom:29.880000px;}
.y6{bottom:36.000000px;}
.y5f{bottom:37.974000px;}
.y9{bottom:39.060000px;}
.y70{bottom:41.394000px;}
.y3e{bottom:41.400000px;}
.y52{bottom:41.580000px;}
.yd{bottom:43.920000px;}
.ya1{bottom:44.280000px;}
.y96{bottom:45.720000px;}
.y24{bottom:54.720000px;}
.y4{bottom:57.780000px;}
.y6f{bottom:60.294000px;}
.ycc{bottom:60.345000px;}
.y3d{bottom:60.474000px;}
.y51{bottom:60.480000px;}
.ya0{bottom:61.194000px;}
.y95{bottom:66.285000px;}
.y23{bottom:75.240000px;}
.y22{bottom:75.420000px;}
.y3{bottom:78.516000px;}
.y3c{bottom:79.374000px;}
.y50{bottom:79.380000px;}
.ycb{bottom:79.425000px;}
.y94{bottom:86.625000px;}
.y6e{bottom:98.274000px;}
.yca{bottom:98.325000px;}
.y3b{bottom:98.454000px;}
.y4f{bottom:98.505000px;}
.y99{bottom:99.936000px;}
.y93{bottom:107.145000px;}
.y2b{bottom:107.496000px;}
.y61{bottom:112.356000px;}
.yb8{bottom:113.256000px;}
.y55{bottom:114.516000px;}
.y3a{bottom:117.354000px;}
.y4e{bottom:117.405000px;}
.ya3{bottom:123.876000px;}
.y92{bottom:127.665000px;}
.y39{bottom:136.254000px;}
.yc9{bottom:136.305000px;}
.y4d{bottom:136.485000px;}
.y91{bottom:148.185000px;}
.y6d{bottom:155.154000px;}
.y38{bottom:155.334000px;}
.y4c{bottom:155.385000px;}
.y90{bottom:168.525000px;}
.y37{bottom:174.234000px;}
.y4b{bottom:174.285000px;}
.y6c{bottom:175.314000px;}
.y8f{bottom:189.045000px;}
.yc8{bottom:193.185000px;}
.y36{bottom:193.314000px;}
.yb7{bottom:193.359000px;}
.y4a{bottom:193.365000px;}
.y6b{bottom:194.214000px;}
.y8e{bottom:209.565000px;}
.y6a{bottom:209.919000px;}
.y35{bottom:212.259000px;}
.y49{bottom:212.265000px;}
.y8d{bottom:230.085000px;}
.yb6{bottom:231.159000px;}
.y34{bottom:231.339000px;}
.y48{bottom:231.345000px;}
.yc7{bottom:248.985000px;}
.y33{bottom:250.239000px;}
.y47{bottom:250.245000px;}
.y8c{bottom:250.425000px;}
.y71{bottom:259.590000px;}
.y32{bottom:269.139000px;}
.y46{bottom:269.325000px;}
.y8b{bottom:270.945000px;}
.yb5{bottom:284.619000px;}
.y31{bottom:288.219000px;}
.y45{bottom:288.225000px;}
.y8a{bottom:291.465000px;}
.y30{bottom:307.119000px;}
.y44{bottom:307.125000px;}
.y89{bottom:310.575000px;}
.y2f{bottom:326.199000px;}
.y88{bottom:331.995000px;}
.yde{bottom:335.415000px;}
.y2e{bottom:345.099000px;}
.y87{bottom:352.515000px;}
.y2d{bottom:363.999000px;}
.y9f{bottom:365.979000px;}
.y86{bottom:373.035000px;}
.y5e{bottom:376.059000px;}
.ydd{bottom:376.815000px;}
.y2c{bottom:383.079000px;}
.y9e{bottom:386.499000px;}
.yc5{bottom:390.279000px;}
.y85{bottom:393.375000px;}
.y5d{bottom:394.959000px;}
.ydc{bottom:397.515000px;}
.y9d{bottom:403.599000px;}
.yc4{bottom:409.179000px;}
.y84{bottom:413.895000px;}
.y5c{bottom:414.039000px;}
.ydb{bottom:418.395000px;}
.yc3{bottom:424.659000px;}
.y5b{bottom:432.939000px;}
.y83{bottom:434.415000px;}
.yda{bottom:439.095000px;}
.y5a{bottom:452.019000px;}
.y82{bottom:454.935000px;}
.yd9{bottom:459.795000px;}
.y59{bottom:470.949000px;}
.y81{bottom:475.275000px;}
.yd8{bottom:480.495000px;}
.y58{bottom:489.849000px;}
.y80{bottom:495.795000px;}
.yd7{bottom:501.195000px;}
.y2a{bottom:506.775000px;}
.y57{bottom:508.929000px;}
.y7f{bottom:516.315000px;}
.y69{bottom:518.109000px;}
.yd6{bottom:521.895000px;}
.y56{bottom:527.829000px;}
.y7e{bottom:536.835000px;}
.y68{bottom:537.189000px;}
.yd5{bottom:542.595000px;}
.y67{bottom:552.669000px;}
.y7d{bottom:557.175000px;}
.y29{bottom:559.875000px;}
.yd4{bottom:560.055000px;}
.y28{bottom:577.365000px;}
.y7c{bottom:577.740000px;}
.yd3{bottom:579.885000px;}
.y9c{bottom:583.989000px;}
.y7b{bottom:598.260000px;}
.yd2{bottom:599.505000px;}
.y9b{bottom:603.249000px;}
.y27{bottom:606.165000px;}
.yb4{bottom:607.749000px;}
.y9a{bottom:618.729000px;}
.y7a{bottom:618.780000px;}
.yd1{bottom:619.305000px;}
.yb3{bottom:626.649000px;}
.y26{bottom:634.785000px;}
.yd0{bottom:638.925000px;}
.y79{bottom:639.120000px;}
.yb2{bottom:645.549000px;}
.y54{bottom:658.545000px;}
.ycf{bottom:658.725000px;}
.y78{bottom:659.640000px;}
.y21{bottom:663.585000px;}
.yb1{bottom:664.629000px;}
.y77{bottom:680.160000px;}
.yb0{bottom:683.529000px;}
.yce{bottom:697.425000px;}
.y76{bottom:700.680000px;}
.yaf{bottom:702.654000px;}
.y53{bottom:711.645000px;}
.y75{bottom:719.760000px;}
.yae{bottom:721.554000px;}
.y43{bottom:729.105000px;}
.y74{bottom:738.840000px;}
.yad{bottom:740.454000px;}
.ycd{bottom:750.525000px;}
.yc2{bottom:752.334000px;}
.y73{bottom:757.740000px;}
.yac{bottom:759.534000px;}
.y1e{bottom:759.705000px;}
.yc6{bottom:767.985000px;}
.yc1{bottom:771.234000px;}
.y72{bottom:776.640000px;}
.yab{bottom:778.434000px;}
.yc0{bottom:790.134000px;}
.yaa{bottom:797.514000px;}
.ybf{bottom:809.214000px;}
.y1b{bottom:810.465000px;}
.ya9{bottom:816.414000px;}
.ybe{bottom:828.114000px;}
.ya8{bottom:835.494000px;}
.y18{bottom:840.570000px;}
.ybd{bottom:847.194000px;}
.y66{bottom:848.094000px;}
.ya7{bottom:854.394000px;}
.ybc{bottom:866.094000px;}
.y65{bottom:866.994000px;}
.y16{bottom:870.810000px;}
.ya6{bottom:873.294000px;}
.ybb{bottom:885.174000px;}
.y64{bottom:886.074000px;}
.ya5{bottom:892.374000px;}
.y14{bottom:899.610000px;}
.yba{bottom:904.074000px;}
.y63{bottom:904.974000px;}
.ya4{bottom:911.274000px;}
.yb9{bottom:922.974000px;}
.y62{bottom:923.874000px;}
.y13{bottom:933.450000px;}
.y12{bottom:960.990000px;}
.y11{bottom:1015.170000px;}
.y10{bottom:1035.690000px;}
.y2{bottom:1056.570000px;}
.y1{bottom:1073.160000px;}
.yc{bottom:1088.280000px;}
.y8{bottom:1090.080000px;}
.y5{bottom:1093.140000px;}
.h1f{height:18.900000px;}
.h20{height:18.936000px;}
.h1e{height:19.080000px;}
.h9{height:27.900000px;}
.hb{height:28.080000px;}
.hd{height:29.376000px;}
.hc{height:29.520000px;}
.h5{height:36.326795px;}
.h1c{height:37.980000px;}
.h2{height:47.160000px;}
.h1d{height:48.418594px;}
.h10{height:48.420000px;}
.he{height:49.860000px;}
.h13{height:50.062500px;}
.h4{height:50.220000px;}
.h6{height:55.080000px;}
.ha{height:69.086250px;}
.h1{height:70.628906px;}
.h3{height:72.076975px;}
.h11{height:72.801914px;}
.h21{height:74.004654px;}
.h7{height:75.093750px;}
.hf{height:95.400000px;}
.h8{height:99.874688px;}
.h1b{height:283.710000px;}
.h14{height:322.590000px;}
.h12{height:398.550000px;}
.h15{height:543.315000px;}
.h17{height:792.105000px;}
.h19{height:927.825000px;}
.h1a{height:938.445000px;}
.h16{height:939.345000px;}
.h18{height:951.765000px;}
.h0{height:1188.000000px;}
.w4{width:70.236000px;}
.wa{width:114.840000px;}
.w3{width:130.140000px;}
.w2{width:130.500000px;}
.w5{width:267.015000px;}
.w6{width:478.695000px;}
.w9{width:655.890000px;}
.w7{width:763.890000px;}
.w8{width:771.990000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x10{left:7.776000px;}
.xb{left:10.800000px;}
.xa{left:13.680000px;}
.x6{left:14.940000px;}
.xe{left:17.100000px;}
.xd{left:23.220000px;}
.x19{left:34.776000px;}
.x5{left:39.420000px;}
.x9{left:40.860000px;}
.x12{left:45.000000px;}
.x26{left:51.660000px;}
.x27{left:57.240000px;}
.x3{left:84.959986px;}
.x7{left:115.200000px;}
.x1f{left:116.490000px;}
.x28{left:167.429986px;}
.x16{left:181.650000px;}
.x18{left:187.950000px;}
.x23{left:199.695000px;}
.x21{left:211.035000px;}
.x1b{left:243.615000px;}
.x14{left:255.135000px;}
.x1{left:315.614986px;}
.x11{left:353.595000px;}
.x1d{left:385.815000px;}
.x2{left:458.894986px;}
.x4{left:495.105000px;}
.x1c{left:528.045000px;}
.x17{left:537.945000px;}
.xf{left:576.644986px;}
.x15{left:593.250000px;}
.x1e{left:606.570000px;}
.x13{left:621.330000px;}
.xc{left:636.405000px;}
.x22{left:661.470000px;}
.x24{left:662.550000px;}
.x1a{left:666.510000px;}
.x20{left:678.390000px;}
.x8{left:724.650000px;}
.x25{left:742.650000px;}
@media print{
.v1{vertical-align:-94.080000pt;}
.v4{vertical-align:-73.600000pt;}
.v2{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:21.120000pt;}
.ls9{letter-spacing:-0.736000pt;}
.ls7{letter-spacing:-0.271467pt;}
.lse{letter-spacing:-0.233067pt;}
.ls6{letter-spacing:-0.097067pt;}
.lsa{letter-spacing:-0.079467pt;}
.ls4{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.168653pt;}
.ls1{letter-spacing:0.192000pt;}
.lsd{letter-spacing:0.233067pt;}
.ls5{letter-spacing:0.252980pt;}
.ls3{letter-spacing:0.271360pt;}
.ls8{letter-spacing:0.271467pt;}
.lsb{letter-spacing:11.311360pt;}
.lsc{letter-spacing:52.751360pt;}
.lsf{letter-spacing:275.434667pt;}
.ls2{letter-spacing:298.346667pt;}
.ws8{word-spacing:-58.880000pt;}
.ws4{word-spacing:-24.960662pt;}
.ws1{word-spacing:-24.876336pt;}
.ws3{word-spacing:-24.707682pt;}
.ws5{word-spacing:-17.984000pt;}
.wsb{word-spacing:-16.640107pt;}
.wsf{word-spacing:-16.601707pt;}
.ws6{word-spacing:-16.368640pt;}
.ws7{word-spacing:-16.271573pt;}
.ws9{word-spacing:-16.097173pt;}
.ws0{word-spacing:-16.000000pt;}
.wsc{word-spacing:-15.632640pt;}
.ws2{word-spacing:-13.302684pt;}
.wsa{word-spacing:-10.319360pt;}
.wse{word-spacing:-10.239893pt;}
.wsd{word-spacing:0.000000pt;}
._f{margin-left:-4.192000pt;}
._d{margin-left:-3.120640pt;}
._e{margin-left:-2.210133pt;}
._2{margin-left:-0.960000pt;}
._3{width:0.970667pt;}
._4{width:2.215040pt;}
._5{width:3.179520pt;}
._6{width:4.316160pt;}
._7{width:5.946880pt;}
._8{width:7.450027pt;}
._16{width:8.465493pt;}
._c{width:9.361920pt;}
._a{width:10.304000pt;}
._b{width:11.212373pt;}
._10{width:12.211200pt;}
._15{width:13.162667pt;}
._11{width:14.072320pt;}
._12{width:15.176533pt;}
._9{width:17.546240pt;}
._13{width:18.547200pt;}
._14{width:19.828907pt;}
._17{width:21.638400pt;}
._0{width:367.360000pt;}
._1{width:1188.106667pt;}
.fs6{font-size:37.120000pt;}
.fs1{font-size:42.500587pt;}
.fs7{font-size:42.666667pt;}
.fs4{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:80.000000pt;}
.fs2{font-size:84.326561pt;}
.fs3{font-size:85.120000pt;}
.yf{bottom:-7.200000pt;}
.yb{bottom:-1.600000pt;}
.y0{bottom:0.000000pt;}
.y60{bottom:3.040000pt;}
.y40{bottom:3.200000pt;}
.y98{bottom:4.160000pt;}
.y15{bottom:7.040000pt;}
.y17{bottom:7.200000pt;}
.y42{bottom:8.000000pt;}
.y25{bottom:8.160000pt;}
.y1d{bottom:8.200000pt;}
.y1a{bottom:8.320000pt;}
.y1c{bottom:8.360000pt;}
.y19{bottom:8.480000pt;}
.y7{bottom:9.760000pt;}
.ya{bottom:12.480000pt;}
.ye{bottom:16.960000pt;}
.y3f{bottom:20.000000pt;}
.ya2{bottom:21.120000pt;}
.y97{bottom:22.400000pt;}
.y41{bottom:24.000000pt;}
.y20{bottom:26.400000pt;}
.y1f{bottom:26.560000pt;}
.y6{bottom:32.000000pt;}
.y5f{bottom:33.754667pt;}
.y9{bottom:34.720000pt;}
.y70{bottom:36.794667pt;}
.y3e{bottom:36.800000pt;}
.y52{bottom:36.960000pt;}
.yd{bottom:39.040000pt;}
.ya1{bottom:39.360000pt;}
.y96{bottom:40.640000pt;}
.y24{bottom:48.640000pt;}
.y4{bottom:51.360000pt;}
.y6f{bottom:53.594667pt;}
.ycc{bottom:53.640000pt;}
.y3d{bottom:53.754667pt;}
.y51{bottom:53.760000pt;}
.ya0{bottom:54.394667pt;}
.y95{bottom:58.920000pt;}
.y23{bottom:66.880000pt;}
.y22{bottom:67.040000pt;}
.y3{bottom:69.792000pt;}
.y3c{bottom:70.554667pt;}
.y50{bottom:70.560000pt;}
.ycb{bottom:70.600000pt;}
.y94{bottom:77.000000pt;}
.y6e{bottom:87.354667pt;}
.yca{bottom:87.400000pt;}
.y3b{bottom:87.514667pt;}
.y4f{bottom:87.560000pt;}
.y99{bottom:88.832000pt;}
.y93{bottom:95.240000pt;}
.y2b{bottom:95.552000pt;}
.y61{bottom:99.872000pt;}
.yb8{bottom:100.672000pt;}
.y55{bottom:101.792000pt;}
.y3a{bottom:104.314667pt;}
.y4e{bottom:104.360000pt;}
.ya3{bottom:110.112000pt;}
.y92{bottom:113.480000pt;}
.y39{bottom:121.114667pt;}
.yc9{bottom:121.160000pt;}
.y4d{bottom:121.320000pt;}
.y91{bottom:131.720000pt;}
.y6d{bottom:137.914667pt;}
.y38{bottom:138.074667pt;}
.y4c{bottom:138.120000pt;}
.y90{bottom:149.800000pt;}
.y37{bottom:154.874667pt;}
.y4b{bottom:154.920000pt;}
.y6c{bottom:155.834667pt;}
.y8f{bottom:168.040000pt;}
.yc8{bottom:171.720000pt;}
.y36{bottom:171.834667pt;}
.yb7{bottom:171.874667pt;}
.y4a{bottom:171.880000pt;}
.y6b{bottom:172.634667pt;}
.y8e{bottom:186.280000pt;}
.y6a{bottom:186.594667pt;}
.y35{bottom:188.674667pt;}
.y49{bottom:188.680000pt;}
.y8d{bottom:204.520000pt;}
.yb6{bottom:205.474667pt;}
.y34{bottom:205.634667pt;}
.y48{bottom:205.640000pt;}
.yc7{bottom:221.320000pt;}
.y33{bottom:222.434667pt;}
.y47{bottom:222.440000pt;}
.y8c{bottom:222.600000pt;}
.y71{bottom:230.746667pt;}
.y32{bottom:239.234667pt;}
.y46{bottom:239.400000pt;}
.y8b{bottom:240.840000pt;}
.yb5{bottom:252.994667pt;}
.y31{bottom:256.194667pt;}
.y45{bottom:256.200000pt;}
.y8a{bottom:259.080000pt;}
.y30{bottom:272.994667pt;}
.y44{bottom:273.000000pt;}
.y89{bottom:276.066667pt;}
.y2f{bottom:289.954667pt;}
.y88{bottom:295.106667pt;}
.yde{bottom:298.146667pt;}
.y2e{bottom:306.754667pt;}
.y87{bottom:313.346667pt;}
.y2d{bottom:323.554667pt;}
.y9f{bottom:325.314667pt;}
.y86{bottom:331.586667pt;}
.y5e{bottom:334.274667pt;}
.ydd{bottom:334.946667pt;}
.y2c{bottom:340.514667pt;}
.y9e{bottom:343.554667pt;}
.yc5{bottom:346.914667pt;}
.y85{bottom:349.666667pt;}
.y5d{bottom:351.074667pt;}
.ydc{bottom:353.346667pt;}
.y9d{bottom:358.754667pt;}
.yc4{bottom:363.714667pt;}
.y84{bottom:367.906667pt;}
.y5c{bottom:368.034667pt;}
.ydb{bottom:371.906667pt;}
.yc3{bottom:377.474667pt;}
.y5b{bottom:384.834667pt;}
.y83{bottom:386.146667pt;}
.yda{bottom:390.306667pt;}
.y5a{bottom:401.794667pt;}
.y82{bottom:404.386667pt;}
.yd9{bottom:408.706667pt;}
.y59{bottom:418.621333pt;}
.y81{bottom:422.466667pt;}
.yd8{bottom:427.106667pt;}
.y58{bottom:435.421333pt;}
.y80{bottom:440.706667pt;}
.yd7{bottom:445.506667pt;}
.y2a{bottom:450.466667pt;}
.y57{bottom:452.381333pt;}
.y7f{bottom:458.946667pt;}
.y69{bottom:460.541333pt;}
.yd6{bottom:463.906667pt;}
.y56{bottom:469.181333pt;}
.y7e{bottom:477.186667pt;}
.y68{bottom:477.501333pt;}
.yd5{bottom:482.306667pt;}
.y67{bottom:491.261333pt;}
.y7d{bottom:495.266667pt;}
.y29{bottom:497.666667pt;}
.yd4{bottom:497.826667pt;}
.y28{bottom:513.213333pt;}
.y7c{bottom:513.546667pt;}
.yd3{bottom:515.453333pt;}
.y9c{bottom:519.101333pt;}
.y7b{bottom:531.786667pt;}
.yd2{bottom:532.893333pt;}
.y9b{bottom:536.221333pt;}
.y27{bottom:538.813333pt;}
.yb4{bottom:540.221333pt;}
.y9a{bottom:549.981333pt;}
.y7a{bottom:550.026667pt;}
.yd1{bottom:550.493333pt;}
.yb3{bottom:557.021333pt;}
.y26{bottom:564.253333pt;}
.yd0{bottom:567.933333pt;}
.y79{bottom:568.106667pt;}
.yb2{bottom:573.821333pt;}
.y54{bottom:585.373333pt;}
.ycf{bottom:585.533333pt;}
.y78{bottom:586.346667pt;}
.y21{bottom:589.853333pt;}
.yb1{bottom:590.781333pt;}
.y77{bottom:604.586667pt;}
.yb0{bottom:607.581333pt;}
.yce{bottom:619.933333pt;}
.y76{bottom:622.826667pt;}
.yaf{bottom:624.581333pt;}
.y53{bottom:632.573333pt;}
.y75{bottom:639.786667pt;}
.yae{bottom:641.381333pt;}
.y43{bottom:648.093333pt;}
.y74{bottom:656.746667pt;}
.yad{bottom:658.181333pt;}
.ycd{bottom:667.133333pt;}
.yc2{bottom:668.741333pt;}
.y73{bottom:673.546667pt;}
.yac{bottom:675.141333pt;}
.y1e{bottom:675.293333pt;}
.yc6{bottom:682.653333pt;}
.yc1{bottom:685.541333pt;}
.y72{bottom:690.346667pt;}
.yab{bottom:691.941333pt;}
.yc0{bottom:702.341333pt;}
.yaa{bottom:708.901333pt;}
.ybf{bottom:719.301333pt;}
.y1b{bottom:720.413333pt;}
.ya9{bottom:725.701333pt;}
.ybe{bottom:736.101333pt;}
.ya8{bottom:742.661333pt;}
.y18{bottom:747.173333pt;}
.ybd{bottom:753.061333pt;}
.y66{bottom:753.861333pt;}
.ya7{bottom:759.461333pt;}
.ybc{bottom:769.861333pt;}
.y65{bottom:770.661333pt;}
.y16{bottom:774.053333pt;}
.ya6{bottom:776.261333pt;}
.ybb{bottom:786.821333pt;}
.y64{bottom:787.621333pt;}
.ya5{bottom:793.221333pt;}
.y14{bottom:799.653333pt;}
.yba{bottom:803.621333pt;}
.y63{bottom:804.421333pt;}
.ya4{bottom:810.021333pt;}
.yb9{bottom:820.421333pt;}
.y62{bottom:821.221333pt;}
.y13{bottom:829.733333pt;}
.y12{bottom:854.213333pt;}
.y11{bottom:902.373333pt;}
.y10{bottom:920.613333pt;}
.y2{bottom:939.173333pt;}
.y1{bottom:953.920000pt;}
.yc{bottom:967.360000pt;}
.y8{bottom:968.960000pt;}
.y5{bottom:971.680000pt;}
.h1f{height:16.800000pt;}
.h20{height:16.832000pt;}
.h1e{height:16.960000pt;}
.h9{height:24.800000pt;}
.hb{height:24.960000pt;}
.hd{height:26.112000pt;}
.hc{height:26.240000pt;}
.h5{height:32.290485pt;}
.h1c{height:33.760000pt;}
.h2{height:41.920000pt;}
.h1d{height:43.038750pt;}
.h10{height:43.040000pt;}
.he{height:44.320000pt;}
.h13{height:44.500000pt;}
.h4{height:44.640000pt;}
.h6{height:48.960000pt;}
.ha{height:61.410000pt;}
.h1{height:62.781250pt;}
.h3{height:64.068422pt;}
.h11{height:64.712812pt;}
.h21{height:65.781915pt;}
.h7{height:66.750000pt;}
.hf{height:84.800000pt;}
.h8{height:88.777500pt;}
.h1b{height:252.186667pt;}
.h14{height:286.746667pt;}
.h12{height:354.266667pt;}
.h15{height:482.946667pt;}
.h17{height:704.093333pt;}
.h19{height:824.733333pt;}
.h1a{height:834.173333pt;}
.h16{height:834.973333pt;}
.h18{height:846.013333pt;}
.h0{height:1056.000000pt;}
.w4{width:62.432000pt;}
.wa{width:102.080000pt;}
.w3{width:115.680000pt;}
.w2{width:116.000000pt;}
.w5{width:237.346667pt;}
.w6{width:425.506667pt;}
.w9{width:583.013333pt;}
.w7{width:679.013333pt;}
.w8{width:686.213333pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x10{left:6.912000pt;}
.xb{left:9.600000pt;}
.xa{left:12.160000pt;}
.x6{left:13.280000pt;}
.xe{left:15.200000pt;}
.xd{left:20.640000pt;}
.x19{left:30.912000pt;}
.x5{left:35.040000pt;}
.x9{left:36.320000pt;}
.x12{left:40.000000pt;}
.x26{left:45.920000pt;}
.x27{left:50.880000pt;}
.x3{left:75.519988pt;}
.x7{left:102.400000pt;}
.x1f{left:103.546667pt;}
.x28{left:148.826655pt;}
.x16{left:161.466667pt;}
.x18{left:167.066667pt;}
.x23{left:177.506667pt;}
.x21{left:187.586667pt;}
.x1b{left:216.546667pt;}
.x14{left:226.786667pt;}
.x1{left:280.546655pt;}
.x11{left:314.306667pt;}
.x1d{left:342.946667pt;}
.x2{left:407.906655pt;}
.x4{left:440.093333pt;}
.x1c{left:469.373333pt;}
.x17{left:478.173333pt;}
.xf{left:512.573321pt;}
.x15{left:527.333333pt;}
.x1e{left:539.173333pt;}
.x13{left:552.293333pt;}
.xc{left:565.693333pt;}
.x22{left:587.973333pt;}
.x24{left:588.933333pt;}
.x1a{left:592.453333pt;}
.x20{left:603.013333pt;}
.x8{left:644.133333pt;}
.x25{left:660.133333pt;}
}




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