
    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_f759ef77612d9c1a898ac000.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_194cfbcc5b53b9d9f0f1e47c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;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_7441935ad6df85e2025d6617.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_8d0a51832ab7de437c13b62d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.130371;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_8a8bc94f34cedc2fb46f6761.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_ad7cf4f0a445702f66f48822.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_a90884b7919faf53a43d8a2a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.933105;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_03876fc45d9bd3324c1fa983.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.909668;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_634e50c3a152581acc819e52.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.172363;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;}
.m1{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);}
.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:-45.000000px;}
.v4{vertical-align:-27.000000px;}
.v6{vertical-align:-15.899938px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:27.000000px;}
.v3{vertical-align:45.000000px;}
.v1{vertical-align:72.000000px;}
.ls1b{letter-spacing:-14.700000px;}
.ls19{letter-spacing:-2.328000px;}
.ls1c{letter-spacing:-2.274000px;}
.ls11{letter-spacing:-2.250000px;}
.ls12{letter-spacing:-2.100000px;}
.ls20{letter-spacing:-1.002000px;}
.ls1e{letter-spacing:-0.936000px;}
.ls1a{letter-spacing:-0.798000px;}
.ls10{letter-spacing:-0.414000px;}
.ls1f{letter-spacing:-0.318000px;}
.ls15{letter-spacing:-0.264000px;}
.ls1d{letter-spacing:-0.075000px;}
.lsd{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.060000px;}
.lsb{letter-spacing:0.075000px;}
.lsa{letter-spacing:0.150000px;}
.ls18{letter-spacing:0.165000px;}
.ls16{letter-spacing:0.207000px;}
.ls17{letter-spacing:0.357000px;}
.lsc{letter-spacing:0.967500px;}
.lsf{letter-spacing:1.422000px;}
.ls13{letter-spacing:1.434000px;}
.lse{letter-spacing:2.094000px;}
.ls0{letter-spacing:14.145000px;}
.ls14{letter-spacing:41.640000px;}
.ls1{letter-spacing:41.925000px;}
.ls6{letter-spacing:68.287500px;}
.ls7{letter-spacing:68.347500px;}
.ls5{letter-spacing:148.222500px;}
.ls4{letter-spacing:148.275000px;}
.ls3{letter-spacing:148.342500px;}
.ls2{letter-spacing:148.395000px;}
.ls8{letter-spacing:148.455000px;}
.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;}
}
.ws19{word-spacing:-54.037500px;}
.ws3{word-spacing:-49.809000px;}
.ws6{word-spacing:-48.732000px;}
.ws5{word-spacing:-48.582000px;}
.ws7{word-spacing:-48.577500px;}
.wsc{word-spacing:-48.375000px;}
.ws4{word-spacing:-48.111000px;}
.ws0{word-spacing:-47.961000px;}
.ws2{word-spacing:-46.275000px;}
.ws1{word-spacing:-46.125000px;}
.ws8{word-spacing:-46.084500px;}
.ws9{word-spacing:-41.625000px;}
.ws11{word-spacing:-36.150000px;}
.ws14{word-spacing:-36.112500px;}
.ws15{word-spacing:-35.962500px;}
.ws12{word-spacing:-35.682000px;}
.ws10{word-spacing:-35.064000px;}
.ws13{word-spacing:-35.035500px;}
.wsd{word-spacing:-33.675000px;}
.wsf{word-spacing:-28.125000px;}
.wse{word-spacing:-28.101000px;}
.ws17{word-spacing:-27.459000px;}
.ws16{word-spacing:-27.000000px;}
.wsa{word-spacing:-0.324000px;}
.wsb{word-spacing:-0.193500px;}
.ws1a{word-spacing:0.000000px;}
.ws18{word-spacing:871.668001px;}
._6{margin-left:-31.788000px;}
._0{margin-left:-25.272000px;}
._e{margin-left:-23.539500px;}
._19{margin-left:-21.932400px;}
._9{margin-left:-20.875500px;}
._11{margin-left:-18.257550px;}
._21{margin-left:-16.205550px;}
._25{margin-left:-15.093000px;}
._d{margin-left:-13.968000px;}
._c{margin-left:-12.825000px;}
._24{margin-left:-11.707500px;}
._7{margin-left:-10.296000px;}
._10{margin-left:-8.504100px;}
._20{margin-left:-7.128000px;}
._12{margin-left:-6.118950px;}
._3{margin-left:-4.860000px;}
._4{margin-left:-3.564000px;}
._2{margin-left:-2.268000px;}
._a{margin-left:-1.192500px;}
._1{width:1.620000px;}
._8{width:2.628000px;}
._5{width:3.636000px;}
._1d{width:4.644000px;}
._f{width:5.694000px;}
._26{width:8.145000px;}
._16{width:11.973000px;}
._13{width:13.156500px;}
._14{width:15.037950px;}
._15{width:16.540500px;}
._1b{width:26.107500px;}
._1a{width:30.138000px;}
._23{width:39.856500px;}
._17{width:41.199000px;}
._18{width:42.351450px;}
._1c{width:50.215050px;}
._1e{width:51.591000px;}
._1f{width:52.984500px;}
._22{width:67.586400px;}
._b{width:68.895000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fse{font-size:81.000000px;}
.fsa{font-size:108.000000px;}
.fsb{font-size:108.150000px;}
.fs9{font-size:121.500000px;}
.fs7{font-size:126.000000px;}
.fsc{font-size:144.000000px;}
.fsd{font-size:144.150000px;}
.fs3{font-size:162.000000px;}
.fs6{font-size:166.500000px;}
.fs5{font-size:193.500000px;}
.fs4{font-size:193.650000px;}
.fsf{font-size:216.000000px;}
.fs10{font-size:216.150000px;}
.fs2{font-size:238.500000px;}
.fs0{font-size:324.000000px;}
.fs8{font-size:324.150000px;}
.fs1{font-size:468.000000px;}
.y0{bottom:0.000000px;}
.y42{bottom:214.395000px;}
.y41{bottom:247.020000px;}
.y35{bottom:277.095000px;}
.y40{bottom:279.630000px;}
.y3f{bottom:312.270000px;}
.y3e{bottom:370.695000px;}
.y3d{bottom:413.475000px;}
.y3c{bottom:457.350000px;}
.y3b{bottom:500.100000px;}
.y3a{bottom:543.975000px;}
.y39{bottom:586.725000px;}
.y50{bottom:931.800000px;}
.y54{bottom:974.820000px;}
.y4f{bottom:1007.175000px;}
.y2e{bottom:1067.220000px;}
.y4e{bottom:1083.675000px;}
.y2d{bottom:1125.720000px;}
.y4d{bottom:1159.095000px;}
.y2c{bottom:1183.095000px;}
.y4c{bottom:1234.455000px;}
.y2b{bottom:1240.470000px;}
.y2a{bottom:1297.845000px;}
.y4b{bottom:1309.845000px;}
.y29{bottom:1355.250000px;}
.y4a{bottom:1385.220000px;}
.y28{bottom:1413.750000px;}
.y49{bottom:1461.720000px;}
.y27{bottom:1471.125000px;}
.y48{bottom:1537.095000px;}
.y47{bottom:1612.500000px;}
.y1d{bottom:1627.845000px;}
.y46{bottom:1687.875000px;}
.y45{bottom:1763.250000px;}
.y26{bottom:1836.855000px;}
.y44{bottom:1839.750000px;}
.y25{bottom:1894.230000px;}
.y43{bottom:1897.125000px;}
.y24{bottom:1952.745000px;}
.y23{bottom:2028.150000px;}
.y31{bottom:2028.525000px;}
.y30{bottom:2064.525000px;}
.y22{bottom:2085.525000px;}
.y2f{bottom:2100.525000px;}
.y21{bottom:2142.900000px;}
.y20{bottom:2218.275000px;}
.y1f{bottom:2294.775000px;}
.y1e{bottom:2370.150000px;}
.y52{bottom:2441.250000px;}
.y51{bottom:2477.250000px;}
.y38{bottom:2479.170000px;}
.y37{bottom:2511.825000px;}
.y36{bottom:2544.450000px;}
.y55{bottom:2611.620000px;}
.y53{bottom:3213.675000px;}
.y1b{bottom:3381.855000px;}
.y1c{bottom:3393.300000px;}
.y34{bottom:3617.850000px;}
.y11{bottom:3638.550000px;}
.y33{bottom:3650.475000px;}
.y1a{bottom:3662.805000px;}
.y32{bottom:3683.100000px;}
.y10{bottom:3695.925000px;}
.y19{bottom:3720.180000px;}
.yf{bottom:3753.300000px;}
.y18{bottom:3778.680000px;}
.ye{bottom:3810.675000px;}
.y17{bottom:3836.055000px;}
.yd{bottom:3868.080000px;}
.y16{bottom:3893.430000px;}
.yc{bottom:3926.580000px;}
.y15{bottom:3950.850000px;}
.yb{bottom:3983.955000px;}
.y14{bottom:4008.225000px;}
.ya{bottom:4041.330000px;}
.y13{bottom:4066.725000px;}
.y9{bottom:4098.705000px;}
.y12{bottom:4124.100000px;}
.y8{bottom:4156.080000px;}
.y7{bottom:4214.580000px;}
.y1{bottom:4245.930000px;}
.y6{bottom:4271.955000px;}
.y5{bottom:4492.350000px;}
.y4{bottom:4549.755000px;}
.y3{bottom:4609.380000px;}
.y2{bottom:4730.880000px;}
.hb{height:96.820312px;}
.hc{height:96.954785px;}
.ha{height:108.922852px;}
.hf{height:120.847412px;}
.hd{height:129.093750px;}
.he{height:129.228223px;}
.h9{height:136.527100px;}
.h12{height:143.226562px;}
.h11{height:149.264648px;}
.h6{height:173.469727px;}
.h7{height:173.604199px;}
.h5{height:184.240723px;}
.h4{height:184.383545px;}
.h10{height:193.640625px;}
.h3{height:217.230469px;}
.h2{height:330.205078px;}
.h1{height:331.751953px;}
.h8{height:331.905542px;}
.h0{height:5017.500000px;}
.w2{width:3571.874947px;}
.w0{width:3571.875000px;}
.w1{width:3572.250000px;}
.x0{left:0.000000px;}
.x2{left:167.654947px;}
.x14{left:179.474947px;}
.x15{left:200.219947px;}
.x6{left:201.299947px;}
.x10{left:247.019947px;}
.x16{left:254.249947px;}
.x4{left:268.844947px;}
.x17{left:308.249947px;}
.x18{left:545.774947px;}
.x3{left:597.254947px;}
.xa{left:602.099947px;}
.x5{left:921.149947px;}
.x1b{left:1321.829947px;}
.x19{left:1577.849947px;}
.x7{left:1922.924947px;}
.xe{left:1954.124947px;}
.x8{left:1976.954947px;}
.xc{left:1995.269947px;}
.xf{left:2008.124947px;}
.x13{left:2013.404947px;}
.xd{left:2049.299947px;}
.x12{left:2085.254947px;}
.x9{left:2276.099947px;}
.xb{left:2300.849947px;}
.x1{left:2432.879947px;}
.x1a{left:2504.354947px;}
.x11{left:2807.624947px;}
@media print{
.v2{vertical-align:-40.000000pt;}
.v4{vertical-align:-24.000000pt;}
.v6{vertical-align:-14.133278pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:24.000000pt;}
.v3{vertical-align:40.000000pt;}
.v1{vertical-align:64.000000pt;}
.ls1b{letter-spacing:-13.066667pt;}
.ls19{letter-spacing:-2.069333pt;}
.ls1c{letter-spacing:-2.021333pt;}
.ls11{letter-spacing:-2.000000pt;}
.ls12{letter-spacing:-1.866667pt;}
.ls20{letter-spacing:-0.890667pt;}
.ls1e{letter-spacing:-0.832000pt;}
.ls1a{letter-spacing:-0.709333pt;}
.ls10{letter-spacing:-0.368000pt;}
.ls1f{letter-spacing:-0.282667pt;}
.ls15{letter-spacing:-0.234667pt;}
.ls1d{letter-spacing:-0.066667pt;}
.lsd{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.053333pt;}
.lsb{letter-spacing:0.066667pt;}
.lsa{letter-spacing:0.133333pt;}
.ls18{letter-spacing:0.146667pt;}
.ls16{letter-spacing:0.184000pt;}
.ls17{letter-spacing:0.317333pt;}
.lsc{letter-spacing:0.860000pt;}
.lsf{letter-spacing:1.264000pt;}
.ls13{letter-spacing:1.274667pt;}
.lse{letter-spacing:1.861333pt;}
.ls0{letter-spacing:12.573333pt;}
.ls14{letter-spacing:37.013333pt;}
.ls1{letter-spacing:37.266667pt;}
.ls6{letter-spacing:60.700000pt;}
.ls7{letter-spacing:60.753333pt;}
.ls5{letter-spacing:131.753333pt;}
.ls4{letter-spacing:131.800000pt;}
.ls3{letter-spacing:131.860000pt;}
.ls2{letter-spacing:131.906667pt;}
.ls8{letter-spacing:131.960000pt;}
.ws19{word-spacing:-48.033333pt;}
.ws3{word-spacing:-44.274667pt;}
.ws6{word-spacing:-43.317333pt;}
.ws5{word-spacing:-43.184000pt;}
.ws7{word-spacing:-43.180000pt;}
.wsc{word-spacing:-43.000000pt;}
.ws4{word-spacing:-42.765333pt;}
.ws0{word-spacing:-42.632000pt;}
.ws2{word-spacing:-41.133333pt;}
.ws1{word-spacing:-41.000000pt;}
.ws8{word-spacing:-40.964000pt;}
.ws9{word-spacing:-37.000000pt;}
.ws11{word-spacing:-32.133333pt;}
.ws14{word-spacing:-32.100000pt;}
.ws15{word-spacing:-31.966667pt;}
.ws12{word-spacing:-31.717333pt;}
.ws10{word-spacing:-31.168000pt;}
.ws13{word-spacing:-31.142667pt;}
.wsd{word-spacing:-29.933333pt;}
.wsf{word-spacing:-25.000000pt;}
.wse{word-spacing:-24.978667pt;}
.ws17{word-spacing:-24.408000pt;}
.ws16{word-spacing:-24.000000pt;}
.wsa{word-spacing:-0.288000pt;}
.wsb{word-spacing:-0.172000pt;}
.ws1a{word-spacing:0.000000pt;}
.ws18{word-spacing:774.816001pt;}
._6{margin-left:-28.256000pt;}
._0{margin-left:-22.464000pt;}
._e{margin-left:-20.924000pt;}
._19{margin-left:-19.495467pt;}
._9{margin-left:-18.556000pt;}
._11{margin-left:-16.228933pt;}
._21{margin-left:-14.404933pt;}
._25{margin-left:-13.416000pt;}
._d{margin-left:-12.416000pt;}
._c{margin-left:-11.400000pt;}
._24{margin-left:-10.406667pt;}
._7{margin-left:-9.152000pt;}
._10{margin-left:-7.559200pt;}
._20{margin-left:-6.336000pt;}
._12{margin-left:-5.439067pt;}
._3{margin-left:-4.320000pt;}
._4{margin-left:-3.168000pt;}
._2{margin-left:-2.016000pt;}
._a{margin-left:-1.060000pt;}
._1{width:1.440000pt;}
._8{width:2.336000pt;}
._5{width:3.232000pt;}
._1d{width:4.128000pt;}
._f{width:5.061333pt;}
._26{width:7.240000pt;}
._16{width:10.642667pt;}
._13{width:11.694667pt;}
._14{width:13.367067pt;}
._15{width:14.702667pt;}
._1b{width:23.206667pt;}
._1a{width:26.789333pt;}
._23{width:35.428000pt;}
._17{width:36.621333pt;}
._18{width:37.645733pt;}
._1c{width:44.635600pt;}
._1e{width:45.858667pt;}
._1f{width:47.097333pt;}
._22{width:60.076800pt;}
._b{width:61.240000pt;}
.fse{font-size:72.000000pt;}
.fsa{font-size:96.000000pt;}
.fsb{font-size:96.133333pt;}
.fs9{font-size:108.000000pt;}
.fs7{font-size:112.000000pt;}
.fsc{font-size:128.000000pt;}
.fsd{font-size:128.133333pt;}
.fs3{font-size:144.000000pt;}
.fs6{font-size:148.000000pt;}
.fs5{font-size:172.000000pt;}
.fs4{font-size:172.133333pt;}
.fsf{font-size:192.000000pt;}
.fs10{font-size:192.133333pt;}
.fs2{font-size:212.000000pt;}
.fs0{font-size:288.000000pt;}
.fs8{font-size:288.133333pt;}
.fs1{font-size:416.000000pt;}
.y0{bottom:0.000000pt;}
.y42{bottom:190.573333pt;}
.y41{bottom:219.573333pt;}
.y35{bottom:246.306667pt;}
.y40{bottom:248.560000pt;}
.y3f{bottom:277.573333pt;}
.y3e{bottom:329.506667pt;}
.y3d{bottom:367.533333pt;}
.y3c{bottom:406.533333pt;}
.y3b{bottom:444.533333pt;}
.y3a{bottom:483.533333pt;}
.y39{bottom:521.533333pt;}
.y50{bottom:828.266667pt;}
.y54{bottom:866.506667pt;}
.y4f{bottom:895.266667pt;}
.y2e{bottom:948.640000pt;}
.y4e{bottom:963.266667pt;}
.y2d{bottom:1000.640000pt;}
.y4d{bottom:1030.306667pt;}
.y2c{bottom:1051.640000pt;}
.y4c{bottom:1097.293333pt;}
.y2b{bottom:1102.640000pt;}
.y2a{bottom:1153.640000pt;}
.y4b{bottom:1164.306667pt;}
.y29{bottom:1204.666667pt;}
.y4a{bottom:1231.306667pt;}
.y28{bottom:1256.666667pt;}
.y49{bottom:1299.306667pt;}
.y27{bottom:1307.666667pt;}
.y48{bottom:1366.306667pt;}
.y47{bottom:1433.333333pt;}
.y1d{bottom:1446.973333pt;}
.y46{bottom:1500.333333pt;}
.y45{bottom:1567.333333pt;}
.y26{bottom:1632.760000pt;}
.y44{bottom:1635.333333pt;}
.y25{bottom:1683.760000pt;}
.y43{bottom:1686.333333pt;}
.y24{bottom:1735.773333pt;}
.y23{bottom:1802.800000pt;}
.y31{bottom:1803.133333pt;}
.y30{bottom:1835.133333pt;}
.y22{bottom:1853.800000pt;}
.y2f{bottom:1867.133333pt;}
.y21{bottom:1904.800000pt;}
.y20{bottom:1971.800000pt;}
.y1f{bottom:2039.800000pt;}
.y1e{bottom:2106.800000pt;}
.y52{bottom:2170.000000pt;}
.y51{bottom:2202.000000pt;}
.y38{bottom:2203.706667pt;}
.y37{bottom:2232.733333pt;}
.y36{bottom:2261.733333pt;}
.y55{bottom:2321.440000pt;}
.y53{bottom:2856.600000pt;}
.y1b{bottom:3006.093333pt;}
.y1c{bottom:3016.266667pt;}
.y34{bottom:3215.866667pt;}
.y11{bottom:3234.266667pt;}
.y33{bottom:3244.866667pt;}
.y1a{bottom:3255.826667pt;}
.y32{bottom:3273.866667pt;}
.y10{bottom:3285.266667pt;}
.y19{bottom:3306.826667pt;}
.yf{bottom:3336.266667pt;}
.y18{bottom:3358.826667pt;}
.ye{bottom:3387.266667pt;}
.y17{bottom:3409.826667pt;}
.yd{bottom:3438.293333pt;}
.y16{bottom:3460.826667pt;}
.yc{bottom:3490.293333pt;}
.y15{bottom:3511.866667pt;}
.yb{bottom:3541.293333pt;}
.y14{bottom:3562.866667pt;}
.ya{bottom:3592.293333pt;}
.y13{bottom:3614.866667pt;}
.y9{bottom:3643.293333pt;}
.y12{bottom:3665.866667pt;}
.y8{bottom:3694.293333pt;}
.y7{bottom:3746.293333pt;}
.y1{bottom:3774.160000pt;}
.y6{bottom:3797.293333pt;}
.y5{bottom:3993.200000pt;}
.y4{bottom:4044.226667pt;}
.y3{bottom:4097.226667pt;}
.y2{bottom:4205.226667pt;}
.hb{height:86.062500pt;}
.hc{height:86.182031pt;}
.ha{height:96.820312pt;}
.hf{height:107.419922pt;}
.hd{height:114.750000pt;}
.he{height:114.869531pt;}
.h9{height:121.357422pt;}
.h12{height:127.312500pt;}
.h11{height:132.679688pt;}
.h6{height:154.195312pt;}
.h7{height:154.314844pt;}
.h5{height:163.769531pt;}
.h4{height:163.896484pt;}
.h10{height:172.125000pt;}
.h3{height:193.093750pt;}
.h2{height:293.515625pt;}
.h1{height:294.890625pt;}
.h8{height:295.027148pt;}
.h0{height:4460.000000pt;}
.w2{width:3174.999953pt;}
.w0{width:3175.000000pt;}
.w1{width:3175.333333pt;}
.x0{left:0.000000pt;}
.x2{left:149.026619pt;}
.x14{left:159.533286pt;}
.x15{left:177.973286pt;}
.x6{left:178.933286pt;}
.x10{left:219.573286pt;}
.x16{left:225.999953pt;}
.x4{left:238.973286pt;}
.x17{left:273.999953pt;}
.x18{left:485.133286pt;}
.x3{left:530.893286pt;}
.xa{left:535.199953pt;}
.x5{left:818.799953pt;}
.x1b{left:1174.959953pt;}
.x19{left:1402.533286pt;}
.x7{left:1709.266619pt;}
.xe{left:1736.999953pt;}
.x8{left:1757.293286pt;}
.xc{left:1773.573286pt;}
.xf{left:1784.999953pt;}
.x13{left:1789.693286pt;}
.xd{left:1821.599953pt;}
.x12{left:1853.559953pt;}
.x9{left:2023.199953pt;}
.xb{left:2045.199953pt;}
.x1{left:2162.559953pt;}
.x1a{left:2226.093286pt;}
.x11{left:2495.666619pt;}
}




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