
    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_9a77eaba2e6dcf8ec1a21fe4.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.902000;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_c46dfb7f08b6008f7a46312d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.905000;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_28022e8e099539e1eb3ae806.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_0439d7c6f256e7736d227464.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.856000;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_ec92eb109edef60426ba78ac.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.887000;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_db735aaa422940cc5706a15e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.892000;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_98bc48e3a1b21223cbc68d69.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_b4bd5ed4d2b838825793a2ec.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.674000;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_100694afebab9b388e95e282.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_123f7a4e7e6239c394561eef.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.001000;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_54091fac6a936515cccc7b7c.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_b5661e817753025d20055e66.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_9bd3c1446ce747e41bb6cd4b.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_5cddaadae7f2c49d0f773b0c.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.898000;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_b450261b37f3991881870c4d.woff2')format("woff");}.fff{font-family:fff;line-height:1.665000;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_3a2c417e5dccc485124e4c69.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_b8757e3a70615d9d2c211783.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.909000;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:ff12;src:url('chunks/assets/font_f3309ad13a210900d033c288.woff2')format("woff");}.ff12{font-family:ff12;line-height:2.400000;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:ff13;src:url('chunks/assets/font_a19e0019ead8377d510f5efe.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.705000;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:ff14;src:url('chunks/assets/font_ce8ac17723f10fd5b8d462a7.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.001000;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:ff15;src:url('chunks/assets/font_04bf51aad7d7dd1cc728b968.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.001000;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);}
.v6{vertical-align:-58.614000px;}
.v2{vertical-align:-10.386000px;}
.v1{vertical-align:-8.964000px;}
.v0{vertical-align:0.000000px;}
.ve{vertical-align:9.822000px;}
.v8{vertical-align:16.176000px;}
.vc{vertical-align:18.912000px;}
.vb{vertical-align:21.138000px;}
.v7{vertical-align:27.030000px;}
.va{vertical-align:34.500000px;}
.v9{vertical-align:43.206000px;}
.v3{vertical-align:44.898000px;}
.v4{vertical-align:89.178000px;}
.v5{vertical-align:103.512000px;}
.vd{vertical-align:112.932000px;}
.ls1{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.002682px;}
.ls20{letter-spacing:0.008354px;}
.ls17{letter-spacing:0.016386px;}
.ls8{letter-spacing:0.024865px;}
.ls4{letter-spacing:0.916364px;}
.ls12{letter-spacing:1.291156px;}
.lsd{letter-spacing:1.838115px;}
.lsf{letter-spacing:2.984915px;}
.lse{letter-spacing:2.992059px;}
.ls11{letter-spacing:3.739851px;}
.ls2{letter-spacing:7.134551px;}
.lsb{letter-spacing:7.172700px;}
.ls1b{letter-spacing:7.175400px;}
.ls18{letter-spacing:10.046044px;}
.ls1a{letter-spacing:18.168411px;}
.ls19{letter-spacing:18.196379px;}
.ls1f{letter-spacing:20.683654px;}
.ls14{letter-spacing:23.432747px;}
.ls15{letter-spacing:23.498201px;}
.ls6{letter-spacing:23.825474px;}
.ls9{letter-spacing:24.688059px;}
.ls1c{letter-spacing:25.208915px;}
.lsa{letter-spacing:25.344403px;}
.ls0{letter-spacing:27.098204px;}
.ls7{letter-spacing:30.632753px;}
.ls21{letter-spacing:32.727300px;}
.ls16{letter-spacing:34.892044px;}
.ls13{letter-spacing:52.275537px;}
.ls1d{letter-spacing:54.605412px;}
.ls3{letter-spacing:119.369412px;}
.ls1e{letter-spacing:938.966915px;}
.ls5{letter-spacing:1049.096543px;}
.ls10{letter-spacing:1072.473621px;}
.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;}
}
.ws24{word-spacing:-42.637126px;}
.wsc{word-spacing:-38.937826px;}
.ws35{word-spacing:-32.544027px;}
.ws26{word-spacing:-31.706208px;}
.ws37{word-spacing:-17.227651px;}
.ws1c{word-spacing:-16.965832px;}
.ws16{word-spacing:-14.282194px;}
.ws48{word-spacing:-13.954921px;}
.wsa{word-spacing:-13.144654px;}
.ws40{word-spacing:-12.776738px;}
.ws47{word-spacing:-12.449465px;}
.ws10{word-spacing:-12.427347px;}
.ws15{word-spacing:-12.384010px;}
.ws44{word-spacing:-11.467646px;}
.ws18{word-spacing:-10.878555px;}
.ws23{word-spacing:-10.813100px;}
.ws46{word-spacing:-10.747645px;}
.ws11{word-spacing:-9.976548px;}
.ws3{word-spacing:-9.916772px;}
.ws27{word-spacing:-9.700372px;}
.ws28{word-spacing:-9.634917px;}
.ws6{word-spacing:-9.378792px;}
.ws19{word-spacing:-9.111280px;}
.ws21{word-spacing:-9.045826px;}
.ws33{word-spacing:-8.194916px;}
.ws8{word-spacing:-7.944177px;}
.ws43{word-spacing:-7.802188px;}
.wsf{word-spacing:-7.705075px;}
.ws3a{word-spacing:-7.671279px;}
.ws1a{word-spacing:-7.409461px;}
.ws39{word-spacing:-7.344006px;}
.ws17{word-spacing:-7.082188px;}
.ws45{word-spacing:-6.689460px;}
.ws13{word-spacing:-6.624006px;}
.ws20{word-spacing:-6.165823px;}
.ws3f{word-spacing:-5.838550px;}
.ws22{word-spacing:-5.707641px;}
.ws7{word-spacing:-5.433602px;}
.ws9{word-spacing:-4.895622px;}
.wsb{word-spacing:-4.656519px;}
.ws2c{word-spacing:-4.267640px;}
.ws2b{word-spacing:-4.202185px;}
.ws3b{word-spacing:-3.547639px;}
.ws49{word-spacing:-3.351276px;}
.ws42{word-spacing:-2.751034px;}
.ws32{word-spacing:-0.144000px;}
.ws4b{word-spacing:-0.065455px;}
.ws4{word-spacing:-0.059776px;}
.ws29{word-spacing:-0.047821px;}
.wsd{word-spacing:-0.041843px;}
.ws1d{word-spacing:0.000000px;}
.ws2e{word-spacing:0.013091px;}
.ws30{word-spacing:0.183273px;}
.ws2d{word-spacing:3.482185px;}
.ws2f{word-spacing:3.547639px;}
.ws14{word-spacing:7.082188px;}
.ws36{word-spacing:17.476378px;}
.ws1b{word-spacing:17.869106px;}
.ws3e{word-spacing:21.120720px;}
.ws41{word-spacing:22.689492px;}
.ws4a{word-spacing:23.170928px;}
.ws5{word-spacing:23.312640px;}
.ws3c{word-spacing:24.872748px;}
.ws1f{word-spacing:26.827469px;}
.ws2{word-spacing:27.200395px;}
.ws34{word-spacing:27.290716px;}
.ws25{word-spacing:28.297529px;}
.ws38{word-spacing:28.865479px;}
.wse{word-spacing:28.931390px;}
.ws2a{word-spacing:31.418178px;}
.ws1e{word-spacing:31.504255px;}
.ws3d{word-spacing:33.355664px;}
.ws31{word-spacing:37.112758px;}
.ws0{word-spacing:43.639200px;}
.ws1{word-spacing:43.763175px;}
.ws12{word-spacing:94.598843px;}
._1{margin-left:-10.909800px;}
._13{margin-left:-8.741624px;}
._17{margin-left:-7.728665px;}
._c{margin-left:-6.704472px;}
._5{margin-left:-4.961375px;}
._0{margin-left:-3.595275px;}
._4{margin-left:-1.673717px;}
._3{width:1.673717px;}
._b{width:2.680664px;}
._2{width:3.719250px;}
._1a{width:5.250709px;}
._d{width:16.756378px;}
._19{width:22.099478px;}
._9{width:23.201672px;}
._7{width:25.643732px;}
._a{width:27.776927px;}
._1b{width:29.819195px;}
._12{width:32.175560px;}
._10{width:34.139198px;}
._18{width:36.532916px;}
._6{width:40.527857px;}
._8{width:41.743007px;}
._11{width:44.060195px;}
._14{width:48.222137px;}
._15{width:50.751492px;}
._16{width:60.713766px;}
._f{width:80.697600px;}
._e{width:94.684920px;}
.fc1{color:rgb(0,173,239);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:41.842800px;}
.fs6{font-size:47.820600px;}
.fs2{font-size:59.775600px;}
.fs5{font-size:65.454600px;}
.fs3{font-size:71.731200px;}
.fs1{font-size:86.077200px;}
.fs0{font-size:123.975000px;}
.y0{bottom:0.000000px;}
.y1d{bottom:63.168000px;}
.y1c{bottom:141.577500px;}
.y3c{bottom:143.344500px;}
.y1b{bottom:164.949000px;}
.y3b{bottom:166.716000px;}
.y56{bottom:185.223000px;}
.y1a{bottom:188.322000px;}
.y3a{bottom:206.289000px;}
.y55{bottom:208.594500px;}
.y19{bottom:211.693500px;}
.y18{bottom:235.066500px;}
.y54{bottom:248.167500px;}
.y17{bottom:258.438000px;}
.y39{bottom:261.876000px;}
.y16{bottom:281.811000px;}
.y38{bottom:285.247500px;}
.y53{bottom:303.754500px;}
.y15{bottom:305.182500px;}
.y37{bottom:322.069500px;}
.y52{bottom:327.126000px;}
.y14{bottom:328.555500px;}
.y36{bottom:345.442500px;}
.y51{bottom:350.499000px;}
.y13{bottom:368.128500px;}
.y35{bottom:382.264500px;}
.y50{bottom:390.072000px;}
.y34{bottom:405.636000px;}
.y33{bottom:429.009000px;}
.y4f{bottom:445.659000px;}
.y12{bottom:453.435000px;}
.y32{bottom:465.829500px;}
.y11{bottom:474.057000px;}
.y4e{bottom:482.479500px;}
.y10{bottom:494.680500px;}
.y31{bottom:499.768500px;}
.yf{bottom:515.302500px;}
.y4d{bottom:519.301500px;}
.ye{bottom:535.926000px;}
.y30{bottom:541.435500px;}
.y4c{bottom:542.674500px;}
.y2f{bottom:546.720000px;}
.yd{bottom:556.548000px;}
.yc{bottom:577.170000px;}
.y4b{bottom:582.247500px;}
.y2d{bottom:584.709000px;}
.y2e{bottom:591.889500px;}
.y2c{bottom:595.933500px;}
.yb{bottom:597.793500px;}
.ya{bottom:618.415500px;}
.y4a{bottom:637.833000px;}
.y2b{bottom:641.128500px;}
.y49{bottom:661.206000px;}
.y9{bottom:662.284500px;}
.y2a{bottom:664.501500px;}
.y48{bottom:684.577500px;}
.y29{bottom:698.439000px;}
.y47{bottom:707.950500px;}
.y8{bottom:725.247000px;}
.y28{bottom:742.255500px;}
.y46{bottom:747.523500px;}
.y7{bottom:762.580500px;}
.y6{bottom:786.640500px;}
.y27{bottom:797.842500px;}
.y45{bottom:803.110500px;}
.y5{bottom:810.699000px;}
.y26{bottom:821.215500px;}
.y44{bottom:826.482000px;}
.y43{bottom:849.855000px;}
.y25{bottom:856.974000px;}
.y4{bottom:859.165500px;}
.y42{bottom:873.226500px;}
.y24{bottom:879.268500px;}
.y3{bottom:902.128500px;}
.y5a{bottom:908.308500px;}
.y23{bottom:910.474500px;}
.y41{bottom:912.799500px;}
.y22{bottom:933.847500px;}
.y2{bottom:945.093000px;}
.y59{bottom:945.130500px;}
.y21{bottom:957.219000px;}
.y40{bottom:968.386500px;}
.y20{bottom:980.592000px;}
.y58{bottom:981.952500px;}
.y1{bottom:988.056000px;}
.y3f{bottom:1001.371500px;}
.y3e{bottom:1012.597500px;}
.y1f{bottom:1014.529500px;}
.y57{bottom:1018.773000px;}
.y1e{bottom:1058.346000px;}
.y3d{bottom:1063.561500px;}
.h4{height:37.539077px;}
.h6{height:41.783144px;}
.h3{height:44.891476px;}
.h9{height:46.145493px;}
.h7{height:49.156405px;}
.h5{height:49.853184px;}
.h8{height:50.283571px;}
.h2{height:60.426194px;}
.h10{height:70.294405px;}
.hf{height:70.365450px;}
.he{height:79.071450px;}
.h1{height:87.030450px;}
.hc{height:93.370950px;}
.hb{height:94.054405px;}
.h13{height:94.060405px;}
.h11{height:106.922184px;}
.ha{height:138.268950px;}
.h12{height:148.797450px;}
.hd{height:149.657493px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xa{left:108.000000px;}
.x18{left:116.136000px;}
.x14{left:128.070000px;}
.xb{left:133.405500px;}
.x9{left:148.909500px;}
.x1{left:152.392500px;}
.x3{left:181.681500px;}
.x6{left:357.033000px;}
.x15{left:360.994500px;}
.x2{left:378.085500px;}
.x5{left:380.791500px;}
.x7{left:386.466000px;}
.xe{left:391.059000px;}
.x10{left:396.331500px;}
.x4{left:400.819500px;}
.xd{left:408.169500px;}
.x8{left:426.130500px;}
.x16{left:427.722000px;}
.x11{left:445.398000px;}
.xc{left:454.932000px;}
.xf{left:471.753000px;}
.x12{left:489.096000px;}
.x17{left:526.407000px;}
.x13{left:534.366000px;}
@media print{
.v6{vertical-align:-52.101333pt;}
.v2{vertical-align:-9.232000pt;}
.v1{vertical-align:-7.968000pt;}
.v0{vertical-align:0.000000pt;}
.ve{vertical-align:8.730667pt;}
.v8{vertical-align:14.378667pt;}
.vc{vertical-align:16.810667pt;}
.vb{vertical-align:18.789333pt;}
.v7{vertical-align:24.026667pt;}
.va{vertical-align:30.666667pt;}
.v9{vertical-align:38.405333pt;}
.v3{vertical-align:39.909333pt;}
.v4{vertical-align:79.269333pt;}
.v5{vertical-align:92.010667pt;}
.vd{vertical-align:100.384000pt;}
.ls1{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.002384pt;}
.ls20{letter-spacing:0.007426pt;}
.ls17{letter-spacing:0.014566pt;}
.ls8{letter-spacing:0.022102pt;}
.ls4{letter-spacing:0.814546pt;}
.ls12{letter-spacing:1.147694pt;}
.lsd{letter-spacing:1.633880pt;}
.lsf{letter-spacing:2.653258pt;}
.lse{letter-spacing:2.659608pt;}
.ls11{letter-spacing:3.324312pt;}
.ls2{letter-spacing:6.341823pt;}
.lsb{letter-spacing:6.375733pt;}
.ls1b{letter-spacing:6.378133pt;}
.ls18{letter-spacing:8.929817pt;}
.ls1a{letter-spacing:16.149699pt;}
.ls19{letter-spacing:16.174559pt;}
.ls1f{letter-spacing:18.385470pt;}
.ls14{letter-spacing:20.829108pt;}
.ls15{letter-spacing:20.887290pt;}
.ls6{letter-spacing:21.178199pt;}
.ls9{letter-spacing:21.944941pt;}
.ls1c{letter-spacing:22.407925pt;}
.lsa{letter-spacing:22.528358pt;}
.ls0{letter-spacing:24.087293pt;}
.ls7{letter-spacing:27.229114pt;}
.ls21{letter-spacing:29.090933pt;}
.ls16{letter-spacing:31.015150pt;}
.ls13{letter-spacing:46.467144pt;}
.ls1d{letter-spacing:48.538144pt;}
.ls3{letter-spacing:106.106144pt;}
.ls1e{letter-spacing:834.637258pt;}
.ls5{letter-spacing:932.530261pt;}
.ls10{letter-spacing:953.309885pt;}
.ws24{word-spacing:-37.899668pt;}
.wsc{word-spacing:-34.611401pt;}
.ws35{word-spacing:-28.928024pt;}
.ws26{word-spacing:-28.183296pt;}
.ws37{word-spacing:-15.313467pt;}
.ws1c{word-spacing:-15.080740pt;}
.ws16{word-spacing:-12.695283pt;}
.ws48{word-spacing:-12.404374pt;}
.wsa{word-spacing:-11.684137pt;}
.ws40{word-spacing:-11.357100pt;}
.ws47{word-spacing:-11.066191pt;}
.ws10{word-spacing:-11.046531pt;}
.ws15{word-spacing:-11.008009pt;}
.ws44{word-spacing:-10.193463pt;}
.ws18{word-spacing:-9.669826pt;}
.ws23{word-spacing:-9.611644pt;}
.ws46{word-spacing:-9.553463pt;}
.ws11{word-spacing:-8.868042pt;}
.ws3{word-spacing:-8.814908pt;}
.ws27{word-spacing:-8.622553pt;}
.ws28{word-spacing:-8.564371pt;}
.ws6{word-spacing:-8.336704pt;}
.ws19{word-spacing:-8.098916pt;}
.ws21{word-spacing:-8.040734pt;}
.ws33{word-spacing:-7.284370pt;}
.ws8{word-spacing:-7.061491pt;}
.ws43{word-spacing:-6.935279pt;}
.wsf{word-spacing:-6.848955pt;}
.ws3a{word-spacing:-6.818915pt;}
.ws1a{word-spacing:-6.586187pt;}
.ws39{word-spacing:-6.528005pt;}
.ws17{word-spacing:-6.295278pt;}
.ws45{word-spacing:-5.946187pt;}
.ws13{word-spacing:-5.888005pt;}
.ws20{word-spacing:-5.480732pt;}
.ws3f{word-spacing:-5.189823pt;}
.ws22{word-spacing:-5.073459pt;}
.ws7{word-spacing:-4.829868pt;}
.ws9{word-spacing:-4.351664pt;}
.wsb{word-spacing:-4.139128pt;}
.ws2c{word-spacing:-3.793458pt;}
.ws2b{word-spacing:-3.735276pt;}
.ws3b{word-spacing:-3.153457pt;}
.ws49{word-spacing:-2.978912pt;}
.ws42{word-spacing:-2.445363pt;}
.ws32{word-spacing:-0.128000pt;}
.ws4b{word-spacing:-0.058182pt;}
.ws4{word-spacing:-0.053134pt;}
.ws29{word-spacing:-0.042507pt;}
.wsd{word-spacing:-0.037194pt;}
.ws1d{word-spacing:0.000000pt;}
.ws2e{word-spacing:0.011636pt;}
.ws30{word-spacing:0.162909pt;}
.ws2d{word-spacing:3.095275pt;}
.ws2f{word-spacing:3.153457pt;}
.ws14{word-spacing:6.295278pt;}
.ws36{word-spacing:15.534558pt;}
.ws1b{word-spacing:15.883650pt;}
.ws3e{word-spacing:18.773973pt;}
.ws41{word-spacing:20.168437pt;}
.ws4a{word-spacing:20.596381pt;}
.ws5{word-spacing:20.722347pt;}
.ws3c{word-spacing:22.109109pt;}
.ws1f{word-spacing:23.846639pt;}
.ws2{word-spacing:24.178129pt;}
.ws34{word-spacing:24.258415pt;}
.ws25{word-spacing:25.153359pt;}
.ws38{word-spacing:25.658203pt;}
.wse{word-spacing:25.716791pt;}
.ws2a{word-spacing:27.927269pt;}
.ws1e{word-spacing:28.003782pt;}
.ws3d{word-spacing:29.649479pt;}
.ws31{word-spacing:32.989118pt;}
.ws0{word-spacing:38.790400pt;}
.ws1{word-spacing:38.900600pt;}
.ws12{word-spacing:84.087860pt;}
._1{margin-left:-9.697600pt;}
._13{margin-left:-7.770333pt;}
._17{margin-left:-6.869925pt;}
._c{margin-left:-5.959531pt;}
._5{margin-left:-4.410111pt;}
._0{margin-left:-3.195800pt;}
._4{margin-left:-1.487748pt;}
._3{width:1.487748pt;}
._b{width:2.382812pt;}
._2{width:3.306000pt;}
._1a{width:4.667297pt;}
._d{width:14.894558pt;}
._19{width:19.643980pt;}
._9{width:20.623708pt;}
._7{width:22.794429pt;}
._a{width:24.690602pt;}
._1b{width:26.505951pt;}
._12{width:28.600498pt;}
._10{width:30.345954pt;}
._18{width:32.473703pt;}
._6{width:36.024762pt;}
._8{width:37.104895pt;}
._11{width:39.164618pt;}
._14{width:42.864122pt;}
._15{width:45.112437pt;}
._16{width:53.967792pt;}
._f{width:71.731200pt;}
._e{width:84.164373pt;}
.fs4{font-size:37.193600pt;}
.fs6{font-size:42.507200pt;}
.fs2{font-size:53.133867pt;}
.fs5{font-size:58.181867pt;}
.fs3{font-size:63.761067pt;}
.fs1{font-size:76.513067pt;}
.fs0{font-size:110.200000pt;}
.y0{bottom:0.000000pt;}
.y1d{bottom:56.149333pt;}
.y1c{bottom:125.846667pt;}
.y3c{bottom:127.417333pt;}
.y1b{bottom:146.621333pt;}
.y3b{bottom:148.192000pt;}
.y56{bottom:164.642667pt;}
.y1a{bottom:167.397333pt;}
.y3a{bottom:183.368000pt;}
.y55{bottom:185.417333pt;}
.y19{bottom:188.172000pt;}
.y18{bottom:208.948000pt;}
.y54{bottom:220.593333pt;}
.y17{bottom:229.722667pt;}
.y39{bottom:232.778667pt;}
.y16{bottom:250.498667pt;}
.y38{bottom:253.553333pt;}
.y53{bottom:270.004000pt;}
.y15{bottom:271.273333pt;}
.y37{bottom:286.284000pt;}
.y52{bottom:290.778667pt;}
.y14{bottom:292.049333pt;}
.y36{bottom:307.060000pt;}
.y51{bottom:311.554667pt;}
.y13{bottom:327.225333pt;}
.y35{bottom:339.790667pt;}
.y50{bottom:346.730667pt;}
.y34{bottom:360.565333pt;}
.y33{bottom:381.341333pt;}
.y4f{bottom:396.141333pt;}
.y12{bottom:403.053333pt;}
.y32{bottom:414.070667pt;}
.y11{bottom:421.384000pt;}
.y4e{bottom:428.870667pt;}
.y10{bottom:439.716000pt;}
.y31{bottom:444.238667pt;}
.yf{bottom:458.046667pt;}
.y4d{bottom:461.601333pt;}
.ye{bottom:476.378667pt;}
.y30{bottom:481.276000pt;}
.y4c{bottom:482.377333pt;}
.y2f{bottom:485.973333pt;}
.yd{bottom:494.709333pt;}
.yc{bottom:513.040000pt;}
.y4b{bottom:517.553333pt;}
.y2d{bottom:519.741333pt;}
.y2e{bottom:526.124000pt;}
.y2c{bottom:529.718667pt;}
.yb{bottom:531.372000pt;}
.ya{bottom:549.702667pt;}
.y4a{bottom:566.962667pt;}
.y2b{bottom:569.892000pt;}
.y49{bottom:587.738667pt;}
.y9{bottom:588.697333pt;}
.y2a{bottom:590.668000pt;}
.y48{bottom:608.513333pt;}
.y29{bottom:620.834667pt;}
.y47{bottom:629.289333pt;}
.y8{bottom:644.664000pt;}
.y28{bottom:659.782667pt;}
.y46{bottom:664.465333pt;}
.y7{bottom:677.849333pt;}
.y6{bottom:699.236000pt;}
.y27{bottom:709.193333pt;}
.y45{bottom:713.876000pt;}
.y5{bottom:720.621333pt;}
.y26{bottom:729.969333pt;}
.y44{bottom:734.650667pt;}
.y43{bottom:755.426667pt;}
.y25{bottom:761.754667pt;}
.y4{bottom:763.702667pt;}
.y42{bottom:776.201333pt;}
.y24{bottom:781.572000pt;}
.y3{bottom:801.892000pt;}
.y5a{bottom:807.385333pt;}
.y23{bottom:809.310667pt;}
.y41{bottom:811.377333pt;}
.y22{bottom:830.086667pt;}
.y2{bottom:840.082667pt;}
.y59{bottom:840.116000pt;}
.y21{bottom:850.861333pt;}
.y40{bottom:860.788000pt;}
.y20{bottom:871.637333pt;}
.y58{bottom:872.846667pt;}
.y1{bottom:878.272000pt;}
.y3f{bottom:890.108000pt;}
.y3e{bottom:900.086667pt;}
.y1f{bottom:901.804000pt;}
.y57{bottom:905.576000pt;}
.y1e{bottom:940.752000pt;}
.y3d{bottom:945.388000pt;}
.h4{height:33.368068pt;}
.h6{height:37.140573pt;}
.h3{height:39.903534pt;}
.h9{height:41.018216pt;}
.h7{height:43.694582pt;}
.h5{height:44.313941pt;}
.h8{height:44.696508pt;}
.h2{height:53.712173pt;}
.h10{height:62.483915pt;}
.hf{height:62.547067pt;}
.he{height:70.285733pt;}
.h1{height:77.360400pt;}
.hc{height:82.996400pt;}
.hb{height:83.603915pt;}
.h13{height:83.609249pt;}
.h11{height:95.041941pt;}
.ha{height:122.905733pt;}
.h12{height:132.264400pt;}
.hd{height:133.028883pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xa{left:96.000000pt;}
.x18{left:103.232000pt;}
.x14{left:113.840000pt;}
.xb{left:118.582667pt;}
.x9{left:132.364000pt;}
.x1{left:135.460000pt;}
.x3{left:161.494667pt;}
.x6{left:317.362667pt;}
.x15{left:320.884000pt;}
.x2{left:336.076000pt;}
.x5{left:338.481333pt;}
.x7{left:343.525333pt;}
.xe{left:347.608000pt;}
.x10{left:352.294667pt;}
.x4{left:356.284000pt;}
.xd{left:362.817333pt;}
.x8{left:378.782667pt;}
.x16{left:380.197333pt;}
.x11{left:395.909333pt;}
.xc{left:404.384000pt;}
.xf{left:419.336000pt;}
.x12{left:434.752000pt;}
.x17{left:467.917333pt;}
.x13{left:474.992000pt;}
}




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