
    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_4a4965d302f37a9096ac6ed4.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.873047;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_31b7095b3221f94ae19f38d8.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.112305;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_857140546ffbcd1092b6fc99.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.093262;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_e11d58ddc12f26eacb9e16a7.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.900391;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_d7abb55b8889476c71bbb911.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.691406;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_8c6d7d06ddc9acf983477c9c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.978027;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);}
.v2{vertical-align:-23.747697px;}
.v3{vertical-align:-18.010769px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.776680px;}
.ls0{letter-spacing:0.000000px;}
.ls9{letter-spacing:11.709674px;}
.ls2{letter-spacing:15.092445px;}
.ls3{letter-spacing:15.860572px;}
.ls7{letter-spacing:16.560049px;}
.ls6{letter-spacing:17.271617px;}
.ls4{letter-spacing:17.271667px;}
.ls1{letter-spacing:18.694819px;}
.ls8{letter-spacing:19.442794px;}
.ls5{letter-spacing:28.822405px;}
.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;}
}
.ws4{word-spacing:-16.560046px;}
.ws1{word-spacing:-10.439885px;}
.ws2{word-spacing:-3.317718px;}
.ws9{word-spacing:-2.469745px;}
.wsb{word-spacing:-2.228491px;}
.ws6{word-spacing:-1.981494px;}
.wsa{word-spacing:-1.574411px;}
.wsd{word-spacing:-0.833781px;}
.wsc{word-spacing:-0.821573px;}
.wsf{word-spacing:-0.662402px;}
.ws0{word-spacing:0.000000px;}
.ws8{word-spacing:0.185519px;}
.wse{word-spacing:0.344390px;}
.ws3{word-spacing:0.768501px;}
.ws7{word-spacing:3.223002px;}
.ws10{word-spacing:6.847181px;}
.ws5{word-spacing:13.321990px;}
._18{margin-left:-5.431170px;}
._11{margin-left:-3.976417px;}
._f{margin-left:-2.847125px;}
._0{margin-left:-1.590166px;}
._d{width:1.034282px;}
._1{width:2.053964px;}
._7{width:3.974411px;}
._6{width:5.099224px;}
._8{width:6.757769px;}
._a{width:8.280023px;}
._9{width:9.936027px;}
._b{width:10.996154px;}
._10{width:12.285879px;}
._3{width:13.813154px;}
._2{width:15.235242px;}
._4{width:17.884849px;}
._5{width:19.142778px;}
._12{width:20.151436px;}
._1c{width:21.248679px;}
._13{width:22.505417px;}
._19{width:23.954512px;}
._23{width:25.195704px;}
._c{width:26.297353px;}
._14{width:27.315543px;}
._15{width:28.403695px;}
._16{width:29.874322px;}
._21{width:31.066646px;}
._17{width:32.308542px;}
._e{width:34.081680px;}
._1f{width:36.251492px;}
._1d{width:37.698915px;}
._1e{width:38.985919px;}
._24{width:40.510608px;}
._22{width:43.792357px;}
._1b{width:45.049107px;}
._26{width:46.699329px;}
._20{width:53.197223px;}
._1a{width:430.130660px;}
._25{width:554.937482px;}
.fc1{color:rgb(57,57,57);}
.fc0{color:rgb(57,57,57);}
.fs2{font-size:30.240000px;}
.fs1{font-size:41.680896px;}
.fs4{font-size:41.759538px;}
.fs7{font-size:48.240229px;}
.fs3{font-size:54.000000px;}
.fs6{font-size:66.240183px;}
.fs0{font-size:66.256896px;}
.fs5{font-size:71.999814px;}
.y0{bottom:0.000000px;}
.yc2{bottom:329.756678px;}
.y8{bottom:334.260000px;}
.y19{bottom:334.260064px;}
.yc1{bottom:343.436836px;}
.y13{bottom:347.940033px;}
.y7{bottom:361.800000px;}
.y18{bottom:361.800041px;}
.ybe{bottom:367.375197px;}
.y80{bottom:375.480079px;}
.ya4{bottom:386.458043px;}
.y31{bottom:389.340088px;}
.y99{bottom:395.458707px;}
.y59{bottom:397.252779px;}
.ybd{bottom:403.200096px;}
.y94{bottom:405.353940px;}
.y7f{bottom:414.354605px;}
.y58{bottom:416.335625px;}
.y21{bottom:416.880066px;}
.y93{bottom:424.259906px;}
.y24{bottom:428.580444px;}
.y12{bottom:430.740074px;}
.y7e{bottom:433.260570px;}
.y57{bottom:435.241640px;}
.y34{bottom:442.439651px;}
.y92{bottom:443.337717px;}
.ya0{bottom:444.600083px;}
.y7d{bottom:452.333348px;}
.ybc{bottom:453.243018px;}
.y56{bottom:454.314369px;}
.y9c{bottom:460.269293px;}
.y91{bottom:462.238649px;}
.y7c{bottom:471.239313px;}
.ybb{bottom:472.315747px;}
.y90{bottom:481.316461px;}
.y55{bottom:482.221048px;}
.y6{bottom:486.000000px;}
.y20{bottom:486.000068px;}
.y7b{bottom:490.317125px;}
.yae{bottom:497.519476px;}
.y11{bottom:499.680039px;}
.y8f{bottom:500.222426px;}
.y54{bottom:501.116945px;}
.y7a{bottom:509.218057px;}
.y30{bottom:511.384209px;}
.y1f{bottom:513.540047px;}
.y98{bottom:518.218721px;}
.y8e{bottom:519.118324px;}
.y53{bottom:520.199791px;}
.y5{bottom:524.349300px;}
.y17{bottom:525.243415px;}
.y9f{bottom:527.400055px;}
.y79{bottom:528.118988px;}
.yad{bottom:530.100058px;}
.y33{bottom:534.066636px;}
.y97{bottom:537.114619px;}
.y8d{bottom:538.201170px;}
.y9e{bottom:538.915833px;}
.y52{bottom:539.095689px;}
.ya3{bottom:547.201834px;}
.yac{bottom:549.182904px;}
.y10{bottom:554.940033px;}
.y78{bottom:556.197465px;}
.y8c{bottom:557.097067px;}
.y51{bottom:558.178535px;}
.y9b{bottom:564.126546px;}
.ya2{bottom:566.097732px;}
.yf{bottom:566.639772px;}
.yab{bottom:568.078802px;}
.y1e{bottom:572.046930px;}
.y77{bottom:575.098396px;}
.yba{bottom:576.179913px;}
.y50{bottom:577.079466px;}
.y4{bottom:581.229000px;}
.ya1{bottom:585.180577px;}
.yaa{bottom:586.974650px;}
.y76{bottom:594.181291px;}
.yb9{bottom:595.075811px;}
.y4f{bottom:595.975364px;}
.ye{bottom:600.125172px;}
.y46{bottom:604.076475px;}
.y2f{bottom:610.024050px;}
.y75{bottom:613.077139px;}
.y8b{bottom:613.981776px;}
.y4e{bottom:615.058210px;}
.y45{bottom:622.982440px;}
.y23{bottom:628.926612px;}
.y74{bottom:631.983154px;}
.y8a{bottom:633.054554px;}
.y4d{bottom:633.964224px;}
.y1d{bottom:637.923889px;}
.y44{bottom:642.055218px;}
.y73{bottom:651.055883px;}
.yb8{bottom:651.960519px;}
.y4c{bottom:653.036953px;}
.y43{bottom:660.961184px;}
.y72{bottom:669.961898px;}
.yb7{bottom:671.038331px;}
.ya9{bottom:671.942968px;}
.y42{bottom:680.033962px;}
.y4b{bottom:680.943632px;}
.y71{bottom:689.034626px;}
.ya8{bottom:691.015696px;}
.y41{bottom:698.939927px;}
.y4a{bottom:700.016410px;}
.y2e{bottom:704.887200px;}
.y70{bottom:707.940641px;}
.y16{bottom:713.884476px;}
.y89{bottom:718.017739px;}
.y49{bottom:718.922376px;}
.yd{bottom:722.884926px;}
.y40{bottom:727.013370px;}
.y6f{bottom:736.014083px;}
.y88{bottom:736.918671px;}
.y48{bottom:737.818273px;}
.y9a{bottom:741.965892px;}
.y3f{bottom:745.919384px;}
.y6e{bottom:754.920049px;}
.y87{bottom:755.819602px;}
.y47{bottom:756.901119px;}
.y3e{bottom:764.817256px;}
.y6d{bottom:773.816934px;}
.y86{bottom:774.900474px;}
.ya7{bottom:775.798004px;}
.yc{bottom:779.764578px;}
.y3d{bottom:783.900151px;}
.y2d{bottom:789.841890px;}
.y6c{bottom:792.899829px;}
.y85{bottom:793.797358px;}
.ya6{bottom:794.880849px;}
.y3c{bottom:802.974903px;}
.y6b{bottom:811.982675px;}
.y84{bottom:813.058121px;}
.ya5{bottom:813.955651px;}
.y3b{bottom:822.057798px;}
.y6a{bottom:831.057476px;}
.y1c{bottom:837.007446px;}
.y3a{bottom:840.962777px;}
.y2c{bottom:846.906354px;}
.y69{bottom:849.962430px;}
.yb6{bottom:850.859984px;}
.y39{bottom:859.859637px;}
.y68{bottom:868.859314px;}
.yb5{bottom:869.942830px;}
.y15{bottom:874.806162px;}
.y38{bottom:878.942507px;}
.y96{bottom:887.942185px;}
.yb4{bottom:888.839739px;}
.y37{bottom:897.839392px;}
.y67{bottom:906.839069px;}
.yb3{bottom:907.922585px;}
.y1a{bottom:912.783282px;}
.y36{bottom:916.922262px;}
.y66{bottom:925.921940px;}
.y83{bottom:935.819147px;}
.y65{bottom:944.818824px;}
.y35{bottom:950.764198px;}
.ybf{bottom:953.818502px;}
.y82{bottom:954.716056px;}
.y64{bottom:963.715709px;}
.y95{bottom:972.715386px;}
.yb{bottom:978.663384px;}
.y81{bottom:982.798580px;}
.y63{bottom:991.798257px;}
.yb2{bottom:992.695787px;}
.y2b{bottom:1001.695464px;}
.y62{bottom:1010.703235px;}
.yb1{bottom:1011.778657px;}
.y2a{bottom:1020.778335px;}
.y61{bottom:1029.778012px;}
.yb0{bottom:1030.675542px;}
.y29{bottom:1039.683313px;}
.y60{bottom:1048.682991px;}
.yaf{bottom:1049.580520px;}
.y3{bottom:1052.281200px;}
.y14{bottom:1054.622711px;}
.y28{bottom:1058.580198px;}
.y5f{bottom:1067.579875px;}
.y27{bottom:1077.663068px;}
.y22{bottom:1083.602570px;}
.y5e{bottom:1086.662746px;}
.y1b{bottom:1092.599831px;}
.y9d{bottom:1093.502116px;}
.y26{bottom:1096.559953px;}
.y5d{bottom:1105.559630px;}
.y2{bottom:1110.955980px;}
.y25{bottom:1115.642823px;}
.y5c{bottom:1124.642488px;}
.y32{bottom:1130.582054px;}
.y1{bottom:1131.297300px;}
.y5b{bottom:1143.539385px;}
.yc0{bottom:1149.478853px;}
.y5a{bottom:1162.622250px;}
.ya{bottom:1221.607500px;}
.y9{bottom:1237.807500px;}
.h6{height:27.109688px;}
.h14{height:31.829414px;}
.h5{height:37.366272px;}
.h8{height:37.436774px;}
.h1f{height:43.246612px;}
.h7{height:47.381836px;}
.h9{height:49.113154px;}
.h18{height:50.488733px;}
.h2{height:56.810112px;}
.ha{height:59.383289px;}
.h4{height:59.398272px;}
.h3{height:61.142952px;}
.he{height:61.184470px;}
.h16{height:61.194644px;}
.h1a{height:61.207347px;}
.h1e{height:61.208665px;}
.h15{height:61.212298px;}
.h13{height:61.213626px;}
.h1b{height:61.214504px;}
.hd{height:61.214794px;}
.h1c{height:61.215756px;}
.h19{height:61.217146px;}
.h17{height:61.219969px;}
.hf{height:61.224166px;}
.hb{height:61.227828px;}
.h1d{height:61.236654px;}
.h11{height:61.238908px;}
.h12{height:61.240917px;}
.hc{height:61.245065px;}
.h10{height:61.251559px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:35.163000px;}
.x6{left:84.960000px;}
.x2{left:102.226692px;}
.x24{left:117.897292px;}
.xc{left:136.258842px;}
.x17{left:138.059685px;}
.x4{left:143.640150px;}
.x1e{left:149.038529px;}
.x1{left:150.479700px;}
.xe{left:158.219311px;}
.x1f{left:171.543636px;}
.x22{left:221.223777px;}
.x26{left:223.376838px;}
.x18{left:241.019624px;}
.x1c{left:248.579374px;}
.x8{left:270.177903px;}
.x13{left:291.236087px;}
.x3{left:300.239850px;}
.x11{left:303.118591px;}
.x25{left:308.155023px;}
.xf{left:312.656212px;}
.xd{left:324.353904px;}
.x1b{left:332.099088px;}
.x21{left:339.117088px;}
.x20{left:351.359219px;}
.x19{left:356.035500px;}
.x9{left:377.636580px;}
.x10{left:390.775656px;}
.x28{left:403.740067px;}
.x15{left:415.795308px;}
.x16{left:440.814960px;}
.xb{left:457.194174px;}
.xa{left:489.592620px;}
.x23{left:516.775578px;}
.x27{left:531.181883px;}
.x5{left:554.574300px;}
.x12{left:568.433364px;}
.x1d{left:607.312146px;}
.x1a{left:615.774150px;}
.x14{left:643.489176px;}
@media print{
.v2{vertical-align:-21.109064pt;}
.v3{vertical-align:-16.009572pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.134827pt;}
.ls0{letter-spacing:0.000000pt;}
.ls9{letter-spacing:10.408600pt;}
.ls2{letter-spacing:13.415507pt;}
.ls3{letter-spacing:14.098286pt;}
.ls7{letter-spacing:14.720043pt;}
.ls6{letter-spacing:15.352549pt;}
.ls4{letter-spacing:15.352593pt;}
.ls1{letter-spacing:16.617617pt;}
.ls8{letter-spacing:17.282484pt;}
.ls5{letter-spacing:25.619915pt;}
.ws4{word-spacing:-14.720041pt;}
.ws1{word-spacing:-9.279897pt;}
.ws2{word-spacing:-2.949083pt;}
.ws9{word-spacing:-2.195329pt;}
.wsb{word-spacing:-1.980881pt;}
.ws6{word-spacing:-1.761328pt;}
.wsa{word-spacing:-1.399477pt;}
.wsd{word-spacing:-0.741139pt;}
.wsc{word-spacing:-0.730287pt;}
.wsf{word-spacing:-0.588802pt;}
.ws0{word-spacing:0.000000pt;}
.ws8{word-spacing:0.164906pt;}
.wse{word-spacing:0.306124pt;}
.ws3{word-spacing:0.683112pt;}
.ws7{word-spacing:2.864891pt;}
.ws10{word-spacing:6.086383pt;}
.ws5{word-spacing:11.841768pt;}
._18{margin-left:-4.827707pt;}
._11{margin-left:-3.534592pt;}
._f{margin-left:-2.530777pt;}
._0{margin-left:-1.413480pt;}
._d{width:0.919362pt;}
._1{width:1.825746pt;}
._7{width:3.532810pt;}
._6{width:4.532643pt;}
._8{width:6.006906pt;}
._a{width:7.360020pt;}
._9{width:8.832024pt;}
._b{width:9.774360pt;}
._10{width:10.920782pt;}
._3{width:12.278359pt;}
._2{width:13.542437pt;}
._4{width:15.897644pt;}
._5{width:17.015802pt;}
._12{width:17.912387pt;}
._1c{width:18.887714pt;}
._13{width:20.004816pt;}
._19{width:21.292899pt;}
._23{width:22.396181pt;}
._c{width:23.375425pt;}
._14{width:24.280483pt;}
._15{width:25.247729pt;}
._16{width:26.554953pt;}
._21{width:27.614796pt;}
._17{width:28.718704pt;}
._e{width:30.294827pt;}
._1f{width:32.223548pt;}
._1d{width:33.510147pt;}
._1e{width:34.654150pt;}
._24{width:36.009429pt;}
._22{width:38.926539pt;}
._1b{width:40.043650pt;}
._26{width:41.510515pt;}
._20{width:47.286420pt;}
._1a{width:382.338364pt;}
._25{width:493.277762pt;}
.fs2{font-size:26.880000pt;}
.fs1{font-size:37.049685pt;}
.fs4{font-size:37.119590pt;}
.fs7{font-size:42.880204pt;}
.fs3{font-size:48.000000pt;}
.fs6{font-size:58.880163pt;}
.fs0{font-size:58.895019pt;}
.fs5{font-size:63.999835pt;}
.y0{bottom:0.000000pt;}
.yc2{bottom:293.117047pt;}
.y8{bottom:297.120000pt;}
.y19{bottom:297.120057pt;}
.yc1{bottom:305.277187pt;}
.y13{bottom:309.280030pt;}
.y7{bottom:321.600000pt;}
.y18{bottom:321.600037pt;}
.ybe{bottom:326.555730pt;}
.y80{bottom:333.760071pt;}
.ya4{bottom:343.518260pt;}
.y31{bottom:346.080079pt;}
.y99{bottom:351.518851pt;}
.y59{bottom:353.113582pt;}
.ybd{bottom:358.400086pt;}
.y94{bottom:360.314613pt;}
.y7f{bottom:368.315204pt;}
.y58{bottom:370.076111pt;}
.y21{bottom:370.560059pt;}
.y93{bottom:377.119916pt;}
.y24{bottom:380.960395pt;}
.y12{bottom:382.880066pt;}
.y7e{bottom:385.120507pt;}
.y57{bottom:386.881458pt;}
.y34{bottom:393.279690pt;}
.y92{bottom:394.077971pt;}
.ya0{bottom:395.200074pt;}
.y7d{bottom:402.074087pt;}
.ybc{bottom:402.882683pt;}
.y56{bottom:403.834994pt;}
.y9c{bottom:409.128261pt;}
.y91{bottom:410.878799pt;}
.y7c{bottom:418.879390pt;}
.ybb{bottom:419.836220pt;}
.y90{bottom:427.836854pt;}
.y55{bottom:428.640932pt;}
.y6{bottom:432.000000pt;}
.y20{bottom:432.000061pt;}
.y7b{bottom:435.837445pt;}
.yae{bottom:442.239535pt;}
.y11{bottom:444.160035pt;}
.y8f{bottom:444.642157pt;}
.y54{bottom:445.437285pt;}
.y7a{bottom:452.638273pt;}
.y30{bottom:454.563741pt;}
.y1f{bottom:456.480042pt;}
.y98{bottom:460.638863pt;}
.y8e{bottom:461.438510pt;}
.y53{bottom:462.399815pt;}
.y5{bottom:466.088267pt;}
.y17{bottom:466.883036pt;}
.y9f{bottom:468.800049pt;}
.y79{bottom:469.439101pt;}
.yad{bottom:471.200052pt;}
.y33{bottom:474.725899pt;}
.y97{bottom:477.435217pt;}
.y8d{bottom:478.401040pt;}
.y9e{bottom:479.036296pt;}
.y52{bottom:479.196168pt;}
.ya3{bottom:486.401630pt;}
.yac{bottom:488.162582pt;}
.y10{bottom:493.280030pt;}
.y78{bottom:494.397746pt;}
.y8c{bottom:495.197393pt;}
.y51{bottom:496.158698pt;}
.y9b{bottom:501.445819pt;}
.ya2{bottom:503.197984pt;}
.yf{bottom:503.679798pt;}
.yab{bottom:504.958935pt;}
.y1e{bottom:508.486160pt;}
.y77{bottom:511.198574pt;}
.yba{bottom:512.159923pt;}
.y50{bottom:512.959526pt;}
.y4{bottom:516.648000pt;}
.ya1{bottom:520.160513pt;}
.yaa{bottom:521.755244pt;}
.y76{bottom:528.161148pt;}
.yb9{bottom:528.956276pt;}
.y4f{bottom:529.755879pt;}
.ye{bottom:533.444598pt;}
.y46{bottom:536.956867pt;}
.y2f{bottom:542.243600pt;}
.y75{bottom:544.957457pt;}
.y8b{bottom:545.761579pt;}
.y4e{bottom:546.718409pt;}
.y45{bottom:553.762169pt;}
.y23{bottom:559.045878pt;}
.y74{bottom:561.762804pt;}
.y8a{bottom:562.715159pt;}
.y4d{bottom:563.523755pt;}
.y1d{bottom:567.043457pt;}
.y44{bottom:570.715750pt;}
.y73{bottom:578.716340pt;}
.yb8{bottom:579.520462pt;}
.y4c{bottom:580.477292pt;}
.y43{bottom:587.521052pt;}
.y72{bottom:595.521687pt;}
.yb7{bottom:596.478517pt;}
.ya9{bottom:597.282638pt;}
.y42{bottom:604.474633pt;}
.y4b{bottom:605.283229pt;}
.y71{bottom:612.475223pt;}
.ya8{bottom:614.236175pt;}
.y41{bottom:621.279935pt;}
.y4a{bottom:622.236809pt;}
.y2e{bottom:626.566400pt;}
.y70{bottom:629.280570pt;}
.y16{bottom:634.563979pt;}
.y89{bottom:638.237990pt;}
.y49{bottom:639.042112pt;}
.yd{bottom:642.564379pt;}
.y40{bottom:646.234106pt;}
.y6f{bottom:654.234741pt;}
.y88{bottom:655.038818pt;}
.y48{bottom:655.838465pt;}
.y9a{bottom:659.525238pt;}
.y3f{bottom:663.039453pt;}
.y6e{bottom:671.040044pt;}
.y87{bottom:671.839646pt;}
.y47{bottom:672.800995pt;}
.y3e{bottom:679.837561pt;}
.y6d{bottom:687.837274pt;}
.y86{bottom:688.800421pt;}
.ya7{bottom:689.598225pt;}
.yc{bottom:693.124069pt;}
.y3d{bottom:696.800134pt;}
.y2d{bottom:702.081680pt;}
.y6c{bottom:704.799848pt;}
.y85{bottom:705.597652pt;}
.ya6{bottom:706.560755pt;}
.y3c{bottom:713.755470pt;}
.y6b{bottom:721.762377pt;}
.y84{bottom:722.718330pt;}
.ya5{bottom:723.516134pt;}
.y3b{bottom:730.718043pt;}
.y6a{bottom:738.717756pt;}
.y1c{bottom:744.006619pt;}
.y3a{bottom:747.522468pt;}
.y2c{bottom:752.805648pt;}
.y69{bottom:755.522160pt;}
.yb6{bottom:756.319986pt;}
.y39{bottom:764.319677pt;}
.y68{bottom:772.319390pt;}
.yb5{bottom:773.282516pt;}
.y15{bottom:777.605478pt;}
.y38{bottom:781.282229pt;}
.y96{bottom:789.281942pt;}
.yb4{bottom:790.079768pt;}
.y37{bottom:798.079460pt;}
.y67{bottom:806.079173pt;}
.yb3{bottom:807.042298pt;}
.y1a{bottom:811.362918pt;}
.y36{bottom:815.042011pt;}
.y66{bottom:823.041724pt;}
.y83{bottom:831.839242pt;}
.y65{bottom:839.838955pt;}
.y35{bottom:845.123732pt;}
.ybf{bottom:847.838668pt;}
.y82{bottom:848.636494pt;}
.y64{bottom:856.636186pt;}
.y95{bottom:864.635899pt;}
.yb{bottom:869.923008pt;}
.y81{bottom:873.598737pt;}
.y63{bottom:881.598451pt;}
.yb2{bottom:882.396255pt;}
.y2b{bottom:890.395968pt;}
.y62{bottom:898.402876pt;}
.yb1{bottom:899.358806pt;}
.y2a{bottom:907.358520pt;}
.y61{bottom:915.358233pt;}
.yb0{bottom:916.156037pt;}
.y29{bottom:924.162945pt;}
.y60{bottom:932.162658pt;}
.yaf{bottom:932.960462pt;}
.y3{bottom:935.361067pt;}
.y14{bottom:937.442410pt;}
.y28{bottom:940.960176pt;}
.y5f{bottom:948.959889pt;}
.y27{bottom:957.922727pt;}
.y22{bottom:963.202285pt;}
.y5e{bottom:965.922441pt;}
.y1b{bottom:971.199850pt;}
.y9d{bottom:972.001881pt;}
.y26{bottom:974.719958pt;}
.y5d{bottom:982.719671pt;}
.y2{bottom:987.516427pt;}
.y25{bottom:991.682510pt;}
.y5c{bottom:999.682212pt;}
.y32{bottom:1004.961826pt;}
.y1{bottom:1005.597600pt;}
.y5b{bottom:1016.479454pt;}
.yc0{bottom:1021.758980pt;}
.y5a{bottom:1033.442000pt;}
.ya{bottom:1085.873333pt;}
.y9{bottom:1100.273333pt;}
.h6{height:24.097500pt;}
.h14{height:28.292812pt;}
.h5{height:33.214464pt;}
.h8{height:33.277132pt;}
.h1f{height:38.441433pt;}
.h7{height:42.117188pt;}
.h9{height:43.656137pt;}
.h18{height:44.878874pt;}
.h2{height:50.497877pt;}
.ha{height:52.785146pt;}
.h4{height:52.798464pt;}
.h3{height:54.349291pt;}
.he{height:54.386196pt;}
.h16{height:54.395239pt;}
.h1a{height:54.406530pt;}
.h1e{height:54.407702pt;}
.h15{height:54.410932pt;}
.h13{height:54.412112pt;}
.h1b{height:54.412893pt;}
.hd{height:54.413150pt;}
.h1c{height:54.414005pt;}
.h19{height:54.415241pt;}
.h17{height:54.417750pt;}
.hf{height:54.421481pt;}
.hb{height:54.424736pt;}
.h1d{height:54.432581pt;}
.h11{height:54.434585pt;}
.h12{height:54.436370pt;}
.hc{height:54.440058pt;}
.h10{height:54.445830pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:31.256000pt;}
.x6{left:75.520000pt;}
.x2{left:90.868171pt;}
.x24{left:104.797593pt;}
.xc{left:121.118970pt;}
.x17{left:122.719720pt;}
.x4{left:127.680133pt;}
.x1e{left:132.478692pt;}
.x1{left:133.759733pt;}
.xe{left:140.639388pt;}
.x1f{left:152.483232pt;}
.x22{left:196.643357pt;}
.x26{left:198.557190pt;}
.x18{left:214.239666pt;}
.x1c{left:220.959443pt;}
.x8{left:240.158136pt;}
.x13{left:258.876522pt;}
.x3{left:266.879867pt;}
.x11{left:269.438748pt;}
.x25{left:273.915576pt;}
.xf{left:277.916633pt;}
.xd{left:288.314581pt;}
.x1b{left:295.199190pt;}
.x21{left:301.437412pt;}
.x20{left:312.319306pt;}
.x19{left:316.476000pt;}
.x9{left:335.676960pt;}
.x10{left:347.356139pt;}
.x28{left:358.880059pt;}
.x15{left:369.595830pt;}
.x16{left:391.835520pt;}
.xb{left:406.394821pt;}
.xa{left:435.193440pt;}
.x23{left:459.356070pt;}
.x27{left:472.161674pt;}
.x5{left:492.954933pt;}
.x12{left:505.274101pt;}
.x1d{left:539.833019pt;}
.x1a{left:547.354800pt;}
.x14{left:571.990379pt;}
}




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