
    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_1b0475b4cc8cc1ff00a2126e.woff')format("woff");}.ff1{font-family:ff1;line-height:0.938477;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_02246b9d49f5b5dee102a59b.woff')format("woff");}.ff2{font-family:ff2;line-height:0.939453;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_70f3623a54145c5fcc4c767b.woff')format("woff");}.ff3{font-family:ff3;line-height:0.926270;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_877b2968af1ef73fb5df3add.woff')format("woff");}.ff4{font-family:ff4;line-height:0.932129;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_1e6cf84b58c94739134257fc.woff')format("woff");}.ff5{font-family:ff5;line-height:0.936523;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_bc276e7b637fa38d0368f15b.woff')format("woff");}.ff6{font-family:ff6;line-height:0.932129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.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);}
.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);}
.v4{vertical-align:-109.929429px;}
.v3{vertical-align:-43.200000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:67.970382px;}
.v2{vertical-align:74.554986px;}
.ls5{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.062031px;}
.ls2{letter-spacing:0.064090px;}
.ls1{letter-spacing:0.148873px;}
.ls0{letter-spacing:0.148886px;}
.ls4{letter-spacing:3717.187554px;}
.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;}
}
.ws4{word-spacing:-53.184002px;}
.ws0{word-spacing:-53.184000px;}
.ws1{word-spacing:-52.368855px;}
.ws2{word-spacing:-29.251200px;}
.ws3{word-spacing:-26.847250px;}
.ws7{word-spacing:0.000000px;}
.ws5{word-spacing:339.755980px;}
.ws6{word-spacing:339.755986px;}
._13{margin-left:-21.312001px;}
._11{margin-left:-17.472001px;}
._0{margin-left:-14.208000px;}
._10{margin-left:-12.720000px;}
._6{margin-left:-11.616000px;}
._d{margin-left:-10.368000px;}
._7{margin-left:-7.470343px;}
._3{margin-left:-5.913600px;}
._4{margin-left:-4.857600px;}
._f{margin-left:-2.478343px;}
._5{margin-left:-1.372800px;}
._1{width:1.134343px;}
._8{width:2.639503px;}
._38{width:3.648000px;}
._2a{width:5.568000px;}
._21{width:8.448000px;}
._29{width:9.600000px;}
._16{width:12.288000px;}
._2e{width:13.440000px;}
._1e{width:15.744000px;}
._28{width:17.664001px;}
._27{width:19.008001px;}
._42{width:20.160001px;}
._17{width:21.312001px;}
._3a{width:23.808001px;}
._32{width:24.960001px;}
._36{width:29.376001px;}
._3d{width:30.720001px;}
._3c{width:31.872001px;}
._44{width:35.328001px;}
._2d{width:36.864001px;}
._18{width:43.200001px;}
._33{width:46.464001px;}
._39{width:47.808001px;}
._e{width:50.304002px;}
._20{width:54.336002px;}
._1f{width:55.680002px;}
._25{width:57.408002px;}
._37{width:58.560002px;}
._22{width:61.632002px;}
._34{width:65.088002px;}
._23{width:66.432002px;}
._26{width:67.776002px;}
._24{width:69.120002px;}
._14{width:70.830346px;}
._15{width:72.401659px;}
._43{width:73.920002px;}
._c{width:80.256003px;}
._b{width:83.136003px;}
._a{width:84.672003px;}
._1c{width:87.744002px;}
._1d{width:89.856003px;}
._1b{width:91.008003px;}
._9{width:106.176003px;}
._35{width:122.688004px;}
._3f{width:125.760004px;}
._2b{width:127.488004px;}
._31{width:134.976004px;}
._2c{width:138.048004px;}
._1a{width:139.392004px;}
._19{width:140.544004px;}
._3b{width:142.272004px;}
._41{width:162.432005px;}
._40{width:163.584005px;}
._3e{width:179.904006px;}
._30{width:255.744008px;}
._2f{width:282.432009px;}
._2{width:1148.562696px;}
._12{width:1173.312037px;}
.fc5{color:transparent;}
.fc4{color:rgb(212,0,0);}
.fc3{color:rgb(255,102,0);}
.fc2{color:rgb(0,84,159);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fsd{font-size:70.200000px;}
.fs4{font-size:86.400000px;}
.fs8{font-size:96.921480px;}
.fsa{font-size:96.922278px;}
.fs3{font-size:105.600000px;}
.fse{font-size:108.000000px;}
.fsf{font-size:119.999994px;}
.fs7{font-size:180.562866px;}
.fs9{font-size:186.387474px;}
.fs2{font-size:189.057240px;}
.fs1{font-size:192.000000px;}
.fsb{font-size:192.000006px;}
.fs5{font-size:226.868700px;}
.fs0{font-size:226.868706px;}
.fsc{font-size:239.999994px;}
.fs6{font-size:288.000000px;}
.y0{bottom:0.000000px;}
.y26{bottom:32.818728px;}
.y5{bottom:58.130529px;}
.y6{bottom:91.194655px;}
.yc{bottom:119.099013px;}
.y4{bottom:119.549342px;}
.y7{bottom:124.258780px;}
.y8{bottom:157.194655px;}
.y12{bottom:170.197183px;}
.yb{bottom:178.179401px;}
.y3{bottom:178.629729px;}
.y11{bottom:203.133058px;}
.y10{bottom:236.197183px;}
.ya{bottom:237.259788px;}
.y2{bottom:237.710117px;}
.yf{bottom:269.197183px;}
.y9{bottom:282.648951px;}
.y1{bottom:300.091875px;}
.ye{bottom:302.197183px;}
.yd{bottom:335.197183px;}
.ya5{bottom:504.985542px;}
.y9d{bottom:525.302682px;}
.y5b{bottom:525.492730px;}
.y4c{bottom:563.241612px;}
.ya4{bottom:564.985592px;}
.y5a{bottom:585.492780px;}
.ya3{bottom:624.985642px;}
.y59{bottom:645.492830px;}
.y9e{bottom:646.476730px;}
.ya2{bottom:684.985692px;}
.ya1{bottom:745.102334px;}
.y9c{bottom:754.870480px;}
.y58{bottom:765.492930px;}
.ya0{bottom:805.102287px;}
.y57{bottom:825.492980px;}
.y4b{bottom:836.821150px;}
.y9b{bottom:840.393880px;}
.y9f{bottom:865.218881px;}
.y56{bottom:885.493030px;}
.y9a{bottom:944.367409px;}
.y55{bottom:945.493080px;}
.y4a{bottom:977.446149px;}
.y54{bottom:1005.493129px;}
.y53{bottom:1065.493179px;}
.y49{bottom:1090.218879px;}
.y99{bottom:1110.727176px;}
.y98{bottom:1170.727226px;}
.y52{bottom:1185.493279px;}
.y48{bottom:1221.227937px;}
.y97{bottom:1230.727276px;}
.y51{bottom:1245.493329px;}
.y50{bottom:1305.493379px;}
.y96{bottom:1318.968367px;}
.y47{bottom:1343.071150px;}
.y4f{bottom:1365.493429px;}
.y95{bottom:1378.968417px;}
.y4e{bottom:1425.493479px;}
.y94{bottom:1438.968466px;}
.y46{bottom:1457.601726px;}
.y82{bottom:1484.728370px;}
.y4d{bottom:1485.610120px;}
.y93{bottom:1498.968516px;}
.y81{bottom:1544.728324px;}
.y44{bottom:1568.350141px;}
.y80{bottom:1611.736326px;}
.y92{bottom:1618.968616px;}
.y91{bottom:1678.968666px;}
.y88{bottom:1693.851788px;}
.ya8{bottom:1723.735131px;}
.y90{bottom:1738.968716px;}
.y83{bottom:1768.518874px;}
.ya7{bottom:1783.851724px;}
.y8f{bottom:1798.968766px;}
.y7f{bottom:1851.351739px;}
.y8e{bottom:1858.968816px;}
.y8d{bottom:1918.968865px;}
.y87{bottom:1930.968963px;}
.y43{bottom:1955.343874px;}
.y8c{bottom:1978.968915px;}
.y86{bottom:1990.968917px;}
.y8b{bottom:2038.968965px;}
.y85{bottom:2050.968871px;}
.y8a{bottom:2098.968919px;}
.y84{bottom:2108.976873px;}
.y38{bottom:2143.593914px;}
.y3c{bottom:2143.593962px;}
.y89{bottom:2158.968873px;}
.y37{bottom:2203.593964px;}
.y3b{bottom:2203.594012px;}
.y33{bottom:2225.601918px;}
.y45{bottom:2238.117403px;}
.y36{bottom:2263.593918px;}
.y3a{bottom:2263.593966px;}
.y32{bottom:2285.601872px;}
.y35{bottom:2323.593871px;}
.y39{bottom:2323.593920px;}
.y34{bottom:2385.468872px;}
.y7e{bottom:2408.343901px;}
.y7d{bottom:2468.343854px;}
.y42{bottom:2527.219142px;}
.y3f{bottom:2527.503926px;}
.y7c{bottom:2558.110529px;}
.y73{bottom:2568.587070px;}
.y75{bottom:2568.587145px;}
.y41{bottom:2587.219096px;}
.y3e{bottom:2587.503880px;}
.y7b{bottom:2618.110579px;}
.y40{bottom:2647.219050px;}
.y3d{bottom:2647.503834px;}
.y7a{bottom:2678.110629px;}
.y72{bottom:2709.212070px;}
.y74{bottom:2709.212145px;}
.y79{bottom:2738.110679px;}
.y78{bottom:2798.110729px;}
.y71{bottom:2849.837068px;}
.ya6{bottom:2851.593869px;}
.y77{bottom:2858.227275px;}
.y76{bottom:2918.343869px;}
.y70{bottom:2997.492399px;}
.y31{bottom:3114.491934px;}
.y6f{bottom:3147.093416px;}
.y5c{bottom:3189.093882px;}
.y6e{bottom:3207.093466px;}
.y6d{bottom:3267.093516px;}
.y30{bottom:3275.226763px;}
.y2f{bottom:3335.226717px;}
.y5e{bottom:3355.555212px;}
.y6c{bottom:3387.093616px;}
.y5d{bottom:3415.555165px;}
.y6b{bottom:3447.093666px;}
.y25{bottom:3479.625000px;}
.y2e{bottom:3482.253715px;}
.y24{bottom:3486.836282px;}
.y2b{bottom:3498.086357px;}
.y23{bottom:3546.836331px;}
.y2a{bottom:3558.086406px;}
.y2d{bottom:3563.253715px;}
.y6a{bottom:3567.093765px;}
.y61{bottom:3589.594081px;}
.y69{bottom:3627.093815px;}
.y27{bottom:3631.903428px;}
.y60{bottom:3649.594035px;}
.y2c{bottom:3666.753715px;}
.y22{bottom:3666.836335px;}
.y29{bottom:3678.086410px;}
.y68{bottom:3687.093865px;}
.y21{bottom:3726.836289px;}
.y5f{bottom:3735.726870px;}
.y67{bottom:3747.093915px;}
.y28{bottom:3765.568721px;}
.y66{bottom:3807.093965px;}
.y63{bottom:3832.453164px;}
.y1b{bottom:3865.476805px;}
.y1a{bottom:3925.476759px;}
.y65{bottom:3927.093969px;}
.y62{bottom:3946.712070px;}
.y19{bottom:3985.476712px;}
.y64{bottom:3987.210563px;}
.y1c{bottom:4066.242393px;}
.y1d{bottom:4070.741778px;}
.y18{bottom:4199.259314px;}
.y17{bottom:4257.505400px;}
.y20{bottom:4306.480368px;}
.y16{bottom:4315.751485px;}
.y1f{bottom:4340.230366px;}
.y1e{bottom:4373.980366px;}
.y15{bottom:4432.243656px;}
.y14{bottom:4515.690677px;}
.y13{bottom:4587.690677px;}
.hc{height:51.176074px;}
.h5{height:75.590625px;}
.h3{height:76.879688px;}
.h4{height:76.982813px;}
.he{height:87.480464px;}
.h9{height:135.877197px;}
.h2{height:137.823466px;}
.ha{height:139.125004px;}
.h8{height:145.117055px;}
.h1{height:165.166621px;}
.hb{height:173.906246px;}
.h7{height:208.687500px;}
.h6{height:233.136999px;}
.hd{height:297.240000px;}
.h0{height:5056.500000px;}
.w1{width:258.750000px;}
.w0{width:3576.000000px;}
.x0{left:0.000000px;}
.x13{left:42.530269px;}
.xa{left:66.558243px;}
.x5{left:108.793944px;}
.x20{left:138.187499px;}
.xf{left:139.277581px;}
.x10{left:140.625000px;}
.xb{left:141.801773px;}
.xd{left:144.046874px;}
.xc{left:146.861595px;}
.x12{left:159.750000px;}
.x19{left:180.046886px;}
.x1c{left:218.343827px;}
.x18{left:222.234375px;}
.x1e{left:237.000083px;}
.x1d{left:266.437572px;}
.x14{left:342.539050px;}
.x11{left:438.585942px;}
.x1a{left:642.117177px;}
.x1f{left:656.460960px;}
.x17{left:898.593835px;}
.x16{left:1033.593834px;}
.x24{left:1207.195314px;}
.x21{left:1208.296869px;}
.x22{left:1243.816403px;}
.x15{left:1286.835937px;}
.x1b{left:1337.671894px;}
.x23{left:1440.691402px;}
.x25{left:1637.566401px;}
.x34{left:1909.312474px;}
.x2d{left:1912.406225px;}
.xe{left:1926.538610px;}
.x2e{left:2573.437471px;}
.x6{left:2613.252195px;}
.x2f{left:2667.937380px;}
.x2{left:2825.506909px;}
.x7{left:2848.442267px;}
.x3{left:2874.617458px;}
.x9{left:2890.813964px;}
.x4{left:2899.542008px;}
.x36{left:2974.921919px;}
.x8{left:2977.588307px;}
.x2a{left:2978.812460px;}
.x32{left:2981.156216px;}
.x35{left:3000.234419px;}
.x27{left:3005.717979px;}
.x28{left:3025.405468px;}
.x1{left:3026.582157px;}
.x33{left:3039.046906px;}
.x29{left:3047.671919px;}
.x26{left:3060.023369px;}
.x2b{left:3061.687468px;}
.x37{left:3063.538769px;}
.x31{left:3156.046945px;}
.x30{left:3174.187483px;}
.x2c{left:3201.890516px;}
@media print{
.v4{vertical-align:-97.715048pt;}
.v3{vertical-align:-38.400000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:60.418117pt;}
.v2{vertical-align:66.271099pt;}
.ls5{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.055139pt;}
.ls2{letter-spacing:0.056969pt;}
.ls1{letter-spacing:0.132331pt;}
.ls0{letter-spacing:0.132343pt;}
.ls4{letter-spacing:3304.166715pt;}
.ws4{word-spacing:-47.274668pt;}
.ws0{word-spacing:-47.274667pt;}
.ws1{word-spacing:-46.550094pt;}
.ws2{word-spacing:-26.001067pt;}
.ws3{word-spacing:-23.864222pt;}
.ws7{word-spacing:0.000000pt;}
.ws5{word-spacing:302.005316pt;}
.ws6{word-spacing:302.005321pt;}
._13{margin-left:-18.944001pt;}
._11{margin-left:-15.530667pt;}
._0{margin-left:-12.629333pt;}
._10{margin-left:-11.306666pt;}
._6{margin-left:-10.325333pt;}
._d{margin-left:-9.216000pt;}
._7{margin-left:-6.640305pt;}
._3{margin-left:-5.256533pt;}
._4{margin-left:-4.317867pt;}
._f{margin-left:-2.202972pt;}
._5{margin-left:-1.220267pt;}
._1{width:1.008305pt;}
._8{width:2.346225pt;}
._38{width:3.242667pt;}
._2a{width:4.949333pt;}
._21{width:7.509334pt;}
._29{width:8.533334pt;}
._16{width:10.922667pt;}
._2e{width:11.946667pt;}
._1e{width:13.994667pt;}
._28{width:15.701334pt;}
._27{width:16.896001pt;}
._42{width:17.920001pt;}
._17{width:18.944001pt;}
._3a{width:21.162667pt;}
._32{width:22.186667pt;}
._36{width:26.112001pt;}
._3d{width:27.306668pt;}
._3c{width:28.330668pt;}
._44{width:31.402668pt;}
._2d{width:32.768001pt;}
._18{width:38.400001pt;}
._33{width:41.301335pt;}
._39{width:42.496001pt;}
._e{width:44.714668pt;}
._20{width:48.298668pt;}
._1f{width:49.493335pt;}
._25{width:51.029335pt;}
._37{width:52.053335pt;}
._22{width:54.784002pt;}
._34{width:57.856002pt;}
._23{width:59.050669pt;}
._26{width:60.245335pt;}
._24{width:61.440002pt;}
._14{width:62.960307pt;}
._15{width:64.357030pt;}
._43{width:65.706669pt;}
._c{width:71.338669pt;}
._b{width:73.898669pt;}
._a{width:75.264002pt;}
._1c{width:77.994669pt;}
._1d{width:79.872002pt;}
._1b{width:80.896003pt;}
._9{width:94.378670pt;}
._35{width:109.056003pt;}
._3f{width:111.786670pt;}
._2b{width:113.322670pt;}
._31{width:119.978670pt;}
._2c{width:122.709337pt;}
._1a{width:123.904004pt;}
._19{width:124.928004pt;}
._3b{width:126.464004pt;}
._41{width:144.384005pt;}
._40{width:145.408005pt;}
._3e{width:159.914672pt;}
._30{width:227.328007pt;}
._2f{width:251.050675pt;}
._2{width:1020.944619pt;}
._12{width:1042.944033pt;}
.fsd{font-size:62.400000pt;}
.fs4{font-size:76.800000pt;}
.fs8{font-size:86.152427pt;}
.fsa{font-size:86.153136pt;}
.fs3{font-size:93.866667pt;}
.fse{font-size:96.000000pt;}
.fsf{font-size:106.666661pt;}
.fs7{font-size:160.500325pt;}
.fs9{font-size:165.677755pt;}
.fs2{font-size:168.050880pt;}
.fs1{font-size:170.666667pt;}
.fsb{font-size:170.666672pt;}
.fs5{font-size:201.661067pt;}
.fs0{font-size:201.661072pt;}
.fsc{font-size:213.333328pt;}
.fs6{font-size:256.000000pt;}
.y0{bottom:0.000000pt;}
.y26{bottom:29.172203pt;}
.y5{bottom:51.671581pt;}
.y6{bottom:81.061915pt;}
.yc{bottom:105.865789pt;}
.y4{bottom:106.266081pt;}
.y7{bottom:110.452249pt;}
.y8{bottom:139.728582pt;}
.y12{bottom:151.286385pt;}
.yb{bottom:158.381689pt;}
.y3{bottom:158.781981pt;}
.y11{bottom:180.562718pt;}
.y10{bottom:209.953052pt;}
.ya{bottom:210.897589pt;}
.y2{bottom:211.297881pt;}
.yf{bottom:239.286385pt;}
.y9{bottom:251.243512pt;}
.y1{bottom:266.748333pt;}
.ye{bottom:268.619719pt;}
.yd{bottom:297.953052pt;}
.ya5{bottom:448.876037pt;}
.y9d{bottom:466.935717pt;}
.y5b{bottom:467.104649pt;}
.y4c{bottom:500.659211pt;}
.ya4{bottom:502.209415pt;}
.y5a{bottom:520.438027pt;}
.ya3{bottom:555.542793pt;}
.y59{bottom:573.771405pt;}
.y9e{bottom:574.645983pt;}
.ya2{bottom:608.876170pt;}
.ya1{bottom:662.313185pt;}
.y9c{bottom:670.995983pt;}
.y58{bottom:680.438160pt;}
.ya0{bottom:715.646478pt;}
.y57{bottom:733.771538pt;}
.y4b{bottom:743.841023pt;}
.y9b{bottom:747.016783pt;}
.y9f{bottom:769.083450pt;}
.y56{bottom:787.104915pt;}
.y9a{bottom:839.437697pt;}
.y55{bottom:840.438293pt;}
.y4a{bottom:868.841021pt;}
.y54{bottom:893.771671pt;}
.y53{bottom:947.105048pt;}
.y49{bottom:969.083448pt;}
.y99{bottom:987.313046pt;}
.y98{bottom:1040.646423pt;}
.y52{bottom:1053.771804pt;}
.y48{bottom:1085.535944pt;}
.y97{bottom:1093.979801pt;}
.y51{bottom:1107.105181pt;}
.y50{bottom:1160.438559pt;}
.y96{bottom:1172.416326pt;}
.y47{bottom:1193.841023pt;}
.y4f{bottom:1213.771937pt;}
.y95{bottom:1225.749704pt;}
.y4e{bottom:1267.105314pt;}
.y94{bottom:1279.083081pt;}
.y46{bottom:1295.645979pt;}
.y82{bottom:1319.758551pt;}
.y4d{bottom:1320.542329pt;}
.y93{bottom:1332.416459pt;}
.y81{bottom:1373.091843pt;}
.y44{bottom:1394.089015pt;}
.y80{bottom:1432.654512pt;}
.y92{bottom:1439.083214pt;}
.y91{bottom:1492.416592pt;}
.y88{bottom:1505.646034pt;}
.ya8{bottom:1532.209005pt;}
.y90{bottom:1545.749970pt;}
.y83{bottom:1572.016777pt;}
.ya7{bottom:1585.645977pt;}
.y8f{bottom:1599.083347pt;}
.y7f{bottom:1645.645990pt;}
.y8e{bottom:1652.416725pt;}
.y8d{bottom:1705.750103pt;}
.y87{bottom:1716.416856pt;}
.y43{bottom:1738.083444pt;}
.y8c{bottom:1759.083480pt;}
.y86{bottom:1769.750149pt;}
.y8b{bottom:1812.416858pt;}
.y85{bottom:1823.083441pt;}
.y8a{bottom:1865.750150pt;}
.y84{bottom:1874.646109pt;}
.y38{bottom:1905.416812pt;}
.y3c{bottom:1905.416855pt;}
.y89{bottom:1919.083443pt;}
.y37{bottom:1958.750190pt;}
.y3b{bottom:1958.750233pt;}
.y33{bottom:1978.312816pt;}
.y45{bottom:1989.437692pt;}
.y36{bottom:2012.083482pt;}
.y3a{bottom:2012.083525pt;}
.y32{bottom:2031.646108pt;}
.y35{bottom:2065.416775pt;}
.y39{bottom:2065.416817pt;}
.y34{bottom:2120.416775pt;}
.y7e{bottom:2140.750134pt;}
.y7d{bottom:2194.083426pt;}
.y42{bottom:2246.417015pt;}
.y3f{bottom:2246.670156pt;}
.y7c{bottom:2273.876026pt;}
.y73{bottom:2283.188507pt;}
.y75{bottom:2283.188573pt;}
.y41{bottom:2299.750307pt;}
.y3e{bottom:2300.003449pt;}
.y7b{bottom:2327.209404pt;}
.y40{bottom:2353.083600pt;}
.y3d{bottom:2353.336741pt;}
.y7a{bottom:2380.542781pt;}
.y72{bottom:2408.188507pt;}
.y74{bottom:2408.188573pt;}
.y79{bottom:2433.876159pt;}
.y78{bottom:2487.209537pt;}
.y71{bottom:2533.188505pt;}
.ya6{bottom:2534.750105pt;}
.y77{bottom:2540.646466pt;}
.y76{bottom:2594.083439pt;}
.y70{bottom:2664.437688pt;}
.y31{bottom:2768.437275pt;}
.y6f{bottom:2797.416370pt;}
.y5c{bottom:2834.750117pt;}
.y6e{bottom:2850.749748pt;}
.y6d{bottom:2904.083125pt;}
.y30{bottom:2911.312678pt;}
.y2f{bottom:2964.645971pt;}
.y5e{bottom:2982.715744pt;}
.y6c{bottom:3010.749881pt;}
.y5d{bottom:3036.049036pt;}
.y6b{bottom:3064.083258pt;}
.y25{bottom:3093.000000pt;}
.y2e{bottom:3095.336636pt;}
.y24{bottom:3099.410028pt;}
.y2b{bottom:3109.410095pt;}
.y23{bottom:3152.743406pt;}
.y2a{bottom:3162.743472pt;}
.y2d{bottom:3167.336636pt;}
.y6a{bottom:3170.750014pt;}
.y61{bottom:3190.750295pt;}
.y69{bottom:3224.083391pt;}
.y27{bottom:3228.358603pt;}
.y60{bottom:3244.083587pt;}
.y2c{bottom:3259.336636pt;}
.y22{bottom:3259.410076pt;}
.y29{bottom:3269.410142pt;}
.y68{bottom:3277.416769pt;}
.y21{bottom:3312.743368pt;}
.y5f{bottom:3320.646107pt;}
.y67{bottom:3330.750147pt;}
.y28{bottom:3347.172197pt;}
.y66{bottom:3384.083524pt;}
.y63{bottom:3406.625035pt;}
.y1b{bottom:3435.979382pt;}
.y1a{bottom:3489.312674pt;}
.y65{bottom:3490.750194pt;}
.y62{bottom:3508.188507pt;}
.y19{bottom:3542.645967pt;}
.y64{bottom:3544.187167pt;}
.y1c{bottom:3614.437683pt;}
.y1d{bottom:3618.437136pt;}
.y18{bottom:3732.674946pt;}
.y17{bottom:3784.449244pt;}
.y20{bottom:3827.982549pt;}
.y16{bottom:3836.223543pt;}
.y1f{bottom:3857.982548pt;}
.y1e{bottom:3887.982548pt;}
.y15{bottom:3939.772139pt;}
.y14{bottom:4013.947268pt;}
.y13{bottom:4077.947268pt;}
.hc{height:45.489844pt;}
.h5{height:67.191667pt;}
.h3{height:68.337500pt;}
.h4{height:68.429167pt;}
.he{height:77.760413pt;}
.h9{height:120.779730pt;}
.h2{height:122.509748pt;}
.ha{height:123.666671pt;}
.h8{height:128.992937pt;}
.h1{height:146.814775pt;}
.hb{height:154.583329pt;}
.h7{height:185.500000pt;}
.h6{height:207.232888pt;}
.hd{height:264.213333pt;}
.h0{height:4494.666667pt;}
.w1{width:230.000000pt;}
.w0{width:3178.666667pt;}
.x0{left:0.000000pt;}
.x13{left:37.804684pt;}
.xa{left:59.162883pt;}
.x5{left:96.705728pt;}
.x20{left:122.833332pt;}
.xf{left:123.802295pt;}
.x10{left:125.000000pt;}
.xb{left:126.046020pt;}
.xd{left:128.041665pt;}
.xc{left:130.543640pt;}
.x12{left:142.000000pt;}
.x19{left:160.041676pt;}
.x1c{left:194.083402pt;}
.x18{left:197.541667pt;}
.x1e{left:210.666741pt;}
.x1d{left:236.833398pt;}
.x14{left:304.479155pt;}
.x11{left:389.854171pt;}
.x1a{left:570.770824pt;}
.x1f{left:583.520854pt;}
.x17{left:798.750076pt;}
.x16{left:918.750075pt;}
.x24{left:1073.062501pt;}
.x21{left:1074.041661pt;}
.x22{left:1105.614580pt;}
.x15{left:1143.854167pt;}
.x1b{left:1189.041683pt;}
.x23{left:1280.614580pt;}
.x25{left:1455.614579pt;}
.x34{left:1697.166644pt;}
.x2d{left:1699.916644pt;}
.xe{left:1712.478764pt;}
.x2e{left:2287.499975pt;}
.x6{left:2322.890840pt;}
.x2f{left:2371.499893pt;}
.x2{left:2511.561697pt;}
.x7{left:2531.948681pt;}
.x3{left:2555.215518pt;}
.x9{left:2569.612413pt;}
.x4{left:2577.370674pt;}
.x36{left:2644.375039pt;}
.x8{left:2646.745162pt;}
.x2a{left:2647.833298pt;}
.x32{left:2649.916637pt;}
.x35{left:2666.875039pt;}
.x27{left:2671.749315pt;}
.x28{left:2689.249305pt;}
.x1{left:2690.295251pt;}
.x33{left:2701.375028pt;}
.x29{left:2709.041705pt;}
.x26{left:2720.020772pt;}
.x2b{left:2721.499972pt;}
.x37{left:2723.145572pt;}
.x31{left:2805.375063pt;}
.x30{left:2821.499985pt;}
.x2c{left:2846.124903pt;}
}




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