
    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_ae694aa8ca03e70843886cf6.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.064941;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_21cf7b9a563e790bf79d3eec.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.949219;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_ad0663ac6190c23f5b0eac25.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.948242;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_32514887d0fc21c89a5cc063.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.708008;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_c389a4c54ddb1c971867330b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.065430;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_b9accaa160d268fcd41e5b35.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.202148;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_d22e14fb5fc34a58ed85d697.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.906250;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_d358d646c96d7e73c5794bca.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.941406;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_0afd3954b2fa01ec79e3e04a.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_9c45b44ca402303be73c30dd.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.249992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249992,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249994,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249996,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249997,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:33.988136px;}
.ls1{letter-spacing:38.300760px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(79,129,189),0 0.015em rgb(79,129,189),0.015em 0 rgb(79,129,189),0 -0.015em  rgb(79,129,189);}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(79,129,189);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-81.988667px;}
.ws6{word-spacing:-70.075882px;}
.ws8{word-spacing:-64.469973px;}
.ws0{word-spacing:-44.147772px;}
.ws2{word-spacing:-44.147588px;}
.ws7{word-spacing:-32.234895px;}
.ws4{word-spacing:-14.183232px;}
.ws1{word-spacing:-9.712632px;}
.ws5{word-spacing:0.000000px;}
._19{margin-left:-4.630151px;}
._6{margin-left:-3.586190px;}
._4{margin-left:-2.197363px;}
._0{margin-left:-1.059560px;}
._1{width:1.217246px;}
._5{width:2.965585px;}
._3{width:4.326412px;}
._2{width:5.350947px;}
._8{width:6.375481px;}
._15{width:7.607370px;}
._17{width:8.610130px;}
._12{width:9.920261px;}
._10{width:10.980517px;}
._7{width:12.378093px;}
._1d{width:15.190704px;}
._11{width:16.246248px;}
._c{width:17.499215px;}
._9{width:18.889486px;}
._a{width:20.212332px;}
._b{width:21.308481px;}
._16{width:22.316086px;}
._18{width:23.445306px;}
._1a{width:24.684466px;}
._1b{width:26.687148px;}
._e{width:27.750520px;}
._d{width:28.853470px;}
._f{width:30.135550px;}
._14{width:31.174651px;}
._13{width:32.572270px;}
._1e{width:35.844895px;}
._1f{width:36.876403px;}
._1c{width:42.420758px;}
.fc3{color:rgb(79,129,189);}
.fc2{color:rgb(54,95,145);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:44.147588px;}
.fs1{font-size:44.147772px;}
.fs0{font-size:44.148325px;}
.fs3{font-size:64.469236px;}
.fsa{font-size:64.469789px;}
.fs6{font-size:64.469973px;}
.fs7{font-size:70.075513px;}
.fs8{font-size:70.075882px;}
.fs4{font-size:81.988483px;}
.fs5{font-size:81.988667px;}
.fs9{font-size:105.113823px;}
.y0{bottom:0.000000px;}
.y11{bottom:108.909593px;}
.y10{bottom:127.806960px;}
.y2f{bottom:273.973329px;}
.yc6{bottom:274.145481px;}
.yd4{bottom:275.945674px;}
.y9c{bottom:277.386865px;}
.y87{bottom:279.010008px;}
.ye1{bottom:291.788601px;}
.yc5{bottom:293.047747px;}
.yb6{bottom:293.411743px;}
.y2e{bottom:295.748084px;}
.y4e{bottom:297.548277px;}
.y86{bottom:297.912274px;}
.y6c{bottom:299.525521px;}
.yb5{bottom:312.304115px;}
.yf7{bottom:313.563260px;}
.yd3{bottom:315.186403px;}
.y7f{bottom:315.727450px;}
.y4d{bottom:316.445548px;}
.y9b{bottom:316.627594px;}
.y2d{bottom:317.350592px;}
.y6b{bottom:318.245741px;}
.yf6{bottom:330.665238px;}
.yd0{bottom:331.029234px;}
.yc4{bottom:332.288380px;}
.yd2{bottom:333.906623px;}
.y7e{bottom:334.629716px;}
.y4c{bottom:335.347814px;}
.y6a{bottom:337.148007px;}
.y2c{bottom:338.943301px;}
.ycf{bottom:349.931500px;}
.yc3{bottom:351.190646px;}
.yb4{bottom:351.544748px;}
.yd1{bottom:352.808889px;}
.y7d{bottom:353.526987px;}
.y9a{bottom:354.422136px;}
.y69{bottom:355.863328px;}
.y2b{bottom:360.727855px;}
.yce{bottom:368.646821px;}
.yc2{bottom:369.905967px;}
.yb3{bottom:370.265064px;}
.yd7{bottom:371.524209px;}
.y7c{bottom:372.247207px;}
.y99{bottom:373.147351px;}
.y4b{bottom:374.588447px;}
.y68{bottom:374.765594px;}
.y2a{bottom:382.148412px;}
.ycd{bottom:387.548991px;}
.ye0{bottom:387.731038px;}
.yf5{bottom:388.626187px;}
.yb2{bottom:389.167234px;}
.yd6{bottom:390.426380px;}
.y7b{bottom:390.962528px;}
.y98{bottom:392.049522px;}
.y4a{bottom:393.490714px;}
.y85{bottom:393.672664px;}
.y81{bottom:395.108956px;}
.y29{bottom:403.923071px;}
.y10d{bottom:404.828115px;}
.yf4{bottom:407.528453px;}
.yb1{bottom:407.882555px;}
.yc1{bottom:409.151595px;}
.y97{bottom:410.764842px;}
.y49{bottom:412.206034px;}
.y84{bottom:412.565131px;}
.y67{bottom:414.006227px;}
.y28{bottom:425.707625px;}
.y10c{bottom:426.607770px;}
.yb0{bottom:426.966771px;}
.ycc{bottom:429.485158px;}
.y96{bottom:429.667108px;}
.y7a{bottom:430.385207px;}
.y48{bottom:431.108300px;}
.y83{bottom:431.290251px;}
.y66{bottom:432.908493px;}
.ydf{bottom:445.691986px;}
.yf3{bottom:446.769086px;}
.y27{bottom:447.128183px;}
.yc0{bottom:448.387328px;}
.y79{bottom:449.105427px;}
.y47{bottom:449.828520px;}
.ya0{bottom:450.010471px;}
.y10a{bottom:450.725237px;}
.y10b{bottom:450.728569px;}
.y65{bottom:451.805764px;}
.yde{bottom:464.584358px;}
.yf2{bottom:465.843503px;}
.yaf{bottom:466.207500px;}
.ybf{bottom:467.284647px;}
.y78{bottom:468.007693px;}
.y26{bottom:468.907789px;}
.y64{bottom:470.526032px;}
.yf1{bottom:484.568671px;}
.yae{bottom:484.927720px;}
.ybe{bottom:486.186866px;}
.y77{bottom:486.723013px;}
.y95{bottom:487.628057px;}
.y109{bottom:489.240383px;}
.y108{bottom:489.251200px;}
.y63{bottom:489.428250px;}
.y46{bottom:490.323594px;}
.y25{bottom:490.510345px;}
.yf0{bottom:503.288891px;}
.yad{bottom:503.825039px;}
.y76{bottom:505.625232px;}
.y94{bottom:506.525328px;}
.y80{bottom:509.766713px;}
.y24{bottom:512.285052px;}
.y106{bottom:513.353628px;}
.y107{bottom:513.372046px;}
.yac{bottom:522.545259px;}
.y93{bottom:525.427594px;}
.y62{bottom:528.668931px;}
.y45{bottom:529.205079px;}
.y44{bottom:529.221411px;}
.y23{bottom:533.705610px;}
.yef{bottom:542.706671px;}
.ydd{bottom:543.060820px;}
.y92{bottom:544.329813px;}
.y75{bottom:545.941533px;}
.y61{bottom:547.384252px;}
.y105{bottom:549.366443px;}
.y43{bottom:553.143976px;}
.y42{bottom:553.145718px;}
.y22{bottom:555.490116px;}
.yee{bottom:561.421991px;}
.yab{bottom:561.785940px;}
.ybd{bottom:563.045133px;}
.yd5{bottom:564.663328px;}
.y60{bottom:566.286470px;}
.y104{bottom:571.141150px;}
.y21{bottom:577.264823px;}
.yed{bottom:580.324209px;}
.ydc{bottom:580.688206px;}
.y91{bottom:583.570494px;}
.y5f{bottom:585.006738px;}
.y74{bottom:586.620033px;}
.y41{bottom:594.383738px;}
.y103{bottom:595.262045px;}
.y102{bottom:595.263248px;}
.y20{bottom:598.685380px;}
.yec{bottom:599.049377px;}
.yaa{bottom:601.021721px;}
.ybc{bottom:602.280915px;}
.y9f{bottom:604.086007px;}
.y73{bottom:605.527199px;}
.y40{bottom:615.223079px;}
.ya9{bottom:619.928887px;}
.y1f{bottom:620.460087px;}
.ybb{bottom:621.188032px;}
.y90{bottom:622.806275px;}
.y5e{bottom:624.247419px;}
.y100{bottom:633.951556px;}
.y101{bottom:633.966578px;}
.y3f{bottom:636.125392px;}
.yeb{bottom:638.285158px;}
.ya8{bottom:638.649107px;}
.yba{bottom:639.908300px;}
.y8f{bottom:641.703594px;}
.y1e{bottom:642.062643px;}
.y5d{bottom:643.321789px;}
.y3e{bottom:656.838836px;}
.yea{bottom:657.182429px;}
.ydb{bottom:657.546426px;}
.yff{bottom:657.891687px;}
.yb9{bottom:658.805571px;}
.ycb{bottom:660.423814px;}
.y5c{bottom:662.046956px;}
.y1d{bottom:665.458907px;}
.ye9{bottom:676.084695px;}
.yda{bottom:676.266646px;}
.y3d{bottom:677.678225px;}
.ya7{bottom:678.066887px;}
.yca{bottom:679.148981px;}
.y5b{bottom:680.939327px;}
.yd9{bottom:695.163964px;}
.yfe{bottom:696.422540px;}
.yfd{bottom:696.423158px;}
.ya6{bottom:696.782207px;}
.yb8{bottom:698.041353px;}
.y3c{bottom:698.580538px;}
.y5a{bottom:699.664495px;}
.y82{bottom:701.282738px;}
.y1c{bottom:702.905880px;}
.ye8{bottom:715.325376px;}
.ya5{bottom:715.684425px;}
.yc9{bottom:716.766520px;}
.y8e{bottom:718.566713px;}
.y3b{bottom:719.482851px;}
.y72{bottom:720.189855px;}
.ya4{bottom:734.581744px;}
.yfb{bottom:735.299717px;}
.yfc{bottom:735.304790px;}
.yd8{bottom:737.109882px;}
.y8d{bottom:737.282034px;}
.y59{bottom:738.900276px;}
.y1b{bottom:739.264273px;}
.y3a{bottom:740.322192px;}
.ya3{bottom:753.301964px;}
.ye7{bottom:754.561158px;}
.y8c{bottom:756.184300px;}
.y58{bottom:757.807442px;}
.yf9{bottom:759.239848px;}
.yfa{bottom:759.243638px;}
.y1a{bottom:760.866781px;}
.y39{bottom:761.035637px;}
.ya2{bottom:772.026171px;}
.ye6{bottom:773.466306px;}
.y8b{bottom:774.906489px;}
.y57{bottom:776.527662px;}
.y9e{bottom:778.140957px;}
.y38{bottom:781.749081px;}
.yc8{bottom:793.801839px;}
.yf8{bottom:795.242022px;}
.y56{bottom:795.423011px;}
.y9d{bottom:797.044184px;}
.y19{bottom:799.738216px;}
.y18{bottom:799.743513px;}
.y37{bottom:802.651394px;}
.yc7{bottom:812.705018px;}
.ya1{bottom:813.964211px;}
.y55{bottom:814.145201px;}
.y71{bottom:815.766374px;}
.y36{bottom:823.490734px;}
.ye5{bottom:831.427255px;}
.y8a{bottom:833.221540px;}
.y70{bottom:834.661723px;}
.y17{bottom:835.739879px;}
.ye4{bottom:850.322604px;}
.y89{bottom:851.943777px;}
.y54{bottom:853.383912px;}
.y35{bottom:868.679644px;}
.y34{bottom:868.703231px;}
.ye3{bottom:869.044794px;}
.y88{bottom:870.846980px;}
.y16{bottom:872.106150px;}
.y53{bottom:872.460275px;}
.y52{bottom:891.182489px;}
.y33{bottom:907.205349px;}
.ye2{bottom:908.283529px;}
.y51{bottom:910.085692px;}
.y6f{bottom:911.706864px;}
.y14{bottom:911.866074px;}
.y15{bottom:911.876881px;}
.y32{bottom:928.800028px;}
.y6e{bottom:930.421200px;}
.yb7{bottom:947.703254px;}
.y6d{bottom:949.324427px;}
.y13{bottom:955.082954px;}
.y31{bottom:964.985285px;}
.y50{bottom:968.038763px;}
.y12{bottom:982.796105px;}
.y30{bottom:986.760976px;}
.y4f{bottom:986.941966px;}
.yf{bottom:1008.182495px;}
.ye{bottom:1027.257398px;}
.yd{bottom:1027.258857px;}
.yb{bottom:1041.475570px;}
.yc{bottom:1041.484645px;}
.ya{bottom:1054.436589px;}
.y9{bottom:1067.219772px;}
.y8{bottom:1079.997561px;}
.y7{bottom:1092.775349px;}
.y4{bottom:1106.983242px;}
.y5{bottom:1106.997456px;}
.y6{bottom:1107.005454px;}
.y3{bottom:1120.497395px;}
.y2{bottom:1133.458431px;}
.y1{bottom:1146.236220px;}
.h4{height:34.317852px;}
.h5{height:35.007674px;}
.h6{height:35.050763px;}
.h3{height:36.732326px;}
.h2{height:37.379490px;}
.ha{height:50.115331px;}
.h13{height:50.807787px;}
.h10{height:50.807979px;}
.h11{height:50.870808px;}
.h12{height:50.871000px;}
.he{height:53.389044px;}
.hf{height:53.640879px;}
.h7{height:54.584793px;}
.hc{height:57.210388px;}
.h9{height:68.217133px;}
.h8{height:69.417983px;}
.hb{height:71.752125px;}
.hd{height:87.047282px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:131.400476px;}
.x13{left:140.755043px;}
.x1b{left:147.447355px;}
.x10{left:153.360724px;}
.x28{left:163.620599px;}
.x2c{left:179.643471px;}
.xc{left:194.403502px;}
.x2a{left:211.862341px;}
.x11{left:219.058269px;}
.x1c{left:244.443225px;}
.x1d{left:252.524061px;}
.x14{left:257.732379px;}
.x2{left:262.978782px;}
.x3{left:265.141998px;}
.x4{left:279.000328px;}
.x5{left:288.379644px;}
.x2e{left:292.141974px;}
.x18{left:300.601988px;}
.x1e{left:316.978998px;}
.x6{left:323.998645px;}
.x2f{left:325.443167px;}
.x17{left:332.104716px;}
.xd{left:336.776023px;}
.x7{left:339.475927px;}
.x1a{left:345.788909px;}
.x8{left:350.461679px;}
.x2d{left:354.954504px;}
.x19{left:356.044597px;}
.x9{left:361.434835px;}
.xa{left:389.176703px;}
.x1f{left:395.816185px;}
.x16{left:401.224983px;}
.xe{left:403.195694px;}
.xb{left:410.757854px;}
.x29{left:437.945380px;}
.x12{left:442.265881px;}
.x20{left:460.264064px;}
.x21{left:467.462259px;}
.x2b{left:495.538634px;}
.xf{left:534.597527px;}
.x31{left:538.740527px;}
.x22{left:563.938617px;}
.x23{left:571.342761px;}
.x15{left:627.112534px;}
.x24{left:635.588007px;}
.x25{left:642.799945px;}
.x30{left:645.307214px;}
.x26{left:707.045647px;}
.x27{left:714.446043px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:30.211677pt;}
.ls1{letter-spacing:34.045120pt;}
.ws3{word-spacing:-72.878816pt;}
.ws6{word-spacing:-62.289673pt;}
.ws8{word-spacing:-57.306643pt;}
.ws0{word-spacing:-39.242464pt;}
.ws2{word-spacing:-39.242300pt;}
.ws7{word-spacing:-28.653240pt;}
.ws4{word-spacing:-12.607317pt;}
.ws1{word-spacing:-8.633450pt;}
.ws5{word-spacing:0.000000pt;}
._19{margin-left:-4.115690pt;}
._6{margin-left:-3.187725pt;}
._4{margin-left:-1.953211pt;}
._0{margin-left:-0.941831pt;}
._1{width:1.081997pt;}
._5{width:2.636075pt;}
._3{width:3.845700pt;}
._2{width:4.756397pt;}
._8{width:5.667094pt;}
._15{width:6.762107pt;}
._17{width:7.653449pt;}
._12{width:8.818010pt;}
._10{width:9.760460pt;}
._7{width:11.002750pt;}
._1d{width:13.502848pt;}
._11{width:14.441109pt;}
._c{width:15.554858pt;}
._9{width:16.790654pt;}
._a{width:17.966517pt;}
._b{width:18.940872pt;}
._16{width:19.836521pt;}
._18{width:20.840272pt;}
._1a{width:21.941747pt;}
._1b{width:23.721909pt;}
._e{width:24.667129pt;}
._d{width:25.647529pt;}
._f{width:26.787155pt;}
._14{width:27.710801pt;}
._13{width:28.953129pt;}
._1e{width:31.862129pt;}
._1f{width:32.779025pt;}
._1c{width:37.707340pt;}
.fs2{font-size:39.242300pt;}
.fs1{font-size:39.242464pt;}
.fs0{font-size:39.242956pt;}
.fs3{font-size:57.305988pt;}
.fsa{font-size:57.306479pt;}
.fs6{font-size:57.306643pt;}
.fs7{font-size:62.289345pt;}
.fs8{font-size:62.289673pt;}
.fs4{font-size:72.878652pt;}
.fs5{font-size:72.878816pt;}
.fs9{font-size:93.434509pt;}
.y0{bottom:0.000000pt;}
.y11{bottom:96.808527pt;}
.y10{bottom:113.606187pt;}
.y2f{bottom:243.531848pt;}
.yc6{bottom:243.684872pt;}
.yd4{bottom:245.285043pt;}
.y9c{bottom:246.566103pt;}
.y87{bottom:248.008896pt;}
.ye1{bottom:259.367646pt;}
.yc5{bottom:260.486886pt;}
.yb6{bottom:260.810439pt;}
.y2e{bottom:262.887186pt;}
.y4e{bottom:264.487358pt;}
.y86{bottom:264.810910pt;}
.y6c{bottom:266.244908pt;}
.yb5{bottom:277.603658pt;}
.yf7{bottom:278.722898pt;}
.yd3{bottom:280.165691pt;}
.y7f{bottom:280.646622pt;}
.y4d{bottom:281.284932pt;}
.y9b{bottom:281.446751pt;}
.y2d{bottom:282.089415pt;}
.y6b{bottom:282.885103pt;}
.yf6{bottom:293.924656pt;}
.yd0{bottom:294.248208pt;}
.yc4{bottom:295.367449pt;}
.yd2{bottom:296.805887pt;}
.y7e{bottom:297.448637pt;}
.y4c{bottom:298.086946pt;}
.y6a{bottom:299.687118pt;}
.y2c{bottom:301.282934pt;}
.ycf{bottom:311.050223pt;}
.yc3{bottom:312.169463pt;}
.yb4{bottom:312.484220pt;}
.yd1{bottom:313.607901pt;}
.y7d{bottom:314.246211pt;}
.y9a{bottom:315.041899pt;}
.y69{bottom:316.322958pt;}
.y2b{bottom:320.646982pt;}
.yce{bottom:327.686063pt;}
.yc2{bottom:328.805304pt;}
.yb3{bottom:329.124501pt;}
.yd7{bottom:330.243742pt;}
.y7c{bottom:330.886406pt;}
.y99{bottom:331.686535pt;}
.y4b{bottom:332.967509pt;}
.y68{bottom:333.124973pt;}
.y2a{bottom:339.687478pt;}
.ycd{bottom:344.487992pt;}
.ye0{bottom:344.649811pt;}
.yf5{bottom:345.445499pt;}
.yb2{bottom:345.926430pt;}
.yd6{bottom:347.045671pt;}
.y7b{bottom:347.522247pt;}
.y98{bottom:348.488464pt;}
.y4a{bottom:349.769523pt;}
.y85{bottom:349.931257pt;}
.y81{bottom:351.207961pt;}
.y29{bottom:359.042730pt;}
.y10d{bottom:359.847214pt;}
.yf4{bottom:362.247514pt;}
.yb1{bottom:362.562271pt;}
.yc1{bottom:363.690307pt;}
.y97{bottom:365.124304pt;}
.y49{bottom:366.405364pt;}
.y84{bottom:366.724561pt;}
.y67{bottom:368.005535pt;}
.y28{bottom:378.406778pt;}
.y10c{bottom:379.206907pt;}
.yb0{bottom:379.526019pt;}
.ycc{bottom:381.764585pt;}
.y96{bottom:381.926319pt;}
.y7a{bottom:382.564628pt;}
.y48{bottom:383.207378pt;}
.y83{bottom:383.369112pt;}
.y66{bottom:384.807550pt;}
.ydf{bottom:396.170655pt;}
.yf3{bottom:397.128076pt;}
.y27{bottom:397.447274pt;}
.yc0{bottom:398.566514pt;}
.y79{bottom:399.204824pt;}
.y47{bottom:399.847574pt;}
.ya0{bottom:400.009307pt;}
.y10a{bottom:400.644655pt;}
.y10b{bottom:400.647617pt;}
.y65{bottom:401.605124pt;}
.yde{bottom:412.963874pt;}
.yf2{bottom:414.083114pt;}
.yaf{bottom:414.406667pt;}
.ybf{bottom:415.364131pt;}
.y78{bottom:416.006838pt;}
.y26{bottom:416.806924pt;}
.y64{bottom:418.245362pt;}
.yf1{bottom:430.727707pt;}
.yae{bottom:431.046862pt;}
.ybe{bottom:432.166103pt;}
.y77{bottom:432.642679pt;}
.y95{bottom:433.447162pt;}
.y109{bottom:434.880340pt;}
.y108{bottom:434.889955pt;}
.y63{bottom:435.047334pt;}
.y46{bottom:435.843195pt;}
.y25{bottom:436.009196pt;}
.yf0{bottom:447.367903pt;}
.yad{bottom:447.844479pt;}
.y76{bottom:449.444650pt;}
.y94{bottom:450.244736pt;}
.y80{bottom:453.125967pt;}
.y24{bottom:455.364491pt;}
.y106{bottom:456.314336pt;}
.y107{bottom:456.330708pt;}
.yac{bottom:464.484674pt;}
.y93{bottom:467.046751pt;}
.y62{bottom:469.927939pt;}
.y45{bottom:470.404515pt;}
.y44{bottom:470.419032pt;}
.y23{bottom:474.404986pt;}
.yef{bottom:482.405929pt;}
.ydd{bottom:482.720729pt;}
.y92{bottom:483.848722pt;}
.y75{bottom:485.281362pt;}
.y61{bottom:486.563779pt;}
.y105{bottom:488.325727pt;}
.y43{bottom:491.683534pt;}
.y42{bottom:491.685082pt;}
.y22{bottom:493.768992pt;}
.yee{bottom:499.041770pt;}
.yab{bottom:499.365280pt;}
.ybd{bottom:500.484563pt;}
.yd5{bottom:501.922958pt;}
.y60{bottom:503.365751pt;}
.y104{bottom:507.681022pt;}
.y21{bottom:513.124287pt;}
.yed{bottom:515.843742pt;}
.ydc{bottom:516.167294pt;}
.y91{bottom:518.729328pt;}
.y5f{bottom:520.005989pt;}
.y74{bottom:521.440030pt;}
.y41{bottom:528.341100pt;}
.y103{bottom:529.121818pt;}
.y102{bottom:529.122887pt;}
.y20{bottom:532.164782pt;}
.yec{bottom:532.488335pt;}
.yaa{bottom:534.241530pt;}
.ybc{bottom:535.360813pt;}
.y9f{bottom:536.965340pt;}
.y73{bottom:538.246399pt;}
.y40{bottom:546.864959pt;}
.ya9{bottom:551.047899pt;}
.y1f{bottom:551.520078pt;}
.ybb{bottom:552.167140pt;}
.y90{bottom:553.605578pt;}
.y5e{bottom:554.886595pt;}
.y100{bottom:563.512494pt;}
.y101{bottom:563.525847pt;}
.y3f{bottom:565.444793pt;}
.yeb{bottom:567.364585pt;}
.ya8{bottom:567.688095pt;}
.yba{bottom:568.807378pt;}
.y8f{bottom:570.403195pt;}
.y1e{bottom:570.722349pt;}
.y5d{bottom:571.841590pt;}
.y3e{bottom:583.856743pt;}
.yea{bottom:584.162159pt;}
.ydb{bottom:584.485712pt;}
.yff{bottom:584.792611pt;}
.yb9{bottom:585.604952pt;}
.ycb{bottom:587.043390pt;}
.y5c{bottom:588.486183pt;}
.y1d{bottom:591.519029pt;}
.ye9{bottom:600.964174pt;}
.yda{bottom:601.125907pt;}
.y3d{bottom:602.380645pt;}
.ya7{bottom:602.726121pt;}
.yca{bottom:603.687983pt;}
.y5b{bottom:605.279402pt;}
.yd9{bottom:617.923524pt;}
.yfe{bottom:619.042258pt;}
.yfd{bottom:619.042807pt;}
.ya6{bottom:619.361962pt;}
.yb8{bottom:620.481202pt;}
.y3c{bottom:620.960478pt;}
.y5a{bottom:621.923995pt;}
.y82{bottom:623.362433pt;}
.y1c{bottom:624.805226pt;}
.ye8{bottom:635.844779pt;}
.ya5{bottom:636.163934pt;}
.yc9{bottom:637.125796pt;}
.y8e{bottom:638.725967pt;}
.y3b{bottom:639.540312pt;}
.y72{bottom:640.168760pt;}
.ya4{bottom:652.961550pt;}
.yfb{bottom:653.599749pt;}
.yfc{bottom:653.604258pt;}
.yd8{bottom:655.208784pt;}
.y8d{bottom:655.361808pt;}
.y59{bottom:656.800246pt;}
.y1b{bottom:657.123798pt;}
.y3a{bottom:658.064171pt;}
.ya3{bottom:669.601746pt;}
.ye7{bottom:670.721029pt;}
.y8c{bottom:672.163822pt;}
.y58{bottom:673.606615pt;}
.yf9{bottom:674.879865pt;}
.yfa{bottom:674.883234pt;}
.y1a{bottom:676.326027pt;}
.y39{bottom:676.476121pt;}
.ya2{bottom:686.245485pt;}
.ye6{bottom:687.525605pt;}
.y8b{bottom:688.805768pt;}
.y57{bottom:690.246811pt;}
.y9e{bottom:691.680851pt;}
.y38{bottom:694.888072pt;}
.yc8{bottom:705.601634pt;}
.yf8{bottom:706.881797pt;}
.y56{bottom:707.042677pt;}
.y9d{bottom:708.483719pt;}
.y19{bottom:710.878415pt;}
.y18{bottom:710.883123pt;}
.y37{bottom:713.467905pt;}
.yc7{bottom:722.404460pt;}
.ya1{bottom:723.523743pt;}
.y55{bottom:723.684623pt;}
.y71{bottom:725.125665pt;}
.y36{bottom:731.991764pt;}
.ye5{bottom:739.046449pt;}
.y8a{bottom:740.641369pt;}
.y70{bottom:741.921532pt;}
.y17{bottom:742.879892pt;}
.ye4{bottom:755.842315pt;}
.y89{bottom:757.283357pt;}
.y54{bottom:758.563478pt;}
.y35{bottom:772.159683pt;}
.y34{bottom:772.180650pt;}
.ye3{bottom:772.484261pt;}
.y88{bottom:774.086205pt;}
.y16{bottom:775.205466pt;}
.y53{bottom:775.520245pt;}
.y52{bottom:792.162212pt;}
.y33{bottom:806.404755pt;}
.ye2{bottom:807.363137pt;}
.y51{bottom:808.965059pt;}
.y6f{bottom:810.406102pt;}
.y14{bottom:810.547621pt;}
.y15{bottom:810.557228pt;}
.y32{bottom:825.600024pt;}
.y6e{bottom:827.041067pt;}
.yb7{bottom:842.402893pt;}
.y6d{bottom:843.843935pt;}
.y13{bottom:848.962626pt;}
.y31{bottom:857.764697pt;}
.y50{bottom:860.478901pt;}
.y12{bottom:873.596538pt;}
.y30{bottom:877.120868pt;}
.y4f{bottom:877.281748pt;}
.yf{bottom:896.162217pt;}
.ye{bottom:913.117687pt;}
.yd{bottom:913.118984pt;}
.yb{bottom:925.756062pt;}
.yc{bottom:925.764129pt;}
.ya{bottom:937.276968pt;}
.y9{bottom:948.639797pt;}
.y8{bottom:959.997832pt;}
.y7{bottom:971.355866pt;}
.y4{bottom:983.985104pt;}
.y5{bottom:983.997739pt;}
.y6{bottom:984.004848pt;}
.y3{bottom:995.997685pt;}
.y2{bottom:1007.518606pt;}
.y1{bottom:1018.876640pt;}
.h4{height:30.504757pt;}
.h5{height:31.117932pt;}
.h6{height:31.156234pt;}
.h3{height:32.650957pt;}
.h2{height:33.226214pt;}
.ha{height:44.546961pt;}
.h13{height:45.162477pt;}
.h10{height:45.162648pt;}
.h11{height:45.218496pt;}
.h12{height:45.218666pt;}
.he{height:47.456928pt;}
.hf{height:47.680782pt;}
.h7{height:48.519816pt;}
.hc{height:50.853678pt;}
.h9{height:60.637452pt;}
.h8{height:61.704874pt;}
.hb{height:63.779666pt;}
.hd{height:77.375362pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:116.800423pt;}
.x13{left:125.115594pt;}
.x1b{left:131.064316pt;}
.x10{left:136.320644pt;}
.x28{left:145.440532pt;}
.x2c{left:159.683086pt;}
.xc{left:172.803113pt;}
.x2a{left:188.322081pt;}
.x11{left:194.718461pt;}
.x1c{left:217.282867pt;}
.x1d{left:224.465832pt;}
.x14{left:229.095448pt;}
.x2{left:233.758917pt;}
.x3{left:235.681776pt;}
.x4{left:248.000291pt;}
.x5{left:256.337461pt;}
.x2e{left:259.681755pt;}
.x18{left:267.201767pt;}
.x1e{left:281.759109pt;}
.x6{left:287.998795pt;}
.x2f{left:289.282815pt;}
.x17{left:295.204192pt;}
.xd{left:299.356465pt;}
.x7{left:301.756380pt;}
.x1a{left:307.367919pt;}
.x8{left:311.521493pt;}
.x2d{left:315.515115pt;}
.x19{left:316.484087pt;}
.x9{left:321.275409pt;}
.xa{left:345.934848pt;}
.x1f{left:351.836609pt;}
.x16{left:356.644429pt;}
.xe{left:358.396173pt;}
.xb{left:365.118092pt;}
.x29{left:389.284782pt;}
.x12{left:393.125228pt;}
.x20{left:409.123613pt;}
.x21{left:415.522008pt;}
.x2b{left:440.478786pt;}
.xf{left:475.197802pt;}
.x31{left:478.880468pt;}
.x22{left:501.278770pt;}
.x23{left:507.860232pt;}
.x15{left:557.433364pt;}
.x24{left:564.967117pt;}
.x25{left:571.377729pt;}
.x30{left:573.606412pt;}
.x26{left:628.485020pt;}
.x27{left:635.063150pt;}
}




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