
    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_23ba46ca4986c33787f69983.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.915039;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_2bf8f7e19e73da41378db653.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.003906;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_086cc1757546d8ad09d04211.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.928223;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_7203cf9ca417637d1ced8c15.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.928223;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_819661a68f1e9f59ec6ee17b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.866699;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_84a004e19819c9aae0775008.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_38937366d5d726b6486a6a89.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.854980;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_ec633abcc878537d98a4a8e1.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.875488;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_6efa00a6c6fef42ff952ec58.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.850586;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_32299fa34b897e07420c6bae.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.928223;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_741c4287a8faef23d2aa967e.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.740234;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_68c7eb36eca1f80a5b426795.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.854980;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.249567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249567,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249568,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249568,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249570,0.000000,0.000000,0.250000,0,0);}
.m4{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;}
.v1{vertical-align:11.558110px;}
.ls4{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.005475px;}
.lsa{letter-spacing:0.005825px;}
.ls6{letter-spacing:0.006069px;}
.lsb{letter-spacing:0.006456px;}
.ls1{letter-spacing:9.414965px;}
.ls7{letter-spacing:110.945137px;}
.ls8{letter-spacing:119.829185px;}
.ls9{letter-spacing:120.036541px;}
.ls3{letter-spacing:182.825422px;}
.ls0{letter-spacing:460.225588px;}
.ls2{letter-spacing:950.242886px;}
.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;}
}
.ws7{word-spacing:-66.114450px;}
.ws0{word-spacing:-37.355323px;}
.ws4{word-spacing:-37.294689px;}
.ws3{word-spacing:-37.288620px;}
.ws1{word-spacing:-33.701363px;}
.ws6{word-spacing:-33.646395px;}
.ws5{word-spacing:-33.640920px;}
.ws2{word-spacing:0.000000px;}
._18{margin-left:-10.589385px;}
._19{margin-left:-8.728800px;}
._6{margin-left:-6.848476px;}
._2{margin-left:-4.980710px;}
._17{margin-left:-3.722793px;}
._3c{margin-left:-2.453339px;}
._1{margin-left:-1.245177px;}
._0{width:1.123379px;}
._2b{width:2.503514px;}
._5{width:3.735532px;}
._3{width:4.980710px;}
._4{width:6.225887px;}
._51{width:7.369221px;}
._16{width:8.672556px;}
._15{width:9.915510px;}
._1c{width:11.931067px;}
._29{width:13.036655px;}
._28{width:14.338678px;}
._4a{width:15.727303px;}
._e{width:18.053178px;}
._14{width:19.189112px;}
._4c{width:20.220818px;}
._3e{width:21.782040px;}
._32{width:23.027218px;}
._2f{width:26.699235px;}
._39{width:27.936120px;}
._c{width:30.464511px;}
._d{width:31.746103px;}
._9{width:33.619790px;}
._55{width:38.756567px;}
._37{width:39.804873px;}
._2a{width:41.023551px;}
._11{width:42.278643px;}
._12{width:43.533735px;}
._31{width:45.264646px;}
._f{width:46.655482px;}
._1a{width:50.973252px;}
._4b{width:52.586627px;}
._3b{width:54.696045px;}
._10{width:55.957206px;}
._50{width:63.961595px;}
._1b{width:65.226963px;}
._b{width:67.728855px;}
._a{width:68.955825px;}
._54{width:76.223009px;}
._25{width:78.939717px;}
._44{width:80.194809px;}
._56{width:81.296599px;}
._36{width:82.753547px;}
._22{width:83.871273px;}
._4e{width:85.938476px;}
._4d{width:87.623544px;}
._1f{width:92.618280px;}
._20{width:93.869527px;}
._52{width:96.048885px;}
._3f{width:102.576274px;}
._3d{width:105.041751px;}
._46{width:106.311205px;}
._35{width:116.813400px;}
._21{width:121.232722px;}
._13{width:130.522308px;}
._53{width:132.558694px;}
._2c{width:139.235124px;}
._4f{width:146.887261px;}
._47{width:150.054369px;}
._38{width:157.292149px;}
._2d{width:158.448513px;}
._45{width:167.736477px;}
._26{width:175.908336px;}
._27{width:177.127014px;}
._34{width:195.182416px;}
._43{width:196.549820px;}
._33{width:205.680765px;}
._42{width:213.775950px;}
._1d{width:241.157352px;}
._49{width:243.053459px;}
._2e{width:279.558934px;}
._57{width:289.503750px;}
._8{width:299.078756px;}
._40{width:324.429201px;}
._41{width:325.773523px;}
._24{width:354.213768px;}
._1e{width:391.502388px;}
._23{width:464.840520px;}
._30{width:466.146388px;}
._7{width:486.144503px;}
._48{width:502.129140px;}
._3a{width:576.754932px;}
.fc2{color:transparent;}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:56.068200px;}
.fs0{font-size:56.168938px;}
.fs6{font-size:59.646600px;}
.fs5{font-size:62.147700px;}
.fs1{font-size:62.258871px;}
.fs7{font-size:66.114450px;}
.fs2{font-size:90.004191px;}
.fs3{font-size:101.508708px;}
.y0{bottom:0.000000px;}
.y9{bottom:6.844813px;}
.yc9{bottom:57.600013px;}
.y3e{bottom:71.820030px;}
.y7{bottom:71.822393px;}
.yc8{bottom:78.480011px;}
.y3d{bottom:107.639992px;}
.y6{bottom:107.641936px;}
.y3c{bottom:125.820030px;}
.y5{bottom:125.820053px;}
.y3b{bottom:145.080025px;}
.y4{bottom:145.081202px;}
.y37{bottom:175.139081px;}
.ya3{bottom:176.758804px;}
.y64{bottom:180.360008px;}
.y6d{bottom:180.539977px;}
.ye1{bottom:181.620002px;}
.y36{bottom:192.775775px;}
.ya2{bottom:193.845922px;}
.y6c{bottom:197.460022px;}
.ye0{bottom:203.039977px;}
.y63{bottom:204.299973px;}
.y35{bottom:210.241396px;}
.ya1{bottom:210.768786px;}
.y6b{bottom:214.379998px;}
.ydd{bottom:222.659981px;}
.ya0{bottom:227.691650px;}
.y34{bottom:227.882822px;}
.y62{bottom:228.240006px;}
.y6a{bottom:231.299973px;}
.ydc{bottom:241.200027px;}
.y9f{bottom:244.614514px;}
.y33{bottom:245.519423px;}
.y69{bottom:248.220017px;}
.y61{bottom:252.360008px;}
.ydf{bottom:254.700027px;}
.ydb{bottom:259.919975px;}
.y9e{bottom:261.528757px;}
.y32{bottom:263.160849px;}
.y68{bottom:265.139992px;}
.yde{bottom:273.419975px;}
.y60{bottom:276.120002px;}
.y9d{bottom:278.451621px;}
.y31{bottom:280.617007px;}
.y67{bottom:282.059967px;}
.y9c{bottom:295.370132px;}
.y30{bottom:298.082721px;}
.y66{bottom:298.980011px;}
.y5f{bottom:300.240006px;}
.y9b{bottom:312.292996px;}
.y2f{bottom:315.724054px;}
.y5e{bottom:324.179970px;}
.y9a{bottom:329.207323px;}
.y65{bottom:330.480011px;}
.y99{bottom:346.130103px;}
.y5d{bottom:348.120002px;}
.y2e{bottom:356.578663px;}
.y98{bottom:363.052967px;}
.y5c{bottom:372.059967px;}
.y2d{bottom:373.863748px;}
.y97{bottom:379.975831px;}
.y2c{bottom:391.500442px;}
.y5b{bottom:396.179970px;}
.y96{bottom:396.890074px;}
.y2b{bottom:409.141868px;}
.yc4{bottom:410.400611px;}
.y95{bottom:413.812938px;}
.y5a{bottom:419.940033px;}
.y2a{bottom:426.778516px;}
.yc3{bottom:428.041991px;}
.y94{bottom:430.735801px;}
.y59{bottom:444.059967px;}
.y29{bottom:444.239405px;}
.yc2{bottom:445.683416px;}
.y93{bottom:447.650044px;}
.y28{bottom:461.333200px;}
.y92{bottom:464.572908px;}
.y58{bottom:468.000000px;}
.yc1{bottom:477.541508px;}
.y27{bottom:477.721998px;}
.y91{bottom:481.491504px;}
.y57{bottom:491.940033px;}
.y26{bottom:495.363377px;}
.y90{bottom:498.414326px;}
.yc0{bottom:510.302048px;}
.y25{bottom:513.000071px;}
.y8f{bottom:515.328610px;}
.y56{bottom:515.879998px;}
.y24{bottom:530.641451px;}
.y8e{bottom:532.251474px;}
.y55{bottom:540.000000px;}
.y23{bottom:548.097609px;}
.y8d{bottom:549.174296px;}
.ybf{bottom:550.980853px;}
.y54{bottom:563.759994px;}
.y22{bottom:565.563276px;}
.y8c{bottom:566.097160px;}
.ybe{bottom:571.324986px;}
.yda{bottom:581.399986px;}
.y8b{bottom:583.011445px;}
.y21{bottom:583.204702px;}
.yd8{bottom:583.740006px;}
.y53{bottom:587.879998px;}
.ybd{bottom:591.659657px;}
.y8a{bottom:599.934267px;}
.yd9{bottom:600.120002px;}
.y20{bottom:600.841350px;}
.yd7{bottom:602.460022px;}
.y52{bottom:611.820030px;}
.ybc{bottom:611.999013px;}
.y89{bottom:616.857131px;}
.y1f{bottom:618.482729px;}
.ybb{bottom:632.518905px;}
.y88{bottom:633.775684px;}
.y51{bottom:635.759994px;}
.y1e{bottom:635.938887px;}
.y87{bottom:650.694238px;}
.yba{bottom:652.682549px;}
.y1d{bottom:653.404554px;}
.y50{bottom:659.699993px;}
.y86{bottom:667.612791px;}
.y1c{bottom:671.041202px;}
.yb9{bottom:673.017220px;}
.y4f{bottom:683.819995px;}
.y85{bottom:684.535655px;}
.y1b{bottom:688.682628px;}
.yb8{bottom:693.537112px;}
.y84{bottom:701.449940px;}
.y1a{bottom:706.138786px;}
.y4e{bottom:707.579990px;}
.yb7{bottom:713.884075px;}
.y83{bottom:718.372762px;}
.y19{bottom:723.779238px;}
.y4d{bottom:731.699993px;}
.yb6{bottom:734.039184px;}
.y82{bottom:735.295626px;}
.y18{bottom:741.418762px;}
.y81{bottom:752.218490px;}
.yb5{bottom:754.376684px;}
.y4c{bottom:755.639992px;}
.y17{bottom:758.883455px;}
.y80{bottom:769.132733px;}
.yb4{bottom:774.896576px;}
.y16{bottom:776.340587px;}
.y4b{bottom:779.579990px;}
.y7f{bottom:786.054760px;}
.yb3{bottom:792.543661px;}
.y15{bottom:793.980065px;}
.y7e{bottom:802.976745px;}
.y4a{bottom:803.519989px;}
.yb2{bottom:810.000793px;}
.y14{bottom:811.619588px;}
.y7d{bottom:819.898730px;}
.yb1{bottom:827.457902px;}
.y49{bottom:827.639992px;}
.y13{bottom:829.259089px;}
.y7c{bottom:836.813852px;}
.yb0{bottom:845.097403px;}
.y12{bottom:848.880193px;}
.y48{bottom:851.399986px;}
.y7b{bottom:853.735837px;}
.yca{bottom:858.240006px;}
.yd6{bottom:859.680004px;}
.yaf{bottom:862.736904px;}
.y7a{bottom:870.657843px;}
.y11{bottom:874.446557px;}
.y47{bottom:875.519989px;}
.yd5{bottom:878.220017px;}
.yae{bottom:880.201620px;}
.y79{bottom:887.579828px;}
.yd4{bottom:896.939999px;}
.yad{bottom:897.841121px;}
.y46{bottom:899.459988px;}
.y10{bottom:900.001958px;}
.y78{bottom:904.494950px;}
.yac{bottom:915.480645px;}
.yd3{bottom:915.659998px;}
.y77{bottom:921.416956px;}
.y45{bottom:923.400003px;}
.yf{bottom:926.285457px;}
.yab{bottom:932.937754px;}
.yd2{bottom:934.379998px;}
.y76{bottom:938.338941px;}
.y44{bottom:947.340002px;}
.yaa{bottom:950.577254px;}
.yd1{bottom:953.099997px;}
.y75{bottom:955.260926px;}
.ye{bottom:960.836102px;}
.yd{bottom:960.837200px;}
.y8{bottom:965.340697px;}
.ya9{bottom:968.041947px;}
.y43{bottom:971.460004px;}
.yd0{bottom:971.819996px;}
.y74{bottom:972.176068px;}
.ya8{bottom:985.681471px;}
.y73{bottom:989.098053px;}
.ycf{bottom:990.539996px;}
.y42{bottom:995.219999px;}
.yc{bottom:995.577063px;}
.ya7{bottom:1003.320972px;}
.y72{bottom:1006.020039px;}
.yce{bottom:1009.080008px;}
.y41{bottom:1019.340002px;}
.ya6{bottom:1020.960484px;}
.y71{bottom:1022.935171px;}
.ycd{bottom:1027.800007px;}
.ya5{bottom:1038.242786px;}
.yb{bottom:1038.785172px;}
.y70{bottom:1039.857166px;}
.y40{bottom:1043.280001px;}
.ycc{bottom:1046.519998px;}
.ya4{bottom:1055.882298px;}
.y6f{bottom:1056.779151px;}
.ycb{bottom:1065.239997px;}
.y3f{bottom:1067.219999px;}
.ya{bottom:1073.521799px;}
.y6e{bottom:1073.701147px;}
.yc7{bottom:1084.680004px;}
.y3{bottom:1091.700908px;}
.y3a{bottom:1091.879998px;}
.yc6{bottom:1103.400003px;}
.y2{bottom:1109.340414px;}
.y39{bottom:1109.519998px;}
.yc5{bottom:1121.579999px;}
.y1{bottom:1126.441805px;}
.y38{bottom:1126.619999px;}
.h5{height:25.742175px;}
.h13{height:37.436817px;}
.h10{height:38.026724px;}
.h12{height:38.095047px;}
.ha{height:39.587215px;}
.h1{height:39.658342px;}
.h14{height:39.754692px;}
.hf{height:40.819183px;}
.h11{height:40.892523px;}
.he{height:42.149978px;}
.h9{height:42.225377px;}
.hb{height:43.879675px;}
.h2{height:43.958168px;}
.h15{height:44.065539px;}
.hd{height:45.245225px;}
.h4{height:45.326160px;}
.h16{height:55.719502px;}
.hc{height:61.813899px;}
.h3{height:61.924473px;}
.h6{height:63.547881px;}
.h7{height:71.670699px;}
.h8{height:75.105991px;}
.h0{height:1188.000000px;}
.w1{width:7.556910px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x16{left:135.000000px;}
.x5{left:140.401689px;}
.xc{left:147.244595px;}
.xd{left:153.902142px;}
.x12{left:162.000000px;}
.xf{left:165.779600px;}
.x14{left:169.199993px;}
.x10{left:191.157522px;}
.x1{left:193.143175px;}
.x3{left:199.798909px;}
.xe{left:214.916781px;}
.x13{left:218.699993px;}
.x2{left:246.419904px;}
.x6{left:262.265376px;}
.x7{left:277.563814px;}
.x8{left:300.239302px;}
.x9{left:323.098669px;}
.x15{left:363.600014px;}
.xb{left:367.196927px;}
.x4{left:374.037820px;}
.x11{left:483.480011px;}
.x17{left:504.540012px;}
.xa{left:631.084316px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:10.273876pt;}
.ls4{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.004867pt;}
.lsa{letter-spacing:0.005178pt;}
.ls6{letter-spacing:0.005395pt;}
.lsb{letter-spacing:0.005739pt;}
.ls1{letter-spacing:8.368858pt;}
.ls7{letter-spacing:98.617899pt;}
.ls8{letter-spacing:106.514831pt;}
.ls9{letter-spacing:106.699148pt;}
.ls3{letter-spacing:162.511486pt;}
.ls0{letter-spacing:409.089411pt;}
.ls2{letter-spacing:844.660344pt;}
.ws7{word-spacing:-58.768400pt;}
.ws0{word-spacing:-33.204731pt;}
.ws4{word-spacing:-33.150835pt;}
.ws3{word-spacing:-33.145440pt;}
.ws1{word-spacing:-29.956767pt;}
.ws6{word-spacing:-29.907907pt;}
.ws5{word-spacing:-29.903040pt;}
.ws2{word-spacing:0.000000pt;}
._18{margin-left:-9.412787pt;}
._19{margin-left:-7.758933pt;}
._6{margin-left:-6.087534pt;}
._2{margin-left:-4.427297pt;}
._17{margin-left:-3.309149pt;}
._3c{margin-left:-2.180746pt;}
._1{margin-left:-1.106824pt;}
._0{width:0.998559pt;}
._2b{width:2.225346pt;}
._5{width:3.320473pt;}
._3{width:4.427297pt;}
._4{width:5.534122pt;}
._51{width:6.550419pt;}
._16{width:7.708939pt;}
._15{width:8.813787pt;}
._1c{width:10.605393pt;}
._29{width:11.588138pt;}
._28{width:12.745492pt;}
._4a{width:13.979825pt;}
._e{width:16.047270pt;}
._14{width:17.056989pt;}
._4c{width:17.974060pt;}
._3e{width:19.361814pt;}
._32{width:20.468638pt;}
._2f{width:23.732653pt;}
._39{width:24.832106pt;}
._c{width:27.079566pt;}
._d{width:28.218758pt;}
._9{width:29.884258pt;}
._55{width:34.450282pt;}
._37{width:35.382110pt;}
._2a{width:36.465379pt;}
._11{width:37.581016pt;}
._12{width:38.696654pt;}
._31{width:40.235241pt;}
._f{width:41.471540pt;}
._1a{width:45.309558pt;}
._4b{width:46.743669pt;}
._3b{width:48.618707pt;}
._10{width:49.739739pt;}
._50{width:56.854751pt;}
._1b{width:57.979523pt;}
._b{width:60.203426pt;}
._a{width:61.294067pt;}
._54{width:67.753786pt;}
._25{width:70.168638pt;}
._44{width:71.284275pt;}
._56{width:72.263644pt;}
._36{width:73.558708pt;}
._22{width:74.552243pt;}
._4e{width:76.389756pt;}
._4d{width:77.887594pt;}
._1f{width:82.327360pt;}
._20{width:83.439579pt;}
._52{width:85.376786pt;}
._3f{width:91.178910pt;}
._3d{width:93.370446pt;}
._46{width:94.498849pt;}
._35{width:103.834133pt;}
._21{width:107.762420pt;}
._13{width:116.019830pt;}
._53{width:117.829951pt;}
._2c{width:123.764555pt;}
._4f{width:130.566454pt;}
._47{width:133.381661pt;}
._38{width:139.815243pt;}
._2d{width:140.843123pt;}
._45{width:149.099090pt;}
._26{width:156.362966pt;}
._27{width:157.446235pt;}
._34{width:173.495481pt;}
._43{width:174.710951pt;}
._33{width:182.827347pt;}
._42{width:190.023066pt;}
._1d{width:214.362091pt;}
._49{width:216.047519pt;}
._2e{width:248.496831pt;}
._57{width:257.336667pt;}
._8{width:265.847783pt;}
._40{width:288.381512pt;}
._41{width:289.576465pt;}
._24{width:314.856683pt;}
._1e{width:348.002123pt;}
._23{width:413.191573pt;}
._30{width:414.352345pt;}
._7{width:432.128447pt;}
._48{width:446.337013pt;}
._3a{width:512.671051pt;}
.fs4{font-size:49.838400pt;}
.fs0{font-size:49.927945pt;}
.fs6{font-size:53.019200pt;}
.fs5{font-size:55.242400pt;}
.fs1{font-size:55.341219pt;}
.fs7{font-size:58.768400pt;}
.fs2{font-size:80.003726pt;}
.fs3{font-size:90.229963pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:6.084279pt;}
.yc9{bottom:51.200012pt;}
.y3e{bottom:63.840027pt;}
.y7{bottom:63.842127pt;}
.yc8{bottom:69.760010pt;}
.y3d{bottom:95.679993pt;}
.y6{bottom:95.681721pt;}
.y3c{bottom:111.840027pt;}
.y5{bottom:111.840047pt;}
.y3b{bottom:128.960022pt;}
.y4{bottom:128.961068pt;}
.y37{bottom:155.679183pt;}
.ya3{bottom:157.118937pt;}
.y64{bottom:160.320007pt;}
.y6d{bottom:160.479980pt;}
.ye1{bottom:161.440002pt;}
.y36{bottom:171.356245pt;}
.ya2{bottom:172.307486pt;}
.y6c{bottom:175.520020pt;}
.ye0{bottom:180.479980pt;}
.y63{bottom:181.599976pt;}
.y35{bottom:186.881241pt;}
.ya1{bottom:187.350032pt;}
.y6b{bottom:190.559998pt;}
.ydd{bottom:197.919983pt;}
.ya0{bottom:202.392578pt;}
.y34{bottom:202.562508pt;}
.y62{bottom:202.880005pt;}
.y6a{bottom:205.599976pt;}
.ydc{bottom:214.400024pt;}
.y9f{bottom:217.435123pt;}
.y33{bottom:218.239487pt;}
.y69{bottom:220.640015pt;}
.y61{bottom:224.320007pt;}
.ydf{bottom:226.400024pt;}
.ydb{bottom:231.039978pt;}
.y9e{bottom:232.470006pt;}
.y32{bottom:233.920755pt;}
.y68{bottom:235.679993pt;}
.yde{bottom:243.039978pt;}
.y60{bottom:245.440002pt;}
.y9d{bottom:247.512552pt;}
.y31{bottom:249.437340pt;}
.y67{bottom:250.719971pt;}
.y9c{bottom:262.551229pt;}
.y30{bottom:264.962419pt;}
.y66{bottom:265.760010pt;}
.y5f{bottom:266.880005pt;}
.y9b{bottom:277.593774pt;}
.y2f{bottom:280.643603pt;}
.y5e{bottom:288.159973pt;}
.y9a{bottom:292.628731pt;}
.y65{bottom:293.760010pt;}
.y99{bottom:307.671203pt;}
.y5d{bottom:309.440002pt;}
.y2e{bottom:316.958812pt;}
.y98{bottom:322.713748pt;}
.y5c{bottom:330.719971pt;}
.y2d{bottom:332.323331pt;}
.y97{bottom:337.756294pt;}
.y2c{bottom:348.000393pt;}
.y5b{bottom:352.159973pt;}
.y96{bottom:352.791177pt;}
.y2b{bottom:363.681660pt;}
.yc4{bottom:364.800543pt;}
.y95{bottom:367.833722pt;}
.y5a{bottom:373.280029pt;}
.y2a{bottom:379.358681pt;}
.yc3{bottom:380.481769pt;}
.y94{bottom:382.876268pt;}
.y59{bottom:394.719971pt;}
.y29{bottom:394.879471pt;}
.yc2{bottom:396.163037pt;}
.y93{bottom:397.911151pt;}
.y28{bottom:410.073956pt;}
.y92{bottom:412.953696pt;}
.y58{bottom:416.000000pt;}
.yc1{bottom:424.481340pt;}
.y27{bottom:424.641776pt;}
.y91{bottom:427.992448pt;}
.y57{bottom:437.280029pt;}
.y26{bottom:440.323002pt;}
.y90{bottom:443.034956pt;}
.yc0{bottom:453.601821pt;}
.y25{bottom:456.000063pt;}
.y8f{bottom:458.069876pt;}
.y56{bottom:458.559998pt;}
.y24{bottom:471.681289pt;}
.y8e{bottom:473.112422pt;}
.y55{bottom:480.000000pt;}
.y23{bottom:487.197874pt;}
.y8d{bottom:488.154930pt;}
.ybf{bottom:489.760758pt;}
.y54{bottom:501.119995pt;}
.y22{bottom:502.722912pt;}
.y8c{bottom:503.197476pt;}
.ybe{bottom:507.844432pt;}
.yda{bottom:516.799988pt;}
.y8b{bottom:518.232396pt;}
.y21{bottom:518.404179pt;}
.yd8{bottom:518.880005pt;}
.y53{bottom:522.559998pt;}
.ybd{bottom:525.919695pt;}
.y8a{bottom:533.274904pt;}
.yd9{bottom:533.440002pt;}
.y20{bottom:534.081200pt;}
.yd7{bottom:535.520020pt;}
.y52{bottom:543.840027pt;}
.ybc{bottom:543.999123pt;}
.y89{bottom:548.317450pt;}
.y1f{bottom:549.762426pt;}
.ybb{bottom:562.239027pt;}
.y88{bottom:563.356164pt;}
.y51{bottom:565.119995pt;}
.y1e{bottom:565.279011pt;}
.y87{bottom:578.394878pt;}
.yba{bottom:580.162266pt;}
.y1d{bottom:580.804048pt;}
.y50{bottom:586.399994pt;}
.y86{bottom:593.433592pt;}
.y1c{bottom:596.481069pt;}
.yb9{bottom:598.237529pt;}
.y4f{bottom:607.839996pt;}
.y85{bottom:608.476138pt;}
.y1b{bottom:612.162336pt;}
.yb8{bottom:616.477433pt;}
.y84{bottom:623.511058pt;}
.y1a{bottom:627.678921pt;}
.y4e{bottom:628.959991pt;}
.yb7{bottom:634.563622pt;}
.y83{bottom:638.553566pt;}
.y19{bottom:643.359322pt;}
.y4d{bottom:650.399994pt;}
.yb6{bottom:652.479274pt;}
.y82{bottom:653.596112pt;}
.y18{bottom:659.038899pt;}
.y81{bottom:668.638658pt;}
.yb5{bottom:670.557053pt;}
.y4c{bottom:671.679993pt;}
.y17{bottom:674.563071pt;}
.y80{bottom:683.673540pt;}
.yb4{bottom:688.796957pt;}
.y16{bottom:690.080522pt;}
.y4b{bottom:692.959991pt;}
.y7f{bottom:698.715342pt;}
.yb3{bottom:704.483254pt;}
.y15{bottom:705.760057pt;}
.y7e{bottom:713.757107pt;}
.y4a{bottom:714.239990pt;}
.yb2{bottom:720.000705pt;}
.y14{bottom:721.439634pt;}
.y7d{bottom:728.798871pt;}
.yb1{bottom:735.518135pt;}
.y49{bottom:735.679993pt;}
.y13{bottom:737.119190pt;}
.y7c{bottom:743.834535pt;}
.yb0{bottom:751.197691pt;}
.y12{bottom:754.560171pt;}
.y48{bottom:756.799988pt;}
.y7b{bottom:758.876299pt;}
.yca{bottom:762.880005pt;}
.yd6{bottom:764.160004pt;}
.yaf{bottom:766.877248pt;}
.y7a{bottom:773.918082pt;}
.y11{bottom:777.285829pt;}
.y47{bottom:778.239990pt;}
.yd5{bottom:780.640015pt;}
.yae{bottom:782.401440pt;}
.y79{bottom:788.959847pt;}
.yd4{bottom:797.279999pt;}
.yad{bottom:798.080996pt;}
.y46{bottom:799.519989pt;}
.y10{bottom:800.001740pt;}
.y78{bottom:803.995511pt;}
.yac{bottom:813.760573pt;}
.yd3{bottom:813.919998pt;}
.y77{bottom:819.037294pt;}
.y45{bottom:820.800003pt;}
.yf{bottom:823.364850pt;}
.yab{bottom:829.278003pt;}
.yd2{bottom:830.559998pt;}
.y76{bottom:834.079058pt;}
.y44{bottom:842.080002pt;}
.yaa{bottom:844.957559pt;}
.yd1{bottom:847.199997pt;}
.y75{bottom:849.120823pt;}
.ye{bottom:854.076535pt;}
.yd{bottom:854.077511pt;}
.y8{bottom:858.080619pt;}
.ya9{bottom:860.481731pt;}
.y43{bottom:863.520004pt;}
.yd0{bottom:863.839996pt;}
.y74{bottom:864.156505pt;}
.ya8{bottom:876.161308pt;}
.y73{bottom:879.198270pt;}
.ycf{bottom:880.479996pt;}
.y42{bottom:884.639999pt;}
.yc{bottom:884.957390pt;}
.ya7{bottom:891.840864pt;}
.y72{bottom:894.240034pt;}
.yce{bottom:896.960007pt;}
.y41{bottom:906.080002pt;}
.ya6{bottom:907.520430pt;}
.y71{bottom:909.275707pt;}
.ycd{bottom:913.600006pt;}
.ya5{bottom:922.882476pt;}
.yb{bottom:923.364597pt;}
.y70{bottom:924.317481pt;}
.y40{bottom:927.360001pt;}
.ycc{bottom:930.239998pt;}
.ya4{bottom:938.562043pt;}
.y6f{bottom:939.359246pt;}
.ycb{bottom:946.879997pt;}
.y3f{bottom:948.639999pt;}
.ya{bottom:954.241599pt;}
.y6e{bottom:954.401019pt;}
.yc7{bottom:964.160004pt;}
.y3{bottom:970.400807pt;}
.y3a{bottom:970.559998pt;}
.yc6{bottom:980.800003pt;}
.y2{bottom:986.080368pt;}
.y39{bottom:986.239998pt;}
.yc5{bottom:996.959999pt;}
.y1{bottom:1001.281605pt;}
.y38{bottom:1001.439999pt;}
.h5{height:22.881933pt;}
.h13{height:33.277170pt;}
.h10{height:33.801532pt;}
.h12{height:33.862264pt;}
.ha{height:35.188636pt;}
.h1{height:35.251860pt;}
.h14{height:35.337504pt;}
.hf{height:36.283718pt;}
.h11{height:36.348909pt;}
.he{height:37.466647pt;}
.h9{height:37.533668pt;}
.hb{height:39.004155pt;}
.h2{height:39.073927pt;}
.h15{height:39.169368pt;}
.hd{height:40.217978pt;}
.h4{height:40.289920pt;}
.h16{height:49.528446pt;}
.hc{height:54.945688pt;}
.h3{height:55.043976pt;}
.h6{height:56.487006pt;}
.h7{height:63.707288pt;}
.h8{height:66.760881pt;}
.h0{height:1056.000000pt;}
.w1{width:6.717253pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x16{left:120.000000pt;}
.x5{left:124.801501pt;}
.xc{left:130.884084pt;}
.xd{left:136.801904pt;}
.x12{left:144.000000pt;}
.xf{left:147.359644pt;}
.x14{left:150.399994pt;}
.x10{left:169.917797pt;}
.x1{left:171.682822pt;}
.x3{left:177.599031pt;}
.xe{left:191.037139pt;}
.x13{left:194.399994pt;}
.x2{left:219.039915pt;}
.x6{left:233.124779pt;}
.x7{left:246.723391pt;}
.x8{left:266.879379pt;}
.x9{left:287.198817pt;}
.x15{left:323.200012pt;}
.xb{left:326.397268pt;}
.x4{left:332.478062pt;}
.x11{left:429.760010pt;}
.x17{left:448.480011pt;}
.xa{left:560.963836pt;}
}




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