
    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_24fc03e4cb2b6ab0137276c5.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910156;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_3f9ca3d36f683bdf87644532.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.675781;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_bb5038322215374509778918.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.046387;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_ec41e7815ba13bb3fab67409.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.857910;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_d4a9d1f7fa61de47d83ed594.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;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_9071a5eb2ced2dd6c4d7cd8b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.056152;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_e0f03ceb358f17dacfb334e3.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;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_6a24f55bdc053be975b38ae9.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.692871;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_8a464c6da921c07da9573a26.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666504;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_435f992470d98665310a5a84.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.072754;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_6a2b337a653f18ea362dcce5.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.677246;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_17d6d03f9ef565b3f2f222b7.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.694336;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:ffd;src:url('chunks/assets/font_9f5f4141855f512d61da66dc.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.910156;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:ffe;src:url('chunks/assets/font_25ecd3318fdc100e870a1209.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.893555;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:fff;src:url('chunks/assets/font_508ae83b3f86ec6f387f2eb0.woff2')format("woff");}.fff{font-family:fff;line-height:0.891113;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:ff10;src:url('chunks/assets/font_9c8afe9d5b4a5f56676e65da.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.689453;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:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.480000px;}
.ls11{letter-spacing:-0.463104px;}
.lsb{letter-spacing:-0.417312px;}
.ls19{letter-spacing:-0.399168px;}
.ls10{letter-spacing:-0.381024px;}
.lsf{letter-spacing:-0.338688px;}
.ls1b{letter-spacing:-0.328032px;}
.ls16{letter-spacing:-0.320544px;}
.ls1a{letter-spacing:-0.308736px;}
.ls17{letter-spacing:-0.260064px;}
.ls1e{letter-spacing:-0.254016px;}
.lsd{letter-spacing:-0.241920px;}
.ls25{letter-spacing:-0.223776px;}
.ls22{letter-spacing:-0.198720px;}
.ls26{letter-spacing:-0.175392px;}
.ls20{letter-spacing:-0.158976px;}
.lse{letter-spacing:-0.157248px;}
.ls1c{letter-spacing:-0.145152px;}
.ls18{letter-spacing:-0.120960px;}
.ls23{letter-spacing:-0.119232px;}
.ls21{letter-spacing:-0.079488px;}
.ls24{letter-spacing:-0.059616px;}
.ls1d{letter-spacing:-0.014400px;}
.lsc{letter-spacing:0.000000px;}
.ls28{letter-spacing:0.000576px;}
.lsa{letter-spacing:0.014400px;}
.ls9{letter-spacing:0.060048px;}
.ls3{letter-spacing:0.119520px;}
.ls6{letter-spacing:0.119952px;}
.ls0{letter-spacing:0.120096px;}
.ls1{letter-spacing:0.120960px;}
.ls15{letter-spacing:0.161568px;}
.ls13{letter-spacing:0.204336px;}
.ls7{letter-spacing:0.213840px;}
.ls2{letter-spacing:0.223344px;}
.ls4{letter-spacing:0.237600px;}
.ls8{letter-spacing:0.239904px;}
.ls5{letter-spacing:0.240048px;}
.ls14{letter-spacing:0.242352px;}
.ls12{letter-spacing:0.285120px;}
.ls1f{letter-spacing:3.886416px;}
.ls27{letter-spacing:4.510080px;}
.ls29{letter-spacing:238.389120px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb{word-spacing:-24.120000px;}
.wsc{word-spacing:-23.791968px;}
.wsf{word-spacing:-18.014400px;}
.wse{word-spacing:-18.000000px;}
.ws10{word-spacing:-17.985600px;}
.ws17{word-spacing:-16.560000px;}
.ws18{word-spacing:-16.500384px;}
.ws15{word-spacing:-16.480512px;}
.ws16{word-spacing:-16.440768px;}
.ws14{word-spacing:-16.401024px;}
.ws1{word-spacing:-15.120000px;}
.wsd{word-spacing:-14.974848px;}
.ws12{word-spacing:-14.962752px;}
.ws0{word-spacing:-14.878080px;}
.wsa{word-spacing:-14.859936px;}
.ws8{word-spacing:-14.799456px;}
.ws9{word-spacing:-14.781312px;}
.ws2{word-spacing:-14.738976px;}
.ws13{word-spacing:-13.414464px;}
.ws6{word-spacing:-12.122352px;}
.ws5{word-spacing:-12.117600px;}
.ws4{word-spacing:-12.103344px;}
.ws7{word-spacing:-12.093840px;}
.ws3{word-spacing:-12.084336px;}
.ws11{word-spacing:0.000000px;}
._9{margin-left:-10.805760px;}
._c{margin-left:-8.662464px;}
._6{margin-left:-4.656960px;}
._5{margin-left:-3.562848px;}
._7{margin-left:-2.361600px;}
._3{margin-left:-1.044144px;}
._0{width:1.028160px;}
._14{width:2.700000px;}
._11{width:4.543200px;}
._d{width:5.985936px;}
._12{width:7.102368px;}
._e{width:8.890560px;}
._15{width:9.990720px;}
._1a{width:11.013552px;}
._10{width:12.785616px;}
._1b{width:14.102352px;}
._18{width:15.567840px;}
._f{width:16.920000px;}
._19{width:19.007280px;}
._1d{width:20.087712px;}
._1c{width:21.211200px;}
._23{width:22.219488px;}
._1e{width:23.767200px;}
._26{width:25.269408px;}
._22{width:26.365248px;}
._1f{width:28.523808px;}
._20{width:29.760336px;}
._24{width:31.031424px;}
._13{width:32.724000px;}
._25{width:33.847200px;}
._34{width:35.172000px;}
._43{width:38.829600px;}
._30{width:41.983200px;}
._40{width:43.956000px;}
._3e{width:47.030400px;}
._2f{width:48.996000px;}
._28{width:51.552000px;}
._29{width:53.294400px;}
._42{width:55.396800px;}
._3d{width:56.507904px;}
._37{width:57.729600px;}
._2e{width:59.788800px;}
._3b{width:62.654400px;}
._a{width:64.062720px;}
._8{width:66.281760px;}
._b{width:67.389120px;}
._3a{width:77.709600px;}
._2b{width:78.969600px;}
._35{width:80.303328px;}
._2c{width:93.160800px;}
._3f{width:94.257504px;}
._32{width:100.242144px;}
._3c{width:110.757600px;}
._2a{width:113.112000px;}
._38{width:116.272800px;}
._41{width:126.993600px;}
._33{width:133.682400px;}
._2d{width:147.607200px;}
._39{width:182.008800px;}
._31{width:207.982944px;}
._36{width:215.935200px;}
._44{width:238.320000px;}
._27{width:266.796000px;}
._17{width:462.496320px;}
._16{width:560.023200px;}
._4{width:968.638032px;}
._1{width:992.532096px;}
._2{width:1347.131520px;}
._21{width:2669.759712px;}
.fc1{color:rgb(51,51,51);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:36.000000px;}
.fs5{font-size:38.880000px;}
.fs4{font-size:47.520000px;}
.fs0{font-size:60.480000px;}
.fs6{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:96.480000px;}
.y0{bottom:0.000000px;}
.y3b{bottom:4.860000px;}
.y71{bottom:5.580000px;}
.y6f{bottom:14.940000px;}
.y7d{bottom:15.720000px;}
.y7b{bottom:15.840000px;}
.y79{bottom:15.960000px;}
.y77{bottom:16.080000px;}
.y75{bottom:16.200000px;}
.y73{bottom:16.320000px;}
.y70{bottom:24.660000px;}
.y4{bottom:53.280000px;}
.y3a{bottom:58.500000px;}
.y97{bottom:113.040000px;}
.y38{bottom:114.120000px;}
.y6d{bottom:126.000000px;}
.yb6{bottom:127.440000px;}
.y96{bottom:133.560000px;}
.y37{bottom:135.000000px;}
.y6c{bottom:146.520000px;}
.y94{bottom:147.240000px;}
.yb5{bottom:147.960000px;}
.y95{bottom:150.120000px;}
.y36{bottom:155.520000px;}
.y6b{bottom:167.400000px;}
.y93{bottom:168.120000px;}
.yb4{bottom:168.840000px;}
.y35{bottom:176.400000px;}
.y6a{bottom:187.920000px;}
.y92{bottom:188.640000px;}
.yb3{bottom:189.360000px;}
.y34{bottom:196.920000px;}
.y69{bottom:208.800000px;}
.y91{bottom:209.520000px;}
.yb2{bottom:210.240000px;}
.y33{bottom:217.800000px;}
.y68{bottom:229.320000px;}
.y90{bottom:230.040000px;}
.yb1{bottom:230.760000px;}
.y32{bottom:238.320000px;}
.y67{bottom:250.200000px;}
.y8f{bottom:250.920000px;}
.yb0{bottom:251.640000px;}
.y31{bottom:258.840000px;}
.y66{bottom:270.720000px;}
.y8e{bottom:271.440000px;}
.yaf{bottom:272.160000px;}
.y30{bottom:279.720000px;}
.y65{bottom:291.240000px;}
.y8d{bottom:292.320000px;}
.yae{bottom:293.040000px;}
.y2f{bottom:300.240000px;}
.y64{bottom:312.120000px;}
.y8c{bottom:312.840000px;}
.yad{bottom:313.560000px;}
.y2e{bottom:321.120000px;}
.y63{bottom:332.640000px;}
.y8b{bottom:333.720000px;}
.yac{bottom:334.440000px;}
.y2d{bottom:341.640000px;}
.y62{bottom:353.520000px;}
.y8a{bottom:354.240000px;}
.yab{bottom:354.960000px;}
.y2c{bottom:362.520000px;}
.y61{bottom:374.040000px;}
.y89{bottom:375.120000px;}
.yaa{bottom:375.840000px;}
.y2b{bottom:383.040000px;}
.y60{bottom:394.920000px;}
.y88{bottom:395.640000px;}
.ya9{bottom:396.360000px;}
.y2a{bottom:403.920000px;}
.y5f{bottom:415.440000px;}
.y87{bottom:416.520000px;}
.ya8{bottom:417.240000px;}
.y29{bottom:424.440000px;}
.y5e{bottom:436.320000px;}
.y86{bottom:437.040000px;}
.ya7{bottom:437.760000px;}
.y28{bottom:445.320000px;}
.y5d{bottom:456.840000px;}
.y85{bottom:457.920000px;}
.ya6{bottom:458.640000px;}
.y27{bottom:465.840000px;}
.y5c{bottom:477.720000px;}
.y84{bottom:478.440000px;}
.ya5{bottom:479.160000px;}
.y26{bottom:486.720000px;}
.y5b{bottom:498.240000px;}
.ya4{bottom:500.040000px;}
.y25{bottom:507.240000px;}
.y83{bottom:515.520000px;}
.y5a{bottom:519.120000px;}
.ya3{bottom:520.560000px;}
.y24{bottom:528.120000px;}
.y82{bottom:532.800000px;}
.y59{bottom:539.640000px;}
.ya2{bottom:541.440000px;}
.y23{bottom:548.640000px;}
.y81{bottom:550.080000px;}
.y58{bottom:560.520000px;}
.ya1{bottom:561.960000px;}
.y80{bottom:567.360000px;}
.y22{bottom:569.520000px;}
.y57{bottom:581.040000px;}
.ya0{bottom:582.480000px;}
.y7f{bottom:584.640000px;}
.y21{bottom:590.040000px;}
.y56{bottom:601.920000px;}
.y9f{bottom:603.360000px;}
.y20{bottom:610.920000px;}
.y7e{bottom:619.200000px;}
.y55{bottom:622.440000px;}
.y9e{bottom:623.880000px;}
.y1f{bottom:631.440000px;}
.y7c{bottom:633.000000px;}
.y54{bottom:643.320000px;}
.y9d{bottom:644.760000px;}
.y1e{bottom:652.320000px;}
.y53{bottom:663.840000px;}
.y9c{bottom:665.280000px;}
.y1d{bottom:672.840000px;}
.y7a{bottom:675.000000px;}
.y52{bottom:684.720000px;}
.y9b{bottom:686.160000px;}
.y1c{bottom:698.040000px;}
.y51{bottom:705.240000px;}
.y9a{bottom:706.680000px;}
.y1b{bottom:709.920000px;}
.y78{bottom:717.000000px;}
.y50{bottom:726.120000px;}
.y1a{bottom:727.200000px;}
.y99{bottom:727.560000px;}
.y98{bottom:744.120000px;}
.y19{bottom:744.480000px;}
.y4f{bottom:746.640000px;}
.y76{bottom:759.000000px;}
.y18{bottom:761.760000px;}
.y4e{bottom:767.520000px;}
.y17{bottom:784.440000px;}
.y4d{bottom:788.040000px;}
.y16{bottom:796.320000px;}
.y74{bottom:801.000000px;}
.y4c{bottom:808.920000px;}
.y15{bottom:814.320000px;}
.y4b{bottom:829.440000px;}
.y14{bottom:835.200000px;}
.y72{bottom:843.000000px;}
.y4a{bottom:850.320000px;}
.y13{bottom:855.720000px;}
.y49{bottom:870.840000px;}
.y12{bottom:877.320000px;}
.y6e{bottom:886.500000px;}
.y48{bottom:891.720000px;}
.y11{bottom:905.040000px;}
.y47{bottom:912.240000px;}
.y10{bottom:930.960000px;}
.y46{bottom:933.120000px;}
.yf{bottom:948.240000px;}
.y45{bottom:953.640000px;}
.ye{bottom:965.160000px;}
.y44{bottom:974.520000px;}
.yd{bottom:982.440000px;}
.y43{bottom:995.040000px;}
.yc{bottom:999.720000px;}
.y42{bottom:1015.920000px;}
.yb{bottom:1019.160000px;}
.ya{bottom:1036.080000px;}
.y41{bottom:1036.440000px;}
.y9{bottom:1050.480000px;}
.y40{bottom:1057.320000px;}
.y8{bottom:1069.920000px;}
.y3f{bottom:1077.840000px;}
.y7{bottom:1090.080000px;}
.y3e{bottom:1098.720000px;}
.y6{bottom:1109.160000px;}
.y3d{bottom:1119.240000px;}
.y5{bottom:1137.600000px;}
.y3c{bottom:1140.120000px;}
.y3{bottom:1160.280000px;}
.y2{bottom:1177.560000px;}
.y1{bottom:1194.840000px;}
.y39{bottom:1195.920000px;}
.hc{height:19.500000px;}
.ha{height:29.223281px;}
.h7{height:32.994844px;}
.h3{height:40.310156px;}
.h9{height:40.989375px;}
.h2{height:41.993438px;}
.hd{height:42.000000px;}
.h10{height:43.500000px;}
.h11{height:44.763750px;}
.hf{height:44.860781px;}
.he{height:44.893125px;}
.hb{height:49.992188px;}
.h6{height:50.823281px;}
.h4{height:59.800781px;}
.h8{height:61.699219px;}
.h5{height:65.340703px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:24.000000px;}
.w7{width:75.000000px;}
.w5{width:84.000000px;}
.w8{width:96.000000px;}
.w4{width:97.500000px;}
.w3{width:106.500000px;}
.w6{width:118.500000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.xb{left:2.219964px;}
.xd{left:7.111092px;}
.x15{left:8.172720px;}
.x19{left:9.732840px;}
.x10{left:11.351088px;}
.x13{left:13.869960px;}
.x1b{left:15.762480px;}
.x18{left:16.857756px;}
.x1f{left:17.982960px;}
.x11{left:20.994876px;}
.x1d{left:24.012600px;}
.xe{left:25.472172px;}
.x1a{left:27.440280px;}
.x1e{left:29.585064px;}
.x1c{left:31.565160px;}
.x20{left:32.947440px;}
.x5{left:106.200072px;}
.x22{left:138.150144px;}
.x9{left:191.250000px;}
.x4{left:194.849856px;}
.xc{left:213.000000px;}
.x8{left:216.961668px;}
.x1{left:318.303576px;}
.xf{left:319.500000px;}
.x6{left:336.724380px;}
.x2{left:348.519636px;}
.x3{left:363.303720px;}
.x7{left:387.861480px;}
.x12{left:417.000000px;}
.xa{left:430.500000px;}
.x14{left:499.500000px;}
.x16{left:616.500000px;}
.x21{left:657.000000px;}
.x17{left:691.500000px;}
@media print{
.v2{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.760000pt;}
.ls11{letter-spacing:-0.411648pt;}
.lsb{letter-spacing:-0.370944pt;}
.ls19{letter-spacing:-0.354816pt;}
.ls10{letter-spacing:-0.338688pt;}
.lsf{letter-spacing:-0.301056pt;}
.ls1b{letter-spacing:-0.291584pt;}
.ls16{letter-spacing:-0.284928pt;}
.ls1a{letter-spacing:-0.274432pt;}
.ls17{letter-spacing:-0.231168pt;}
.ls1e{letter-spacing:-0.225792pt;}
.lsd{letter-spacing:-0.215040pt;}
.ls25{letter-spacing:-0.198912pt;}
.ls22{letter-spacing:-0.176640pt;}
.ls26{letter-spacing:-0.155904pt;}
.ls20{letter-spacing:-0.141312pt;}
.lse{letter-spacing:-0.139776pt;}
.ls1c{letter-spacing:-0.129024pt;}
.ls18{letter-spacing:-0.107520pt;}
.ls23{letter-spacing:-0.105984pt;}
.ls21{letter-spacing:-0.070656pt;}
.ls24{letter-spacing:-0.052992pt;}
.ls1d{letter-spacing:-0.012800pt;}
.lsc{letter-spacing:0.000000pt;}
.ls28{letter-spacing:0.000512pt;}
.lsa{letter-spacing:0.012800pt;}
.ls9{letter-spacing:0.053376pt;}
.ls3{letter-spacing:0.106240pt;}
.ls6{letter-spacing:0.106624pt;}
.ls0{letter-spacing:0.106752pt;}
.ls1{letter-spacing:0.107520pt;}
.ls15{letter-spacing:0.143616pt;}
.ls13{letter-spacing:0.181632pt;}
.ls7{letter-spacing:0.190080pt;}
.ls2{letter-spacing:0.198528pt;}
.ls4{letter-spacing:0.211200pt;}
.ls8{letter-spacing:0.213248pt;}
.ls5{letter-spacing:0.213376pt;}
.ls14{letter-spacing:0.215424pt;}
.ls12{letter-spacing:0.253440pt;}
.ls1f{letter-spacing:3.454592pt;}
.ls27{letter-spacing:4.008960pt;}
.ls29{letter-spacing:211.901440pt;}
.wsb{word-spacing:-21.440000pt;}
.wsc{word-spacing:-21.148416pt;}
.wsf{word-spacing:-16.012800pt;}
.wse{word-spacing:-16.000000pt;}
.ws10{word-spacing:-15.987200pt;}
.ws17{word-spacing:-14.720000pt;}
.ws18{word-spacing:-14.667008pt;}
.ws15{word-spacing:-14.649344pt;}
.ws16{word-spacing:-14.614016pt;}
.ws14{word-spacing:-14.578688pt;}
.ws1{word-spacing:-13.440000pt;}
.wsd{word-spacing:-13.310976pt;}
.ws12{word-spacing:-13.300224pt;}
.ws0{word-spacing:-13.224960pt;}
.wsa{word-spacing:-13.208832pt;}
.ws8{word-spacing:-13.155072pt;}
.ws9{word-spacing:-13.138944pt;}
.ws2{word-spacing:-13.101312pt;}
.ws13{word-spacing:-11.923968pt;}
.ws6{word-spacing:-10.775424pt;}
.ws5{word-spacing:-10.771200pt;}
.ws4{word-spacing:-10.758528pt;}
.ws7{word-spacing:-10.750080pt;}
.ws3{word-spacing:-10.741632pt;}
.ws11{word-spacing:0.000000pt;}
._9{margin-left:-9.605120pt;}
._c{margin-left:-7.699968pt;}
._6{margin-left:-4.139520pt;}
._5{margin-left:-3.166976pt;}
._7{margin-left:-2.099200pt;}
._3{margin-left:-0.928128pt;}
._0{width:0.913920pt;}
._14{width:2.400000pt;}
._11{width:4.038400pt;}
._d{width:5.320832pt;}
._12{width:6.313216pt;}
._e{width:7.902720pt;}
._15{width:8.880640pt;}
._1a{width:9.789824pt;}
._10{width:11.364992pt;}
._1b{width:12.535424pt;}
._18{width:13.838080pt;}
._f{width:15.040000pt;}
._19{width:16.895360pt;}
._1d{width:17.855744pt;}
._1c{width:18.854400pt;}
._23{width:19.750656pt;}
._1e{width:21.126400pt;}
._26{width:22.461696pt;}
._22{width:23.435776pt;}
._1f{width:25.354496pt;}
._20{width:26.453632pt;}
._24{width:27.583488pt;}
._13{width:29.088000pt;}
._25{width:30.086400pt;}
._34{width:31.264000pt;}
._43{width:34.515200pt;}
._30{width:37.318400pt;}
._40{width:39.072000pt;}
._3e{width:41.804800pt;}
._2f{width:43.552000pt;}
._28{width:45.824000pt;}
._29{width:47.372800pt;}
._42{width:49.241600pt;}
._3d{width:50.229248pt;}
._37{width:51.315200pt;}
._2e{width:53.145600pt;}
._3b{width:55.692800pt;}
._a{width:56.944640pt;}
._8{width:58.917120pt;}
._b{width:59.901440pt;}
._3a{width:69.075200pt;}
._2b{width:70.195200pt;}
._35{width:71.380736pt;}
._2c{width:82.809600pt;}
._3f{width:83.784448pt;}
._32{width:89.104128pt;}
._3c{width:98.451200pt;}
._2a{width:100.544000pt;}
._38{width:103.353600pt;}
._41{width:112.883200pt;}
._33{width:118.828800pt;}
._2d{width:131.206400pt;}
._39{width:161.785600pt;}
._31{width:184.873728pt;}
._36{width:191.942400pt;}
._44{width:211.840000pt;}
._27{width:237.152000pt;}
._17{width:411.107840pt;}
._16{width:497.798400pt;}
._4{width:861.011584pt;}
._1{width:882.250752pt;}
._2{width:1197.450240pt;}
._21{width:2373.119744pt;}
.fs3{font-size:32.000000pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:42.240000pt;}
.fs0{font-size:53.760000pt;}
.fs6{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:85.760000pt;}
.y0{bottom:0.000000pt;}
.y3b{bottom:4.320000pt;}
.y71{bottom:4.960000pt;}
.y6f{bottom:13.280000pt;}
.y7d{bottom:13.973333pt;}
.y7b{bottom:14.080000pt;}
.y79{bottom:14.186667pt;}
.y77{bottom:14.293333pt;}
.y75{bottom:14.400000pt;}
.y73{bottom:14.506667pt;}
.y70{bottom:21.920000pt;}
.y4{bottom:47.360000pt;}
.y3a{bottom:52.000000pt;}
.y97{bottom:100.480000pt;}
.y38{bottom:101.440000pt;}
.y6d{bottom:112.000000pt;}
.yb6{bottom:113.280000pt;}
.y96{bottom:118.720000pt;}
.y37{bottom:120.000000pt;}
.y6c{bottom:130.240000pt;}
.y94{bottom:130.880000pt;}
.yb5{bottom:131.520000pt;}
.y95{bottom:133.440000pt;}
.y36{bottom:138.240000pt;}
.y6b{bottom:148.800000pt;}
.y93{bottom:149.440000pt;}
.yb4{bottom:150.080000pt;}
.y35{bottom:156.800000pt;}
.y6a{bottom:167.040000pt;}
.y92{bottom:167.680000pt;}
.yb3{bottom:168.320000pt;}
.y34{bottom:175.040000pt;}
.y69{bottom:185.600000pt;}
.y91{bottom:186.240000pt;}
.yb2{bottom:186.880000pt;}
.y33{bottom:193.600000pt;}
.y68{bottom:203.840000pt;}
.y90{bottom:204.480000pt;}
.yb1{bottom:205.120000pt;}
.y32{bottom:211.840000pt;}
.y67{bottom:222.400000pt;}
.y8f{bottom:223.040000pt;}
.yb0{bottom:223.680000pt;}
.y31{bottom:230.080000pt;}
.y66{bottom:240.640000pt;}
.y8e{bottom:241.280000pt;}
.yaf{bottom:241.920000pt;}
.y30{bottom:248.640000pt;}
.y65{bottom:258.880000pt;}
.y8d{bottom:259.840000pt;}
.yae{bottom:260.480000pt;}
.y2f{bottom:266.880000pt;}
.y64{bottom:277.440000pt;}
.y8c{bottom:278.080000pt;}
.yad{bottom:278.720000pt;}
.y2e{bottom:285.440000pt;}
.y63{bottom:295.680000pt;}
.y8b{bottom:296.640000pt;}
.yac{bottom:297.280000pt;}
.y2d{bottom:303.680000pt;}
.y62{bottom:314.240000pt;}
.y8a{bottom:314.880000pt;}
.yab{bottom:315.520000pt;}
.y2c{bottom:322.240000pt;}
.y61{bottom:332.480000pt;}
.y89{bottom:333.440000pt;}
.yaa{bottom:334.080000pt;}
.y2b{bottom:340.480000pt;}
.y60{bottom:351.040000pt;}
.y88{bottom:351.680000pt;}
.ya9{bottom:352.320000pt;}
.y2a{bottom:359.040000pt;}
.y5f{bottom:369.280000pt;}
.y87{bottom:370.240000pt;}
.ya8{bottom:370.880000pt;}
.y29{bottom:377.280000pt;}
.y5e{bottom:387.840000pt;}
.y86{bottom:388.480000pt;}
.ya7{bottom:389.120000pt;}
.y28{bottom:395.840000pt;}
.y5d{bottom:406.080000pt;}
.y85{bottom:407.040000pt;}
.ya6{bottom:407.680000pt;}
.y27{bottom:414.080000pt;}
.y5c{bottom:424.640000pt;}
.y84{bottom:425.280000pt;}
.ya5{bottom:425.920000pt;}
.y26{bottom:432.640000pt;}
.y5b{bottom:442.880000pt;}
.ya4{bottom:444.480000pt;}
.y25{bottom:450.880000pt;}
.y83{bottom:458.240000pt;}
.y5a{bottom:461.440000pt;}
.ya3{bottom:462.720000pt;}
.y24{bottom:469.440000pt;}
.y82{bottom:473.600000pt;}
.y59{bottom:479.680000pt;}
.ya2{bottom:481.280000pt;}
.y23{bottom:487.680000pt;}
.y81{bottom:488.960000pt;}
.y58{bottom:498.240000pt;}
.ya1{bottom:499.520000pt;}
.y80{bottom:504.320000pt;}
.y22{bottom:506.240000pt;}
.y57{bottom:516.480000pt;}
.ya0{bottom:517.760000pt;}
.y7f{bottom:519.680000pt;}
.y21{bottom:524.480000pt;}
.y56{bottom:535.040000pt;}
.y9f{bottom:536.320000pt;}
.y20{bottom:543.040000pt;}
.y7e{bottom:550.400000pt;}
.y55{bottom:553.280000pt;}
.y9e{bottom:554.560000pt;}
.y1f{bottom:561.280000pt;}
.y7c{bottom:562.666667pt;}
.y54{bottom:571.840000pt;}
.y9d{bottom:573.120000pt;}
.y1e{bottom:579.840000pt;}
.y53{bottom:590.080000pt;}
.y9c{bottom:591.360000pt;}
.y1d{bottom:598.080000pt;}
.y7a{bottom:600.000000pt;}
.y52{bottom:608.640000pt;}
.y9b{bottom:609.920000pt;}
.y1c{bottom:620.480000pt;}
.y51{bottom:626.880000pt;}
.y9a{bottom:628.160000pt;}
.y1b{bottom:631.040000pt;}
.y78{bottom:637.333333pt;}
.y50{bottom:645.440000pt;}
.y1a{bottom:646.400000pt;}
.y99{bottom:646.720000pt;}
.y98{bottom:661.440000pt;}
.y19{bottom:661.760000pt;}
.y4f{bottom:663.680000pt;}
.y76{bottom:674.666667pt;}
.y18{bottom:677.120000pt;}
.y4e{bottom:682.240000pt;}
.y17{bottom:697.280000pt;}
.y4d{bottom:700.480000pt;}
.y16{bottom:707.840000pt;}
.y74{bottom:712.000000pt;}
.y4c{bottom:719.040000pt;}
.y15{bottom:723.840000pt;}
.y4b{bottom:737.280000pt;}
.y14{bottom:742.400000pt;}
.y72{bottom:749.333333pt;}
.y4a{bottom:755.840000pt;}
.y13{bottom:760.640000pt;}
.y49{bottom:774.080000pt;}
.y12{bottom:779.840000pt;}
.y6e{bottom:788.000000pt;}
.y48{bottom:792.640000pt;}
.y11{bottom:804.480000pt;}
.y47{bottom:810.880000pt;}
.y10{bottom:827.520000pt;}
.y46{bottom:829.440000pt;}
.yf{bottom:842.880000pt;}
.y45{bottom:847.680000pt;}
.ye{bottom:857.920000pt;}
.y44{bottom:866.240000pt;}
.yd{bottom:873.280000pt;}
.y43{bottom:884.480000pt;}
.yc{bottom:888.640000pt;}
.y42{bottom:903.040000pt;}
.yb{bottom:905.920000pt;}
.ya{bottom:920.960000pt;}
.y41{bottom:921.280000pt;}
.y9{bottom:933.760000pt;}
.y40{bottom:939.840000pt;}
.y8{bottom:951.040000pt;}
.y3f{bottom:958.080000pt;}
.y7{bottom:968.960000pt;}
.y3e{bottom:976.640000pt;}
.y6{bottom:985.920000pt;}
.y3d{bottom:994.880000pt;}
.y5{bottom:1011.200000pt;}
.y3c{bottom:1013.440000pt;}
.y3{bottom:1031.360000pt;}
.y2{bottom:1046.720000pt;}
.y1{bottom:1062.080000pt;}
.y39{bottom:1063.040000pt;}
.hc{height:17.333333pt;}
.ha{height:25.976250pt;}
.h7{height:29.328750pt;}
.h3{height:35.831250pt;}
.h9{height:36.435000pt;}
.h2{height:37.327500pt;}
.hd{height:37.333333pt;}
.h10{height:38.666667pt;}
.h11{height:39.790000pt;}
.hf{height:39.876250pt;}
.he{height:39.905000pt;}
.hb{height:44.437500pt;}
.h6{height:45.176250pt;}
.h4{height:53.156250pt;}
.h8{height:54.843750pt;}
.h5{height:58.080625pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:21.333333pt;}
.w7{width:66.666667pt;}
.w5{width:74.666667pt;}
.w8{width:85.333333pt;}
.w4{width:86.666667pt;}
.w3{width:94.666667pt;}
.w6{width:105.333333pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.xb{left:1.973301pt;}
.xd{left:6.320971pt;}
.x15{left:7.264640pt;}
.x19{left:8.651413pt;}
.x10{left:10.089856pt;}
.x13{left:12.328853pt;}
.x1b{left:14.011093pt;}
.x18{left:14.984672pt;}
.x1f{left:15.984853pt;}
.x11{left:18.662112pt;}
.x1d{left:21.344533pt;}
.xe{left:22.641931pt;}
.x1a{left:24.391360pt;}
.x1e{left:26.297835pt;}
.x1c{left:28.057920pt;}
.x20{left:29.286613pt;}
.x5{left:94.400064pt;}
.x22{left:122.800128pt;}
.x9{left:170.000000pt;}
.x4{left:173.199872pt;}
.xc{left:189.333333pt;}
.x8{left:192.854816pt;}
.x1{left:282.936512pt;}
.xf{left:284.000000pt;}
.x6{left:299.310560pt;}
.x2{left:309.795232pt;}
.x3{left:322.936640pt;}
.x7{left:344.765760pt;}
.x12{left:370.666667pt;}
.xa{left:382.666667pt;}
.x14{left:444.000000pt;}
.x16{left:548.000000pt;}
.x21{left:584.000000pt;}
.x17{left:614.666667pt;}
}




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