
    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_3fb3be7ba8b0fa717c7879f7.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.893066;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_65bda4ff6b01da1f1a757522.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.910645;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_7b7cdb00d1dfb8503779ad43.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.893555;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_74953ef0d9670e0fe6b1b8b2.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_1aa3d7704d3f46d049207b77.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.893555;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_3174f99fbf0b15033b08f52d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.911133;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_3174f99fbf0b15033b08f52d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.911133;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_ff7a94ff50059e5148bf52fd.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.893066;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_ae45c76cdde2b8c3a1026554.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.712000;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:30.000000px;}
.v3{vertical-align:49.500000px;}
.v2{vertical-align:60.000000px;}
.ls4{letter-spacing:-2.442000px;}
.ls1{letter-spacing:-0.096000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:10.260000px;}
.ls3{letter-spacing:31.680000px;}
.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;}
}
.ws10{word-spacing:-31.680000px;}
.ws1{word-spacing:-15.000000px;}
.ws0{word-spacing:-13.500000px;}
.ws11{word-spacing:-12.000000px;}
.wsf{word-spacing:-10.260000px;}
.ws2{word-spacing:0.000000px;}
.ws3{word-spacing:0.096000px;}
.ws7{word-spacing:36.240000px;}
.wsd{word-spacing:122.713200px;}
.wse{word-spacing:128.224200px;}
.ws9{word-spacing:165.528000px;}
.wsb{word-spacing:170.747400px;}
.wsa{word-spacing:190.278000px;}
.ws6{word-spacing:194.436000px;}
.ws5{word-spacing:197.713800px;}
.wsc{word-spacing:213.119400px;}
.ws8{word-spacing:247.597200px;}
.ws4{word-spacing:1873.986600px;}
._3{margin-left:-2187.444000px;}
._27{margin-left:-10.236000px;}
._19{margin-left:-8.474400px;}
._1a{margin-left:-7.240200px;}
._4{margin-left:-5.674200px;}
._2{margin-left:-4.465800px;}
._0{margin-left:-3.040200px;}
._1{margin-left:-1.042200px;}
._5{width:1.476000px;}
._6{width:3.174000px;}
._7{width:4.332000px;}
._10{width:6.342600px;}
._a{width:7.788000px;}
._16{width:8.857200px;}
._b{width:10.164000px;}
._18{width:11.517000px;}
._15{width:12.619200px;}
._1e{width:13.695000px;}
._1c{width:15.015000px;}
._32{width:17.212800px;}
._e{width:18.427200px;}
._14{width:19.813200px;}
._21{width:20.816400px;}
._13{width:21.852600px;}
._12{width:23.040600px;}
._11{width:24.842400px;}
._f{width:25.852200px;}
._17{width:27.040200px;}
._22{width:28.221600px;}
._20{width:30.419400px;}
._23{width:31.475400px;}
._c{width:33.792000px;}
._d{width:35.013000px;}
._1f{width:37.092000px;}
._25{width:39.685800px;}
._1d{width:41.296200px;}
._26{width:42.596400px;}
._31{width:43.704000px;}
._9{width:48.721200px;}
._1b{width:54.357600px;}
._30{width:60.000000px;}
._24{width:74.157600px;}
._8{width:104.676000px;}
._2d{width:111.901200px;}
._2b{width:113.797200px;}
._2e{width:165.528000px;}
._2f{width:171.039000px;}
._2c{width:172.489200px;}
._29{width:179.749200px;}
._28{width:207.018000px;}
._2a{width:223.518000px;}
.fc5{color:rgb(0,173,239);}
.fc4{color:transparent;}
.fc6{color:rgb(24,23,23);}
.fc2{color:rgb(48,88,159);}
.fc3{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs0{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fs5{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fs3{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.yf{bottom:30.289950px;}
.yb{bottom:30.301800px;}
.y47{bottom:30.906150px;}
.y46{bottom:33.478950px;}
.yae{bottom:33.490650px;}
.ye{bottom:33.691200px;}
.y2e{bottom:74.573250px;}
.y44{bottom:75.323400px;}
.y9e{bottom:77.579250px;}
.y6a{bottom:82.043850px;}
.y2d{bottom:94.073250px;}
.y43{bottom:94.823400px;}
.y9d{bottom:97.079250px;}
.y69{bottom:101.543850px;}
.y2c{bottom:113.573250px;}
.y42{bottom:114.323400px;}
.y9c{bottom:116.579250px;}
.y68{bottom:121.043850px;}
.y2b{bottom:133.073250px;}
.y41{bottom:133.823400px;}
.y9b{bottom:136.079250px;}
.y67{bottom:140.543850px;}
.y2a{bottom:152.573250px;}
.y9a{bottom:155.579250px;}
.y66{bottom:160.043850px;}
.y40{bottom:161.827350px;}
.y99{bottom:175.079250px;}
.y65{bottom:179.543850px;}
.y29{bottom:180.577200px;}
.y3f{bottom:181.327350px;}
.y98{bottom:194.579250px;}
.y28{bottom:200.077200px;}
.y3e{bottom:200.827350px;}
.y97{bottom:214.079250px;}
.y64{bottom:218.543850px;}
.y27{bottom:219.577200px;}
.y3d{bottom:220.327350px;}
.y96{bottom:233.579250px;}
.y63{bottom:238.043850px;}
.y26{bottom:239.077200px;}
.y3c{bottom:239.827350px;}
.y95{bottom:253.079250px;}
.y62{bottom:257.543850px;}
.y25{bottom:258.577200px;}
.y3b{bottom:259.327350px;}
.y94{bottom:272.579250px;}
.y61{bottom:277.043850px;}
.y24{bottom:278.077200px;}
.y3a{bottom:278.827350px;}
.y93{bottom:292.079250px;}
.y60{bottom:296.543850px;}
.y23{bottom:297.577200px;}
.y39{bottom:298.327350px;}
.y5f{bottom:316.043850px;}
.y22{bottom:317.077200px;}
.y38{bottom:317.827350px;}
.y92{bottom:331.079250px;}
.y5e{bottom:335.543850px;}
.y21{bottom:336.577200px;}
.y37{bottom:337.327350px;}
.y91{bottom:350.579250px;}
.y5d{bottom:355.043850px;}
.y20{bottom:356.077200px;}
.y90{bottom:370.079250px;}
.y5c{bottom:374.543850px;}
.y1f{bottom:375.577200px;}
.y36{bottom:376.327350px;}
.y8f{bottom:389.579250px;}
.y1e{bottom:395.077200px;}
.y35{bottom:395.827350px;}
.y5b{bottom:402.547650px;}
.y8e{bottom:409.079250px;}
.y1d{bottom:414.577200px;}
.y34{bottom:415.327350px;}
.y5a{bottom:422.047800px;}
.y8d{bottom:428.579250px;}
.y1c{bottom:434.077200px;}
.y33{bottom:434.827350px;}
.y59{bottom:441.547800px;}
.y8c{bottom:448.079250px;}
.y1b{bottom:453.577200px;}
.y32{bottom:454.327350px;}
.y58{bottom:461.047800px;}
.y8b{bottom:467.579250px;}
.y1a{bottom:473.077200px;}
.y31{bottom:473.827350px;}
.y57{bottom:480.547800px;}
.y8a{bottom:487.079250px;}
.y19{bottom:492.577200px;}
.y30{bottom:493.327350px;}
.y56{bottom:500.047800px;}
.y89{bottom:506.579250px;}
.y18{bottom:512.077200px;}
.y2f{bottom:512.827350px;}
.y55{bottom:519.547800px;}
.y88{bottom:526.079250px;}
.y54{bottom:539.047800px;}
.y87{bottom:545.579250px;}
.y53{bottom:558.547800px;}
.y86{bottom:565.079250px;}
.y17{bottom:575.077350px;}
.y52{bottom:578.047800px;}
.y16{bottom:601.581300px;}
.y85{bottom:604.079250px;}
.y51{bottom:606.051600px;}
.y15{bottom:619.581300px;}
.y84{bottom:623.579250px;}
.y50{bottom:625.551750px;}
.y14{bottom:637.581300px;}
.y83{bottom:643.079250px;}
.y4f{bottom:645.051750px;}
.y13{bottom:655.581300px;}
.y82{bottom:662.579250px;}
.y4e{bottom:664.551750px;}
.y12{bottom:673.581300px;}
.y81{bottom:682.079250px;}
.y4d{bottom:684.051750px;}
.y11{bottom:691.581300px;}
.y4c{bottom:703.551750px;}
.y80{bottom:710.083200px;}
.y10{bottom:715.085100px;}
.y4b{bottom:723.051750px;}
.y7f{bottom:729.583200px;}
.y4a{bottom:742.551750px;}
.y7e{bottom:749.083200px;}
.y49{bottom:762.051750px;}
.y7d{bottom:768.583200px;}
.y9{bottom:772.104900px;}
.y8{bottom:785.604900px;}
.y7c{bottom:788.083200px;}
.y48{bottom:790.055550px;}
.y7{bottom:799.104900px;}
.yc6{bottom:806.095050px;}
.y7b{bottom:807.583200px;}
.yc5{bottom:818.095050px;}
.yad{bottom:825.536250px;}
.y6{bottom:826.104900px;}
.yc4{bottom:830.095050px;}
.y7a{bottom:835.587150px;}
.y5{bottom:839.604900px;}
.yc3{bottom:842.095050px;}
.yac{bottom:850.286250px;}
.yc2{bottom:854.095050px;}
.y79{bottom:855.087150px;}
.yc1{bottom:866.095050px;}
.y4{bottom:866.604900px;}
.yab{bottom:873.726750px;}
.y78{bottom:874.587150px;}
.yc0{bottom:878.095050px;}
.y3{bottom:880.104900px;}
.ybf{bottom:890.095050px;}
.y77{bottom:894.087150px;}
.yaa{bottom:898.476750px;}
.ybe{bottom:902.095050px;}
.y2{bottom:907.104900px;}
.ya{bottom:912.864300px;}
.y76{bottom:913.587150px;}
.ybd{bottom:914.095050px;}
.y1{bottom:920.604900px;}
.ya9{bottom:921.917250px;}
.ybc{bottom:926.095050px;}
.yd9{bottom:932.215200px;}
.y75{bottom:933.087150px;}
.ybb{bottom:938.095050px;}
.yd8{bottom:944.215200px;}
.ya8{bottom:946.667250px;}
.yba{bottom:950.095050px;}
.y74{bottom:952.587150px;}
.yd7{bottom:956.215200px;}
.yb9{bottom:962.095050px;}
.yd6{bottom:968.215200px;}
.ya7{bottom:970.107600px;}
.yb8{bottom:974.095050px;}
.yd5{bottom:980.215200px;}
.y73{bottom:980.591100px;}
.yb7{bottom:986.095050px;}
.yd4{bottom:992.215200px;}
.ya6{bottom:994.857600px;}
.yb6{bottom:998.095050px;}
.y72{bottom:1000.091100px;}
.yd3{bottom:1004.215200px;}
.yb5{bottom:1010.095050px;}
.yd2{bottom:1016.215200px;}
.ya5{bottom:1018.298100px;}
.y71{bottom:1019.591100px;}
.yb4{bottom:1022.095050px;}
.yd1{bottom:1028.215200px;}
.yc{bottom:1029.889650px;}
.yb3{bottom:1034.095050px;}
.y70{bottom:1039.091100px;}
.yd0{bottom:1040.215200px;}
.ya4{bottom:1043.048100px;}
.yb2{bottom:1046.095050px;}
.ycf{bottom:1052.215200px;}
.yb1{bottom:1058.095050px;}
.y6f{bottom:1058.591100px;}
.yce{bottom:1064.215200px;}
.ya3{bottom:1066.488450px;}
.yb0{bottom:1070.095050px;}
.ycd{bottom:1076.215200px;}
.y6e{bottom:1078.091100px;}
.yaf{bottom:1082.095050px;}
.yd{bottom:1083.927000px;}
.ycc{bottom:1088.215200px;}
.ya2{bottom:1091.238450px;}
.ycb{bottom:1100.215200px;}
.y6d{bottom:1106.095050px;}
.yca{bottom:1112.215200px;}
.ya1{bottom:1112.930850px;}
.ya0{bottom:1120.430850px;}
.yc9{bottom:1124.215200px;}
.y6c{bottom:1125.595050px;}
.yc8{bottom:1136.215200px;}
.y6b{bottom:1145.095050px;}
.y9f{bottom:1146.135000px;}
.yc7{bottom:1148.215200px;}
.y45{bottom:1187.880600px;}
.h2{height:32.507812px;}
.h5{height:33.351562px;}
.h4{height:37.494141px;}
.h3{height:37.520508px;}
.h10{height:40.634766px;}
.h9{height:41.689453px;}
.hd{height:42.000000px;}
.hc{height:44.730469px;}
.hb{height:45.858398px;}
.ha{height:48.761719px;}
.h6{height:48.796875px;}
.h8{height:58.898438px;}
.he{height:70.664062px;}
.h7{height:84.000000px;}
.h11{height:95.358398px;}
.hf{height:100.634766px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:702.000300px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:63.779550px;}
.xc{left:69.156450px;}
.xa{left:70.157400px;}
.xf{left:71.654550px;}
.x2{left:73.783500px;}
.x1{left:75.283500px;}
.x7{left:87.412950px;}
.x12{left:90.779550px;}
.x9{left:95.409450px;}
.x6{left:128.945700px;}
.xd{left:190.629900px;}
.x10{left:200.634900px;}
.x11{left:203.604150px;}
.x5{left:237.709950px;}
.xe{left:364.143900px;}
.xb{left:459.212550px;}
.x13{left:486.212550px;}
.x8{left:638.165100px;}
.x3{left:688.791000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.666667pt;}
.v3{vertical-align:44.000000pt;}
.v2{vertical-align:53.333333pt;}
.ls4{letter-spacing:-2.170667pt;}
.ls1{letter-spacing:-0.085333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:9.120000pt;}
.ls3{letter-spacing:28.160000pt;}
.ws10{word-spacing:-28.160000pt;}
.ws1{word-spacing:-13.333333pt;}
.ws0{word-spacing:-12.000000pt;}
.ws11{word-spacing:-10.666667pt;}
.wsf{word-spacing:-9.120000pt;}
.ws2{word-spacing:0.000000pt;}
.ws3{word-spacing:0.085333pt;}
.ws7{word-spacing:32.213333pt;}
.wsd{word-spacing:109.078400pt;}
.wse{word-spacing:113.977067pt;}
.ws9{word-spacing:147.136000pt;}
.wsb{word-spacing:151.775467pt;}
.wsa{word-spacing:169.136000pt;}
.ws6{word-spacing:172.832000pt;}
.ws5{word-spacing:175.745600pt;}
.wsc{word-spacing:189.439467pt;}
.ws8{word-spacing:220.086400pt;}
.ws4{word-spacing:1665.765867pt;}
._3{margin-left:-1944.394667pt;}
._27{margin-left:-9.098667pt;}
._19{margin-left:-7.532800pt;}
._1a{margin-left:-6.435733pt;}
._4{margin-left:-5.043733pt;}
._2{margin-left:-3.969600pt;}
._0{margin-left:-2.702400pt;}
._1{margin-left:-0.926400pt;}
._5{width:1.312000pt;}
._6{width:2.821333pt;}
._7{width:3.850667pt;}
._10{width:5.637867pt;}
._a{width:6.922667pt;}
._16{width:7.873067pt;}
._b{width:9.034667pt;}
._18{width:10.237333pt;}
._15{width:11.217067pt;}
._1e{width:12.173333pt;}
._1c{width:13.346667pt;}
._32{width:15.300267pt;}
._e{width:16.379733pt;}
._14{width:17.611733pt;}
._21{width:18.503467pt;}
._13{width:19.424533pt;}
._12{width:20.480533pt;}
._11{width:22.082133pt;}
._f{width:22.979733pt;}
._17{width:24.035733pt;}
._22{width:25.085867pt;}
._20{width:27.039467pt;}
._23{width:27.978133pt;}
._c{width:30.037333pt;}
._d{width:31.122667pt;}
._1f{width:32.970667pt;}
._25{width:35.276267pt;}
._1d{width:36.707733pt;}
._26{width:37.863467pt;}
._31{width:38.848000pt;}
._9{width:43.307733pt;}
._1b{width:48.317867pt;}
._30{width:53.333333pt;}
._24{width:65.917867pt;}
._8{width:93.045333pt;}
._2d{width:99.467733pt;}
._2b{width:101.153067pt;}
._2e{width:147.136000pt;}
._2f{width:152.034667pt;}
._2c{width:153.323733pt;}
._29{width:159.777067pt;}
._28{width:184.016000pt;}
._2a{width:198.682667pt;}
.fs0{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fs5{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fs3{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.yf{bottom:26.924400pt;}
.yb{bottom:26.934933pt;}
.y47{bottom:27.472133pt;}
.y46{bottom:29.759067pt;}
.yae{bottom:29.769467pt;}
.ye{bottom:29.947733pt;}
.y2e{bottom:66.287333pt;}
.y44{bottom:66.954133pt;}
.y9e{bottom:68.959333pt;}
.y6a{bottom:72.927867pt;}
.y2d{bottom:83.620667pt;}
.y43{bottom:84.287467pt;}
.y9d{bottom:86.292667pt;}
.y69{bottom:90.261200pt;}
.y2c{bottom:100.954000pt;}
.y42{bottom:101.620800pt;}
.y9c{bottom:103.626000pt;}
.y68{bottom:107.594533pt;}
.y2b{bottom:118.287333pt;}
.y41{bottom:118.954133pt;}
.y9b{bottom:120.959333pt;}
.y67{bottom:124.927867pt;}
.y2a{bottom:135.620667pt;}
.y9a{bottom:138.292667pt;}
.y66{bottom:142.261200pt;}
.y40{bottom:143.846533pt;}
.y99{bottom:155.626000pt;}
.y65{bottom:159.594533pt;}
.y29{bottom:160.513067pt;}
.y3f{bottom:161.179867pt;}
.y98{bottom:172.959333pt;}
.y28{bottom:177.846400pt;}
.y3e{bottom:178.513200pt;}
.y97{bottom:190.292667pt;}
.y64{bottom:194.261200pt;}
.y27{bottom:195.179733pt;}
.y3d{bottom:195.846533pt;}
.y96{bottom:207.626000pt;}
.y63{bottom:211.594533pt;}
.y26{bottom:212.513067pt;}
.y3c{bottom:213.179867pt;}
.y95{bottom:224.959333pt;}
.y62{bottom:228.927867pt;}
.y25{bottom:229.846400pt;}
.y3b{bottom:230.513200pt;}
.y94{bottom:242.292667pt;}
.y61{bottom:246.261200pt;}
.y24{bottom:247.179733pt;}
.y3a{bottom:247.846533pt;}
.y93{bottom:259.626000pt;}
.y60{bottom:263.594533pt;}
.y23{bottom:264.513067pt;}
.y39{bottom:265.179867pt;}
.y5f{bottom:280.927867pt;}
.y22{bottom:281.846400pt;}
.y38{bottom:282.513200pt;}
.y92{bottom:294.292667pt;}
.y5e{bottom:298.261200pt;}
.y21{bottom:299.179733pt;}
.y37{bottom:299.846533pt;}
.y91{bottom:311.626000pt;}
.y5d{bottom:315.594533pt;}
.y20{bottom:316.513067pt;}
.y90{bottom:328.959333pt;}
.y5c{bottom:332.927867pt;}
.y1f{bottom:333.846400pt;}
.y36{bottom:334.513200pt;}
.y8f{bottom:346.292667pt;}
.y1e{bottom:351.179733pt;}
.y35{bottom:351.846533pt;}
.y5b{bottom:357.820133pt;}
.y8e{bottom:363.626000pt;}
.y1d{bottom:368.513067pt;}
.y34{bottom:369.179867pt;}
.y5a{bottom:375.153600pt;}
.y8d{bottom:380.959333pt;}
.y1c{bottom:385.846400pt;}
.y33{bottom:386.513200pt;}
.y59{bottom:392.486933pt;}
.y8c{bottom:398.292667pt;}
.y1b{bottom:403.179733pt;}
.y32{bottom:403.846533pt;}
.y58{bottom:409.820267pt;}
.y8b{bottom:415.626000pt;}
.y1a{bottom:420.513067pt;}
.y31{bottom:421.179867pt;}
.y57{bottom:427.153600pt;}
.y8a{bottom:432.959333pt;}
.y19{bottom:437.846400pt;}
.y30{bottom:438.513200pt;}
.y56{bottom:444.486933pt;}
.y89{bottom:450.292667pt;}
.y18{bottom:455.179733pt;}
.y2f{bottom:455.846533pt;}
.y55{bottom:461.820267pt;}
.y88{bottom:467.626000pt;}
.y54{bottom:479.153600pt;}
.y87{bottom:484.959333pt;}
.y53{bottom:496.486933pt;}
.y86{bottom:502.292667pt;}
.y17{bottom:511.179867pt;}
.y52{bottom:513.820267pt;}
.y16{bottom:534.738933pt;}
.y85{bottom:536.959333pt;}
.y51{bottom:538.712533pt;}
.y15{bottom:550.738933pt;}
.y84{bottom:554.292667pt;}
.y50{bottom:556.046000pt;}
.y14{bottom:566.738933pt;}
.y83{bottom:571.626000pt;}
.y4f{bottom:573.379333pt;}
.y13{bottom:582.738933pt;}
.y82{bottom:588.959333pt;}
.y4e{bottom:590.712667pt;}
.y12{bottom:598.738933pt;}
.y81{bottom:606.292667pt;}
.y4d{bottom:608.046000pt;}
.y11{bottom:614.738933pt;}
.y4c{bottom:625.379333pt;}
.y80{bottom:631.185067pt;}
.y10{bottom:635.631200pt;}
.y4b{bottom:642.712667pt;}
.y7f{bottom:648.518400pt;}
.y4a{bottom:660.046000pt;}
.y7e{bottom:665.851733pt;}
.y49{bottom:677.379333pt;}
.y7d{bottom:683.185067pt;}
.y9{bottom:686.315467pt;}
.y8{bottom:698.315467pt;}
.y7c{bottom:700.518400pt;}
.y48{bottom:702.271600pt;}
.y7{bottom:710.315467pt;}
.yc6{bottom:716.528933pt;}
.y7b{bottom:717.851733pt;}
.yc5{bottom:727.195600pt;}
.yad{bottom:733.810000pt;}
.y6{bottom:734.315467pt;}
.yc4{bottom:737.862267pt;}
.y7a{bottom:742.744133pt;}
.y5{bottom:746.315467pt;}
.yc3{bottom:748.528933pt;}
.yac{bottom:755.810000pt;}
.yc2{bottom:759.195600pt;}
.y79{bottom:760.077467pt;}
.yc1{bottom:769.862267pt;}
.y4{bottom:770.315467pt;}
.yab{bottom:776.646000pt;}
.y78{bottom:777.410800pt;}
.yc0{bottom:780.528933pt;}
.y3{bottom:782.315467pt;}
.ybf{bottom:791.195600pt;}
.y77{bottom:794.744133pt;}
.yaa{bottom:798.646000pt;}
.ybe{bottom:801.862267pt;}
.y2{bottom:806.315467pt;}
.ya{bottom:811.434933pt;}
.y76{bottom:812.077467pt;}
.ybd{bottom:812.528933pt;}
.y1{bottom:818.315467pt;}
.ya9{bottom:819.482000pt;}
.ybc{bottom:823.195600pt;}
.yd9{bottom:828.635733pt;}
.y75{bottom:829.410800pt;}
.ybb{bottom:833.862267pt;}
.yd8{bottom:839.302400pt;}
.ya8{bottom:841.482000pt;}
.yba{bottom:844.528933pt;}
.y74{bottom:846.744133pt;}
.yd7{bottom:849.969067pt;}
.yb9{bottom:855.195600pt;}
.yd6{bottom:860.635733pt;}
.ya7{bottom:862.317867pt;}
.yb8{bottom:865.862267pt;}
.yd5{bottom:871.302400pt;}
.y73{bottom:871.636533pt;}
.yb7{bottom:876.528933pt;}
.yd4{bottom:881.969067pt;}
.ya6{bottom:884.317867pt;}
.yb6{bottom:887.195600pt;}
.y72{bottom:888.969867pt;}
.yd3{bottom:892.635733pt;}
.yb5{bottom:897.862267pt;}
.yd2{bottom:903.302400pt;}
.ya5{bottom:905.153867pt;}
.y71{bottom:906.303200pt;}
.yb4{bottom:908.528933pt;}
.yd1{bottom:913.969067pt;}
.yc{bottom:915.457467pt;}
.yb3{bottom:919.195600pt;}
.y70{bottom:923.636533pt;}
.yd0{bottom:924.635733pt;}
.ya4{bottom:927.153867pt;}
.yb2{bottom:929.862267pt;}
.ycf{bottom:935.302400pt;}
.yb1{bottom:940.528933pt;}
.y6f{bottom:940.969867pt;}
.yce{bottom:945.969067pt;}
.ya3{bottom:947.989733pt;}
.yb0{bottom:951.195600pt;}
.ycd{bottom:956.635733pt;}
.y6e{bottom:958.303200pt;}
.yaf{bottom:961.862267pt;}
.yd{bottom:963.490667pt;}
.ycc{bottom:967.302400pt;}
.ya2{bottom:969.989733pt;}
.ycb{bottom:977.969067pt;}
.y6d{bottom:983.195600pt;}
.yca{bottom:988.635733pt;}
.ya1{bottom:989.271867pt;}
.ya0{bottom:995.938533pt;}
.yc9{bottom:999.302400pt;}
.y6c{bottom:1000.528933pt;}
.yc8{bottom:1009.969067pt;}
.y6b{bottom:1017.862267pt;}
.y9f{bottom:1018.786667pt;}
.yc7{bottom:1020.635733pt;}
.y45{bottom:1055.893867pt;}
.h2{height:28.895833pt;}
.h5{height:29.645833pt;}
.h4{height:33.328125pt;}
.h3{height:33.351562pt;}
.h10{height:36.119792pt;}
.h9{height:37.057292pt;}
.hd{height:37.333333pt;}
.hc{height:39.760417pt;}
.hb{height:40.763021pt;}
.ha{height:43.343750pt;}
.h6{height:43.375000pt;}
.h8{height:52.354167pt;}
.he{height:62.812500pt;}
.h7{height:74.666667pt;}
.h11{height:84.763021pt;}
.hf{height:89.453125pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:624.000267pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:56.692933pt;}
.xc{left:61.472400pt;}
.xa{left:62.362133pt;}
.xf{left:63.692933pt;}
.x2{left:65.585333pt;}
.x1{left:66.918667pt;}
.x7{left:77.700400pt;}
.x12{left:80.692933pt;}
.x9{left:84.808400pt;}
.x6{left:114.618400pt;}
.xd{left:169.448800pt;}
.x10{left:178.342133pt;}
.x11{left:180.981467pt;}
.x5{left:211.297733pt;}
.xe{left:323.683467pt;}
.xb{left:408.188933pt;}
.x13{left:432.188933pt;}
.x8{left:567.257867pt;}
.x3{left:612.258667pt;}
}




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