
    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_bc4a1513edaadc83ffd7d7dd.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_ac633cc31ea4c37826982f36.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.022461;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_f95c1e1f55f562efa9e34391.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_3e8b22414d25a45d48869458.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.031738;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_1ceb86e3ece6760333152159.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.031738;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_07e0be60117013ab2c402a1a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.973633;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_7c8ea94743ee1578a99965a6.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.031738;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_b5039afc7aad7a45fdb7fa16.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.031738;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_2f325c6ba5cf06610c8aef0d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.963379;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_17abaf841f7d4c4aa39936d5.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.031738;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_f44bf8d62ed221c454724314.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.031738;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_d8eb6fa2c6f157fcb6e899f5.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.031738;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_64e765c4d409f7871eb47b44.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.032715;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_48290d6ca907eb377fac8c74.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.041992;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_02f79a3796196d300f4a4fd5.woff2')format("woff");}.fff{font-family:fff;line-height:1.043945;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_c5b94be6509c267dc4372d09.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.964868;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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws1{word-spacing:-17.832504px;}
.ws3{word-spacing:-15.603441px;}
.ws0{word-spacing:-13.335936px;}
.ws2{word-spacing:0.000000px;}
._5{margin-left:-17.964400px;}
._9{margin-left:-11.279895px;}
._4{margin-left:-8.722802px;}
._a{margin-left:-7.658834px;}
._7{margin-left:-6.647632px;}
._1{margin-left:-5.320312px;}
._3{margin-left:-3.656249px;}
._2{margin-left:-2.648435px;}
._6{margin-left:-1.187053px;}
._8{width:1.028761px;}
._b{width:2.736331px;}
._0{width:441.468715px;}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:47.999996px;}
.fs5{font-size:63.029284px;}
.fs1{font-size:72.033467px;}
.fs3{font-size:81.037651px;}
.fs4{font-size:108.050201px;}
.fs2{font-size:162.075301px;}
.y0{bottom:0.000000px;}
.y3{bottom:3.000037px;}
.y82{bottom:7.878665px;}
.y11f{bottom:19.133977px;}
.y2{bottom:22.380034px;}
.y4{bottom:25.380071px;}
.yd9{bottom:25.887132px;}
.yfa{bottom:29.263512px;}
.y21{bottom:29.263587px;}
.y9f{bottom:33.765674px;}
.y81{bottom:36.016738px;}
.ya0{bottom:42.082767px;}
.y35{bottom:42.082942px;}
.y5{bottom:42.083005px;}
.y22{bottom:42.083030px;}
.y5b{bottom:42.083118px;}
.y11e{bottom:47.272050px;}
.y34{bottom:54.025102px;}
.yd8{bottom:54.025205px;}
.yf9{bottom:57.401585px;}
.y20{bottom:57.401660px;}
.yc6{bottom:58.527125px;}
.y9e{bottom:61.903747px;}
.y80{bottom:64.154811px;}
.y5a{bottom:74.284521px;}
.y11d{bottom:75.410123px;}
.yd7{bottom:82.163278px;}
.yf8{bottom:85.539658px;}
.y1f{bottom:85.539734px;}
.yc5{bottom:86.665198px;}
.y9d{bottom:90.041821px;}
.y7f{bottom:92.292884px;}
.y33{bottom:93.418404px;}
.y59{bottom:102.422595px;}
.y11c{bottom:103.548196px;}
.yd6{bottom:110.301351px;}
.y1e{bottom:113.677807px;}
.yc4{bottom:114.803272px;}
.y9c{bottom:118.179894px;}
.y7e{bottom:120.430957px;}
.yf7{bottom:122.681915px;}
.y58{bottom:130.560668px;}
.y11b{bottom:131.686269px;}
.yd5{bottom:138.439424px;}
.yc3{bottom:142.941345px;}
.y9b{bottom:146.317967px;}
.y7d{bottom:148.569030px;}
.y1d{bottom:153.071109px;}
.y57{bottom:158.698741px;}
.y11a{bottom:159.824342px;}
.yc2{bottom:171.079418px;}
.y9a{bottom:174.456040px;}
.yf6{bottom:176.707015px;}
.y7c{bottom:176.707103px;}
.yd4{bottom:177.832727px;}
.y1c{bottom:181.209182px;}
.y56{bottom:198.092043px;}
.yc1{bottom:199.217491px;}
.y119{bottom:199.217645px;}
.y99{bottom:202.594113px;}
.y1b{bottom:209.347255px;}
.yf5{bottom:216.100317px;}
.y7b{bottom:216.100406px;}
.yd3{bottom:217.226029px;}
.y55{bottom:226.230116px;}
.yc0{bottom:227.355564px;}
.y118{bottom:227.355718px;}
.y1a{bottom:237.485328px;}
.y98{bottom:241.987416px;}
.yf4{bottom:244.238391px;}
.y7a{bottom:244.238479px;}
.y54{bottom:254.368189px;}
.ybf{bottom:255.493637px;}
.y117{bottom:255.493791px;}
.y19{bottom:265.623402px;}
.y79{bottom:272.376552px;}
.y97{bottom:281.380718px;}
.y53{bottom:282.506263px;}
.yf3{bottom:283.631693px;}
.y116{bottom:283.631864px;}
.y18{bottom:293.761475px;}
.ybe{bottom:294.886940px;}
.y78{bottom:300.514625px;}
.y52{bottom:310.644336px;}
.yf2{bottom:311.769766px;}
.y115{bottom:311.769937px;}
.y17{bottom:321.899548px;}
.ybd{bottom:323.025013px;}
.y77{bottom:328.652698px;}
.y51{bottom:338.782409px;}
.y114{bottom:339.908011px;}
.yf1{bottom:351.163068px;}
.ybc{bottom:351.163086px;}
.y76{bottom:356.790771px;}
.y16{bottom:359.041804px;}
.y50{bottom:378.175711px;}
.yf0{bottom:379.301142px;}
.ybb{bottom:379.301159px;}
.y113{bottom:379.301313px;}
.y75{bottom:384.928844px;}
.y4f{bottom:406.313784px;}
.yba{bottom:407.439232px;}
.y112{bottom:407.439386px;}
.y15{bottom:413.066905px;}
.yef{bottom:418.694444px;}
.y74{bottom:422.071101px;}
.y136{bottom:432.200702px;}
.y4e{bottom:434.451858px;}
.yb9{bottom:435.577305px;}
.y111{bottom:435.577459px;}
.y14{bottom:441.204978px;}
.yee{bottom:446.832517px;}
.y135{bottom:456.962206px;}
.y4d{bottom:462.589931px;}
.yb8{bottom:463.715378px;}
.y110{bottom:463.715532px;}
.y73{bottom:476.096201px;}
.y134{bottom:481.723710px;}
.yed{bottom:486.225819px;}
.y4c{bottom:490.728004px;}
.yb7{bottom:491.853452px;}
.y10f{bottom:503.108835px;}
.y72{bottom:504.234274px;}
.y133{bottom:506.485215px;}
.y13{bottom:509.861876px;}
.y4b{bottom:518.866077px;}
.yec{bottom:525.619122px;}
.yb6{bottom:528.995708px;}
.y132{bottom:531.246719px;}
.y10e{bottom:531.246908px;}
.y71{bottom:532.372348px;}
.y12{bottom:537.999949px;}
.y4a{bottom:547.004150px;}
.y131{bottom:556.008223px;}
.y10d{bottom:559.384981px;}
.y70{bottom:560.510421px;}
.yeb{bottom:565.012424px;}
.y11{bottom:566.138023px;}
.y49{bottom:575.142223px;}
.y130{bottom:580.769728px;}
.yb5{bottom:583.020808px;}
.y10c{bottom:587.523054px;}
.y6f{bottom:588.648494px;}
.y10{bottom:594.276096px;}
.yea{bottom:604.405727px;}
.yb4{bottom:611.158882px;}
.y96{bottom:611.158944px;}
.y48{bottom:612.284480px;}
.y10b{bottom:615.661127px;}
.y6e{bottom:616.786567px;}
.yf{bottom:622.414169px;}
.y12f{bottom:634.794828px;}
.yb3{bottom:639.296955px;}
.y95{bottom:639.297017px;}
.y47{bottom:641.548076px;}
.ye9{bottom:643.799029px;}
.y10a{bottom:643.799200px;}
.y6d{bottom:644.924640px;}
.ye{bottom:650.552242px;}
.yb2{bottom:667.435028px;}
.y94{bottom:667.435090px;}
.yd{bottom:678.690315px;}
.y109{bottom:680.941457px;}
.ye8{bottom:683.192331px;}
.y6c{bottom:684.317942px;}
.yb1{bottom:695.573101px;}
.y93{bottom:695.573163px;}
.y46{bottom:695.573176px;}
.yc{bottom:706.828388px;}
.y6b{bottom:712.456016px;}
.ye7{bottom:722.585634px;}
.yb0{bottom:723.711174px;}
.y92{bottom:723.711236px;}
.y32{bottom:723.711242px;}
.y45{bottom:723.711249px;}
.yb{bottom:734.966461px;}
.y108{bottom:734.966557px;}
.y12e{bottom:740.593983px;}
.y6a{bottom:740.594089px;}
.yaf{bottom:751.849247px;}
.y91{bottom:751.849309px;}
.y31{bottom:751.849315px;}
.y44{bottom:751.849322px;}
.ye6{bottom:761.978936px;}
.ya{bottom:763.104535px;}
.y12d{bottom:768.732056px;}
.y69{bottom:768.732162px;}
.y107{bottom:774.359860px;}
.yae{bottom:779.987320px;}
.y90{bottom:779.987382px;}
.y30{bottom:779.987388px;}
.y43{bottom:779.987396px;}
.y12c{bottom:796.870129px;}
.y68{bottom:796.870235px;}
.ye5{bottom:801.372239px;}
.y106{bottom:802.497933px;}
.yad{bottom:808.125393px;}
.y8f{bottom:808.125456px;}
.y2f{bottom:808.125462px;}
.y42{bottom:808.125469px;}
.y12b{bottom:825.008203px;}
.y67{bottom:825.008308px;}
.y105{bottom:830.636006px;}
.yac{bottom:836.263467px;}
.y8e{bottom:836.263529px;}
.y2e{bottom:836.263535px;}
.y41{bottom:836.263542px;}
.ye4{bottom:840.765541px;}
.y9{bottom:843.016662px;}
.yd2{bottom:847.518867px;}
.y12a{bottom:853.146276px;}
.y66{bottom:853.146381px;}
.y104{bottom:858.774079px;}
.yab{bottom:864.401540px;}
.y8d{bottom:864.401602px;}
.y2d{bottom:864.401608px;}
.y40{bottom:864.401615px;}
.ye3{bottom:868.903614px;}
.yd1{bottom:875.656940px;}
.y129{bottom:881.284349px;}
.y8{bottom:886.912056px;}
.yaa{bottom:892.539613px;}
.y8c{bottom:892.539675px;}
.y2c{bottom:892.539681px;}
.y65{bottom:892.539684px;}
.y3f{bottom:892.539688px;}
.ye2{bottom:897.041687px;}
.y103{bottom:898.167381px;}
.yd0{bottom:903.795013px;}
.y128{bottom:909.422422px;}
.ya9{bottom:920.677686px;}
.y8b{bottom:920.677748px;}
.y2b{bottom:920.677754px;}
.y64{bottom:920.677757px;}
.y3e{bottom:920.677761px;}
.ye1{bottom:925.179760px;}
.y102{bottom:926.305454px;}
.y7{bottom:930.807450px;}
.ycf{bottom:931.933087px;}
.y127{bottom:948.815724px;}
.y8a{bottom:948.815821px;}
.y2a{bottom:948.815827px;}
.y63{bottom:948.815830px;}
.y3d{bottom:948.815834px;}
.ye0{bottom:953.317833px;}
.y101{bottom:954.443528px;}
.ya8{bottom:960.070988px;}
.yce{bottom:960.071160px;}
.y126{bottom:976.953797px;}
.y89{bottom:976.953894px;}
.y29{bottom:976.953900px;}
.y62{bottom:976.953903px;}
.ydf{bottom:981.455907px;}
.ya7{bottom:988.209061px;}
.y3c{bottom:988.209137px;}
.ycd{bottom:988.209233px;}
.y100{bottom:993.836830px;}
.y125{bottom:1005.091871px;}
.y88{bottom:1005.091967px;}
.y28{bottom:1005.091973px;}
.y61{bottom:1005.091976px;}
.yde{bottom:1009.593980px;}
.ya6{bottom:1016.347135px;}
.y3b{bottom:1016.347210px;}
.ycc{bottom:1016.347306px;}
.yff{bottom:1021.974903px;}
.y124{bottom:1033.229944px;}
.y87{bottom:1033.230041px;}
.y27{bottom:1033.230047px;}
.y60{bottom:1033.230049px;}
.ya5{bottom:1044.485208px;}
.y3a{bottom:1044.485283px;}
.ycb{bottom:1044.485379px;}
.ydd{bottom:1046.736236px;}
.y5f{bottom:1061.368122px;}
.yfe{bottom:1061.368205px;}
.y6{bottom:1070.372293px;}
.y123{bottom:1072.623246px;}
.ya4{bottom:1072.623281px;}
.y86{bottom:1072.623343px;}
.y26{bottom:1072.623349px;}
.y39{bottom:1072.623356px;}
.yca{bottom:1072.623452px;}
.yfd{bottom:1089.506279px;}
.y122{bottom:1100.761319px;}
.ydc{bottom:1100.761337px;}
.ya3{bottom:1100.761354px;}
.y85{bottom:1100.761416px;}
.y25{bottom:1100.761422px;}
.y5e{bottom:1100.761425px;}
.y38{bottom:1100.761429px;}
.yc9{bottom:1100.761525px;}
.y121{bottom:1128.899392px;}
.ydb{bottom:1128.899410px;}
.ya2{bottom:1128.899427px;}
.y84{bottom:1128.899489px;}
.y24{bottom:1128.899495px;}
.y5d{bottom:1128.899498px;}
.y37{bottom:1128.899502px;}
.yfc{bottom:1128.899581px;}
.yc8{bottom:1128.899598px;}
.y120{bottom:1157.037465px;}
.yda{bottom:1157.037483px;}
.ya1{bottom:1157.037500px;}
.y83{bottom:1157.037562px;}
.y23{bottom:1157.037568px;}
.y5c{bottom:1157.037571px;}
.y36{bottom:1157.037575px;}
.yfb{bottom:1157.037654px;}
.yc7{bottom:1157.037672px;}
.y1{bottom:1229.879973px;}
.h3{height:13.499999px;}
.h2{height:34.945310px;}
.h4{height:35.601530px;}
.hf{height:50.564997px;}
.hc{height:54.025100px;}
.hb{height:54.763725px;}
.h6{height:57.366497px;}
.h9{height:57.788568px;}
.hd{height:57.823740px;}
.he{height:58.527192px;}
.h8{height:63.943771px;}
.ha{height:78.663501px;}
.h7{height:117.995251px;}
.h5{height:1177.296971px;}
.h0{height:1262.879970px;}
.h1{height:1263.000000px;}
.w3{width:806.999906px;}
.w4{width:817.499954px;}
.w5{width:818.999966px;}
.w2{width:824.999906px;}
.w0{width:892.439940px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x5{left:16.882844px;}
.x9{left:33.765688px;}
.x6{left:37.142257px;}
.x1{left:39.679684px;}
.x3{left:43.499994px;}
.x7{left:61.903761px;}
.x4{left:372.548088px;}
.x8{left:823.640558px;}
.x2{left:830.320252px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws1{word-spacing:-15.851114pt;}
.ws3{word-spacing:-13.869725pt;}
.ws0{word-spacing:-11.854166pt;}
.ws2{word-spacing:0.000000pt;}
._5{margin-left:-15.968356pt;}
._9{margin-left:-10.026573pt;}
._4{margin-left:-7.753602pt;}
._a{margin-left:-6.807852pt;}
._7{margin-left:-5.909006pt;}
._1{margin-left:-4.729166pt;}
._3{margin-left:-3.249999pt;}
._2{margin-left:-2.354165pt;}
._6{margin-left:-1.055158pt;}
._8{width:0.914454pt;}
._b{width:2.432294pt;}
._0{width:392.416636pt;}
.fs0{font-size:42.666663pt;}
.fs5{font-size:56.026030pt;}
.fs1{font-size:64.029749pt;}
.fs3{font-size:72.033467pt;}
.fs4{font-size:96.044623pt;}
.fs2{font-size:144.066934pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:2.666700pt;}
.y82{bottom:7.003257pt;}
.y11f{bottom:17.007979pt;}
.y2{bottom:19.893363pt;}
.y4{bottom:22.560063pt;}
.yd9{bottom:23.010784pt;}
.yfa{bottom:26.012011pt;}
.y21{bottom:26.012078pt;}
.y9f{bottom:30.013933pt;}
.y81{bottom:32.014878pt;}
.ya0{bottom:37.406904pt;}
.y35{bottom:37.407060pt;}
.y5{bottom:37.407116pt;}
.y22{bottom:37.407138pt;}
.y5b{bottom:37.407216pt;}
.y11e{bottom:42.019600pt;}
.y34{bottom:48.022313pt;}
.yd8{bottom:48.022404pt;}
.yf9{bottom:51.023631pt;}
.y20{bottom:51.023698pt;}
.yc6{bottom:52.024111pt;}
.y9e{bottom:55.025553pt;}
.y80{bottom:57.026498pt;}
.y5a{bottom:66.030686pt;}
.y11d{bottom:67.031221pt;}
.yd7{bottom:73.034025pt;}
.yf8{bottom:76.035252pt;}
.y1f{bottom:76.035319pt;}
.yc5{bottom:77.035732pt;}
.y9d{bottom:80.037174pt;}
.y7f{bottom:82.038119pt;}
.y33{bottom:83.038581pt;}
.y59{bottom:91.042306pt;}
.y11c{bottom:92.042841pt;}
.yd6{bottom:98.045646pt;}
.y1e{bottom:101.046939pt;}
.yc4{bottom:102.047353pt;}
.y9c{bottom:105.048794pt;}
.y7e{bottom:107.049740pt;}
.yf7{bottom:109.050591pt;}
.y58{bottom:116.053927pt;}
.y11b{bottom:117.054462pt;}
.yd5{bottom:123.057266pt;}
.yc3{bottom:127.058973pt;}
.y9b{bottom:130.060415pt;}
.y7d{bottom:132.061360pt;}
.y1d{bottom:136.063208pt;}
.y57{bottom:141.065547pt;}
.y11a{bottom:142.066082pt;}
.yc2{bottom:152.070594pt;}
.y9a{bottom:155.072036pt;}
.yf6{bottom:157.072902pt;}
.y7c{bottom:157.072981pt;}
.yd4{bottom:158.073535pt;}
.y1c{bottom:161.074829pt;}
.y56{bottom:176.081816pt;}
.yc1{bottom:177.082214pt;}
.y119{bottom:177.082351pt;}
.y99{bottom:180.083656pt;}
.y1b{bottom:186.086449pt;}
.yf5{bottom:192.089171pt;}
.y7b{bottom:192.089249pt;}
.yd3{bottom:193.089804pt;}
.y55{bottom:201.093437pt;}
.yc0{bottom:202.093835pt;}
.y118{bottom:202.093972pt;}
.y1a{bottom:211.098070pt;}
.y98{bottom:215.099925pt;}
.yf4{bottom:217.100792pt;}
.y7a{bottom:217.100870pt;}
.y54{bottom:226.105057pt;}
.ybf{bottom:227.105455pt;}
.y117{bottom:227.105592pt;}
.y19{bottom:236.109690pt;}
.y79{bottom:242.112491pt;}
.y97{bottom:250.116194pt;}
.y53{bottom:251.116678pt;}
.yf3{bottom:252.117060pt;}
.y116{bottom:252.117213pt;}
.y18{bottom:261.121311pt;}
.ybe{bottom:262.121724pt;}
.y78{bottom:267.124111pt;}
.y52{bottom:276.128298pt;}
.yf2{bottom:277.128681pt;}
.y115{bottom:277.128833pt;}
.y17{bottom:286.132931pt;}
.ybd{bottom:287.133345pt;}
.y77{bottom:292.135732pt;}
.y51{bottom:301.139919pt;}
.y114{bottom:302.140454pt;}
.yf1{bottom:312.144950pt;}
.ybc{bottom:312.144965pt;}
.y76{bottom:317.147352pt;}
.y16{bottom:319.148271pt;}
.y50{bottom:336.156188pt;}
.yf0{bottom:337.156570pt;}
.ybb{bottom:337.156586pt;}
.y113{bottom:337.156723pt;}
.y75{bottom:342.158973pt;}
.y4f{bottom:361.167808pt;}
.yba{bottom:362.168206pt;}
.y112{bottom:362.168343pt;}
.y15{bottom:367.170582pt;}
.yef{bottom:372.172839pt;}
.y74{bottom:375.174312pt;}
.y136{bottom:384.178401pt;}
.y4e{bottom:386.179429pt;}
.yb9{bottom:387.179827pt;}
.y111{bottom:387.179964pt;}
.y14{bottom:392.182203pt;}
.yee{bottom:397.184460pt;}
.y135{bottom:406.188628pt;}
.y4d{bottom:411.191049pt;}
.yb8{bottom:412.191447pt;}
.y110{bottom:412.191584pt;}
.y73{bottom:423.196623pt;}
.y134{bottom:428.198854pt;}
.yed{bottom:432.200728pt;}
.y4c{bottom:436.202670pt;}
.yb7{bottom:437.203068pt;}
.y10f{bottom:447.207853pt;}
.y72{bottom:448.208244pt;}
.y133{bottom:450.209080pt;}
.y13{bottom:453.210557pt;}
.y4b{bottom:461.214291pt;}
.yec{bottom:467.216997pt;}
.yb6{bottom:470.218407pt;}
.y132{bottom:472.219306pt;}
.y10e{bottom:472.219474pt;}
.y71{bottom:473.219865pt;}
.y12{bottom:478.222177pt;}
.y4a{bottom:486.225911pt;}
.y131{bottom:494.229532pt;}
.y10d{bottom:497.231094pt;}
.y70{bottom:498.231485pt;}
.yeb{bottom:502.233266pt;}
.y11{bottom:503.233798pt;}
.y49{bottom:511.237532pt;}
.y130{bottom:516.239758pt;}
.yb5{bottom:518.240719pt;}
.y10c{bottom:522.242715pt;}
.y6f{bottom:523.243106pt;}
.y10{bottom:528.245418pt;}
.yea{bottom:537.249535pt;}
.yb4{bottom:543.252339pt;}
.y96{bottom:543.252394pt;}
.y48{bottom:544.252871pt;}
.y10b{bottom:547.254335pt;}
.y6e{bottom:548.254726pt;}
.yf{bottom:553.257039pt;}
.y12f{bottom:564.262069pt;}
.yb3{bottom:568.263960pt;}
.y95{bottom:568.264015pt;}
.y47{bottom:570.264956pt;}
.ye9{bottom:572.265804pt;}
.y10a{bottom:572.265956pt;}
.y6d{bottom:573.266347pt;}
.ye{bottom:578.268660pt;}
.yb2{bottom:593.275580pt;}
.y94{bottom:593.275635pt;}
.yd{bottom:603.280280pt;}
.y109{bottom:605.281295pt;}
.ye8{bottom:607.282072pt;}
.y6c{bottom:608.282616pt;}
.yb1{bottom:618.287201pt;}
.y93{bottom:618.287256pt;}
.y46{bottom:618.287268pt;}
.yc{bottom:628.291901pt;}
.y6b{bottom:633.294236pt;}
.ye7{bottom:642.298341pt;}
.yb0{bottom:643.298821pt;}
.y92{bottom:643.298877pt;}
.y32{bottom:643.298882pt;}
.y45{bottom:643.298888pt;}
.yb{bottom:653.303521pt;}
.y108{bottom:653.303606pt;}
.y12e{bottom:658.305763pt;}
.y6a{bottom:658.305857pt;}
.yaf{bottom:668.310442pt;}
.y91{bottom:668.310497pt;}
.y31{bottom:668.310502pt;}
.y44{bottom:668.310509pt;}
.ye6{bottom:677.314610pt;}
.ya{bottom:678.315142pt;}
.y12d{bottom:683.317383pt;}
.y69{bottom:683.317477pt;}
.y107{bottom:688.319875pt;}
.yae{bottom:693.322063pt;}
.y90{bottom:693.322118pt;}
.y30{bottom:693.322123pt;}
.y43{bottom:693.322129pt;}
.y12c{bottom:708.329004pt;}
.y68{bottom:708.329098pt;}
.ye5{bottom:712.330879pt;}
.y106{bottom:713.331496pt;}
.yad{bottom:718.333683pt;}
.y8f{bottom:718.333738pt;}
.y2f{bottom:718.333744pt;}
.y42{bottom:718.333750pt;}
.y12b{bottom:733.340624pt;}
.y67{bottom:733.340718pt;}
.y105{bottom:738.343116pt;}
.yac{bottom:743.345304pt;}
.y8e{bottom:743.345359pt;}
.y2e{bottom:743.345364pt;}
.y41{bottom:743.345370pt;}
.ye4{bottom:747.347147pt;}
.y9{bottom:749.348144pt;}
.yd2{bottom:753.350104pt;}
.y12a{bottom:758.352245pt;}
.y66{bottom:758.352339pt;}
.y104{bottom:763.354737pt;}
.yab{bottom:768.356924pt;}
.y8d{bottom:768.356979pt;}
.y2d{bottom:768.356985pt;}
.y40{bottom:768.356991pt;}
.ye3{bottom:772.358768pt;}
.yd1{bottom:778.361725pt;}
.y129{bottom:783.363866pt;}
.y8{bottom:788.366272pt;}
.yaa{bottom:793.368545pt;}
.y8c{bottom:793.368600pt;}
.y2c{bottom:793.368605pt;}
.y65{bottom:793.368608pt;}
.y3f{bottom:793.368612pt;}
.ye2{bottom:797.370389pt;}
.y103{bottom:798.371006pt;}
.yd0{bottom:803.373345pt;}
.y128{bottom:808.375486pt;}
.ya9{bottom:818.380165pt;}
.y8b{bottom:818.380220pt;}
.y2b{bottom:818.380226pt;}
.y64{bottom:818.380228pt;}
.y3e{bottom:818.380232pt;}
.ye1{bottom:822.382009pt;}
.y102{bottom:823.382626pt;}
.y7{bottom:827.384400pt;}
.ycf{bottom:828.384966pt;}
.y127{bottom:843.391755pt;}
.y8a{bottom:843.391841pt;}
.y2a{bottom:843.391846pt;}
.y63{bottom:843.391849pt;}
.y3d{bottom:843.391853pt;}
.ye0{bottom:847.393630pt;}
.y101{bottom:848.394247pt;}
.ya8{bottom:853.396434pt;}
.yce{bottom:853.396586pt;}
.y126{bottom:868.403375pt;}
.y89{bottom:868.403462pt;}
.y29{bottom:868.403467pt;}
.y62{bottom:868.403469pt;}
.ydf{bottom:872.405250pt;}
.ya7{bottom:878.408055pt;}
.y3c{bottom:878.408121pt;}
.ycd{bottom:878.408207pt;}
.y100{bottom:883.410516pt;}
.y125{bottom:893.414996pt;}
.y88{bottom:893.415082pt;}
.y28{bottom:893.415087pt;}
.y61{bottom:893.415090pt;}
.yde{bottom:897.416871pt;}
.ya6{bottom:903.419675pt;}
.y3b{bottom:903.419742pt;}
.ycc{bottom:903.419827pt;}
.yff{bottom:908.422136pt;}
.y124{bottom:918.426617pt;}
.y87{bottom:918.426703pt;}
.y27{bottom:918.426708pt;}
.y60{bottom:918.426710pt;}
.ya5{bottom:928.431296pt;}
.y3a{bottom:928.431363pt;}
.ycb{bottom:928.431448pt;}
.ydd{bottom:930.432210pt;}
.y5f{bottom:943.438331pt;}
.yfe{bottom:943.438405pt;}
.y6{bottom:951.442038pt;}
.y123{bottom:953.442885pt;}
.ya4{bottom:953.442916pt;}
.y86{bottom:953.442972pt;}
.y26{bottom:953.442977pt;}
.y39{bottom:953.442983pt;}
.yca{bottom:953.443069pt;}
.yfd{bottom:968.450025pt;}
.y122{bottom:978.454506pt;}
.ydc{bottom:978.454521pt;}
.ya3{bottom:978.454537pt;}
.y85{bottom:978.454592pt;}
.y25{bottom:978.454597pt;}
.y5e{bottom:978.454600pt;}
.y38{bottom:978.454604pt;}
.yc9{bottom:978.454689pt;}
.y121{bottom:1003.466126pt;}
.ydb{bottom:1003.466142pt;}
.ya2{bottom:1003.466157pt;}
.y84{bottom:1003.466213pt;}
.y24{bottom:1003.466218pt;}
.y5d{bottom:1003.466220pt;}
.y37{bottom:1003.466224pt;}
.yfc{bottom:1003.466294pt;}
.yc8{bottom:1003.466310pt;}
.y120{bottom:1028.477747pt;}
.yda{bottom:1028.477763pt;}
.ya1{bottom:1028.477778pt;}
.y83{bottom:1028.477833pt;}
.y23{bottom:1028.477838pt;}
.y5c{bottom:1028.477841pt;}
.y36{bottom:1028.477845pt;}
.yfb{bottom:1028.477915pt;}
.yc7{bottom:1028.477930pt;}
.y1{bottom:1093.226642pt;}
.h3{height:12.000000pt;}
.h2{height:31.062497pt;}
.h4{height:31.645804pt;}
.hf{height:44.946664pt;}
.hc{height:48.022311pt;}
.hb{height:48.678867pt;}
.h6{height:50.992441pt;}
.h9{height:51.367616pt;}
.hd{height:51.398880pt;}
.he{height:52.024171pt;}
.h8{height:56.838908pt;}
.ha{height:69.923112pt;}
.h7{height:104.884668pt;}
.h5{height:1046.486196pt;}
.h0{height:1122.559973pt;}
.h1{height:1122.666667pt;}
.w3{width:717.333250pt;}
.w4{width:726.666626pt;}
.w5{width:727.999970pt;}
.w2{width:733.333249pt;}
.w0{width:793.279947pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x5{left:15.006972pt;}
.x9{left:30.013945pt;}
.x6{left:33.015339pt;}
.x1{left:35.270830pt;}
.x3{left:38.666661pt;}
.x7{left:55.025565pt;}
.x4{left:331.153856pt;}
.x8{left:732.124940pt;}
.x2{left:738.062446pt;}
}




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