
    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_f14cc3ca77e3cb12eea67611.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.841309;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_0b3a8a914c1e8b54e04aca83.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.871094;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_4f43aebd0c46ec51a21395f9.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.856934;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_32131e2bae01d9e9c2dd526b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.002930;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_ec5a6c273f7629a405ddc88d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.863770;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_f32eb5bdcd4661b05b1d374e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.861816;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_25176eb94673ef3790a1cc7e.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.002930;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_8498dbb34ea2d35042bf1130.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.049316;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;}
.m8{transform:matrix(0.238200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238200,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.239163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239163,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.240419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240419,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.243216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243216,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.243217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243217,0.000000,0.000000,0.250000,0,0);}
.m3{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(0.269942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269942,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.288675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288675,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.v0{vertical-align:0.000000px;}
.ls4{letter-spacing:-7.830000px;}
.ls5{letter-spacing:-5.130000px;}
.ls6{letter-spacing:-0.720000px;}
.ls9{letter-spacing:-0.702000px;}
.ls7{letter-spacing:-0.600000px;}
.lsa{letter-spacing:-0.555061px;}
.ls3{letter-spacing:-0.480000px;}
.lsb{letter-spacing:-0.345370px;}
.lsc{letter-spacing:-0.308367px;}
.ls8{letter-spacing:-0.234000px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.123347px;}
.ls0{letter-spacing:1.170000px;}
.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;}
}
.ws0{word-spacing:-26.520000px;}
.ws12{word-spacing:-13.629821px;}
.ws1{word-spacing:-13.383128px;}
.ws10{word-spacing:-11.150524px;}
.ws11{word-spacing:-10.805153px;}
.wsf{word-spacing:-9.756691px;}
.ws14{word-spacing:-2.651956px;}
.ws9{word-spacing:-2.466936px;}
.ws15{word-spacing:-2.281916px;}
.ws5{word-spacing:-1.170000px;}
.wsa{word-spacing:-0.123347px;}
.ws2{word-spacing:0.000000px;}
.ws7{word-spacing:0.234000px;}
.ws1d{word-spacing:0.308367px;}
.ws13{word-spacing:0.345370px;}
.ws3{word-spacing:0.480000px;}
.wsc{word-spacing:0.555061px;}
.ws8{word-spacing:0.702000px;}
.ws6{word-spacing:0.720000px;}
.ws1a{word-spacing:2.651956px;}
.ws1e{word-spacing:4.625505px;}
.ws1b{word-spacing:4.687178px;}
.ws4{word-spacing:5.130000px;}
.wsd{word-spacing:5.180566px;}
.wse{word-spacing:8.880970px;}
.wsb{word-spacing:9.312683px;}
.ws17{word-spacing:10.792845px;}
.ws1c{word-spacing:14.554922px;}
.ws16{word-spacing:22.942505px;}
.ws18{word-spacing:23.867606px;}
.ws19{word-spacing:32.131841px;}
._2{margin-left:-5.130000px;}
._a{margin-left:-2.746979px;}
._0{margin-left:-1.638000px;}
._1{width:1.443000px;}
._5{width:2.520000px;}
._10{width:3.675610px;}
._7{width:5.248406px;}
._13{width:6.266142px;}
._e{width:7.314465px;}
._c{width:8.899629px;}
._8{width:10.280956px;}
._9{width:12.223668px;}
._4{width:13.322400px;}
._3{width:14.398800px;}
._6{width:15.541697px;}
._12{width:17.428903px;}
._11{width:18.532857px;}
._18{width:20.364557px;}
._d{width:22.233261px;}
._1a{width:26.285203px;}
._15{width:28.184744px;}
._b{width:31.971491px;}
._14{width:36.072772px;}
._16{width:38.064822px;}
._17{width:39.242784px;}
._19{width:59.409986px;}
._f{width:122.472000px;}
.fc6{color:rgb(158,29,38);}
.fc7{color:rgb(76,79,91);}
.fc5{color:rgb(97,97,100);}
.fc4{color:transparent;}
.fc3{color:rgb(255,255,255);}
.fc1{color:rgb(238,72,36);}
.fc2{color:rgb(85,88,89);}
.fc0{color:rgb(81,84,85);}
.fsf{font-size:29.856600px;}
.fs11{font-size:33.000000px;}
.fs10{font-size:36.000000px;}
.fs0{font-size:42.000000px;}
.fsc{font-size:43.171200px;}
.fse{font-size:49.338600px;}
.fs1{font-size:54.000000px;}
.fsa{font-size:61.673400px;}
.fsd{font-size:67.840800px;}
.fs4{font-size:78.000000px;}
.fs9{font-size:84.000000px;}
.fs2{font-size:86.343000px;}
.fsb{font-size:98.677200px;}
.fs6{font-size:114.000000px;}
.fs3{font-size:120.000000px;}
.fs8{font-size:126.000000px;}
.fs7{font-size:150.000000px;}
.fs5{font-size:174.000000px;}
.y0{bottom:0.000000px;}
.y3e{bottom:16.438500px;}
.y82{bottom:16.864950px;}
.y81{bottom:26.764950px;}
.y3f{bottom:35.114550px;}
.y35{bottom:60.435978px;}
.y34{bottom:73.031176px;}
.y3d{bottom:77.869041px;}
.y17{bottom:78.259350px;}
.y2d{bottom:78.545160px;}
.y39{bottom:84.588031px;}
.y33{bottom:85.626373px;}
.y3c{bottom:95.865296px;}
.y2c{bottom:99.544953px;}
.y38{bottom:99.586966px;}
.y18{bottom:100.141350px;}
.y32{bottom:105.722567px;}
.y3b{bottom:113.861550px;}
.y37{bottom:114.585900px;}
.y31{bottom:119.224360px;}
.y2b{bottom:120.544746px;}
.y30{bottom:132.726152px;}
.y36{bottom:140.085900px;}
.y2a{bottom:141.544539px;}
.y3a{bottom:142.361550px;}
.y2f{bottom:145.321350px;}
.y29{bottom:162.544331px;}
.y28{bottom:183.544124px;}
.y62{bottom:200.740760px;}
.y27{bottom:204.543917px;}
.y61{bottom:221.740552px;}
.y26{bottom:225.543709px;}
.y60{bottom:242.740345px;}
.y72{bottom:244.821822px;}
.y25{bottom:246.543502px;}
.y71{bottom:265.821615px;}
.y24{bottom:267.543295px;}
.y5f{bottom:269.737876px;}
.y70{bottom:286.821408px;}
.y23{bottom:291.549666px;}
.y5e{bottom:296.735407px;}
.y6f{bottom:307.821200px;}
.y22{bottom:312.549458px;}
.y5d{bottom:317.735199px;}
.y6e{bottom:328.820993px;}
.y21{bottom:333.549251px;}
.y5c{bottom:338.734992px;}
.y6d{bottom:349.820786px;}
.y20{bottom:354.549044px;}
.y5b{bottom:359.734785px;}
.y6c{bottom:370.820578px;}
.y1f{bottom:375.548837px;}
.y5a{bottom:380.734578px;}
.y1e{bottom:396.548629px;}
.y6b{bottom:397.818109px;}
.y59{bottom:401.734370px;}
.y1d{bottom:417.548422px;}
.y58{bottom:422.734163px;}
.y6a{bottom:424.815640px;}
.y1c{bottom:438.548215px;}
.y57{bottom:443.733956px;}
.y69{bottom:445.815433px;}
.y1b{bottom:459.548007px;}
.y56{bottom:464.733748px;}
.y68{bottom:466.815226px;}
.y16{bottom:476.683650px;}
.y1a{bottom:480.547800px;}
.y55{bottom:485.733541px;}
.y67{bottom:487.815018px;}
.y19{bottom:504.547800px;}
.y54{bottom:506.733334px;}
.y66{bottom:508.814811px;}
.y15{bottom:521.683650px;}
.y53{bottom:527.733126px;}
.y65{bottom:535.812342px;}
.y52{bottom:548.732919px;}
.y64{bottom:556.812135px;}
.y51{bottom:575.730450px;}
.y63{bottom:577.811927px;}
.y50{bottom:612.269550px;}
.y14{bottom:627.461250px;}
.y10{bottom:627.604800px;}
.y13{bottom:654.468750px;}
.yf{bottom:654.612300px;}
.y80{bottom:679.027063px;}
.y79{bottom:683.930098px;}
.y11{bottom:685.239300px;}
.y7f{bottom:700.026856px;}
.y78{bottom:704.929891px;}
.y7e{bottom:721.026648px;}
.y77{bottom:725.929684px;}
.y9{bottom:741.311850px;}
.y7d{bottom:742.026441px;}
.y76{bottom:746.929476px;}
.y7c{bottom:763.026234px;}
.y75{bottom:767.929269px;}
.y8{bottom:768.319350px;}
.y7b{bottom:784.026027px;}
.y12{bottom:794.229300px;}
.y7{bottom:794.241150px;}
.y74{bottom:794.926800px;}
.y7a{bottom:811.023557px;}
.y73{bottom:826.242150px;}
.ye{bottom:862.794300px;}
.y4d{bottom:887.750130px;}
.yd{bottom:888.300300px;}
.y4c{bottom:908.749923px;}
.y6{bottom:921.971407px;}
.y4b{bottom:929.749716px;}
.y4a{bottom:950.749509px;}
.y5{bottom:951.975600px;}
.y49{bottom:971.749301px;}
.y48{bottom:992.749094px;}
.y4{bottom:1000.034100px;}
.y47{bottom:1013.748887px;}
.y4f{bottom:1019.746625px;}
.y3{bottom:1021.040100px;}
.y46{bottom:1040.746417px;}
.y4e{bottom:1046.744156px;}
.y2{bottom:1061.480850px;}
.y45{bottom:1067.743948px;}
.y1{bottom:1077.692850px;}
.yc{bottom:1078.693800px;}
.y44{bottom:1088.743741px;}
.y43{bottom:1109.743534px;}
.yb{bottom:1112.893800px;}
.y42{bottom:1130.743326px;}
.ya{bottom:1147.093500px;}
.y41{bottom:1151.743119px;}
.y40{bottom:1178.740650px;}
.y2e{bottom:1212.499500px;}
.h19{height:24.622948px;}
.h1c{height:27.215332px;}
.h2{height:28.567383px;}
.h1a{height:29.689453px;}
.h15{height:35.603592px;}
.h3{height:36.729492px;}
.h17{height:40.689890px;}
.h1b{height:41.918639px;}
.h10{height:42.159551px;}
.h13{height:42.280007px;}
.h12{height:42.731716px;}
.h18{height:47.004929px;}
.h11{height:50.862487px;}
.h7{height:54.043945px;}
.h16{height:55.948785px;}
.he{height:57.093750px;}
.hf{height:59.192174px;}
.h4{height:59.824569px;}
.h6{height:64.327148px;}
.hd{height:69.275391px;}
.h9{height:78.987305px;}
.h5{height:81.562500px;}
.hb{height:82.265625px;}
.h14{height:84.318896px;}
.ha{height:94.016602px;}
.hc{height:102.832031px;}
.h8{height:118.265625px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:37.637700px;}
.x7{left:38.701200px;}
.xe{left:43.179150px;}
.xd{left:50.184150px;}
.x13{left:51.695850px;}
.xb{left:55.602600px;}
.x11{left:60.508350px;}
.x12{left:62.204550px;}
.x2{left:105.714900px;}
.x3{left:106.883850px;}
.xa{left:162.170700px;}
.xf{left:264.388200px;}
.xc{left:438.960150px;}
.x14{left:463.573200px;}
.x15{left:472.608150px;}
.x4{left:477.257850px;}
.x9{left:508.123500px;}
.x8{left:510.204900px;}
.x5{left:513.569850px;}
.x6{left:527.905350px;}
.x10{left:537.259350px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-6.960000pt;}
.ls5{letter-spacing:-4.560000pt;}
.ls6{letter-spacing:-0.640000pt;}
.ls9{letter-spacing:-0.624000pt;}
.ls7{letter-spacing:-0.533333pt;}
.lsa{letter-spacing:-0.493387pt;}
.ls3{letter-spacing:-0.426667pt;}
.lsb{letter-spacing:-0.306996pt;}
.lsc{letter-spacing:-0.274104pt;}
.ls8{letter-spacing:-0.208000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.109642pt;}
.ls0{letter-spacing:1.040000pt;}
.ws0{word-spacing:-23.573333pt;}
.ws12{word-spacing:-12.115397pt;}
.ws1{word-spacing:-11.896114pt;}
.ws10{word-spacing:-9.911577pt;}
.ws11{word-spacing:-9.604581pt;}
.wsf{word-spacing:-8.672614pt;}
.ws14{word-spacing:-2.357294pt;}
.ws9{word-spacing:-2.192832pt;}
.ws15{word-spacing:-2.028370pt;}
.ws5{word-spacing:-1.040000pt;}
.wsa{word-spacing:-0.109642pt;}
.ws2{word-spacing:0.000000pt;}
.ws7{word-spacing:0.208000pt;}
.ws1d{word-spacing:0.274104pt;}
.ws13{word-spacing:0.306996pt;}
.ws3{word-spacing:0.426667pt;}
.wsc{word-spacing:0.493387pt;}
.ws8{word-spacing:0.624000pt;}
.ws6{word-spacing:0.640000pt;}
.ws1a{word-spacing:2.357294pt;}
.ws1e{word-spacing:4.111560pt;}
.ws1b{word-spacing:4.166381pt;}
.ws4{word-spacing:4.560000pt;}
.wsd{word-spacing:4.604947pt;}
.wse{word-spacing:7.894195pt;}
.wsb{word-spacing:8.277941pt;}
.ws17{word-spacing:9.593640pt;}
.ws1c{word-spacing:12.937709pt;}
.ws16{word-spacing:20.393338pt;}
.ws18{word-spacing:21.215650pt;}
.ws19{word-spacing:28.561637pt;}
._2{margin-left:-4.560000pt;}
._a{margin-left:-2.441759pt;}
._0{margin-left:-1.456000pt;}
._1{width:1.282667pt;}
._5{width:2.240000pt;}
._10{width:3.267209pt;}
._7{width:4.665250pt;}
._13{width:5.569904pt;}
._e{width:6.501747pt;}
._c{width:7.910781pt;}
._8{width:9.138627pt;}
._9{width:10.865483pt;}
._4{width:11.842133pt;}
._3{width:12.798933pt;}
._6{width:13.814842pt;}
._12{width:15.492358pt;}
._11{width:16.473650pt;}
._18{width:18.101828pt;}
._d{width:19.762898pt;}
._1a{width:23.364625pt;}
._15{width:25.053106pt;}
._b{width:28.419103pt;}
._14{width:32.064686pt;}
._16{width:33.835398pt;}
._17{width:34.882475pt;}
._19{width:52.808877pt;}
._f{width:108.864000pt;}
.fsf{font-size:26.539200pt;}
.fs11{font-size:29.333333pt;}
.fs10{font-size:32.000000pt;}
.fs0{font-size:37.333333pt;}
.fsc{font-size:38.374400pt;}
.fse{font-size:43.856533pt;}
.fs1{font-size:48.000000pt;}
.fsa{font-size:54.820800pt;}
.fsd{font-size:60.302933pt;}
.fs4{font-size:69.333333pt;}
.fs9{font-size:74.666667pt;}
.fs2{font-size:76.749333pt;}
.fsb{font-size:87.713067pt;}
.fs6{font-size:101.333333pt;}
.fs3{font-size:106.666667pt;}
.fs8{font-size:112.000000pt;}
.fs7{font-size:133.333333pt;}
.fs5{font-size:154.666667pt;}
.y0{bottom:0.000000pt;}
.y3e{bottom:14.612000pt;}
.y82{bottom:14.991067pt;}
.y81{bottom:23.791067pt;}
.y3f{bottom:31.212933pt;}
.y35{bottom:53.720869pt;}
.y34{bottom:64.916601pt;}
.y3d{bottom:69.216926pt;}
.y17{bottom:69.563867pt;}
.y2d{bottom:69.817920pt;}
.y39{bottom:75.189361pt;}
.y33{bottom:76.112332pt;}
.y3c{bottom:85.213596pt;}
.y2c{bottom:88.484403pt;}
.y38{bottom:88.521747pt;}
.y18{bottom:89.014533pt;}
.y32{bottom:93.975615pt;}
.y3b{bottom:101.210267pt;}
.y37{bottom:101.854133pt;}
.y31{bottom:105.977209pt;}
.y2b{bottom:107.150885pt;}
.y30{bottom:117.978802pt;}
.y36{bottom:124.520800pt;}
.y2a{bottom:125.817368pt;}
.y3a{bottom:126.543600pt;}
.y2f{bottom:129.174533pt;}
.y29{bottom:144.483850pt;}
.y28{bottom:163.150332pt;}
.y62{bottom:178.436231pt;}
.y27{bottom:181.816815pt;}
.y61{bottom:197.102713pt;}
.y26{bottom:200.483297pt;}
.y60{bottom:215.769196pt;}
.y72{bottom:217.619398pt;}
.y25{bottom:219.149780pt;}
.y71{bottom:236.285880pt;}
.y24{bottom:237.816262pt;}
.y5f{bottom:239.767001pt;}
.y70{bottom:254.952362pt;}
.y23{bottom:259.155258pt;}
.y5e{bottom:263.764806pt;}
.y6f{bottom:273.618845pt;}
.y22{bottom:277.821741pt;}
.y5d{bottom:282.431288pt;}
.y6e{bottom:292.285327pt;}
.y21{bottom:296.488223pt;}
.y5c{bottom:301.097771pt;}
.y6d{bottom:310.951810pt;}
.y20{bottom:315.154706pt;}
.y5b{bottom:319.764253pt;}
.y6c{bottom:329.618292pt;}
.y1f{bottom:333.821188pt;}
.y5a{bottom:338.430736pt;}
.y1e{bottom:352.487670pt;}
.y6b{bottom:353.616097pt;}
.y59{bottom:357.097218pt;}
.y1d{bottom:371.154153pt;}
.y58{bottom:375.763700pt;}
.y6a{bottom:377.613902pt;}
.y1c{bottom:389.820635pt;}
.y57{bottom:394.430183pt;}
.y69{bottom:396.280385pt;}
.y1b{bottom:408.487118pt;}
.y56{bottom:413.096665pt;}
.y68{bottom:414.946867pt;}
.y16{bottom:423.718800pt;}
.y1a{bottom:427.153600pt;}
.y55{bottom:431.763148pt;}
.y67{bottom:433.613350pt;}
.y19{bottom:448.486933pt;}
.y54{bottom:450.429630pt;}
.y66{bottom:452.279832pt;}
.y15{bottom:463.718800pt;}
.y53{bottom:469.096112pt;}
.y65{bottom:476.277637pt;}
.y52{bottom:487.762595pt;}
.y64{bottom:494.944120pt;}
.y51{bottom:511.760400pt;}
.y63{bottom:513.610602pt;}
.y50{bottom:544.239600pt;}
.y14{bottom:557.743333pt;}
.y10{bottom:557.870933pt;}
.y13{bottom:581.750000pt;}
.yf{bottom:581.877600pt;}
.y80{bottom:603.579612pt;}
.y79{bottom:607.937865pt;}
.y11{bottom:609.101600pt;}
.y7f{bottom:622.246094pt;}
.y78{bottom:626.604348pt;}
.y7e{bottom:640.912576pt;}
.y77{bottom:645.270830pt;}
.y9{bottom:658.943867pt;}
.y7d{bottom:659.579059pt;}
.y76{bottom:663.937312pt;}
.y7c{bottom:678.245541pt;}
.y75{bottom:682.603795pt;}
.y8{bottom:682.950533pt;}
.y7b{bottom:696.912024pt;}
.y12{bottom:705.981600pt;}
.y7{bottom:705.992133pt;}
.y74{bottom:706.601600pt;}
.y7a{bottom:720.909829pt;}
.y73{bottom:734.437467pt;}
.ye{bottom:766.928267pt;}
.y4d{bottom:789.111227pt;}
.yd{bottom:789.600267pt;}
.y4c{bottom:807.777709pt;}
.y6{bottom:819.530140pt;}
.y4b{bottom:826.444192pt;}
.y4a{bottom:845.110674pt;}
.y5{bottom:846.200533pt;}
.y49{bottom:863.777157pt;}
.y48{bottom:882.443639pt;}
.y4{bottom:888.919200pt;}
.y47{bottom:901.110121pt;}
.y4f{bottom:906.441444pt;}
.y3{bottom:907.591200pt;}
.y46{bottom:925.107927pt;}
.y4e{bottom:930.439249pt;}
.y2{bottom:943.538533pt;}
.y45{bottom:949.105732pt;}
.y1{bottom:957.949200pt;}
.yc{bottom:958.838933pt;}
.y44{bottom:967.772214pt;}
.y43{bottom:986.438697pt;}
.yb{bottom:989.238933pt;}
.y42{bottom:1005.105179pt;}
.ya{bottom:1019.638667pt;}
.y41{bottom:1023.771661pt;}
.y40{bottom:1047.769467pt;}
.y2e{bottom:1077.777333pt;}
.h19{height:21.887065pt;}
.h1c{height:24.191406pt;}
.h2{height:25.393229pt;}
.h1a{height:26.390625pt;}
.h15{height:31.647637pt;}
.h3{height:32.648438pt;}
.h17{height:36.168791pt;}
.h1b{height:37.261012pt;}
.h10{height:37.475156pt;}
.h13{height:37.582228pt;}
.h12{height:37.983748pt;}
.h18{height:41.782159pt;}
.h11{height:45.211099pt;}
.h7{height:48.039062pt;}
.h16{height:49.732253pt;}
.he{height:50.750000pt;}
.hf{height:52.615266pt;}
.h4{height:53.177395pt;}
.h6{height:57.179688pt;}
.hd{height:61.578125pt;}
.h9{height:70.210938pt;}
.h5{height:72.500000pt;}
.hb{height:73.125000pt;}
.h14{height:74.950130pt;}
.ha{height:83.570312pt;}
.hc{height:91.406250pt;}
.h8{height:105.125000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:33.455733pt;}
.x7{left:34.401067pt;}
.xe{left:38.381467pt;}
.xd{left:44.608133pt;}
.x13{left:45.951867pt;}
.xb{left:49.424533pt;}
.x11{left:53.785200pt;}
.x12{left:55.292933pt;}
.x2{left:93.968800pt;}
.x3{left:95.007867pt;}
.xa{left:144.151733pt;}
.xf{left:235.011733pt;}
.xc{left:390.186800pt;}
.x14{left:412.065067pt;}
.x15{left:420.096133pt;}
.x4{left:424.229200pt;}
.x9{left:451.665333pt;}
.x8{left:453.515467pt;}
.x5{left:456.506533pt;}
.x6{left:469.249200pt;}
.x10{left:477.563867pt;}
}




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