
    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_201bd65127954aa14328a0d4.woff')format("woff");}.ff1{font-family:ff1;line-height:0.960000;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_ad420c580c3620831bea10af.woff')format("woff");}.ff2{font-family:ff2;line-height:0.959000;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_0cac97a3990e7038fd066a57.woff')format("woff");}.ff3{font-family:ff3;line-height:0.959000;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_65b256a937b9e62758515e00.woff')format("woff");}.ff4{font-family:ff4;line-height:0.854000;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_e77f70f43a83ec318e7297de.woff')format("woff");}.ff5{font-family:ff5;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_9a55731f93fd345790df46c5.woff')format("woff");}.ff6{font-family:ff6;line-height:0.938965;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_251c8bdc0b416163405ac7fc.woff')format("woff");}.ff7{font-family:ff7;line-height:0.925293;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_f342440bf6b0c1874c0fcc3d.woff')format("woff");}.ff8{font-family:ff8;line-height:0.947000;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_cd2e815af7b827be739fb03b.woff')format("woff");}.ff9{font-family:ff9;line-height:0.923000;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);}
.v3{vertical-align:-21.696000px;}
.v5{vertical-align:-12.684000px;}
.v4{vertical-align:-2.889490px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:1.212000px;}
.v1{vertical-align:23.754000px;}
.ls6{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.001621px;}
.ls4{letter-spacing:2.985403px;}
.ls1{letter-spacing:2.985746px;}
.ls3{letter-spacing:2.991403px;}
.ls9{letter-spacing:3.246556px;}
.lsb{letter-spacing:15.511621px;}
.lse{letter-spacing:18.193621px;}
.lsa{letter-spacing:18.199621px;}
.ls8{letter-spacing:19.937124px;}
.lsd{letter-spacing:25.279621px;}
.ls5{letter-spacing:25.952726px;}
.lsc{letter-spacing:26.329621px;}
.ls7{letter-spacing:47.820141px;}
.ls0{letter-spacing:50.271746px;}
.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;}
}
.ws6{word-spacing:-19.941274px;}
.ws2{word-spacing:-18.196379px;}
.ws49{word-spacing:-17.803692px;}
.ws48{word-spacing:-14.557136px;}
.ws26{word-spacing:-11.239102px;}
.ws57{word-spacing:-4.058185px;}
.ws58{word-spacing:-3.992731px;}
.ws2c{word-spacing:-3.371366px;}
.ws3{word-spacing:-2.725786px;}
.ws4c{word-spacing:-2.683639px;}
.ws50{word-spacing:-2.618184px;}
.ws4f{word-spacing:-2.552729px;}
.ws5b{word-spacing:-2.356366px;}
.ws5{word-spacing:-1.865011px;}
.ws32{word-spacing:-1.649818px;}
.ws1e{word-spacing:-1.434624px;}
.ws2d{word-spacing:-1.147699px;}
.ws59{word-spacing:-1.112728px;}
.ws54{word-spacing:-0.785455px;}
.ws29{word-spacing:-0.777083px;}
.ws14{word-spacing:-0.573850px;}
.ws1b{word-spacing:-0.215194px;}
.ws44{word-spacing:-0.086077px;}
.ws16{word-spacing:-0.071731px;}
.ws4a{word-spacing:-0.065455px;}
.ws51{word-spacing:-0.002429px;}
.ws0{word-spacing:0.000000px;}
.ws24{word-spacing:0.071731px;}
.ws1f{word-spacing:0.645581px;}
.ws31{word-spacing:0.717312px;}
.ws36{word-spacing:0.932506px;}
.ws34{word-spacing:1.004237px;}
.ws4b{word-spacing:1.309092px;}
.wsc{word-spacing:1.362893px;}
.ws45{word-spacing:1.505456px;}
.ws47{word-spacing:1.636212px;}
.ws2a{word-spacing:1.793268px;}
.ws23{word-spacing:2.080205px;}
.ws42{word-spacing:2.151936px;}
.ws52{word-spacing:3.207275px;}
.ws21{word-spacing:3.227904px;}
.ws4d{word-spacing:3.272730px;}
.ws22{word-spacing:3.514829px;}
.ws9{word-spacing:4.160410px;}
.ws46{word-spacing:4.320004px;}
.ws2b{word-spacing:4.519066px;}
.wsd{word-spacing:4.801190px;}
.ws11{word-spacing:4.805990px;}
.wsf{word-spacing:4.807690px;}
.ws20{word-spacing:4.877722px;}
.ws18{word-spacing:5.164646px;}
.ws8{word-spacing:5.236378px;}
.ws37{word-spacing:5.738496px;}
.ws4{word-spacing:5.810227px;}
.ws2f{word-spacing:5.953690px;}
.ws17{word-spacing:6.168883px;}
.wsb{word-spacing:6.259901px;}
.ws10{word-spacing:6.344669px;}
.ws1c{word-spacing:6.455808px;}
.ws38{word-spacing:6.742733px;}
.ws53{word-spacing:7.069097px;}
.ws1a{word-spacing:7.101389px;}
.ws56{word-spacing:7.134551px;}
.ws2e{word-spacing:7.244851px;}
.ws19{word-spacing:7.256333px;}
.ws15{word-spacing:7.603507px;}
.wsa{word-spacing:7.664822px;}
.ws55{word-spacing:7.854552px;}
.ws7{word-spacing:8.105626px;}
.ws4e{word-spacing:8.116370px;}
.ws13{word-spacing:8.536013px;}
.ws12{word-spacing:8.607744px;}
.ws39{word-spacing:8.846333px;}
.ws3c{word-spacing:8.966400px;}
.ws3e{word-spacing:9.181594px;}
.ws1d{word-spacing:11.548723px;}
.wse{word-spacing:11.837674px;}
.ws43{word-spacing:14.633165px;}
.ws28{word-spacing:16.557841px;}
.ws5a{word-spacing:17.018196px;}
.ws33{word-spacing:18.195514px;}
.ws35{word-spacing:20.840638px;}
.ws41{word-spacing:21.979469px;}
.ws3a{word-spacing:23.843384px;}
.ws30{word-spacing:25.814638px;}
.ws1{word-spacing:28.611995px;}
.ws3b{word-spacing:28.834387px;}
.ws3d{word-spacing:28.834685px;}
.ws40{word-spacing:29.062579px;}
.ws3f{word-spacing:29.068253px;}
.ws27{word-spacing:315.507526px;}
.ws25{word-spacing:1193.049146px;}
._17{margin-left:-1101.172405px;}
._1a{margin-left:-616.087896px;}
._24{margin-left:-11.716373px;}
._23{margin-left:-9.818190px;}
._4{margin-left:-7.854552px;}
._6{margin-left:-5.589006px;}
._19{margin-left:-4.483787px;}
._3{margin-left:-2.905074px;}
._0{margin-left:-1.613952px;}
._2{width:1.344960px;}
._9{width:2.359870px;}
._13{width:3.819686px;}
._5{width:6.598138px;}
._25{width:8.647400px;}
._12{width:12.517094px;}
._26{width:15.145084px;}
._1{width:17.699674px;}
._7{width:20.562806px;}
._1d{width:23.599565px;}
._1e{width:24.606102px;}
._b{width:25.715635px;}
._10{width:27.516136px;}
._11{width:28.771471px;}
._e{width:30.134285px;}
._20{width:31.333326px;}
._15{width:34.968960px;}
._c{width:37.255890px;}
._d{width:38.933932px;}
._1f{width:42.063715px;}
._8{width:43.074546px;}
._16{width:47.999663px;}
._a{width:49.064141px;}
._f{width:50.828815px;}
._21{width:52.561592px;}
._14{width:59.877580px;}
._22{width:65.454600px;}
._1c{width:353.440553px;}
._1b{width:356.606577px;}
._18{width:1171.406215px;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(179,179,179);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:40.452866px;}
.fs4{font-size:41.842800px;}
.fsa{font-size:46.231847px;}
.fs3{font-size:47.820600px;}
.fs8{font-size:52.010828px;}
.fsb{font-size:52.363800px;}
.fs0{font-size:53.798400px;}
.fs5{font-size:59.775600px;}
.fs2{font-size:65.454600px;}
.fs7{font-size:71.731200px;}
.fs6{font-size:86.077200px;}
.fs1{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y4b{bottom:15.892219px;}
.y4f{bottom:26.727809px;}
.y4a{bottom:51.288477px;}
.y32{bottom:69.347793px;}
.y41{bottom:70.070165px;}
.y2a{bottom:85.318500px;}
.y43{bottom:98.242697px;}
.y29{bottom:106.240500px;}
.y3e{bottom:107.633541px;}
.y42{bottom:113.412522px;}
.y66{bottom:121.906500px;}
.y31{bottom:127.137602px;}
.y28{bottom:127.162500px;}
.y3f{bottom:137.250818px;}
.y3a{bottom:141.585054px;}
.y44{bottom:142.307426px;}
.y65{bottom:142.828500px;}
.y27{bottom:148.083000px;}
.y64{bottom:163.750500px;}
.y47{bottom:167.590468px;}
.y26{bottom:169.005000px;}
.y63{bottom:184.671000px;}
.y30{bottom:184.927410px;}
.y3b{bottom:189.261646px;}
.y25{bottom:189.927000px;}
.y24{bottom:210.849000px;}
.y46{bottom:214.544688px;}
.y62{bottom:222.031500px;}
.y23{bottom:231.769500px;}
.y3d{bottom:241.272474px;}
.y2f{bottom:242.717219px;}
.y22{bottom:252.691500px;}
.y3c{bottom:272.334496px;}
.y61{bottom:272.841000px;}
.y4e{bottom:277.391105px;}
.y21{bottom:282.579000px;}
.y45{bottom:293.283302px;}
.y60{bottom:293.763000px;}
.y4c{bottom:299.784656px;}
.y2e{bottom:300.507028px;}
.y20{bottom:303.501000px;}
.y5f{bottom:314.683500px;}
.y40{bottom:315.676853px;}
.y1f{bottom:324.423000px;}
.y4d{bottom:341.682267px;}
.y39{bottom:343.849385px;}
.y48{bottom:344.571758px;}
.y5e{bottom:344.572500px;}
.y1e{bottom:345.343500px;}
.y5d{bottom:365.493000px;}
.y1d{bottom:366.265500px;}
.y51{bottom:379.245643px;}
.y5c{bottom:386.415000px;}
.y1c{bottom:387.187500px;}
.y2d{bottom:387.191742px;}
.y34{bottom:387.914114px;}
.y83{bottom:392.760000px;}
.y50{bottom:395.137840px;}
.y5b{bottom:407.337000px;}
.y1b{bottom:408.108000px;}
.y82{bottom:413.085000px;}
.y5a{bottom:428.257500px;}
.y1a{bottom:429.030000px;}
.y35{bottom:429.089353px;}
.y38{bottom:430.534098px;}
.y37{bottom:431.256471px;}
.y81{bottom:440.133000px;}
.y59{bottom:449.179500px;}
.y19{bottom:458.917500px;}
.y80{bottom:460.456500px;}
.y36{bottom:463.040866px;}
.y33{bottom:466.652729px;}
.y58{bottom:470.101500px;}
.y18{bottom:479.839500px;}
.y7f{bottom:480.780000px;}
.y57{bottom:491.023500px;}
.y49{bottom:491.935770px;}
.y17{bottom:500.761500px;}
.y7e{bottom:507.829500px;}
.y56{bottom:511.944000px;}
.y16{bottom:521.683500px;}
.y7d{bottom:528.153000px;}
.y55{bottom:532.866000px;}
.y15{bottom:542.604000px;}
.y7c{bottom:548.476500px;}
.y14{bottom:563.526000px;}
.y7b{bottom:575.526000px;}
.y13{bottom:584.448000px;}
.y54{bottom:584.572500px;}
.y7a{bottom:595.849500px;}
.y53{bottom:602.505000px;}
.y12{bottom:605.368500px;}
.y52{bottom:620.437500px;}
.y79{bottom:622.897500px;}
.y11{bottom:626.290500px;}
.y78{bottom:643.221000px;}
.y10{bottom:647.212500px;}
.y2c{bottom:649.162716px;}
.y77{bottom:663.546000px;}
.yf{bottom:668.133000px;}
.ye{bottom:689.055000px;}
.y76{bottom:690.594000px;}
.y75{bottom:710.917500px;}
.yd{bottom:726.415500px;}
.y74{bottom:737.967000px;}
.y73{bottom:758.290500px;}
.yc{bottom:778.404000px;}
.y72{bottom:778.614000px;}
.y71{bottom:805.662000px;}
.yb{bottom:810.123000px;}
.y70{bottom:825.987000px;}
.ya{bottom:836.419500px;}
.y6f{bottom:846.310500px;}
.y9{bottom:862.716000px;}
.y6e{bottom:873.358500px;}
.y8{bottom:889.012500px;}
.y6d{bottom:893.682000px;}
.y6c{bottom:914.007000px;}
.y7{bottom:926.611500px;}
.y6b{bottom:943.296000px;}
.y6{bottom:946.935000px;}
.y5{bottom:987.564000px;}
.y6a{bottom:994.105500px;}
.y69{bottom:1015.027500px;}
.y68{bottom:1052.388000px;}
.y4{bottom:1066.152000px;}
.y3{bottom:1090.953000px;}
.y67{bottom:1103.197500px;}
.y2{bottom:1115.755500px;}
.y1{bottom:1140.556500px;}
.y2b{bottom:1193.604000px;}
.hf{height:29.450793px;}
.he{height:29.470545px;}
.h6{height:31.047358px;}
.h10{height:33.680623px;}
.hd{height:35.001210px;}
.ha{height:35.865450px;}
.hc{height:37.890701px;}
.h2{height:39.918413px;}
.h11{height:44.293720px;}
.h7{height:44.353495px;}
.h5{height:48.567313px;}
.h12{height:49.773313px;}
.h13{height:49.779313px;}
.h9{height:53.224550px;}
.h4{height:59.236885px;}
.h8{height:63.783205px;}
.h3{height:76.539668px;}
.hb{height:507.827968px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:681.197364px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xe{left:35.712296px;}
.x13{left:51.074001px;}
.xf{left:86.662139px;}
.x1{left:105.840000px;}
.x2{left:109.003500px;}
.x2a{left:118.886730px;}
.xc{left:122.203500px;}
.x2e{left:140.398500px;}
.x10{left:172.974383px;}
.x1a{left:180.107812px;}
.x1c{left:183.335915px;}
.x19{left:184.442048px;}
.x1b{left:186.609166px;}
.x1f{left:201.609681px;}
.x1d{left:212.230819px;}
.x26{left:218.822469px;}
.x11{left:219.838306px;}
.x1e{left:224.003232px;}
.x17{left:251.013199px;}
.x3{left:254.050500px;}
.x2d{left:261.859500px;}
.x28{left:279.276027px;}
.xa{left:280.639500px;}
.xb{left:283.405500px;}
.x29{left:289.389244px;}
.x20{left:297.809400px;}
.x21{left:302.143635px;}
.x4{left:308.557500px;}
.x2f{left:316.849500px;}
.x9{left:322.384500px;}
.x7{left:324.678000px;}
.x14{left:334.311791px;}
.x8{left:338.389500px;}
.x2c{left:342.032148px;}
.x2b{left:343.849363px;}
.x27{left:356.569897px;}
.x5{left:370.395000px;}
.xd{left:371.449500px;}
.x16{left:375.498313px;}
.x30{left:394.941000px;}
.x18{left:401.447295px;}
.x12{left:436.166329px;}
.x15{left:496.777906px;}
.x31{left:521.976000px;}
.x6{left:532.398000px;}
.x23{left:547.998639px;}
.x22{left:556.938000px;}
.x24{left:560.448276px;}
.x25{left:571.678916px;}
@media print{
.v3{vertical-align:-19.285333pt;}
.v5{vertical-align:-11.274667pt;}
.v4{vertical-align:-2.568436pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:1.077333pt;}
.v1{vertical-align:21.114667pt;}
.ls6{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.001441pt;}
.ls4{letter-spacing:2.653692pt;}
.ls1{letter-spacing:2.653997pt;}
.ls3{letter-spacing:2.659025pt;}
.ls9{letter-spacing:2.885827pt;}
.lsb{letter-spacing:13.788108pt;}
.lse{letter-spacing:16.172108pt;}
.lsa{letter-spacing:16.177441pt;}
.ls8{letter-spacing:17.721888pt;}
.lsd{letter-spacing:22.470774pt;}
.ls5{letter-spacing:23.069090pt;}
.lsc{letter-spacing:23.404108pt;}
.ls7{letter-spacing:42.506792pt;}
.ls0{letter-spacing:44.685997pt;}
.ws6{word-spacing:-17.725577pt;}
.ws2{word-spacing:-16.174559pt;}
.ws49{word-spacing:-15.825504pt;}
.ws48{word-spacing:-12.939677pt;}
.ws26{word-spacing:-9.990313pt;}
.ws57{word-spacing:-3.607276pt;}
.ws58{word-spacing:-3.549094pt;}
.ws2c{word-spacing:-2.996770pt;}
.ws3{word-spacing:-2.422921pt;}
.ws4c{word-spacing:-2.385457pt;}
.ws50{word-spacing:-2.327275pt;}
.ws4f{word-spacing:-2.269093pt;}
.ws5b{word-spacing:-2.094547pt;}
.ws5{word-spacing:-1.657788pt;}
.ws32{word-spacing:-1.466505pt;}
.ws1e{word-spacing:-1.275221pt;}
.ws2d{word-spacing:-1.020177pt;}
.ws59{word-spacing:-0.989092pt;}
.ws54{word-spacing:-0.698182pt;}
.ws29{word-spacing:-0.690740pt;}
.ws14{word-spacing:-0.510089pt;}
.ws1b{word-spacing:-0.191283pt;}
.ws44{word-spacing:-0.076513pt;}
.ws16{word-spacing:-0.063761pt;}
.ws4a{word-spacing:-0.058182pt;}
.ws51{word-spacing:-0.002159pt;}
.ws0{word-spacing:0.000000pt;}
.ws24{word-spacing:0.063761pt;}
.ws1f{word-spacing:0.573850pt;}
.ws31{word-spacing:0.637611pt;}
.ws36{word-spacing:0.828894pt;}
.ws34{word-spacing:0.892655pt;}
.ws4b{word-spacing:1.163637pt;}
.wsc{word-spacing:1.211460pt;}
.ws45{word-spacing:1.338183pt;}
.ws47{word-spacing:1.454411pt;}
.ws2a{word-spacing:1.594016pt;}
.ws23{word-spacing:1.849071pt;}
.ws42{word-spacing:1.912832pt;}
.ws52{word-spacing:2.850911pt;}
.ws21{word-spacing:2.869248pt;}
.ws4d{word-spacing:2.909093pt;}
.ws22{word-spacing:3.124292pt;}
.ws9{word-spacing:3.698142pt;}
.ws46{word-spacing:3.840003pt;}
.ws2b{word-spacing:4.016947pt;}
.wsd{word-spacing:4.267725pt;}
.ws11{word-spacing:4.271991pt;}
.wsf{word-spacing:4.273502pt;}
.ws20{word-spacing:4.335753pt;}
.ws18{word-spacing:4.590797pt;}
.ws8{word-spacing:4.654558pt;}
.ws37{word-spacing:5.100885pt;}
.ws4{word-spacing:5.164646pt;}
.ws2f{word-spacing:5.292169pt;}
.ws17{word-spacing:5.483452pt;}
.wsb{word-spacing:5.564356pt;}
.ws10{word-spacing:5.639706pt;}
.ws1c{word-spacing:5.738496pt;}
.ws38{word-spacing:5.993540pt;}
.ws53{word-spacing:6.283642pt;}
.ws1a{word-spacing:6.312346pt;}
.ws56{word-spacing:6.341823pt;}
.ws2e{word-spacing:6.439868pt;}
.ws19{word-spacing:6.450074pt;}
.ws15{word-spacing:6.758673pt;}
.wsa{word-spacing:6.813175pt;}
.ws55{word-spacing:6.981824pt;}
.ws7{word-spacing:7.205001pt;}
.ws4e{word-spacing:7.214551pt;}
.ws13{word-spacing:7.587567pt;}
.ws12{word-spacing:7.651328pt;}
.ws39{word-spacing:7.863407pt;}
.ws3c{word-spacing:7.970133pt;}
.ws3e{word-spacing:8.161417pt;}
.ws1d{word-spacing:10.265532pt;}
.wse{word-spacing:10.522377pt;}
.ws43{word-spacing:13.007258pt;}
.ws28{word-spacing:14.718081pt;}
.ws5a{word-spacing:15.127285pt;}
.ws33{word-spacing:16.173790pt;}
.ws35{word-spacing:18.525012pt;}
.ws41{word-spacing:19.537306pt;}
.ws3a{word-spacing:21.194119pt;}
.ws30{word-spacing:22.946345pt;}
.ws1{word-spacing:25.432884pt;}
.ws3b{word-spacing:25.630566pt;}
.ws3d{word-spacing:25.630831pt;}
.ws40{word-spacing:25.833404pt;}
.ws3f{word-spacing:25.838447pt;}
.ws27{word-spacing:280.451134pt;}
.ws25{word-spacing:1060.488129pt;}
._17{margin-left:-978.819916pt;}
._1a{margin-left:-547.633686pt;}
._24{margin-left:-10.414554pt;}
._23{margin-left:-8.727280pt;}
._4{margin-left:-6.981824pt;}
._6{margin-left:-4.968005pt;}
._19{margin-left:-3.985588pt;}
._3{margin-left:-2.582288pt;}
._0{margin-left:-1.434624pt;}
._2{width:1.195520pt;}
._9{width:2.097662pt;}
._13{width:3.395277pt;}
._5{width:5.865011pt;}
._25{width:7.686578pt;}
._12{width:11.126306pt;}
._26{width:13.462297pt;}
._1{width:15.733043pt;}
._7{width:18.278050pt;}
._1d{width:20.977391pt;}
._1e{width:21.872090pt;}
._b{width:22.858342pt;}
._10{width:24.458787pt;}
._11{width:25.574641pt;}
._e{width:26.786031pt;}
._20{width:27.851845pt;}
._15{width:31.083520pt;}
._c{width:33.116347pt;}
._d{width:34.607939pt;}
._1f{width:37.389969pt;}
._8{width:38.288485pt;}
._16{width:42.666367pt;}
._a{width:43.612570pt;}
._f{width:45.181169pt;}
._21{width:46.721415pt;}
._14{width:53.224515pt;}
._22{width:58.181867pt;}
._1c{width:314.169380pt;}
._1b{width:316.983624pt;}
._18{width:1041.249969pt;}
.fs9{font-size:35.958103pt;}
.fs4{font-size:37.193600pt;}
.fsa{font-size:41.094975pt;}
.fs3{font-size:42.507200pt;}
.fs8{font-size:46.231847pt;}
.fsb{font-size:46.545600pt;}
.fs0{font-size:47.820800pt;}
.fs5{font-size:53.133867pt;}
.fs2{font-size:58.181867pt;}
.fs7{font-size:63.761067pt;}
.fs6{font-size:76.513067pt;}
.fs1{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y4b{bottom:14.126417pt;}
.y4f{bottom:23.758052pt;}
.y4a{bottom:45.589758pt;}
.y32{bottom:61.642482pt;}
.y41{bottom:62.284591pt;}
.y2a{bottom:75.838667pt;}
.y43{bottom:87.326842pt;}
.y29{bottom:94.436000pt;}
.y3e{bottom:95.674259pt;}
.y42{bottom:100.811131pt;}
.y66{bottom:108.361333pt;}
.y31{bottom:113.011201pt;}
.y28{bottom:113.033333pt;}
.y3f{bottom:122.000727pt;}
.y3a{bottom:125.853381pt;}
.y44{bottom:126.495490pt;}
.y65{bottom:126.958667pt;}
.y27{bottom:131.629333pt;}
.y64{bottom:145.556000pt;}
.y47{bottom:148.969305pt;}
.y26{bottom:150.226667pt;}
.y63{bottom:164.152000pt;}
.y30{bottom:164.379920pt;}
.y3b{bottom:168.232574pt;}
.y25{bottom:168.824000pt;}
.y24{bottom:187.421333pt;}
.y46{bottom:190.706389pt;}
.y62{bottom:197.361333pt;}
.y23{bottom:206.017333pt;}
.y3d{bottom:214.464421pt;}
.y2f{bottom:215.748639pt;}
.y22{bottom:224.614667pt;}
.y3c{bottom:242.075108pt;}
.y61{bottom:242.525333pt;}
.y4e{bottom:246.569871pt;}
.y21{bottom:251.181333pt;}
.y45{bottom:260.696269pt;}
.y60{bottom:261.122667pt;}
.y4c{bottom:266.475249pt;}
.y2e{bottom:267.117358pt;}
.y20{bottom:269.778667pt;}
.y5f{bottom:279.718667pt;}
.y40{bottom:280.601647pt;}
.y1f{bottom:288.376000pt;}
.y4d{bottom:303.717571pt;}
.y39{bottom:305.643898pt;}
.y48{bottom:306.286007pt;}
.y5e{bottom:306.286667pt;}
.y1e{bottom:306.972000pt;}
.y5d{bottom:324.882667pt;}
.y1d{bottom:325.569333pt;}
.y51{bottom:337.107238pt;}
.y5c{bottom:343.480000pt;}
.y1c{bottom:344.166667pt;}
.y2d{bottom:344.170437pt;}
.y34{bottom:344.812546pt;}
.y83{bottom:349.120000pt;}
.y50{bottom:351.233636pt;}
.y5b{bottom:362.077333pt;}
.y1b{bottom:362.762667pt;}
.y82{bottom:367.186667pt;}
.y5a{bottom:380.673333pt;}
.y1a{bottom:381.360000pt;}
.y35{bottom:381.412758pt;}
.y38{bottom:382.696976pt;}
.y37{bottom:383.339085pt;}
.y81{bottom:391.229333pt;}
.y59{bottom:399.270667pt;}
.y19{bottom:407.926667pt;}
.y80{bottom:409.294667pt;}
.y36{bottom:411.591881pt;}
.y33{bottom:414.802426pt;}
.y58{bottom:417.868000pt;}
.y18{bottom:426.524000pt;}
.y7f{bottom:427.360000pt;}
.y57{bottom:436.465333pt;}
.y49{bottom:437.276240pt;}
.y17{bottom:445.121333pt;}
.y7e{bottom:451.404000pt;}
.y56{bottom:455.061333pt;}
.y16{bottom:463.718667pt;}
.y7d{bottom:469.469333pt;}
.y55{bottom:473.658667pt;}
.y15{bottom:482.314667pt;}
.y7c{bottom:487.534667pt;}
.y14{bottom:500.912000pt;}
.y7b{bottom:511.578667pt;}
.y13{bottom:519.509333pt;}
.y54{bottom:519.620000pt;}
.y7a{bottom:529.644000pt;}
.y53{bottom:535.560000pt;}
.y12{bottom:538.105333pt;}
.y52{bottom:551.500000pt;}
.y79{bottom:553.686667pt;}
.y11{bottom:556.702667pt;}
.y78{bottom:571.752000pt;}
.y10{bottom:575.300000pt;}
.y2c{bottom:577.033525pt;}
.y77{bottom:589.818667pt;}
.yf{bottom:593.896000pt;}
.ye{bottom:612.493333pt;}
.y76{bottom:613.861333pt;}
.y75{bottom:631.926667pt;}
.yd{bottom:645.702667pt;}
.y74{bottom:655.970667pt;}
.y73{bottom:674.036000pt;}
.yc{bottom:691.914667pt;}
.y72{bottom:692.101333pt;}
.y71{bottom:716.144000pt;}
.yb{bottom:720.109333pt;}
.y70{bottom:734.210667pt;}
.ya{bottom:743.484000pt;}
.y6f{bottom:752.276000pt;}
.y9{bottom:766.858667pt;}
.y6e{bottom:776.318667pt;}
.y8{bottom:790.233333pt;}
.y6d{bottom:794.384000pt;}
.y6c{bottom:812.450667pt;}
.y7{bottom:823.654667pt;}
.y6b{bottom:838.485333pt;}
.y6{bottom:841.720000pt;}
.y5{bottom:877.834667pt;}
.y6a{bottom:883.649333pt;}
.y69{bottom:902.246667pt;}
.y68{bottom:935.456000pt;}
.y4{bottom:947.690667pt;}
.y3{bottom:969.736000pt;}
.y67{bottom:980.620000pt;}
.y2{bottom:991.782667pt;}
.y1{bottom:1013.828000pt;}
.y2b{bottom:1060.981333pt;}
.hf{height:26.178482pt;}
.he{height:26.196040pt;}
.h6{height:27.597651pt;}
.h10{height:29.938332pt;}
.hd{height:31.112187pt;}
.ha{height:31.880400pt;}
.hc{height:33.680623pt;}
.h2{height:35.483034pt;}
.h11{height:39.372195pt;}
.h7{height:39.425329pt;}
.h5{height:43.170945pt;}
.h12{height:44.242945pt;}
.h13{height:44.248278pt;}
.h9{height:47.310711pt;}
.h4{height:52.655009pt;}
.h8{height:56.696182pt;}
.h3{height:68.035261pt;}
.hb{height:451.402638pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:605.508768pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xe{left:31.744263pt;}
.x13{left:45.399112pt;}
.xf{left:77.033013pt;}
.x1{left:94.080000pt;}
.x2{left:96.892000pt;}
.x2a{left:105.677093pt;}
.xc{left:108.625333pt;}
.x2e{left:124.798667pt;}
.x10{left:153.755007pt;}
.x1a{left:160.095833pt;}
.x1c{left:162.965258pt;}
.x19{left:163.948487pt;}
.x1b{left:165.874814pt;}
.x1f{left:179.208605pt;}
.x1d{left:188.649617pt;}
.x26{left:194.508862pt;}
.x11{left:195.411828pt;}
.x1e{left:199.113984pt;}
.x17{left:223.122844pt;}
.x3{left:225.822667pt;}
.x2d{left:232.764000pt;}
.x28{left:248.245358pt;}
.xa{left:249.457333pt;}
.xb{left:251.916000pt;}
.x29{left:257.234884pt;}
.x20{left:264.719466pt;}
.x21{left:268.572120pt;}
.x4{left:274.273333pt;}
.x2f{left:281.644000pt;}
.x9{left:286.564000pt;}
.x7{left:288.602667pt;}
.x14{left:297.166036pt;}
.x8{left:300.790667pt;}
.x2c{left:304.028576pt;}
.x2b{left:305.643878pt;}
.x27{left:316.951019pt;}
.x5{left:329.240000pt;}
.xd{left:330.177333pt;}
.x16{left:333.776278pt;}
.x30{left:351.058667pt;}
.x18{left:356.842040pt;}
.x12{left:387.703404pt;}
.x15{left:441.580361pt;}
.x31{left:463.978667pt;}
.x6{left:473.242667pt;}
.x23{left:487.109901pt;}
.x22{left:495.056000pt;}
.x24{left:498.176245pt;}
.x25{left:508.159036pt;}
}




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