
    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_20758ae003fd7b75e7b04624.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.031738;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_26312f139649011146947962.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.090332;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_8a8bc94f34cedc2fb46f6761.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.739746;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_7d01fd1171e11a8d8a3ae9be.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.091797;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_92dfde3bd07a666e9605abb7.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.030273;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_11eddeccb906f341a0398ef9.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.090332;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_02420c5557edc6cc2564a1ea.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.172852;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;}
.v2{vertical-align:92.280000px;}
.v1{vertical-align:112.620000px;}
.v3{vertical-align:122.040000px;}
.v4{vertical-align:130.770000px;}
.lse{letter-spacing:-2.622000px;}
.ls8{letter-spacing:-2.280000px;}
.lsa{letter-spacing:-2.196000px;}
.lsb{letter-spacing:-2.046000px;}
.ls9{letter-spacing:-1.998000px;}
.ls15{letter-spacing:-1.122000px;}
.lsc{letter-spacing:-0.666000px;}
.ls0{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.894000px;}
.lsd{letter-spacing:1.452000px;}
.lsf{letter-spacing:1.902000px;}
.ls11{letter-spacing:2.090400px;}
.ls6{letter-spacing:15.702000px;}
.ls10{letter-spacing:16.302150px;}
.ls5{letter-spacing:16.799850px;}
.ls12{letter-spacing:27.501000px;}
.ls14{letter-spacing:65.422500px;}
.ls13{letter-spacing:65.520000px;}
.ls16{letter-spacing:65.542500px;}
.ls1{letter-spacing:65.572500px;}
.ls2{letter-spacing:78.142500px;}
.ls3{letter-spacing:78.202500px;}
.ls4{letter-spacing:78.255000px;}
.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;}
}
.ws1{word-spacing:-46.117350px;}
.ws3{word-spacing:-46.088400px;}
.ws23{word-spacing:-44.822400px;}
.ws20{word-spacing:-35.687400px;}
.ws1b{word-spacing:-26.552400px;}
.ws1a{word-spacing:-26.521950px;}
.ws19{word-spacing:-25.608450px;}
.ws2{word-spacing:-24.694950px;}
.ws24{word-spacing:-22.867950px;}
.ws25{word-spacing:-21.954450px;}
.ws1c{word-spacing:-21.040950px;}
.ws14{word-spacing:-18.838950px;}
.ws7{word-spacing:-17.386950px;}
.wsd{word-spacing:-17.356500px;}
.ws17{word-spacing:-14.764950px;}
.ws18{word-spacing:-2.718000px;}
.ws11{word-spacing:-2.656650px;}
.ws16{word-spacing:-2.516250px;}
.ws15{word-spacing:-2.403750px;}
.wsa{word-spacing:-2.302500px;}
.ws5{word-spacing:-1.645800px;}
.ws13{word-spacing:-0.866550px;}
.wse{word-spacing:-0.078300px;}
.wsf{word-spacing:-0.032700px;}
.ws0{word-spacing:0.000000px;}
.ws8{word-spacing:0.064200px;}
.ws10{word-spacing:0.572850px;}
.ws12{word-spacing:0.666600px;}
.wsb{word-spacing:4.978500px;}
.wsc{word-spacing:5.250000px;}
.ws9{word-spacing:5.613600px;}
.ws6{word-spacing:5.673600px;}
.ws4{word-spacing:5.793600px;}
.ws1f{word-spacing:148.264200px;}
.ws1e{word-spacing:363.301950px;}
.ws1d{word-spacing:373.769100px;}
.ws26{word-spacing:558.574200px;}
.ws27{word-spacing:832.352550px;}
.ws22{word-spacing:891.213600px;}
.ws21{word-spacing:1049.952000px;}
._16{margin-left:-13.987200px;}
._13{margin-left:-12.417150px;}
._18{margin-left:-8.728800px;}
._c{margin-left:-6.798750px;}
._2{margin-left:-5.652900px;}
._3{margin-left:-4.108350px;}
._5{margin-left:-3.107850px;}
._1{margin-left:-1.671600px;}
._4{width:1.141500px;}
._0{width:2.388000px;}
._6{width:4.062600px;}
._d{width:5.364150px;}
._b{width:12.623100px;}
._a{width:14.451900px;}
._8{width:15.577350px;}
._7{width:18.465450px;}
._9{width:19.664250px;}
._15{width:47.696700px;}
._e{width:199.320600px;}
._f{width:217.812900px;}
._11{width:255.850200px;}
._10{width:286.389750px;}
._12{width:398.131500px;}
._17{width:477.361050px;}
._19{width:812.943600px;}
._14{width:1151.635350px;}
.fc4{color:transparent;}
.fc3{color:rgb(70,120,134);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(14,40,65);}
.fs5{font-size:45.000000px;}
.fs2{font-size:85.500000px;}
.fs1{font-size:85.650000px;}
.fsb{font-size:103.650000px;}
.fs13{font-size:108.150000px;}
.fs11{font-size:112.650000px;}
.fs4{font-size:121.650000px;}
.fs12{font-size:121.800000px;}
.fs6{font-size:126.150000px;}
.fs7{font-size:126.300000px;}
.fs9{font-size:130.650000px;}
.fsa{font-size:130.800000px;}
.fsc{font-size:139.800000px;}
.fse{font-size:166.650000px;}
.fsf{font-size:166.800000px;}
.fsd{font-size:175.800000px;}
.fs10{font-size:220.800000px;}
.fs0{font-size:238.800000px;}
.fs3{font-size:238.950000px;}
.fs8{font-size:265.950000px;}
.y0{bottom:0.000000px;}
.y34{bottom:52.950000px;}
.y6{bottom:66.712500px;}
.y9c{bottom:87.975000px;}
.y5{bottom:105.000000px;}
.y53{bottom:116.962500px;}
.y9b{bottom:120.637500px;}
.yf{bottom:136.800000px;}
.y4{bottom:142.162500px;}
.y92{bottom:145.612500px;}
.y25{bottom:150.480000px;}
.y9a{bottom:152.220000px;}
.y52{bottom:153.000000px;}
.y74{bottom:153.720000px;}
.y7c{bottom:159.795000px;}
.y90{bottom:166.005000px;}
.y70{bottom:168.450000px;}
.ye{bottom:169.455000px;}
.y33{bottom:169.680000px;}
.y89{bottom:170.475000px;}
.y24{bottom:173.025000px;}
.y91{bottom:178.305000px;}
.y73{bottom:184.125000px;}
.y46{bottom:185.505000px;}
.y86{bottom:186.030000px;}
.y65{bottom:187.155000px;}
.y51{bottom:189.030000px;}
.y7b{bottom:192.450000px;}
.y8f{bottom:193.050000px;}
.y81{bottom:199.530000px;}
.y6f{bottom:199.995000px;}
.y99{bottom:200.625000px;}
.y88{bottom:200.880000px;}
.y4a{bottom:203.100000px;}
.y5c{bottom:203.370000px;}
.y9e{bottom:206.400000px;}
.y32{bottom:207.975000px;}
.yd{bottom:211.155000px;}
.y57{bottom:214.275000px;}
.y85{bottom:215.325000px;}
.y72{bottom:215.655000px;}
.y62{bottom:217.470000px;}
.y3{bottom:217.650000px;}
.y45{bottom:220.470000px;}
.y8e{bottom:221.220000px;}
.y5e{bottom:227.880000px;}
.y60{bottom:228.480000px;}
.y87{bottom:230.175000px;}
.y31{bottom:230.520000px;}
.y6e{bottom:231.525000px;}
.y98{bottom:232.200000px;}
.y49{bottom:236.925000px;}
.y50{bottom:239.745000px;}
.y7a{bottom:239.775000px;}
.y56{bottom:241.320000px;}
.yc{bottom:242.700000px;}
.y80{bottom:246.855000px;}
.y71{bottom:247.200000px;}
.y61{bottom:247.770000px;}
.y64{bottom:247.995000px;}
.y23{bottom:248.505000px;}
.y9d{bottom:251.445000px;}
.y5b{bottom:251.820000px;}
.y30{bottom:253.050000px;}
.y44{bottom:254.250000px;}
.y2{bottom:255.975000px;}
.y58{bottom:259.950000px;}
.y97{bottom:264.870000px;}
.y55{bottom:269.475000px;}
.y22{bottom:271.050000px;}
.y48{bottom:271.845000px;}
.y5f{bottom:274.650000px;}
.y5d{bottom:275.220000px;}
.yb{bottom:284.370000px;}
.y79{bottom:287.100000px;}
.y43{bottom:289.155000px;}
.y7f{bottom:294.195000px;}
.y2f{bottom:298.125000px;}
.y5a{bottom:299.130000px;}
.y21{bottom:301.470000px;}
.y47{bottom:306.750000px;}
.y63{bottom:308.850000px;}
.y96{bottom:312.150000px;}
.ya{bottom:317.070000px;}
.y2e{bottom:321.750000px;}
.y20{bottom:324.000000px;}
.y42{bottom:324.075000px;}
.y8d{bottom:325.980000px;}
.y78{bottom:335.520000px;}
.y7e{bottom:341.505000px;}
.y2d{bottom:344.280000px;}
.y95{bottom:344.850000px;}
.y6a{bottom:346.125000px;}
.y1f{bottom:346.530000px;}
.y38{bottom:349.245000px;}
.y9{bottom:358.725000px;}
.y11{bottom:361.755000px;}
.y2c{bottom:366.825000px;}
.y77{bottom:367.050000px;}
.y1e{bottom:369.045000px;}
.y8c{bottom:373.320000px;}
.y6d{bottom:376.725000px;}
.y69{bottom:377.655000px;}
.y84{bottom:378.750000px;}
.y1{bottom:384.150000px;}
.y2b{bottom:389.370000px;}
.y8{bottom:391.380000px;}
.y94{bottom:392.130000px;}
.y1d{bottom:399.495000px;}
.y68{bottom:408.075000px;}
.y6c{bottom:408.255000px;}
.y83{bottom:409.155000px;}
.y2a{bottom:411.900000px;}
.y37{bottom:414.600000px;}
.y4f{bottom:416.475000px;}
.y8b{bottom:420.630000px;}
.y1c{bottom:421.995000px;}
.y10{bottom:427.080000px;}
.y82{bottom:438.450000px;}
.y93{bottom:439.470000px;}
.y67{bottom:439.620000px;}
.y6b{bottom:439.800000px;}
.y1b{bottom:444.525000px;}
.y4e{bottom:452.505000px;}
.y3d{bottom:456.450000px;}
.y29{bottom:458.070000px;}
.y8a{bottom:467.970000px;}
.y66{bottom:471.150000px;}
.y41{bottom:474.045000px;}
.y1a{bottom:474.945000px;}
.y28{bottom:480.600000px;}
.y4d{bottom:488.595000px;}
.y3c{bottom:491.370000px;}
.y27{bottom:503.130000px;}
.y40{bottom:507.825000px;}
.y19{bottom:513.255000px;}
.y3b{bottom:525.150000px;}
.y4c{bottom:539.250000px;}
.y3f{bottom:542.775000px;}
.y18{bottom:550.425000px;}
.y3a{bottom:560.100000px;}
.y17{bottom:572.970000px;}
.y3e{bottom:577.695000px;}
.y26{bottom:578.595000px;}
.y39{bottom:595.005000px;}
.y16{bottom:596.625000px;}
.y76{bottom:623.820000px;}
.y15{bottom:625.905000px;}
.y14{bottom:649.575000px;}
.y7d{bottom:654.000000px;}
.y7{bottom:656.745000px;}
.y59{bottom:659.745000px;}
.y36{bottom:665.805000px;}
.y4b{bottom:670.275000px;}
.y13{bottom:678.870000px;}
.y75{bottom:689.175000px;}
.y35{bottom:692.850000px;}
.y54{bottom:701.070000px;}
.y12{bottom:717.150000px;}
.h8{height:44.758301px;}
.h3{height:74.102783px;}
.h2{height:74.232788px;}
.h6{height:74.358252px;}
.hf{height:89.833374px;}
.h19{height:93.733521px;}
.h17{height:97.633667px;}
.h5{height:105.433960px;}
.h18{height:105.563965px;}
.h9{height:109.334106px;}
.ha{height:109.464111px;}
.hc{height:113.234253px;}
.he{height:113.425635px;}
.hd{height:113.555859px;}
.h11{height:121.164551px;}
.h13{height:144.435425px;}
.h12{height:152.365723px;}
.h16{height:191.367187px;}
.h1{height:201.837305px;}
.h4{height:201.964087px;}
.h10{height:202.453374px;}
.h1a{height:202.513374px;}
.hb{height:224.784888px;}
.h1b{height:236.333965px;}
.h14{height:236.715425px;}
.h15{height:313.407188px;}
.h7{height:702.975000px;}
.h0{height:810.000000px;}
.w2{width:1333.005000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.xe{left:54.037500px;}
.x3a{left:87.974979px;}
.x6a{left:93.862479px;}
.x7{left:100.837479px;}
.x6f{left:116.212479px;}
.x68{left:117.974979px;}
.x31{left:124.537479px;}
.x8{left:127.874979px;}
.x22{left:129.187479px;}
.x44{left:140.137479px;}
.x59{left:141.449979px;}
.x9{left:145.724979px;}
.x3c{left:148.124979px;}
.x21{left:149.437479px;}
.x3d{left:161.774979px;}
.x23{left:165.674979px;}
.x24{left:169.349979px;}
.x67{left:170.774979px;}
.x30{left:172.949979px;}
.x3b{left:174.329979px;}
.x6b{left:180.104979px;}
.x39{left:184.574979px;}
.x46{left:188.774979px;}
.x3e{left:191.024979px;}
.x58{left:197.474979px;}
.x45{left:206.324979px;}
.x5a{left:216.674979px;}
.xa{left:222.494979px;}
.x10{left:232.694979px;}
.xf{left:277.154979px;}
.x32{left:368.249979px;}
.x2{left:417.569979px;}
.x25{left:432.194979px;}
.x27{left:437.219979px;}
.x33{left:441.749979px;}
.x26{left:443.594979px;}
.x6c{left:515.579979px;}
.x20{left:525.224979px;}
.x3{left:529.199979px;}
.x4d{left:543.254979px;}
.x60{left:545.729979px;}
.x52{left:547.649979px;}
.x1{left:549.599979px;}
.x4f{left:551.849979px;}
.x53{left:556.004979px;}
.x4c{left:558.974979px;}
.x4b{left:571.874979px;}
.x63{left:576.494979px;}
.xb{left:579.374979px;}
.x3f{left:580.979979px;}
.x5f{left:582.569979px;}
.x72{left:585.974979px;}
.x41{left:595.619979px;}
.x70{left:599.654979px;}
.x4e{left:602.399979px;}
.x4{left:604.124979px;}
.x5c{left:606.149979px;}
.x40{left:618.419979px;}
.x5{left:620.744979px;}
.x73{left:623.744979px;}
.xc{left:633.404979px;}
.x6{left:635.624979px;}
.x35{left:638.279979px;}
.xd{left:660.449979px;}
.x47{left:667.454979px;}
.x5b{left:677.204979px;}
.x2a{left:684.779979px;}
.x34{left:691.424979px;}
.x29{left:698.744979px;}
.x28{left:716.894979px;}
.x57{left:733.649979px;}
.x13{left:738.224979px;}
.x1c{left:739.574979px;}
.x2b{left:741.149979px;}
.x1b{left:743.099979px;}
.x66{left:750.269979px;}
.x6d{left:753.194979px;}
.x61{left:754.319979px;}
.x19{left:756.149979px;}
.x55{left:758.849979px;}
.x51{left:760.319979px;}
.x64{left:763.124979px;}
.x54{left:764.654979px;}
.x56{left:767.069979px;}
.x14{left:768.524979px;}
.x11{left:770.204979px;}
.x69{left:779.474979px;}
.x12{left:782.204979px;}
.x15{left:783.749979px;}
.x65{left:785.174979px;}
.x50{left:788.549979px;}
.x1a{left:799.319979px;}
.x62{left:814.574979px;}
.x36{left:888.419979px;}
.x2d{left:973.379979px;}
.x71{left:984.329979px;}
.x2f{left:997.319979px;}
.x17{left:1007.294979px;}
.x16{left:1009.994979px;}
.x1d{left:1013.954979px;}
.x2c{left:1026.644979px;}
.x2e{left:1028.774979px;}
.x1e{left:1037.624979px;}
.x42{left:1042.154979px;}
.x18{left:1047.674979px;}
.x5d{left:1052.894979px;}
.x49{left:1055.279979px;}
.x1f{left:1067.219979px;}
.x4a{left:1069.154979px;}
.x48{left:1081.349979px;}
.x43{left:1089.704979px;}
.x6e{left:1098.599979px;}
.x5e{left:1113.854979px;}
.x37{left:1136.999979px;}
.x38{left:1194.104979px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:82.026667pt;}
.v1{vertical-align:100.106667pt;}
.v3{vertical-align:108.480000pt;}
.v4{vertical-align:116.240000pt;}
.lse{letter-spacing:-2.330667pt;}
.ls8{letter-spacing:-2.026667pt;}
.lsa{letter-spacing:-1.952000pt;}
.lsb{letter-spacing:-1.818667pt;}
.ls9{letter-spacing:-1.776000pt;}
.ls15{letter-spacing:-0.997333pt;}
.lsc{letter-spacing:-0.592000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.794667pt;}
.lsd{letter-spacing:1.290667pt;}
.lsf{letter-spacing:1.690667pt;}
.ls11{letter-spacing:1.858133pt;}
.ls6{letter-spacing:13.957333pt;}
.ls10{letter-spacing:14.490800pt;}
.ls5{letter-spacing:14.933200pt;}
.ls12{letter-spacing:24.445333pt;}
.ls14{letter-spacing:58.153333pt;}
.ls13{letter-spacing:58.240000pt;}
.ls16{letter-spacing:58.260000pt;}
.ls1{letter-spacing:58.286667pt;}
.ls2{letter-spacing:69.460000pt;}
.ls3{letter-spacing:69.513333pt;}
.ls4{letter-spacing:69.560000pt;}
.ws1{word-spacing:-40.993200pt;}
.ws3{word-spacing:-40.967467pt;}
.ws23{word-spacing:-39.842133pt;}
.ws20{word-spacing:-31.722133pt;}
.ws1b{word-spacing:-23.602133pt;}
.ws1a{word-spacing:-23.575067pt;}
.ws19{word-spacing:-22.763067pt;}
.ws2{word-spacing:-21.951067pt;}
.ws24{word-spacing:-20.327067pt;}
.ws25{word-spacing:-19.515067pt;}
.ws1c{word-spacing:-18.703067pt;}
.ws14{word-spacing:-16.745733pt;}
.ws7{word-spacing:-15.455067pt;}
.wsd{word-spacing:-15.428000pt;}
.ws17{word-spacing:-13.124400pt;}
.ws18{word-spacing:-2.416000pt;}
.ws11{word-spacing:-2.361467pt;}
.ws16{word-spacing:-2.236667pt;}
.ws15{word-spacing:-2.136667pt;}
.wsa{word-spacing:-2.046667pt;}
.ws5{word-spacing:-1.462933pt;}
.ws13{word-spacing:-0.770267pt;}
.wse{word-spacing:-0.069600pt;}
.wsf{word-spacing:-0.029067pt;}
.ws0{word-spacing:0.000000pt;}
.ws8{word-spacing:0.057067pt;}
.ws10{word-spacing:0.509200pt;}
.ws12{word-spacing:0.592533pt;}
.wsb{word-spacing:4.425333pt;}
.wsc{word-spacing:4.666667pt;}
.ws9{word-spacing:4.989867pt;}
.ws6{word-spacing:5.043200pt;}
.ws4{word-spacing:5.149867pt;}
.ws1f{word-spacing:131.790400pt;}
.ws1e{word-spacing:322.935067pt;}
.ws1d{word-spacing:332.239200pt;}
.ws26{word-spacing:496.510400pt;}
.ws27{word-spacing:739.868933pt;}
.ws22{word-spacing:792.189867pt;}
.ws21{word-spacing:933.290667pt;}
._16{margin-left:-12.433067pt;}
._13{margin-left:-11.037467pt;}
._18{margin-left:-7.758933pt;}
._c{margin-left:-6.043333pt;}
._2{margin-left:-5.024800pt;}
._3{margin-left:-3.651867pt;}
._5{margin-left:-2.762533pt;}
._1{margin-left:-1.485867pt;}
._4{width:1.014667pt;}
._0{width:2.122667pt;}
._6{width:3.611200pt;}
._d{width:4.768133pt;}
._b{width:11.220533pt;}
._a{width:12.846133pt;}
._8{width:13.846533pt;}
._7{width:16.413733pt;}
._9{width:17.479333pt;}
._15{width:42.397067pt;}
._e{width:177.173867pt;}
._f{width:193.611467pt;}
._11{width:227.422400pt;}
._10{width:254.568667pt;}
._12{width:353.894667pt;}
._17{width:424.320933pt;}
._19{width:722.616533pt;}
._14{width:1023.675867pt;}
.fs5{font-size:40.000000pt;}
.fs2{font-size:76.000000pt;}
.fs1{font-size:76.133333pt;}
.fsb{font-size:92.133333pt;}
.fs13{font-size:96.133333pt;}
.fs11{font-size:100.133333pt;}
.fs4{font-size:108.133333pt;}
.fs12{font-size:108.266667pt;}
.fs6{font-size:112.133333pt;}
.fs7{font-size:112.266667pt;}
.fs9{font-size:116.133333pt;}
.fsa{font-size:116.266667pt;}
.fsc{font-size:124.266667pt;}
.fse{font-size:148.133333pt;}
.fsf{font-size:148.266667pt;}
.fsd{font-size:156.266667pt;}
.fs10{font-size:196.266667pt;}
.fs0{font-size:212.266667pt;}
.fs3{font-size:212.400000pt;}
.fs8{font-size:236.400000pt;}
.y0{bottom:0.000000pt;}
.y34{bottom:47.066667pt;}
.y6{bottom:59.300000pt;}
.y9c{bottom:78.200000pt;}
.y5{bottom:93.333333pt;}
.y53{bottom:103.966667pt;}
.y9b{bottom:107.233333pt;}
.yf{bottom:121.600000pt;}
.y4{bottom:126.366667pt;}
.y92{bottom:129.433333pt;}
.y25{bottom:133.760000pt;}
.y9a{bottom:135.306667pt;}
.y52{bottom:136.000000pt;}
.y74{bottom:136.640000pt;}
.y7c{bottom:142.040000pt;}
.y90{bottom:147.560000pt;}
.y70{bottom:149.733333pt;}
.ye{bottom:150.626667pt;}
.y33{bottom:150.826667pt;}
.y89{bottom:151.533333pt;}
.y24{bottom:153.800000pt;}
.y91{bottom:158.493333pt;}
.y73{bottom:163.666667pt;}
.y46{bottom:164.893333pt;}
.y86{bottom:165.360000pt;}
.y65{bottom:166.360000pt;}
.y51{bottom:168.026667pt;}
.y7b{bottom:171.066667pt;}
.y8f{bottom:171.600000pt;}
.y81{bottom:177.360000pt;}
.y6f{bottom:177.773333pt;}
.y99{bottom:178.333333pt;}
.y88{bottom:178.560000pt;}
.y4a{bottom:180.533333pt;}
.y5c{bottom:180.773333pt;}
.y9e{bottom:183.466667pt;}
.y32{bottom:184.866667pt;}
.yd{bottom:187.693333pt;}
.y57{bottom:190.466667pt;}
.y85{bottom:191.400000pt;}
.y72{bottom:191.693333pt;}
.y62{bottom:193.306667pt;}
.y3{bottom:193.466667pt;}
.y45{bottom:195.973333pt;}
.y8e{bottom:196.640000pt;}
.y5e{bottom:202.560000pt;}
.y60{bottom:203.093333pt;}
.y87{bottom:204.600000pt;}
.y31{bottom:204.906667pt;}
.y6e{bottom:205.800000pt;}
.y98{bottom:206.400000pt;}
.y49{bottom:210.600000pt;}
.y50{bottom:213.106667pt;}
.y7a{bottom:213.133333pt;}
.y56{bottom:214.506667pt;}
.yc{bottom:215.733333pt;}
.y80{bottom:219.426667pt;}
.y71{bottom:219.733333pt;}
.y61{bottom:220.240000pt;}
.y64{bottom:220.440000pt;}
.y23{bottom:220.893333pt;}
.y9d{bottom:223.506667pt;}
.y5b{bottom:223.840000pt;}
.y30{bottom:224.933333pt;}
.y44{bottom:226.000000pt;}
.y2{bottom:227.533333pt;}
.y58{bottom:231.066667pt;}
.y97{bottom:235.440000pt;}
.y55{bottom:239.533333pt;}
.y22{bottom:240.933333pt;}
.y48{bottom:241.640000pt;}
.y5f{bottom:244.133333pt;}
.y5d{bottom:244.640000pt;}
.yb{bottom:252.773333pt;}
.y79{bottom:255.200000pt;}
.y43{bottom:257.026667pt;}
.y7f{bottom:261.506667pt;}
.y2f{bottom:265.000000pt;}
.y5a{bottom:265.893333pt;}
.y21{bottom:267.973333pt;}
.y47{bottom:272.666667pt;}
.y63{bottom:274.533333pt;}
.y96{bottom:277.466667pt;}
.ya{bottom:281.840000pt;}
.y2e{bottom:286.000000pt;}
.y20{bottom:288.000000pt;}
.y42{bottom:288.066667pt;}
.y8d{bottom:289.760000pt;}
.y78{bottom:298.240000pt;}
.y7e{bottom:303.560000pt;}
.y2d{bottom:306.026667pt;}
.y95{bottom:306.533333pt;}
.y6a{bottom:307.666667pt;}
.y1f{bottom:308.026667pt;}
.y38{bottom:310.440000pt;}
.y9{bottom:318.866667pt;}
.y11{bottom:321.560000pt;}
.y2c{bottom:326.066667pt;}
.y77{bottom:326.266667pt;}
.y1e{bottom:328.040000pt;}
.y8c{bottom:331.840000pt;}
.y6d{bottom:334.866667pt;}
.y69{bottom:335.693333pt;}
.y84{bottom:336.666667pt;}
.y1{bottom:341.466667pt;}
.y2b{bottom:346.106667pt;}
.y8{bottom:347.893333pt;}
.y94{bottom:348.560000pt;}
.y1d{bottom:355.106667pt;}
.y68{bottom:362.733333pt;}
.y6c{bottom:362.893333pt;}
.y83{bottom:363.693333pt;}
.y2a{bottom:366.133333pt;}
.y37{bottom:368.533333pt;}
.y4f{bottom:370.200000pt;}
.y8b{bottom:373.893333pt;}
.y1c{bottom:375.106667pt;}
.y10{bottom:379.626667pt;}
.y82{bottom:389.733333pt;}
.y93{bottom:390.640000pt;}
.y67{bottom:390.773333pt;}
.y6b{bottom:390.933333pt;}
.y1b{bottom:395.133333pt;}
.y4e{bottom:402.226667pt;}
.y3d{bottom:405.733333pt;}
.y29{bottom:407.173333pt;}
.y8a{bottom:415.973333pt;}
.y66{bottom:418.800000pt;}
.y41{bottom:421.373333pt;}
.y1a{bottom:422.173333pt;}
.y28{bottom:427.200000pt;}
.y4d{bottom:434.306667pt;}
.y3c{bottom:436.773333pt;}
.y27{bottom:447.226667pt;}
.y40{bottom:451.400000pt;}
.y19{bottom:456.226667pt;}
.y3b{bottom:466.800000pt;}
.y4c{bottom:479.333333pt;}
.y3f{bottom:482.466667pt;}
.y18{bottom:489.266667pt;}
.y3a{bottom:497.866667pt;}
.y17{bottom:509.306667pt;}
.y3e{bottom:513.506667pt;}
.y26{bottom:514.306667pt;}
.y39{bottom:528.893333pt;}
.y16{bottom:530.333333pt;}
.y76{bottom:554.506667pt;}
.y15{bottom:556.360000pt;}
.y14{bottom:577.400000pt;}
.y7d{bottom:581.333333pt;}
.y7{bottom:583.773333pt;}
.y59{bottom:586.440000pt;}
.y36{bottom:591.826667pt;}
.y4b{bottom:595.800000pt;}
.y13{bottom:603.440000pt;}
.y75{bottom:612.600000pt;}
.y35{bottom:615.866667pt;}
.y54{bottom:623.173333pt;}
.y12{bottom:637.466667pt;}
.h8{height:39.785156pt;}
.h3{height:65.869141pt;}
.h2{height:65.984701pt;}
.h6{height:66.096224pt;}
.hf{height:79.851888pt;}
.h19{height:83.318685pt;}
.h17{height:86.785482pt;}
.h5{height:93.719076pt;}
.h18{height:93.834635pt;}
.h9{height:97.185872pt;}
.ha{height:97.301432pt;}
.hc{height:100.652669pt;}
.he{height:100.822786pt;}
.hd{height:100.938542pt;}
.h11{height:107.701823pt;}
.h13{height:128.387044pt;}
.h12{height:135.436198pt;}
.h16{height:170.104167pt;}
.h1{height:179.410937pt;}
.h4{height:179.523633pt;}
.h10{height:179.958555pt;}
.h1a{height:180.011888pt;}
.hb{height:199.808789pt;}
.h1b{height:210.074635pt;}
.h14{height:210.413711pt;}
.h15{height:278.584167pt;}
.h7{height:624.866667pt;}
.h0{height:720.000000pt;}
.w2{width:1184.893333pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.xe{left:48.033333pt;}
.x3a{left:78.199981pt;}
.x6a{left:83.433314pt;}
.x7{left:89.633314pt;}
.x6f{left:103.299981pt;}
.x68{left:104.866648pt;}
.x31{left:110.699981pt;}
.x8{left:113.666648pt;}
.x22{left:114.833314pt;}
.x44{left:124.566648pt;}
.x59{left:125.733314pt;}
.x9{left:129.533314pt;}
.x3c{left:131.666648pt;}
.x21{left:132.833314pt;}
.x3d{left:143.799981pt;}
.x23{left:147.266648pt;}
.x24{left:150.533314pt;}
.x67{left:151.799981pt;}
.x30{left:153.733314pt;}
.x3b{left:154.959981pt;}
.x6b{left:160.093314pt;}
.x39{left:164.066648pt;}
.x46{left:167.799981pt;}
.x3e{left:169.799981pt;}
.x58{left:175.533314pt;}
.x45{left:183.399981pt;}
.x5a{left:192.599981pt;}
.xa{left:197.773314pt;}
.x10{left:206.839981pt;}
.xf{left:246.359981pt;}
.x32{left:327.333314pt;}
.x2{left:371.173314pt;}
.x25{left:384.173314pt;}
.x27{left:388.639981pt;}
.x33{left:392.666648pt;}
.x26{left:394.306648pt;}
.x6c{left:458.293314pt;}
.x20{left:466.866648pt;}
.x3{left:470.399981pt;}
.x4d{left:482.893314pt;}
.x60{left:485.093314pt;}
.x52{left:486.799981pt;}
.x1{left:488.533314pt;}
.x4f{left:490.533314pt;}
.x53{left:494.226648pt;}
.x4c{left:496.866648pt;}
.x4b{left:508.333314pt;}
.x63{left:512.439981pt;}
.xb{left:514.999981pt;}
.x3f{left:516.426648pt;}
.x5f{left:517.839981pt;}
.x72{left:520.866648pt;}
.x41{left:529.439981pt;}
.x70{left:533.026648pt;}
.x4e{left:535.466648pt;}
.x4{left:536.999981pt;}
.x5c{left:538.799981pt;}
.x40{left:549.706648pt;}
.x5{left:551.773314pt;}
.x73{left:554.439981pt;}
.xc{left:563.026648pt;}
.x6{left:564.999981pt;}
.x35{left:567.359981pt;}
.xd{left:587.066648pt;}
.x47{left:593.293314pt;}
.x5b{left:601.959981pt;}
.x2a{left:608.693314pt;}
.x34{left:614.599981pt;}
.x29{left:621.106648pt;}
.x28{left:637.239981pt;}
.x57{left:652.133314pt;}
.x13{left:656.199981pt;}
.x1c{left:657.399981pt;}
.x2b{left:658.799981pt;}
.x1b{left:660.533314pt;}
.x66{left:666.906648pt;}
.x6d{left:669.506648pt;}
.x61{left:670.506648pt;}
.x19{left:672.133314pt;}
.x55{left:674.533314pt;}
.x51{left:675.839981pt;}
.x64{left:678.333314pt;}
.x54{left:679.693314pt;}
.x56{left:681.839981pt;}
.x14{left:683.133314pt;}
.x11{left:684.626648pt;}
.x69{left:692.866648pt;}
.x12{left:695.293314pt;}
.x15{left:696.666648pt;}
.x65{left:697.933314pt;}
.x50{left:700.933314pt;}
.x1a{left:710.506648pt;}
.x62{left:724.066648pt;}
.x36{left:789.706648pt;}
.x2d{left:865.226648pt;}
.x71{left:874.959981pt;}
.x2f{left:886.506648pt;}
.x17{left:895.373314pt;}
.x16{left:897.773314pt;}
.x1d{left:901.293314pt;}
.x2c{left:912.573314pt;}
.x2e{left:914.466648pt;}
.x1e{left:922.333314pt;}
.x42{left:926.359981pt;}
.x18{left:931.266648pt;}
.x5d{left:935.906648pt;}
.x49{left:938.026648pt;}
.x1f{left:948.639981pt;}
.x4a{left:950.359981pt;}
.x48{left:961.199981pt;}
.x43{left:968.626648pt;}
.x6e{left:976.533314pt;}
.x5e{left:990.093314pt;}
.x37{left:1010.666648pt;}
.x38{left:1061.426648pt;}
}




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