
    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_342e36aed1d83533d31e9658.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_e6b169a2806193314f92c636.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_07d00c73a5359097f6064aa3.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_f8b53604f2b9369e217d8248.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_9db790420dbb68dc6cf2add6.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_1c0c670b79947b86ddaab0ac.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_013be64ca99e70ec662cc0ab.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);}
.v1{vertical-align:-88.190746px;}
.v2{vertical-align:-85.310764px;}
.v3{vertical-align:-13.503600px;}
.v7{vertical-align:-2.321946px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:2.551140px;}
.v5{vertical-align:67.035593px;}
.v6{vertical-align:72.031763px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:325.911180px;}
.ls2{letter-spacing:344.330561px;}
.ls4{letter-spacing:1428.741208px;}
.ls3{letter-spacing:1440.235351px;}
.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;}
}
.wsb{word-spacing:-85.320003px;}
.ws1{word-spacing:-33.120000px;}
.ws3{word-spacing:-29.808001px;}
.ws6{word-spacing:-28.440000px;}
.ws5{word-spacing:-23.436000px;}
.wsc{word-spacing:-17.490001px;}
.ws4{word-spacing:-12.000001px;}
.ws7{word-spacing:-8.370000px;}
.wsa{word-spacing:-8.280000px;}
.ws0{word-spacing:0.000000px;}
.ws2{word-spacing:261.019117px;}
.ws8{word-spacing:1093.248898px;}
.ws9{word-spacing:1216.319672px;}
._35{margin-left:-14.850000px;}
._37{margin-left:-10.440000px;}
._1b{margin-left:-8.820000px;}
._10{margin-left:-7.620000px;}
._12{margin-left:-6.564939px;}
._4{margin-left:-5.430000px;}
._1{margin-left:-3.630000px;}
._0{margin-left:-1.830000px;}
._2{width:1.146000px;}
._38{width:2.520000px;}
._1d{width:89.330662px;}
._5{width:142.412694px;}
._e{width:170.587597px;}
._b{width:314.454670px;}
._14{width:325.050679px;}
._15{width:329.533149px;}
._9{width:342.102952px;}
._8{width:350.334128px;}
._a{width:355.382191px;}
._7{width:356.462465px;}
._1c{width:370.976229px;}
._2d{width:374.585109px;}
._1e{width:460.905377px;}
._30{width:492.618456px;}
._c{width:509.874739px;}
._27{width:532.856330px;}
._2b{width:539.427050px;}
._1a{width:555.490775px;}
._3{width:591.111501px;}
._36{width:615.076126px;}
._11{width:650.308458px;}
._d{width:710.166034px;}
._31{width:714.176628px;}
._13{width:747.169002px;}
._6{width:750.453963px;}
._16{width:764.850731px;}
._1f{width:784.751206px;}
._19{width:802.751131px;}
._33{width:824.427990px;}
._23{width:859.521541px;}
._26{width:876.290767px;}
._25{width:934.899578px;}
._18{width:986.945712px;}
._2a{width:1012.100796px;}
._29{width:1014.115266px;}
._f{width:1017.755203px;}
._17{width:1046.341284px;}
._2f{width:1080.845726px;}
._32{width:1126.329559px;}
._2e{width:1193.942858px;}
._34{width:1236.219472px;}
._24{width:1269.451503px;}
._2c{width:1294.020172px;}
._22{width:1314.391087px;}
._21{width:1388.593115px;}
._20{width:1390.031675px;}
._28{width:2517.750135px;}
.fc4{color:rgb(219,68,55);}
.fc5{color:transparent;}
.fc3{color:rgb(0,144,162);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(69,84,107);}
.fc0{color:rgb(138,148,156);}
.fs0{font-size:30.000000px;}
.fs5{font-size:48.000003px;}
.fs2{font-size:54.000002px;}
.fsd{font-size:60.000000px;}
.fs7{font-size:62.041799px;}
.fs1{font-size:66.000004px;}
.fsc{font-size:68.914199px;}
.fs6{font-size:70.904999px;}
.fsb{font-size:84.000000px;}
.fs3{font-size:102.000000px;}
.fs8{font-size:108.000003px;}
.fs4{font-size:120.000001px;}
.fsa{font-size:138.000001px;}
.fs9{font-size:270.000009px;}
.fse{font-size:360.000012px;}
.y0{bottom:0.000000px;}
.y2{bottom:21.762017px;}
.y1{bottom:30.762016px;}
.y17{bottom:39.824570px;}
.y31{bottom:39.824577px;}
.yc{bottom:40.544566px;}
.yf{bottom:40.544577px;}
.y6{bottom:57.794236px;}
.y5{bottom:80.474237px;}
.y16{bottom:81.944567px;}
.yb{bottom:87.344567px;}
.y41{bottom:97.743338px;}
.y1a{bottom:113.139693px;}
.y3a{bottom:114.340610px;}
.y3c{bottom:117.587056px;}
.y4b{bottom:122.806764px;}
.y15{bottom:124.064568px;}
.y1c{bottom:124.717823px;}
.y13{bottom:128.102419px;}
.y66{bottom:128.303366px;}
.y6e{bottom:129.019406px;}
.y38{bottom:129.796648px;}
.ye{bottom:134.144569px;}
.y4{bottom:136.271235px;}
.y65{bottom:137.303366px;}
.y54{bottom:145.448254px;}
.y40{bottom:148.199127px;}
.y6d{bottom:148.819407px;}
.y3f{bottom:150.865444px;}
.y3e{bottom:154.780804px;}
.y22{bottom:157.135261px;}
.y62{bottom:161.939832px;}
.y6c{bottom:168.619407px;}
.y61{bottom:170.939832px;}
.y3d{bottom:175.455063px;}
.y60{bottom:179.939833px;}
.y6b{bottom:188.419408px;}
.y32{bottom:188.816348px;}
.y5f{bottom:188.939833px;}
.y5e{bottom:197.939833px;}
.ya{bottom:201.123516px;}
.y4c{bottom:205.371428px;}
.y5d{bottom:206.939833px;}
.y51{bottom:209.774406px;}
.y44{bottom:217.658633px;}
.y45{bottom:225.487869px;}
.y29{bottom:236.830128px;}
.y9{bottom:237.843521px;}
.y5c{bottom:238.445741px;}
.y5b{bottom:247.445741px;}
.y19{bottom:255.182976px;}
.y36{bottom:256.101683px;}
.y5a{bottom:256.445741px;}
.y53{bottom:260.033245px;}
.y59{bottom:265.445742px;}
.y28{bottom:272.830129px;}
.y58{bottom:274.445742px;}
.y8{bottom:274.563518px;}
.y35{bottom:276.775941px;}
.y57{bottom:283.445742px;}
.y21{bottom:297.535861px;}
.y6a{bottom:298.275774px;}
.y27{bottom:308.830130px;}
.y18{bottom:314.480241px;}
.y7{bottom:326.403522px;}
.y55{bottom:341.711204px;}
.y50{bottom:344.975191px;}
.y42{bottom:349.823064px;}
.y1d{bottom:353.534876px;}
.y1f{bottom:359.133303px;}
.y47{bottom:366.416599px;}
.y56{bottom:380.563575px;}
.y26{bottom:380.830133px;}
.y46{bottom:387.090857px;}
.y69{bottom:406.275772px;}
.y1e{bottom:416.334088px;}
.y25{bottom:416.830134px;}
.y12{bottom:434.805339px;}
.y4e{bottom:434.814283px;}
.y20{bottom:436.336071px;}
.y49{bottom:439.220708px;}
.y2f{bottom:450.475055px;}
.y24{bottom:452.830135px;}
.y4d{bottom:455.488542px;}
.y2d{bottom:461.600203px;}
.y2a{bottom:465.867153px;}
.y1b{bottom:471.655335px;}
.y52{bottom:478.737637px;}
.y23{bottom:490.637523px;}
.y4a{bottom:496.219003px;}
.y11{bottom:499.116051px;}
.y2e{bottom:499.925748px;}
.y2b{bottom:515.397564px;}
.y10{bottom:520.387552px;}
.y33{bottom:523.074750px;}
.y39{bottom:525.784556px;}
.y30{bottom:528.719512px;}
.y63{bottom:536.378357px;}
.y67{bottom:536.520471px;}
.y37{bottom:538.540760px;}
.y3b{bottom:554.799724px;}
.yd{bottom:566.779063px;}
.y48{bottom:566.780096px;}
.y14{bottom:566.780314px;}
.y68{bottom:567.464646px;}
.y64{bottom:568.046337px;}
.y43{bottom:571.529638px;}
.y4f{bottom:572.052690px;}
.y34{bottom:580.864959px;}
.y2c{bottom:584.050991px;}
.y3{bottom:595.690479px;}
.h1{height:31.500000px;}
.h11{height:31.504820px;}
.hd{height:34.051140px;}
.h3{height:56.700002px;}
.h10{height:63.000000px;}
.h7{height:65.143889px;}
.h2{height:69.300004px;}
.hc{height:72.359909px;}
.h6{height:74.450249px;}
.hb{height:88.200000px;}
.h4{height:107.100000px;}
.h8{height:113.400004px;}
.h5{height:126.000001px;}
.he{height:139.395502px;}
.hf{height:144.391672px;}
.ha{height:144.900001px;}
.h9{height:283.500009px;}
.h12{height:378.000012px;}
.h0{height:607.500000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x29{left:29.737250px;}
.x55{left:35.417653px;}
.x46{left:38.979258px;}
.x64{left:42.520202px;}
.x5f{left:43.910952px;}
.x7b{left:45.661821px;}
.x78{left:49.897149px;}
.x4d{left:53.980809px;}
.x17{left:57.649634px;}
.x4b{left:61.653242px;}
.xd{left:63.197009px;}
.x41{left:64.907855px;}
.x19{left:66.151096px;}
.x22{left:68.086543px;}
.x1a{left:70.844936px;}
.x20{left:76.597378px;}
.x1b{left:85.418781px;}
.x15{left:89.498141px;}
.x1c{left:95.344997px;}
.x35{left:96.469446px;}
.xc{left:100.098610px;}
.x11{left:108.630421px;}
.x79{left:109.897150px;}
.x23{left:114.207423px;}
.x25{left:115.482115px;}
.xe{left:119.005566px;}
.x1f{left:121.336247px;}
.x13{left:124.772383px;}
.x24{left:127.267458px;}
.x3e{left:134.269970px;}
.x43{left:146.692321px;}
.x44{left:147.764756px;}
.x16{left:155.561956px;}
.x71{left:157.255639px;}
.x59{left:167.707137px;}
.x36{left:172.414362px;}
.xa{left:175.323275px;}
.x66{left:179.963785px;}
.x9{left:183.194838px;}
.x7e{left:188.443007px;}
.x1e{left:196.210509px;}
.x68{left:200.258361px;}
.x18{left:204.381565px;}
.x74{left:212.523842px;}
.xf{left:215.732151px;}
.x21{left:218.468432px;}
.x28{left:224.429065px;}
.x4a{left:229.721763px;}
.x2d{left:232.660510px;}
.x69{left:235.392780px;}
.x77{left:238.583861px;}
.x56{left:246.093848px;}
.x38{left:252.938686px;}
.x2b{left:279.951934px;}
.x1d{left:282.276275px;}
.x5c{left:287.464370px;}
.x39{left:296.721729px;}
.x3c{left:300.649750px;}
.x6e{left:302.832556px;}
.x26{left:305.614900px;}
.x3a{left:311.865557px;}
.x7c{left:313.242400px;}
.x76{left:316.657637px;}
.x7d{left:322.913080px;}
.x6a{left:332.115857px;}
.x37{left:336.950403px;}
.x7a{left:342.717666px;}
.x3b{left:343.787810px;}
.x53{left:345.297656px;}
.x12{left:352.874687px;}
.x31{left:354.998518px;}
.x61{left:356.617019px;}
.x52{left:361.249680px;}
.x48{left:369.452993px;}
.x4f{left:380.906760px;}
.x5e{left:383.894458px;}
.x27{left:394.304165px;}
.x2{left:399.702486px;}
.x73{left:402.146180px;}
.x49{left:421.204795px;}
.x2a{left:423.454851px;}
.x67{left:424.670897px;}
.x32{left:433.082488px;}
.x3d{left:437.299434px;}
.x72{left:440.229355px;}
.x6b{left:448.269629px;}
.x33{left:449.627224px;}
.x40{left:460.135394px;}
.x4e{left:466.150838px;}
.x57{left:490.939235px;}
.x4c{left:493.206485px;}
.x2c{left:502.810104px;}
.x75{left:509.868770px;}
.x63{left:548.890023px;}
.x62{left:555.874893px;}
.x45{left:560.810977px;}
.x6f{left:564.584576px;}
.x50{left:576.069521px;}
.x30{left:580.346743px;}
.x5a{left:581.902234px;}
.x3f{left:588.318881px;}
.x47{left:603.812461px;}
.x34{left:625.949435px;}
.x7{left:631.881190px;}
.x70{left:633.533328px;}
.x6{left:635.666255px;}
.x4{left:637.795303px;}
.x10{left:646.739548px;}
.x14{left:654.419800px;}
.x42{left:668.524071px;}
.xb{left:678.641129px;}
.x5{left:680.117764px;}
.x3{left:691.687896px;}
.x82{left:706.136732px;}
.x8{left:713.660209px;}
.x6c{left:729.086131px;}
.x6d{left:732.923110px;}
.x7f{left:739.313287px;}
.x80{left:759.338271px;}
.x2e{left:762.683896px;}
.x81{left:771.413458px;}
.x83{left:783.483201px;}
.x5b{left:820.988734px;}
.x58{left:828.976624px;}
.x54{left:846.993672px;}
.x5d{left:881.719239px;}
.x1{left:885.918741px;}
.x60{left:891.526433px;}
.x65{left:899.101384px;}
.x2f{left:901.032903px;}
.x51{left:965.868747px;}
@media print{
.v1{vertical-align:-78.391775pt;}
.v2{vertical-align:-75.831790pt;}
.v3{vertical-align:-12.003200pt;}
.v7{vertical-align:-2.063952pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:2.267680pt;}
.v5{vertical-align:59.587194pt;}
.v6{vertical-align:64.028234pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:289.698826pt;}
.ls2{letter-spacing:306.071610pt;}
.ls4{letter-spacing:1269.992185pt;}
.ls3{letter-spacing:1280.209201pt;}
.wsb{word-spacing:-75.840002pt;}
.ws1{word-spacing:-29.440000pt;}
.ws3{word-spacing:-26.496001pt;}
.ws6{word-spacing:-25.280000pt;}
.ws5{word-spacing:-20.832000pt;}
.wsc{word-spacing:-15.546668pt;}
.ws4{word-spacing:-10.666667pt;}
.ws7{word-spacing:-7.440000pt;}
.wsa{word-spacing:-7.360000pt;}
.ws0{word-spacing:0.000000pt;}
.ws2{word-spacing:232.016993pt;}
.ws8{word-spacing:971.776798pt;}
.ws9{word-spacing:1081.173041pt;}
._35{margin-left:-13.200000pt;}
._37{margin-left:-9.280000pt;}
._1b{margin-left:-7.840000pt;}
._10{margin-left:-6.773333pt;}
._12{margin-left:-5.835502pt;}
._4{margin-left:-4.826666pt;}
._1{margin-left:-3.226667pt;}
._0{margin-left:-1.626667pt;}
._2{width:1.018667pt;}
._38{width:2.240000pt;}
._1d{width:79.405033pt;}
._5{width:126.589061pt;}
._e{width:151.633420pt;}
._b{width:279.515263pt;}
._14{width:288.933937pt;}
._15{width:292.918355pt;}
._9{width:304.091513pt;}
._8{width:311.408114pt;}
._a{width:315.895281pt;}
._7{width:316.855525pt;}
._1c{width:329.756648pt;}
._2d{width:332.964541pt;}
._1e{width:409.693668pt;}
._30{width:437.883072pt;}
._c{width:453.221991pt;}
._27{width:473.650071pt;}
._2b{width:479.490711pt;}
._1a{width:493.769578pt;}
._3{width:525.432445pt;}
._36{width:546.734334pt;}
._11{width:578.051963pt;}
._d{width:631.258697pt;}
._31{width:634.823669pt;}
._13{width:664.150224pt;}
._6{width:667.070189pt;}
._16{width:679.867316pt;}
._1f{width:697.556628pt;}
._19{width:713.556561pt;}
._33{width:732.824880pt;}
._23{width:764.019148pt;}
._26{width:778.925126pt;}
._25{width:831.021847pt;}
._18{width:877.285078pt;}
._2a{width:899.645152pt;}
._29{width:901.435792pt;}
._f{width:904.671292pt;}
._17{width:930.081141pt;}
._2f{width:960.751756pt;}
._32{width:1001.181830pt;}
._2e{width:1061.282541pt;}
._34{width:1098.861753pt;}
._24{width:1128.401336pt;}
._2c{width:1150.240153pt;}
._22{width:1168.347633pt;}
._21{width:1234.304991pt;}
._20{width:1235.583711pt;}
._28{width:2238.000120pt;}
.fs0{font-size:26.666667pt;}
.fs5{font-size:42.666669pt;}
.fs2{font-size:48.000002pt;}
.fsd{font-size:53.333334pt;}
.fs7{font-size:55.148266pt;}
.fs1{font-size:58.666670pt;}
.fsc{font-size:61.257066pt;}
.fs6{font-size:63.026666pt;}
.fsb{font-size:74.666666pt;}
.fs3{font-size:90.666667pt;}
.fs8{font-size:96.000003pt;}
.fs4{font-size:106.666667pt;}
.fsa{font-size:122.666668pt;}
.fs9{font-size:240.000008pt;}
.fse{font-size:320.000010pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:19.344015pt;}
.y1{bottom:27.344015pt;}
.y17{bottom:35.399618pt;}
.y31{bottom:35.399624pt;}
.yc{bottom:36.039614pt;}
.yf{bottom:36.039624pt;}
.y6{bottom:51.372654pt;}
.y5{bottom:71.532656pt;}
.y16{bottom:72.839615pt;}
.yb{bottom:77.639615pt;}
.y41{bottom:86.882967pt;}
.y1a{bottom:100.568616pt;}
.y3a{bottom:101.636098pt;}
.y3c{bottom:104.521828pt;}
.y4b{bottom:109.161568pt;}
.y15{bottom:110.279616pt;}
.y1c{bottom:110.860287pt;}
.y13{bottom:113.868817pt;}
.y66{bottom:114.047436pt;}
.y6e{bottom:114.683916pt;}
.y38{bottom:115.374798pt;}
.ye{bottom:119.239617pt;}
.y4{bottom:121.129987pt;}
.y65{bottom:122.047437pt;}
.y54{bottom:129.287337pt;}
.y40{bottom:131.732557pt;}
.y6d{bottom:132.283917pt;}
.y3f{bottom:134.102617pt;}
.y3e{bottom:137.582937pt;}
.y22{bottom:139.675787pt;}
.y62{bottom:143.946517pt;}
.y6c{bottom:149.883918pt;}
.y61{bottom:151.946518pt;}
.y3d{bottom:155.960056pt;}
.y60{bottom:159.946518pt;}
.y6b{bottom:167.483918pt;}
.y32{bottom:167.836753pt;}
.y5f{bottom:167.946518pt;}
.y5e{bottom:175.946518pt;}
.ya{bottom:178.776458pt;}
.y4c{bottom:182.552380pt;}
.y5d{bottom:183.946519pt;}
.y51{bottom:186.466139pt;}
.y44{bottom:193.474341pt;}
.y45{bottom:200.433661pt;}
.y29{bottom:210.515669pt;}
.y9{bottom:211.416463pt;}
.y5c{bottom:211.951770pt;}
.y5b{bottom:219.951770pt;}
.y19{bottom:226.829312pt;}
.y36{bottom:227.645940pt;}
.y5a{bottom:227.951770pt;}
.y53{bottom:231.140662pt;}
.y59{bottom:235.951770pt;}
.y28{bottom:242.515670pt;}
.y58{bottom:243.951771pt;}
.y8{bottom:244.056461pt;}
.y35{bottom:246.023059pt;}
.y57{bottom:251.951771pt;}
.y21{bottom:264.476321pt;}
.y6a{bottom:265.134021pt;}
.y27{bottom:274.515672pt;}
.y18{bottom:279.537992pt;}
.y7{bottom:290.136464pt;}
.y55{bottom:303.743292pt;}
.y50{bottom:306.644614pt;}
.y42{bottom:310.953834pt;}
.y1d{bottom:314.253223pt;}
.y1f{bottom:319.229603pt;}
.y47{bottom:325.703643pt;}
.y56{bottom:338.278734pt;}
.y26{bottom:338.515674pt;}
.y46{bottom:344.080762pt;}
.y69{bottom:361.134019pt;}
.y1e{bottom:370.074745pt;}
.y25{bottom:370.515675pt;}
.y12{bottom:386.493635pt;}
.y4e{bottom:386.501585pt;}
.y20{bottom:387.854285pt;}
.y49{bottom:390.418407pt;}
.y2f{bottom:400.422272pt;}
.y24{bottom:402.515676pt;}
.y4d{bottom:404.878704pt;}
.y2d{bottom:410.311292pt;}
.y2a{bottom:414.104136pt;}
.y1b{bottom:419.249187pt;}
.y52{bottom:425.544566pt;}
.y23{bottom:436.122243pt;}
.y4a{bottom:441.083559pt;}
.y11{bottom:443.658712pt;}
.y2e{bottom:444.378443pt;}
.y2b{bottom:458.131168pt;}
.y10{bottom:462.566713pt;}
.y33{bottom:464.955333pt;}
.y39{bottom:467.364050pt;}
.y30{bottom:469.972900pt;}
.y63{bottom:476.780761pt;}
.y67{bottom:476.907085pt;}
.y37{bottom:478.702898pt;}
.y3b{bottom:493.155310pt;}
.yd{bottom:503.803612pt;}
.y48{bottom:503.804530pt;}
.y14{bottom:503.804724pt;}
.y68{bottom:504.413018pt;}
.y64{bottom:504.930077pt;}
.y43{bottom:508.026345pt;}
.y4f{bottom:508.491280pt;}
.y34{bottom:516.324408pt;}
.y2c{bottom:519.156436pt;}
.y3{bottom:529.502648pt;}
.h1{height:28.000000pt;}
.h11{height:28.004284pt;}
.hd{height:30.267680pt;}
.h3{height:50.400002pt;}
.h10{height:56.000000pt;}
.h7{height:57.905679pt;}
.h2{height:61.600003pt;}
.hc{height:64.319919pt;}
.h6{height:66.177999pt;}
.hb{height:78.400000pt;}
.h4{height:95.200000pt;}
.h8{height:100.800003pt;}
.h5{height:112.000001pt;}
.he{height:123.907113pt;}
.hf{height:128.348153pt;}
.ha{height:128.800001pt;}
.h9{height:252.000008pt;}
.h12{height:336.000011pt;}
.h0{height:540.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x29{left:26.433111pt;}
.x55{left:31.482358pt;}
.x46{left:34.648229pt;}
.x64{left:37.795735pt;}
.x5f{left:39.031957pt;}
.x7b{left:40.588285pt;}
.x78{left:44.353021pt;}
.x4d{left:47.982942pt;}
.x17{left:51.244119pt;}
.x4b{left:54.802882pt;}
.xd{left:56.175119pt;}
.x41{left:57.695871pt;}
.x19{left:58.800974pt;}
.x22{left:60.521372pt;}
.x1a{left:62.973276pt;}
.x20{left:68.086558pt;}
.x1b{left:75.927805pt;}
.x15{left:79.553904pt;}
.x1c{left:84.751109pt;}
.x35{left:85.750619pt;}
.xc{left:88.976542pt;}
.x11{left:96.560374pt;}
.x79{left:97.686355pt;}
.x23{left:101.517709pt;}
.x25{left:102.650769pt;}
.xe{left:105.782725pt;}
.x1f{left:107.854441pt;}
.x13{left:110.908785pt;}
.x24{left:113.126630pt;}
.x3e{left:119.351085pt;}
.x43{left:130.393174pt;}
.x44{left:131.346450pt;}
.x16{left:138.277294pt;}
.x71{left:139.782790pt;}
.x59{left:149.073011pt;}
.x36{left:153.257211pt;}
.xa{left:155.842911pt;}
.x66{left:159.967809pt;}
.x9{left:162.839856pt;}
.x7e{left:167.504895pt;}
.x1e{left:174.409342pt;}
.x68{left:178.007432pt;}
.x18{left:181.672502pt;}
.x74{left:188.910082pt;}
.xf{left:191.761912pt;}
.x21{left:194.194162pt;}
.x28{left:199.492502pt;}
.x4a{left:204.197123pt;}
.x2d{left:206.809343pt;}
.x69{left:209.238027pt;}
.x77{left:212.074543pt;}
.x56{left:218.750087pt;}
.x38{left:224.834387pt;}
.x2b{left:248.846164pt;}
.x1d{left:250.912244pt;}
.x5c{left:255.523884pt;}
.x39{left:263.752648pt;}
.x3c{left:267.244223pt;}
.x6e{left:269.184495pt;}
.x26{left:271.657689pt;}
.x3a{left:277.213829pt;}
.x7c{left:278.437689pt;}
.x76{left:281.473455pt;}
.x7d{left:287.033849pt;}
.x6a{left:295.214095pt;}
.x37{left:299.511470pt;}
.x7a{left:304.637926pt;}
.x3b{left:305.589165pt;}
.x53{left:306.931250pt;}
.x12{left:313.666388pt;}
.x31{left:315.554238pt;}
.x61{left:316.992906pt;}
.x52{left:321.110826pt;}
.x48{left:328.402661pt;}
.x4f{left:338.583787pt;}
.x5e{left:341.239518pt;}
.x27{left:350.492591pt;}
.x2{left:355.291098pt;}
.x73{left:357.463271pt;}
.x49{left:374.404262pt;}
.x2a{left:376.404312pt;}
.x67{left:377.485242pt;}
.x32{left:384.962211pt;}
.x3d{left:388.710608pt;}
.x72{left:391.314983pt;}
.x6b{left:398.461893pt;}
.x33{left:399.668644pt;}
.x40{left:409.009239pt;}
.x4e{left:414.356300pt;}
.x57{left:436.390431pt;}
.x4c{left:438.405764pt;}
.x2c{left:446.942314pt;}
.x75{left:453.216685pt;}
.x63{left:487.902243pt;}
.x62{left:494.111016pt;}
.x45{left:498.498646pt;}
.x6f{left:501.852956pt;}
.x50{left:512.061796pt;}
.x30{left:515.863772pt;}
.x5a{left:517.246431pt;}
.x3f{left:522.950117pt;}
.x47{left:536.722187pt;}
.x34{left:556.399498pt;}
.x7{left:561.672169pt;}
.x70{left:563.140736pt;}
.x6{left:565.036671pt;}
.x4{left:566.929158pt;}
.x10{left:574.879598pt;}
.x14{left:581.706489pt;}
.x42{left:594.243619pt;}
.xb{left:603.236559pt;}
.x5{left:604.549123pt;}
.x3{left:614.833686pt;}
.x82{left:627.677095pt;}
.x8{left:634.364630pt;}
.x6c{left:648.076561pt;}
.x6d{left:651.487209pt;}
.x7f{left:657.167366pt;}
.x80{left:674.967352pt;}
.x2e{left:677.941241pt;}
.x81{left:685.700852pt;}
.x83{left:696.429512pt;}
.x5b{left:729.767763pt;}
.x58{left:736.868111pt;}
.x54{left:752.883264pt;}
.x5d{left:783.750435pt;}
.x1{left:787.483325pt;}
.x60{left:792.467940pt;}
.x65{left:799.201231pt;}
.x2f{left:800.918136pt;}
.x51{left:858.549997pt;}
}




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