
    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_8ea88485e7370db577c1f415.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.064941;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_90d236c489f4f43f634344b5.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.064941;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_5c874b5c514b7daddd21e86c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.065430;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_8a863121604c92b11ae548b7.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.749512;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_05b4ebd37f47f377fd8cc2cc.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.065430;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_bee3cb3ead04d29be413c20d.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.119629;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_162378ba4e9078f08731cbe2.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.767578;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_3f4728cc773e79b279a4d102.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.932617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_b150c26d6c94bf4ed22b40f9.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.035156;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:ffa;src:url('chunks/assets/font_d0e08b7245b6bc0c6f861ff5.woff2')format("woff");}.ffa{font-family:ffa;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;}
.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);}
.v2{vertical-align:-13.680036px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:16.559968px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.046870px;}
.ls2{letter-spacing:0.182828px;}
.ls7{letter-spacing:1.345036px;}
.ls8{letter-spacing:9.265081px;}
.ls6{letter-spacing:30.968206px;}
.ls5{letter-spacing:31.688219px;}
.ls4{letter-spacing:49.688219px;}
.ls3{letter-spacing:124.818583px;}
.ls9{letter-spacing:189.984955px;}
.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;}
}
.ws2{word-spacing:-14.861385px;}
.ws5{word-spacing:-14.045380px;}
.ws7{word-spacing:-12.718283px;}
.ws4{word-spacing:-12.335004px;}
.ws1{word-spacing:-11.146014px;}
.ws0{word-spacing:-9.957123px;}
.ws3{word-spacing:-8.619613px;}
.ws6{word-spacing:0.000000px;}
._23{margin-left:-8.398184px;}
._1c{margin-left:-3.842642px;}
._5{margin-left:-2.564793px;}
._0{margin-left:-1.377237px;}
._1{width:1.190895px;}
._8{width:2.972100px;}
._3{width:4.104156px;}
._2{width:5.759632px;}
._9{width:6.891451px;}
._6{width:8.441908px;}
._4{width:9.551424px;}
._32{width:11.005681px;}
._7{width:12.253491px;}
._e{width:13.341998px;}
._18{width:16.204768px;}
._13{width:17.509097px;}
._14{width:18.618656px;}
._1d{width:19.824468px;}
._4e{width:20.941306px;}
._5a{width:22.294483px;}
._3f{width:23.461800px;}
._3e{width:24.733176px;}
._34{width:26.724664px;}
._17{width:27.820735px;}
._45{width:29.243575px;}
._16{width:30.381369px;}
._15{width:31.728740px;}
._10{width:33.066893px;}
._f{width:34.486488px;}
._12{width:36.316687px;}
._11{width:37.531330px;}
._19{width:38.869747px;}
._d{width:40.252663px;}
._5c{width:41.630349px;}
._5e{width:43.459788px;}
._69{width:44.693368px;}
._42{width:45.838084px;}
._1b{width:47.172495px;}
._31{width:48.274107px;}
._35{width:49.526578px;}
._38{width:51.666503px;}
._39{width:52.739213px;}
._4f{width:54.319228px;}
._3b{width:55.894323px;}
._3a{width:57.540106px;}
._c{width:58.742332px;}
._1f{width:59.814964px;}
._20{width:60.916110px;}
._1e{width:62.108821px;}
._4c{width:63.421594px;}
._3c{width:64.956021px;}
._b{width:66.945104px;}
._33{width:68.394796px;}
._53{width:70.864688px;}
._61{width:72.425951px;}
._54{width:73.635005px;}
._48{width:74.655239px;}
._5b{width:76.496521px;}
._44{width:78.204608px;}
._21{width:80.001063px;}
._40{width:81.495878px;}
._41{width:82.529767px;}
._60{width:85.077704px;}
._4b{width:88.376983px;}
._36{width:90.470233px;}
._22{width:92.571726px;}
._43{width:94.699342px;}
._55{width:98.100477px;}
._50{width:99.179923px;}
._5d{width:101.144760px;}
._6a{width:104.092525px;}
._68{width:105.564386px;}
._67{width:107.188267px;}
._64{width:109.056464px;}
._63{width:110.365574px;}
._3d{width:111.460388px;}
._62{width:114.152399px;}
._66{width:115.627486px;}
._5f{width:119.722547px;}
._47{width:121.629534px;}
._46{width:123.654006px;}
._a{width:124.970738px;}
._37{width:131.628807px;}
._51{width:135.526226px;}
._58{width:136.966420px;}
._59{width:138.105828px;}
._1a{width:141.945753px;}
._4d{width:143.815876px;}
._6b{width:144.868435px;}
._65{width:156.515294px;}
._49{width:163.617991px;}
._4a{width:164.717974px;}
._57{width:170.563947px;}
._56{width:171.684884px;}
._52{width:187.724202px;}
._25{width:189.362899px;}
._24{width:191.192562px;}
._2e{width:218.215799px;}
._30{width:226.351499px;}
._27{width:270.348274px;}
._2f{width:282.835713px;}
._2d{width:288.590910px;}
._26{width:306.226666px;}
._28{width:336.227752px;}
._29{width:360.036690px;}
._2b{width:384.957910px;}
._2a{width:390.525642px;}
._2c{width:401.049483px;}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(17,17,17);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:16.887960px;}
.fs4{font-size:28.371780px;}
.fs8{font-size:39.180060px;}
.fs0{font-size:45.259650px;}
.fs5{font-size:50.663700px;}
.fsa{font-size:56.068200px;}
.fs9{font-size:62.147700px;}
.fs1{font-size:64.849950px;}
.fs7{font-size:67.551750px;}
.fs6{font-size:89.843850px;}
.fs3{font-size:101.327850px;}
.y0{bottom:0.000000px;}
.y64{bottom:3.060001px;}
.y62{bottom:3.060002px;}
.y3{bottom:3.600006px;}
.y7{bottom:5.579990px;}
.y33{bottom:75.419975px;}
.y32{bottom:113.940033px;}
.y7e{bottom:121.860008px;}
.y84{bottom:136.620002px;}
.y78{bottom:151.559967px;}
.y75{bottom:157.500000px;}
.yb4{bottom:160.019989px;}
.y83{bottom:174.419975px;}
.yb3{bottom:176.759994px;}
.y52{bottom:181.440033px;}
.y74{bottom:187.379998px;}
.yb2{bottom:201.600013px;}
.y51{bottom:210.960022px;}
.y82{bottom:212.399986px;}
.y2f{bottom:216.720017px;}
.y73{bottom:217.080025px;}
.yb1{bottom:218.159981px;}
.y50{bottom:240.840019px;}
.yb0{bottom:243.000000px;}
.y72{bottom:246.960022px;}
.y2e{bottom:254.159981px;}
.yaf{bottom:259.559967px;}
.y2d{bottom:269.100013px;}
.y4f{bottom:270.539977px;}
.yae{bottom:276.120002px;}
.y71{bottom:276.480011px;}
.y2c{bottom:283.860008px;}
.yad{bottom:292.679970px;}
.y2b{bottom:298.620002px;}
.y4e{bottom:300.419975px;}
.y70{bottom:306.360008px;}
.ycf{bottom:306.539977px;}
.yac{bottom:309.419975px;}
.y2a{bottom:313.559967px;}
.yab{bottom:325.799973px;}
.y29{bottom:328.500000px;}
.y4d{bottom:330.120002px;}
.y6f{bottom:336.059967px;}
.yaa{bottom:342.360008px;}
.y28{bottom:343.259994px;}
.yce{bottom:344.340019px;}
.y27{bottom:358.200027px;}
.y7c{bottom:359.820030px;}
.y4c{bottom:360.000000px;}
.y6e{bottom:365.940033px;}
.ya9{bottom:367.200027px;}
.y26{bottom:373.139992px;}
.ycd{bottom:382.320030px;}
.ya8{bottom:383.759994px;}
.y25{bottom:389.340019px;}
.y7b{bottom:389.519989px;}
.y4b{bottom:389.700027px;}
.y6d{bottom:395.639992px;}
.ya7{bottom:400.320030px;}
.y4a{bottom:419.399986px;}
.ycc{bottom:420.120002px;}
.ya6{bottom:425.159981px;}
.y6c{bottom:425.340019px;}
.y24{bottom:427.139992px;}
.ya5{bottom:441.899986px;}
.y49{bottom:449.100013px;}
.y6b{bottom:455.220017px;}
.ycb{bottom:458.100013px;}
.ya4{bottom:458.460022px;}
.y23{bottom:463.320030px;}
.ya3{bottom:475.019989px;}
.y7f{bottom:478.620002px;}
.y48{bottom:478.799973px;}
.y6a{bottom:484.740006px;}
.yca{bottom:495.899986px;}
.y22{bottom:499.139992px;}
.ya2{bottom:499.860008px;}
.y47{bottom:508.679970px;}
.y21{bottom:514.080025px;}
.y69{bottom:514.620002px;}
.ya1{bottom:516.419975px;}
.y20{bottom:529.019989px;}
.ya0{bottom:532.980011px;}
.yc9{bottom:534.059967px;}
.y77{bottom:538.200027px;}
.y46{bottom:538.379998px;}
.y1f{bottom:543.779983px;}
.y68{bottom:544.320030px;}
.y9f{bottom:549.539977px;}
.y1e{bottom:558.720017px;}
.y76{bottom:568.080025px;}
.y45{bottom:568.259994px;}
.yc8{bottom:571.860008px;}
.y1d{bottom:573.659981px;}
.y67{bottom:574.200027px;}
.y9e{bottom:574.559967px;}
.y1c{bottom:588.600013px;}
.y9d{bottom:591.120002px;}
.y44{bottom:597.960022px;}
.y1b{bottom:603.360008px;}
.y66{bottom:603.899986px;}
.yc7{bottom:609.840019px;}
.y9c{bottom:615.959988px;}
.y1a{bottom:618.300007px;}
.y65{bottom:623.160015px;}
.y79{bottom:627.480011px;}
.y43{bottom:627.660015px;}
.y9b{bottom:632.519989px;}
.y19{bottom:633.240006px;}
.y63{bottom:637.379998px;}
.yc6{bottom:647.819995px;}
.y18{bottom:648.360008px;}
.y9a{bottom:649.079990px;}
.y61{bottom:654.660015px;}
.y42{bottom:657.360008px;}
.y99{bottom:665.639992px;}
.y60{bottom:674.819995px;}
.y17{bottom:684.540012px;}
.yc5{bottom:685.439999px;}
.y41{bottom:687.240006px;}
.y98{bottom:690.480011px;}
.y5f{bottom:692.100013px;}
.y16{bottom:701.459988px;}
.yc4{bottom:701.819995px;}
.y97{bottom:707.040012px;}
.y5e{bottom:709.379998px;}
.y40{bottom:716.939999px;}
.y15{bottom:719.100013px;}
.y5d{bottom:726.660015px;}
.y96{bottom:732.240006px;}
.yc3{bottom:739.259994px;}
.y5c{bottom:743.759994px;}
.y3f{bottom:746.639992px;}
.y95{bottom:748.800007px;}
.y14{bottom:750.240006px;}
.y5b{bottom:761.040012px;}
.y94{bottom:765.180004px;}
.y13{bottom:768.420010px;}
.y7a{bottom:776.339985px;}
.y3e{bottom:776.519989px;}
.y5a{bottom:778.319995px;}
.y12{bottom:786.600013px;}
.y93{bottom:790.199993px;}
.y59{bottom:795.420010px;}
.y11{bottom:805.500000px;}
.y7d{bottom:806.040012px;}
.y3d{bottom:806.220017px;}
.y92{bottom:806.759994px;}
.yc2{bottom:811.439999px;}
.y58{bottom:812.699993px;}
.y10{bottom:826.560001px;}
.yc1{bottom:828.000000px;}
.y57{bottom:829.980011px;}
.y91{bottom:831.600013px;}
.y3c{bottom:835.920010px;}
.yc0{bottom:844.560001px;}
.y56{bottom:847.259994px;}
.y90{bottom:848.160015px;}
.yf{bottom:853.019989px;}
.ybf{bottom:861.120002px;}
.y55{bottom:864.540012px;}
.y8f{bottom:864.899987px;}
.y81{bottom:865.439999px;}
.y3b{bottom:865.620002px;}
.ye{bottom:879.480011px;}
.y8e{bottom:881.279983px;}
.y54{bottom:881.819996px;}
.ybe{bottom:885.959988px;}
.y80{bottom:895.319996px;}
.y3a{bottom:895.500000px;}
.y8d{bottom:897.839985px;}
.y53{bottom:898.199993px;}
.ybd{bottom:902.520006px;}
.yd{bottom:905.939999px;}
.y8c{bottom:914.400003px;}
.ybc{bottom:919.080008px;}
.y39{bottom:925.199993px;}
.y8b{bottom:930.960004px;}
.yc{bottom:932.400003px;}
.ybb{bottom:935.639992px;}
.yba{bottom:952.199993px;}
.y38{bottom:955.080008px;}
.y8a{bottom:955.800007px;}
.yb{bottom:958.680004px;}
.yb9{bottom:968.759994px;}
.y89{bottom:972.360008px;}
.y37{bottom:984.780001px;}
.ya{bottom:985.319996px;}
.y88{bottom:989.099997px;}
.yb8{bottom:993.599997px;}
.yb7{bottom:1010.159998px;}
.y9{bottom:1013.219999px;}
.y87{bottom:1013.939999px;}
.y36{bottom:1014.479994px;}
.y8{bottom:1028.340002px;}
.y86{bottom:1030.500000px;}
.y6{bottom:1035.180004px;}
.y5{bottom:1040.759994px;}
.y35{bottom:1044.180004px;}
.y85{bottom:1047.060001px;}
.yb6{bottom:1060.200002px;}
.y4{bottom:1065.959997px;}
.y2{bottom:1069.739997px;}
.y34{bottom:1073.879998px;}
.y1{bottom:1074.959997px;}
.yb5{bottom:1076.760003px;}
.y31{bottom:1108.799998px;}
.y30{bottom:1125.180000px;}
.h4{height:14.298693px;}
.h2{height:16.020007px;}
.h14{height:16.199992px;}
.h13{height:16.199993px;}
.h7{height:24.021810px;}
.h6{height:29.699993px;}
.hc{height:38.219137px;}
.hd{height:38.219141px;}
.h1{height:38.320426px;}
.hb{height:38.939159px;}
.h8{height:42.895926px;}
.h10{height:47.126649px;}
.he{height:47.471806px;}
.h15{height:52.619195px;}
.h3{height:54.907135px;}
.h12{height:55.767052px;}
.ha{height:57.194695px;}
.hf{height:61.813899px;}
.h11{height:63.634632px;}
.h9{height:76.068963px;}
.h5{height:85.792232px;}
.h0{height:1188.000000px;}
.w4{width:7.740006px;}
.w1{width:7.919975px;}
.w7{width:8.460022px;}
.w2{width:9.180038px;}
.w6{width:34.019989px;}
.w3{width:61.379998px;}
.w5{width:88.019990px;}
.w8{width:102.600013px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x17{left:132.840002px;}
.x14{left:136.799998px;}
.x11{left:152.099997px;}
.xa{left:156.060001px;}
.xb{left:162.000000px;}
.x1{left:163.620002px;}
.x4{left:164.699993px;}
.x22{left:166.860008px;}
.x8{left:202.319996px;}
.x13{left:238.139992px;}
.xe{left:251.819996px;}
.xd{left:284.939999px;}
.x25{left:292.680005px;}
.x9{left:312.480011px;}
.x6{left:313.740006px;}
.xf{left:342.360008px;}
.xc{left:359.100014px;}
.x12{left:440.819996px;}
.x10{left:441.899987px;}
.x15{left:447.839985px;}
.x16{left:458.639992px;}
.x18{left:464.579990px;}
.x7{left:467.819996px;}
.x3{left:475.379998px;}
.x24{left:494.100014px;}
.x23{left:498.600014px;}
.x1a{left:503.819996px;}
.x27{left:514.079990px;}
.x26{left:516.060001px;}
.x19{left:527.579990px;}
.x1e{left:529.560001px;}
.x1f{left:563.579990px;}
.x1b{left:565.019989px;}
.x20{left:619.559967px;}
.x1c{left:626.940033px;}
.x1d{left:714.779983px;}
.x21{left:722.159981px;}
.x5{left:786.059967px;}
.x2{left:787.320030px;}
@media print{
.v2{vertical-align:-12.160032pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:14.719972pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.041662pt;}
.ls2{letter-spacing:0.162514pt;}
.ls7{letter-spacing:1.195588pt;}
.ls8{letter-spacing:8.235628pt;}
.ls6{letter-spacing:27.527294pt;}
.ls5{letter-spacing:28.167306pt;}
.ls4{letter-spacing:44.167306pt;}
.ls3{letter-spacing:110.949852pt;}
.ls9{letter-spacing:168.875516pt;}
.ws2{word-spacing:-13.210120pt;}
.ws5{word-spacing:-12.484782pt;}
.ws7{word-spacing:-11.305140pt;}
.ws4{word-spacing:-10.964448pt;}
.ws1{word-spacing:-9.907568pt;}
.ws0{word-spacing:-8.850776pt;}
.ws3{word-spacing:-7.661878pt;}
.ws6{word-spacing:0.000000pt;}
._23{margin-left:-7.465053pt;}
._1c{margin-left:-3.415682pt;}
._5{margin-left:-2.279816pt;}
._0{margin-left:-1.224211pt;}
._1{width:1.058573pt;}
._8{width:2.641867pt;}
._3{width:3.648138pt;}
._2{width:5.119672pt;}
._9{width:6.125734pt;}
._6{width:7.503918pt;}
._4{width:8.490155pt;}
._32{width:9.782828pt;}
._7{width:10.891992pt;}
._e{width:11.859554pt;}
._18{width:14.404238pt;}
._13{width:15.563642pt;}
._14{width:16.549917pt;}
._1d{width:17.621750pt;}
._4e{width:18.614495pt;}
._5a{width:19.817319pt;}
._3f{width:20.854933pt;}
._3e{width:21.985045pt;}
._34{width:23.755257pt;}
._17{width:24.729542pt;}
._45{width:25.994289pt;}
._16{width:27.005661pt;}
._15{width:28.203325pt;}
._10{width:29.392794pt;}
._f{width:30.654656pt;}
._12{width:32.281499pt;}
._11{width:33.361182pt;}
._19{width:34.550886pt;}
._d{width:35.780145pt;}
._5c{width:37.004755pt;}
._5e{width:38.630922pt;}
._69{width:39.727438pt;}
._42{width:40.744964pt;}
._1b{width:41.931107pt;}
._31{width:42.910318pt;}
._35{width:44.023625pt;}
._38{width:45.925780pt;}
._39{width:46.879300pt;}
._4f{width:48.283758pt;}
._3b{width:49.683843pt;}
._3a{width:51.146761pt;}
._c{width:52.215406pt;}
._1f{width:53.168857pt;}
._20{width:54.147653pt;}
._1e{width:55.207840pt;}
._4c{width:56.374750pt;}
._3c{width:57.738686pt;}
._b{width:59.506759pt;}
._33{width:60.795375pt;}
._53{width:62.990834pt;}
._61{width:64.378623pt;}
._54{width:65.453338pt;}
._48{width:66.360212pt;}
._5b{width:67.996907pt;}
._44{width:69.515207pt;}
._21{width:71.112056pt;}
._40{width:72.440780pt;}
._41{width:73.359793pt;}
._60{width:75.624626pt;}
._4b{width:78.557318pt;}
._36{width:80.417985pt;}
._22{width:82.285979pt;}
._43{width:84.177193pt;}
._55{width:87.200424pt;}
._50{width:88.159932pt;}
._5d{width:89.906454pt;}
._6a{width:92.526689pt;}
._68{width:93.835010pt;}
._67{width:95.278460pt;}
._64{width:96.939079pt;}
._63{width:98.102733pt;}
._3d{width:99.075900pt;}
._62{width:101.468799pt;}
._66{width:102.779988pt;}
._5f{width:106.420042pt;}
._47{width:108.115141pt;}
._46{width:109.914672pt;}
._a{width:111.085100pt;}
._37{width:117.003384pt;}
._51{width:120.467757pt;}
._58{width:121.747929pt;}
._59{width:122.760736pt;}
._1a{width:126.174003pt;}
._4d{width:127.836334pt;}
._6b{width:128.771942pt;}
._65{width:139.124706pt;}
._49{width:145.438214pt;}
._4a{width:146.415977pt;}
._57{width:151.612397pt;}
._56{width:152.608785pt;}
._52{width:166.865958pt;}
._25{width:168.322577pt;}
._24{width:169.948944pt;}
._2e{width:193.969599pt;}
._30{width:201.201333pt;}
._27{width:240.309577pt;}
._2f{width:251.409523pt;}
._2d{width:256.525253pt;}
._26{width:272.201481pt;}
._28{width:298.869113pt;}
._29{width:320.032613pt;}
._2b{width:342.184809pt;}
._2a{width:347.133904pt;}
._2c{width:356.488429pt;}
.fs2{font-size:15.011520pt;}
.fs4{font-size:25.219360pt;}
.fs8{font-size:34.826720pt;}
.fs0{font-size:40.230800pt;}
.fs5{font-size:45.034400pt;}
.fsa{font-size:49.838400pt;}
.fs9{font-size:55.242400pt;}
.fs1{font-size:57.644400pt;}
.fs7{font-size:60.046000pt;}
.fs6{font-size:79.861200pt;}
.fs3{font-size:90.069200pt;}
.y0{bottom:0.000000pt;}
.y64{bottom:2.720001pt;}
.y62{bottom:2.720002pt;}
.y3{bottom:3.200005pt;}
.y7{bottom:4.959991pt;}
.y33{bottom:67.039978pt;}
.y32{bottom:101.280029pt;}
.y7e{bottom:108.320007pt;}
.y84{bottom:121.440002pt;}
.y78{bottom:134.719971pt;}
.y75{bottom:140.000000pt;}
.yb4{bottom:142.239990pt;}
.y83{bottom:155.039978pt;}
.yb3{bottom:157.119995pt;}
.y52{bottom:161.280029pt;}
.y74{bottom:166.559998pt;}
.yb2{bottom:179.200012pt;}
.y51{bottom:187.520020pt;}
.y82{bottom:188.799988pt;}
.y2f{bottom:192.640015pt;}
.y73{bottom:192.960022pt;}
.yb1{bottom:193.919983pt;}
.y50{bottom:214.080017pt;}
.yb0{bottom:216.000000pt;}
.y72{bottom:219.520020pt;}
.y2e{bottom:225.919983pt;}
.yaf{bottom:230.719971pt;}
.y2d{bottom:239.200012pt;}
.y4f{bottom:240.479980pt;}
.yae{bottom:245.440002pt;}
.y71{bottom:245.760010pt;}
.y2c{bottom:252.320007pt;}
.yad{bottom:260.159973pt;}
.y2b{bottom:265.440002pt;}
.y4e{bottom:267.039978pt;}
.y70{bottom:272.320007pt;}
.ycf{bottom:272.479980pt;}
.yac{bottom:275.039978pt;}
.y2a{bottom:278.719971pt;}
.yab{bottom:289.599976pt;}
.y29{bottom:292.000000pt;}
.y4d{bottom:293.440002pt;}
.y6f{bottom:298.719971pt;}
.yaa{bottom:304.320007pt;}
.y28{bottom:305.119995pt;}
.yce{bottom:306.080017pt;}
.y27{bottom:318.400024pt;}
.y7c{bottom:319.840027pt;}
.y4c{bottom:320.000000pt;}
.y6e{bottom:325.280029pt;}
.ya9{bottom:326.400024pt;}
.y26{bottom:331.679993pt;}
.ycd{bottom:339.840027pt;}
.ya8{bottom:341.119995pt;}
.y25{bottom:346.080017pt;}
.y7b{bottom:346.239990pt;}
.y4b{bottom:346.400024pt;}
.y6d{bottom:351.679993pt;}
.ya7{bottom:355.840027pt;}
.y4a{bottom:372.799988pt;}
.ycc{bottom:373.440002pt;}
.ya6{bottom:377.919983pt;}
.y6c{bottom:378.080017pt;}
.y24{bottom:379.679993pt;}
.ya5{bottom:392.799988pt;}
.y49{bottom:399.200012pt;}
.y6b{bottom:404.640015pt;}
.ycb{bottom:407.200012pt;}
.ya4{bottom:407.520020pt;}
.y23{bottom:411.840027pt;}
.ya3{bottom:422.239990pt;}
.y7f{bottom:425.440002pt;}
.y48{bottom:425.599976pt;}
.y6a{bottom:430.880005pt;}
.yca{bottom:440.799988pt;}
.y22{bottom:443.679993pt;}
.ya2{bottom:444.320007pt;}
.y47{bottom:452.159973pt;}
.y21{bottom:456.960022pt;}
.y69{bottom:457.440002pt;}
.ya1{bottom:459.039978pt;}
.y20{bottom:470.239990pt;}
.ya0{bottom:473.760010pt;}
.yc9{bottom:474.719971pt;}
.y77{bottom:478.400024pt;}
.y46{bottom:478.559998pt;}
.y1f{bottom:483.359985pt;}
.y68{bottom:483.840027pt;}
.y9f{bottom:488.479980pt;}
.y1e{bottom:496.640015pt;}
.y76{bottom:504.960022pt;}
.y45{bottom:505.119995pt;}
.yc8{bottom:508.320007pt;}
.y1d{bottom:509.919983pt;}
.y67{bottom:510.400024pt;}
.y9e{bottom:510.719971pt;}
.y1c{bottom:523.200012pt;}
.y9d{bottom:525.440002pt;}
.y44{bottom:531.520020pt;}
.y1b{bottom:536.320007pt;}
.y66{bottom:536.799988pt;}
.yc7{bottom:542.080017pt;}
.y9c{bottom:547.519989pt;}
.y1a{bottom:549.600006pt;}
.y65{bottom:553.920013pt;}
.y79{bottom:557.760010pt;}
.y43{bottom:557.920013pt;}
.y9b{bottom:562.239990pt;}
.y19{bottom:562.880005pt;}
.y63{bottom:566.559998pt;}
.yc6{bottom:575.839996pt;}
.y18{bottom:576.320007pt;}
.y9a{bottom:576.959991pt;}
.y61{bottom:581.920013pt;}
.y42{bottom:584.320007pt;}
.y99{bottom:591.679993pt;}
.y60{bottom:599.839996pt;}
.y17{bottom:608.480011pt;}
.yc5{bottom:609.279999pt;}
.y41{bottom:610.880005pt;}
.y98{bottom:613.760010pt;}
.y5f{bottom:615.200012pt;}
.y16{bottom:623.519989pt;}
.yc4{bottom:623.839996pt;}
.y97{bottom:628.480011pt;}
.y5e{bottom:630.559998pt;}
.y40{bottom:637.279999pt;}
.y15{bottom:639.200012pt;}
.y5d{bottom:645.920013pt;}
.y96{bottom:650.880005pt;}
.yc3{bottom:657.119995pt;}
.y5c{bottom:661.119995pt;}
.y3f{bottom:663.679993pt;}
.y95{bottom:665.600006pt;}
.y14{bottom:666.880005pt;}
.y5b{bottom:676.480011pt;}
.y94{bottom:680.160004pt;}
.y13{bottom:683.040009pt;}
.y7a{bottom:690.079987pt;}
.y3e{bottom:690.239990pt;}
.y5a{bottom:691.839996pt;}
.y12{bottom:699.200012pt;}
.y93{bottom:702.399994pt;}
.y59{bottom:707.040009pt;}
.y11{bottom:716.000000pt;}
.y7d{bottom:716.480011pt;}
.y3d{bottom:716.640015pt;}
.y92{bottom:717.119995pt;}
.yc2{bottom:721.279999pt;}
.y58{bottom:722.399994pt;}
.y10{bottom:734.720001pt;}
.yc1{bottom:736.000000pt;}
.y57{bottom:737.760010pt;}
.y91{bottom:739.200012pt;}
.y3c{bottom:743.040009pt;}
.yc0{bottom:750.720001pt;}
.y56{bottom:753.119995pt;}
.y90{bottom:753.920013pt;}
.yf{bottom:758.239990pt;}
.ybf{bottom:765.440002pt;}
.y55{bottom:768.480011pt;}
.y8f{bottom:768.799988pt;}
.y81{bottom:769.279999pt;}
.y3b{bottom:769.440002pt;}
.ye{bottom:781.760010pt;}
.y8e{bottom:783.359985pt;}
.y54{bottom:783.839996pt;}
.ybe{bottom:787.519989pt;}
.y80{bottom:795.839996pt;}
.y3a{bottom:796.000000pt;}
.y8d{bottom:798.079987pt;}
.y53{bottom:798.399994pt;}
.ybd{bottom:802.240005pt;}
.yd{bottom:805.279999pt;}
.y8c{bottom:812.800003pt;}
.ybc{bottom:816.960007pt;}
.y39{bottom:822.399994pt;}
.y8b{bottom:827.520004pt;}
.yc{bottom:828.800003pt;}
.ybb{bottom:831.679993pt;}
.yba{bottom:846.399994pt;}
.y38{bottom:848.960007pt;}
.y8a{bottom:849.600006pt;}
.yb{bottom:852.160004pt;}
.yb9{bottom:861.119995pt;}
.y89{bottom:864.320007pt;}
.y37{bottom:875.360001pt;}
.ya{bottom:875.839996pt;}
.y88{bottom:879.199997pt;}
.yb8{bottom:883.199997pt;}
.yb7{bottom:897.919998pt;}
.y9{bottom:900.639999pt;}
.y87{bottom:901.279999pt;}
.y36{bottom:901.759995pt;}
.y8{bottom:914.080002pt;}
.y86{bottom:916.000000pt;}
.y6{bottom:920.160004pt;}
.y5{bottom:925.119995pt;}
.y35{bottom:928.160004pt;}
.y85{bottom:930.720001pt;}
.yb6{bottom:942.400002pt;}
.y4{bottom:947.519997pt;}
.y2{bottom:950.879997pt;}
.y34{bottom:954.559998pt;}
.y1{bottom:955.519997pt;}
.yb5{bottom:957.120003pt;}
.y31{bottom:985.599998pt;}
.y30{bottom:1000.160000pt;}
.h4{height:12.709949pt;}
.h2{height:14.240006pt;}
.h14{height:14.399993pt;}
.h13{height:14.399994pt;}
.h7{height:21.352720pt;}
.h6{height:26.399994pt;}
.hc{height:33.972566pt;}
.hd{height:33.972570pt;}
.h1{height:34.062601pt;}
.hb{height:34.612586pt;}
.h8{height:38.129712pt;}
.h10{height:41.890355pt;}
.he{height:42.197161pt;}
.h15{height:46.772618pt;}
.h3{height:48.806343pt;}
.h12{height:49.570713pt;}
.ha{height:50.839729pt;}
.hf{height:54.945688pt;}
.h11{height:56.564118pt;}
.h9{height:67.616856pt;}
.h5{height:76.259762pt;}
.h0{height:1056.000000pt;}
.w4{width:6.880005pt;}
.w1{width:7.039978pt;}
.w7{width:7.520020pt;}
.w2{width:8.160034pt;}
.w6{width:30.239990pt;}
.w3{width:54.559998pt;}
.w5{width:78.239991pt;}
.w8{width:91.200012pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x17{left:118.080002pt;}
.x14{left:121.599998pt;}
.x11{left:135.199997pt;}
.xa{left:138.720001pt;}
.xb{left:144.000000pt;}
.x1{left:145.440002pt;}
.x4{left:146.399994pt;}
.x22{left:148.320007pt;}
.x8{left:179.839996pt;}
.x13{left:211.679993pt;}
.xe{left:223.839996pt;}
.xd{left:253.279999pt;}
.x25{left:260.160004pt;}
.x9{left:277.760010pt;}
.x6{left:278.880005pt;}
.xf{left:304.320007pt;}
.xc{left:319.200012pt;}
.x12{left:391.839996pt;}
.x10{left:392.799988pt;}
.x15{left:398.079987pt;}
.x16{left:407.679993pt;}
.x18{left:412.959991pt;}
.x7{left:415.839996pt;}
.x3{left:422.559998pt;}
.x24{left:439.200012pt;}
.x23{left:443.200012pt;}
.x1a{left:447.839996pt;}
.x27{left:456.959991pt;}
.x26{left:458.720001pt;}
.x19{left:468.959991pt;}
.x1e{left:470.720001pt;}
.x1f{left:500.959991pt;}
.x1b{left:502.239990pt;}
.x20{left:550.719971pt;}
.x1c{left:557.280029pt;}
.x1d{left:635.359985pt;}
.x21{left:641.919983pt;}
.x5{left:698.719971pt;}
.x2{left:699.840027pt;}
}




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