
    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_e59658d8f222b6174c74ade5.woff')format("woff");}.ff1{font-family:ff1;line-height:1.011230;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_516251debee1a488ba508aeb.woff')format("woff");}.ff2{font-family:ff2;line-height:0.958008;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_44eaa229ae4723ffe3810c21.woff')format("woff");}.ff3{font-family:ff3;line-height:1.057617;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_3f5de7e31e75f96f40421a33.woff')format("woff");}.ff4{font-family:ff4;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_6ab7f6e4a84d5276c5bae00a.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_d1f65da03fd6105f4201a320.woff')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_a05acd3460e0f7f7fd3dd6d3.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_1f9bb11551a3d0f105215d31.woff')format("woff");}.ff8{font-family:ff8;line-height:1.087891;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_4887086b84c641303972b6ed.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_8d06d8d2503e77b14432f884.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_064c96ab030aee6150f43621.woff')format("woff");}.ffb{font-family:ffb;line-height:0.850586;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:ffc;src:url('chunks/assets/font_cc7fc7588bcbc914b5678b04.woff')format("woff");}.ffc{font-family:ffc;line-height:1.087891;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);}
.v3{vertical-align:-58.500000px;}
.v1{vertical-align:-49.500000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:58.500000px;}
.ls1b{letter-spacing:-4.650000px;}
.ls29{letter-spacing:-4.518000px;}
.ls26{letter-spacing:-4.368000px;}
.ls27{letter-spacing:-3.462000px;}
.ls15{letter-spacing:-3.048000px;}
.ls2a{letter-spacing:-2.856000px;}
.ls22{letter-spacing:-2.574000px;}
.ls23{letter-spacing:-2.490000px;}
.ls30{letter-spacing:-1.524000px;}
.ls2b{letter-spacing:-1.440000px;}
.ls2e{letter-spacing:-1.374000px;}
.ls31{letter-spacing:-0.382200px;}
.lsd{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.150000px;}
.ls1d{letter-spacing:0.172200px;}
.ls32{letter-spacing:0.202200px;}
.ls10{letter-spacing:0.220200px;}
.ls16{letter-spacing:0.370800px;}
.ls6{letter-spacing:0.450000px;}
.ls19{letter-spacing:0.549000px;}
.ls24{letter-spacing:0.606000px;}
.ls13{letter-spacing:0.708000px;}
.ls1a{letter-spacing:0.858000px;}
.ls20{letter-spacing:1.008000px;}
.lsf{letter-spacing:1.092000px;}
.ls2c{letter-spacing:1.146000px;}
.lse{letter-spacing:1.176000px;}
.ls14{letter-spacing:1.242000px;}
.ls2d{letter-spacing:1.296000px;}
.ls1e{letter-spacing:1.506000px;}
.ls12{letter-spacing:1.590000px;}
.ls1c{letter-spacing:1.656000px;}
.ls2f{letter-spacing:1.698000px;}
.ls21{letter-spacing:1.710000px;}
.ls28{letter-spacing:1.740000px;}
.ls3{letter-spacing:1.900500px;}
.ls18{letter-spacing:2.256000px;}
.ls1f{letter-spacing:2.508000px;}
.ls11{letter-spacing:2.592000px;}
.ls25{letter-spacing:2.658000px;}
.ls17{letter-spacing:2.742000px;}
.ls1{letter-spacing:5.500500px;}
.ls7{letter-spacing:8.020500px;}
.ls2{letter-spacing:24.700500px;}
.ls5{letter-spacing:27.603000px;}
.lsc{letter-spacing:38.680500px;}
.ls4{letter-spacing:39.400500px;}
.ls8{letter-spacing:59.175000px;}
.lsb{letter-spacing:307.500000px;}
.ls9{letter-spacing:567.480000px;}
.lsa{letter-spacing:567.780000px;}
.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;}
}
.ws26{word-spacing:-157.500000px;}
.ws3{word-spacing:-50.442000px;}
.ws4{word-spacing:-50.400000px;}
.ws1{word-spacing:-42.838500px;}
.wsd{word-spacing:-36.541500px;}
.ws1f{word-spacing:-36.487950px;}
.ws7{word-spacing:-36.391500px;}
.ws16{word-spacing:-36.337950px;}
.wse{word-spacing:-36.055500px;}
.ws23{word-spacing:-35.539500px;}
.ws19{word-spacing:-35.509500px;}
.ws12{word-spacing:-35.485950px;}
.ws8{word-spacing:-35.389500px;}
.ws15{word-spacing:-35.335950px;}
.wsa{word-spacing:-35.041500px;}
.ws5{word-spacing:-34.891500px;}
.ws18{word-spacing:-34.837950px;}
.ws10{word-spacing:-34.657500px;}
.ws9{word-spacing:-34.507500px;}
.wsf{word-spacing:-34.348500px;}
.wsc{word-spacing:-34.170300px;}
.ws6{word-spacing:-34.019700px;}
.ws13{word-spacing:-34.002150px;}
.ws17{word-spacing:-33.829950px;}
.ws14{word-spacing:-33.799500px;}
.ws34{word-spacing:-33.682500px;}
.ws29{word-spacing:-33.268500px;}
.ws28{word-spacing:-33.118500px;}
.ws33{word-spacing:-32.174700px;}
.ws32{word-spacing:-31.590300px;}
.wsb{word-spacing:-30.751500px;}
.ws27{word-spacing:-30.532500px;}
.ws31{word-spacing:-30.478950px;}
.ws22{word-spacing:-30.337500px;}
.ws2f{word-spacing:-30.145500px;}
.ws21{word-spacing:-29.431500px;}
.ws24{word-spacing:-29.281500px;}
.ws2e{word-spacing:-29.232000px;}
.ws11{word-spacing:-29.179950px;}
.ws25{word-spacing:-29.116500px;}
.ws1d{word-spacing:-28.318500px;}
.ws2{word-spacing:-28.162500px;}
.ws0{word-spacing:-28.125000px;}
.ws1b{word-spacing:-25.828500px;}
.ws1e{word-spacing:-2.227500px;}
.ws35{word-spacing:0.000000px;}
.ws2b{word-spacing:1.681500px;}
.ws2a{word-spacing:1.737000px;}
.ws1c{word-spacing:26.941500px;}
.ws1a{word-spacing:27.040050px;}
.ws20{word-spacing:27.692400px;}
.ws30{word-spacing:45.000000px;}
.ws2d{word-spacing:253.968000px;}
.ws2c{word-spacing:407.700000px;}
._7{margin-left:-22.840500px;}
._8{margin-left:-20.493000px;}
._30{margin-left:-19.362000px;}
._35{margin-left:-16.824000px;}
._36{margin-left:-15.634650px;}
._2a{margin-left:-13.899000px;}
._9{margin-left:-11.988000px;}
._37{margin-left:-10.905000px;}
._d{margin-left:-9.726000px;}
._25{margin-left:-8.049000px;}
._c{margin-left:-6.345000px;}
._1f{margin-left:-5.238000px;}
._5{margin-left:-4.146000px;}
._1{margin-left:-2.544000px;}
._4{margin-left:-1.135500px;}
._0{width:1.468500px;}
._2{width:2.997000px;}
._3{width:4.405500px;}
._1b{width:5.476500px;}
._6{width:6.481500px;}
._f{width:7.672500px;}
._10{width:8.760600px;}
._2f{width:10.078950px;}
._2e{width:11.426100px;}
._28{width:12.733500px;}
._27{width:13.870500px;}
._18{width:15.211500px;}
._15{width:16.848000px;}
._14{width:17.904000px;}
._39{width:19.066500px;}
._b{width:20.131500px;}
._12{width:21.300000px;}
._11{width:22.449000px;}
._17{width:24.163500px;}
._16{width:25.537500px;}
._31{width:27.448500px;}
._1a{width:29.019000px;}
._19{width:30.250500px;}
._29{width:32.586750px;}
._32{width:35.388600px;}
._1d{width:38.574000px;}
._1c{width:40.027500px;}
._2c{width:41.227500px;}
._e{width:43.473000px;}
._3f{width:45.078000px;}
._40{width:46.324500px;}
._a{width:48.534000px;}
._13{width:51.736500px;}
._3e{width:53.206500px;}
._34{width:54.828000px;}
._33{width:55.905000px;}
._23{width:58.065600px;}
._22{width:59.589000px;}
._2b{width:70.411500px;}
._2d{width:83.752500px;}
._3d{width:85.951500px;}
._21{width:95.353500px;}
._20{width:96.375000px;}
._24{width:104.586300px;}
._3a{width:167.314500px;}
._1e{width:168.835500px;}
._3b{width:169.857000px;}
._3c{width:171.138000px;}
._26{width:206.889000px;}
._38{width:359.430000px;}
.fc2{color:rgb(70,120,134);}
.fc3{color:rgb(255,255,255);}
.fc1{color:rgb(66,66,66);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:67.500000px;}
.fs0{font-size:112.500000px;}
.fs3{font-size:112.650000px;}
.fsd{font-size:126.000000px;}
.fsa{font-size:139.500000px;}
.fs9{font-size:139.650000px;}
.fse{font-size:144.000000px;}
.fsf{font-size:148.500000px;}
.fsb{font-size:157.500000px;}
.fs10{font-size:157.650000px;}
.fs1{font-size:166.500000px;}
.fs2{font-size:166.650000px;}
.fs7{font-size:180.000000px;}
.fs4{font-size:180.150000px;}
.fsc{font-size:193.650000px;}
.fs6{font-size:324.000000px;}
.fs5{font-size:324.150000px;}
.y0{bottom:0.000000px;}
.y3b{bottom:129.075000px;}
.y4d{bottom:139.275000px;}
.y3a{bottom:170.700000px;}
.y50{bottom:177.645000px;}
.y39{bottom:211.200000px;}
.y4f{bottom:222.675000px;}
.y38{bottom:252.825000px;}
.y37{bottom:294.450000px;}
.y4e{bottom:307.125000px;}
.y36{bottom:336.105000px;}
.y35{bottom:377.745000px;}
.y34{bottom:418.245000px;}
.y33{bottom:459.855000px;}
.y32{bottom:501.480000px;}
.y61{bottom:524.280000px;}
.y31{bottom:543.120000px;}
.y60{bottom:571.575000px;}
.y30{bottom:584.775000px;}
.y9{bottom:645.030000px;}
.y49{bottom:799.725000px;}
.y48{bottom:845.850000px;}
.y47{bottom:893.100000px;}
.y46{bottom:1018.395000px;}
.y5c{bottom:1141.020000px;}
.y5b{bottom:1190.520000px;}
.y5a{bottom:1241.145000px;}
.y59{bottom:1291.800000px;}
.y58{bottom:1342.425000px;}
.y57{bottom:1393.050000px;}
.y56{bottom:1442.550000px;}
.y55{bottom:1493.220000px;}
.y54{bottom:1543.845000px;}
.y5f{bottom:1548.375000px;}
.y53{bottom:1594.470000px;}
.y5e{bottom:1594.500000px;}
.y5d{bottom:1641.780000px;}
.y52{bottom:1645.095000px;}
.y51{bottom:1723.320000px;}
.y64{bottom:1819.050000px;}
.y63{bottom:1865.175000px;}
.y62{bottom:1912.425000px;}
.y23{bottom:2620.950000px;}
.y22{bottom:2671.575000px;}
.y21{bottom:2721.105000px;}
.y20{bottom:2771.730000px;}
.y1f{bottom:2822.355000px;}
.y1e{bottom:2872.980000px;}
.y1d{bottom:2923.605000px;}
.y1c{bottom:2973.150000px;}
.y1b{bottom:3023.775000px;}
.y11{bottom:3029.220000px;}
.y1a{bottom:3074.400000px;}
.y10{bottom:3086.580000px;}
.y19{bottom:3125.025000px;}
.yf{bottom:3145.080000px;}
.y18{bottom:3175.650000px;}
.ye{bottom:3202.455000px;}
.y17{bottom:3225.180000px;}
.yd{bottom:3260.955000px;}
.y16{bottom:3275.805000px;}
.yc{bottom:3318.375000px;}
.y15{bottom:3326.430000px;}
.yb{bottom:3376.875000px;}
.y14{bottom:3377.055000px;}
.y13{bottom:3427.680000px;}
.ya{bottom:3434.250000px;}
.y2f{bottom:3528.825000px;}
.y12{bottom:3533.205000px;}
.y44{bottom:3673.755000px;}
.y2e{bottom:3674.955000px;}
.y43{bottom:3723.300000px;}
.y2d{bottom:3724.455000px;}
.y42{bottom:3773.925000px;}
.y2c{bottom:3775.080000px;}
.y41{bottom:3824.550000px;}
.y2b{bottom:3825.750000px;}
.y2a{bottom:3876.375000px;}
.y40{bottom:3925.800000px;}
.y29{bottom:3927.000000px;}
.y8{bottom:3929.955000px;}
.y45{bottom:3930.300000px;}
.y3f{bottom:3975.330000px;}
.y28{bottom:3976.500000px;}
.y27{bottom:4027.125000px;}
.y3e{bottom:4076.580000px;}
.y26{bottom:4077.780000px;}
.y3d{bottom:4127.205000px;}
.y25{bottom:4128.405000px;}
.y3c{bottom:4177.875000px;}
.y24{bottom:4179.030000px;}
.y4{bottom:4268.955000px;}
.y7{bottom:4274.580000px;}
.y3{bottom:4448.625000px;}
.y4c{bottom:4474.125000px;}
.y2{bottom:4498.125000px;}
.y1{bottom:4548.750000px;}
.y4b{bottom:4613.400000px;}
.y4a{bottom:4670.580000px;}
.y6{bottom:4760.025000px;}
.y5{bottom:4857.930000px;}
.h8{height:49.141846px;}
.h2{height:82.122803px;}
.h3{height:82.232300px;}
.hc{height:120.904541px;}
.hb{height:121.034546px;}
.h11{height:121.359375px;}
.hf{height:124.804688px;}
.h12{height:128.704834px;}
.h7{height:135.000000px;}
.h4{height:135.112500px;}
.h14{height:136.120605px;}
.h13{height:136.250244px;}
.hd{height:136.505127px;}
.h9{height:144.305420px;}
.ha{height:144.435425px;}
.he{height:150.477539px;}
.h6{height:251.384766px;}
.h5{height:251.501147px;}
.h10{height:303.750000px;}
.h0{height:5054.625000px;}
.h1{height:5055.000000px;}
.w2{width:478.125000px;}
.w1{width:3575.249947px;}
.w0{width:3575.250000px;}
.x0{left:0.000000px;}
.x18{left:16.020000px;}
.x1e{left:257.819947px;}
.x1d{left:262.169947px;}
.x1a{left:266.954947px;}
.xc{left:316.199947px;}
.xd{left:318.974947px;}
.xe{left:543.374947px;}
.x4{left:594.704947px;}
.x16{left:637.274947px;}
.x15{left:674.969947px;}
.x5{left:730.949947px;}
.x12{left:755.294947px;}
.x1b{left:775.994947px;}
.x6{left:779.249947px;}
.x3{left:969.224947px;}
.x2{left:1050.719947px;}
.x1{left:1122.869947px;}
.xa{left:1531.694947px;}
.x11{left:1550.954947px;}
.xf{left:1564.829947px;}
.x14{left:1585.829947px;}
.x10{left:1605.374947px;}
.x1f{left:1808.894947px;}
.x7{left:2007.749947px;}
.x17{left:2025.000000px;}
.x1c{left:2094.524947px;}
.x13{left:2119.004947px;}
.xb{left:2188.694947px;}
.x9{left:2204.624947px;}
.x8{left:2397.074947px;}
.x19{left:2534.324947px;}
@media print{
.v3{vertical-align:-52.000000pt;}
.v1{vertical-align:-44.000000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:52.000000pt;}
.ls1b{letter-spacing:-4.133333pt;}
.ls29{letter-spacing:-4.016000pt;}
.ls26{letter-spacing:-3.882667pt;}
.ls27{letter-spacing:-3.077333pt;}
.ls15{letter-spacing:-2.709333pt;}
.ls2a{letter-spacing:-2.538667pt;}
.ls22{letter-spacing:-2.288000pt;}
.ls23{letter-spacing:-2.213333pt;}
.ls30{letter-spacing:-1.354667pt;}
.ls2b{letter-spacing:-1.280000pt;}
.ls2e{letter-spacing:-1.221333pt;}
.ls31{letter-spacing:-0.339733pt;}
.lsd{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.133333pt;}
.ls1d{letter-spacing:0.153067pt;}
.ls32{letter-spacing:0.179733pt;}
.ls10{letter-spacing:0.195733pt;}
.ls16{letter-spacing:0.329600pt;}
.ls6{letter-spacing:0.400000pt;}
.ls19{letter-spacing:0.488000pt;}
.ls24{letter-spacing:0.538667pt;}
.ls13{letter-spacing:0.629333pt;}
.ls1a{letter-spacing:0.762667pt;}
.ls20{letter-spacing:0.896000pt;}
.lsf{letter-spacing:0.970667pt;}
.ls2c{letter-spacing:1.018667pt;}
.lse{letter-spacing:1.045333pt;}
.ls14{letter-spacing:1.104000pt;}
.ls2d{letter-spacing:1.152000pt;}
.ls1e{letter-spacing:1.338667pt;}
.ls12{letter-spacing:1.413333pt;}
.ls1c{letter-spacing:1.472000pt;}
.ls2f{letter-spacing:1.509333pt;}
.ls21{letter-spacing:1.520000pt;}
.ls28{letter-spacing:1.546667pt;}
.ls3{letter-spacing:1.689333pt;}
.ls18{letter-spacing:2.005333pt;}
.ls1f{letter-spacing:2.229333pt;}
.ls11{letter-spacing:2.304000pt;}
.ls25{letter-spacing:2.362667pt;}
.ls17{letter-spacing:2.437333pt;}
.ls1{letter-spacing:4.889333pt;}
.ls7{letter-spacing:7.129333pt;}
.ls2{letter-spacing:21.956000pt;}
.ls5{letter-spacing:24.536000pt;}
.lsc{letter-spacing:34.382667pt;}
.ls4{letter-spacing:35.022667pt;}
.ls8{letter-spacing:52.600000pt;}
.lsb{letter-spacing:273.333333pt;}
.ls9{letter-spacing:504.426667pt;}
.lsa{letter-spacing:504.693333pt;}
.ws26{word-spacing:-140.000000pt;}
.ws3{word-spacing:-44.837333pt;}
.ws4{word-spacing:-44.800000pt;}
.ws1{word-spacing:-38.078667pt;}
.wsd{word-spacing:-32.481333pt;}
.ws1f{word-spacing:-32.433733pt;}
.ws7{word-spacing:-32.348000pt;}
.ws16{word-spacing:-32.300400pt;}
.wse{word-spacing:-32.049333pt;}
.ws23{word-spacing:-31.590667pt;}
.ws19{word-spacing:-31.564000pt;}
.ws12{word-spacing:-31.543067pt;}
.ws8{word-spacing:-31.457333pt;}
.ws15{word-spacing:-31.409733pt;}
.wsa{word-spacing:-31.148000pt;}
.ws5{word-spacing:-31.014667pt;}
.ws18{word-spacing:-30.967067pt;}
.ws10{word-spacing:-30.806667pt;}
.ws9{word-spacing:-30.673333pt;}
.wsf{word-spacing:-30.532000pt;}
.wsc{word-spacing:-30.373600pt;}
.ws6{word-spacing:-30.239733pt;}
.ws13{word-spacing:-30.224133pt;}
.ws17{word-spacing:-30.071067pt;}
.ws14{word-spacing:-30.044000pt;}
.ws34{word-spacing:-29.940000pt;}
.ws29{word-spacing:-29.572000pt;}
.ws28{word-spacing:-29.438667pt;}
.ws33{word-spacing:-28.599733pt;}
.ws32{word-spacing:-28.080267pt;}
.wsb{word-spacing:-27.334667pt;}
.ws27{word-spacing:-27.140000pt;}
.ws31{word-spacing:-27.092400pt;}
.ws22{word-spacing:-26.966667pt;}
.ws2f{word-spacing:-26.796000pt;}
.ws21{word-spacing:-26.161333pt;}
.ws24{word-spacing:-26.028000pt;}
.ws2e{word-spacing:-25.984000pt;}
.ws11{word-spacing:-25.937733pt;}
.ws25{word-spacing:-25.881333pt;}
.ws1d{word-spacing:-25.172000pt;}
.ws2{word-spacing:-25.033333pt;}
.ws0{word-spacing:-25.000000pt;}
.ws1b{word-spacing:-22.958667pt;}
.ws1e{word-spacing:-1.980000pt;}
.ws35{word-spacing:0.000000pt;}
.ws2b{word-spacing:1.494667pt;}
.ws2a{word-spacing:1.544000pt;}
.ws1c{word-spacing:23.948000pt;}
.ws1a{word-spacing:24.035600pt;}
.ws20{word-spacing:24.615467pt;}
.ws30{word-spacing:40.000000pt;}
.ws2d{word-spacing:225.749333pt;}
.ws2c{word-spacing:362.400000pt;}
._7{margin-left:-20.302667pt;}
._8{margin-left:-18.216000pt;}
._30{margin-left:-17.210667pt;}
._35{margin-left:-14.954667pt;}
._36{margin-left:-13.897467pt;}
._2a{margin-left:-12.354667pt;}
._9{margin-left:-10.656000pt;}
._37{margin-left:-9.693333pt;}
._d{margin-left:-8.645333pt;}
._25{margin-left:-7.154667pt;}
._c{margin-left:-5.640000pt;}
._1f{margin-left:-4.656000pt;}
._5{margin-left:-3.685333pt;}
._1{margin-left:-2.261333pt;}
._4{margin-left:-1.009333pt;}
._0{width:1.305333pt;}
._2{width:2.664000pt;}
._3{width:3.916000pt;}
._1b{width:4.868000pt;}
._6{width:5.761333pt;}
._f{width:6.820000pt;}
._10{width:7.787200pt;}
._2f{width:8.959067pt;}
._2e{width:10.156533pt;}
._28{width:11.318667pt;}
._27{width:12.329333pt;}
._18{width:13.521333pt;}
._15{width:14.976000pt;}
._14{width:15.914667pt;}
._39{width:16.948000pt;}
._b{width:17.894667pt;}
._12{width:18.933333pt;}
._11{width:19.954667pt;}
._17{width:21.478667pt;}
._16{width:22.700000pt;}
._31{width:24.398667pt;}
._1a{width:25.794667pt;}
._19{width:26.889333pt;}
._29{width:28.966000pt;}
._32{width:31.456533pt;}
._1d{width:34.288000pt;}
._1c{width:35.580000pt;}
._2c{width:36.646667pt;}
._e{width:38.642667pt;}
._3f{width:40.069333pt;}
._40{width:41.177333pt;}
._a{width:43.141333pt;}
._13{width:45.988000pt;}
._3e{width:47.294667pt;}
._34{width:48.736000pt;}
._33{width:49.693333pt;}
._23{width:51.613867pt;}
._22{width:52.968000pt;}
._2b{width:62.588000pt;}
._2d{width:74.446667pt;}
._3d{width:76.401333pt;}
._21{width:84.758667pt;}
._20{width:85.666667pt;}
._24{width:92.965600pt;}
._3a{width:148.724000pt;}
._1e{width:150.076000pt;}
._3b{width:150.984000pt;}
._3c{width:152.122667pt;}
._26{width:183.901333pt;}
._38{width:319.493333pt;}
.fs8{font-size:60.000000pt;}
.fs0{font-size:100.000000pt;}
.fs3{font-size:100.133333pt;}
.fsd{font-size:112.000000pt;}
.fsa{font-size:124.000000pt;}
.fs9{font-size:124.133333pt;}
.fse{font-size:128.000000pt;}
.fsf{font-size:132.000000pt;}
.fsb{font-size:140.000000pt;}
.fs10{font-size:140.133333pt;}
.fs1{font-size:148.000000pt;}
.fs2{font-size:148.133333pt;}
.fs7{font-size:160.000000pt;}
.fs4{font-size:160.133333pt;}
.fsc{font-size:172.133333pt;}
.fs6{font-size:288.000000pt;}
.fs5{font-size:288.133333pt;}
.y0{bottom:0.000000pt;}
.y3b{bottom:114.733333pt;}
.y4d{bottom:123.800000pt;}
.y3a{bottom:151.733333pt;}
.y50{bottom:157.906667pt;}
.y39{bottom:187.733333pt;}
.y4f{bottom:197.933333pt;}
.y38{bottom:224.733333pt;}
.y37{bottom:261.733333pt;}
.y4e{bottom:273.000000pt;}
.y36{bottom:298.760000pt;}
.y35{bottom:335.773333pt;}
.y34{bottom:371.773333pt;}
.y33{bottom:408.760000pt;}
.y32{bottom:445.760000pt;}
.y61{bottom:466.026667pt;}
.y31{bottom:482.773333pt;}
.y60{bottom:508.066667pt;}
.y30{bottom:519.800000pt;}
.y9{bottom:573.360000pt;}
.y49{bottom:710.866667pt;}
.y48{bottom:751.866667pt;}
.y47{bottom:793.866667pt;}
.y46{bottom:905.240000pt;}
.y5c{bottom:1014.240000pt;}
.y5b{bottom:1058.240000pt;}
.y5a{bottom:1103.240000pt;}
.y59{bottom:1148.266667pt;}
.y58{bottom:1193.266667pt;}
.y57{bottom:1238.266667pt;}
.y56{bottom:1282.266667pt;}
.y55{bottom:1327.306667pt;}
.y54{bottom:1372.306667pt;}
.y5f{bottom:1376.333333pt;}
.y53{bottom:1417.306667pt;}
.y5e{bottom:1417.333333pt;}
.y5d{bottom:1459.360000pt;}
.y52{bottom:1462.306667pt;}
.y51{bottom:1531.840000pt;}
.y64{bottom:1616.933333pt;}
.y63{bottom:1657.933333pt;}
.y62{bottom:1699.933333pt;}
.y23{bottom:2329.733333pt;}
.y22{bottom:2374.733333pt;}
.y21{bottom:2418.760000pt;}
.y20{bottom:2463.760000pt;}
.y1f{bottom:2508.760000pt;}
.y1e{bottom:2553.760000pt;}
.y1d{bottom:2598.760000pt;}
.y1c{bottom:2642.800000pt;}
.y1b{bottom:2687.800000pt;}
.y11{bottom:2692.640000pt;}
.y1a{bottom:2732.800000pt;}
.y10{bottom:2743.626667pt;}
.y19{bottom:2777.800000pt;}
.yf{bottom:2795.626667pt;}
.y18{bottom:2822.800000pt;}
.ye{bottom:2846.626667pt;}
.y17{bottom:2866.826667pt;}
.yd{bottom:2898.626667pt;}
.y16{bottom:2911.826667pt;}
.yc{bottom:2949.666667pt;}
.y15{bottom:2956.826667pt;}
.yb{bottom:3001.666667pt;}
.y14{bottom:3001.826667pt;}
.y13{bottom:3046.826667pt;}
.ya{bottom:3052.666667pt;}
.y2f{bottom:3136.733333pt;}
.y12{bottom:3140.626667pt;}
.y44{bottom:3265.560000pt;}
.y2e{bottom:3266.626667pt;}
.y43{bottom:3309.600000pt;}
.y2d{bottom:3310.626667pt;}
.y42{bottom:3354.600000pt;}
.y2c{bottom:3355.626667pt;}
.y41{bottom:3399.600000pt;}
.y2b{bottom:3400.666667pt;}
.y2a{bottom:3445.666667pt;}
.y40{bottom:3489.600000pt;}
.y29{bottom:3490.666667pt;}
.y8{bottom:3493.293333pt;}
.y45{bottom:3493.600000pt;}
.y3f{bottom:3533.626667pt;}
.y28{bottom:3534.666667pt;}
.y27{bottom:3579.666667pt;}
.y3e{bottom:3623.626667pt;}
.y26{bottom:3624.693333pt;}
.y3d{bottom:3668.626667pt;}
.y25{bottom:3669.693333pt;}
.y3c{bottom:3713.666667pt;}
.y24{bottom:3714.693333pt;}
.y4{bottom:3794.626667pt;}
.y7{bottom:3799.626667pt;}
.y3{bottom:3954.333333pt;}
.y4c{bottom:3977.000000pt;}
.y2{bottom:3998.333333pt;}
.y1{bottom:4043.333333pt;}
.y4b{bottom:4100.800000pt;}
.y4a{bottom:4151.626667pt;}
.y6{bottom:4231.133333pt;}
.y5{bottom:4318.160000pt;}
.h8{height:43.681641pt;}
.h2{height:72.998047pt;}
.h3{height:73.095378pt;}
.hc{height:107.470703pt;}
.hb{height:107.586263pt;}
.h11{height:107.875000pt;}
.hf{height:110.937500pt;}
.h12{height:114.404297pt;}
.h7{height:120.000000pt;}
.h4{height:120.100000pt;}
.h14{height:120.996094pt;}
.h13{height:121.111328pt;}
.hd{height:121.337891pt;}
.h9{height:128.271484pt;}
.ha{height:128.387044pt;}
.he{height:133.757812pt;}
.h6{height:223.453125pt;}
.h5{height:223.556576pt;}
.h10{height:270.000000pt;}
.h0{height:4493.000000pt;}
.h1{height:4493.333333pt;}
.w2{width:425.000000pt;}
.w1{width:3177.999953pt;}
.w0{width:3178.000000pt;}
.x0{left:0.000000pt;}
.x18{left:14.240000pt;}
.x1e{left:229.173286pt;}
.x1d{left:233.039953pt;}
.x1a{left:237.293286pt;}
.xc{left:281.066619pt;}
.xd{left:283.533286pt;}
.xe{left:482.999953pt;}
.x4{left:528.626619pt;}
.x16{left:566.466619pt;}
.x15{left:599.973286pt;}
.x5{left:649.733286pt;}
.x12{left:671.373286pt;}
.x1b{left:689.773286pt;}
.x6{left:692.666619pt;}
.x3{left:861.533286pt;}
.x2{left:933.973286pt;}
.x1{left:998.106619pt;}
.xa{left:1361.506619pt;}
.x11{left:1378.626619pt;}
.xf{left:1390.959953pt;}
.x14{left:1409.626619pt;}
.x10{left:1426.999953pt;}
.x1f{left:1607.906619pt;}
.x7{left:1784.666619pt;}
.x17{left:1800.000000pt;}
.x1c{left:1861.799953pt;}
.x13{left:1883.559953pt;}
.xb{left:1945.506619pt;}
.x9{left:1959.666619pt;}
.x8{left:2130.733286pt;}
.x19{left:2252.733286pt;}
}




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