
    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_f016f150a14a7f88b9a95e67.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.906000;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_b2d12dce000af4eed1126544.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.919000;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_f177d81662a7b99193b10f96.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000000;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_2dbacbf28d153411fbdbb219.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.901000;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_36e5889806b8f8bb71321b0e.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;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_6253dba7f6dcde70121e0a7f.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.000000;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_202e61b01b526821fda0e995.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.693000;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_2ac41d2c6aa622d7400a1df9.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.414000;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_22f448cfaf4ea912cb92ab29.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.000000;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_7a3b5fca3e92a8bf429d4166.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.921000;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_2c895b3126eb28e4204831fc.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.908000;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_8eee784a02dc5ea23f6b6030.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.686000;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_3eccb720cf425866b4d257ae.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.520000;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_2c948b44529d7e7b526b2772.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.482000;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;}
.fff{font-family:sans-serif;visibility:hidden;}
.ff10{font-family:sans-serif;visibility:hidden;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.v2{vertical-align:-26.034000px;}
.vd{vertical-align:-17.217421px;}
.v3{vertical-align:-9.816000px;}
.v6{vertical-align:-5.976000px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:9.720000px;}
.v8{vertical-align:15.702000px;}
.v7{vertical-align:16.878000px;}
.v4{vertical-align:23.754000px;}
.v1{vertical-align:26.028000px;}
.v5{vertical-align:33.180000px;}
.vb{vertical-align:42.900000px;}
.vc{vertical-align:44.280000px;}
.va{vertical-align:48.876000px;}
.ls13{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.001235px;}
.ls2b{letter-spacing:0.001999px;}
.ls6{letter-spacing:0.004270px;}
.ls8{letter-spacing:0.004364px;}
.ls9{letter-spacing:0.004528px;}
.ls5{letter-spacing:0.005591px;}
.ls24{letter-spacing:0.015628px;}
.ls1e{letter-spacing:0.016645px;}
.ls15{letter-spacing:0.017397px;}
.ls17{letter-spacing:0.017801px;}
.ls2a{letter-spacing:0.021023px;}
.ls2d{letter-spacing:0.499165px;}
.ls2e{letter-spacing:1.237072px;}
.ls1{letter-spacing:2.984915px;}
.ls20{letter-spacing:2.986767px;}
.lsb{letter-spacing:2.988532px;}
.ls0{letter-spacing:2.990915px;}
.ls16{letter-spacing:2.992767px;}
.ls29{letter-spacing:2.995289px;}
.ls27{letter-spacing:3.730912px;}
.ls14{letter-spacing:4.189094px;}
.ls1b{letter-spacing:5.105459px;}
.ls1a{letter-spacing:5.170913px;}
.ls21{letter-spacing:5.344571px;}
.ls1f{letter-spacing:7.172706px;}
.ls1c{letter-spacing:9.098189px;}
.lsf{letter-spacing:13.810921px;}
.ls22{letter-spacing:14.530921px;}
.ls1d{letter-spacing:18.196379px;}
.lsc{letter-spacing:18.399053px;}
.lsd{letter-spacing:18.452851px;}
.ls11{letter-spacing:20.029108px;}
.ls10{letter-spacing:20.094562px;}
.ls7{letter-spacing:20.412780px;}
.ls18{letter-spacing:21.170915px;}
.ls28{letter-spacing:21.175289px;}
.ls23{letter-spacing:22.320019px;}
.ls2c{letter-spacing:22.843655px;}
.ls4{letter-spacing:24.800915px;}
.ls3{letter-spacing:24.806915px;}
.ls2{letter-spacing:25.046915px;}
.ls26{letter-spacing:25.200021px;}
.ls19{letter-spacing:27.294568px;}
.ls25{letter-spacing:27.568571px;}
.ls12{letter-spacing:33.071971px;}
.lse{letter-spacing:196.944532px;}
.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;}
}
.ws3f{word-spacing:-42.637126px;}
.ws16{word-spacing:-40.847036px;}
.ws15{word-spacing:-40.841036px;}
.ws12{word-spacing:-36.071827px;}
.wsd{word-spacing:-18.183288px;}
.ws25{word-spacing:-4.306913px;}
.ws44{word-spacing:-3.652367px;}
.ws3e{word-spacing:-1.296001px;}
.ws52{word-spacing:-0.772364px;}
.ws55{word-spacing:-0.641455px;}
.ws4e{word-spacing:-0.379637px;}
.ws36{word-spacing:-0.086077px;}
.ws10{word-spacing:-0.053798px;}
.ws13{word-spacing:-0.047821px;}
.ws11{word-spacing:-0.035866px;}
.ws34{word-spacing:0.000000px;}
.ws4d{word-spacing:0.209455px;}
.ws32{word-spacing:0.405819px;}
.ws50{word-spacing:0.733092px;}
.ws51{word-spacing:0.798546px;}
.ws42{word-spacing:1.060365px;}
.ws4b{word-spacing:1.584001px;}
.ws43{word-spacing:1.780365px;}
.ws26{word-spacing:1.845820px;}
.ws6{word-spacing:2.238547px;}
.ws2f{word-spacing:2.369457px;}
.ws2c{word-spacing:2.762184px;}
.ws4c{word-spacing:3.024003px;}
.ws4{word-spacing:3.154912px;}
.ws24{word-spacing:3.285821px;}
.ws7{word-spacing:3.613094px;}
.wse{word-spacing:3.678549px;}
.ws41{word-spacing:3.744003px;}
.wsc{word-spacing:3.874912px;}
.ws4f{word-spacing:3.940367px;}
.ws45{word-spacing:4.005822px;}
.ws48{word-spacing:4.660368px;}
.ws3c{word-spacing:4.725822px;}
.ws30{word-spacing:4.856731px;}
.ws3d{word-spacing:4.987641px;}
.ws38{word-spacing:5.053095px;}
.ws4a{word-spacing:5.184004px;}
.ws2b{word-spacing:5.707641px;}
.ws33{word-spacing:5.838550px;}
.ws31{word-spacing:6.754915px;}
.ws46{word-spacing:7.016733px;}
.ws2e{word-spacing:7.147642px;}
.ws2d{word-spacing:7.409461px;}
.ws37{word-spacing:7.474915px;}
.ws39{word-spacing:7.933098px;}
.ws3a{word-spacing:8.914917px;}
.ws3b{word-spacing:8.980371px;}
.ws8{word-spacing:9.569463px;}
.wsa{word-spacing:9.634917px;}
.ws5{word-spacing:10.944009px;}
.ws2a{word-spacing:11.271282px;}
.ws47{word-spacing:11.402191px;}
.ws28{word-spacing:11.860374px;}
.ws23{word-spacing:11.925828px;}
.ws49{word-spacing:11.991283px;}
.ws29{word-spacing:13.954921px;}
.ws18{word-spacing:16.880672px;}
.ws1b{word-spacing:18.345254px;}
.ws40{word-spacing:19.852735px;}
.ws1a{word-spacing:19.885198px;}
.ws19{word-spacing:19.891198px;}
.ws1f{word-spacing:20.335795px;}
.ws17{word-spacing:21.517031px;}
.ws1{word-spacing:23.312640px;}
.ws14{word-spacing:23.362625px;}
.ws2{word-spacing:23.384371px;}
.ws35{word-spacing:28.405476px;}
.ws9{word-spacing:30.743528px;}
.wsb{word-spacing:30.744304px;}
.ws0{word-spacing:31.091012px;}
.ws3{word-spacing:32.192873px;}
.ws27{word-spacing:33.018010px;}
.ws20{word-spacing:34.161984px;}
.ws1c{word-spacing:48.041971px;}
.ws1d{word-spacing:71.551872px;}
.ws21{word-spacing:85.378061px;}
.ws22{word-spacing:90.327514px;}
.ws54{word-spacing:124.313193px;}
.wsf{word-spacing:159.124393px;}
.ws1e{word-spacing:165.645274px;}
.ws53{word-spacing:172.346336px;}
._1{margin-left:-8.160100px;}
._4{margin-left:-6.638294px;}
._2{margin-left:-5.371205px;}
._2a{margin-left:-3.794354px;}
._0{margin-left:-2.685602px;}
._6{margin-left:-1.116151px;}
._5{width:1.936742px;}
._b{width:3.066509px;}
._30{width:4.186124px;}
._23{width:18.452851px;}
._2c{width:21.667436px;}
._2f{width:23.985243px;}
._31{width:25.249801px;}
._2b{width:26.865176px;}
._33{width:27.949114px;}
._9{width:29.098389px;}
._a{width:30.596158px;}
._29{width:32.076682px;}
._e{width:34.215782px;}
._f{width:37.336090px;}
._2d{width:38.749144px;}
._d{width:40.026010px;}
._3{width:42.040007px;}
._10{width:44.291215px;}
._2e{width:45.977989px;}
._19{width:48.041971px;}
._8{width:51.120043px;}
._20{width:52.290732px;}
._32{width:54.818287px;}
._21{width:56.380723px;}
._26{width:58.344569px;}
._18{width:63.428314px;}
._11{width:64.504282px;}
._1b{width:66.064435px;}
._1c{width:67.621596px;}
._22{width:68.754355px;}
._1a{width:72.681638px;}
._12{width:77.093107px;}
._13{width:82.311552px;}
._7{width:96.836850px;}
._27{width:99.365645px;}
._1d{width:100.729715px;}
._14{width:109.802534px;}
._15{width:119.217254px;}
._24{width:134.549798px;}
._34{width:138.611985px;}
._16{width:147.192422px;}
._1f{width:157.414118px;}
._c{width:162.840778px;}
._28{width:185.066496px;}
._1e{width:196.041370px;}
._17{width:209.652365px;}
._25{width:232.678080px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:31.483284px;}
.fs6{font-size:35.865600px;}
.fs7{font-size:44.976120px;}
.fs2{font-size:47.820600px;}
.fs8{font-size:51.401280px;}
.fs5{font-size:53.798400px;}
.fs4{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs3{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y4b{bottom:11.321835px;}
.y4a{bottom:26.631786px;}
.y4c{bottom:36.526784px;}
.y26{bottom:40.207500px;}
.y58{bottom:44.191799px;}
.y50{bottom:50.422447px;}
.y53{bottom:72.009730px;}
.y4d{bottom:89.971314px;}
.y54{bottom:107.492676px;}
.y55{bottom:142.975622px;}
.y4e{bottom:143.415845px;}
.y25{bottom:165.360000px;}
.y56{bottom:178.458568px;}
.y24{bottom:185.683500px;}
.y4f{bottom:196.860375px;}
.y51{bottom:200.767928px;}
.y52{bottom:205.072283px;}
.y23{bottom:206.007000px;}
.y57{bottom:213.941514px;}
.y22{bottom:226.330500px;}
.y21{bottom:246.654000px;}
.y20{bottom:266.979000px;}
.y1f{bottom:287.302500px;}
.y1e{bottom:307.626000px;}
.y1d{bottom:327.949500px;}
.y1c{bottom:348.273000px;}
.y1b{bottom:368.598000px;}
.y1a{bottom:388.921500px;}
.y19{bottom:409.245000px;}
.y18{bottom:429.568500px;}
.y17{bottom:449.892000px;}
.y16{bottom:494.103000px;}
.y15{bottom:513.829500px;}
.y14{bottom:533.554500px;}
.y13{bottom:553.281000px;}
.y12{bottom:573.007500px;}
.y10{bottom:599.962500px;}
.yf{bottom:608.106000px;}
.y40{bottom:612.085500px;}
.y11{bottom:616.401000px;}
.y3f{bottom:632.409000px;}
.ye{bottom:638.472000px;}
.y3e{bottom:652.732500px;}
.yd{bottom:658.795500px;}
.y3d{bottom:673.056000px;}
.y5a{bottom:674.550000px;}
.yc{bottom:679.120500px;}
.y59{bottom:694.873500px;}
.y3c{bottom:703.093500px;}
.y3b{bottom:723.418500px;}
.yb{bottom:727.450500px;}
.y49{bottom:730.141500px;}
.y3a{bottom:743.742000px;}
.ya{bottom:747.775500px;}
.y39{bottom:764.065500px;}
.y9{bottom:768.099000px;}
.y38{bottom:784.389000px;}
.y8{bottom:788.422500px;}
.y36{bottom:818.685000px;}
.y7{bottom:824.950500px;}
.y35{bottom:829.911000px;}
.y37{bottom:840.981000px;}
.y34{bottom:874.368000px;}
.y33{bottom:894.691500px;}
.y32{bottom:915.015000px;}
.y6{bottom:927.609000px;}
.y31{bottom:935.338500px;}
.y5{bottom:946.207500px;}
.y30{bottom:955.663500px;}
.y2f{bottom:975.987000px;}
.y4{bottom:977.821500px;}
.y48{bottom:982.561500px;}
.y2e{bottom:996.310500px;}
.y47{bottom:1002.886500px;}
.y3{bottom:1006.954500px;}
.y2d{bottom:1016.634000px;}
.y46{bottom:1023.210000px;}
.y2c{bottom:1036.957500px;}
.y45{bottom:1043.533500px;}
.y2b{bottom:1057.282500px;}
.y2{bottom:1062.876000px;}
.y44{bottom:1063.857000px;}
.y2a{bottom:1077.606000px;}
.y43{bottom:1084.180500px;}
.y1{bottom:1095.753000px;}
.y29{bottom:1097.929500px;}
.y42{bottom:1104.505500px;}
.y41{bottom:1124.829000px;}
.y28{bottom:1134.457500px;}
.y27{bottom:1161.357000px;}
.h14{height:29.247971px;}
.h4{height:35.865450px;}
.hd{height:36.926870px;}
.ha{height:37.927872px;}
.h9{height:40.348800px;}
.he{height:40.728624px;}
.h12{height:41.782815px;}
.hb{height:46.704624px;}
.h13{height:47.751789px;}
.h7{height:49.090950px;}
.h5{height:51.216077px;}
.hf{height:59.619450px;}
.h6{height:60.254040px;}
.h3{height:61.893450px;}
.h2{height:72.511265px;}
.h8{height:73.528800px;}
.h10{height:93.370950px;}
.hc{height:103.681872px;}
.h11{height:231.305760px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:578.264400px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2b{left:17.910134px;}
.x2a{left:23.795680px;}
.x28{left:41.935463px;}
.x2c{left:65.798407px;}
.x2d{left:74.399578px;}
.x7{left:85.039500px;}
.x1{left:86.560500px;}
.x8{left:87.591000px;}
.x29{left:91.041505px;}
.x1f{left:110.443500px;}
.x21{left:121.353000px;}
.x6{left:132.343500px;}
.x2{left:147.711000px;}
.x27{left:157.321500px;}
.x9{left:173.752500px;}
.x3{left:179.179500px;}
.x4{left:193.384500px;}
.xb{left:230.506500px;}
.xa{left:234.081000px;}
.x22{left:242.608500px;}
.x5{left:277.105500px;}
.xd{left:281.634000px;}
.xc{left:282.742500px;}
.x32{left:299.128845px;}
.x31{left:305.014392px;}
.xf{left:312.352500px;}
.xe{left:316.992000px;}
.x30{left:319.320413px;}
.x2e{left:328.518933px;}
.x23{left:339.538500px;}
.x33{left:343.440614px;}
.x34{left:352.041784px;}
.x26{left:353.061000px;}
.x2f{left:362.453064px;}
.x25{left:383.037000px;}
.x24{left:387.862500px;}
.x10{left:400.063500px;}
.x11{left:424.809000px;}
.x12{left:430.009500px;}
.x20{left:442.365000px;}
.x13{left:457.495500px;}
.x14{left:463.098000px;}
.x15{left:490.989000px;}
.x16{left:497.124000px;}
.x17{left:528.108000px;}
.x18{left:543.654000px;}
.x1a{left:602.835000px;}
.x19{left:615.232500px;}
.x1c{left:660.570000px;}
.x1b{left:676.716000px;}
.x1e{left:725.406000px;}
.x1d{left:740.782500px;}
@media print{
.v2{vertical-align:-23.141333pt;}
.vd{vertical-align:-15.304374pt;}
.v3{vertical-align:-8.725333pt;}
.v6{vertical-align:-5.312000pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:8.640000pt;}
.v8{vertical-align:13.957333pt;}
.v7{vertical-align:15.002667pt;}
.v4{vertical-align:21.114667pt;}
.v1{vertical-align:23.136000pt;}
.v5{vertical-align:29.493333pt;}
.vb{vertical-align:38.133333pt;}
.vc{vertical-align:39.360000pt;}
.va{vertical-align:43.445333pt;}
.ls13{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.001097pt;}
.ls2b{letter-spacing:0.001777pt;}
.ls6{letter-spacing:0.003796pt;}
.ls8{letter-spacing:0.003879pt;}
.ls9{letter-spacing:0.004025pt;}
.ls5{letter-spacing:0.004970pt;}
.ls24{letter-spacing:0.013891pt;}
.ls1e{letter-spacing:0.014795pt;}
.ls15{letter-spacing:0.015464pt;}
.ls17{letter-spacing:0.015823pt;}
.ls2a{letter-spacing:0.018687pt;}
.ls2d{letter-spacing:0.443702pt;}
.ls2e{letter-spacing:1.099619pt;}
.ls1{letter-spacing:2.653258pt;}
.ls20{letter-spacing:2.654904pt;}
.lsb{letter-spacing:2.656473pt;}
.ls0{letter-spacing:2.658591pt;}
.ls16{letter-spacing:2.660237pt;}
.ls29{letter-spacing:2.662479pt;}
.ls27{letter-spacing:3.316366pt;}
.ls14{letter-spacing:3.723639pt;}
.ls1b{letter-spacing:4.538186pt;}
.ls1a{letter-spacing:4.596367pt;}
.ls21{letter-spacing:4.750730pt;}
.ls1f{letter-spacing:6.375739pt;}
.ls1c{letter-spacing:8.087279pt;}
.lsf{letter-spacing:12.276374pt;}
.ls22{letter-spacing:12.916374pt;}
.ls1d{letter-spacing:16.174559pt;}
.lsc{letter-spacing:16.354714pt;}
.lsd{letter-spacing:16.402534pt;}
.ls11{letter-spacing:17.803651pt;}
.ls10{letter-spacing:17.861833pt;}
.ls7{letter-spacing:18.144693pt;}
.ls18{letter-spacing:18.818591pt;}
.ls28{letter-spacing:18.822479pt;}
.ls23{letter-spacing:19.840017pt;}
.ls2c{letter-spacing:20.305471pt;}
.ls4{letter-spacing:22.045258pt;}
.ls3{letter-spacing:22.050591pt;}
.ls2{letter-spacing:22.263925pt;}
.ls26{letter-spacing:22.400019pt;}
.ls19{letter-spacing:24.261838pt;}
.ls25{letter-spacing:24.505397pt;}
.ls12{letter-spacing:29.397308pt;}
.lse{letter-spacing:175.061806pt;}
.ws3f{word-spacing:-37.899668pt;}
.ws16{word-spacing:-36.308477pt;}
.ws15{word-spacing:-36.303143pt;}
.ws12{word-spacing:-32.063846pt;}
.wsd{word-spacing:-16.162923pt;}
.ws25{word-spacing:-3.828367pt;}
.ws44{word-spacing:-3.246548pt;}
.ws3e{word-spacing:-1.152001pt;}
.ws52{word-spacing:-0.686546pt;}
.ws55{word-spacing:-0.570182pt;}
.ws4e{word-spacing:-0.337455pt;}
.ws36{word-spacing:-0.076513pt;}
.ws10{word-spacing:-0.047821pt;}
.ws13{word-spacing:-0.042507pt;}
.ws11{word-spacing:-0.031881pt;}
.ws34{word-spacing:0.000000pt;}
.ws4d{word-spacing:0.186182pt;}
.ws32{word-spacing:0.360728pt;}
.ws50{word-spacing:0.651637pt;}
.ws51{word-spacing:0.709819pt;}
.ws42{word-spacing:0.942546pt;}
.ws4b{word-spacing:1.408001pt;}
.ws43{word-spacing:1.582547pt;}
.ws26{word-spacing:1.640729pt;}
.ws6{word-spacing:1.989820pt;}
.ws2f{word-spacing:2.106184pt;}
.ws2c{word-spacing:2.455275pt;}
.ws4c{word-spacing:2.688002pt;}
.ws4{word-spacing:2.804366pt;}
.ws24{word-spacing:2.920730pt;}
.ws7{word-spacing:3.211639pt;}
.wse{word-spacing:3.269821pt;}
.ws41{word-spacing:3.328003pt;}
.wsc{word-spacing:3.444367pt;}
.ws4f{word-spacing:3.502548pt;}
.ws45{word-spacing:3.560730pt;}
.ws48{word-spacing:4.142549pt;}
.ws3c{word-spacing:4.200731pt;}
.ws30{word-spacing:4.317095pt;}
.ws3d{word-spacing:4.433458pt;}
.ws38{word-spacing:4.491640pt;}
.ws4a{word-spacing:4.608004pt;}
.ws2b{word-spacing:5.073459pt;}
.ws33{word-spacing:5.189823pt;}
.ws31{word-spacing:6.004369pt;}
.ws46{word-spacing:6.237096pt;}
.ws2e{word-spacing:6.353460pt;}
.ws2d{word-spacing:6.586187pt;}
.ws37{word-spacing:6.644369pt;}
.ws39{word-spacing:7.051642pt;}
.ws3a{word-spacing:7.924370pt;}
.ws3b{word-spacing:7.982552pt;}
.ws8{word-spacing:8.506189pt;}
.wsa{word-spacing:8.564371pt;}
.ws5{word-spacing:9.728008pt;}
.ws2a{word-spacing:10.018917pt;}
.ws47{word-spacing:10.135281pt;}
.ws28{word-spacing:10.542554pt;}
.ws23{word-spacing:10.600736pt;}
.ws49{word-spacing:10.658918pt;}
.ws29{word-spacing:12.404374pt;}
.ws18{word-spacing:15.005042pt;}
.ws1b{word-spacing:16.306893pt;}
.ws40{word-spacing:17.646876pt;}
.ws1a{word-spacing:17.675732pt;}
.ws19{word-spacing:17.681065pt;}
.ws1f{word-spacing:18.076262pt;}
.ws17{word-spacing:19.126250pt;}
.ws1{word-spacing:20.722347pt;}
.ws14{word-spacing:20.766778pt;}
.ws2{word-spacing:20.786108pt;}
.ws35{word-spacing:25.249312pt;}
.ws9{word-spacing:27.327580pt;}
.wsb{word-spacing:27.328270pt;}
.ws0{word-spacing:27.636455pt;}
.ws3{word-spacing:28.615887pt;}
.ws27{word-spacing:29.349342pt;}
.ws20{word-spacing:30.366208pt;}
.ws1c{word-spacing:42.703974pt;}
.ws1d{word-spacing:63.601664pt;}
.ws21{word-spacing:75.891610pt;}
.ws22{word-spacing:80.291123pt;}
.ws54{word-spacing:110.500616pt;}
.wsf{word-spacing:141.443905pt;}
.ws1e{word-spacing:147.240243pt;}
.ws53{word-spacing:153.196744pt;}
._1{margin-left:-7.253422pt;}
._4{margin-left:-5.900706pt;}
._2{margin-left:-4.774404pt;}
._2a{margin-left:-3.372759pt;}
._0{margin-left:-2.387202pt;}
._6{margin-left:-0.992134pt;}
._5{width:1.721549pt;}
._b{width:2.725786pt;}
._30{width:3.720999pt;}
._23{width:16.402534pt;}
._2c{width:19.259943pt;}
._2f{width:21.320216pt;}
._31{width:22.444268pt;}
._2b{width:23.880156pt;}
._33{width:24.843657pt;}
._9{width:25.865235pt;}
._a{width:27.196585pt;}
._29{width:28.512606pt;}
._e{width:30.414029pt;}
._f{width:33.187635pt;}
._2d{width:34.443683pt;}
._d{width:35.578675pt;}
._3{width:37.368895pt;}
._10{width:39.369969pt;}
._2e{width:40.869323pt;}
._19{width:42.703974pt;}
._8{width:45.440038pt;}
._20{width:46.480650pt;}
._32{width:48.727366pt;}
._21{width:50.116198pt;}
._26{width:51.861839pt;}
._18{width:56.380723pt;}
._11{width:57.337139pt;}
._1b{width:58.723942pt;}
._1c{width:60.108085pt;}
._22{width:61.114982pt;}
._1a{width:64.605901pt;}
._12{width:68.527206pt;}
._13{width:73.165824pt;}
._7{width:86.077200pt;}
._27{width:88.325018pt;}
._1d{width:89.537525pt;}
._14{width:97.602253pt;}
._15{width:105.970893pt;}
._24{width:119.599821pt;}
._34{width:123.210653pt;}
._16{width:130.837709pt;}
._1f{width:139.923661pt;}
._c{width:144.747358pt;}
._28{width:164.503552pt;}
._1e{width:174.258995pt;}
._17{width:186.357658pt;}
._25{width:206.824960pt;}
.fs9{font-size:27.985141pt;}
.fs6{font-size:31.880533pt;}
.fs7{font-size:39.978773pt;}
.fs2{font-size:42.507200pt;}
.fs8{font-size:45.690027pt;}
.fs5{font-size:47.820800pt;}
.fs4{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs3{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y4b{bottom:10.063853pt;}
.y4a{bottom:23.672699pt;}
.y4c{bottom:32.468252pt;}
.y26{bottom:35.740000pt;}
.y58{bottom:39.281599pt;}
.y50{bottom:44.819953pt;}
.y53{bottom:64.008649pt;}
.y4d{bottom:79.974501pt;}
.y54{bottom:95.549045pt;}
.y55{bottom:127.089442pt;}
.y4e{bottom:127.480751pt;}
.y25{bottom:146.986667pt;}
.y56{bottom:158.629838pt;}
.y24{bottom:165.052000pt;}
.y4f{bottom:174.987000pt;}
.y51{bottom:178.460381pt;}
.y52{bottom:182.286474pt;}
.y23{bottom:183.117333pt;}
.y57{bottom:190.170235pt;}
.y22{bottom:201.182667pt;}
.y21{bottom:219.248000pt;}
.y20{bottom:237.314667pt;}
.y1f{bottom:255.380000pt;}
.y1e{bottom:273.445333pt;}
.y1d{bottom:291.510667pt;}
.y1c{bottom:309.576000pt;}
.y1b{bottom:327.642667pt;}
.y1a{bottom:345.708000pt;}
.y19{bottom:363.773333pt;}
.y18{bottom:381.838667pt;}
.y17{bottom:399.904000pt;}
.y16{bottom:439.202667pt;}
.y15{bottom:456.737333pt;}
.y14{bottom:474.270667pt;}
.y13{bottom:491.805333pt;}
.y12{bottom:509.340000pt;}
.y10{bottom:533.300000pt;}
.yf{bottom:540.538667pt;}
.y40{bottom:544.076000pt;}
.y11{bottom:547.912000pt;}
.y3f{bottom:562.141333pt;}
.ye{bottom:567.530667pt;}
.y3e{bottom:580.206667pt;}
.yd{bottom:585.596000pt;}
.y3d{bottom:598.272000pt;}
.y5a{bottom:599.600000pt;}
.yc{bottom:603.662667pt;}
.y59{bottom:617.665333pt;}
.y3c{bottom:624.972000pt;}
.y3b{bottom:643.038667pt;}
.yb{bottom:646.622667pt;}
.y49{bottom:649.014667pt;}
.y3a{bottom:661.104000pt;}
.ya{bottom:664.689333pt;}
.y39{bottom:679.169333pt;}
.y9{bottom:682.754667pt;}
.y38{bottom:697.234667pt;}
.y8{bottom:700.820000pt;}
.y36{bottom:727.720000pt;}
.y7{bottom:733.289333pt;}
.y35{bottom:737.698667pt;}
.y37{bottom:747.538667pt;}
.y34{bottom:777.216000pt;}
.y33{bottom:795.281333pt;}
.y32{bottom:813.346667pt;}
.y6{bottom:824.541333pt;}
.y31{bottom:831.412000pt;}
.y5{bottom:841.073333pt;}
.y30{bottom:849.478667pt;}
.y2f{bottom:867.544000pt;}
.y4{bottom:869.174667pt;}
.y48{bottom:873.388000pt;}
.y2e{bottom:885.609333pt;}
.y47{bottom:891.454667pt;}
.y3{bottom:895.070667pt;}
.y2d{bottom:903.674667pt;}
.y46{bottom:909.520000pt;}
.y2c{bottom:921.740000pt;}
.y45{bottom:927.585333pt;}
.y2b{bottom:939.806667pt;}
.y2{bottom:944.778667pt;}
.y44{bottom:945.650667pt;}
.y2a{bottom:957.872000pt;}
.y43{bottom:963.716000pt;}
.y1{bottom:974.002667pt;}
.y29{bottom:975.937333pt;}
.y42{bottom:981.782667pt;}
.y41{bottom:999.848000pt;}
.y28{bottom:1008.406667pt;}
.y27{bottom:1032.317333pt;}
.h14{height:25.998196pt;}
.h4{height:31.880400pt;}
.hd{height:32.823885pt;}
.ha{height:33.713664pt;}
.h9{height:35.865600pt;}
.he{height:36.203221pt;}
.h12{height:37.140280pt;}
.hb{height:41.515221pt;}
.h13{height:42.446035pt;}
.h7{height:43.636400pt;}
.h5{height:45.525402pt;}
.hf{height:52.995067pt;}
.h6{height:53.559147pt;}
.h3{height:55.016400pt;}
.h2{height:64.454458pt;}
.h8{height:65.358933pt;}
.h10{height:82.996400pt;}
.hc{height:92.161664pt;}
.h11{height:205.605120pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:514.012800pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2b{left:15.920119pt;}
.x2a{left:21.151716pt;}
.x28{left:37.275967pt;}
.x2c{left:58.487473pt;}
.x2d{left:66.132958pt;}
.x7{left:75.590667pt;}
.x1{left:76.942667pt;}
.x8{left:77.858667pt;}
.x29{left:80.925783pt;}
.x1f{left:98.172000pt;}
.x21{left:107.869333pt;}
.x6{left:117.638667pt;}
.x2{left:131.298667pt;}
.x27{left:139.841333pt;}
.x9{left:154.446667pt;}
.x3{left:159.270667pt;}
.x4{left:171.897333pt;}
.xb{left:204.894667pt;}
.xa{left:208.072000pt;}
.x22{left:215.652000pt;}
.x5{left:246.316000pt;}
.xd{left:250.341333pt;}
.xc{left:251.326667pt;}
.x32{left:265.892307pt;}
.x31{left:271.123904pt;}
.xf{left:277.646667pt;}
.xe{left:281.770667pt;}
.x30{left:283.840367pt;}
.x2e{left:292.016829pt;}
.x23{left:301.812000pt;}
.x33{left:305.280546pt;}
.x34{left:312.926031pt;}
.x26{left:313.832000pt;}
.x2f{left:322.180501pt;}
.x25{left:340.477333pt;}
.x24{left:344.766667pt;}
.x10{left:355.612000pt;}
.x11{left:377.608000pt;}
.x12{left:382.230667pt;}
.x20{left:393.213333pt;}
.x13{left:406.662667pt;}
.x14{left:411.642667pt;}
.x15{left:436.434667pt;}
.x16{left:441.888000pt;}
.x17{left:469.429333pt;}
.x18{left:483.248000pt;}
.x1a{left:535.853333pt;}
.x19{left:546.873333pt;}
.x1c{left:587.173333pt;}
.x1b{left:601.525333pt;}
.x1e{left:644.805333pt;}
.x1d{left:658.473333pt;}
}




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