
    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_886c298963ee688c78cbb9e0.woff')format("woff");}.ff1{font-family:ff1;line-height:0.999000;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_17c91c25738f205afdc9f788.woff')format("woff");}.ff2{font-family:ff2;line-height:0.918000;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_57fd0a9ee41d70520b3e272e.woff')format("woff");}.ff3{font-family:ff3;line-height:0.909000;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_6ad9404157101374feadcab8.woff')format("woff");}.ff4{font-family:ff4;line-height:0.909000;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_d5658cfa27a997aac6fd6bf8.woff')format("woff");}.ff5{font-family:ff5;line-height:0.665000;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_b48437c401c26d294368ec97.woff')format("woff");}.ff6{font-family:ff6;line-height:0.922000;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_2174325bc876f8667bef0138.woff')format("woff");}.ff7{font-family:ff7;line-height:1.001000;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_0fa8032ece1be626173a413d.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_d5658cfa27a997aac6fd6bf8.woff')format("woff");}.ff9{font-family:ff9;line-height:0.665000;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_4dc87b9882468733aa30d252.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_4985f4b6d9c258ec76c36ec2.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_82650d66d0ed6aa54451dd65.woff')format("woff");}.ffc{font-family:ffc;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_06dd7db970b1d2286159a929.woff')format("woff");}.ffd{font-family:ffd;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_152474244542447895e6716c.woff')format("woff");}.ffe{font-family:ffe;line-height:1.432129;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;}
.m4{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m5{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,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);}
.m8{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.v2{vertical-align:-22.854000px;}
.v3{vertical-align:-16.878000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:26.028000px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:2.964877px;}
.ls1{letter-spacing:2.984915px;}
.ls2{letter-spacing:2.988532px;}
.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;}
}
.wse{word-spacing:-8.506800px;}
.ws1b{word-spacing:-8.406720px;}
.ws18{word-spacing:-2.139966px;}
.ws13{word-spacing:-0.585801px;}
.wsb{word-spacing:0.000000px;}
.ws1e{word-spacing:0.011955px;}
.ws11{word-spacing:2.283428px;}
.ws7{word-spacing:3.060511px;}
.ws12{word-spacing:3.180062px;}
.ws17{word-spacing:3.239838px;}
.ws9{word-spacing:3.299613px;}
.ws16{word-spacing:3.359389px;}
.ws10{word-spacing:3.419164px;}
.ws15{word-spacing:3.598491px;}
.ws14{word-spacing:4.435350px;}
.ws8{word-spacing:6.168842px;}
.ws1d{word-spacing:8.739193px;}
.ws6{word-spacing:9.277173px;}
.ws5{word-spacing:12.684382px;}
.wsa{word-spacing:16.928492px;}
.ws2{word-spacing:18.345254px;}
.ws19{word-spacing:18.784080px;}
.wsc{word-spacing:19.002599px;}
.ws1{word-spacing:23.312640px;}
.ws4{word-spacing:26.827469px;}
.ws0{word-spacing:31.091012px;}
.ws3{word-spacing:32.192873px;}
.ws1a{word-spacing:109.504080px;}
.wsd{word-spacing:110.802596px;}
.ws1c{word-spacing:132.657840px;}
.wsf{word-spacing:134.242195px;}
._2{margin-left:-8.160100px;}
._c{margin-left:-6.742733px;}
._8{margin-left:-4.961375px;}
._b{margin-left:-3.861117px;}
._0{margin-left:-2.685602px;}
._3{margin-left:-1.187882px;}
._9{width:1.247658px;}
._1{width:2.582310px;}
._e{width:16.653534px;}
._a{width:22.710463px;}
._f{width:24.296052px;}
._11{width:25.930681px;}
._7{width:27.006642px;}
._d{width:30.716029px;}
._10{width:37.598852px;}
._6{width:44.349196px;}
._5{width:80.697600px;}
._4{width:96.836850px;}
.fc2{color:transparent;}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:25.500000px;}
.fs9{font-size:30.240000px;}
.fs7{font-size:30.599999px;}
.fs3{font-size:35.865600px;}
.fs2{font-size:47.820600px;}
.fs4{font-size:53.798400px;}
.fs6{font-size:59.775600px;}
.fs1{font-size:71.731200px;}
.fs5{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y1b{bottom:1.977379px;}
.y42{bottom:6.356700px;}
.y19{bottom:6.432985px;}
.y3c{bottom:11.793600px;}
.y41{bottom:15.428700px;}
.y18{bottom:15.612985px;}
.y39{bottom:29.937600px;}
.y46{bottom:46.909800px;}
.y3a{bottom:49.007700px;}
.y26{bottom:59.184000px;}
.y1d{bottom:59.184004px;}
.y13{bottom:59.184005px;}
.ye{bottom:63.168000px;}
.y10{bottom:77.543999px;}
.y1f{bottom:94.718249px;}
.y11{bottom:96.841124px;}
.y44{bottom:100.705500px;}
.y25{bottom:101.904980px;}
.y2a{bottom:101.904981px;}
.y43{bottom:109.777500px;}
.y24{bottom:111.084979px;}
.y29{bottom:111.084981px;}
.y45{bottom:123.977700px;}
.y3d{bottom:137.818800px;}
.y2e{bottom:165.598500px;}
.y1e{bottom:172.703621px;}
.y2d{bottom:183.531000px;}
.y14{bottom:186.709496px;}
.y40{bottom:195.054300px;}
.y1c{bottom:195.972371px;}
.y17{bottom:197.376977px;}
.y2c{bottom:201.463500px;}
.y3f{bottom:204.126300px;}
.y16{bottom:206.556977px;}
.y2b{bottom:219.396000px;}
.y27{bottom:246.892500px;}
.y3b{bottom:278.063100px;}
.y47{bottom:301.190400px;}
.y37{bottom:312.487500px;}
.y22{bottom:321.738367px;}
.y12{bottom:328.623367px;}
.y21{bottom:329.082367px;}
.y36{bottom:330.420000px;}
.y20{bottom:336.426367px;}
.y28{bottom:340.959891px;}
.y35{bottom:348.352500px;}
.y23{bottom:352.025991px;}
.y4c{bottom:380.107500px;}
.y4b{bottom:398.040000px;}
.y4a{bottom:415.972500px;}
.yd{bottom:441.928500px;}
.y48{bottom:443.470500px;}
.yc{bottom:464.002500px;}
.y49{bottom:489.737700px;}
.yb{bottom:493.897500px;}
.ya{bottom:523.791000px;}
.y9{bottom:553.684500px;}
.y8{bottom:583.579500px;}
.y7{bottom:623.124000px;}
.yf{bottom:664.194000px;}
.y6{bottom:672.799500px;}
.y15{bottom:758.261391px;}
.y38{bottom:762.481500px;}
.y5{bottom:762.576000px;}
.y3e{bottom:808.748700px;}
.y4{bottom:818.926500px;}
.y3{bottom:857.056500px;}
.y1a{bottom:867.368991px;}
.y34{bottom:905.934000px;}
.y2{bottom:925.557000px;}
.y33{bottom:935.829000px;}
.y32{bottom:965.722500px;}
.y1{bottom:980.362500px;}
.y31{bottom:995.617500px;}
.y30{bottom:1025.511000px;}
.y2f{bottom:1065.055500px;}
.hb{height:7.875000px;}
.hc{height:18.895500px;}
.h9{height:22.674599px;}
.h3{height:23.850624px;}
.he{height:31.539375px;}
.h7{height:44.831700px;}
.h4{height:51.216077px;}
.h6{height:53.798400px;}
.h2{height:59.693702px;}
.h5{height:64.557900px;}
.h1{height:77.366008px;}
.h10{height:215.913600px;}
.ha{height:218.484000px;}
.hf{height:299.376000px;}
.hd{height:317.520000px;}
.h8{height:415.799991px;}
.h0{height:1188.000000px;}
.w3{width:84.147525px;}
.w6{width:93.441600px;}
.w2{width:94.555125px;}
.w5{width:149.688000px;}
.w4{width:317.520000px;}
.w1{width:321.299991px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x25{left:8.164800px;}
.x27{left:9.909900px;}
.x1d{left:12.151348px;}
.x11{left:13.770598px;}
.xf{left:17.441999px;}
.x12{left:21.191098px;}
.x29{left:22.251600px;}
.x2b{left:27.833400px;}
.xc{left:35.801999px;}
.xb{left:45.001124px;}
.x23{left:52.403400px;}
.x14{left:56.845873px;}
.xd{left:62.207248px;}
.x24{left:68.159700px;}
.xe{left:78.151125px;}
.x2f{left:96.251400px;}
.x1e{left:97.397247px;}
.x1f{left:102.962622px;}
.x20{left:106.251000px;}
.x7{left:108.000000px;}
.x2c{left:112.751100px;}
.x1{left:114.612000px;}
.x8{left:124.638000px;}
.xa{left:127.732500px;}
.x21{left:131.520000px;}
.x22{left:140.592000px;}
.x16{left:168.911995px;}
.x10{left:174.549900px;}
.x26{left:177.787200px;}
.x1a{left:179.500870px;}
.x15{left:183.166493px;}
.x13{left:184.957500px;}
.x18{left:187.271995px;}
.x2a{left:194.159700px;}
.x17{left:196.471120px;}
.x19{left:198.275244px;}
.x2{left:225.786000px;}
.x3{left:236.979000px;}
.x28{left:290.280000px;}
.x5{left:324.975000px;}
.x4{left:387.960000px;}
.x6{left:393.616500px;}
.x9{left:455.263500px;}
.x1b{left:468.963000px;}
.x2d{left:478.035000px;}
.x1c{left:515.780400px;}
.x2e{left:627.723000px;}
@media print{
.v2{vertical-align:-20.314667pt;}
.v3{vertical-align:-15.002667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:23.136000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:2.635446pt;}
.ls1{letter-spacing:2.653258pt;}
.ls2{letter-spacing:2.656473pt;}
.wse{word-spacing:-7.561600pt;}
.ws1b{word-spacing:-7.472640pt;}
.ws18{word-spacing:-1.902192pt;}
.ws13{word-spacing:-0.520712pt;}
.wsb{word-spacing:0.000000pt;}
.ws1e{word-spacing:0.010627pt;}
.ws11{word-spacing:2.029714pt;}
.ws7{word-spacing:2.720454pt;}
.ws12{word-spacing:2.826722pt;}
.ws17{word-spacing:2.879856pt;}
.ws9{word-spacing:2.932989pt;}
.ws16{word-spacing:2.986123pt;}
.ws10{word-spacing:3.039257pt;}
.ws15{word-spacing:3.198659pt;}
.ws14{word-spacing:3.942533pt;}
.ws8{word-spacing:5.483415pt;}
.ws1d{word-spacing:7.768171pt;}
.ws6{word-spacing:8.246376pt;}
.ws5{word-spacing:11.275007pt;}
.wsa{word-spacing:15.047549pt;}
.ws2{word-spacing:16.306893pt;}
.ws19{word-spacing:16.696960pt;}
.wsc{word-spacing:16.891199pt;}
.ws1{word-spacing:20.722347pt;}
.ws4{word-spacing:23.846639pt;}
.ws0{word-spacing:27.636455pt;}
.ws3{word-spacing:28.615887pt;}
.ws1a{word-spacing:97.336960pt;}
.wsd{word-spacing:98.491196pt;}
.ws1c{word-spacing:117.918080pt;}
.wsf{word-spacing:119.326395pt;}
._2{margin-left:-7.253422pt;}
._c{margin-left:-5.993540pt;}
._8{margin-left:-4.410111pt;}
._b{margin-left:-3.432104pt;}
._0{margin-left:-2.387202pt;}
._3{margin-left:-1.055895pt;}
._9{width:1.109029pt;}
._1{width:2.295387pt;}
._e{width:14.803141pt;}
._a{width:20.187078pt;}
._f{width:21.596491pt;}
._11{width:23.049494pt;}
._7{width:24.005904pt;}
._d{width:27.303137pt;}
._10{width:33.421202pt;}
._6{width:39.421507pt;}
._5{width:71.731200pt;}
._4{width:86.077200pt;}
.fs8{font-size:22.666666pt;}
.fs9{font-size:26.880000pt;}
.fs7{font-size:27.199999pt;}
.fs3{font-size:31.880533pt;}
.fs2{font-size:42.507200pt;}
.fs4{font-size:47.820800pt;}
.fs6{font-size:53.133867pt;}
.fs1{font-size:63.761067pt;}
.fs5{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y1b{bottom:1.757671pt;}
.y42{bottom:5.650400pt;}
.y19{bottom:5.718209pt;}
.y3c{bottom:10.483200pt;}
.y41{bottom:13.714400pt;}
.y18{bottom:13.878208pt;}
.y39{bottom:26.611200pt;}
.y46{bottom:41.697600pt;}
.y3a{bottom:43.562400pt;}
.y26{bottom:52.608000pt;}
.y1d{bottom:52.608004pt;}
.y13{bottom:52.608005pt;}
.ye{bottom:56.149333pt;}
.y10{bottom:68.927999pt;}
.y1f{bottom:84.193999pt;}
.y11{bottom:86.080999pt;}
.y44{bottom:89.516000pt;}
.y25{bottom:90.582204pt;}
.y2a{bottom:90.582205pt;}
.y43{bottom:97.580000pt;}
.y24{bottom:98.742204pt;}
.y29{bottom:98.742205pt;}
.y45{bottom:110.202400pt;}
.y3d{bottom:122.505600pt;}
.y2e{bottom:147.198667pt;}
.y1e{bottom:153.514330pt;}
.y2d{bottom:163.138667pt;}
.y14{bottom:165.963997pt;}
.y40{bottom:173.381600pt;}
.y1c{bottom:174.197663pt;}
.y17{bottom:175.446202pt;}
.y2c{bottom:179.078667pt;}
.y3f{bottom:181.445600pt;}
.y16{bottom:183.606202pt;}
.y2b{bottom:195.018667pt;}
.y27{bottom:219.460000pt;}
.y3b{bottom:247.167200pt;}
.y47{bottom:267.724800pt;}
.y37{bottom:277.766667pt;}
.y22{bottom:285.989660pt;}
.y12{bottom:292.109660pt;}
.y21{bottom:292.517660pt;}
.y36{bottom:293.706667pt;}
.y20{bottom:299.045660pt;}
.y28{bottom:303.075459pt;}
.y35{bottom:309.646667pt;}
.y23{bottom:312.911992pt;}
.y4c{bottom:337.873333pt;}
.y4b{bottom:353.813333pt;}
.y4a{bottom:369.753333pt;}
.yd{bottom:392.825333pt;}
.y48{bottom:394.196000pt;}
.yc{bottom:412.446667pt;}
.y49{bottom:435.322400pt;}
.yb{bottom:439.020000pt;}
.ya{bottom:465.592000pt;}
.y9{bottom:492.164000pt;}
.y8{bottom:518.737333pt;}
.y7{bottom:553.888000pt;}
.yf{bottom:590.394667pt;}
.y6{bottom:598.044000pt;}
.y15{bottom:674.010125pt;}
.y38{bottom:677.761333pt;}
.y5{bottom:677.845333pt;}
.y3e{bottom:718.887733pt;}
.y4{bottom:727.934667pt;}
.y3{bottom:761.828000pt;}
.y1a{bottom:770.994659pt;}
.y34{bottom:805.274667pt;}
.y2{bottom:822.717333pt;}
.y33{bottom:831.848000pt;}
.y32{bottom:858.420000pt;}
.y1{bottom:871.433333pt;}
.y31{bottom:884.993333pt;}
.y30{bottom:911.565333pt;}
.y2f{bottom:946.716000pt;}
.hb{height:7.000000pt;}
.hc{height:16.796000pt;}
.h9{height:20.155199pt;}
.h3{height:21.200555pt;}
.he{height:28.035000pt;}
.h7{height:39.850400pt;}
.h4{height:45.525402pt;}
.h6{height:47.820800pt;}
.h2{height:53.061069pt;}
.h5{height:57.384800pt;}
.h1{height:68.769785pt;}
.h10{height:191.923200pt;}
.ha{height:194.208000pt;}
.hf{height:266.112000pt;}
.hd{height:282.240000pt;}
.h8{height:369.599992pt;}
.h0{height:1056.000000pt;}
.w3{width:74.797800pt;}
.w6{width:83.059200pt;}
.w2{width:84.049000pt;}
.w5{width:133.056000pt;}
.w4{width:282.240000pt;}
.w1{width:285.599992pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x25{left:7.257600pt;}
.x27{left:8.808800pt;}
.x1d{left:10.801198pt;}
.x11{left:12.240532pt;}
.xf{left:15.503999pt;}
.x12{left:18.836532pt;}
.x29{left:19.779200pt;}
.x2b{left:24.740800pt;}
.xc{left:31.823999pt;}
.xb{left:40.000999pt;}
.x23{left:46.580800pt;}
.x14{left:50.529665pt;}
.xd{left:55.295332pt;}
.x24{left:60.586400pt;}
.xe{left:69.467667pt;}
.x2f{left:85.556800pt;}
.x1e{left:86.575331pt;}
.x1f{left:91.522331pt;}
.x20{left:94.445333pt;}
.x7{left:96.000000pt;}
.x2c{left:100.223200pt;}
.x1{left:101.877333pt;}
.x8{left:110.789333pt;}
.xa{left:113.540000pt;}
.x21{left:116.906667pt;}
.x22{left:124.970667pt;}
.x16{left:150.143996pt;}
.x10{left:155.155467pt;}
.x26{left:158.033067pt;}
.x1a{left:159.556328pt;}
.x15{left:162.814661pt;}
.x13{left:164.406667pt;}
.x18{left:166.463995pt;}
.x2a{left:172.586400pt;}
.x17{left:174.640995pt;}
.x19{left:176.244662pt;}
.x2{left:200.698667pt;}
.x3{left:210.648000pt;}
.x28{left:258.026667pt;}
.x5{left:288.866667pt;}
.x4{left:344.853333pt;}
.x6{left:349.881333pt;}
.x9{left:404.678667pt;}
.x1b{left:416.856000pt;}
.x2d{left:424.920000pt;}
.x1c{left:458.471467pt;}
.x2e{left:557.976000pt;}
}




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