
    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_03422918edb81b129c0a73d8.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.400000;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_dfe53a24d46d1cd4444474bd.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.400000;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_f9e74ab59abae7c2b0e902b6.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.730957;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_a2099aa667f56b54d2f44d84.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_f5b0d2ab6601d34ec5259f58.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_90eb17c22243d05a6441fbea.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.682617;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_aec2c3f4a583f0abdcac1c69.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.400000;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);}
.v10{vertical-align:-125.422114px;}
.v2{vertical-align:-36.000001px;}
.v3{vertical-align:-26.999996px;}
.v9{vertical-align:-10.566675px;}
.v12{vertical-align:-2.005515px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:3.760650px;}
.vc{vertical-align:11.007878px;}
.vd{vertical-align:12.187575px;}
.v1{vertical-align:36.000001px;}
.vb{vertical-align:53.054997px;}
.v7{vertical-align:72.502328px;}
.v6{vertical-align:94.507149px;}
.v11{vertical-align:98.760666px;}
.v5{vertical-align:107.092839px;}
.v4{vertical-align:129.599991px;}
.ve{vertical-align:130.608004px;}
.va{vertical-align:136.082070px;}
.vf{vertical-align:162.390893px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.061675px;}
.ls3{letter-spacing:3.014800px;}
.ls4{letter-spacing:3.789947px;}
.ls8{letter-spacing:71.260804px;}
.ls6{letter-spacing:81.010550px;}
.ls2{letter-spacing:87.001203px;}
.ls1{letter-spacing:108.000566px;}
.ls7{letter-spacing:117.010561px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(59,59,59),0 0.015em rgb(59,59,59),0.015em 0 rgb(59,59,59),0 -0.015em  rgb(59,59,59);}
.sc1{text-shadow:-0.015em 0 rgb(87,87,87),0 0.015em rgb(87,87,87),0.015em 0 rgb(87,87,87),0 -0.015em  rgb(87,87,87);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(59,59,59);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(87,87,87);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws10{word-spacing:-51.590161px;}
.ws14{word-spacing:-41.280665px;}
.wse{word-spacing:-34.128001px;}
.wsd{word-spacing:-28.620001px;}
.ws11{word-spacing:-25.964700px;}
.ws13{word-spacing:-25.795080px;}
.ws7{word-spacing:-25.596001px;}
.ws9{word-spacing:-24.994801px;}
.ws12{word-spacing:-23.221260px;}
.ws8{word-spacing:-23.070900px;}
.ws5{word-spacing:-22.752001px;}
.wsf{word-spacing:-22.260000px;}
.wsa{word-spacing:-19.908000px;}
.ws2{word-spacing:-19.080001px;}
.ws0{word-spacing:-16.960002px;}
.ws1{word-spacing:-12.720001px;}
.ws3{word-spacing:0.000000px;}
.ws4{word-spacing:143.997755px;}
.ws6{word-spacing:474.979814px;}
.wsb{word-spacing:905.692016px;}
.wsc{word-spacing:1188.249338px;}
._17{margin-left:-68.831719px;}
._16{margin-left:-9.180000px;}
._4{margin-left:-8.016001px;}
._2{margin-left:-6.984000px;}
._1c{margin-left:-5.908682px;}
._0{margin-left:-4.656000px;}
._1{margin-left:-2.793600px;}
._3{margin-left:-1.440000px;}
._15{width:1.843200px;}
._5{width:108.000278px;}
._7{width:261.680241px;}
._18{width:304.591754px;}
._12{width:353.845931px;}
._8{width:371.819732px;}
._11{width:375.385873px;}
._10{width:521.698997px;}
._c{width:548.703434px;}
._14{width:580.645938px;}
._a{width:592.513598px;}
._b{width:594.278617px;}
._9{width:623.938412px;}
._1d{width:802.491789px;}
._1b{width:832.981349px;}
._1a{width:954.078571px;}
._f{width:974.906161px;}
._19{width:1030.218601px;}
._13{width:1044.415833px;}
._6{width:1517.669823px;}
._d{width:1538.330179px;}
._e{width:1707.553404px;}
.fc14{color:rgb(128,0,0);}
.fc10{color:rgb(210,105,30);}
.fce{color:transparent;}
.fcd{color:rgb(203,122,18);}
.fc2{color:rgb(59,59,59);}
.fc0{color:rgb(255,255,255);}
.fc4{color:rgb(226,118,121);}
.fc1{color:rgb(0,0,0);}
.fc3{color:rgb(87,87,87);}
.fc8{color:rgb(100,67,126);}
.fc5{color:rgb(119,167,205);}
.fc6{color:rgb(0,112,192);}
.fc7{color:rgb(192,0,0);}
.fc13{color:rgb(11,154,113);}
.fc12{color:rgb(139,0,0);}
.fcf{color:rgb(0,255,255);}
.fcb{color:rgb(231,41,138);}
.fc9{color:rgb(0,139,139);}
.fc11{color:rgb(70,130,180);}
.fca{color:rgb(27,158,119);}
.fcc{color:rgb(0,100,0);}
.fs3{font-size:48.000004px;}
.fs2{font-size:64.000007px;}
.fs4{font-size:72.000002px;}
.fsb{font-size:84.000000px;}
.fsd{font-size:87.060000px;}
.fsf{font-size:94.320005px;}
.fs1{font-size:96.000006px;}
.fs13{font-size:97.980002px;}
.fsa{font-size:108.000003px;}
.fsc{font-size:108.840000px;}
.fs11{font-size:114.300004px;}
.fs17{font-size:119.760002px;}
.fs6{font-size:120.000001px;}
.fse{font-size:141.480000px;}
.fs5{font-size:144.000005px;}
.fs15{font-size:146.250005px;}
.fs9{font-size:151.200005px;}
.fs18{font-size:174.180021px;}
.fs7{font-size:216.000007px;}
.fs16{font-size:217.680005px;}
.fs0{font-size:232.799992px;}
.fs10{font-size:240.000002px;}
.fs8{font-size:360.000012px;}
.fs12{font-size:391.859986px;}
.fs14{font-size:697.199962px;}
.y0{bottom:0.000000px;}
.y12{bottom:18.743137px;}
.y66{bottom:19.758390px;}
.y42{bottom:36.486828px;}
.y63{bottom:43.333971px;}
.y9c{bottom:49.225696px;}
.y54{bottom:51.011926px;}
.y24{bottom:54.268817px;}
.y25{bottom:55.842028px;}
.y48{bottom:61.287710px;}
.y8f{bottom:64.803920px;}
.y4c{bottom:67.265769px;}
.y53{bottom:69.011927px;}
.ya2{bottom:77.916864px;}
.y9d{bottom:77.955486px;}
.y9b{bottom:78.619708px;}
.y23{bottom:79.468815px;}
.y4f{bottom:83.549053px;}
.y52{bottom:87.011927px;}
.y47{bottom:87.405700px;}
.y4b{bottom:93.383759px;}
.ya7{bottom:94.033277px;}
.y3f{bottom:99.051230px;}
.y3d{bottom:102.990595px;}
.y9a{bottom:108.013709px;}
.y4e{bottom:109.667056px;}
.y46{bottom:113.523703px;}
.y1d{bottom:114.467812px;}
.y32{bottom:116.546677px;}
.y4a{bottom:119.501762px;}
.ya4{bottom:121.779693px;}
.y71{bottom:122.211097px;}
.y75{bottom:123.035126px;}
.y3e{bottom:127.851228px;}
.y3c{bottom:128.190585px;}
.y1e{bottom:128.867808px;}
.y2f{bottom:130.413303px;}
.y73{bottom:132.810510px;}
.y67{bottom:134.438837px;}
.y74{bottom:135.224107px;}
.y4d{bottom:137.091855px;}
.y60{bottom:138.545907px;}
.y35{bottom:139.610888px;}
.y45{bottom:140.948501px;}
.y31{bottom:141.746671px;}
.y1c{bottom:143.267813px;}
.y6c{bottom:143.581913px;}
.y49{bottom:146.926560px;}
.yc{bottom:149.544570px;}
.y5e{bottom:149.563110px;}
.y62{bottom:153.229374px;}
.y2e{bottom:155.613298px;}
.y99{bottom:160.552707px;}
.y34{bottom:164.810882px;}
.y30{bottom:166.946669px;}
.ya3{bottom:172.149962px;}
.y6b{bottom:172.381902px;}
.yb{bottom:177.894571px;}
.y5d{bottom:178.363100px;}
.y3b{bottom:178.590575px;}
.y7b{bottom:179.159278px;}
.y2d{bottom:180.813296px;}
.y33{bottom:190.010880px;}
.y86{bottom:196.442739px;}
.ya{bottom:201.744561px;}
.y3a{bottom:203.790570px;}
.y5c{bottom:207.163092px;}
.y7a{bottom:211.559276px;}
.y98{bottom:213.091705px;}
.y2a{bottom:218.201221px;}
.y85{bottom:228.842729px;}
.y29{bottom:228.875638px;}
.y39{bottom:228.990569px;}
.y6a{bottom:229.981893px;}
.y9{bottom:230.094555px;}
.y2c{bottom:230.521636px;}
.y1b{bottom:234.327037px;}
.y5b{bottom:235.963091px;}
.y58{bottom:245.133191px;}
.y11{bottom:245.709551px;}
.y51{bottom:250.919696px;}
.y8{bottom:253.944551px;}
.y38{bottom:255.630567px;}
.y69{bottom:255.713704px;}
.y28{bottom:257.675636px;}
.y2b{bottom:259.321635px;}
.y84{bottom:261.242708px;}
.ya1{bottom:262.265479px;}
.y1a{bottom:263.127038px;}
.y57{bottom:273.933181px;}
.y7{bottom:282.294550px;}
.y50{bottom:293.363691px;}
.y83{bottom:293.642709px;}
.y97{bottom:293.666750px;}
.y10{bottom:295.389553px;}
.y56{bottom:302.733172px;}
.y6{bottom:306.144553px;}
.y64{bottom:308.401591px;}
.y79{bottom:319.431719px;}
.y96{bottom:323.060762px;}
.y82{bottom:326.042710px;}
.ya6{bottom:328.360795px;}
.ya9{bottom:328.399292px;}
.y55{bottom:331.533171px;}
.y5{bottom:334.494553px;}
.yf{bottom:345.069554px;}
.y78{bottom:351.831717px;}
.y7d{bottom:352.341960px;}
.y95{bottom:352.454768px;}
.y14{bottom:355.442116px;}
.y81{bottom:358.442711px;}
.y4{bottom:359.748534px;}
.y72{bottom:360.140505px;}
.yad{bottom:364.035986px;}
.y13{bottom:368.192470px;}
.y43{bottom:368.461885px;}
.ya5{bottom:380.899793px;}
.ya8{bottom:380.938290px;}
.y94{bottom:381.848764px;}
.y20{bottom:384.760617px;}
.y19{bottom:384.921859px;}
.y3{bottom:388.548533px;}
.y80{bottom:390.842716px;}
.ye{bottom:394.749556px;}
.y5a{bottom:399.698863px;}
.y8b{bottom:405.648781px;}
.y8e{bottom:405.900117px;}
.y77{bottom:406.129374px;}
.y22{bottom:409.612792px;}
.y27{bottom:409.712000px;}
.y93{bottom:411.242765px;}
.yac{bottom:416.574984px;}
.y1f{bottom:417.160615px;}
.y18{bottom:418.041866px;}
.y44{bottom:420.358810px;}
.y7f{bottom:423.242714px;}
.y59{bottom:424.898861px;}
.y6f{bottom:427.282610px;}
.y6e{bottom:427.398245px;}
.y36{bottom:429.095189px;}
.y8a{bottom:430.848775px;}
.y8d{bottom:431.100111px;}
.y7c{bottom:437.423852px;}
.y21{bottom:438.412793px;}
.y26{bottom:438.512001px;}
.y76{bottom:438.529372px;}
.y2{bottom:440.181529px;}
.yd{bottom:444.429557px;}
.y41{bottom:444.698264px;}
.y17{bottom:451.161857px;}
.y61{bottom:455.412394px;}
.y5f{bottom:455.412990px;}
.y89{bottom:456.048774px;}
.y8c{bottom:456.300110px;}
.y6d{bottom:460.050246px;}
.y92{bottom:463.781763px;}
.y16{bottom:484.281851px;}
.yaa{bottom:491.241923px;}
.y9f{bottom:501.375406px;}
.yaf{bottom:502.850742px;}
.y87{bottom:503.765431px;}
.y1{bottom:510.021526px;}
.y88{bottom:511.524483px;}
.yae{bottom:513.678478px;}
.y7e{bottom:532.399323px;}
.y91{bottom:535.689883px;}
.y15{bottom:536.301568px;}
.y37{bottom:538.976529px;}
.y70{bottom:540.164529px;}
.yab{bottom:541.527309px;}
.y68{bottom:548.788228px;}
.y90{bottom:549.132002px;}
.ya0{bottom:552.448776px;}
.y9e{bottom:553.914404px;}
.y65{bottom:567.875861px;}
.y40{bottom:572.997047px;}
.h3{height:50.400004px;}
.h4{height:75.600002px;}
.hd{height:88.200000px;}
.h12{height:88.200495px;}
.h15{height:91.413000px;}
.h11{height:92.461905px;}
.ha{height:100.800006px;}
.h1d{height:102.879002px;}
.h2{height:103.200009px;}
.h25{height:106.736582px;}
.hb{height:113.400004px;}
.h14{height:114.282001px;}
.h26{height:120.015004px;}
.h19{height:124.407881px;}
.h1a{height:124.407904px;}
.h24{height:125.748002px;}
.h6{height:126.000001px;}
.h1b{height:132.202579px;}
.h17{height:148.554000px;}
.h5{height:151.200005px;}
.h16{height:152.091002px;}
.h9{height:158.760005px;}
.h10{height:173.302335px;}
.hf{height:182.707149px;}
.h27{height:182.889022px;}
.he{height:195.292839px;}
.h28{height:201.639668px;}
.h21{height:206.930072px;}
.h13{height:211.682072px;}
.h7{height:226.800007px;}
.h23{height:228.564006px;}
.h22{height:237.990896px;}
.hc{height:242.999994px;}
.h20{height:244.427468px;}
.h1{height:244.439992px;}
.h1f{height:244.890005px;}
.h18{height:252.000002px;}
.h8{height:258.750008px;}
.h1c{height:411.452985px;}
.h0{height:607.500000px;}
.h1e{height:732.059960px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x5f{left:32.159646px;}
.x3d{left:36.172088px;}
.x35{left:39.906733px;}
.xc{left:46.939963px;}
.x1{left:54.850650px;}
.x50{left:57.218035px;}
.x3{left:58.218662px;}
.x22{left:59.981310px;}
.x2{left:61.774812px;}
.xd{left:65.400998px;}
.x58{left:66.870475px;}
.x12{left:72.406353px;}
.x13{left:74.445865px;}
.x2c{left:77.873624px;}
.x23{left:84.096798px;}
.x57{left:86.154449px;}
.x30{left:88.002916px;}
.x4f{left:106.111897px;}
.x4c{left:108.549333px;}
.x8{left:117.352039px;}
.x6{left:120.123409px;}
.x5{left:122.031408px;}
.x40{left:126.138979px;}
.x54{left:128.424458px;}
.xb{left:140.090906px;}
.x4d{left:142.221698px;}
.x36{left:148.700788px;}
.x1e{left:151.424964px;}
.x1d{left:155.599889px;}
.x5b{left:159.780009px;}
.x7{left:179.631338px;}
.x4e{left:180.924338px;}
.x14{left:183.558662px;}
.x59{left:190.020572px;}
.x5e{left:209.571025px;}
.x3c{left:211.286819px;}
.x51{left:216.147472px;}
.xa{left:223.003830px;}
.x4b{left:227.673795px;}
.x18{left:233.994236px;}
.x16{left:240.778937px;}
.x17{left:261.713969px;}
.x1b{left:291.668372px;}
.x55{left:332.987613px;}
.x1c{left:335.985643px;}
.x41{left:346.387892px;}
.x3b{left:394.695834px;}
.x52{left:398.477488px;}
.x1f{left:404.285875px;}
.x2a{left:410.360301px;}
.x26{left:440.988224px;}
.x5d{left:446.685022px;}
.x25{left:450.044744px;}
.x24{left:451.849739px;}
.x5c{left:479.544687px;}
.x49{left:505.791849px;}
.x5a{left:519.028400px;}
.x19{left:526.175904px;}
.x4{left:550.125018px;}
.x60{left:564.393686px;}
.x4a{left:565.696211px;}
.x39{left:568.473453px;}
.xe{left:576.849590px;}
.xf{left:597.784623px;}
.x37{left:605.775844px;}
.x10{left:625.197898px;}
.x45{left:647.224389px;}
.x34{left:652.407883px;}
.x42{left:664.140532px;}
.x11{left:669.515168px;}
.x48{left:677.656315px;}
.x47{left:680.122597px;}
.x15{left:697.092322px;}
.x32{left:721.121592px;}
.x44{left:722.521148px;}
.x46{left:723.524086px;}
.x3e{left:732.453323px;}
.x20{left:755.400450px;}
.x38{left:769.685492px;}
.x1a{left:771.606668px;}
.x33{left:777.353312px;}
.x2e{left:780.960287px;}
.x28{left:795.288989px;}
.x29{left:801.008343px;}
.x27{left:816.172316px;}
.x21{left:817.977311px;}
.x43{left:864.581441px;}
.x3a{left:888.362275px;}
.x56{left:1001.527986px;}
.x53{left:1003.885994px;}
.x3f{left:1036.340071px;}
.x2d{left:1037.528071px;}
.x31{left:1038.662084px;}
.x2f{left:1040.030088px;}
.x2b{left:1045.448077px;}
.x9{left:1046.456094px;}
@media print{
.v10{vertical-align:-111.486324pt;}
.v2{vertical-align:-32.000001pt;}
.v3{vertical-align:-23.999997pt;}
.v9{vertical-align:-9.392600pt;}
.v12{vertical-align:-1.782680pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:3.342800pt;}
.vc{vertical-align:9.784780pt;}
.vd{vertical-align:10.833400pt;}
.v1{vertical-align:32.000001pt;}
.vb{vertical-align:47.159998pt;}
.v7{vertical-align:64.446514pt;}
.v6{vertical-align:84.006355pt;}
.v11{vertical-align:87.787259pt;}
.v5{vertical-align:95.193635pt;}
.v4{vertical-align:115.199992pt;}
.ve{vertical-align:116.096004pt;}
.va{vertical-align:120.961840pt;}
.vf{vertical-align:144.347461pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.054822pt;}
.ls3{letter-spacing:2.679822pt;}
.ls4{letter-spacing:3.368842pt;}
.ls8{letter-spacing:63.342937pt;}
.ls6{letter-spacing:72.009378pt;}
.ls2{letter-spacing:77.334403pt;}
.ls1{letter-spacing:96.000503pt;}
.ls7{letter-spacing:104.009387pt;}
.ws10{word-spacing:-45.857921pt;}
.ws14{word-spacing:-36.693924pt;}
.wse{word-spacing:-30.336001pt;}
.wsd{word-spacing:-25.440001pt;}
.ws11{word-spacing:-23.079734pt;}
.ws13{word-spacing:-22.928960pt;}
.ws7{word-spacing:-22.752001pt;}
.ws9{word-spacing:-22.217601pt;}
.ws12{word-spacing:-20.641120pt;}
.ws8{word-spacing:-20.507467pt;}
.ws5{word-spacing:-20.224001pt;}
.wsf{word-spacing:-19.786667pt;}
.wsa{word-spacing:-17.696000pt;}
.ws2{word-spacing:-16.960001pt;}
.ws0{word-spacing:-15.075557pt;}
.ws1{word-spacing:-11.306668pt;}
.ws3{word-spacing:0.000000pt;}
.ws4{word-spacing:127.998004pt;}
.ws6{word-spacing:422.204280pt;}
.wsb{word-spacing:805.059570pt;}
.wsc{word-spacing:1056.221634pt;}
._17{margin-left:-61.183750pt;}
._16{margin-left:-8.160000pt;}
._4{margin-left:-7.125334pt;}
._2{margin-left:-6.208000pt;}
._1c{margin-left:-5.252161pt;}
._0{margin-left:-4.138667pt;}
._1{margin-left:-2.483200pt;}
._3{margin-left:-1.280000pt;}
._15{width:1.638400pt;}
._5{width:96.000247pt;}
._7{width:232.604659pt;}
._18{width:270.748226pt;}
._12{width:314.529717pt;}
._8{width:330.506429pt;}
._11{width:333.676332pt;}
._10{width:463.732442pt;}
._c{width:487.736386pt;}
._14{width:516.129723pt;}
._a{width:526.678754pt;}
._b{width:528.247660pt;}
._9{width:554.611922pt;}
._1d{width:713.326035pt;}
._1b{width:740.427866pt;}
._1a{width:848.069841pt;}
._f{width:866.583254pt;}
._19{width:915.749868pt;}
._13{width:928.369630pt;}
._6{width:1349.039843pt;}
._d{width:1367.404604pt;}
._e{width:1517.825248pt;}
.fs3{font-size:42.666670pt;}
.fs2{font-size:56.888895pt;}
.fs4{font-size:64.000002pt;}
.fsb{font-size:74.666666pt;}
.fsd{font-size:77.386666pt;}
.fsf{font-size:83.840004pt;}
.fs1{font-size:85.333339pt;}
.fs13{font-size:87.093335pt;}
.fsa{font-size:96.000003pt;}
.fsc{font-size:96.746667pt;}
.fs11{font-size:101.600003pt;}
.fs17{font-size:106.453335pt;}
.fs6{font-size:106.666667pt;}
.fse{font-size:125.760000pt;}
.fs5{font-size:128.000004pt;}
.fs15{font-size:130.000004pt;}
.fs9{font-size:134.400004pt;}
.fs18{font-size:154.826685pt;}
.fs7{font-size:192.000006pt;}
.fs16{font-size:193.493338pt;}
.fs0{font-size:206.933327pt;}
.fs10{font-size:213.333335pt;}
.fs8{font-size:320.000010pt;}
.fs12{font-size:348.319987pt;}
.fs14{font-size:619.733300pt;}
.y0{bottom:0.000000pt;}
.y12{bottom:16.660566pt;}
.y66{bottom:17.563013pt;}
.y42{bottom:32.432736pt;}
.y63{bottom:38.519085pt;}
.y9c{bottom:43.756174pt;}
.y54{bottom:45.343934pt;}
.y24{bottom:48.238948pt;}
.y25{bottom:49.637358pt;}
.y48{bottom:54.477964pt;}
.y8f{bottom:57.603485pt;}
.y4c{bottom:59.791795pt;}
.y53{bottom:61.343935pt;}
.ya2{bottom:69.259435pt;}
.y9d{bottom:69.293765pt;}
.y9b{bottom:69.884185pt;}
.y23{bottom:70.638947pt;}
.y4f{bottom:74.265825pt;}
.y52{bottom:77.343935pt;}
.y47{bottom:77.693955pt;}
.y4b{bottom:83.007785pt;}
.ya7{bottom:83.585135pt;}
.y3f{bottom:88.045538pt;}
.y3d{bottom:91.547196pt;}
.y9a{bottom:96.012186pt;}
.y4e{bottom:97.481828pt;}
.y46{bottom:100.909958pt;}
.y1d{bottom:101.749166pt;}
.y32{bottom:103.597046pt;}
.y4a{bottom:106.223788pt;}
.ya4{bottom:108.248616pt;}
.y71{bottom:108.632086pt;}
.y75{bottom:109.364556pt;}
.y3e{bottom:113.645536pt;}
.y3c{bottom:113.947186pt;}
.y1e{bottom:114.549162pt;}
.y2f{bottom:115.922936pt;}
.y73{bottom:118.053786pt;}
.y67{bottom:119.501189pt;}
.y74{bottom:120.199207pt;}
.y4d{bottom:121.859427pt;}
.y60{bottom:123.151918pt;}
.y35{bottom:124.098567pt;}
.y45{bottom:125.287557pt;}
.y31{bottom:125.997041pt;}
.y1c{bottom:127.349167pt;}
.y6c{bottom:127.628367pt;}
.y49{bottom:130.601387pt;}
.yc{bottom:132.928507pt;}
.y5e{bottom:132.944987pt;}
.y62{bottom:136.203888pt;}
.y2e{bottom:138.322931pt;}
.y99{bottom:142.713517pt;}
.y34{bottom:146.498561pt;}
.y30{bottom:148.397039pt;}
.ya3{bottom:153.022189pt;}
.y6b{bottom:153.228358pt;}
.yb{bottom:158.128508pt;}
.y5d{bottom:158.544978pt;}
.y3b{bottom:158.747178pt;}
.y7b{bottom:159.252692pt;}
.y2d{bottom:160.722930pt;}
.y33{bottom:168.898560pt;}
.y86{bottom:174.615768pt;}
.ya{bottom:179.328498pt;}
.y3a{bottom:181.147174pt;}
.y5c{bottom:184.144971pt;}
.y7a{bottom:188.052690pt;}
.y98{bottom:189.414849pt;}
.y2a{bottom:193.956641pt;}
.y85{bottom:203.415759pt;}
.y29{bottom:203.445011pt;}
.y39{bottom:203.547172pt;}
.y6a{bottom:204.428349pt;}
.y9{bottom:204.528493pt;}
.y2c{bottom:204.908121pt;}
.y1b{bottom:208.290699pt;}
.y5b{bottom:209.744969pt;}
.y58{bottom:217.896170pt;}
.y11{bottom:218.408490pt;}
.y51{bottom:223.039730pt;}
.y8{bottom:225.728490pt;}
.y38{bottom:227.227171pt;}
.y69{bottom:227.301070pt;}
.y28{bottom:229.045010pt;}
.y2b{bottom:230.508120pt;}
.y84{bottom:232.215740pt;}
.ya1{bottom:233.124870pt;}
.y1a{bottom:233.890700pt;}
.y57{bottom:243.496161pt;}
.y7{bottom:250.928489pt;}
.y50{bottom:260.767725pt;}
.y83{bottom:261.015741pt;}
.y97{bottom:261.037111pt;}
.y10{bottom:262.568491pt;}
.y56{bottom:269.096153pt;}
.y6{bottom:272.128491pt;}
.y64{bottom:274.134747pt;}
.y79{bottom:283.939306pt;}
.y96{bottom:287.165122pt;}
.y82{bottom:289.815742pt;}
.ya6{bottom:291.876262pt;}
.ya9{bottom:291.910482pt;}
.y55{bottom:294.696152pt;}
.y5{bottom:297.328491pt;}
.yf{bottom:306.728493pt;}
.y78{bottom:312.739304pt;}
.y7d{bottom:313.192854pt;}
.y95{bottom:313.293127pt;}
.y14{bottom:315.948548pt;}
.y81{bottom:318.615743pt;}
.y4{bottom:319.776475pt;}
.y72{bottom:320.124893pt;}
.yad{bottom:323.587543pt;}
.y13{bottom:327.282195pt;}
.y43{bottom:327.521675pt;}
.ya5{bottom:338.577594pt;}
.ya8{bottom:338.611814pt;}
.y94{bottom:339.421124pt;}
.y20{bottom:342.009438pt;}
.y19{bottom:342.152764pt;}
.y3{bottom:345.376474pt;}
.y80{bottom:347.415748pt;}
.ye{bottom:350.888494pt;}
.y5a{bottom:355.287878pt;}
.y8b{bottom:360.576694pt;}
.y8e{bottom:360.800104pt;}
.y77{bottom:361.003888pt;}
.y22{bottom:364.100259pt;}
.y27{bottom:364.188444pt;}
.y93{bottom:365.549124pt;}
.yac{bottom:370.288875pt;}
.y1f{bottom:370.809436pt;}
.y18{bottom:371.592770pt;}
.y44{bottom:373.652276pt;}
.y7f{bottom:376.215746pt;}
.y59{bottom:377.687877pt;}
.y6f{bottom:379.806765pt;}
.y6e{bottom:379.909551pt;}
.y36{bottom:381.417946pt;}
.y8a{bottom:382.976689pt;}
.y8d{bottom:383.200099pt;}
.y7c{bottom:388.821202pt;}
.y21{bottom:389.700260pt;}
.y26{bottom:389.788445pt;}
.y76{bottom:389.803886pt;}
.y2{bottom:391.272470pt;}
.yd{bottom:395.048495pt;}
.y41{bottom:395.287345pt;}
.y17{bottom:401.032762pt;}
.y61{bottom:404.811017pt;}
.y5f{bottom:404.811547pt;}
.y89{bottom:405.376688pt;}
.y8c{bottom:405.600098pt;}
.y6d{bottom:408.933552pt;}
.y92{bottom:412.250456pt;}
.y16{bottom:430.472756pt;}
.yaa{bottom:436.659487pt;}
.y9f{bottom:445.667028pt;}
.yaf{bottom:446.978437pt;}
.y87{bottom:447.791494pt;}
.y1{bottom:453.352467pt;}
.y88{bottom:454.688429pt;}
.yae{bottom:456.603091pt;}
.y7e{bottom:473.243843pt;}
.y91{bottom:476.168785pt;}
.y15{bottom:476.712505pt;}
.y37{bottom:479.090248pt;}
.y70{bottom:480.146248pt;}
.yab{bottom:481.357608pt;}
.y68{bottom:487.811758pt;}
.y90{bottom:488.117335pt;}
.ya0{bottom:491.065578pt;}
.y9e{bottom:492.368359pt;}
.y65{bottom:504.778543pt;}
.y40{bottom:509.330708pt;}
.h3{height:44.800004pt;}
.h4{height:67.200002pt;}
.hd{height:78.400000pt;}
.h12{height:78.400440pt;}
.h15{height:81.256000pt;}
.h11{height:82.188360pt;}
.ha{height:89.600006pt;}
.h1d{height:91.448002pt;}
.h2{height:91.733341pt;}
.h25{height:94.876962pt;}
.hb{height:100.800003pt;}
.h14{height:101.584000pt;}
.h26{height:106.680003pt;}
.h19{height:110.584784pt;}
.h1a{height:110.584804pt;}
.h24{height:111.776002pt;}
.h6{height:112.000001pt;}
.h1b{height:117.513404pt;}
.h17{height:132.048000pt;}
.h5{height:134.400004pt;}
.h16{height:135.192002pt;}
.h9{height:141.120005pt;}
.h10{height:154.046520pt;}
.hf{height:162.406354pt;}
.h27{height:162.568019pt;}
.he{height:173.593635pt;}
.h28{height:179.235260pt;}
.h21{height:183.937842pt;}
.h13{height:188.161842pt;}
.h7{height:201.600006pt;}
.h23{height:203.168005pt;}
.h22{height:211.547463pt;}
.hc{height:215.999995pt;}
.h20{height:217.268860pt;}
.h1{height:217.279993pt;}
.h1f{height:217.680004pt;}
.h18{height:224.000002pt;}
.h8{height:230.000007pt;}
.h1c{height:365.735987pt;}
.h0{height:540.000000pt;}
.h1e{height:650.719965pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x5f{left:28.586352pt;}
.x3d{left:32.152967pt;}
.x35{left:35.472651pt;}
.xc{left:41.724411pt;}
.x1{left:48.756134pt;}
.x50{left:50.860476pt;}
.x3{left:51.749922pt;}
.x22{left:53.316720pt;}
.x2{left:54.910944pt;}
.xd{left:58.134221pt;}
.x58{left:59.440422pt;}
.x12{left:64.361203pt;}
.x13{left:66.174102pt;}
.x2c{left:69.220999pt;}
.x23{left:74.752709pt;}
.x57{left:76.581732pt;}
.x30{left:78.224815pt;}
.x4f{left:94.321686pt;}
.x4c{left:96.488296pt;}
.x8{left:104.312923pt;}
.x6{left:106.776363pt;}
.x5{left:108.472362pt;}
.x40{left:112.123537pt;}
.x54{left:114.155074pt;}
.xb{left:124.525250pt;}
.x4d{left:126.419287pt;}
.x36{left:132.178478pt;}
.x1e{left:134.599968pt;}
.x1d{left:138.311012pt;}
.x5b{left:142.026675pt;}
.x7{left:159.672300pt;}
.x4e{left:160.821634pt;}
.x14{left:163.163255pt;}
.x59{left:168.907175pt;}
.x5e{left:186.285356pt;}
.x3c{left:187.810506pt;}
.x51{left:192.131086pt;}
.xa{left:198.225626pt;}
.x4b{left:202.376706pt;}
.x18{left:207.994877pt;}
.x16{left:214.025722pt;}
.x17{left:232.634639pt;}
.x1b{left:259.260775pt;}
.x55{left:295.988989pt;}
.x1c{left:298.653905pt;}
.x41{left:307.900349pt;}
.x3b{left:350.840741pt;}
.x52{left:354.202211pt;}
.x1f{left:359.365222pt;}
.x2a{left:364.764712pt;}
.x26{left:391.989533pt;}
.x5d{left:397.053353pt;}
.x25{left:400.039773pt;}
.x24{left:401.644213pt;}
.x5c{left:426.261944pt;}
.x49{left:449.592754pt;}
.x5a{left:461.358578pt;}
.x19{left:467.711915pt;}
.x4{left:489.000016pt;}
.x60{left:501.683276pt;}
.x4a{left:502.841076pt;}
.x39{left:505.309736pt;}
.xe{left:512.755191pt;}
.xf{left:531.364109pt;}
.x37{left:538.467417pt;}
.x10{left:555.731465pt;}
.x45{left:575.310568pt;}
.x34{left:579.918119pt;}
.x42{left:590.347140pt;}
.x11{left:595.124594pt;}
.x48{left:602.361169pt;}
.x47{left:604.553419pt;}
.x15{left:619.637620pt;}
.x32{left:640.996971pt;}
.x44{left:642.241021pt;}
.x46{left:643.132521pt;}
.x3e{left:651.069621pt;}
.x20{left:671.467066pt;}
.x38{left:684.164882pt;}
.x1a{left:685.872594pt;}
.x33{left:690.980722pt;}
.x2e{left:694.186922pt;}
.x28{left:706.923546pt;}
.x29{left:712.007416pt;}
.x27{left:725.486503pt;}
.x21{left:727.090943pt;}
.x43{left:768.516837pt;}
.x3a{left:789.655355pt;}
.x56{left:890.247098pt;}
.x53{left:892.343106pt;}
.x3f{left:921.191174pt;}
.x2d{left:922.247175pt;}
.x31{left:923.255186pt;}
.x2f{left:924.471190pt;}
.x2b{left:929.287180pt;}
.x9{left:930.183195pt;}
}




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